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

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

X-Bound.swf

This is the info page for
Flash #27385

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


Text
0

CREDITS

local high scores

1

10

9

8

7

6

5

4

3

2

Name1

Name10

Name9

Name8

Name7

Name6

Name5

Name4

Name3

Name2

Arrow keys left and right
Move bat around central drain

Try to stop balls
falling down central
drain

Press "P" at any
time to pause the
game

Powerup meter, shows how long
your current powerup will last

Reverse gravity

Next level

Speed up bat

Slow down bat

Small bat

Fireball

Drain cover

Double bat

Laser

Rockets

Large bat

Multi ball

Bomb

No gravity

fps

level

ActionScript [AS1/AS2]

Frame 1
if (_root._framesloaded == _root._totalframes) { gotoAndPlay (4); } function startStarBurst(x, y) { startCountedStarBurst(x, y, 5, ("QuickStar" + random(2)) + 1); } function printFps() { if (_root.DEBUG) { myDate = new Date(); start_time = myDate.getTime(); iFpsFrameCount++; time = start_time - iFpsFrameTime; if (time > 1000) { iFpsFrames = (iFpsFrameCount * 1000) / time; iFpsFrameTime = start_time; iFpsTotalFrames = iFpsTotalFrames + iFpsFrameCount; printable_fps = iFpsFrameCount; iFpsNumCalls++; iFpsFrameCount = 0; } fps = printable_fps; fpsdebug = int(iFpsTotalFrames / iFpsNumCalls); } else { fpsdebug = ""; } } function timerStart(timerID, timerIterations) { _root.timerMaxIterations[timerID] = timerIterations; myTime = new Date(); _root.timerStartTime[timerID] = myTime.getTime(); _root.timerTotalTime[timerID] = 0; } function timerEnd(timerID) { _root.timerIterations[timerID]++; myTime = new Date(); timerEndTime = myTime.getTime(); _root.timerTotalTime[timerID] = _root.timerTotalTime[timerID] + (timerEndTime - _root.timerStartTime[timerID]); if (_root.timerIterations[timerID] == _root.timerMaxIterations[timerID]) { _root.timerIterations[timerID] = 0; _root.timerTotalTime[timerID] = 0; } } function timerPrint(timerID, obj) { obj = _root.timerTotalTime[timerID]; } function startParticleExplosion(x, y) { var objD; var rnd; var thisStar; var iAngle; var i = 0; while (i < 20) { objD = depth[STAR_OBJ]; attachMovie("ExplodeParticle", "Star" + objD[CURRENT_DEPTH], objD[CURRENT_DEPTH]); thisStar = _root["Star" + objD[CURRENT_DEPTH]]; updateDepth(objD); thisStar._x = x; thisStar._y = y; iAngle = random(360); thisStar.vx = Math.sin(iAngle); thisStar.vy = Math.cos(iAngle); rnd = Math.random() * 3; thisStar.vx = thisStar.vx * rnd; thisStar.vy = thisStar.vy * (1 + rnd); i++; } } function updateDepth(obj) { if (obj[CURRENT_DEPTH] > (obj[MIN_DEPTH] + obj[NUM_OBJECTS])) { obj[CURRENT_DEPTH] = obj[MIN_DEPTH]; } else { obj[CURRENT_DEPTH]++; } } function drawLine(xStart, yStart, xStop, yStop, col) { _root.attachMovie("baseLine", "Line" + _root.iDepth, _root.iDepth); _root["Line" + _root.iDepth]._x = xStart; _root["Line" + _root.iDepth]._y = yStart; _root["Line" + _root.iDepth]._xscale = xStop - xStart; _root["Line" + _root.iDepth]._yscale = yStop - yStart; c = new Color(_root["Line" + _root.iDepth]); c.setRGB(col); _root.iDepth++; } function drawLineAtDepth(xStart, yStart, xStop, yStop, aDepth, col) { _root.attachMovie("baseLine", "Line" + aDepth, aDepth); _root["Line" + aDepth]._x = xStart; _root["Line" + aDepth]._y = yStart; _root["Line" + aDepth]._xscale = xStop - xStart; _root["Line" + aDepth]._yscale = yStop - yStart; c = new Color(_root["Line" + aDepth]); c.setRGB(col); } function locToGlob(object, valx, valy) { po = new object(); po.x = valx; po.y = valy; object.localToGlobal(po); return(po); } DEBUG = false; VERSION_FULL = 1; VERSION_DEMO = 0; VERSION = VERSION_DEMO; DESIGN = false; ROOT_URL = "http://www.arcadetown.com/xbound"; HI_SCORE_SCRIPT = ROOT_URL + "/hiscore.asp"; MAX_DEMO_LEVELS = 4; _root.ringWidth = 450; _root.txtRingWidth = 495; _root.drainCoverRadius = 19; _root.ballRadius = 8; DEFAULT_BALL_MAX_MOVE = 20; DEFAULT_BALL_MOVE_STEP = 5; currentPickups = new Array(); currentPickupsCount = new Array(); extraLifeScore = 5000; LEVELS_SCORE_MULTIPLIER = 50; BALLS_SCORE_MULTIPLIER = 30; RUN = 1; TEST = 2; mode = RUN; BRICK_OBJ = 0; TEMP_OBJ = 1; STAR_OBJ = 2; PICKUP_OBJ = 3; BALL_OBJ = 4; SECTOR_OBJ = 5; LAUNCHER_OBJ = 6; POINTS_OBJ = 7; BULLET_OBJ = 8; EXPLODE_OBJ = 9; MISC_OBJ = 10; SPECIAL_BRICK_OBJ = 11; PICKUP_BRICK_OBJ = 12; CURRENT_DEPTH = 0; MIN_DEPTH = 1; NUM_OBJECTS = 2; sin = Math.sin; cos = Math.cos; atan2 = Math.atan2; ht = hitTest; minDist = new Array(); maxDist = new Array(); ballIndex = new Array(); var depth = new Array(); starDepth = 100; numStars = 20; pausedDepth = 81000 /* 0x013C68 */; depth[PICKUP_OBJ] = [4000, 4000, 30]; depth[STAR_OBJ] = [2000, 2000, 400]; depth[BRICK_OBJ] = [500, 500, 300]; depth[TEMP_OBJ] = [1000, 1000, 400]; depth[BALL_OBJ] = [6000, 6000, 50]; depth[SECTOR_OBJ] = [950, 950, 80]; depth[LAUNCHER_OBJ] = [900, 900, 10]; depth[POINTS_OBJ] = [9000, 9000, 40]; depth[BULLET_OBJ] = [10000, 10000, 2]; depth[EXPLODE_OBJ] = [11000, 11000, 20]; depth[MISC_OBJ] = [51000, 51000, 100]; depth[SPECIAL_BRICK_OBJ] = [850, 850, 40]; depth[PICKUP_BRICK_OBJ] = [500000, 500000, 500]; INVULN_DEPTH = 690000 /* 0x0A8750 */; BAT_DEPTH = 700000 /* 0x0AAE60 */; BEAM_DEPTH = 900000 /* 0x0DBBA0 */; BULLET_LAUNCHER_DEPTH = 800000 /* 0x0C3500 */; EXTRA_LIFE_DEPTH = 901000 /* 0x0DBF88 */; LEVEL_COMPLETE_DEPTH = 901001 /* 0x0DBF89 */; NAG_SCREEN_DEPTH = 901002 /* 0x0DBF8A */; LEVEL_PANEL_DEPTH = 901004 /* 0x0DBF8C */; QUIT_DEPTH = 910192 /* 0x0DE370 */; launcherDepth = 5900; scoreDepth = 9000; pickupDepth = 9100; iDepth = 19000; ballNum = 0; maxBalls = 10; bounce = 0.8; contact = new array(); contactcnt = 0; width = 550; halfWidth = 320; halfHeight = 240; brick_middle_x = halfWidth; brick_middle_y = halfHeight; rad = (Math.PI/180); ang2rad = rad; rad2ang = 57.2957795130823; __45__ = 45 * rad; __90__ = 90 * rad; __180__ = 180 * rad; __360__ = 360 * rad; brickSizeAngle = 11.25; brickSizeAngleRad = brickSizeAngle * rad; numBrickSectors = 32; numBrickLayers = 7; distanceBrickLayers = [213, 196, 179, 163, 125, 83, 25]; specialBricks = numBrickSectors * numBrickLayers; numSpecialBricks = 0; iFpsTotalFrames = 0; iFpsNumCalls = 0; iFpsFrameCount = 0; iFpsFrames = 0; iFpsFrameTime = 0; printable_fps = 0; timerIterations = new Array(10); timerTotalTime = new Array(10); timerStartTime = new Array(10); timerMaxIterations = new Array(10); timerIterations[0] = 0; BR_NORMAL = 1; BR_GLASS = 2; BR_INDESTRUCTABLE = 4; BR_BOUNCY = 8; BR_S_BARRIER = 16; BR_D_BARRIER = 32; BR_I_BARRIER = 64; BR_C_BARRIER = 128; var levelData = new Array(new Array(0, 0, 0, 1179649, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1179649, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1179649, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1179649, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, "#", "@"), new Array(0, 0, 983041, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 655361, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 983041, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 655361, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, "#", "@"), new Array(1179649, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 655361, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1114113, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 458753, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 458753, 1, 1, 983041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 458753, 1, 1, 983041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 458753, 1, 1, 983041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 655361, 1, 1, 983041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 655361, 1, 1, 983041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 655361, 1, 1, 983041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, "#", "@"), new Array(0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 589825, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 655361, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 196609, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 655361, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, "#", "@"), new Array(0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1114113, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1114113, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1114113, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1114113, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1114113, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1179649, 1, 0, 0, 0, 0, "#", "@"), new Array(1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 32, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 32, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 32, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 32, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, "#", "@"), new Array(131073, 0, 4, 4, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 655361, 4, 1, 524289, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 655361, 4, 1, 458753, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, "#", 128, 300.95, 62, 128, 338.95, 62, 128, 372.95, 69, "@"), new Array(1, 0, 0, 4, 32, 0, 0, 1376257, 0, 0, 4, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 4, 32, 0, 0, 1376257, 0, 0, 4, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, "#", "@"), new Array(0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "#", 128, 489.95, 291.95, 128, 458.95, 352.95, 128, 403.95, 395.95, 128, 337.95, 417.95, 128, 268.95, 410.95, 128, 476.95, 156, 128, 497.95, 222, 128, 432.95, 102, 128, 371.95, 69, 128, 301.95, 62, 128, 235.95, 81, 128, 142.95, 257, 128, 162.95, 323.95, 128, 207.95, 376.95, 128, 181.95, 125, 128, 147.95, 187, "@"), new Array(0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 196609, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 655361, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 655361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 655361, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1441793, 4, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 655361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1376257, 4, 1, 0, 0, 0, 0, 1376257, 4, 1, 0, 0, 0, 0, "#", "@"), new Array(4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 1, 1, 131073, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 655361, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1441793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 131073, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1441793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 131073, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1441793, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 720897, 0, 0, 0, "#", 128, 408.95, 132, 128, 457.95, 226, 128, 427.95, 328.95, 128, 333.95, 376.95, 128, 304.95, 100, 128, 212.95, 154, 128, 183.95, 253, 128, 231.95, 346.95, "@"), new Array(1, 786433, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1441793, 4, 4, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 655361, 0, 32, 0, 0, 1, 0, 655361, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1441793, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 196609, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 196609, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1179649, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1179649, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 131073, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 131073, 4, 4, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, "#", 128, 491.95, 189, 128, 433.95, 102, 128, 336.95, 61, 128, 235.95, 83, 128, 162.95, 156, 128, 141.95, 259, 128, 180.95, 352.95, 128, 267.95, 409.95, 128, 370.95, 409.95, 128, 457.95, 350.95, 128, 408.95, 258, "@"), new Array(1, 1, 655361, 0, 0, 64, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 64, 0, 1, 1, 1, 262145, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 64, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 262145, 0, 64, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 655361, 0, 0, 64, 0, 1, 1, 655361, 655361, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1114113, 0, 0, 0, 32, 64, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 32, 64, 0, 917505, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 32, 64, 0, 589825, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "#", "@"), new Array(0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 32, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1441793, 1, 1, 1, 0, 0, 0, 131073, 1, 1, 1, 0, 0, 0, 720897, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 32, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 1376257, 1, 1, 1, 32, 0, 0, 1376257, 1, 1, 1, 0, 0, 0, "#", "@"), new Array(1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 32, 64, 0, 4, 4, 4, 4, 0, 0, 0, 4, 4, 4, 4, 32, 0, 0, 4, 4, 720900, 4, 0, 0, 0, 4, 4, 720900, 4, 32, 0, 0, 4, 4, 4, 4, 0, 0, 0, 4, 4, 4, 4, 32, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "#", "@"), new Array(1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 131073, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 262145, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 655361, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 393217, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 65537, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 851969, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 655361, 1, 1, 1, 0, 0, 0, "#", "@"), new Array(1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 32, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 1, 1, 32, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, "#", 128, 297.95, -2, 128, 393.95, 8, 128, 515.95, 238, 128, 127.95, 237, "@"), new Array(0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 32, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 32, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 32, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 32, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 32, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 32, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, "#", "@"), new Array(0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, "#", "@"), new Array(1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 917505, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "#", "@"), new Array(0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1, 4, 1, 1, 0, 0, 0, 917505, 4, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, "#", "@"), new Array(1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "#", "@"), new Array(0, 4, 1, 1, 0, 0, 0, 131073, 1, 0, 0, 0, 0, 0, 131073, 1, 0, 0, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 851969, 1, 0, 0, 0, 0, 0, 851969, 1, 0, 0, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 655361, 1, 0, 0, 0, 0, 0, 655361, 1, 0, 0, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, "#", 128, 387.95, 76, 128, 419.95, 387.95, 128, 144.95, 273.95, "@"), new Array(1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 655361, 4, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1376257, 4, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1376257, 4, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 851969, 4, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 917505, 4, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1376257, 4, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1376257, 4, 1, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 1, 4, 1, 1, 0, 0, 0, 1179649, 0, 1, 655361, 0, 0, 0, 1, 4, 1, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0, "#", "@"), new Array(0, 4, 1, 1, 0, 0, 0, 0, 131073, 4, 1, 0, 0, 0, 0, 1, 1, 4, 16, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 4, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 4, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 4, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 4, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0, 720897, 4, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 4, 16, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 4, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 4, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0, 4, 1, 1, 0, 0, 0, "#", "@"), new Array(1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 655361, 655361, 655361, 655361, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, "#", "@"), new Array(4, 1, 1, 1, 32, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 64, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 4, 655361, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 64, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 4, 32, 0, 0, 1, 1, 1048577, 4, 0, 0, 0, 1, 1, 1, 4, 0, 64, 0, 1, 1, 1, 1, 0, 0, 0, 1, 851969, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 64, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 32, 0, 0, 1, 1, 1, 1, 0, 0, 0, 4, 1, 1, 1, 0, 64, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1441793, 4, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 64, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 32, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 64, 0, 1, 1, 4, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 4, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 0, 64, 0, 131073, 4, 1, 1, 0, 0, 0, "#", "@"), new Array(1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 655361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 196609, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 589825, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 655361, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "#", 128, 364.95, 115, 128, 376.95, 369.95, 128, 244.95, 328.95, 128, 207.95, 101, 128, 446.95, 294.95, 128, 180.95, 217, 128, 466.95, 155, 128, 300.95, 46, "@"), new Array(1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 655361, 4, 0, 0, 0, 1, 1, 655361, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 655361, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 655361, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, 1, 1, 655361, 4, 0, 0, 0, 1, 1, 655361, 4, 0, 0, 0, 1, 1, 1, 4, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 917505, 4, 1, 1, 32, 64, 0, 1, 4, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "#", "@"), new Array(0, 4, 1, 1, 32, 64, 0, 0, 4, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 1, 65537, 32, 64, 0, 0, 4, 1, 1, 0, 0, 0, 0, 4, 1, 1, 32, 64, 0, 0, 4, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 1, 262145, 32, 64, 0, 0, 4, 1, 1, 0, 0, 0, 0, 4, 1, 1, 32, 64, 0, 0, 4, 1, 1, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 4, 1, 131073, 32, 64, 0, 0, 4, 1, 1, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 655361, 0, 64, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 1376257, 0, 1, 32, 0, 0, 0, 1376257, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64, 0, 0, 0, 0, 655361, 0, 0, 0, 0, 0, 0, 0, 32, 64, 0, 0, 0, 0, 0, 0, 0, 0, "#", 128, 255.95, 112, 128, 336.95, 97, 128, 308.95, 347.95, 128, 369.95, 337.95, 128, 423.95, 192, 128, 471.95, 186, 128, 188.95, 228, "@"), new Array(1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 851969, 16, 64, 0, 1, 0, 0, 720897, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1441793, 16, 64, 0, 1, 0, 0, 1441793, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 655361, 16, 64, 0, 1, 0, 0, 655361, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1179649, 16, 64, 0, 1, 0, 0, 1245185, 0, 0, 0, "#", "@"), new Array(1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 917505, 0, 0, 0, 0, 0, 0, 0, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 1, 0, 0, 917505, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 1, 0, 1, 32, 64, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 131073, 1, 1, 1, 32, 64, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 32, 64, 0, 0, 458753, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 655361, 1, 0, 0, 0, 0, 0, 0, 0, 0, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, 720897, 0, 1, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 32, 64, 0, 1, 1, 1, 1, 0, 0, 0, "#", "@"), new Array(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1376257, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1376257, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 32, 64, 0, 1, 4, 4, 4, 0, 0, 0, 1, 4, 4, 4, 32, 64, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 32, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, "#", 128, 163.95, 156, 128, 161.95, 323.95, "@")); level = 0; MAX_LEVEL = levelData.length - 1; function startCountedStarBurst(x, y, numStars, obj) { var objD; var rnd; var thisStar; var iAngle; var i = 0; while (i < numStars) { objD = depth[STAR_OBJ]; attachMovie(obj, "Star" + objD[CURRENT_DEPTH], objD[CURRENT_DEPTH]); thisStar = _root["Star" + objD[CURRENT_DEPTH]]; updateDepth(objD); thisStar._x = x; thisStar._y = y; iAngle = random(360); thisStar.vx = Math.sin(iAngle); thisStar.vy = Math.cos(iAngle); i++; } } PUVAR_RANDOM = 0; PUVAR_CLIP_NAME = 1; PUVAR_DURATION = 2; PUVAR_LEVEL = 3; PUVAR_SCORE = 4; PUVAR_VERSION = 5; PU_SHIFT = 16; PU_MASK = 255; PU_DRAIN_COVER = 22; PU_NO_GRAVITY = 1; PU_FIREBALL = 2; PU_DOUBLE_BAT = 3; PU_REVERSE_GRAVITY = 4; PU_SPEED_UP = 5; PU_SPEED_DOWN = 6; PU_LARGE_BAT = 7; PU_SMALL_BAT = 8; PU_MULTI_BALL = 9; PU_BOMB = 10; PU_NEXT_LEVEL = 11; PU_REVERSE_BAT = 12; PU_MULTI_LASER = 13; PU_SINGLE_LASER = 14; PU_CHERRY = 15; PU_RASPBERRY = 16; PU_BANANA = 17; PU_BANANA_BUNCH = 18; PU_MELON = 19; PU_EATEN_MELON = 20; PU_DIAMOND = 21; PU_NUM = 23; PU_NONE = 16777215 /* 0xFFFFFF */; pickupObject = new Array(); pickupObject[PU_DRAIN_COVER] = [50, "DrainCoverPickup", 700, 1, 0, _root.VERSION_DEMO]; pickupObject[PU_NO_GRAVITY] = [40, "NoGravityPickup", 300, 0, 0, _root.VERSION_DEMO]; pickupObject[PU_FIREBALL] = [40, "FireballPickup", 900, 4, 0, _root.VERSION_DEMO]; pickupObject[PU_DOUBLE_BAT] = [85, "DoubleBatPickup", 900, 0, 0, _root.VERSION_DEMO]; pickupObject[PU_REVERSE_GRAVITY] = [50, "ReverseGravityPickup", 300, 0, 0, _root.VERSION_DEMO]; pickupObject[PU_SPEED_UP] = [90, "SpeedUpPickup", -1, 0, 0, _root.VERSION_DEMO]; pickupObject[PU_SPEED_DOWN] = [90, "SpeedDownPickup", -1, 0, 0, _root.VERSION_DEMO]; pickupObject[PU_LARGE_BAT] = [90, "BigBatPickup", 800, 0, 0, _root.VERSION_DEMO]; pickupObject[PU_SMALL_BAT] = [70, "LittleBatPickup", 600, 0, 0, _root.VERSION_DEMO]; pickupObject[PU_MULTI_BALL] = [10, "MultiBallPickup", -1, 0, 0, _root.VERSION_FULL]; pickupObject[PU_BOMB] = [95, "BombPickup", -1, 2, 0, _root.VERSION_DEMO]; pickupObject[PU_NEXT_LEVEL] = [5, "NextLevelPickup", -1, 3, 0, _root.VERSION_DEMO]; pickupObject[PU_REVERSE_BAT] = [5, "ReverseBatPickup", 600, 15, 0, _root.VERSION_FULL]; pickupObject[PU_MULTI_LASER] = [15, "MultiLaserPickup", 300, 6, 0, _root.VERSION_FULL]; pickupObject[PU_SINGLE_LASER] = [10, "SingleLaserPickup", 100, 8, 0, _root.VERSION_FULL]; pickupObject[PU_CHERRY] = [95, "CherryPickup", -1, 5, 150, _root.VERSION_DEMO]; pickupObject[PU_RASPBERRY] = [95, "RaspberryPickup", -1, 0, 10, _root.VERSION_DEMO]; pickupObject[PU_BANANA] = [95, "BananaPickup", -1, 0, 5, _root.VERSION_DEMO]; pickupObject[PU_BANANA_BUNCH] = [80, "BananaBunchPickup", -1, 4, 100, _root.VERSION_FULL]; pickupObject[PU_MELON] = [95, "MelonPickup", -1, 0, 20, _root.VERSION_DEMO]; pickupObject[PU_EATEN_MELON] = [95, "EatenMelonPickup", -1, 0, 5, _root.VERSION_DEMO]; pickupObject[PU_DIAMOND] = [5, "DiamondPickup", -1, 9, 1000, _root.VERSION_FULL]; function drawNum(aNum, aX, aY, aObj, aCircle, aDeg, aDepth, showZeros, aScale) { drawNum(aNum, aX, aY, aObj, aCircle, aDeg, aDepth, showZeros, aScale, false); } function drawSingleNum(aNum, aX, aY, aObj, showZeros, centred, aScale) { if (!aScale) { aScale = 100; } var addName = "_gfx"; var aDepth = 10101010110; var hundreds_thousands = int(aNum / 100000); aNum = aNum - (hundreds_thousands * 100000); var tens_thousands = int(aNum / 10000); aNum = aNum - (tens_thousands * 10000); var thousands = int(aNum / 1000); aNum = aNum - (thousands * 1000); var hundreds = int(aNum / 100); aNum = aNum - (hundreds * 100); var tens = int(aNum / 10); aNum = aNum - (tens * 10); var ones = int(aNum); ht = "hundreds_thousands" + addName; th = "tens_thousands" + addName; t = "thousands" + addName; h = "hundreds" + addName; ts = "tens" + addName; o = "ones" + addName; var len = 1; if ((hundreds_thousands != 0) || (showZeros)) { len++; showZeros = true; aObj.attachMovie(hundreds_thousands + addName, ht, aDepth++); } if ((tens_thousands != 0) || (showZeros)) { len++; showZeros = true; aObj.attachMovie(tens_thousands + addName, th, aDepth++); } if ((thousands != 0) || (showZeros)) { len++; showZeros = true; aObj.attachMovie(thousands + addName, t, aDepth++); } if ((hundreds != 0) || (showZeros)) { len++; showZeros = true; aObj.attachMovie(hundreds + addName, h, aDepth++); } if ((tens != 0) || (showZeros)) { len++; showZeros = true; aObj.attachMovie(tens + addName, ts, aDepth++); } aObj.attachMovie(ones + addName, o, aDepth++); aObj[ht]._xscale = (aObj[ht]._yscale = aScale); aObj[th]._xscale = (aObj[th]._yscale = aScale); aObj[t]._xscale = (aObj[t]._yscale = aScale); aObj[h]._xscale = (aObj[h]._yscale = aScale); aObj[ts]._xscale = (aObj[ts]._yscale = aScale); aObj[o]._xscale = (aObj[o]._yscale = aScale); var charWidth = (20 * (aScale / 100)); var charSpacing = (charWidth - (10 * (aScale / 100))); aObj[ht]._y = (aObj[th]._y = (aObj[t]._y = (aObj[h]._y = (aObj[ts]._y = (aObj[o]._y = aY))))); if (centred) { var leftmost = (0.5 * ((charWidth * len) - charSpacing)); aObj[ht]._x = (aObj[th]._x = (aObj[t]._x = (aObj[h]._x = (aObj[ts]._x = (aObj[o]._x = aX - leftmost))))); } else { aObj[ht]._x = (aObj[th]._x = (aObj[t]._x = (aObj[h]._x = (aObj[ts]._x = (aObj[o]._x = aX))))); } len--; aObj[ht]._x = aObj[ht]._x + (charWidth * (len - 5)); aObj[th]._x = aObj[th]._x + (charWidth * (len - 4)); aObj[t]._x = aObj[t]._x + (charWidth * (len - 3)); aObj[h]._x = aObj[h]._x + (charWidth * (len - 2)); aObj[ts]._x = aObj[ts]._x + (charWidth * (len - 1)); aObj[o]._x = aObj[o]._x + (charWidth * len); } function drawNum(aNum, aX, aY, aObj, aCircle, aDeg, aDepth, showZeros, aScale, aUseGfx) { if (aUseGfx) { addName = "_gfx"; } else { addName = ""; } if (aNum < 0) { aNum = 0; } aObj._x = aX; aObj._y = aY; var hundreds_hundreds_thousands = int(aNum / 10000000); aNum = aNum - (hundreds_hundreds_thousands * 10000000); var tens_hundreds_thousands = int(aNum / 1000000); aNum = aNum - (tens_hundreds_thousands * 1000000); var hundreds_thousands = int(aNum / 100000); aNum = aNum - (hundreds_thousands * 100000); var tens_thousands = int(aNum / 10000); aNum = aNum - (tens_thousands * 10000); var thousands = int(aNum / 1000); aNum = aNum - (thousands * 1000); var hundreds = int(aNum / 100); aNum = aNum - (hundreds * 100); var tens = int(aNum / 10); aNum = aNum - (tens * 10); var ones = int(aNum); hht = "hundreds_hundreds_thousands" + addName; tht = "tens_hundreds_thousands" + addName; ht = "hundreds_thousands" + addName; th = "tens_thousands" + addName; t = "thousands" + addName; h = "hundreds" + addName; ts = "tens" + addName; o = "ones" + addName; if ((hundreds_hundreds_thousands != 0) || (showZeros)) { showZeros = true; aObj.attachMovie(hundreds_hundreds_thousands + addName, hht, aDepth++); } if ((tens_hundreds_thousands != 0) || (showZeros)) { showZeros = true; aObj.attachMovie(tens_hundreds_thousands + addName, tht, aDepth++); } if ((hundreds_thousands != 0) || (showZeros)) { showZeros = true; aObj.attachMovie(hundreds_thousands + addName, ht, aDepth++); } if ((tens_thousands != 0) || (showZeros)) { showZeros = true; aObj.attachMovie(tens_thousands + addName, th, aDepth++); } if ((thousands != 0) || (showZeros)) { showZeros = true; aObj.attachMovie(thousands + addName, t, aDepth++); } if ((hundreds != 0) || (showZeros)) { showZeros = true; aObj.attachMovie(hundreds + addName, h, aDepth++); } if ((tens != 0) || (showZeros)) { showZeros = true; aObj.attachMovie(tens + addName, ts, aDepth++); } aObj.attachMovie(ones + addName, o, aDepth++); if (aUseGfx) { aObj[hht]._xscale = (aObj[hht]._yscale = aScale); aObj[tht]._xscale = (aObj[tht]._yscale = aScale); aObj[ht]._xscale = (aObj[ht]._yscale = aScale); aObj[th]._xscale = (aObj[th]._yscale = aScale); aObj[t]._xscale = (aObj[t]._yscale = aScale); aObj[h]._xscale = (aObj[h]._yscale = aScale); aObj[ts]._xscale = (aObj[ts]._yscale = aScale); aObj[o]._xscale = (aObj[o]._yscale = aScale); } else { aObj[hht].num._xscale = (aObj[hht].num._yscale = aScale); } aObj[tht].num._xscale = (aObj[tht].num._yscale = aScale); aObj[ht].num._xscale = (aObj[ht].num._yscale = aScale); aObj[th].num._xscale = (aObj[th].num._yscale = aScale); aObj[t].num._xscale = (aObj[t].num._yscale = aScale); aObj[h].num._xscale = (aObj[h].num._yscale = aScale); aObj[ts].num._xscale = (aObj[ts].num._yscale = aScale); aObj[o].num._xscale = (aObj[o].num._yscale = aScale); if (!aCircle) { var charWidth = (20 / (100 / aScale)); aObj[hht]._x = aObj[hht]._x + charWidth; aObj[tht]._x = aObj[tht]._x + (charWidth * 2); aObj[ht]._x = aObj[ht]._x + (charWidth * 3); aObj[th]._x = aObj[th]._x + (charWidth * 4); aObj[t]._x = aObj[t]._x + (charWidth * 5); aObj[h]._x = aObj[h]._x + (charWidth * 6); aObj[ts]._x = aObj[ts]._x + (charWidth * 7); aObj[o]._x = aObj[o]._x + (charWidth * 8); } else { var r = (_root.txtRingWidth / 2); aObj[hht].num._y = -r; aObj[tht].num._y = -r; aObj[ht].num._y = -r; aObj[th].num._y = -r; aObj[t].num._y = -r; aObj[h].num._y = -r; aObj[ts].num._y = -r; aObj[o].num._y = -r; var charDeg = (5 / (100 / aScale)); aObj.pickupGfx._rotation = aDeg + (charDeg * 5); aObj[hht]._rotation = aDeg; aObj[tht]._rotation = aDeg + charDeg; aObj[ht]._rotation = aDeg + (charDeg * 2); aObj[th]._rotation = aDeg + (charDeg * 3); aObj[t]._rotation = aDeg + (charDeg * 4); aObj[h]._rotation = aDeg + (charDeg * 5); aObj[ts]._rotation = aDeg + (charDeg * 6); aObj[o]._rotation = aDeg + (charDeg * 7); } }
Instance of Symbol 224 MovieClip "timerObj" in Frame 1
onClipEvent (load) { value = 0; maxValue = 100; valueStep = 100 / maxValue; dp = 1000; totalFileSize = _root.getBytesTotal(); bytesLoaded = _root.getBytesLoaded(); amountLoaded = bytesLoaded / totalFileSize; _root.createEmptyMovieClip("num", 1919); } onClipEvent (enterFrame) { bytesLoaded = _root.getBytesLoaded(); amountLoaded = bytesLoaded / totalFileSize; percentLoaded = int(amountLoaded * 100); j = 0; while (j < 1) { j++; } _root.drawSingleNum(amountLoaded, 320, 260, _root.num, false, true, 100); if (amountLoaded >= 1) { _root.num.removeMovieClip(); _root.gotoAndPlay("Intro"); } }
Frame 2
stop();
Frame 3
gotoAndPlay (4);
Frame 4
_root.hiScoreCall = 0; _root.hiScoresChanged = false; _root.page = "MAINMENU"; _root.gameInPlay = false; Key.removeListener(_root.menuListener); _root.menuListener = new Object(); _root.menuListener.onKeyDown = function () { if (!_root.gameInPlay) { if (_root.page == "MAINMENU") { _root.gotoAndPlay(50); } if (Key.isDown(38)) { if (_root.page == "MAINMENU") { _root.selectedItem--; if ((_root.selectedItem == 1) && (_root.VERSION == _root.VERSION_FULL)) { _root.selectedItem--; } if (_root.selectedItem < 0) { _root.selectedItem = 6; } } } if (Key.isDown(40)) { if (_root.page == "MAINMENU") { _root.selectedItem++; if ((_root.selectedItem == 1) && (_root.VERSION == _root.VERSION_FULL)) { _root.selectedItem++; } if (_root.selectedItem > 6) { _root.selectedItem = 0; } } } if (Key.isDown(37) && ((_root.page == "INSTRUCTIONS") || (_root.page == "HISCORE"))) { _root.selectedItem--; if (_root.selectedItem < 0) { _root.selectedItem = 2; } } if (Key.isDown(39) && ((_root.page == "INSTRUCTIONS") || (_root.page == "HISCORE"))) { _root.selectedItem++; if (_root.selectedItem > 2) { _root.selectedItem = 0; } } if (Key.isDown(32) || (Key.isDown(13))) { switch (_root.page) { case "MAINMENU" : switch (_root.selectedItem) { case 0 : Key.removeListener(_root.someListener); _root.gotoAndPlay("PlayGame"); break; case 1 : _root.gotoAndPlay("Nag"); break; case 2 : _root.gotoAndPlay("Instructions"); break; case 3 : _root.gotoAndPlay("HiScore"); break; case 4 : _root.gotoAndPlay("Credits"); } break; case "INSTRUCTIONS" : switch (_root.selectedItem) { case 0 : _root.gotoAndPlay("Intro", "StaticMainMenu"); break; case 1 : Key.removeListener(_root.someListener); _root.gotoAndPlay("playGame"); break; case 2 : _root.gotoAndPlay("gotoHiScore"); } break; case "HISCORE" : switch (_root.selectedItem) { case 0 : _root.gotoAndPlay("Intro", "StaticMainMenu"); break; case 1 : Key.removeListener(_root.someListener); _root.gotoAndPlay("playGame"); break; case 2 : _root.gotoAndPlay("gotoInstructions"); } break; case "CREDITS" : case "NAG" : case "ATTRACT_INSTRUCTIONS" : case "ATTRACT_HISCORE" : _root.gotoAndPlay("Intro", "StaticMainMenu"); } } if (_root.page == "MAINMENU") { _root["button" + selectedItem].gotoAndStop(3); } } }; Key.addListener(_root.menuListener); var name = _root._url; name = name.substr(name.lastIndexOf("/") + 1, name.length); name = name.substr(8, name.length); name = name.substr(0, name.lastIndexOf(".")); _root.game_version = "v." + (int(name) / 100); _root.selectedItem = 0;
Instance of Symbol 310 MovieClip "hiScoreController" in Frame 4
onClipEvent (load) { this.showPanels = false; this.refreshEnabled = false; } onClipEvent (enterFrame) { if (_root.hiScoresChanged && (_root._currentframe >= 24)) { _root.gotoAndPlay("playButShow"); } }
Frame 27
stop();
Instance of Symbol 318 MovieClip "button0" in Frame 36
on (rollOver) { _root.selectedItem = 0; this.gotoAndPlay(2); _root.gotoAndPlay(50); } on (press) { Key.removeListener(_root.someListener); _root.gotoAndPlay("PlayGame"); }
Frame 38
Instance of Symbol 321 MovieClip "button1" in Frame 38
on (rollOver) { if (_root.VERSION == _root.VERSION_DEMO) { _root.selectedItem = 1; _root.gotoAndPlay(50); } } on (press) { if (_root.VERSION == _root.VERSION_DEMO) { _root.gotoAndPlay("Nag"); } }
Instance of Symbol 324 MovieClip "button2" in Frame 40
on (rollOver) { _root.selectedItem = 2; _root.gotoAndPlay(50); } on (press) { _root.gotoAndPlay("Instructions"); }
Instance of Symbol 327 MovieClip "button3" in Frame 42
on (rollOver) { _root.selectedItem = 3; _root.gotoAndPlay(50); } on (press) { _root.gotoAndPlay("HiScore"); }
Instance of Symbol 331 MovieClip "button4" in Frame 44
on (rollOver) { _root.selectedItem = 4; _root.gotoAndPlay(50); } on (press) { _root.gotoAndPlay("Credits"); }
Instance of Symbol 334 MovieClip "button5" in Frame 46
on (rollOver) { _root.selectedItem = 5; _root.gotoAndPlay(50); } on (press) { getURL ("http://www.arcadetown.com/index.asp?gameid=xbound", "blank"); }
Instance of Symbol 337 MovieClip "button6" in Frame 48
on (rollOver) { _root.selectedItem = 6; _root.gotoAndPlay(50); } on (press) { fscommand ("quit"); fscommand ("close"); }
Instance of Symbol 313 MovieClip "StaticMainMenu" in Frame 48
onClipEvent (enterFrame) { var i = 0; while (i <= 6) { if (i == _root.selectedItem) { if (_root["button" + i]._currentframe != 2) { _root["button" + i].gotoAndPlay(2); } } else if (_root["button" + i]._currentframe != 1) { _root["button" + i].gotoAndPlay(1); } i++; } }
Frame 302
gotoAndPlay (1003);
Frame 303
gotoAndPlay (1288);
Frame 304
gotoAndPlay (581);
Frame 305
gotoAndPlay (1224);
Frame 306
gotoAndPlay (1001);
Frame 307
gotoAndPlay (543);
Frame 543
_root.gameInPlay = false; _root.page = "CREDITS";
Frame 580
stop();
Frame 581
_root.gameInPlay = false; _root.page = "NAG";
Frame 698
stop();
Frame 699
_root.gameInPlay = false; _root.page = "HISCORE";
Instance of Symbol 367 MovieClip in Frame 699
onClipEvent (enterFrame) { var i = 0; while (i <= 2) { if (i == _root.selectedItem) { if (_root["but" + i]._currentframe != 2) { _root["but" + i].gotoAndPlay(2); } } else if (_root["but" + i]._currentframe != 1) { _root["but" + i].gotoAndPlay(1); } i++; } }
Instance of Symbol 369 MovieClip in Frame 699
onClipEvent (load) { i = 0; while (i < 10) { _root["name" + i] = ""; i++; } _root.hiScoresChanged = true; if (_root.hiScoresChanged) { var i = 0; while (i < _root.localHiScores.length) { _root["name" + i] = _root.localHiNames[i]; var so = _root["score" + i]; _root.drawNum(int(_root.localHiScores[i]), so._x - 20, so._y, so, false, 0, 99999 + (100 * i), false, 70, false); i++; } _root.localGlobalScore = (_root.hiScoreError ? "local high score" : "global high score"); _root.hiScoresChanged = false; } }
Instance of Symbol 318 MovieClip "but1" in Frame 699
on (rollOver) { _root.selectedItem = 1; } on (press) { _root.gotoAndPlay("playGame"); }
Instance of Symbol 324 MovieClip "but2" in Frame 699
on (rollOver) { _root.selectedItem = 2; } on (press) { _root.gotoAndPlay("gotoInstructions"); }
Instance of Symbol 392 MovieClip "but0" in Frame 699
onClipEvent (load) { _root.selectedItem = 0; this.gotoAndStop(2); } on (rollOver) { _root.selectedItem = 0; } on (press) { _root.gotoAndPlay("Intro", "StaticMainMenu"); }
Frame 999
gotoAndPlay (4);
Frame 1000
gotoAndPlay (1288);
Frame 1001
_root.gameInPlay = false; _root.page = "HISCORE"; stop();
Frame 1002
gotoAndPlay (1224);
Frame 1003
_root.gameInPlay = false; _root.page = "INSTRUCTIONS";
Instance of Symbol 395 MovieClip in Frame 1003
onClipEvent (enterFrame) { var i = 0; while (i <= 2) { if (i == _root.selectedItem) { if (_root["but" + i]._currentframe != 2) { _root["but" + i].gotoAndPlay(2); } } else if (_root["but" + i]._currentframe != 1) { _root["but" + i].gotoAndPlay(1); } i++; } }
Instance of Symbol 327 MovieClip "but2" in Frame 1003
on (rollOver) { _root.selectedItem = 2; } on (press) { _root.gotoAndPlay("gotoHiScore"); }
Instance of Symbol 318 MovieClip "but1" in Frame 1003
on (rollOver) { _root.selectedItem = 1; } on (press) { _root.gotoAndPlay("playGame"); }
Instance of Symbol 392 MovieClip "but0" in Frame 1003
onClipEvent (load) { _root.selectedItem = 0; this.gotoAndStop(2); } on (rollOver) { _root.selectedItem = 0; } on (press) { _root.gotoAndPlay("Intro", "StaticMainMenu"); }
Frame 1222
gotoAndPlay (699);
Frame 1223
gotoAndPlay (1288);
Frame 1224
stop(); _root.gameInPlay = false; _root.page = "INSTRUCTIONS";
Frame 1225
gotoAndPlay (1001);
Frame 1242
stop();
Frame 1288
batHit = new Sound(); batHit.attachSound("brickHit2"); electric = new Sound(); electric.attachSound("electric"); laserShoot = new Sound(); laserShoot.attachSound("LaserShoot"); brickHit = new Sound(); brickHit.attachSound("brickHit1"); clankHit = new Sound(); clankHit.attachSound("clankHit"); powerUp = new Sound(); powerUp.attachSound("powerUp"); powerUpHitBat = new Sound(); powerUpHitBat.attachSound("powerUpHitBat"); nextLevelSnd = new Sound(); nextLevelSnd.attachSound("nextLevel"); drainHit = new Sound(); drainHit.attachSound("ballDrop"); newBall = new Sound(); newBall.attachSound("newBall"); explode = new Sound(); explode.attachSound("explode"); function MAKEVECTOR(vx, vy, vz) { this.x = vx; this.y = vy; this.z = vz; } function tVector(x, y, z) { this.x = x; this.y = y; this.z = z; this.MAKEVECTOR = _root.MAKEVECTOR; } function f_contact() { this.ball = ball; this.ball1 = ball1; this.normal = new tVector(); this.type = "none"; this.Kr = 0; } function tBall() { this.pos = new tVector(); this.v = new tVector(); this.f = new tVector(); this.angmom = new tVector(); this.torque = new tVector(); this.oneOverM = 0; this.flags = 0; this.radius = 0; this.hits = 2; } function t_CollisionPlane() { this.normal = new tVector(); this.d = 0; } function VectorSquaredLength(v) { return(((v.x * v.x) + (v.y * v.y)) + (v.z * v.z)); } function VectorLength(v) { return(Math.sqrt(VectorSquaredLength(v))); } function NormalizeVector(v) { var len = VectorLength(v); if (len != 0) { v.x = v.x / len; v.y = v.y / len; v.z = v.z / len; } return(v); } function DotProduct(v1, v2) { return(((v1.x * v2.x) + (v1.y * v2.y)) + (v1.z * v2.z)); } function CrossProduct(v1, v2) { var result = new tVector(); result.x = (v1.y * v2.z) - (v1.z * v2.y); result.y = (v1.z * v2.x) - (v1.x * v2.z); result.z = (v1.x * v2.y) - (v1.y * v2.x); return(result); } function VectorSquaredDistance(v1, v2) { return((((v1.x - v2.x) * (v1.x - v2.x)) + ((v1.y - v2.y) * (v1.y - v2.y))) + ((v1.z - v2.z) * (v1.z - v2.z))); } function ScaleVector(v, scale) { var result = new tVector(); result.x = v.x * scale; result.y = v.y * scale; result.z = v.z * scale; return(result); } function VectorSum(v1, v2) { var result = new tVector(); result.x = v1.x + v2.x; result.y = v1.y + v2.y; result.z = v1.z + v2.z; return(result); } function VectorDifference(v1, v2) { var result = new tVector(); result.x = v1.x - v2.x; result.y = v1.y - v2.y; result.z = v1.z - v2.z; return(result); } Math.sinD = function (angle) { return(Math.sin(angle * (Math.PI/180))); }; Math.cosD = function (angle) { return(Math.cos(angle * (Math.PI/180))); }; Math.acosD = function (ratio) { return(Math.acos(ratio) * 57.2957795130823); }; _global.Vector = function (x, y) { this.x = x; this.y = y; }; Vector.prototype.toString = function () { var rx = (Math.round(this.x * 1000) / 1000); var ry = (Math.round(this.y * 1000) / 1000); return(((("[" + rx) + ", ") + ry) + "]"); }; Vector.prototype.reset = function (x, y) { this.constructor(x, y); }; Vector.prototype.getClone = function () { return(new this.constructor(this.x, this.y)); }; Vector.prototype.plus = function (v) { with (this) { x = x + v.x; y = y + v.y; } }; Vector.prototype.plusNew = function (v) { with (this) { return(new constructor(x + v.x, y + v.y)); } }; Vector.prototype.minus = function (v) { with (this) { x = x - v.x; y = y - v.y; } }; Vector.prototype.minusNew = function (v) { with (this) { return(new constructor(x - v.x, y - v.y)); } }; Vector.prototype.negate = function () { with (this) { x = -x; y = -y; } }; Vector.prototype.negateNew = function (v) { with (this) { return(new constructor(-x, -y)); } }; Vector.prototype.scale = function (s) { with (this) { x = x * s; y = y * s; } }; Vector.prototype.scaleNew = function (s) { with (this) { return(new constructor(x * s, y * s)); } }; Vector.prototype.getLength = function () { with (this) { return(Math.sqrt((x * x) + (y * y))); } }; Vector.prototype.setLength = function (len) { var r = this.getLength(); if (r) { this.scale(len / r); } else { this.x = len; } }; Vector.prototype.getAngle = function () { return(_root.atan2(this.y, this.x)); }; Vector.prototype.setAngle = function (ang) { with (this) { var r = getLength(); x = r * _root.cos(ang); y = r * _root.sin(ang); } }; Vector.prototype.rotate = function (ang) { with (Math) { var ca = _root.cos(ang); var sa = _root.sin(ang); } with (this) { var rx = ((x * ca) - (y * sa)); var ry = ((x * sa) + (y * ca)); x = rx; y = ry; } }; Vector.prototype.rotateNew = function (ang) { with (this) { var v = new constructor(x, y, z); } v.rotate(ang); return(v); }; Vector.prototype.dot = function (v) { with (this) { return((x * v.x) + (y * v.y)); } }; Vector.prototype.getNormal = function () { with (this) { new constructor(-y, x); } }; Vector.prototype.isNormalTo = function (v) { return(this.dot(v) == 0); }; Vector.prototype.angleBetween = function (v) { var dp = this.dot(v); var cosAngle = (dp / (this.getLength() * v.getLength())); return(Math.acos(cosAngle)); }; with (Vector.prototype) { addProperty("length", getLength, setLength); addProperty("angle", getAngle, setAngle); } n_walls = 5; n_maxballs = 3; CollisionObject = function (aObject, aType, aSubType, aDepth) { this.object = aObject; this.objectType = aType; this.objectSubType = aSubType; this.objectDepth = aDepth; }; CollisionList = function () { this.objectList = new Array(); this.size = 0; }; CollisionList.prototype.addObject = function (aObject, aType, aSubType, aDepth) { thisObject = new CollisionObject(aObject, aType, aSubType, aDepth); this.size = this.objectList.push(thisObject); this.objectList.sort(order); }; CollisionList.prototype.removeObject = function (aObject) { var i; i = 0; while (i < this.objectList.length) { var thisObject = this.objectList[i]; if (thisObject.object == aObject) { this.objectList.splice(i, 1); return(undefined); } i++; } }; CollisionList.prototype.destroyAllObjects = function () { i = 0; while (i < this.objectList.length) { var thisObject = this.objectList[i]; thisObject.object.removeMovieClip(); i++; } this.objectList.splice(0, 0); }; CollisionList.prototype.getObject = function (aObject) { var i; i = 0; while (i < this.objectList.length) { var thisObject = this.objectList[i]; if (thisObject.object == aObject) { return(thisObject.object); } i++; } return("Unknown object: " + aObject); }; CollisionList.prototype.getAllObjectOfType = function (aObjectType) { var i; returnVal = new Array(); i = 0; while (i < this.objectList.length) { if (aObjectType == objectList[i].objectType) { retVal.push(objectList[i]); } i++; } return(retVal); }; CollisionList.prototype.order = function (a, b) { var at = a.objectType; var bt = b.objectType; if (at < bt) { return(-1); } if (at > bt) { return(1); } return(0); }; function spawnRandomPickup(x, y) { _root.timeSinceLastRandom++; _root.timeSinceLastRandom = 0; var levelRnd = false; if (_root.DEBUG) { if (random(100) < 65) { levelRnd = true; } } else if (random(100) < (35 + (_root.level / 2))) { levelRnd = true; } if (levelRnd) { var pickupChooser = random(100); var pickupsChosen = 0; var pickupChooserArray = new Array(); var i = 0; while (i < _root.PU_NUM) { if ((pickupObject[i][PUVAR_LEVEL] <= _root.level) && (pickupObject[i][PUVAR_VERSION] <= _root.VERSION)) { if (pickupObject[i][PUVAR_RANDOM] >= pickupChooser) { pickupChooserArray[pickupsChosen] = i; pickupsChosen++; } } i++; } if (pickupsChosen > 0) { var rnd = pickupChooserArray[random(pickupsChosen)]; spawnPickup(rnd, x, y); } } } function spawnPickup(pickupType, x, y) { powerUp.start(); var txt = ""; var objD = depth[PICKUP_OBJ][CURRENT_DEPTH]; updateDepth(depth[PICKUP_OBJ]); _root.attachMovie(pickupObject[pickupType][PUVAR_CLIP_NAME], "Pickup" + objD, objD); thisPickup = _root["Pickup" + objD]; thisPickup._x = x; thisPickup._y = y; _root.colList.addObject(thisPickup, PICKUP_OBJ, pickupType, objD); } function updatePickup(aPickup) { var obj = aPickup.object; if (random(100) > 90) { var i = depth[STAR_OBJ][CURRENT_DEPTH]; updateDepth(depth[STAR_OBJ]); _root.attachMovie("Star", "Star" + i, i); var thisStar = _root["Star" + i]; thisStar._x = (obj._x + random(obj._width)) - (obj._width / 2); thisStar._y = (obj._y + random(obj._height)) - (obj._height / 2); } obj._x = obj._x - ((obj._x - _root.halfWidth) / 40); obj._y = obj._y - ((obj._y - _root.halfHeight) / 40); if ((((obj._x > (_root.drain._x - 10)) && (obj._x < (_root.drain._x + 10))) && (obj._y > (_root.drain._y - 10))) && (obj._y < (_root.drain._y + 10))) { colList.removeObject(obj); obj.removeMovieClip(); return(undefined); } b = 0; while (b <= 1) { if (b == 0) { thisBat = _root.bat; } else { thisBat = _root.bat1; } if (thisBat) { if (thisBat.hitTest(obj)) { obj.pos = new Vector(obj._x, obj._y); obj.vel = new Vector(-101010, -101010); wallNum = 0; while (wallNum < thisBat.walls) { wall = thisBat["wall" + wallNum]; if (testHit(obj, wall, false, true)) { powerUpHitBat.start(); bat.addPickup(aPickup.objectSubType, obj._x, obj._y); obj._visible = false; colList.removeObject(obj); obj.removeMovieClip(); break; } wallNum++; } } } b++; } } function drawPickupVals() { if (_root.bat.pickupCount > -1) { _root.pickupCounter.gotoAndPlay((31 - int((_root.bat.cpc / _root.bat.pickupCount) * 31)) + 1); } else if (_root.pickupCounter._currentframe != 1) { _root.pickupCounter.gotoAndPlay(1); } } _root.timeSinceLastRandom = 0; function testHit(thisBall, wall, adjustAngle, collisionOnly) { if (thisBall.hitTest(wall)) { var px = thisBall.pos.x; var py = thisBall.pos.y; var br = (thisBall._width / 2); var wallWidth = (wall._width / 2); tp.x = wall._x; tp.y = wall._y; wall._parent.localToGlobal(tp); var x = (px - tp.x); var y = (py - tp.y); var angle = ((wall._parent._rotation + wall._rotation) * _root.rad); var cosa = cos(angle); var sina = sin(angle); var xpos = ((cosa * x) + (sina * y)); if (!((xpos >= (-(wallWidth + br))) && (xpos <= (wallWidth + br)))) { return(false); } var ypos = ((cosa * y) - (sina * x)); var vy1 = ((cosa * thisBall.vel.y) - (sina * thisBall.vel.x)); if ((Math.abs(ypos) < br) && (vy1 < 0)) { if (!collisionOnly) { Set("thisBall/pos/:x", ((cosa * xpos) - (sina * ypos)) + tp.x); Set("thisBall/pos/:y", ((cosa * ypos) + (sina * xpos)) + tp.y); if (adjustAngle) { var reflectAng = (angle - ((xpos / 20) - __90__)); thisBall.vel.setAngle(reflectAng); thisBall.vel.scale(1.5); } else { thisBall.vel.setAngle((2 * angle) - thisBall.vel.getAngle()); } } return(true); } } return(false); } function circleHitTest(b1, b2, bUpdate, bInner, b1radius, b2radius) { var tx = (b1.pos.x - b2._x); var ty = (b1.pos.y - b2._y); var d = Math.sqrt((tx * tx) + (ty * ty)); var bTest = false; if (bInner) { if (d > (b2radius - b1radius)) { bTest = true; } } else if (d < (b1radius + b2radius)) { bTest = true; } if (bTest) { if (bUpdate) { var current_angle = Math.atan2(b1.pos.x - b2._x, b1.pos.y - b2._y); if (bInner) { b1.pos.x = b2._x + ((b2radius - b1radius) * sin(current_angle)); b1.pos.y = b2._y + ((b2radius - b1radius) * cos(current_angle)); } else { b1.pos.x = b2._x + ((b2radius + b1radius) * sin(current_angle)); b1.pos.y = b2._y + ((b2radius + b1radius) * cos(current_angle)); } var vx = b1.vel.x; var vy = b1.vel.y; var x = (b2radius * sin(current_angle)); var y = (b2radius * cos(current_angle)); var x2 = (x * x); var y2 = (y * y); var x2y2 = (x2 + y2); var nvx = (((vx * (y2 - x2)) - (((2 * vy) * x) * y)) / x2y2); var nvy = (((vy * (x2 - y2)) - (((2 * vx) * x) * y)) / x2y2); b1.vel.x = nvx; b1.vel.y = nvy; b1.vel.scale(1.3); } return(true); } return(false); } var batAngleStep = (__180__ / 60); var tp = new Object(); function calcDistanceFromCentre(thisBall) { var x; var y; x = thisBall.pos.x - _root.halfWidth; y = thisBall.pos.y - _root.halfHeight; distanceFromCentre = Math.sqrt((x * x) + (y * y)); } function checkBeamCollisions() { if (_root.bat.hasPickup(_root.PU_SINGLE_LASER) != -1) { var sector = getSectorFromAngle((_root.bat._rotation - 90) * _root.ang2rad); p = 0; while (p < numBrickLayers) { brick = bricks["brick_" + ((sector * numBrickLayers) + p)]; if (brick) { brick.hitAction.hitAction(1, ballVY); } p++; } } } function checkBulletCollisions() { if (_root.bat.activeBullets > 0) { var min = _root.depth[_root.BULLET_OBJ][_root.MIN_DEPTH]; var max = ((min + _root.depth[_root.BULLET_OBJ][_root.NUM_OBJECTS]) + 1); var p; var thisObj; var d = min; while (d <= max) { thisObj = _root["sb" + d]; if (thisObj) { var bv = new object(); bv.x = thisObj.bulletGfx._x; bv.y = thisObj.bulletGfx._y; thisObj.localToGlobal(bv); if (_root.bricks.hitTest(bv.x, bv.y, true) || (_root.bricks.hitTest(bv.x + (thisObj.vx / 2), bv.y + (thisObj.vy / 2), true))) { var sector = getSector(bv.x, bv.y); _root.bat.activeBullets--; _root.startParticleExplosion(bv.x, bv.y); _root.explode.start(); p = 0; while (p < numBrickLayers) { brick = bricks["brick_" + ((sector * numBrickLayers) + p)]; if (brick) { if (brick.hitTest(thisObj)) { brick.hitAction.hitAction(99999, ballVY); break; } } p++; } thisObj.removeMovieClip(); return; } } d++; } } } function getSectorFromAngle(angle) { var rb = bricks; angle = angle + __90__; if (angle > __360__) { angle = angle - __360__; } else if (angle < 0) { angle = angle + __360__; } return(int(angle / brickSizeAngleRad)); } function getSector(x, y) { var angle = atan2(y - halfHeight, x - halfWidth); return(getSectorFromAngle(angle)); } function CheckCollisions(thisBall) { var i; var j; var k; var brick; var wallNum; calcDistanceFromCentre(thisBall); checkBulletCollisions(); checkBeamCollisions(); checkSpecials(thisBall); checkHitOuterRing(thisBall); _root.bounce = 0.9; var sector = getSector(thisBall/pos/:x, thisBall/pos/:y); j = sector - 1; while (j <= (sector + 1)) { checkSector(j, thisBall); if (thisBall.bounced) { break; } j++; } if (!thisBall.bounced) { checkBatCollision(bat, thisBall); if (bat1) { checkBatCollision(bat1, thisBall); } } checkDrainCollision(thisBall); } function checkHitOuterRing(thisBall) { if (thisBall._visible) { if (circleHitTest(thisBall, _root.boundingRing, true, true, thisBall._width / 2, _root.ringWidth / 2)) { clankHit.start(); _root.startCountedStarBurst(thisBall/pos/:x, thisBall/pos/:y, 4, "QuickStar" + (random(2) + 1)); } } } function checkBatCollision(thisBat, thisBall) { if (distanceFromCentre < distanceBrickLayers[numBrickLayers - 2]) { _root.bounce = 1.2; var wall; var wallNum; wallNum = 0; while (wallNum < thisBat.walls) { wall = thisBat["wall" + wallNum]; adjustAngle = true; if (testHit(thisBall, wall, adjustAngle, false)) { if (thisBall.vel.getLength() < 8) { thisBall.vel.setLength(8); } batHit.start(); startCountedStarBurst(thisBall/pos/:x, thisBall/pos/:y, 4, "QuickStar" + (random(2) + 1)); Set("thisBall/:bounced", true); return(undefined); } wallNum++; } } } function checkDrainCollision(thisBall) { if (distanceFromCentre < distanceBrickLayers[numBrickLayers - 1]) { if (_root.invulnerability > 0) { if (circleHitTest(thisBall, _root.invuln, true, false, thisBall._width / 2, _root.drainCoverRadius)) { thisBall.vel.scale(1.35); clankHit.start(); thisBall.bounced = true; _root.startCountedStarBurst(thisBall/pos/:x, thisBall/pos/:y, 4, "QuickStar" + (random(2) + 1)); } } else if (bat.hasPickup(PU_DRAIN_COVER) != -1) { if (circleHitTest(thisBall, /:DrainCover, true, false, thisBall._width / 2, _root.drainCoverRadius)) { thisBall.vel.scale(1.35); clankHit.start(); thisBall.bounced = true; _root.startCountedStarBurst(thisBall/pos/:x, thisBall/pos/:y, 4, "QuickStar" + (random(2) + 1)); } } else if ((((((thisBall/pos/:x + thisBall.radius) < (drain._x + drain.drainRadius)) && ((thisBall/pos/:x - thisBall.radius) > (drain._x - drain.drainRadius))) && ((thisBall/pos/:y + thisBall.radius) < (drain._y + drain.drainRadius))) && ((thisBall/pos/:y - thisBall.radius) > (drain._y - drain.drainRadius))) && (thisBall._currentframe < 5)) { drainHit.start(); thisBall.gotoAndPlay(5); } } } function checkBallCollision(thisBall) { } function checkSpecials(thisBall) { var brick; var k = _root.specialBricks; while (k < (_root.specialBricks + _root.numSpecialBricks)) { brick = _root.bricks["brick_" + k]; if (brick) { if (circleHitTest(thisBall, brick, true, false, thisBall._width / 2, _root.drainCoverRadius)) { _root.clankHit.start(); thisBall.bounced = true; _root.startCountedStarBurst(thisBall/pos/:x, thisBall/pos/:y, 4, "QuickStar" + (random(2) + 1)); } } k++; } } function calcZones() { var diameter = 15.4; p = 0; while (p < numBrickLayers) { minDist[p] = distanceBrickLayers[p] - diameter; if (minDist[p] < 0) { minDist[p] = 0; } if (p == 0) { maxDist[p] = 1000; } else { maxDist[p] = distanceBrickLayers[p - 1] + diameter; } p++; } } function checkSector(j, thisBall) { var p; var brick; var wall; p = 0; while (p < numBrickLayers) { if ((distanceFromCentre >= minDist[p]) && (distanceFromCentre <= maxDist[p])) { brick = bricks["brick_" + ((j * numBrickLayers) + p)]; if (brick) { var wall; var wallNum = 0; while (wallNum < brick/:walls) { wall = brick["wall" + wallNum]; ballVY = thisBall.pos; if (!(brick.type & BR_NORMAL)) { reboundThis = false; } else if ((bat.hasPickup(PU_FIREBALL) == -1) || (bat.hasBomb)) { reboundThis = false; } else { reboundThis = true; } if (testHit(thisBall, wall, false, reboundThis)) { if (brick.brickType != BR_NORMAL) { thisBall.vel.scale(1.1); } else { thisBall.vel.scale(0.9); } _root.startCountedStarBurst(thisBall/pos/:x, thisBall/pos/:y, 4, "QuickStar" + (random(2) + 1)); thisBall.bounced = true; if (bat.hasBomb) { bat.hasBomb = false; var frame = 2; if (bat.hasPickup(PU_FIREBALL) != -1) { frame = 3; } var g = 0; while (g < _root.ballIndex.length) { thisBall = _root["ball" + _root.ballIndex[g]]; if (thisBall._currentframe != frame) { thisBall.gotoAndStop(frame); } g++; } brick.hitAction.hitAction(99999, ballVY); _root.explode.start(); _root.createExplosion(thisBall.pos.x, thisBall.pos.y, "Multi"); k_plus = ((j + 1) % numBrickSectors) * numBrickLayers; k_minus = ((j - 1) % numBrickSectors) * numBrickLayers; if (p < (numBrickLayers - 1)) { bricks["brick_" + (((j * numBrickLayers) + p) + 1)].hitAction.hitAction(1000, ballVY); bricks["brick_" + ((k_plus + p) + 1)].hitAction.hitAction(1000, ballVY); bricks["brick_" + ((k_minus + p) + 1)].hitAction.hitAction(1000, ballVY); } if (p > 0) { bricks["brick_" + (((j * numBrickLayers) + p) - 1)].hitAction.hitAction(1000, ballVY); bricks["brick_" + ((k_plus + p) - 1)].hitAction.hitAction(1000, ballVY); bricks["brick_" + ((k_minus + p) - 1)].hitAction.hitAction(1000, ballVY); } k = j; bricks["brick_" + (k_plus + p)].hitAction.hitAction(1000, ballVY); bricks["brick_" + (k_minus + p)].hitAction.hitAction(1000, ballVY); } else if (reboundThis) { brick.hitAction.hitAction(1000, ballVY); } else { brick.hitAction.hitAction(1, ballVY); } if (!brick) { spawnRandomPickup(thisBall.pos.x, thisBall.pos.y); } return(undefined); } wallNum++; } } } p++; } } function changeSkin() { if ((_root.level > 8) && (_root.level < 18)) { _root.skin = 2; } else if ((_root.level >= 18) && (_root.level < 30)) { _root.skin = 1; } else { _root.skin = 0; } _root.drain.gotoAndStop(_root.skin + 1); _root.Ring.gotoAndStop(_root.skin + 1); _root.bg.gotoAndStop(_root.skin + 1); } function popupScore(anum, x, y) { var d = depth[POINTS_OBJ][CURRENT_DEPTH]; updateDepth(depth[POINTS_OBJ]); _root.attachMovie("PointsScoreNotify", "points" + d, d); _root["points" + d]._x = x; _root["points" + d]._y = y; _root["points" + d].num = anum; } function createExplosion(x, y, type) { var d = depth[EXPLODE_OBJ][CURRENT_DEPTH]; updateDepth(depth[EXPLODE_OBJ]); _root.attachMovie("ExplodeAnim" + type, "eam" + d, d); _root["eam" + d]._x = x; _root["eam" + d]._y = y; } function fireBullet() { var d = _root.depth[_root.BULLET_OBJ][_root.CURRENT_DEPTH]; _root.updateDepth(_root.depth[_root.BULLET_OBJ]); _root.attachMovie("SmallBullet", "sb" + d, d); var thisBullet = _root["sb" + d]; thisBullet._rotation = _root.bat._rotation; thisBullet._x = _root.bat._x; thisBullet._y = _root.bat._y; var v = new Vector(0, -2); v.rotate(_root.bat._rotation / _root.rad2ang); thisBullet.vx = v.x; thisBullet.vy = v.y; } function addScore(aAdd) { if (((_root.totalScore + aAdd) % _root.extraLifeScore) < (_root.totalScore % _root.extraLifeScore)) { _root.attachMovie("ExtraLife", "extralife", _root.EXTRA_LIFE_DEPTH); _root.extralife._x = halfWidth; _root.extralife._y = halfHeight; _root.extralife._alpha = 70; addLife(1); } _root.totalScore = _root.totalScore + aAdd; updateScore(); } function resetInvuln() { _root.invuln._visible = true; _root.invulnerability = 200; _root.invuln._alpha = 50; } function updateScore() { drawNum(_root.totalScore, halfWidth, halfHeight, _root.oScore, true, 40, _root.scoreDepth, true, 80); } function addLife(num) { _root.lives = _root.lives + num; drawNum(lives, halfWidth, halfHeight, _root.oLife, true, 2, 10000, false, 80); } function removeLife() { _root.lives--; drawNum(_root.lives, halfWidth, halfHeight, _root.oLife, true, 2, 10000, false, 80); if (lives <= 0) { gotoAndPlay (1300); } } function destroyCurrentArena() { var j; var p; var brickNum; _root.bricks.removeMovieClip(); var j = 0; while (j < (numSpecialBricks + 1)) { var brick = _root["brick_" + (brickNum + j)]; if (brick) { brick._visible = false; brick.removeMovieClip(); brick = null; } j++; } depth[BRICK_OBJ][CURRENT_DEPTH] = depth[BRICK_OBJ][MIN_DEPTH]; numSpecialBricks = 0; } function updateObjects() { var o; k = 0; while (k < colList.objectList.length) { o = colList.objectList[k]; if (o.objectType == PICKUP_OBJ) { updatePickup(o); } k++; } } function removeAllBalls() { var g = 0; while (g < _root.ballIndex.length) { removeBall(_root["ball" + _root.ballIndex[g]]); g++; } } function removeBall(thisBall) { thisBall._visible = false; var g = 0; while (g < _root.ballIndex.length) { if (_root["ball" + _root.ballIndex[g]] == thisBall) { _root.ballIndex.splice(g, 1); } g++; } _root.ballNum--; thisBall.removeMovieClip(); } function launchBall() { _root.bat.hasBomb = false; var ballDepth = depth[BALL_OBJ][CURRENT_DEPTH]; _root.updateDepth(depth[BALL_OBJ]); var i = (ballNum++); _root.attachMovie("ball", "ball" + i, ballDepth); var thisBall = _root["ball" + i]; thisBall._x = -2000; thisBall._y = -2000; thisBall.pos.x = -2000; thisBall.pos.y = -2000; ballIndex.push(i); thisBall._visible = false; var launcherDepth = depth[LAUNCHER_OBJ][CURRENT_DEPTH]; _root.updateDepth(depth[LAUNCHER_OBJ]); _root.attachMovie("ballLauncher", "bl" + launcherDepth, launcherDepth); angle = random(360); bl = _root["bl" + launcherDepth]; bl._x = (120 * Math.cos(angle / _root.rad)) + halfWidth; bl._y = (120 * Math.sin(angle / _root.rad)) + halfHeight; bl.thisBall = thisBall; } function resetBall(thisBall, x, y) { thisBall._x = (thisBall.pos.x = x); thisBall._y = (thisBall.pos.y = y); thisBall.radius = thisBall._width / 2; thisBall.m = 10; var angle = Math.round(random(360)); var speed = 7; thisBall.vel.x = speed * Math.cos(angle * _root.rad); thisBall.vel.y = speed * Math.sin(angle * _root.rad); thisBall._visible = true; } function upgradeLevel(upDown) { _root.level = _root.level + upDown; if (_root.level > _root.MAX_LEVEL) { _root.level = 0; } if (_root.level < 0) { _root.level = _root.MAX_LEVEL; } colList.destroyAllObjects(); removeAllBalls(); var i = depth[LAUNCHER_OBJ][MIN_DEPTH]; while (i < (depth[LAUNCHER_OBJ][MIN_DEPTH] + depth[LAUNCHER_OBJ][NUM_OBJECTS])) { _root["bl" + i].removeMovieClip(); i++; } destroyCurrentArena(); gotoAndPlay (1290); } function BallsMove() { var i; if (_root.bricksToDestroy <= 0) { _root.bat.removeCurrentPickup(); _root.gotoAndPlay("NextLevel"); } else if (_root.ballNum <= 0) { removeLife(); _root.bat.removeCurrentPickup(); if (lives > 0) { _root.resetInvuln(); LaunchBall(); } } bat.update(); j = 0; while (j < _root.ballNum) { thisBall = _root["ball" + ballIndex[j]]; if ((!thisBall.bounced) && (thisBall.applyGravity)) { thisBall.doForce(); } else { thisBall.bounced = false; } CheckCollisions(thisBall); thisBall.move(); j++; } if (_root.invulnerability > 0) { _root.invulnerability--; _root.invuln._alpha = 50; if ((_root.invulnerability < 100) && (_root.invulnerability % 2)) { _root.invuln._visible = !_root.invuln._visible; } } else { _root.invuln._visible = false; } _root.drawPickupVals(); updateObjects(); printFps(); } if (!_root.DESIGN) { designBut._visible = false; dumpBut._visible = false; } Key.removeListener(_root.someListener); _root.createEmptyMovieClip("oScore", 60000); _root.createEmptyMovieClip("oLife", 60001); _root.gameInPlay = true; oLife.createEmptyMovieClip("ballGfx", 989282); oLife.BallGfx.attachMovie("ballGfx", "Norbit", 10292); oLife.BallGfx.Norbit._xscale = (oLife.BallGfx.Norbit._yscale = 40); oLife.BallGfx.Norbit._y = -(_root.txtRingWidth / 2); oLife.BallGfx._rotation = 33; _root.lives = 6; _root.addLife(0); _root.paused = false; someListener = new Object(); someListener.onKeyDown = function () { if (Key.isDown(81)) { _root.paused = true; _root.attachMovie("quit", "quitObj", _root.QUIT_DEPTH); _root.quitObj._alpha = 70; _root.quitObj._x = halfWidth; _root.quitObj._y = halfHeight; } if (Key.isDown(80)) { _root.paused = !_root.paused; if (_root.paused) { _root.attachMovie("paused", "pausedObj", _root.pausedDepth); _root.pausedObj._alpha = 40; _root.pausedObj._x = halfWidth; _root.pausedObj._y = halfHeight; } else { _root.pausedObj.removeMovieClip(); } } }; Key.addListener(someListener); _root.level = 0; totalScore = 0; updateScore(); _root.changeSkin(); _root.attachMovie("DrainCover_skin" + _root.skin, "invuln", _root.INVULN_DEPTH); _root.invuln._x = _root.halfWidth; _root.invuln._y = _root.halfHeight;
Instance of Symbol 409 MovieClip "drain" in Frame 1289
onClipEvent (load) { this._x = _root.halfWidth; this._y = _root.halfHeight; }
Instance of Symbol 284 MovieClip "bat" in Frame 1289
onClipEvent (load) { this.initWidth = this._width; this.initHeight = this._height; this.move = 0; this.maxMove = _root.DEFAULT_BALL_MAX_MOVE; this.moveStep = _root.DEFAULT_BALL_MOVE_STEP; this.moveDir = 0; this._x = /:halfWidth; this._y = /:halfHeight; this.width = 90; this.cp = -1; this.cpc = -1; this.hasBomb = false; this.pickupCount = -1; this.activeBullets = 0; this.fireDelay = 0; this.oldMouseX = 0; this.oldMouseY = 0; } onClipEvent (enterFrame) { if ((_root._xmouse != this.oldMouseX) || (_root._ymouse != this.oldMouseY)) { this.oldMouseX = _root._xmouse; this.oldMouseY = _root._ymouse; var ang; if (this.hasPickup(_root.PU_REVERSE_BAT) != -1) { ang = (_root.atan2(_root._ymouse - _root.halfHeight, _root._xmouse - _root.halfWidth) / _root.rad) + 270; } else { ang = (_root.atan2(_root._ymouse - _root.halfHeight, _root._xmouse - _root.halfWidth) / _root.rad) + 90; } _root.bat._rotation = ang; if (_root.bat1) { _root.bat1._rotation = _root.bat._rotation + 180; } } if (this.hasPickup(_root.PU_SINGLE_LASER) != -1) { var rx = (random(6) - 3); var ry = (random(6) - 3); this._x = _root.halfWidth + rx; this._y = _root.halfHeight + ry; _root.bm._x = _root.halfWidth + rx; _root.bm._y = _root.halfHeight + ry; _root.bm._rotation = this._rotation + 180; } else { this._x = _root.halfWidth; this._y = _root.halfHeight; } if (!_root.paused) { var left; var right; if (this.hasPickup(_root.PU_REVERSE_BAT) != -1) { left = 39; right = 37; } else { left = 37; right = 39; } if (Key.isDown(right)) { this.moveDir = this.moveStep; } else if (Key.isDown(left)) { this.moveDir = -this.moveStep; } else { this.moveDir = 0; } if (this.hasPickup(_root.PU_MULTI_LASER) != -1) { if (Key.isDown(32)) { if ((this.activeBullets == 0) && (this.fireDelay > 10)) { _root.sbl.removeMovieClip(); _root.laserShoot.start(); fireDelay = 0; _root.fireBullet(); this.activeBullets++; } } this.fireDelay++; if ((this.activeBullets == 0) && (!_root.sbl)) { _root.attachMovie("SmallBulletLaunch", "sbl", _root.BULLET_LAUNCHER_DEPTH); _root.sbl._x = _root.halfWidth; _root.sbl._y = _root.halfHeight; } } if (_root.sbl) { _root.sbl._rotation = this._rotation; } this.move = this.move + this.moveDir; if (this.moveDir == 0) { if (this.move > 0) { this.move = this.move - moveStep; } if (this.move < 0) { this.move = this.move + moveStep; } } if (this.move > this.maxMove) { this.move = this.maxMove; } if (this.move < (-this.maxMove)) { this.move = -this.maxMove; } if (Key.isDown(33) && (/:DEBUG)) { _root.bat.removeCurrentPickup(); _root.gotoAndPlay("NextLevel"); } else if (Key.isDown(34) && (/:DEBUG)) { _root.bat.removeCurrentPickup(); _root.upgradeLevel(-1); } } }
Frame 1290
_root.attachMovie("LevelPanel", "levelPanelText", _root.LEVEL_PANEL_DEPTH); levelPanelText._x = _root.halfWidth; levelPanelText._y = _root.halfHeight; _root.drawSingleNum(_root.level + 1, 15, 10, _root.levelPanelText, false, true, 400); nextLevelSnd.start(); var circleRadius = new Array(177, 154, 129); var arenaData = levelData[level]; var i; var j; i = 0; j = 0; var brick; var brickType; var brickNum; var bricksToDestroy = 0; _root.createEmptyMovieClip("bricks", 1); _root.changeSkin(); _root.resetInvuln();
Frame 1291
j = 0; while (j < numBrickLayers) { brickNum = (i * numBrickLayers) + j; brickType = arenaData[brickNum] & PU_MASK; pickupType = arenaData[brickNum] >> PU_SHIFT; if (brickType != 0) { var d = depth[BRICK_OBJ][CURRENT_DEPTH]; updateDepth(depth[BRICK_OBJ]); brickName = "BR_"; if (brickType & BR_NORMAL) { brickName = brickName + ("normal_" + j); brickHits = 4 - j; _root.bricksToDestroy++; } else if (brickType & BR_S_BARRIER) { brickName = brickName + "s_barrier"; brickHits = 9999; } else if (brickType & BR_I_BARRIER) { brickName = brickName + "i_barrier"; brickHits = 9999; } else if (brickType & BR_D_BARRIER) { brickName = brickName + "d_barrier"; brickHits = 9999; } else if (brickType & BR_INDESTRUCTABLE) { brickName = brickName + ("unbreakable_" + j); brickHits = 9999; } brickname = brickname + ("_skin" + _root.skin); var brick = _root.bricks.attachMovie(brickName, "brick_" + brickNum, d); brick.hits = brickHits; brick.maxHits = brickHits; brick.type = brickType; brick.x = (brick._x = brick_middle_x); brick.y = (brick._y = brick_middle_y); brick.pickup = pickupType; if (brick.pickup != 0) { var pickupStr = (_root.pickupObject[brick.pickup][_root.PUVAR_CLIP_NAME] + "Gfx"); var objD = _root.depth[_root.PICKUP_BRICK_OBJ][_root.CURRENT_DEPTH]; _root.updateDepth(_root.depth[_root.PICKUP_BRICK_OBJ]); var thispickup = brick.attachMovie(pickupStr, "brick_pickup_" + brickNum, objD); thispickup._rotation = 5; switch (brick.pickup) { case PU_BOMB : thispickup._xscale = (thispickup._yscale = 60); thispickup._y = (-brick._height) + 25; break; case PU_NEXT_LEVEL : thispickup._xscale = (thispickup._yscale = 60); thispickup._y = (-brick._height) + 35; break; default : thispickup._xscale = (thispickup._yscale = 70); thispickup._y = (-brick._height) + 25; } thispickup._x = 20; } brick._xscale = (brick._yscale = 83); brick._rotation = i * _root.brickSizeAngle; } j++; } i++;
Frame 1292
if (i < numBrickSectors) { gotoAndPlay (1291); } else { brickNum++; _root.specialBricks = brickNum; currentPos = numBrickSectors * numBrickLayers; currentPos++; while (arenaData[currentPos] != "@") { panicVar++; if (panicVar > 100) { break; } _root.numSpecialBricks++; var d = depth[SPECIAL_BRICK_OBJ][CURRENT_DEPTH]; updateDepth(depth[SPECIAL_BRICK_OBJ]); brickName = "BR_"; brickName = brickName + ("c_barrier_skin" + _root.skin); brickHits = 9999; brick = _root.bricks.attachMovie(brickName, "brick_" + (brickNum++), d); brick.hits = brickHits; brick.type = brickType; brick.radius = brick.thisBrick._width / 2; brick.m = 10000000000000; brick.vx = 0; brick.vy = 0; currentPos++; brick._x = arenaData[currentPos++]; brick._y = arenaData[currentPos++]; } gotoAndPlay (1293); }
Frame 1293
_root.levelPanelText._visible = false; _root.levelPanelText.gotoAndPlay("KILLME"); _root.levelPanelText.removeMovieClip(); colList = new CollisionList(); calcZones(); LaunchBall(); newVect = new Vector(); stop();
Instance of Symbol 471 MovieClip "Runner" in Frame 1293
onClipEvent (enterFrame) { if (!_root.paused) { _root.BallsMove(); } }
Frame 1300
oScore.removeMovieClip(); oLife.removeMovieClip(); _root.bat.resetBat(); Key.removeListener(_root.someListener); Key.addListener(_root.menuListener); colList.destroyAllObjects(); removeAllBalls(); _root.sbl.removeMovieClip(); var i = depth[LAUNCHER_OBJ][MIN_DEPTH]; while (i < (depth[LAUNCHER_OBJ][MIN_DEPTH] + depth[LAUNCHER_OBJ][NUM_OBJECTS])) { _root["bl" + i].removeMovieClip(); i++; } hiStatus = false; gotHighScore = false; gotGlobalHighScore = false; loadVariables ((((_root.HI_SCORE_SCRIPT + "?view=query_pos&gameID=5&lowOrHigh=h&view_type=FLASH&playerScore=") + _root.totalScore) + "&dummy=") + getTimer(), this);
Instance of Symbol 474 MovieClip "gameOverTxt" in Frame 1307
onClipEvent (load) { this.swapDepths(1010029); }
Frame 1370
_root.gameOverTxt.removeMovieClip(); var i = 0; if (VERSION == VERSION_DEMO) { _root.sbl.removeMovieClip(); oScore.removeMovieClip(); oLife.removeMovieClip(); destroyCurrentArena(); colList.destroyAllObjects(); _root.DrainCover.removeMovieClip(); _root.bat.resetBat(); removeAllBalls(); var i = depth[LAUNCHER_OBJ][MIN_DEPTH]; while (i < (depth[LAUNCHER_OBJ][MIN_DEPTH] + depth[LAUNCHER_OBJ][NUM_OBJECTS])) { _root["bl" + i].removeMovieClip(); i++; } Key.removeListener(_root.someListener); Key.addListener(_root.menuListener); gotoAndPlay (1703); } else { if (_root.histatus == "DONE") { _root.gotGlobalHighScore = true; _root.gotHighScore = true; _root.hiScorePosition = int(_root.himessage); } if (!_root.gotGlobalHighScore) { i = 0; while (i < _root.localHiScores.length) { if (_root.totalScore > _root.localHiScores[i]) { gotHighScore = true; _root.hiScorePosition = i; break; } i++; } } if (gotHighScore) { _root.attachMovie("scoreInput", "scoreInput", 9000); _root.scoreInput._x = halfWidth; _root.scoreInput._y = halfHeight; stop(); } }
Frame 1371
destroyCurrentArena(); _root.sbl.removeMovieClip(); gotoAndPlay (699);
Frame 1372
_root.DrainCover.removeMovieClip(); _root.ball.gotoAndStop(1); _root.addScore(_root.LEVELS_SCORE_MULTIPLIER * (_root.level + 1)); _root.addScore(_root.BALLS_SCORE_MULTIPLIER * _root.lives); colList.destroyAllObjects(); _root.bat.resetBat(); removeAllBalls(); _root.sbl.removeMovieClip(); var i = depth[LAUNCHER_OBJ][MIN_DEPTH]; while (i < (depth[LAUNCHER_OBJ][MIN_DEPTH] + depth[LAUNCHER_OBJ][NUM_OBJECTS])) { _root["bl" + i].removeMovieClip(); i++; }
Instance of Symbol 479 MovieClip "nextLevelFlasher" in Frame 1372
onClipEvent (load) { this.swapDepths(_root.LEVEL_COMPLETE_DEPTH); } on (press) { _root.gotoAndPlay("gotoNextLevel"); }
Frame 1527
_root.nextLevelFlasher.removeMovieClip(); if ((_root.VERSION == _root.VERSION_DEMO) && (_root.level >= _root.MAX_DEMO_LEVELS)) { _root.sbl.removeMovieClip(); oScore.removeMovieClip(); oLife.removeMovieClip(); destroyCurrentArena(); colList.destroyAllObjects(); _root.DrainCover.removeMovieClip(); _root.bat.hasBomb = false; colList.destroyAllObjects(); _root.bat.removeCurrentPickup(); removeAllBalls(); Key.removeListener(_root.someListener); Key.addListener(_root.menuListener); var i = depth[LAUNCHER_OBJ][MIN_DEPTH]; while (i < (depth[LAUNCHER_OBJ][MIN_DEPTH] + depth[LAUNCHER_OBJ][NUM_OBJECTS])) { _root["bl" + i].removeMovieClip(); i++; } gotoAndPlay (1528); } else { _root.upgradeLevel(1); }
Frame 1957
stop();
Frame 1963
function updateDepth(obj) { if (obj[_root.CURRENT_DEPTH] > (obj[_root.MIN_DEPTH] + obj[_root.NUM_OBJECTS])) { obj[_root.CURRENT_DEPTH] = obj[_root.MIN_DEPTH]; } else { obj[_root.CURRENT_DEPTH]++; } } function clearLevel() { i = 0; while (i < numBrickSectors) { j = 0; while (j < numBrickLayers) { brickNum = (i * numBrickLayers) + j; brick = _root.bricks["brick_" + brickNum]; if (brick) { brick.gotoAndStop(1); brick.thisBrick.pickup = -1; } j++; } i++; } k = _root.specialBricks; while (k < (_root.specialBricks + _root.numSpecialBricks)) { brick = _root.bricks["brick_" + k]; brick.removeMovieClip(); k++; } _root.numSpecialBricks = 0; ldata.clear(); clearGeneratedObjects(); } function buildBlankArena() { var i; var j; var brick; var brickType; var brickNum; _root.createEmptyMovieClip("bricks", 1); i = 0; while (i < numBrickSectors) { j = 0; while (j < numBrickLayers) { brickNum = (i * numBrickLayers) + j; brickType = BR_DEV; var d = depth[BRICK_OBJ][CURRENT_DEPTH]; updateDepth(depth[BRICK_OBJ]); var brickName = ""; if (j <= 3) { brickName = "DEVBR_normal_" + j; } else if ((j == 4) && ((i % 2) == 0)) { brickName = "DEVBR_d_barrier"; } else if ((j == 5) && ((i % 2) == 0)) { brickName = "DEVBR_i_barrier"; } if (brickName != "") { brick = _root.bricks.attachMovie(brickName, "brick_" + brickNum, d); brick.hits = brickHits; brick.type = brickType; brick.x = (brick._x = brick_middle_x); brick.y = (brick._y = brick_middle_y); brick.thisBrick.pickup = -1; var maskedBrick = (ldata[brickNum] & _root.PU_MASK); switch (maskedBrick) { case BR_INDESTRUCTABLE : brick.gotoAndPlay(3); break; case BR_NORMAL : brick.gotoAndPlay(2); break; case BR_D_BARRIER : brick.gotoAndPlay(2); break; case BR_S_BARRIER : brick.gotoAndPlay(3); break; case BR_I_BARRIER : brick.gotoAndPlay(2); } pickupType = ldata[brickNum] >> PU_SHIFT; if (pickupType != 0) { brick.thisBrick.pickup = pickupType; brick.pickup = pickupType; var pickupStr = (_root.pickupObject[pickupType][_root.PUVAR_CLIP_NAME] + "Gfx"); var objD = _root.depth[_root.PICKUP_BRICK_OBJ][_root.CURRENT_DEPTH]; _root.updateDepth(_root.depth[_root.PICKUP_BRICK_OBJ]); var thispickup = brick.attachMovie(pickupStr, "brick_pickup_" + brickNum, objD); thispickup._xscale = (thispickup._yscale = 40); thispickup._rotation = 5; thispickup._y = (-brick._height) + 14; thispickup._x = 20; } brick._rotation = i * _root.brickSizeAngle; brick._xscale = (brick._yscale = 83); } j++; } i++; } _root.specialBricks = brickNum; if (ldata) { brickNum++; _root.specialBricks = brickNum; currentPos = numBrickSectors * numBrickLayers; currentPos++; while (arenaData[currentPos] != "@") { panicVar++; if (panicVar > 100) { return; } _root.numSpecialBricks++; var d = depth[BRICK_OBJ][CURRENT_DEPTH]; updateDepth(depth[BRICK_OBJ]); brickName = "DEVBR_c_barrier"; brick = _root.bricks.attachMovie(brickName, "brick_" + (brickNum++), d); currentPos++; brick._x = arenaData[currentPos++]; brick._y = arenaData[currentPos++]; } } } function buildLevel() { var i; var j; ldata = new Array(); var d = depth[BRICK_OBJ][MIN_DEPTH]; i = 0; while (i < numBrickSectors) { j = 0; while (j < numBrickLayers) { brickNum = (i * numBrickLayers) + j; brick = _root.bricks["brick_" + brickNum]; var pickupVar = 0; if (brick.thisBrick.pickup > 0) { pickupVar = brick.thisBrick.pickup << _root.PU_SHIFT; } if (brick) { if (j < 4) { switch (brick._currentframe) { case 3 : ldata.push(BR_INDESTRUCTABLE + pickupVar); break; case 2 : ldata.push(BR_NORMAL + pickupVar); break; default : ldata.push(0); } } else if (j == 4) { switch (brick._currentframe) { case 2 : ldata.push(BR_D_BARRIER + pickupVar); break; case 3 : ldata.push(BR_S_BARRIER + pickupVar); break; default : ldata.push(0); } } else if (j == 5) { switch (brick._currentframe) { case 2 : ldata.push(BR_I_BARRIER + pickupVar); break; default : ldata.push(0); } } else { ldata.push(0); } } else { ldata.push(0); } j++; } i++; } ldata.push("#"); k = _root.specialBricks; while (k < (_root.specialBricks + _root.numSpecialBricks)) { brickNum = k; brick = _root.bricks["brick_" + k]; ldata.push(BR_C_BARRIER); ldata.push(brick._x); ldata.push(brick._y); k++; } ldata.push("@"); } function testLevel() { _root.levelData[level] = ldata; destroyCurrentArena(); gotoAndPlay (1288); } function clearGeneratedObjects() { i = 0; while (i < numBrickSectors) { j = 0; while (j < numBrickLayers) { brickNum = (i * numBrickLayers) + j; _root["pb" + brickNum].removeMovieClip(); j++; } i++; } var k = _root.depth[_root.PICKUP_BRICK_OBJ][_root.MIN_DEPTH]; while (k < (_root.depth[_root.PICKUP_BRICK_OBJ][_root.MIN_DEPTH] + _root.depth[_root.PICKUP_BRICK_OBJ][_root.NUM_OBJECTS])) { if (_root["pickup" + k]) { _root["pickup" + k].removeMovieClip(); } k++; } } function destroyCurrentArena() { _root.bricks.removeMovieClip(); clearGeneratedObjects(); depth[BRICK_OBJ][CURRENT_DEPTH] = depth[BRICK_OBJ][MIN_DEPTH]; numSpecialBricks = 0; } _root.gameInPlay = false; _root.numSpecialBricks = 0; _root.specialBricks = 0; _root.levelTxt = _root.level + 1; buildBlankArena(); stop(); var ldata;
Instance of Symbol 292 MovieClip [OuterRing_skin0] "ring" in Frame 1963
onClipEvent (load) { _root.pressedObject = ""; this.activePickups = new Array(); this.currentPickup = 0; } onClipEvent (enterFrame) { if ((_root.pressedObject != "") && (_root.pressedObject != "HOLD")) { var objD = _root.depth[_root.PICKUP_BRICK_OBJ][_root.CURRENT_DEPTH]; _root.updateDepth(_root.depth[_root.PICKUP_BRICK_OBJ]); var p = _root.attachMovie(_root.pressedObject, "pickup" + objD, objD); p.pickupType = _root.pressedObject.substr(0, _root.pressedObject.length() - 3); _root.pressedObject = "HOLD"; p.draggable = true; p.mousePressed = true; p._alpha = 100; p._x = _root._xmouse; p._y = _root._ymouse; this.activePickups.push(p); } } onClipEvent (mouseDown) { var i = 0; while (i < this.activePickups.length) { if (this.activePickups[i].hitTest(_root._xmouse, _root._ymouse, true)) { this.currentPickup = this.activePickups[i]; _root.carryingPickup = true; } i++; } } onClipEvent (mouseMove) { if (this.currentPickup != 0) { this.currentPickup._x = _root._xmouse; this.currentPickup._y = _root._ymouse; } } onClipEvent (mouseUp) { if (currentPickup != 0) { var i = 0; while (i < _root.numBrickSectors) { var j = 0; while (j < _root.numBrickLayers) { brickNum = (i * _root.numBrickLayers) + j; var thisBrick = _root.bricks["brick_" + brickNum].thisBrick; p = new object(); p.x = _root._xmouse; p.y = _root._ymouse; if (thisBrick.hitTest(p.x, p.y, true)) { var objD = _root.depth[_root.PICKUP_BRICK_OBJ][_root.CURRENT_DEPTH]; _root.updateDepth(_root.depth[_root.PICKUP_BRICK_OBJ]); var t = _root.attachMovie(currentPickup.pickupType + "Gfx", "pb" + brickNum, (thisBrick.getDepth() + 900000) + brickNum); t._x = p.x; t._y = p.y; t._xscale = (t._yscale = 40); var pickupNum = -1; var pt = 0; while (pt < _root.pickupObject.length) { if (_root.pickupObject[pt][_root.PUVAR_CLIP_NAME] == currentPickup.pickupType) { thisBrick.pickup = pt; break; } pt++; } } j++; } i++; } var p = 0; while (p < this.activePickups.length) { if (this.activePickups[p] == this.currentPickup) { this.activePickups.slice(p, p); } p++; } _root.ring.currentPickup.removeMovieClip(); _root.ring.currentPickup = 0; _root.carryingPickup = false; _root.pressedObject = ""; } }
Instance of Symbol 260 MovieClip [BR_c_barrier_skin0] in Frame 1963
onClipEvent (load) { _root.moved = true; } on (press) { if (_root.moved) { _root.moved = false; var ball = _root.bricks.attachMovie("DEVBR_c_barrier", "brick_" + (_root.specialBricks + _root.numSpecialBricks), _root.depth[_root.BRICK_OBJ][_root.CURRENT_DEPTH] + (_root.specialBricks + _root.numSpecialBricks)); _root.numSpecialBricks++; ball.brickType = "CIRCLE"; ball._alpha = 100; ball._x = this._x; ball._y = this._y + this._height; } }
Instance of Symbol 97 MovieClip [BananaBunchPickupGfx] in Frame 1963
on (press) { _root.pressedObject = "BananaBunchPickupGfx"; }
Instance of Symbol 95 MovieClip [BananaPickupGfx] in Frame 1963
on (press) { _root.pressedObject = "BananaPickupGfx"; }
Instance of Symbol 127 MovieClip [BigBatPickupGfx] in Frame 1963
on (press) { _root.pressedObject = "BigBatPickupGfx"; }
Instance of Symbol 50 MovieClip [BombPickupGfx] in Frame 1963
on (press) { _root.pressedObject = "BombPickupGfx"; }
Instance of Symbol 112 MovieClip [CherryPickupGfx] in Frame 1963
on (press) { _root.pressedObject = "CherryPickupGfx"; }
Instance of Symbol 109 MovieClip [DiamondPickupGfx] in Frame 1963
on (press) { _root.pressedObject = "DiamondPickupGfx"; }
Instance of Symbol 115 MovieClip [DoubleBatPickupGfx] in Frame 1963
on (press) { _root.pressedObject = "DoubleBatPickupGfx"; }
Instance of Symbol 265 MovieClip [DrainCoverPickup] in Frame 1963
on (press) { _root.pressedObject = "DrainCoverPickupGfx"; }
Instance of Symbol 102 MovieClip [EatenMelonPickupGfx] in Frame 1963
on (press) { _root.pressedObject = "EatenMelonPickupGfx"; }
Instance of Symbol 70 MovieClip [FireballPickupGfx] in Frame 1963
on (press) { _root.pressedObject = "FireballPickupGfx"; }
Instance of Symbol 75 MovieClip [LittleBatPickupGfx] in Frame 1963
on (press) { _root.pressedObject = "LittleBatPickupGfx"; }
Instance of Symbol 105 MovieClip [MelonPickupGfx] in Frame 1963
on (press) { _root.pressedObject = "MelonPickupGfx"; }
Instance of Symbol 65 MovieClip [MultiBallPickupGfx] in Frame 1963
on (press) { _root.pressedObject = "MultiBallPickupGfx"; }
Instance of Symbol 80 MovieClip [MultiLaserPickupGfx] in Frame 1963
on (press) { _root.pressedObject = "MultiLaserPickupGfx"; }
Instance of Symbol 62 MovieClip [NextLevelPickupGfx] in Frame 1963
on (press) { _root.pressedObject = "NextLevelPickupGfx"; }
Instance of Symbol 59 MovieClip [NoGravityPickupGfx] in Frame 1963
on (press) { _root.pressedObject = "NoGravityPickupGfx"; }
Instance of Symbol 91 MovieClip [RaspberryPickupGfx] in Frame 1963
on (press) { _root.pressedObject = "RaspberryPickupGfx"; }
Instance of Symbol 125 MovieClip in Frame 1963
on (press) { _root.pressedObject = "ReverseBatPickupGfx"; }
Instance of Symbol 119 MovieClip [ReverseGravityPickupGfx] in Frame 1963
on (press) { _root.pressedObject = "ReverseGravityPickupGfx"; }
Instance of Symbol 87 MovieClip [SingleLaserPickupGfx] in Frame 1963
on (press) { _root.pressedObject = "SingleLaserPickupGfx"; }
Instance of Symbol 130 MovieClip [SpeedDownPickupGfx] in Frame 1963
on (press) { _root.pressedObject = "SpeedDownPickupGfx"; }
Instance of Symbol 133 MovieClip [SpeedPickupGfx] in Frame 1963
on (press) { _root.pressedObject = "SpeedPickupGfx"; }
Symbol 17 MovieClip [DrainCover_skin0] Frame 1
this.radius = _width / 2; this.pos = new Vector(0, 0); this.vel = new Vector(0, 0); this.m = 9999; stop();
Instance of Symbol 14 MovieClip in Symbol 17 MovieClip [DrainCover_skin0] Frame 1
onClipEvent (load) { _parent.pos.x = _parent._x; _parent.pos.y = _parent._y; }
Symbol 17 MovieClip [DrainCover_skin0] Frame 10
stop();
Instance of Symbol 14 MovieClip in Symbol 17 MovieClip [DrainCover_skin0] Frame 10
onClipEvent (load) { _parent.pos.x = _parent._x; _parent.pos.y = _parent._y; }
Instance of Symbol 16 MovieClip in Symbol 17 MovieClip [DrainCover_skin0] Frame 10
onClipEvent (enterFrame) { _parent._rotation = _parent._rotation + 2; }
Symbol 17 MovieClip [DrainCover_skin0] Frame 20
this.removeMovieClip();
Instance of Symbol 14 MovieClip in Symbol 17 MovieClip [DrainCover_skin0] Frame 20
onClipEvent (enterFrame) { _parent.removeMovieClip(); }
Symbol 22 MovieClip Frame 1
_visible = false; stop();
Symbol 22 MovieClip Frame 2
_visible = true;
Symbol 26 MovieClip Frame 1
function hitAction(aDamage, aPos) { _parent.hits = _parent.hits - aDamage; if (_parent.hits <= 0) { _parent.normalHitSound.start(); _root.addScore(_parent.score); _root.updateScore(); if (_parent.pickup > 0) { _root.spawnPickup(_parent.pickup, aPos.x, aPos.y); } else { _root.spawnRandomPickup(aPos.x, aPos.y); } _parent.gotoAndPlay("destroy"); } else { if (_parent.hits < 10) { myColor = new Color(_parent); myColorTransform = new Object(); var offset = (-((_parent.maxHits - _parent.hits) * 40)); myColorTransform.rb = offset; myColorTransform.gb = offset; myColorTransform.bb = offset; myColor.setTransform(myColorTransform); } _parent.hardHitSound.start(); _root.clankHit.start(); } }
Symbol 27 MovieClip [BR_unbreakable_0_skin0] Frame 1
walls = 6; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();
Symbol 30 MovieClip [BR_normal_0_skin0] Frame 1
walls = 3; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();
Instance of Symbol 29 MovieClip "thisBrick" in Symbol 30 MovieClip [BR_normal_0_skin0] Frame 1
/* no clip actions */
Symbol 30 MovieClip [BR_normal_0_skin0] Frame 9
_root.bricksToDestroy--; this.removeMovieClip();
Symbol 32 MovieClip [BR_unbreakable_1_skin0] Frame 1
walls = 6; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();
Symbol 35 MovieClip [BR_normal_1_skin0] Frame 1
walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 15; stop();
Symbol 35 MovieClip [BR_normal_1_skin0] Frame 9
_root.bricksToDestroy--; this.removeMovieClip();
Symbol 37 MovieClip [BR_unbreakable_3_skin0] Frame 1
walls = 6; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();
Symbol 40 MovieClip [BR_normal_3_skin0] Frame 1
walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 5; stop();
Instance of Symbol 39 MovieClip "thisBrick" in Symbol 40 MovieClip [BR_normal_3_skin0] Frame 1
/* no clip actions */
Symbol 40 MovieClip [BR_normal_3_skin0] Frame 9
_root.bricksToDestroy--; this.removeMovieClip();
Symbol 42 MovieClip [BR_unbreakable_2_skin0] Frame 1
walls = 6; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 20; stop();
Symbol 45 MovieClip [BR_normal_2_skin0] Frame 1
walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 10; stop();
Instance of Symbol 44 MovieClip "thisBrick" in Symbol 45 MovieClip [BR_normal_2_skin0] Frame 1
/* no clip actions */
Instance of Symbol 44 MovieClip "thisBrick" in Symbol 45 MovieClip [BR_normal_2_skin0] Frame 2
onClipEvent (load) { initPosition = _y; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }
Symbol 45 MovieClip [BR_normal_2_skin0] Frame 9
_root.bricksToDestroy--; this.removeMovieClip();
Symbol 55 MovieClip [Ball] Frame 1
this.thisShadow = "ballShadow"; this.pos = new Vector(-50, -50); this.vel = new Vector(5, 0); this.friction = 0.01; this.anchor = new Vector(_root.halfWidth, _root.halfHeight); this.strength = 10000; this.applyGravity = true; this.doForce = function () { if (!this._visible) { return(undefined); } this.netForce = this.pos.minusNew(this.anchor); var r = this.netForce.getLength(); if (r < 50) { r = 50; } if (_root.bat.hasPickup(_root.PU_REVERSE_GRAVITY) != -1) { this.netForce.setLength((strength * 2) / (r * (r * 2))); } else { this.netForce.setLength((-(this.strength * 2)) / (r * (r * 4))); } }; this.move = function () { if (!this._visible) { return(undefined); } if (this.applyGravity) { this.vel.plus(this.netForce); this.vel.scale(1 - this.friction); } var len = this.vel.getLength(); if (len > 13.7) { this.vel.scale(13.7 / len); } this.pos.plus(this.vel); this._x = this.pos.x; this._y = this.pos.y; }; this.createParticle = function () { var i = _root.depth[_root.STAR_OBJ][_root.CURRENT_DEPTH]; _root.updateDepth(_root.depth[_root.STAR_OBJ]); _root.attachMovie(thisShadow, "Star" + i, i); var thisStar = _root["Star" + i]; thisStar._x = _x; thisStar._y = _y; };
Instance of Symbol 47 MovieClip [ballGfx] "ballGfx" in Symbol 55 MovieClip [Ball] Frame 1
onClipEvent (enterFrame) { _parent.createParticle(); }
Symbol 55 MovieClip [Ball] Frame 2
this.thisShadow = "ballShadow"; stop();
Symbol 55 MovieClip [Ball] Frame 3
thisShadow = "fireShadow"; stop();
Instance of Symbol 47 MovieClip [ballGfx] "ballGfx" in Symbol 55 MovieClip [Ball] Frame 3
onClipEvent (enterFrame) { _parent.createParticle(); }
Symbol 55 MovieClip [Ball] Frame 4
thisShadow = "fireShadow"; stop();
Instance of Symbol 54 MovieClip [BombPickup] "ballGfx" in Symbol 55 MovieClip [Ball] Frame 4
onClipEvent (enterFrame) { _parent.createParticle(); }
Symbol 55 MovieClip [Ball] Frame 5
this._x = _root.halfWidth; this._y = _root.halfHeight; this.applyGravity = false; this.vel = new Vector(0, 0); this.pos = new Vector(_root.halfWidth, _root.halfHeight);
Symbol 55 MovieClip [Ball] Frame 20
_root.removeBall(this); stop();
Instance of Symbol 47 MovieClip [ballGfx] "ballGfx" in Symbol 55 MovieClip [Ball] Frame 20
onClipEvent (enterFrame) { _root.removeBall(_parent); stop(); }
Symbol 57 MovieClip [dot] Frame 1
_visible = false;
Instance of Symbol 136 MovieClip in Symbol 137 MovieClip [QuickStar2] Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 30; this._xscale = this._xscale - 2; this._yscale = this._yscale - 2; _parent._x = _parent._x + _parent.vx; _parent._y = _parent._y + _parent.vy; }
Symbol 137 MovieClip [QuickStar2] Frame 17
this.removeMovieClip();
Symbol 140 MovieClip [QuickStar1] Frame 1
Instance of Symbol 139 MovieClip in Symbol 140 MovieClip [QuickStar1] Frame 1
onClipEvent (enterFrame) { this._rotation = this._rotation + 30; this._xscale = this._xscale - 2; this._yscale = this._yscale - 2; _parent._x = _parent._x + _parent.vx; _parent._y = _parent._y + _parent.vy; }
Symbol 140 MovieClip [QuickStar1] Frame 17
this.removeMovieClip();
Instance of Symbol 142 MovieClip in Symbol 143 MovieClip [Star] Frame 1
onClipEvent (enterFrame) { _parent._rotation = _parent._rotation + 8; _parent._xscale = _parent._xscale - 3; _parent._yscale = _parent._yscale - 3; if (_parent._xscale < 30) { _parent.removeMovieClip(); } }
Symbol 148 MovieClip [BR_d_barrier_skin0] Frame 1
walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 0; stop();
Instance of Symbol 147 MovieClip "thisBrick" in Symbol 148 MovieClip [BR_d_barrier_skin0] Frame 1
onClipEvent (load) { initPosition = _y; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }
Symbol 153 MovieClip [BR_s_barrier_skin0] Frame 1
walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 0; stop();
Instance of Symbol 152 MovieClip "thisBrick" in Symbol 153 MovieClip [BR_s_barrier_skin0] Frame 1
onClipEvent (load) { initPosition = _y; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }
Symbol 156 MovieClip [BR_i_barrier_skin0] Frame 1
walls = 4; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 0; stop();
Instance of Symbol 155 MovieClip "thisBrick" in Symbol 156 MovieClip [BR_i_barrier_skin0] Frame 1
onClipEvent (load) { initPosition = _y; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }
Instance of Symbol 158 MovieClip in Symbol 159 MovieClip [fireShadow] Frame 1
onClipEvent (enterFrame) { this._alpha = this._alpha - 5; }
Symbol 159 MovieClip [fireShadow] Frame 6
this.removeMovieClip();
Instance of Symbol 161 MovieClip in Symbol 162 MovieClip [ballShadow] Frame 1
onClipEvent (enterFrame) { this._alpha = this._alpha - 5; }
Symbol 162 MovieClip [ballShadow] Frame 10
this.removeMovieClip();
Symbol 164 MovieClip [StarFire] Frame 1
this.onEnterFrame = function () { this._y++; this._alpha = this._alpha - 5; if (this._alpha <= 0) { this.removeMovieClip(); } };
Symbol 166 MovieClip [StarfieldStar] Frame 1
this.pos = new Vector(0, 0); this.vel = new Vector(5, 0);
Symbol 171 MovieClip [ballLauncher] Frame 36
_root.newBall.start();
Symbol 171 MovieClip [ballLauncher] Frame 84
_root.resetBall(this.thisBall, this._x, this._y);
Symbol 171 MovieClip [ballLauncher] Frame 135
this.removeMovieClip();
Symbol 172 MovieClip [block] Frame 1
stop();
Instance of Symbol 68 MovieClip in Symbol 172 MovieClip [block] Frame 2
onClipEvent (load) { vx = ((random(50) > 25) ? ((-random(8)) - 1) : (random(8) + 1)); vy = ((random(50) > 25) ? ((-random(8)) - 1) : (random(8) + 1)); } onClipEvent (enterFrame) { _x = (_x + vx); vx = vx * 1.1; _y = (_y + vy); vy = vy * 1.1; }
Symbol 172 MovieClip [block] Frame 19
_parent.removeMovieClip();
Symbol 206 MovieClip [LevelPanel] Frame 19
gotoAndPlay (1);
Symbol 206 MovieClip [LevelPanel] Frame 20
_parent.removeMovieClip();
Symbol 209 MovieClip [ExplodeParticle] Frame 1
this.onEnterFrame = function () { this._x = this._x + this.vx; this._y = this._y + this.vy; this.vx = this.vx * 0.99; this.vy = this.vy * 0.99; this._alpha = this._alpha - 7; this._rotation = this._rotation + (this.vx * 10); if (this._alpha <= 0) { this.removeMovieClip(); } }; stop();
Symbol 212 MovieClip [ExplodeAnim] Frame 11
this.removeMovieClip();
Symbol 213 MovieClip [ExplodeAnimSmall] Frame 1
function newExploder() { this.attachMovie("ExplodeAnim", "ExplodeAnim" + explodeDepth, explodeDepth); this["ExplodeAnim" + explodeDepth]._x = ((random(10) > 5) ? (random(40)) : (-random(40))); this["ExplodeAnim" + explodeDepth]._y = ((random(10) > 5) ? (random(40)) : (-random(40))); this["ExplodeAnim" + explodeDepth]._xscale = (this["ExplodeAnim" + explodeDepth]._yscale = random(60) + 60); explodeDepth++; } explodeDepth = 7000; newExploder(); newExploder();
Symbol 213 MovieClip [ExplodeAnimSmall] Frame 3
newExploder(); newExploder();
Symbol 213 MovieClip [ExplodeAnimSmall] Frame 5
newExploder(); newExploder();
Symbol 213 MovieClip [ExplodeAnimSmall] Frame 7
newExploder();
Symbol 213 MovieClip [ExplodeAnimSmall] Frame 8
newExploder(); newExploder();
Symbol 213 MovieClip [ExplodeAnimSmall] Frame 177
this.removeMovieClip();
Symbol 214 MovieClip [ExplodeAnimMulti] Frame 1
function newExploder() { this.attachMovie("ExplodeAnim", "ExplodeAnim" + explodeDepth, explodeDepth); this["ExplodeAnim" + explodeDepth]._x = ((random(10) > 5) ? (random(40)) : (-random(40))); this["ExplodeAnim" + explodeDepth]._y = ((random(10) > 5) ? (random(40)) : (-random(40))); this["ExplodeAnim" + explodeDepth]._xscale = (this["ExplodeAnim" + explodeDepth]._yscale = random(60) + 60); explodeDepth++; } explodeDepth = 7000; newExploder(); newExploder(); newExploder();
Symbol 214 MovieClip [ExplodeAnimMulti] Frame 3
newExploder(); newExploder(); newExploder();
Symbol 214 MovieClip [ExplodeAnimMulti] Frame 5
newExploder(); newExploder(); newExploder();
Symbol 214 MovieClip [ExplodeAnimMulti] Frame 7
newExploder(); newExploder(); newExploder();
Symbol 214 MovieClip [ExplodeAnimMulti] Frame 8
newExploder(); newExploder(); newExploder(); newExploder(); newExploder();
Symbol 214 MovieClip [ExplodeAnimMulti] Frame 11
newExploder(); newExploder(); newExploder(); newExploder(); newExploder();
Symbol 214 MovieClip [ExplodeAnimMulti] Frame 15
newExploder(); newExploder(); newExploder(); newExploder(); newExploder();
Symbol 214 MovieClip [ExplodeAnimMulti] Frame 18
newExploder(); newExploder(); newExploder(); newExploder(); newExploder();
Symbol 214 MovieClip [ExplodeAnimMulti] Frame 177
this.removeMovieClip();
Symbol 225 MovieClip [scoreInput] Frame 1
_root.drawSingleNum(_root.hiScorePosition + 1, this.num._x, this.num._y, this.num, false, false, 70); playerNameTxt = "";
Instance of Symbol 222 MovieClip in Symbol 225 MovieClip [scoreInput] Frame 1
onClipEvent (load) { this.ticks = 0; this.pressedButton = false; _root.histatus = ""; _root.himessage = ""; } on (press) { if (!this.pressedButton) { _parent.attachMovie("submit", "submit", 10102); _parent.submit._x = 0; _parent.submit._y = 0; _parent.submit._alpha = 80; _root.localHiScores.splice(_root.hiScorePosition, 0, _root.totalScore); _root.localHiNames.splice(_root.hiScorePosition, 0, _parent.playerNameTxt); loadVariables ((((((_root.HI_SCORE_SCRIPT + "?view=add&gameID=5&playerName=") + _parent.playerNameTxt) + "&playerScore=") + _root.totalScore) + "&view_type=FLASH&dummy=") + getTimer(), this); this.pressedButton = true; } } onClipEvent (enterFrame) { if (Key.isDown(13) && (!this.pressedButton)) { _parent.attachMovie("submit", "submit", 10102); _parent.submit._x = 0; _parent.submit._y = 0; _parent.submit._alpha = 80; _root.localHiScores.splice(_root.hiScorePosition, 0, _root.totalScore); _root.localHiNames.splice(_root.hiScorePosition, 0, _parent.playerNameTxt); loadVariables ((((((_root.HI_SCORE_SCRIPT + "?view=add&gameID=5&playerName=") + _parent.playerNameTxt) + "&playerScore=") + _root.totalScore) + "&view_type=FLASH&dummy=") + getTimer(), this); this.pressedButton = true; } if (((_root.histatus = this.ticks > 50)) && (this.pressedButton)) { _root.gotoAndPlay("Finish"); _parent.removeMovieClip(); } if (this.pressedButton) { this.ticks++; } }
Symbol 228 MovieClip [ballGfxBounce] Frame 10
stop();
Symbol 233 MovieClip [ExtraLife] Frame 33
this.removeMovieClip();
Instance of Symbol 234 MovieClip "numObj" in Symbol 235 MovieClip [PointsScoreNotify] Frame 2
onClipEvent (load) { _root.drawSingleNum(_parent.num, 0, 0, this, false, true); }
Symbol 235 MovieClip [PointsScoreNotify] Frame 22
this.removeMovieClip();
Symbol 238 MovieClip [SmallBulletLaunch] Frame 15
stop();
Symbol 241 MovieClip Frame 1
this.onEnterFrame = function () { };
Instance of Symbol 240 MovieClip in Symbol 241 MovieClip Frame 1
onClipEvent (enterFrame) { this._alpha = random(60) + 20; }
Instance of Symbol 241 MovieClip "bulletGfx" in Symbol 242 MovieClip [SmallBullet] Frame 1
onClipEvent (enterFrame) { _parent._x = _parent._x + _parent.vx; _parent._y = _parent._y + _parent.vy; _parent.vx = _parent.vx * 1.05; _parent.vy = _parent.vy * 1.05; var x = (_parent._x - _root.halfWidth); var y = (_parent._y - _root.halfHeight); var len = Math.sqrt((x * x) + (y * y)); if (len > ((_root.Ring._width / 2) - Math.abs(_parent.bulletGfx._y))) { bv = new object(); bv.x = _parent.bulletGfx._x; bv.y = _parent.bulletGfx._y; _parent.localToGlobal(bv); _root.startParticleExplosion(bv.x, bv.y); _root.explode.start(); _root.bat.activeBullets--; _parent.removeMovieClip(); } }
Symbol 250 Button
on (press) { _root.gotoAndPlay("GameOver"); gotoAndPlay (2); }
Symbol 254 Button
on (press) { _root.paused = false; gotoAndPlay (2); }
Symbol 255 MovieClip [quit] Frame 1
stop();
Symbol 255 MovieClip [quit] Frame 2
this.removeMovieClip();
Symbol 260 MovieClip [BR_c_barrier_skin0] Frame 1
this.radius = _width / 2; this.pos = new Vector(0, 0); this.vel = new Vector(0, 0); this.m = 99; normalHitSound = _root.brickHit; clankHitSound = _root.clankHit; score = 0; stop();
Instance of Symbol 259 MovieClip "thisBrick" in Symbol 260 MovieClip [BR_c_barrier_skin0] Frame 1
onClipEvent (load) { _parent.pos.x = _parent._x; _parent.pos.y = _parent._y; initPosition = _y; radius = _width / 2; } onClipEvent (enterFrame) { if (_y != initPosition) { var ydiff = (initPosition - _y); _y = (_y + (ydiff / 2)); } }
Symbol 262 MovieClip [AreaOfInfluence] Frame 1
Symbol 264 MovieClip [DrainCoverPickupGfx] Frame 1
stop();
Symbol 265 MovieClip [DrainCoverPickup] Frame 1
stop();
Instance of Symbol 272 MovieClip in Symbol 273 MovieClip Frame 1
onClipEvent (enterFrame) { this._alpha = random(20) + 80; }
Symbol 274 MovieClip [BeamLaser] Frame 12
function lightningStrike(fromx, fromy, col, depth, xbias) { var origX = fromx; var origY = fromy; var tox; var toy; this.lineStyle(1, col, 100); var bolt = 0; while (bolt < depth) { tox = (origX + (random(20) - 10)) + xbias; toy = fromy + 10; this.moveTo(fromx, fromy); this.lineTo(tox, toy); fromx = tox; fromy = toy; bolt++; } }
Instance of Symbol 270 MovieClip in Symbol 274 MovieClip [BeamLaser] Frame 12
onClipEvent (enterFrame) { this._alpha = random(30) + 50; }
Symbol 274 MovieClip [BeamLaser] Frame 13
this.clear(); lightningStrike(0, 45, 16777215, 15, 0); lightningStrike(0, 45, 14540270, 10, 0); lightningStrike(0, 45, 15658751, 15, 0); gotoAndPlay (12);
Symbol 274 MovieClip [BeamLaser] Frame 15
this.clear();
Symbol 274 MovieClip [BeamLaser] Frame 23
this.removeMovieClip();
Symbol 282 Button
on (press) { getURL ("http://www.arcadetown.com/order/choosemethod.asp?gameid=xbound", "blank"); _root.gotoAndPlay("Intro", 1); }
Symbol 284 MovieClip Frame 1
function addPickup(aPickup, px, py) { var newPickupCount = -1; switch (aPickup) { case _root.PU_BOMB : removeCurrentPickup(); this.hasBomb = true; var g = 0; while (g < _root.ballIndex.length) { thisBall = _root["ball" + _root.ballIndex[g]]; if (thisBall._currentframe != 4) { thisBall.gotoAndStop(4); } g++; } break; case _root.PU_MULTI_LASER : removeCurrentPickup(); break; case _root.PU_SINGLE_LASER : removeCurrentPickup(); if (!_root.bm) { _root.attachMovie("BeamLaser", "bm", _root.BEAM_DEPTH); _root.bm._x = _x; _root.bm._y = _y; } _root.electric.start(0, 15); this.maxMove = 6; this.moveStep = 1; break; case _root.PU_BANANA : case _root.PU_BANANA_BUNCH : case _root.PU_MELON : case _root.PU_EATEN_MELON : case _root.PU_RASPBERRY : case _root.PU_DIAMOND : case _root.PU_CHERRY : var sc = _root.pickupObject[aPickup][_root.PUVAR_SCORE]; _root.addScore(sc); _root.popupScore(sc, px, py); break; case _root.PU_REVERSE_BAT : removeCurrentPickup(); break; case _root.PU_NEXT_LEVEL : removeCurrentPickup(); cpc = 0; update(); _root.gotoAndPlay("NextLevel"); break; case _root.PU_LARGE_BAT : removeCurrentPickup(); var oldRot = _rotation; _rotation = 0; _width = (initWidth + 20); _rotation = oldRot; break; case _root.PU_SMALL_BAT : removeCurrentPickup(); var oldRot = _rotation; _rotation = 0; _width = (initWidth - 15); _rotation = oldRot; break; case _root.PU_SPEED_UP : this.maxMove = 24; this.moveStep = 8; break; case _root.PU_SPEED_DOWN : this.maxMove = 10; this.moveStep = 2; break; case _root.PU_NO_GRAVITY : removeCurrentPickup(); var g = 0; while (g < _root.ballIndex.length) { thisBall = _root["ball" + _root.ballIndex[g]]; thisBall.applyGravity = false; g++; } break; case _root.PU_REVERSE_GRAVITY : removeCurrentPickup(); break; case _root.PU_FIREBALL : removeCurrentPickup(); if (!hasBomb) { var g = 0; while (g < _root.ballIndex.length) { thisBall = _root["ball" + _root.ballIndex[g]]; if (thisBall._currentframe != 3) { thisBall.gotoAndStop(3); } g++; } } break; case _root.PU_MULTI_BALL : _root.LaunchBall(); break; case _root.PU_DOUBLE_BAT : removeCurrentPickup(); if (!_root.bat1) { _root.bat.duplicateMovieClip("bat1", 30); _root.bat1.gotoAndStop(1); _root.bat1._rotation = _root.bat1._rotation + 180; } break; case _root.PU_DRAIN_COVER : removeCurrentPickup(); if (_root.DrainCover) { break; } _root.attachMovie("DrainCover_skin" + _root.skin, "DrainCover", 10); dc = _root.DrainCover; dc.radius = dc._width / 2; dc.m = 1; dc.vx = 0; dc.vy = 0; dc._x = _root.halfWidth; dc._y = _root.halfHeight; } newPickupCount = _root.pickupObject[aPickup][_root.PUVAR_DURATION]; if (newPickupCount != -1) { var pickupNum = hasPickup(aPickup); cpc = 0; pickupCount = newPickupCount; cp = aPickup; cpc = pickupCount; } gotoAndPlay (2); } function resetBat() { this.maxMove = _root.DEFAULT_BALL_MAX_MOVE; this.moveStep = _root.DEFAULT_BALL_MOVE_STEP; this.hasBomb = false; this.removeCurrentPickup(); } function removeCurrentPickup() { switch (cp) { case _root.PU_LARGE_BAT : case _root.PU_SMALL_BAT : var oldRot = _rotation; _rotation = 0; _width = initWidth; _height = initHeight; _rotation = oldRot; gotoAndPlay (2); break; case _root.PU_SPEED_UP : case _root.PU_SPEED_DOWN : this.maxMove = _root.DEFAULT_BALL_MAX_MOVE; this.moveStep = _root.DEFAULT_BALL_MOVE_STEP; break; case _root.PU_DRAIN_COVER : _root.DrainCover.gotoAndPlay(11); break; case _root.PU_FIREBALL : if (!hasBomb) { var g = 0; while (g < _root.ballIndex.length) { thisBall = _root["ball" + _root.ballIndex[g]]; thisBall.gotoAndStop(2); g++; } } break; case _root.PU_DOUBLE_BAT : _root.bat1.removeMovieClip(); break; case _root.PU_NO_GRAVITY : var g = 0; while (g < _root.ballIndex.length) { thisBall = _root["ball" + _root.ballIndex[g]]; thisBall.applyGravity = true; g++; } break; case _root.PU_MULTI_LASER : _root.sbl.removeMovieClip(); break; case _root.PU_SINGLE_LASER : _root.bm.gotoAndPlay(15); this.maxMove = _root.DEFAULT_BALL_MAX_MOVE; this.moveStep = _root.DEFAULT_BALL_MOVE_STEP; _root.electric.stop("electric"); case _root.PU_REVERSE_GRAVITY : case _root.PU_MULTI_BALL : } pickupCount = -1; cpc = -1; cp = -1; } function moveBat() { this._rotation = this._rotation + this.move; if (_root.bat1) { _root.bat1._rotation = _root.bat1._rotation + this.move; } } function update() { moveBat(); if (cpc > 0) { cpc--; } if (cpc == 0) { removeCurrentPickup(); } } function hasPickup(aPickup) { if (cp == aPickup) { return(cp); } return(-1); } walls = 4; numDots = 10; stop();
Symbol 284 MovieClip Frame 10
if (this.hasPickup(PU_SINGLE_LASER)) { gotoAndPlay (11); } else { gotoAndPlay (1); }
Instance of Symbol 47 MovieClip [ballGfx] in Symbol 286 MovieClip [frontEndBall] Frame 1
onClipEvent (load) { this.vx = ((random(100) > 50) ? (-(random(4) + 2)) : (random(4) + 2)); vy = -random(10); bounce = 1; gravity = 0.4; } onClipEvent (enterFrame) { if (!dragging) { this.vy = this.vy + this.gravity; if (_parent._y > 460) { this.bounce = this.bounce - 0.1; this.vy = this.vy * (-bounce); this.vx = ((random(100) > 50) ? (-(random(4) + 2)) : (random(4) + 2)); if (this.bounce < 0.8) { this.bounce = 1; this.vy = -(random(10) + 10); } _parent._y = 460; } if (_parent._x > 640) { this.vx = -this.vx; _parent._x = 640; } else if (_parent._x < 0) { this.vx = -this.vx; _parent._x = 0; } _parent._x = _parent._x + this.vx; _parent._y = _parent._y + this.vy; } }
Symbol 288 MovieClip [ScoresNotAvailable] Frame 1
stop();
Symbol 288 MovieClip [ScoresNotAvailable] Frame 81
this.removeMovieClip();
Symbol 292 MovieClip [OuterRing_skin0] Frame 1
stop();
Symbol 299 MovieClip [Saucer] Frame 1
function createParticle() { i = _root.SAUCER_DEPTH++; if (_root.SAUCER_DEPTH > _root.SAUCER_DEPTH_MAX) { _root.SAUCER_DEPTH = _root.SAUCER_DEPTH_MIN; } _root.attachMovie(thisShadow, "Star" + i, i); var thisStar = _root["Star" + i]; thisStar._alpha = 70; thisStar._rotation = sauce._rotation; thisStar._xscale = this._xscale * 3; thisStar._yscale = this._yscale * 3; thisStar._x = _x; thisStar._y = _y; } thisShadow = "saucerShadow";
Instance of Symbol 298 MovieClip "blob" in Symbol 299 MovieClip [Saucer] Frame 1
onClipEvent (enterFrame) { _parent.createParticle(); if (Math.random() > 0.05) { if (Math.random() > 0.5) { vx = vx + (Math.random() / 2); } else { vx = vx - (Math.random() / 2); } if (Math.random() > 0.5) { vy = vy + (Math.random() / 2); } else { vy = vy - (Math.random() / 2); } } else { if (vx > 0) { vx = vx - 1.6; } if (vx < 0) { vx = vx + 1.6; } if (vy > 0) { vy = vy - 1.6; } if (vy < 0) { vy = vy + 1.6; } } if (vx > 10) { vx = 10; } if (vx < -10) { vx = -10; } if (vy > 10) { vy = 10; } if (vy < -10) { vy = -10; } _parent._x = _parent._x + vx; _parent._y = _parent._y + vy; x = _parent._x; y = _parent._y; h = _parent._height; w = _parent._width; if (x < 0) { if (vx < 0) { vx = -vx; } _parent._x = 1; } else if ((x + w) > 640) { if (vx > 0) { vx = -vx; } _parent._x = (640 - w) - 1; } if (y < 0) { if (vy < 0) { vy = -vy; } _parent._y = 1; } else if ((y + h) > 480) { if (vy > 0) { vy = -vy; } _parent._y = (480 - h) - 1; } } onClipEvent (load) { landingSaucer = false; this.d = 15; this.vy = -(random(5) + 3); this.vx = 0; if (random(10) > 5) { this.vx = random(5); } else { this.vx = -random(5); } this.oldX = this._x; this.oldY = this._y; }
Symbol 299 MovieClip [Saucer] Frame 17
gotoAndPlay (1);
Symbol 302 MovieClip Frame 1
stop();
Symbol 307 MovieClip Frame 20
this.gotoAndPlay(2);
Symbol 310 MovieClip Frame 1
_root.localHiScores = new Array("", "", "", "", "", "", "", "", "", ""); _root.localHiNames = new Array("", "", "", "", "", "", "", "", "", ""); _root.hiScoresChanged = false; this.scores = new Array("9000", "6500", "6498", "2400", "1000", "480", "305", "150", "80", "40"); this.names = new Array("wideeye", "Mr Biggins", "caul-ee-flower", "Jesus", "Winker", "Ginger", "Ale", "Piddle", "Lardy", "Parp"); this.firstRun = true; this.refreshOK = false; this.ticks = 0; if (this.showPanels) { this.hiScorePanel._visible = true; this.hiScoreErrorPanel._visible = false; } else { this.hiScorePanel._visible = false; this.hiScoreErrorPanel._visible = false; }
Instance of Symbol 309 MovieClip in Symbol 310 MovieClip Frame 1
onClipEvent (enterFrame) { this._visible = false; }
Symbol 310 MovieClip Frame 2
function copyHiScores() { var i = 0; while (this["hiname" + i] != undefined) { if ((this["hiname" + i] != _root.localHiNames[i]) || (this["hiscores" + i] != _root.localHiScores[i])) { _root.hiScoresChanged = true; } i++; } if (_root.hiScoresChanged) { i = 0; while (this["hiname" + i] != undefined) { _root.localHiNames[i] = this["hiname" + i]; _root.localHiScores[i] = this["hiscore" + i]; i++; } j = i; while (j < 10) { _root.localHiNames[j] = ""; _root.localHiScores[j] = "0"; j++; } } } loadVariables ((_root.HI_SCORE_SCRIPT + "?view=view&gameID=5&lowOrHigh=h&view_type=FLASH&dummy=") + getTimer(), this);
Symbol 310 MovieClip Frame 4
if (this.himessage != undefined) { this.hiScorePanel._visible = false; this.firstRun = false; this.copyHiScores(); this.himessage = undefined; this.refreshOK = true; } if ((this.ticks > 50) && (this.firstRun)) { _root.hiScoreError = true; _root.hiScoresChanged = true; i = 0; while (i < scores.length) { _root.localHiScores[i] = scores[i]; _root.localHiNames[i] = names[i]; i++; } var i; if (this.showPanels) { this.hiScorePanel._visible = false; this.hiScoreErrorPanel._visible = true; this.hiScoreErrorPanel.gotoAndPlay(2); this.sna._x = hiScorePanel._x; this.sna._y = hiScorePanel._y; } this.firstRun = false; this.ticks = 0; if (!this.refreshEnabled) { this.gotoAndStop(5); } else { this.gotoAndPlay(2); } } else if (this.refreshOK) { this.refreshOK = false; this.ticks = 0; this.hiScorePanel._visible = false; if (!this.refreshEnabled) { this.gotoAndStop(5); } else { this.gotoAndPlay(2); } } else if (!this.refreshOK) { this.ticks++; this.gotoAndPlay(3); }
Symbol 310 MovieClip Frame 5
stop();
Symbol 318 MovieClip Frame 1
stop();
Symbol 321 MovieClip Frame 1
if (_root.VERSION == _root.VERSION_FULL) { this._alpha = 20; } stop();
Symbol 324 MovieClip Frame 1
stop();
Symbol 327 MovieClip Frame 1
stop();
Symbol 331 MovieClip Frame 1
stop();
Symbol 334 MovieClip Frame 1
stop();
Symbol 337 MovieClip Frame 1
stop();
Symbol 340 Button
on (press) { gotoAndPlay (4); }
Symbol 356 Button
on (press) { getURL ("http://www.arcadetown.com?gameid=xbound", "blank"); }
Symbol 365 Button
on (press) { getURL ("http://www.plasticmartians.com", "blank"); }
Symbol 392 MovieClip Frame 1
stop();
Symbol 407 Button
on (press) { _root.gotoAndPlay("pickups"); }
Symbol 409 MovieClip Frame 1
stop(); drainSize = 40; drainRadius = drainSize / 2;
Symbol 409 MovieClip Frame 2
stop();
Symbol 409 MovieClip Frame 3
stop();
Symbol 426 Button
on (press) { _root.gotoAndPlay("startInstruct"); }
Symbol 462 MovieClip Frame 1
stop();
Symbol 466 Button
on (press) { if (this._visible) { ldata = levelData[level]; oScore.removeMovieClip(); oLife.removeMovieClip(); Key.removeListener(_root.someListener); colList.destroyAllObjects(); removeAllBalls(); var i = depth[LAUNCHER_OBJ][MIN_DEPTH]; while (i < (depth[LAUNCHER_OBJ][MIN_DEPTH] + depth[LAUNCHER_OBJ][NUM_OBJECTS])) { _root["bl" + i].removeMovieClip(); i++; } gotoAndPlay (1963); } }
Symbol 468 Button
on (press) { if (this._visible) { var i = 0; while (i < levelData.length) { txt = ("// level " + (i + 1)) + "\nnew Array("; var j = 0; while (j < levelData[i].length) { if ((levelData[i][j] == "@") || (levelData[i][j] == "#")) { txt = txt + (("\"" + levelData[i][j]) + "\""); } else { txt = txt + levelData[i][j]; } if (j != (levelData[i].length - 1)) { txt = txt + ","; } j++; } txt = txt + "),"; i++; } } }
Symbol 474 MovieClip Frame 20
stop();
Symbol 479 MovieClip Frame 1
function addBall() { this.currentX = (this.ballsHolder._x + 2) + ((this.currentBall % 4) * 18); if ((this.currentBall % 4) == 0) { this.currentY = this.currentY + 18; } this.attachMovie("ballGfxBounce", ball + this.currentBall, 92929 + this.currentBall); this[ball + this.currentBall]._xscale = (this[ball + this.currentBall]._yscale = 50); this[ball + this.currentBall]._x = currentX; this[ball + this.currentBall]._y = currentY; } this.currentY = this.ballsHolder._y; this.currentBall = 0;
Symbol 479 MovieClip Frame 28
_root.drawSingleNum(_root.LEVELS_SCORE_MULTIPLIER * (_root.level + 1), this.levelNum._x, this.levelNum._y, this.levelNum, true, false, 70);
Symbol 479 MovieClip Frame 36
if (this.currentBall < _root.lives) { this.addBall(); this.currentBall++; _root.drawSingleNum(this.currentBall * _root.BALLS_SCORE_MULTIPLIER, this.ballsNum._x, this.levelNum._y, this.ballsNum, true, false, 70); } else { gotoAndPlay (45); }
Symbol 479 MovieClip Frame 44
gotoAndPlay (36);
Symbol 479 MovieClip Frame 55
stop();
Symbol 482 Button
on (press) { _root.buildLevel(); }
Symbol 484 Button
on (press) { _root.testLevel(); }
Symbol 486 Button
on (press) { _root.clearLevel(); }

Library Items

Symbol 1 Sound [strikeDull]
Symbol 2 Sound [electric]
Symbol 3 Sound [powerUpHitBat]
Symbol 4 Sound [powerUp]
Symbol 5 Sound [nextLevel]
Symbol 6 Sound [newBall]
Symbol 7 Sound [LaserShoot]
Symbol 8 Sound [explode]
Symbol 9 Sound [clankHit]
Symbol 10 Sound [brickHit2]
Symbol 11 Sound [brickHit1]
Symbol 12 Sound [ballDrop]
Symbol 13 GraphicUsed by:14
Symbol 14 MovieClipUses:13Used by:17
Symbol 15 GraphicUsed by:16
Symbol 16 MovieClipUses:15Used by:17
Symbol 17 MovieClip [DrainCover_skin0]Uses:14 16
Symbol 18 GraphicUsed by:19
Symbol 19 MovieClip [baseLine]Uses:18
Symbol 20 GraphicUsed by:22
Symbol 21 GraphicUsed by:22
Symbol 22 MovieClipUses:20 21Used by:27 30 32 35 37 40 42 45 148 153 156 284
Symbol 23 BitmapUsed by:24 31 36 41 145 150 170 203 244 257 267 290 291
Symbol 24 GraphicUses:23Used by:25
Symbol 25 MovieClipUses:24Used by:27 29
Symbol 26 MovieClipUsed by:27 30 32 35 37 40 42 45 148 153 156 260
Symbol 27 MovieClip [BR_unbreakable_0_skin0]Uses:22 25 26
Symbol 28 GraphicUsed by:29
Symbol 29 MovieClipUses:25 28Used by:30
Symbol 30 MovieClip [BR_normal_0_skin0]Uses:29 22 26
Symbol 31 GraphicUses:23Used by:32 34
Symbol 32 MovieClip [BR_unbreakable_1_skin0]Uses:22 31 26
Symbol 33 GraphicUsed by:34
Symbol 34 MovieClipUses:31 33Used by:35
Symbol 35 MovieClip [BR_normal_1_skin0]Uses:34 26 22
Symbol 36 GraphicUses:23Used by:37 39
Symbol 37 MovieClip [BR_unbreakable_3_skin0]Uses:22 36 26
Symbol 38 GraphicUsed by:39
Symbol 39 MovieClipUses:36 38Used by:40
Symbol 40 MovieClip [BR_normal_3_skin0]Uses:39 26 22
Symbol 41 GraphicUses:23Used by:42 44
Symbol 42 MovieClip [BR_unbreakable_2_skin0]Uses:22 41 26
Symbol 43 GraphicUsed by:44
Symbol 44 MovieClipUses:41 43Used by:45
Symbol 45 MovieClip [BR_normal_2_skin0]Uses:44 26 22
Symbol 46 Graphic [ballGfx]Used by:47 228
Symbol 47 MovieClip [ballGfx]Uses:46Used by:55 171 286
Symbol 48 GraphicUsed by:55
Symbol 49 GraphicUsed by:50
Symbol 50 MovieClip [BombPickupGfx]Uses:49Used by:53  Timeline
Symbol 51 GraphicUsed by:52
Symbol 52 MovieClipUses:51Used by:53
Symbol 53 MovieClipUses:50 52Used by:54 285
Symbol 54 MovieClip [BombPickup]Uses:53Used by:55
Symbol 55 MovieClip [Ball]Uses:47 48 54
Symbol 56 GraphicUsed by:57
Symbol 57 MovieClip [dot]Uses:56
Symbol 58 GraphicUsed by:59
Symbol 59 MovieClip [NoGravityPickupGfx]Uses:58Used by:60  Timeline
Symbol 60 MovieClip [NoGravityPickup]Uses:59
Symbol 61 GraphicUsed by:62
Symbol 62 MovieClip [NextLevelPickupGfx]Uses:61Used by:63  Timeline
Symbol 63 MovieClip [NextLevelPickup]Uses:62
Symbol 64 GraphicUsed by:65
Symbol 65 MovieClip [MultiBallPickupGfx]Uses:64Used by:66  Timeline
Symbol 66 MovieClip [MultiBallPickup]Uses:65
Symbol 67 GraphicUsed by:68
Symbol 68 MovieClipUses:67Used by:70 172
Symbol 69 GraphicUsed by:70
Symbol 70 MovieClip [FireballPickupGfx]Uses:68 69Used by:71 285  Timeline
Symbol 71 MovieClip [FireballPickup]Uses:70
Symbol 72 GraphicUsed by:75 80 87 119 124 127
Symbol 73 GraphicUsed by:74
Symbol 74 MovieClipUses:73Used by:75 127 398 405 424
Symbol 75 MovieClip [LittleBatPickupGfx]Uses:72 74Used by:76  Timeline
Symbol 76 MovieClip [LittleBatPickup]Uses:75
Symbol 77 GraphicUsed by:78
Symbol 78 MovieClipUses:77Used by:80
Symbol 79 GraphicUsed by:80 87
Symbol 80 MovieClip [MultiLaserPickupGfx]Uses:72 78 79Used by:81  Timeline
Symbol 81 MovieClip [MultiLaserPickup]Uses:80
Symbol 82 GraphicUsed by:87
Symbol 83 GraphicUsed by:87
Symbol 84 GraphicUsed by:87
Symbol 85 GraphicUsed by:87
Symbol 86 GraphicUsed by:87
Symbol 87 MovieClip [SingleLaserPickupGfx]Uses:72 82 79 83 84 85 86Used by:88  Timeline
Symbol 88 MovieClip [SingleLaserPickup]Uses:87
Symbol 89 GraphicUsed by:91
Symbol 90 GraphicUsed by:91
Symbol 91 MovieClip [RaspberryPickupGfx]Uses:89 90Used by:92 285  Timeline
Symbol 92 MovieClip [RaspberryPickup]Uses:91
Symbol 93 GraphicUsed by:94
Symbol 94 MovieClipUses:93Used by:95 97
Symbol 95 MovieClip [BananaPickupGfx]Uses:94Used by:96  Timeline
Symbol 96 MovieClip [BananaPickup]Uses:95
Symbol 97 MovieClip [BananaBunchPickupGfx]Uses:94Used by:98  Timeline
Symbol 98 MovieClip [BananaBunchPickup]Uses:97
Symbol 99 GraphicUsed by:102
Symbol 100 GraphicUsed by:101
Symbol 101 MovieClipUses:100Used by:102 105
Symbol 102 MovieClip [EatenMelonPickupGfx]Uses:99 101Used by:103  Timeline
Symbol 103 MovieClip [EatenMelonPickup]Uses:102
Symbol 104 GraphicUsed by:105
Symbol 105 MovieClip [MelonPickupGfx]Uses:104 101Used by:106  Timeline
Symbol 106 MovieClip [MelonPickup]Uses:105
Symbol 107 GraphicUsed by:109
Symbol 108 GraphicUsed by:109 282
Symbol 109 MovieClip [DiamondPickupGfx]Uses:107 108Used by:110 285  Timeline
Symbol 110 MovieClip [DiamondPickup]Uses:109
Symbol 111 GraphicUsed by:112
Symbol 112 MovieClip [CherryPickupGfx]Uses:111Used by:113 285  Timeline
Symbol 113 MovieClip [CherryPickup]Uses:112
Symbol 114 GraphicUsed by:115
Symbol 115 MovieClip [DoubleBatPickupGfx]Uses:114Used by:116  Timeline
Symbol 116 MovieClip [DoubleBatPickup]Uses:115
Symbol 117 GraphicUsed by:118
Symbol 118 MovieClipUses:117Used by:119
Symbol 119 MovieClip [ReverseGravityPickupGfx]Uses:72 118Used by:120  Timeline
Symbol 120 MovieClip [ReverseGravityPickup]Uses:119
Symbol 121 GraphicUsed by:122
Symbol 122 MovieClipUses:121Used by:124
Symbol 123 GraphicUsed by:124
Symbol 124 MovieClip [ReverseBatPickupGfx]Uses:72 122 123Used by:125
Symbol 125 MovieClipUses:124Used by:126  Timeline
Symbol 126 MovieClip [ReverseBatPickup]Uses:125
Symbol 127 MovieClip [BigBatPickupGfx]Uses:72 74Used by:128  Timeline
Symbol 128 MovieClip [BigBatPickup]Uses:127
Symbol 129 GraphicUsed by:130
Symbol 130 MovieClip [SpeedDownPickupGfx]Uses:129Used by:131  Timeline
Symbol 131 MovieClip [SpeedDownPickup]Uses:130
Symbol 132 GraphicUsed by:133
Symbol 133 MovieClip [SpeedPickupGfx]Uses:132Used by:134  Timeline
Symbol 134 MovieClip [SpeedUpPickup]Uses:133
Symbol 135 GraphicUsed by:136
Symbol 136 MovieClipUses:135Used by:137
Symbol 137 MovieClip [QuickStar2]Uses:136
Symbol 138 GraphicUsed by:139
Symbol 139 MovieClipUses:138Used by:140
Symbol 140 MovieClip [QuickStar1]Uses:139
Symbol 141 GraphicUsed by:142
Symbol 142 MovieClipUses:141Used by:143
Symbol 143 MovieClip [Star]Uses:142
Symbol 144 GraphicUsed by:147
Symbol 145 GraphicUses:23Used by:146
Symbol 146 MovieClipUses:145Used by:147
Symbol 147 MovieClipUses:144 146Used by:148
Symbol 148 MovieClip [BR_d_barrier_skin0]Uses:147 22 26
Symbol 149 GraphicUsed by:152
Symbol 150 GraphicUses:23Used by:151
Symbol 151 MovieClipUses:150Used by:152
Symbol 152 MovieClipUses:149 151Used by:153
Symbol 153 MovieClip [BR_s_barrier_skin0]Uses:152 26 22
Symbol 154 GraphicUsed by:155
Symbol 155 MovieClipUses:154Used by:156
Symbol 156 MovieClip [BR_i_barrier_skin0]Uses:155 22 26
Symbol 157 GraphicUsed by:158
Symbol 158 MovieClipUses:157Used by:159
Symbol 159 MovieClip [fireShadow]Uses:158
Symbol 160 GraphicUsed by:161
Symbol 161 MovieClipUses:160Used by:162
Symbol 162 MovieClip [ballShadow]Uses:161
Symbol 163 GraphicUsed by:164
Symbol 164 MovieClip [StarFire]Uses:163
Symbol 165 GraphicUsed by:166
Symbol 166 MovieClip [StarfieldStar]Uses:165
Symbol 167 GraphicUsed by:171
Symbol 168 GraphicUsed by:171
Symbol 169 GraphicUsed by:171
Symbol 170 GraphicUses:23Used by:171
Symbol 171 MovieClip [ballLauncher]Uses:167 168 169 170 47
Symbol 172 MovieClip [block]Uses:68
Symbol 173 GraphicUsed by:174
Symbol 174 MovieClip [0_gfx]Uses:173Used by:175
Symbol 175 MovieClip [0]Uses:174
Symbol 176 GraphicUsed by:177
Symbol 177 MovieClip [9_gfx]Uses:176Used by:178
Symbol 178 MovieClip [9]Uses:177
Symbol 179 GraphicUsed by:180
Symbol 180 MovieClip [8_gfx]Uses:179Used by:181
Symbol 181 MovieClip [8]Uses:180
Symbol 182 GraphicUsed by:183
Symbol 183 MovieClip [7_gfx]Uses:182Used by:184
Symbol 184 MovieClip [7]Uses:183
Symbol 185 GraphicUsed by:186
Symbol 186 MovieClip [6_gfx]Uses:185Used by:187
Symbol 187 MovieClip [6]Uses:186
Symbol 188 GraphicUsed by:189
Symbol 189 MovieClip [5_gfx]Uses:188Used by:190
Symbol 190 MovieClip [5]Uses:189
Symbol 191 GraphicUsed by:192
Symbol 192 MovieClip [4_gfx]Uses:191Used by:193
Symbol 193 MovieClip [4]Uses:192
Symbol 194 GraphicUsed by:195
Symbol 195 MovieClip [3_gfx]Uses:194Used by:196
Symbol 196 MovieClip [3]Uses:195
Symbol 197 GraphicUsed by:198
Symbol 198 MovieClip [2_gfx]Uses:197Used by:199
Symbol 199 MovieClip [2]Uses:198
Symbol 200 GraphicUsed by:201
Symbol 201 MovieClip [1_gfx]Uses:200Used by:202
Symbol 202 MovieClip [1]Uses:201
Symbol 203 GraphicUses:23Used by:204
Symbol 204 MovieClipUses:203Used by:206 225 230 288 307 476
Symbol 205 GraphicUsed by:206
Symbol 206 MovieClip [LevelPanel]Uses:204 205
Symbol 207 GraphicUsed by:208
Symbol 208 MovieClipUses:207Used by:209
Symbol 209 MovieClip [ExplodeParticle]Uses:208
Symbol 210 GraphicUsed by:211
Symbol 211 MovieClipUses:210Used by:212
Symbol 212 MovieClip [ExplodeAnim]Uses:211
Symbol 213 MovieClip [ExplodeAnimSmall]
Symbol 214 MovieClip [ExplodeAnimMulti]
Symbol 215 GraphicUsed by:216
Symbol 216 MovieClipUses:215Used by:225
Symbol 217 GraphicUsed by:225
Symbol 218 FontUsed by:219 370 382 399 400 401 402 410 411 412 413 414 415 416 417 418 419 420 421 422 423
Symbol 219 EditableTextUses:218Used by:225
Symbol 220 GraphicUsed by:222
Symbol 221 GraphicUsed by:222
Symbol 222 MovieClipUses:220 221Used by:225
Symbol 223 GraphicUsed by:225
Symbol 224 MovieClipUsed by:225 479  Timeline
Symbol 225 MovieClip [scoreInput]Uses:204 216 217 219 222 223 224
Symbol 226 GraphicUsed by:227
Symbol 227 MovieClip [paused]Uses:226
Symbol 228 MovieClip [ballGfxBounce]Uses:46
Symbol 229 GraphicUsed by:230
Symbol 230 MovieClip [submit]Uses:204 229
Symbol 231 GraphicUsed by:232
Symbol 232 MovieClipUses:231Used by:233
Symbol 233 MovieClip [ExtraLife]Uses:232
Symbol 234 MovieClipUsed by:235
Symbol 235 MovieClip [PointsScoreNotify]Uses:234
Symbol 236 GraphicUsed by:237
Symbol 237 MovieClipUses:236Used by:238 241
Symbol 238 MovieClip [SmallBulletLaunch]Uses:237
Symbol 239 GraphicUsed by:240
Symbol 240 MovieClipUses:239Used by:241
Symbol 241 MovieClipUses:240 237Used by:242 285
Symbol 242 MovieClip [SmallBullet]Uses:241
Symbol 243 GraphicUsed by:255 285  Timeline
Symbol 244 GraphicUses:23Used by:245
Symbol 245 MovieClipUses:244Used by:255 285  Timeline
Symbol 246 GraphicUsed by:255
Symbol 247 GraphicUsed by:250
Symbol 248 GraphicUsed by:250
Symbol 249 GraphicUsed by:250
Symbol 250 ButtonUses:247 248 249Used by:255
Symbol 251 GraphicUsed by:254
Symbol 252 GraphicUsed by:254
Symbol 253 GraphicUsed by:254
Symbol 254 ButtonUses:251 252 253Used by:255
Symbol 255 MovieClip [quit]Uses:243 245 246 250 254
Symbol 256 GraphicUsed by:259
Symbol 257 GraphicUses:23Used by:258
Symbol 258 MovieClipUses:257Used by:259
Symbol 259 MovieClipUses:256 258Used by:260
Symbol 260 MovieClip [BR_c_barrier_skin0]Uses:259 26Used by:Timeline
Symbol 261 GraphicUsed by:262
Symbol 262 MovieClip [AreaOfInfluence]Uses:261Used by:Timeline
Symbol 263 GraphicUsed by:264
Symbol 264 MovieClip [DrainCoverPickupGfx]Uses:263Used by:265
Symbol 265 MovieClip [DrainCoverPickup]Uses:264Used by:Timeline
Symbol 266 GraphicUsed by:268
Symbol 267 GraphicUses:23Used by:268
Symbol 268 MovieClip [bat]Uses:266 267Used by:284
Symbol 269 GraphicUsed by:270
Symbol 270 MovieClipUses:269Used by:274
Symbol 271 GraphicUsed by:272
Symbol 272 MovieClipUses:271Used by:273
Symbol 273 MovieClipUses:272Used by:274
Symbol 274 MovieClip [BeamLaser]Uses:270 273Used by:285
Symbol 275 BitmapUsed by:276
Symbol 276 GraphicUses:275Used by:285
Symbol 277 BitmapUsed by:278
Symbol 278 GraphicUses:277Used by:285
Symbol 279 GraphicUsed by:282
Symbol 280 GraphicUsed by:282
Symbol 281 GraphicUsed by:282
Symbol 282 ButtonUses:279 280 108 281Used by:285
Symbol 283 GraphicUsed by:285
Symbol 284 MovieClipUses:268 22Used by:285  Timeline
Symbol 285 MovieClip [BuyMe]Uses:243 245 276 91 241 109 112 278 282 283 53 70 274 284Used by:Timeline
Symbol 286 MovieClip [frontEndBall]Uses:47Used by:Timeline
Symbol 287 GraphicUsed by:288
Symbol 288 MovieClip [ScoresNotAvailable]Uses:204 287Used by:310
Symbol 289 GraphicUsed by:292
Symbol 290 GraphicUses:23Used by:292
Symbol 291 GraphicUses:23Used by:292
Symbol 292 MovieClip [OuterRing_skin0]Uses:289 290 291Used by:Timeline
Symbol 293 GraphicUsed by:297
Symbol 294 GraphicUsed by:295
Symbol 295 MovieClipUses:294Used by:296
Symbol 296 MovieClipUses:295Used by:297
Symbol 297 MovieClipUses:293 296Used by:299
Symbol 298 MovieClipUsed by:299
Symbol 299 MovieClip [Saucer]Uses:297 298Used by:Timeline
Symbol 300 BitmapUsed by:301
Symbol 301 GraphicUses:300Used by:302
Symbol 302 MovieClipUses:301Used by:Timeline
Symbol 303 GraphicUsed by:Timeline
Symbol 304 GraphicUsed by:305
Symbol 305 MovieClipUses:304Used by:Timeline
Symbol 306 GraphicUsed by:307
Symbol 307 MovieClipUses:204 306Used by:310
Symbol 308 GraphicUsed by:309
Symbol 309 MovieClipUses:308Used by:310 393
Symbol 310 MovieClipUses:288 307 309Used by:Timeline
Symbol 311 SoundUsed by:Timeline
Symbol 312 GraphicUsed by:313
Symbol 313 MovieClipUses:312Used by:Timeline
Symbol 314 GraphicUsed by:315 340
Symbol 315 MovieClipUses:314Used by:318 321 324 327 331 334 337 340 392
Symbol 316 GraphicUsed by:318
Symbol 317 GraphicUsed by:318
Symbol 318 MovieClipUses:315 316 317Used by:Timeline
Symbol 319 GraphicUsed by:321
Symbol 320 GraphicUsed by:321
Symbol 321 MovieClipUses:315 319 320Used by:Timeline
Symbol 322 GraphicUsed by:324 424
Symbol 323 GraphicUsed by:324
Symbol 324 MovieClipUses:315 322 323Used by:Timeline
Symbol 325 GraphicUsed by:327
Symbol 326 GraphicUsed by:327
Symbol 327 MovieClipUses:315 325 326Used by:Timeline
Symbol 328 GraphicUsed by:331
Symbol 329 FontUsed by:330 469
Symbol 330 TextUses:329Used by:331
Symbol 331 MovieClipUses:315 328 330Used by:Timeline
Symbol 332 GraphicUsed by:334
Symbol 333 GraphicUsed by:334
Symbol 334 MovieClipUses:315 332 333Used by:Timeline
Symbol 335 GraphicUsed by:337
Symbol 336 GraphicUsed by:337
Symbol 337 MovieClipUses:315 335 336Used by:Timeline
Symbol 338 GraphicUsed by:340 392
Symbol 339 GraphicUsed by:340 392
Symbol 340 ButtonUses:315 338 339 314Used by:Timeline
Symbol 341 GraphicUsed by:Timeline
Symbol 342 GraphicUsed by:343
Symbol 343 MovieClipUses:342Used by:Timeline
Symbol 344 GraphicUsed by:347 356
Symbol 345 GraphicUsed by:347 356
Symbol 346 GraphicUsed by:347 356
Symbol 347 ButtonUses:344 345 346Used by:Timeline
Symbol 348 GraphicUsed by:349
Symbol 349 MovieClipUses:348Used by:Timeline
Symbol 350 GraphicUsed by:351
Symbol 351 MovieClipUses:350Used by:Timeline
Symbol 352 GraphicUsed by:353
Symbol 353 MovieClipUses:352Used by:Timeline
Symbol 354 GraphicUsed by:355
Symbol 355 MovieClipUses:354Used by:Timeline
Symbol 356 ButtonUses:344 345 346Used by:Timeline
Symbol 357 GraphicUsed by:358
Symbol 358 MovieClipUses:357Used by:Timeline
Symbol 359 GraphicUsed by:360
Symbol 360 MovieClipUses:359Used by:Timeline
Symbol 361 GraphicUsed by:364 365
Symbol 362 GraphicUsed by:364 365
Symbol 363 GraphicUsed by:364 365
Symbol 364 ButtonUses:361 362 363Used by:Timeline
Symbol 365 ButtonUses:361 362 363Used by:Timeline
Symbol 366 GraphicUsed by:367
Symbol 367 MovieClipUses:366Used by:Timeline
Symbol 368 GraphicUsed by:369
Symbol 369 MovieClipUses:368Used by:Timeline
Symbol 370 EditableTextUses:218Used by:Timeline
Symbol 371 FontUsed by:372 373 374 375 376 377 378 379 380 381 383 384 385 386 387 388 389 390 391
Symbol 372 EditableTextUses:371Used by:Timeline
Symbol 373 EditableTextUses:371Used by:Timeline
Symbol 374 EditableTextUses:371Used by:Timeline
Symbol 375 EditableTextUses:371Used by:Timeline
Symbol 376 EditableTextUses:371Used by:Timeline
Symbol 377 EditableTextUses:371Used by:Timeline
Symbol 378 EditableTextUses:371Used by:Timeline
Symbol 379 EditableTextUses:371Used by:Timeline
Symbol 380 EditableTextUses:371Used by:Timeline
Symbol 381 EditableTextUses:371Used by:Timeline
Symbol 382 EditableTextUses:218Used by:Timeline
Symbol 383 EditableTextUses:371Used by:Timeline
Symbol 384 EditableTextUses:371Used by:Timeline
Symbol 385 EditableTextUses:371Used by:Timeline
Symbol 386 EditableTextUses:371Used by:Timeline
Symbol 387 EditableTextUses:371Used by:Timeline
Symbol 388 EditableTextUses:371Used by:Timeline
Symbol 389 EditableTextUses:371Used by:Timeline
Symbol 390 EditableTextUses:371Used by:Timeline
Symbol 391 EditableTextUses:371Used by:Timeline
Symbol 392 MovieClipUses:315 338 339Used by:Timeline
Symbol 393 MovieClipUses:309Used by:Timeline
Symbol 394 GraphicUsed by:395
Symbol 395 MovieClipUses:394Used by:Timeline
Symbol 396 GraphicUsed by:397
Symbol 397 MovieClipUses:396Used by:398
Symbol 398 MovieClipUses:397 74Used by:Timeline
Symbol 399 TextUses:218Used by:Timeline
Symbol 400 TextUses:218Used by:Timeline
Symbol 401 TextUses:218Used by:Timeline
Symbol 402 TextUses:218Used by:Timeline
Symbol 403 GraphicUsed by:Timeline
Symbol 404 GraphicUsed by:405
Symbol 405 MovieClipUses:404 74Used by:407
Symbol 406 GraphicUsed by:407
Symbol 407 ButtonUses:405 406Used by:Timeline
Symbol 408 GraphicUsed by:409
Symbol 409 MovieClipUses:408Used by:Timeline
Symbol 410 TextUses:218Used by:Timeline
Symbol 411 TextUses:218Used by:Timeline
Symbol 412 TextUses:218Used by:Timeline
Symbol 413 TextUses:218Used by:Timeline
Symbol 414 TextUses:218Used by:Timeline
Symbol 415 TextUses:218Used by:Timeline
Symbol 416 TextUses:218Used by:Timeline
Symbol 417 TextUses:218Used by:Timeline
Symbol 418 TextUses:218Used by:Timeline
Symbol 419 TextUses:218Used by:Timeline
Symbol 420 TextUses:218Used by:Timeline
Symbol 421 TextUses:218Used by:Timeline
Symbol 422 TextUses:218Used by:Timeline
Symbol 423 TextUses:218Used by:Timeline
Symbol 424 MovieClipUses:322 74Used by:426
Symbol 425 GraphicUsed by:426
Symbol 426 ButtonUses:424 425Used by:Timeline
Symbol 427 GraphicUsed by:462
Symbol 428 GraphicUsed by:462
Symbol 429 GraphicUsed by:462
Symbol 430 GraphicUsed by:462
Symbol 431 GraphicUsed by:462
Symbol 432 GraphicUsed by:462
Symbol 433 GraphicUsed by:462
Symbol 434 GraphicUsed by:462
Symbol 435 GraphicUsed by:462
Symbol 436 GraphicUsed by:462
Symbol 437 GraphicUsed by:462
Symbol 438 GraphicUsed by:462
Symbol 439 GraphicUsed by:462
Symbol 440 GraphicUsed by:462
Symbol 441 GraphicUsed by:462
Symbol 442 GraphicUsed by:462
Symbol 443 GraphicUsed by:462
Symbol 444 GraphicUsed by:462
Symbol 445 GraphicUsed by:462
Symbol 446 GraphicUsed by:462
Symbol 447 GraphicUsed by:462
Symbol 448 GraphicUsed by:462
Symbol 449 GraphicUsed by:462
Symbol 450 GraphicUsed by:462
Symbol 451 GraphicUsed by:462
Symbol 452 GraphicUsed by:462
Symbol 453 GraphicUsed by:462
Symbol 454 GraphicUsed by:462
Symbol 455 GraphicUsed by:462
Symbol 456 GraphicUsed by:462
Symbol 457 GraphicUsed by:462
Symbol 458 GraphicUsed by:462
Symbol 459 GraphicUsed by:462
Symbol 460 GraphicUsed by:462
Symbol 461 GraphicUsed by:462
Symbol 462 MovieClipUses:427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461Used by:Timeline
Symbol 463 GraphicUsed by:466 468 482 484 486
Symbol 464 GraphicUsed by:466
Symbol 465 GraphicUsed by:466 468 482 484 486
Symbol 466 ButtonUses:463 464 465Used by:Timeline
Symbol 467 GraphicUsed by:468
Symbol 468 ButtonUses:463 467 465Used by:Timeline
Symbol 469 EditableTextUses:329Used by:Timeline
Symbol 470 GraphicUsed by:471
Symbol 471 MovieClipUses:470Used by:Timeline
Symbol 472 GraphicUsed by:473
Symbol 473 MovieClipUses:472Used by:474
Symbol 474 MovieClipUses:473Used by:Timeline
Symbol 475 GraphicUsed by:476
Symbol 476 MovieClipUses:204 475Used by:479
Symbol 477 GraphicUsed by:478 479
Symbol 478 MovieClipUses:477Used by:479
Symbol 479 MovieClipUses:476 224 478 477Used by:Timeline
Symbol 480 GraphicUsed by:Timeline
Symbol 481 GraphicUsed by:482
Symbol 482 ButtonUses:463 481 465Used by:Timeline
Symbol 483 GraphicUsed by:484
Symbol 484 ButtonUses:463 483 465Used by:Timeline
Symbol 485 GraphicUsed by:486
Symbol 486 ButtonUses:463 485 465Used by:Timeline
Symbol 487 FontUsed by:488
Symbol 488 EditableTextUses:487Used by:Timeline

Instance Names

"timerObj"Frame 1Symbol 224 MovieClip
"sauce"Frame 2Symbol 299 MovieClip [Saucer]
"hiScoreController"Frame 4Symbol 310 MovieClip
"buyBut"Frame 29Symbol 321 MovieClip
"button0"Frame 36Symbol 318 MovieClip
"button1"Frame 38Symbol 321 MovieClip
"button2"Frame 40Symbol 324 MovieClip
"button3"Frame 42Symbol 327 MovieClip
"button4"Frame 44Symbol 331 MovieClip
"button5"Frame 46Symbol 334 MovieClip
"button6"Frame 48Symbol 337 MovieClip
"StaticMainMenu"Frame 48Symbol 313 MovieClip
"but1"Frame 699Symbol 318 MovieClip
"but2"Frame 699Symbol 324 MovieClip
"but0"Frame 699Symbol 392 MovieClip
"score0"Frame 699Symbol 393 MovieClip
"score1"Frame 699Symbol 393 MovieClip
"score2"Frame 699Symbol 393 MovieClip
"score3"Frame 699Symbol 393 MovieClip
"score4"Frame 699Symbol 393 MovieClip
"score5"Frame 699Symbol 393 MovieClip
"score6"Frame 699Symbol 393 MovieClip
"score7"Frame 699Symbol 393 MovieClip
"score8"Frame 699Symbol 393 MovieClip
"score9"Frame 699Symbol 393 MovieClip
"but2"Frame 1003Symbol 327 MovieClip
"but1"Frame 1003Symbol 318 MovieClip
"but0"Frame 1003Symbol 392 MovieClip
"bg"Frame 1288Symbol 302 MovieClip
"boundingRing"Frame 1288Symbol 262 MovieClip [AreaOfInfluence]
"Ring"Frame 1288Symbol 292 MovieClip [OuterRing_skin0]
"pickupCounter"Frame 1288Symbol 462 MovieClip
"designBut"Frame 1288Symbol 466 Button
"dumpBut"Frame 1288Symbol 468 Button
"fpsdebug"Frame 1288Symbol 469 EditableText
"drain"Frame 1289Symbol 409 MovieClip
"bat"Frame 1289Symbol 284 MovieClip
"Runner"Frame 1293Symbol 471 MovieClip
"gameOverTxt"Frame 1307Symbol 474 MovieClip
"nextLevelFlasher"Frame 1372Symbol 479 MovieClip
"ring"Frame 1963Symbol 292 MovieClip [OuterRing_skin0]
"wall4"Symbol 27 MovieClip [BR_unbreakable_0_skin0] Frame 1Symbol 22 MovieClip
"wall3"Symbol 27 MovieClip [BR_unbreakable_0_skin0] Frame 1Symbol 22 MovieClip
"wall0"Symbol 27 MovieClip [BR_unbreakable_0_skin0] Frame 1Symbol 22 MovieClip
"wall1"Symbol 27 MovieClip [BR_unbreakable_0_skin0] Frame 1Symbol 22 MovieClip
"wall2"Symbol 27 MovieClip [BR_unbreakable_0_skin0] Frame 1Symbol 22 MovieClip
"wall5"Symbol 27 MovieClip [BR_unbreakable_0_skin0] Frame 1Symbol 22 MovieClip
"hitAction"Symbol 27 MovieClip [BR_unbreakable_0_skin0] Frame 1Symbol 26 MovieClip
"thisBrick"Symbol 30 MovieClip [BR_normal_0_skin0] Frame 1Symbol 29 MovieClip
"wall3"Symbol 30 MovieClip [BR_normal_0_skin0] Frame 1Symbol 22 MovieClip
"wall2"Symbol 30 MovieClip [BR_normal_0_skin0] Frame 1Symbol 22 MovieClip
"wall0"Symbol 30 MovieClip [BR_normal_0_skin0] Frame 1Symbol 22 MovieClip
"wall1"Symbol 30 MovieClip [BR_normal_0_skin0] Frame 1Symbol 22 MovieClip
"hitAction"Symbol 30 MovieClip [BR_normal_0_skin0] Frame 1Symbol 26 MovieClip
"thisBrick"Symbol 30 MovieClip [BR_normal_0_skin0] Frame 2Symbol 29 MovieClip
"wall4"Symbol 32 MovieClip [BR_unbreakable_1_skin0] Frame 1Symbol 22 MovieClip
"wall3"Symbol 32 MovieClip [BR_unbreakable_1_skin0] Frame 1Symbol 22 MovieClip
"wall0"Symbol 32 MovieClip [BR_unbreakable_1_skin0] Frame 1Symbol 22 MovieClip
"wall1"Symbol 32 MovieClip [BR_unbreakable_1_skin0] Frame 1Symbol 22 MovieClip
"wall2"Symbol 32 MovieClip [BR_unbreakable_1_skin0] Frame 1Symbol 22 MovieClip
"wall5"Symbol 32 MovieClip [BR_unbreakable_1_skin0] Frame 1Symbol 22 MovieClip
"hitAction"Symbol 32 MovieClip [BR_unbreakable_1_skin0] Frame 1Symbol 26 MovieClip
"thisBrick"Symbol 35 MovieClip [BR_normal_1_skin0] Frame 1Symbol 34 MovieClip
"hitAction"Symbol 35 MovieClip [BR_normal_1_skin0] Frame 1Symbol 26 MovieClip
"wall3"Symbol 35 MovieClip [BR_normal_1_skin0] Frame 1Symbol 22 MovieClip
"wall2"Symbol 35 MovieClip [BR_normal_1_skin0] Frame 1Symbol 22 MovieClip
"wall0"Symbol 35 MovieClip [BR_normal_1_skin0] Frame 1Symbol 22 MovieClip
"wall1"Symbol 35 MovieClip [BR_normal_1_skin0] Frame 1Symbol 22 MovieClip
"wall4"Symbol 37 MovieClip [BR_unbreakable_3_skin0] Frame 1Symbol 22 MovieClip
"wall3"Symbol 37 MovieClip [BR_unbreakable_3_skin0] Frame 1Symbol 22 MovieClip
"wall0"Symbol 37 MovieClip [BR_unbreakable_3_skin0] Frame 1Symbol 22 MovieClip
"wall1"Symbol 37 MovieClip [BR_unbreakable_3_skin0] Frame 1Symbol 22 MovieClip
"wall2"Symbol 37 MovieClip [BR_unbreakable_3_skin0] Frame 1Symbol 22 MovieClip
"wall5"Symbol 37 MovieClip [BR_unbreakable_3_skin0] Frame 1Symbol 22 MovieClip
"hitAction"Symbol 37 MovieClip [BR_unbreakable_3_skin0] Frame 1Symbol 26 MovieClip
"thisBrick"Symbol 40 MovieClip [BR_normal_3_skin0] Frame 1Symbol 39 MovieClip
"hitAction"Symbol 40 MovieClip [BR_normal_3_skin0] Frame 1Symbol 26 MovieClip
"wall2"Symbol 40 MovieClip [BR_normal_3_skin0] Frame 1Symbol 22 MovieClip
"wall1"Symbol 40 MovieClip [BR_normal_3_skin0] Frame 1Symbol 22 MovieClip
"wall0"Symbol 40 MovieClip [BR_normal_3_skin0] Frame 1Symbol 22 MovieClip
"wall3"Symbol 40 MovieClip [BR_normal_3_skin0] Frame 1Symbol 22 MovieClip
"thisBrick"Symbol 40 MovieClip [BR_normal_3_skin0] Frame 2Symbol 39 MovieClip
"wall4"Symbol 42 MovieClip [BR_unbreakable_2_skin0] Frame 1Symbol 22 MovieClip
"wall3"Symbol 42 MovieClip [BR_unbreakable_2_skin0] Frame 1Symbol 22 MovieClip
"wall0"Symbol 42 MovieClip [BR_unbreakable_2_skin0] Frame 1Symbol 22 MovieClip
"wall1"Symbol 42 MovieClip [BR_unbreakable_2_skin0] Frame 1Symbol 22 MovieClip
"wall2"Symbol 42 MovieClip [BR_unbreakable_2_skin0] Frame 1Symbol 22 MovieClip
"wall5"Symbol 42 MovieClip [BR_unbreakable_2_skin0] Frame 1Symbol 22 MovieClip
"hitAction"Symbol 42 MovieClip [BR_unbreakable_2_skin0] Frame 1Symbol 26 MovieClip
"thisBrick"Symbol 45 MovieClip [BR_normal_2_skin0] Frame 1Symbol 44 MovieClip
"hitAction"Symbol 45 MovieClip [BR_normal_2_skin0] Frame 1Symbol 26 MovieClip
"wall3"Symbol 45 MovieClip [BR_normal_2_skin0] Frame 1Symbol 22 MovieClip
"wall2"Symbol 45 MovieClip [BR_normal_2_skin0] Frame 1Symbol 22 MovieClip
"wall0"Symbol 45 MovieClip [BR_normal_2_skin0] Frame 1Symbol 22 MovieClip
"wall1"Symbol 45 MovieClip [BR_normal_2_skin0] Frame 1Symbol 22 MovieClip
"thisBrick"Symbol 45 MovieClip [BR_normal_2_skin0] Frame 2Symbol 44 MovieClip
"ballGfx"Symbol 55 MovieClip [Ball] Frame 1Symbol 47 MovieClip [ballGfx]
"ballGfx"Symbol 55 MovieClip [Ball] Frame 3Symbol 47 MovieClip [ballGfx]
"ballGfx"Symbol 55 MovieClip [Ball] Frame 4Symbol 54 MovieClip [BombPickup]
"ballGfx"Symbol 55 MovieClip [Ball] Frame 5Symbol 47 MovieClip [ballGfx]
"ballGfx"Symbol 55 MovieClip [Ball] Frame 20Symbol 47 MovieClip [ballGfx]
"thisBrick"Symbol 148 MovieClip [BR_d_barrier_skin0] Frame 1Symbol 147 MovieClip
"wall0"Symbol 148 MovieClip [BR_d_barrier_skin0] Frame 1Symbol 22 MovieClip
"wall1"Symbol 148 MovieClip [BR_d_barrier_skin0] Frame 1Symbol 22 MovieClip
"wall2"Symbol 148 MovieClip [BR_d_barrier_skin0] Frame 1Symbol 22 MovieClip
"wall3"Symbol 148 MovieClip [BR_d_barrier_skin0] Frame 1Symbol 22 MovieClip
"hitAction"Symbol 148 MovieClip [BR_d_barrier_skin0] Frame 1Symbol 26 MovieClip
"thisBrick"Symbol 153 MovieClip [BR_s_barrier_skin0] Frame 1Symbol 152 MovieClip
"hitAction"Symbol 153 MovieClip [BR_s_barrier_skin0] Frame 1Symbol 26 MovieClip
"wall0"Symbol 153 MovieClip [BR_s_barrier_skin0] Frame 1Symbol 22 MovieClip
"wall1"Symbol 153 MovieClip [BR_s_barrier_skin0] Frame 1Symbol 22 MovieClip
"wall2"Symbol 153 MovieClip [BR_s_barrier_skin0] Frame 1Symbol 22 MovieClip
"wall3"Symbol 153 MovieClip [BR_s_barrier_skin0] Frame 1Symbol 22 MovieClip
"wall4"Symbol 153 MovieClip [BR_s_barrier_skin0] Frame 1Symbol 22 MovieClip
"thisBrick"Symbol 156 MovieClip [BR_i_barrier_skin0] Frame 1Symbol 155 MovieClip
"wall0"Symbol 156 MovieClip [BR_i_barrier_skin0] Frame 1Symbol 22 MovieClip
"wall1"Symbol 156 MovieClip [BR_i_barrier_skin0] Frame 1Symbol 22 MovieClip
"wall2"Symbol 156 MovieClip [BR_i_barrier_skin0] Frame 1Symbol 22 MovieClip
"wall3"Symbol 156 MovieClip [BR_i_barrier_skin0] Frame 1Symbol 22 MovieClip
"wall4"Symbol 156 MovieClip [BR_i_barrier_skin0] Frame 1Symbol 22 MovieClip
"hitAction"Symbol 156 MovieClip [BR_i_barrier_skin0] Frame 1Symbol 26 MovieClip
"num"Symbol 175 MovieClip [0] Frame 1Symbol 174 MovieClip [0_gfx]
"num"Symbol 178 MovieClip [9] Frame 1Symbol 177 MovieClip [9_gfx]
"num"Symbol 181 MovieClip [8] Frame 1Symbol 180 MovieClip [8_gfx]
"num"Symbol 184 MovieClip [7] Frame 1Symbol 183 MovieClip [7_gfx]
"num"Symbol 187 MovieClip [6] Frame 1Symbol 186 MovieClip [6_gfx]
"num"Symbol 190 MovieClip [5] Frame 1Symbol 189 MovieClip [5_gfx]
"num"Symbol 193 MovieClip [4] Frame 1Symbol 192 MovieClip [4_gfx]
"num"Symbol 196 MovieClip [3] Frame 1Symbol 195 MovieClip [3_gfx]
"num"Symbol 199 MovieClip [2] Frame 1Symbol 198 MovieClip [2_gfx]
"num"Symbol 202 MovieClip [1] Frame 1Symbol 201 MovieClip [1_gfx]
"num"Symbol 225 MovieClip [scoreInput] Frame 1Symbol 224 MovieClip
"numObj"Symbol 235 MovieClip [PointsScoreNotify] Frame 2Symbol 234 MovieClip
"numObj"Symbol 235 MovieClip [PointsScoreNotify] Frame 22Symbol 234 MovieClip
"bulletGfx"Symbol 242 MovieClip [SmallBullet] Frame 1Symbol 241 MovieClip
"thisBrick"Symbol 260 MovieClip [BR_c_barrier_skin0] Frame 1Symbol 259 MovieClip
"hitAction"Symbol 260 MovieClip [BR_c_barrier_skin0] Frame 1Symbol 26 MovieClip
"bat0"Symbol 284 MovieClip Frame 1Symbol 268 MovieClip [bat]
"wall2"Symbol 284 MovieClip Frame 1Symbol 22 MovieClip
"wall1"Symbol 284 MovieClip Frame 1Symbol 22 MovieClip
"wall0"Symbol 284 MovieClip Frame 1Symbol 22 MovieClip
"wall2"Symbol 284 MovieClip Frame 1Symbol 22 MovieClip
"sauce"Symbol 299 MovieClip [Saucer] Frame 1Symbol 297 MovieClip
"blob"Symbol 299 MovieClip [Saucer] Frame 1Symbol 298 MovieClip
"hiScoreErrorPanel"Symbol 310 MovieClip Frame 1Symbol 288 MovieClip [ScoresNotAvailable]
"hiScorePanel"Symbol 310 MovieClip Frame 1Symbol 307 MovieClip
"ballsNum"Symbol 479 MovieClip Frame 1Symbol 224 MovieClip
"ballsHolder"Symbol 479 MovieClip Frame 1Symbol 224 MovieClip
"levelNum"Symbol 479 MovieClip Frame 28Symbol 224 MovieClip

Special Tags

Protect (24)Timeline Frame 10 bytes ""
ExportAssets (56)Timeline Frame 1Symbol 1 as "strikeDull"
ExportAssets (56)Timeline Frame 1Symbol 2 as "electric"
ExportAssets (56)Timeline Frame 1Symbol 3 as "powerUpHitBat"
ExportAssets (56)Timeline Frame 1Symbol 4 as "powerUp"
ExportAssets (56)Timeline Frame 1Symbol 5 as "nextLevel"
ExportAssets (56)Timeline Frame 1Symbol 6 as "newBall"
ExportAssets (56)Timeline Frame 1Symbol 7 as "LaserShoot"
ExportAssets (56)Timeline Frame 1Symbol 8 as "explode"
ExportAssets (56)Timeline Frame 1Symbol 9 as "clankHit"
ExportAssets (56)Timeline Frame 1Symbol 10 as "brickHit2"
ExportAssets (56)Timeline Frame 1Symbol 11 as "brickHit1"
ExportAssets (56)Timeline Frame 1Symbol 12 as "ballDrop"
ExportAssets (56)Timeline Frame 1Symbol 17 as "DrainCover_skin0"
ExportAssets (56)Timeline Frame 1Symbol 19 as "baseLine"
ExportAssets (56)Timeline Frame 1Symbol 27 as "BR_unbreakable_0_skin0"
ExportAssets (56)Timeline Frame 1Symbol 30 as "BR_normal_0_skin0"
ExportAssets (56)Timeline Frame 1Symbol 32 as "BR_unbreakable_1_skin0"
ExportAssets (56)Timeline Frame 1Symbol 35 as "BR_normal_1_skin0"
ExportAssets (56)Timeline Frame 1Symbol 37 as "BR_unbreakable_3_skin0"
ExportAssets (56)Timeline Frame 1Symbol 40 as "BR_normal_3_skin0"
ExportAssets (56)Timeline Frame 1Symbol 42 as "BR_unbreakable_2_skin0"
ExportAssets (56)Timeline Frame 1Symbol 45 as "BR_normal_2_skin0"
ExportAssets (56)Timeline Frame 1Symbol 46 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 54 as "BombPickup"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 55 as "Ball"
ExportAssets (56)Timeline Frame 1Symbol 57 as "dot"
ExportAssets (56)Timeline Frame 1Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 60 as "NoGravityPickup"
ExportAssets (56)Timeline Frame 1Symbol 62 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 63 as "NextLevelPickup"
ExportAssets (56)Timeline Frame 1Symbol 65 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 66 as "MultiBallPickup"
ExportAssets (56)Timeline Frame 1Symbol 70 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 71 as "FireballPickup"
ExportAssets (56)Timeline Frame 1Symbol 75 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 76 as "LittleBatPickup"
ExportAssets (56)Timeline Frame 1Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 81 as "MultiLaserPickup"
ExportAssets (56)Timeline Frame 1Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 88 as "SingleLaserPickup"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 92 as "RaspberryPickup"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 96 as "BananaPickup"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 98 as "BananaBunchPickup"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 103 as "EatenMelonPickup"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 106 as "MelonPickup"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 110 as "DiamondPickup"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 113 as "CherryPickup"
ExportAssets (56)Timeline Frame 1Symbol 115 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 116 as "DoubleBatPickup"
ExportAssets (56)Timeline Frame 1Symbol 119 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 120 as "ReverseGravityPickup"
ExportAssets (56)Timeline Frame 1Symbol 54 as "BombPickup"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 126 as "ReverseBatPickup"
ExportAssets (56)Timeline Frame 1Symbol 127 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 128 as "BigBatPickup"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 131 as "SpeedDownPickup"
ExportAssets (56)Timeline Frame 1Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 134 as "SpeedUpPickup"
ExportAssets (56)Timeline Frame 1Symbol 137 as "QuickStar2"
ExportAssets (56)Timeline Frame 1Symbol 140 as "QuickStar1"
ExportAssets (56)Timeline Frame 1Symbol 143 as "Star"
ExportAssets (56)Timeline Frame 1Symbol 148 as "BR_d_barrier_skin0"
ExportAssets (56)Timeline Frame 1Symbol 153 as "BR_s_barrier_skin0"
ExportAssets (56)Timeline Frame 1Symbol 156 as "BR_i_barrier_skin0"
ExportAssets (56)Timeline Frame 1Symbol 159 as "fireShadow"
ExportAssets (56)Timeline Frame 1Symbol 162 as "ballShadow"
ExportAssets (56)Timeline Frame 1Symbol 164 as "StarFire"
ExportAssets (56)Timeline Frame 1Symbol 166 as "StarfieldStar"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 171 as "ballLauncher"
ExportAssets (56)Timeline Frame 1Symbol 172 as "block"
ExportAssets (56)Timeline Frame 1Symbol 174 as "0_gfx"
ExportAssets (56)Timeline Frame 1Symbol 175 as "0"
ExportAssets (56)Timeline Frame 1Symbol 177 as "9_gfx"
ExportAssets (56)Timeline Frame 1Symbol 178 as "9"
ExportAssets (56)Timeline Frame 1Symbol 180 as "8_gfx"
ExportAssets (56)Timeline Frame 1Symbol 181 as "8"
ExportAssets (56)Timeline Frame 1Symbol 183 as "7_gfx"
ExportAssets (56)Timeline Frame 1Symbol 184 as "7"
ExportAssets (56)Timeline Frame 1Symbol 186 as "6_gfx"
ExportAssets (56)Timeline Frame 1Symbol 187 as "6"
ExportAssets (56)Timeline Frame 1Symbol 189 as "5_gfx"
ExportAssets (56)Timeline Frame 1Symbol 190 as "5"
ExportAssets (56)Timeline Frame 1Symbol 192 as "4_gfx"
ExportAssets (56)Timeline Frame 1Symbol 193 as "4"
ExportAssets (56)Timeline Frame 1Symbol 195 as "3_gfx"
ExportAssets (56)Timeline Frame 1Symbol 196 as "3"
ExportAssets (56)Timeline Frame 1Symbol 198 as "2_gfx"
ExportAssets (56)Timeline Frame 1Symbol 199 as "2"
ExportAssets (56)Timeline Frame 1Symbol 201 as "1_gfx"
ExportAssets (56)Timeline Frame 1Symbol 202 as "1"
ExportAssets (56)Timeline Frame 1Symbol 174 as "0_gfx"
ExportAssets (56)Timeline Frame 1Symbol 201 as "1_gfx"
ExportAssets (56)Timeline Frame 1Symbol 198 as "2_gfx"
ExportAssets (56)Timeline Frame 1Symbol 195 as "3_gfx"
ExportAssets (56)Timeline Frame 1Symbol 192 as "4_gfx"
ExportAssets (56)Timeline Frame 1Symbol 189 as "5_gfx"
ExportAssets (56)Timeline Frame 1Symbol 186 as "6_gfx"
ExportAssets (56)Timeline Frame 1Symbol 183 as "7_gfx"
ExportAssets (56)Timeline Frame 1Symbol 180 as "8_gfx"
ExportAssets (56)Timeline Frame 1Symbol 177 as "9_gfx"
ExportAssets (56)Timeline Frame 1Symbol 206 as "LevelPanel"
ExportAssets (56)Timeline Frame 1Symbol 209 as "ExplodeParticle"
ExportAssets (56)Timeline Frame 1Symbol 212 as "ExplodeAnim"
ExportAssets (56)Timeline Frame 1Symbol 213 as "ExplodeAnimSmall"
ExportAssets (56)Timeline Frame 1Symbol 214 as "ExplodeAnimMulti"
ExportAssets (56)Timeline Frame 1Symbol 225 as "scoreInput"
ExportAssets (56)Timeline Frame 1Symbol 227 as "paused"
ExportAssets (56)Timeline Frame 1Symbol 46 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 46 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 46 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 46 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 46 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 46 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 46 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 46 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 46 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 46 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 228 as "ballGfxBounce"
ExportAssets (56)Timeline Frame 1Symbol 230 as "submit"
ExportAssets (56)Timeline Frame 1Symbol 233 as "ExtraLife"
ExportAssets (56)Timeline Frame 1Symbol 235 as "PointsScoreNotify"
ExportAssets (56)Timeline Frame 1Symbol 238 as "SmallBulletLaunch"
ExportAssets (56)Timeline Frame 1Symbol 242 as "SmallBullet"
ExportAssets (56)Timeline Frame 1Symbol 255 as "quit"
ExportAssets (56)Timeline Frame 1Symbol 124 as "ReverseBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 260 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 65 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 127 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 115 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 264 as "DrainCoverPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 264 as "DrainCoverPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 265 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1Symbol 75 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 119 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 62 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 268 as "bat"
ExportAssets (56)Timeline Frame 1Symbol 274 as "BeamLaser"
ExportAssets (56)Timeline Frame 1Symbol 70 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 70 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1Symbol 274 as "BeamLaser"
ExportAssets (56)Timeline Frame 1Symbol 268 as "bat"
ExportAssets (56)Timeline Frame 1Symbol 268 as "bat"
ExportAssets (56)Timeline Frame 1Symbol 268 as "bat"
ExportAssets (56)Timeline Frame 1Symbol 268 as "bat"
ExportAssets (56)Timeline Frame 1Symbol 268 as "bat"
ExportAssets (56)Timeline Frame 1Symbol 268 as "bat"
ExportAssets (56)Timeline Frame 1Symbol 268 as "bat"
ExportAssets (56)Timeline Frame 1Symbol 268 as "bat"
ExportAssets (56)Timeline Frame 1Symbol 268 as "bat"
ExportAssets (56)Timeline Frame 1Symbol 268 as "bat"
ExportAssets (56)Timeline Frame 1Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1Symbol 46 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 47 as "ballGfx"
ExportAssets (56)Timeline Frame 1Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 1Symbol 288 as "ScoresNotAvailable"
ExportAssets (56)Timeline Frame 1Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1Symbol 299 as "Saucer"
ExportAssets (56)Timeline Frame 2Symbol 299 as "Saucer"
ExportAssets (56)Timeline Frame 3Symbol 299 as "Saucer"
ExportAssets (56)Timeline Frame 4Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 4Symbol 288 as "ScoresNotAvailable"
ExportAssets (56)Timeline Frame 4Symbol 288 as "ScoresNotAvailable"
ExportAssets (56)Timeline Frame 4Symbol 288 as "ScoresNotAvailable"
ExportAssets (56)Timeline Frame 4Symbol 288 as "ScoresNotAvailable"
ExportAssets (56)Timeline Frame 4Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 4Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 4Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 4Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 4Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 5Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 5Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 5Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 5Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 5Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 5Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 6Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 6Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 6Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 6Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 6Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 6Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 7Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 7Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 7Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 7Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 7Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 7Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 8Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 8Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 8Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 8Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 8Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 8Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 9Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 9Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 9Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 9Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 9Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 9Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 10Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 10Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 10Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 10Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 10Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 10Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 11Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 11Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 11Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 11Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 11Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 11Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 12Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 12Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 12Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 12Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 12Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 12Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 13Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 13Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 13Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 13Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 13Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 13Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 14Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 14Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 14Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 14Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 14Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 14Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 15Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 15Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 15Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 15Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 15Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 15Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 16Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 16Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 16Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 16Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 16Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 16Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 17Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 17Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 17Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 17Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 17Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 17Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 18Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 18Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 18Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 18Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 18Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 18Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 19Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 19Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 19Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 19Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 19Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 19Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 20Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 20Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 20Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 20Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 20Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 20Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 21Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 21Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 21Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 21Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 21Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 21Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 22Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 22Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 22Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 22Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 22Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 22Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 23Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 23Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 23Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 23Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 23Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 23Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 24Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 24Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 24Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 24Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 24Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 24Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 25Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 25Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 25Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 25Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 25Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 25Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 26Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 26Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 26Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 26Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 26Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 26Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 27Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 27Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 27Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 27Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 27Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 27Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 28Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 28Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 28Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 28Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 28Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 28Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 29Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 29Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 29Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 29Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 29Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 29Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 30Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 30Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 30Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 30Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 30Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 30Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 31Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 31Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 31Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 31Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 31Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 31Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 32Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 32Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 32Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 32Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 32Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 32Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 33Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 33Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 33Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 33Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 33Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 33Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 34Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 34Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 34Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 34Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 34Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 34Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 35Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 35Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 35Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 35Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 35Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 35Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 36Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 36Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 36Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 36Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 36Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 36Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 37Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 37Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 37Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 37Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 37Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 37Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 38Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 38Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 38Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 38Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 38Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 38Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 39Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 39Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 39Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 39Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 39Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 39Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 40Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 40Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 40Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 40Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 40Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 40Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 41Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 41Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 41Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 41Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 41Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 41Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 42Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 42Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 42Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 42Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 42Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 42Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 43Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 43Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 43Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 43Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 43Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 43Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 44Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 44Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 44Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 44Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 44Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 44Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 45Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 45Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 45Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 45Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 45Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 45Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 46Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 46Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 46Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 46Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 46Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 46Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 47Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 47Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 47Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 47Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 47Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 47Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 48Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 48Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 48Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 48Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 48Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 48Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 49Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 49Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 49Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 49Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 49Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 49Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 50Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 50Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 50Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 50Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 50Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 50Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 51Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 51Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 51Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 51Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 51Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 51Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 52Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 52Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 52Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 52Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 52Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 52Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 53Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 53Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 53Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 53Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 53Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 53Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 54Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 54Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 54Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 54Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 54Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 54Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 55Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 55Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 55Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 55Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 55Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 55Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 56Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 56Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 56Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 56Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 56Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 56Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 57Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 57Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 57Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 57Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 57Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 57Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 58Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 58Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 58Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 58Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 58Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 58Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 59Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 59Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 59Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 59Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 59Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 59Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 60Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 60Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 60Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 60Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 60Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 60Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 61Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 61Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 61Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 61Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 61Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 61Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 62Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 62Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 62Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 62Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 62Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 62Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 63Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 63Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 63Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 63Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 63Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 63Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 64Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 64Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 64Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 64Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 64Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 64Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 65Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 65Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 65Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 65Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 65Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 65Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 66Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 66Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 66Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 66Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 66Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 66Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 67Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 67Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 67Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 67Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 67Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 67Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 68Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 68Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 68Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 68Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 68Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 68Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 69Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 69Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 69Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 69Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 69Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 69Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 70Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 70Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 70Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 70Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 70Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 70Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 71Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 71Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 71Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 71Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 71Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 71Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 72Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 72Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 72Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 72Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 72Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 72Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 73Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 73Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 73Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 73Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 73Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 73Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 74Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 74Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 74Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 74Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 74Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 74Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 75Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 75Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 75Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 75Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 75Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 75Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 76Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 76Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 76Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 76Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 76Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 76Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 77Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 77Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 77Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 77Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 77Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 77Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 78Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 78Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 78Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 78Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 78Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 78Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 79Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 79Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 79Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 79Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 79Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 79Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 80Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 80Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 80Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 80Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 80Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 80Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 81Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 81Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 81Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 81Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 81Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 81Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 82Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 82Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 82Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 82Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 82Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 82Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 83Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 83Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 83Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 83Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 83Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 83Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 84Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 84Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 84Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 84Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 84Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 84Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 85Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 85Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 85Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 85Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 85Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 85Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 86Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 86Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 86Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 86Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 86Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 86Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 87Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 87Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 87Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 87Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 87Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 87Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 88Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 88Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 88Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 88Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 88Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 88Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 89Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 89Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 89Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 89Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 89Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 89Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 90Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 90Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 90Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 90Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 90Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 90Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 91Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 91Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 91Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 91Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 91Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 91Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 92Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 92Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 92Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 92Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 92Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 92Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 93Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 93Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 93Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 93Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 93Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 93Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 94Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 94Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 94Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 94Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 94Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 94Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 95Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 95Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 95Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 95Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 95Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 95Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 96Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 96Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 96Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 96Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 96Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 96Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 97Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 97Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 97Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 97Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 97Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 97Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 98Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 98Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 98Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 98Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 98Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 98Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 99Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 99Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 99Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 99Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 99Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 99Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 100Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 100Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 100Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 100Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 100Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 100Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 101Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 101Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 101Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 101Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 101Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 101Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 102Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 102Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 102Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 102Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 102Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 102Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 103Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 103Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 103Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 103Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 103Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 103Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 104Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 104Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 104Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 104Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 104Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 104Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 105Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 105Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 105Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 105Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 105Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 105Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 106Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 106Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 106Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 106Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 106Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 106Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 107Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 107Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 107Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 107Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 107Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 107Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 108Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 108Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 108Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 108Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 108Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 108Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 109Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 109Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 109Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 109Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 109Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 109Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 110Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 110Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 110Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 110Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 110Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 110Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 111Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 111Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 111Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 111Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 111Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 111Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 112Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 112Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 112Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 112Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 112Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 112Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 113Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 113Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 113Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 113Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 113Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 113Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 114Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 114Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 114Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 114Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 114Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 114Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 115Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 115Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 115Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 115Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 115Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 115Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 116Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 116Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 116Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 116Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 116Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 116Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 117Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 117Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 117Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 117Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 117Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 117Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 118Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 118Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 118Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 118Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 118Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 118Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 119Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 119Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 119Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 119Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 119Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 119Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 120Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 120Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 120Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 120Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 120Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 120Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 121Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 121Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 121Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 121Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 121Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 121Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 122Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 122Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 122Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 122Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 122Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 122Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 123Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 123Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 123Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 123Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 123Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 123Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 124Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 124Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 124Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 124Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 124Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 124Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 125Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 125Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 125Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 125Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 125Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 125Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 126Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 126Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 126Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 126Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 126Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 126Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 127Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 127Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 127Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 127Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 127Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 127Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 128Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 128Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 128Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 128Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 128Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 128Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 129Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 129Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 129Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 129Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 129Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 129Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 130Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 130Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 130Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 130Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 130Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 130Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 131Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 131Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 131Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 131Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 131Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 131Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 132Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 132Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 132Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 132Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 132Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 132Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 133Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 133Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 133Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 133Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 133Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 133Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 134Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 134Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 134Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 134Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 134Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 134Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 135Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 135Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 135Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 135Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 135Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 135Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 136Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 136Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 136Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 136Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 136Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 136Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 137Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 137Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 137Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 137Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 137Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 137Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 138Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 138Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 138Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 138Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 138Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 138Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 139Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 139Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 139Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 139Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 139Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 139Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 140Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 140Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 140Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 140Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 140Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 140Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 141Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 141Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 141Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 141Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 141Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 141Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 142Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 142Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 142Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 142Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 142Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 142Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 143Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 143Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 143Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 143Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 143Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 143Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 144Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 144Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 144Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 144Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 144Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 144Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 145Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 145Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 145Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 145Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 145Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 145Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 146Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 146Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 146Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 146Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 146Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 146Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 147Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 147Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 147Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 147Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 147Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 147Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 148Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 148Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 148Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 148Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 148Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 148Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 149Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 149Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 149Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 149Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 149Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 149Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 150Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 150Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 150Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 150Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 150Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 150Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 151Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 151Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 151Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 151Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 151Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 151Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 152Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 152Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 152Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 152Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 152Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 152Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 153Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 153Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 153Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 153Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 153Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 153Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 154Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 154Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 154Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 154Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 154Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 154Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 155Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 155Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 155Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 155Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 155Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 155Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 156Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 156Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 156Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 156Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 156Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 156Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 157Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 157Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 157Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 157Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 157Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 157Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 158Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 158Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 158Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 158Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 158Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 158Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 159Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 159Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 159Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 159Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 159Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 159Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 160Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 160Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 160Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 160Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 160Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 160Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 161Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 161Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 161Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 161Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 161Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 161Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 162Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 162Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 162Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 162Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 162Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 162Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 163Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 163Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 163Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 163Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 163Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 163Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 164Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 164Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 164Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 164Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 164Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 164Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 165Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 165Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 165Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 165Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 165Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 165Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 166Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 166Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 166Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 166Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 166Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 166Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 167Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 167Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 167Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 167Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 167Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 167Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 168Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 168Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 168Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 168Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 168Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 168Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 169Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 169Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 169Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 169Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 169Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 169Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 170Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 170Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 170Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 170Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 170Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 170Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 171Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 171Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 171Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 171Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 171Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 171Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 172Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 172Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 172Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 172Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 172Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 172Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 173Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 173Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 173Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 173Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 173Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 173Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 174Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 174Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 174Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 174Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 174Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 174Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 175Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 175Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 175Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 175Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 175Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 175Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 176Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 176Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 176Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 176Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 176Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 176Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 177Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 177Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 177Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 177Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 177Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 177Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 178Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 178Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 178Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 178Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 178Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 178Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 179Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 179Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 179Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 179Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 179Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 179Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 180Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 180Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 180Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 180Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 180Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 180Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 181Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 181Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 181Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 181Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 181Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 181Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 182Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 182Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 182Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 182Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 182Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 182Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 183Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 183Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 183Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 183Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 183Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 183Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 184Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 184Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 184Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 184Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 184Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 184Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 185Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 185Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 185Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 185Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 185Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 185Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 186Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 186Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 186Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 186Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 186Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 186Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 187Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 187Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 187Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 187Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 187Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 187Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 188Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 188Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 188Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 188Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 188Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 188Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 189Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 189Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 189Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 189Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 189Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 189Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 190Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 190Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 190Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 190Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 190Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 190Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 191Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 191Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 191Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 191Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 191Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 191Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 192Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 192Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 192Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 192Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 192Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 192Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 193Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 193Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 193Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 193Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 193Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 193Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 194Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 194Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 194Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 194Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 194Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 194Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 195Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 195Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 195Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 195Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 195Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 195Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 196Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 196Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 196Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 196Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 196Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 196Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 197Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 197Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 197Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 197Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 197Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 197Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 198Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 198Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 198Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 198Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 198Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 198Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 199Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 199Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 199Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 199Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 199Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 199Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 200Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 200Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 200Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 200Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 200Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 200Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 201Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 201Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 201Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 201Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 201Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 201Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 202Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 202Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 202Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 202Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 202Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 202Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 203Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 203Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 203Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 203Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 203Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 203Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 204Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 204Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 204Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 204Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 204Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 204Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 205Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 205Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 205Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 205Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 205Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 205Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 206Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 206Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 206Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 206Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 206Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 206Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 207Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 207Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 207Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 207Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 207Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 207Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 208Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 208Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 208Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 208Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 208Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 208Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 209Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 209Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 209Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 209Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 209Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 209Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 210Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 210Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 210Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 210Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 210Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 210Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 211Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 211Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 211Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 211Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 211Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 211Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 212Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 212Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 212Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 212Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 212Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 212Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 213Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 213Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 213Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 213Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 213Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 213Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 214Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 214Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 214Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 214Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 214Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 214Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 215Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 215Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 215Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 215Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 215Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 215Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 216Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 216Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 216Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 216Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 216Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 216Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 217Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 217Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 217Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 217Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 217Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 217Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 218Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 218Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 218Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 218Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 218Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 218Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 219Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 219Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 219Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 219Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 219Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 219Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 220Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 220Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 220Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 220Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 220Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 220Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 221Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 221Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 221Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 221Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 221Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 221Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 222Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 222Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 222Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 222Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 222Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 222Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 223Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 223Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 223Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 223Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 223Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 223Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 224Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 224Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 224Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 224Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 224Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 224Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 225Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 225Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 225Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 225Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 225Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 225Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 226Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 226Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 226Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 226Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 226Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 226Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 227Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 227Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 227Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 227Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 227Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 227Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 228Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 228Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 228Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 228Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 228Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 228Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 229Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 229Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 229Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 229Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 229Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 229Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 230Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 230Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 230Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 230Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 230Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 230Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 231Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 231Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 231Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 231Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 231Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 231Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 232Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 232Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 232Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 232Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 232Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 232Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 233Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 233Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 233Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 233Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 233Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 233Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 234Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 234Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 234Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 234Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 234Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 234Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 235Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 235Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 235Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 235Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 235Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 235Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 236Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 236Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 236Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 236Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 236Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 236Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 237Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 237Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 237Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 237Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 237Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 237Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 238Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 238Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 238Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 238Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 238Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 238Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 239Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 239Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 239Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 239Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 239Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 239Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 240Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 240Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 240Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 240Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 240Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 240Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 241Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 241Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 241Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 241Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 241Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 241Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 242Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 242Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 242Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 242Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 242Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 242Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 243Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 243Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 243Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 243Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 243Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 243Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 244Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 244Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 244Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 244Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 244Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 244Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 245Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 245Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 245Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 245Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 245Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 245Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 246Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 246Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 246Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 246Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 246Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 246Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 247Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 247Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 247Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 247Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 247Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 247Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 248Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 248Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 248Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 248Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 248Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 248Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 249Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 249Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 249Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 249Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 249Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 249Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 250Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 250Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 250Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 250Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 250Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 250Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 251Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 251Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 251Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 251Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 251Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 251Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 252Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 252Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 252Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 252Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 252Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 252Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 253Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 253Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 253Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 253Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 253Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 253Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 254Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 254Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 254Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 254Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 254Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 254Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 255Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 255Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 255Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 255Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 255Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 255Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 256Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 256Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 256Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 256Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 256Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 256Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 257Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 257Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 257Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 257Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 257Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 257Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 258Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 258Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 258Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 258Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 258Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 258Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 259Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 259Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 259Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 259Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 259Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 259Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 260Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 260Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 260Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 260Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 260Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 260Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 261Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 261Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 261Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 261Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 261Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 261Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 262Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 262Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 262Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 262Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 262Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 262Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 263Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 263Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 263Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 263Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 263Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 263Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 264Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 264Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 264Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 264Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 264Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 264Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 265Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 265Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 265Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 265Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 265Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 265Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 266Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 266Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 266Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 266Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 266Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 266Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 267Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 267Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 267Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 267Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 267Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 267Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 268Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 268Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 268Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 268Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 268Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 268Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 269Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 269Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 269Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 269Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 269Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 269Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 270Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 270Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 270Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 270Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 270Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 270Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 271Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 271Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 271Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 271Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 271Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 271Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 272Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 272Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 272Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 272Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 272Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 272Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 273Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 273Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 273Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 273Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 273Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 273Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 274Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 274Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 274Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 274Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 274Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 274Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 275Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 275Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 275Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 275Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 275Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 275Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 276Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 276Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 276Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 276Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 276Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 276Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 277Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 277Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 277Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 277Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 277Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 277Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 278Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 278Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 278Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 278Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 278Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 278Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 279Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 279Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 279Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 279Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 279Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 279Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 280Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 280Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 280Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 280Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 280Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 280Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 281Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 281Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 281Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 281Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 281Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 281Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 282Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 282Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 282Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 282Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 282Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 282Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 283Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 283Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 283Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 283Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 283Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 283Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 284Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 284Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 284Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 284Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 284Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 284Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 285Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 285Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 285Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 285Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 285Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 285Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 286Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 286Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 286Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 286Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 286Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 286Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 287Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 287Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 287Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 287Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 287Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 287Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 288Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 288Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 288Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 288Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 288Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 288Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 289Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 289Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 289Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 289Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 289Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 289Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 290Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 290Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 290Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 290Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 290Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 290Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 291Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 291Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 291Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 291Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 291Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 291Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 292Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 292Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 292Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 292Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 292Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 292Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 293Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 293Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 293Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 293Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 293Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 293Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 294Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 294Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 294Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 294Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 294Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 294Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 295Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 295Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 295Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 295Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 295Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 295Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 296Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 296Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 296Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 296Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 296Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 296Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 297Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 297Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 297Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 297Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 297Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 297Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 298Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 298Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 298Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 298Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 298Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 298Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 299Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 299Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 299Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 299Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 299Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 299Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 300Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 300Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 300Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 300Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 300Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 300Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 301Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 301Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 301Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 301Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 301Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 301Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 302Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 302Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 302Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 302Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 302Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 302Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 303Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 303Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 303Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 303Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 303Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 303Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 581Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 582Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 583Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 584Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 585Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 586Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 587Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 588Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 589Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 590Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 591Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 592Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 593Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 594Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 595Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 596Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 597Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 598Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 599Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 600Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 601Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 602Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 603Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 604Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 605Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 606Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 607Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 608Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 609Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 610Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 611Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 612Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 613Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 614Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 615Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 616Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 617Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 618Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 619Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 620Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 621Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 622Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 623Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 624Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 625Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 626Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 627Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 628Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 629Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 630Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 631Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 632Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 633Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 634Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 635Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 636Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 637Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 638Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 639Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 640Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 641Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 642Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 643Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 644Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 645Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 646Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 647Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 648Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 649Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 650Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 651Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 652Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 653Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 654Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 655Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 656Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 657Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 658Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 659Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 660Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 661Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 662Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 663Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 664Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 665Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 666Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 667Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 668Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 669Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 670Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 671Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 672Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 673Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 674Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 675Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 676Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 677Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 678Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 679Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 680Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 681Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 682Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 683Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 684Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 685Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 686Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 687Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 688Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 689Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 690Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 691Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 692Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 693Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 694Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 695Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 696Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 697Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 698Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 699Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 699Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 699Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 699Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 699Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 700Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 700Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 700Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 700Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 700Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 701Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 701Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 701Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 701Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 701Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 702Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 702Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 702Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 702Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 702Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 703Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 703Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 703Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 703Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 703Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 704Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 704Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 704Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 704Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 704Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 705Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 705Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 705Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 705Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 705Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 706Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 706Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 706Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 706Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 706Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 707Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 707Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 707Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 707Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 707Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 708Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 708Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 708Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 708Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 708Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 709Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 709Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 709Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 709Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 709Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 710Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 710Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 710Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 710Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 710Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 711Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 711Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 711Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 711Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 711Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 712Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 712Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 712Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 712Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 712Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 713Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 713Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 713Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 713Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 713Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 714Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 714Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 714Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 714Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 714Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 715Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 715Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 715Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 715Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 715Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 716Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 716Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 716Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 716Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 716Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 717Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 717Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 717Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 717Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 717Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 718Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 718Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 718Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 718Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 718Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 719Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 719Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 719Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 719Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 719Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 720Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 720Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 720Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 720Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 720Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 721Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 721Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 721Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 721Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 721Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 722Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 722Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 722Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 722Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 722Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 723Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 723Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 723Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 723Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 723Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 724Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 724Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 724Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 724Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 724Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 725Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 725Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 725Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 725Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 725Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 726Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 726Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 726Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 726Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 726Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 727Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 727Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 727Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 727Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 727Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 728Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 728Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 728Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 728Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 728Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 729Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 729Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 729Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 729Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 729Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 730Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 730Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 730Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 730Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 730Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 731Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 731Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 731Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 731Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 731Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 732Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 732Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 732Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 732Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 732Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 733Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 733Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 733Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 733Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 733Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 734Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 734Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 734Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 734Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 734Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 735Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 735Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 735Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 735Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 735Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 736Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 736Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 736Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 736Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 736Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 737Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 737Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 737Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 737Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 737Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 738Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 738Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 738Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 738Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 738Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 739Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 739Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 739Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 739Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 739Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 740Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 740Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 740Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 740Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 740Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 741Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 741Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 741Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 741Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 741Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 742Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 742Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 742Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 742Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 742Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 743Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 743Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 743Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 743Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 743Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 744Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 744Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 744Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 744Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 744Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 745Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 745Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 745Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 745Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 745Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 746Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 746Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 746Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 746Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 746Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 747Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 747Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 747Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 747Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 747Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 748Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 748Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 748Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 748Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 748Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 749Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 749Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 749Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 749Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 749Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 750Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 750Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 750Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 750Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 750Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 751Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 751Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 751Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 751Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 751Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 752Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 752Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 752Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 752Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 752Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 753Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 753Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 753Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 753Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 753Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 754Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 754Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 754Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 754Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 754Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 755Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 755Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 755Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 755Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 755Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 756Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 756Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 756Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 756Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 756Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 757Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 757Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 757Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 757Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 757Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 758Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 758Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 758Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 758Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 758Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 759Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 759Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 759Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 759Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 759Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 760Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 760Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 760Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 760Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 760Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 761Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 761Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 761Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 761Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 761Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 762Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 762Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 762Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 762Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 762Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 763Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 763Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 763Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 763Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 763Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 764Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 764Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 764Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 764Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 764Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 765Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 765Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 765Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 765Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 765Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 766Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 766Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 766Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 766Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 766Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 767Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 767Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 767Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 767Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 767Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 768Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 768Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 768Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 768Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 768Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 769Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 769Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 769Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 769Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 769Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 770Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 770Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 770Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 770Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 770Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 771Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 771Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 771Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 771Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 771Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 772Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 772Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 772Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 772Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 772Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 773Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 773Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 773Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 773Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 773Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 774Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 774Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 774Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 774Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 774Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 775Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 775Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 775Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 775Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 775Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 776Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 776Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 776Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 776Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 776Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 777Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 777Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 777Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 777Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 777Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 778Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 778Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 778Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 778Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 778Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 779Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 779Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 779Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 779Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 779Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 780Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 780Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 780Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 780Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 780Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 781Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 781Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 781Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 781Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 781Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 782Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 782Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 782Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 782Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 782Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 783Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 783Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 783Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 783Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 783Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 784Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 784Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 784Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 784Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 784Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 785Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 785Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 785Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 785Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 785Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 786Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 786Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 786Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 786Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 786Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 787Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 787Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 787Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 787Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 787Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 788Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 788Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 788Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 788Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 788Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 789Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 789Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 789Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 789Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 789Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 790Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 790Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 790Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 790Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 790Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 791Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 791Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 791Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 791Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 791Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 792Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 792Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 792Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 792Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 792Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 793Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 793Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 793Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 793Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 793Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 794Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 794Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 794Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 794Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 794Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 795Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 795Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 795Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 795Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 795Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 796Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 796Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 796Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 796Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 796Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 797Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 797Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 797Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 797Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 797Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 798Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 798Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 798Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 798Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 798Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 799Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 799Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 799Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 799Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 799Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 800Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 800Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 800Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 800Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 800Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 801Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 801Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 801Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 801Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 801Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 802Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 802Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 802Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 802Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 802Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 803Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 803Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 803Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 803Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 803Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 804Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 804Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 804Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 804Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 804Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 805Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 805Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 805Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 805Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 805Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 806Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 806Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 806Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 806Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 806Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 807Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 807Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 807Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 807Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 807Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 808Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 808Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 808Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 808Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 808Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 809Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 809Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 809Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 809Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 809Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 810Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 810Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 810Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 810Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 810Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 811Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 811Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 811Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 811Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 811Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 812Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 812Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 812Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 812Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 812Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 813Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 813Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 813Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 813Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 813Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 814Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 814Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 814Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 814Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 814Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 815Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 815Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 815Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 815Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 815Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 816Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 816Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 816Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 816Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 816Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 817Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 817Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 817Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 817Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 817Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 818Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 818Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 818Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 818Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 818Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 819Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 819Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 819Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 819Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 819Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 820Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 820Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 820Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 820Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 820Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 821Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 821Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 821Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 821Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 821Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 822Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 822Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 822Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 822Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 822Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 823Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 823Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 823Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 823Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 823Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 824Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 824Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 824Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 824Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 824Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 825Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 825Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 825Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 825Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 825Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 826Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 826Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 826Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 826Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 826Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 827Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 827Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 827Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 827Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 827Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 828Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 828Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 828Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 828Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 828Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 829Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 829Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 829Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 829Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 829Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 830Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 830Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 830Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 830Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 830Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 831Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 831Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 831Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 831Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 831Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 832Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 832Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 832Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 832Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 832Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 833Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 833Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 833Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 833Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 833Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 834Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 834Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 834Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 834Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 834Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 835Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 835Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 835Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 835Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 835Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 836Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 836Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 836Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 836Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 836Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 837Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 837Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 837Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 837Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 837Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 838Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 838Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 838Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 838Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 838Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 839Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 839Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 839Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 839Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 839Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 840Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 840Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 840Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 840Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 840Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 841Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 841Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 841Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 841Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 841Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 842Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 842Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 842Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 842Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 842Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 843Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 843Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 843Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 843Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 843Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 844Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 844Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 844Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 844Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 844Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 845Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 845Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 845Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 845Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 845Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 846Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 846Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 846Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 846Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 846Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 847Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 847Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 847Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 847Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 847Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 848Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 848Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 848Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 848Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 848Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 849Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 849Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 849Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 849Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 849Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 850Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 850Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 850Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 850Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 850Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 851Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 851Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 851Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 851Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 851Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 852Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 852Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 852Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 852Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 852Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 853Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 853Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 853Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 853Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 853Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 854Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 854Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 854Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 854Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 854Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 855Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 855Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 855Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 855Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 855Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 856Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 856Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 856Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 856Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 856Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 857Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 857Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 857Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 857Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 857Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 858Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 858Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 858Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 858Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 858Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 859Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 859Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 859Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 859Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 859Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 860Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 860Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 860Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 860Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 860Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 861Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 861Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 861Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 861Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 861Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 862Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 862Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 862Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 862Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 862Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 863Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 863Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 863Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 863Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 863Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 864Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 864Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 864Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 864Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 864Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 865Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 865Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 865Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 865Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 865Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 866Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 866Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 866Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 866Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 866Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 867Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 867Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 867Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 867Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 867Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 868Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 868Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 868Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 868Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 868Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 869Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 869Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 869Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 869Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 869Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 870Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 870Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 870Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 870Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 870Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 871Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 871Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 871Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 871Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 871Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 872Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 872Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 872Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 872Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 872Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 873Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 873Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 873Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 873Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 873Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 874Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 874Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 874Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 874Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 874Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 875Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 875Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 875Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 875Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 875Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 876Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 876Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 876Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 876Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 876Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 877Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 877Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 877Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 877Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 877Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 878Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 878Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 878Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 878Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 878Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 879Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 879Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 879Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 879Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 879Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 880Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 880Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 880Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 880Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 880Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 881Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 881Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 881Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 881Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 881Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 882Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 882Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 882Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 882Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 882Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 883Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 883Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 883Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 883Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 883Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 884Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 884Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 884Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 884Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 884Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 885Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 885Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 885Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 885Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 885Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 886Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 886Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 886Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 886Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 886Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 887Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 887Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 887Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 887Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 887Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 888Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 888Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 888Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 888Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 888Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 889Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 889Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 889Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 889Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 889Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 890Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 890Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 890Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 890Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 890Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 891Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 891Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 891Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 891Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 891Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 892Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 892Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 892Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 892Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 892Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 893Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 893Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 893Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 893Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 893Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 894Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 894Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 894Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 894Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 894Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 895Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 895Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 895Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 895Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 895Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 896Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 896Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 896Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 896Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 896Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 897Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 897Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 897Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 897Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 897Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 898Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 898Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 898Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 898Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 898Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 899Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 899Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 899Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 899Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 899Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 900Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 900Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 900Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 900Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 900Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 901Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 901Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 901Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 901Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 901Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 902Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 902Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 902Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 902Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 902Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 903Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 903Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 903Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 903Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 903Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 904Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 904Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 904Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 904Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 904Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 905Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 905Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 905Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 905Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 905Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 906Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 906Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 906Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 906Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 906Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 907Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 907Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 907Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 907Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 907Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 908Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 908Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 908Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 908Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 908Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 909Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 909Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 909Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 909Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 909Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 910Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 910Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 910Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 910Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 910Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 911Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 911Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 911Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 911Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 911Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 912Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 912Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 912Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 912Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 912Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 913Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 913Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 913Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 913Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 913Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 914Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 914Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 914Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 914Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 914Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 915Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 915Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 915Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 915Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 915Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 916Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 916Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 916Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 916Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 916Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 917Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 917Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 917Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 917Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 917Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 918Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 918Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 918Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 918Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 918Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 919Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 919Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 919Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 919Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 919Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 920Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 920Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 920Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 920Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 920Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 921Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 921Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 921Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 921Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 921Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 922Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 922Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 922Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 922Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 922Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 923Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 923Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 923Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 923Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 923Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 924Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 924Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 924Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 924Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 924Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 925Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 925Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 925Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 925Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 925Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 926Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 926Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 926Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 926Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 926Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 927Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 927Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 927Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 927Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 927Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 928Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 928Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 928Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 928Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 928Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 929Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 929Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 929Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 929Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 929Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 930Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 930Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 930Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 930Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 930Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 931Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 931Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 931Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 931Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 931Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 932Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 932Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 932Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 932Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 932Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 933Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 933Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 933Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 933Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 933Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 934Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 934Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 934Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 934Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 934Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 935Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 935Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 935Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 935Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 935Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 936Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 936Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 936Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 936Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 936Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 937Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 937Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 937Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 937Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 937Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 938Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 938Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 938Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 938Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 938Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 939Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 939Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 939Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 939Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 939Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 940Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 940Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 940Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 940Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 940Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 941Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 941Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 941Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 941Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 941Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 942Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 942Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 942Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 942Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 942Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 943Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 943Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 943Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 943Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 943Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 944Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 944Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 944Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 944Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 944Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 945Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 945Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 945Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 945Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 945Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 946Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 946Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 946Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 946Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 946Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 947Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 947Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 947Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 947Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 947Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 948Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 948Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 948Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 948Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 948Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 949Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 949Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 949Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 949Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 949Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 950Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 950Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 950Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 950Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 950Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 951Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 951Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 951Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 951Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 951Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 952Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 952Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 952Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 952Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 952Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 953Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 953Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 953Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 953Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 953Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 954Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 954Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 954Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 954Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 954Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 955Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 955Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 955Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 955Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 955Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 956Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 956Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 956Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 956Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 956Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 957Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 957Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 957Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 957Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 957Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 958Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 958Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 958Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 958Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 958Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 959Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 959Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 959Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 959Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 959Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 960Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 960Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 960Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 960Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 960Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 961Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 961Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 961Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 961Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 961Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 962Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 962Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 962Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 962Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 962Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 963Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 963Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 963Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 963Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 963Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 964Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 964Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 964Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 964Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 964Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 965Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 965Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 965Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 965Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 965Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 966Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 966Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 966Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 966Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 966Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 967Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 967Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 967Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 967Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 967Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 968Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 968Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 968Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 968Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 968Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 969Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 969Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 969Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 969Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 969Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 970Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 970Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 970Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 970Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 970Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 971Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 971Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 971Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 971Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 971Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 972Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 972Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 972Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 972Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 972Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 973Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 973Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 973Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 973Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 973Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 974Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 974Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 974Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 974Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 974Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 975Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 975Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 975Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 975Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 975Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 976Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 976Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 976Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 976Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 976Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 977Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 977Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 977Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 977Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 977Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 978Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 978Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 978Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 978Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 978Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 979Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 979Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 979Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 979Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 979Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 980Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 980Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 980Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 980Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 980Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 981Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 981Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 981Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 981Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 981Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 982Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 982Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 982Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 982Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 982Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 983Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 983Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 983Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 983Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 983Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 984Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 984Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 984Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 984Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 984Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 985Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 985Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 985Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 985Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 985Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 986Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 986Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 986Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 986Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 986Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 987Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 987Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 987Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 987Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 987Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 988Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 988Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 988Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 988Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 988Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 989Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 989Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 989Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 989Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 989Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 990Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 990Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 990Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 990Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 990Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 991Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 991Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 991Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 991Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 991Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 992Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 992Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 992Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 992Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 992Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 993Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 993Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 993Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 993Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 993Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 994Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 994Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 994Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 994Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 994Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 995Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 995Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 995Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 995Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 995Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 996Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 996Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 996Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 996Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 996Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 997Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 997Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 997Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 997Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 997Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 998Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 998Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 998Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 998Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 998Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 999Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 999Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 999Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 999Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 999Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 1000Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 1000Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 1000Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 1000Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 1000Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 1001Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 1001Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 1001Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 1001Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 1001Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 1002Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 1002Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 1002Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 1002Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 1002Symbol 286 as "frontEndBall"
ExportAssets (56)Timeline Frame 1242Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1242Symbol 62 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1242Symbol 119 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1242Symbol 75 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1242Symbol 70 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1242Symbol 265 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1242Symbol 115 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1242Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1242Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1242Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1242Symbol 127 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1242Symbol 65 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1242Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1242Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1288Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1288Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1289Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1289Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1290Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1290Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1291Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1291Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1292Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1292Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1293Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1293Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1294Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1294Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1295Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1295Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1296Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1296Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1297Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1297Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1298Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1298Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1299Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1299Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1300Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1300Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1301Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1301Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1302Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1302Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1303Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1303Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1304Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1304Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1305Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1305Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1306Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1306Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1307Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1307Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1308Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1308Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1309Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1309Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1310Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1310Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1311Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1311Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1312Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1312Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1313Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1313Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1314Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1314Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1315Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1315Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1316Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1316Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1317Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1317Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1318Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1318Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1319Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1319Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1320Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1320Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1321Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1321Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1322Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1322Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1323Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1323Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1324Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1324Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1325Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1325Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1326Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1326Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1327Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1327Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1328Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1328Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1329Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1329Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1330Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1330Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1331Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1331Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1332Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1332Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1333Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1333Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1334Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1334Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1335Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1335Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1336Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1336Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1337Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1337Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1338Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1338Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1339Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1339Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1340Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1340Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1341Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1341Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1342Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1342Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1343Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1343Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1344Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1344Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1345Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1345Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1346Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1346Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1347Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1347Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1348Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1348Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1349Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1349Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1350Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1350Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1351Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1351Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1352Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1352Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1353Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1353Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1354Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1354Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1355Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1355Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1356Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1356Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1357Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1357Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1358Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1358Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1359Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1359Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1360Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1360Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1361Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1361Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1362Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1362Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1363Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1363Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1364Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1364Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1365Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1365Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1366Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1366Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1367Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1367Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1368Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1368Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1369Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1369Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1370Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1370Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1371Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1371Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1372Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1372Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1373Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1373Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1374Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1374Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1375Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1375Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1376Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1376Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1377Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1377Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1378Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1378Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1379Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1379Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1380Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1380Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1381Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1381Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1382Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1382Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1383Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1383Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1384Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1384Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1385Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1385Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1386Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1386Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1387Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1387Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1388Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1388Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1389Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1389Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1390Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1390Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1391Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1391Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1392Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1392Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1393Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1393Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1394Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1394Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1395Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1395Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1396Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1396Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1397Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1397Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1398Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1398Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1399Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1399Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1400Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1400Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1401Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1401Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1402Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1402Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1403Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1403Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1404Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1404Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1405Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1405Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1406Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1406Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1407Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1407Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1408Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1408Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1409Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1409Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1410Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1410Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1411Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1411Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1412Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1412Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1413Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1413Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1414Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1414Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1415Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1415Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1416Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1416Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1417Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1417Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1418Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1418Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1419Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1419Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1420Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1420Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1421Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1421Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1422Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1422Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1423Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1423Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1424Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1424Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1425Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1425Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1426Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1426Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1427Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1427Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1428Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1428Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1429Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1429Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1430Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1430Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1431Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1431Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1432Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1432Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1433Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1433Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1434Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1434Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1435Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1435Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1436Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1436Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1437Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1437Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1438Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1438Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1439Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1439Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1440Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1440Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1441Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1441Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1442Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1442Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1443Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1443Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1444Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1444Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1445Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1445Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1446Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1446Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1447Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1447Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1448Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1448Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1449Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1449Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1450Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1450Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1451Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1451Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1452Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1452Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1453Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1453Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1454Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1454Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1455Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1455Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1456Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1456Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1457Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1457Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1458Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1458Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1459Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1459Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1460Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1460Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1461Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1461Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1462Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1462Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1463Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1463Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1464Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1464Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1465Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1465Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1466Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1466Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1467Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1467Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1468Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1468Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1469Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1469Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1470Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1470Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1471Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1471Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1472Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1472Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1473Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1473Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1474Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1474Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1475Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1475Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1476Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1476Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1477Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1477Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1478Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1478Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1479Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1479Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1480Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1480Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1481Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1481Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1482Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1482Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1483Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1483Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1484Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1484Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1485Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1485Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1486Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1486Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1487Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1487Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1488Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1488Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1489Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1489Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1490Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1490Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1491Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1491Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1492Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1492Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1493Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1493Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1494Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1494Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1495Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1495Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1496Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1496Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1497Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1497Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1498Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1498Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1499Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1499Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1500Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1500Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1501Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1501Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1502Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1502Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1503Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1503Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1504Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1504Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1505Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1505Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1506Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1506Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1507Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1507Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1508Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1508Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1509Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1509Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1510Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1510Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1511Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1511Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1512Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1512Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1513Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1513Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1514Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1514Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1515Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1515Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1516Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1516Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1517Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1517Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1518Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1518Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1519Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1519Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1520Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1520Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1521Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1521Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1522Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1522Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1523Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1523Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1524Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1524Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1525Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1525Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1526Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1526Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1527Symbol 262 as "AreaOfInfluence"
ExportAssets (56)Timeline Frame 1527Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1703Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1704Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1705Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1706Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1707Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1708Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1709Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1710Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1711Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1712Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1713Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1714Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1715Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1716Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1717Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1718Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1719Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1720Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1721Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1722Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1723Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1724Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1725Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1726Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1727Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1728Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1729Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1730Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1731Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1732Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1733Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1734Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1735Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1736Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1737Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1738Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1739Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1740Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1741Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1742Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1743Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1744Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1745Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1746Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1747Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1748Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1749Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1750Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1751Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1752Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1753Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1754Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1755Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1756Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1757Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1758Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1759Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1760Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1761Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1762Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1763Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1764Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1765Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1766Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1767Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1768Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1769Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1770Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1771Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1772Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1773Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1774Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1775Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1776Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1777Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1778Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1779Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1780Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1781Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1782Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1783Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1784Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1785Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1786Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1787Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1788Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1789Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1790Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1791Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1792Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1793Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1794Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1795Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1796Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1797Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1798Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1799Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1800Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1801Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1802Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1803Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1804Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1805Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1806Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1807Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1808Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1809Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1810Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1811Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1812Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1813Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1814Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1815Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1816Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1817Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1818Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1819Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1820Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1821Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1822Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1823Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1824Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1825Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1826Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1827Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1828Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1829Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1830Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1831Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1832Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1833Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1834Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1835Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1836Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1837Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1838Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1839Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1840Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1841Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1842Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1843Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1844Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1845Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1846Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1847Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1848Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1849Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1850Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1851Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1852Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1853Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1854Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1855Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1856Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1857Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1858Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1859Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1860Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1861Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1862Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1863Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1864Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1865Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1866Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1867Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1868Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1869Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1870Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1871Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1872Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1873Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1874Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1875Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1876Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1877Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1878Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1879Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1880Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1881Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1882Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1883Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1884Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1885Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1886Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1887Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1888Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1889Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1890Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1891Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1892Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1893Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1894Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1895Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1896Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1897Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1898Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1899Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1900Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1901Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1902Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1903Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1904Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1905Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1906Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1907Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1908Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1909Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1910Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1911Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1912Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1913Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1914Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1915Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1916Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1917Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1918Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1919Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1920Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1921Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1922Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1923Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1924Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1925Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1926Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1927Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1928Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1929Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1930Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1931Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1932Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1933Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1934Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1935Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1936Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1937Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1938Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1939Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1940Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1941Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1942Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1943Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1944Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1945Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1946Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1947Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1948Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1949Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1950Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1951Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1952Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1953Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1954Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1955Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1956Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1957Symbol 285 as "BuyMe"
ExportAssets (56)Timeline Frame 1963Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1963Symbol 260 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1963Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1963Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1963Symbol 127 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1963Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1963Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1963Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1963Symbol 115 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1963Symbol 265 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1963Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1963Symbol 70 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1963Symbol 75 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1963Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1963Symbol 65 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1963Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1963Symbol 62 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1963Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1963Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1963Symbol 119 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1963Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1963Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1963Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1964Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1964Symbol 260 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1964Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1964Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1964Symbol 127 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1964Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1964Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1964Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1964Symbol 115 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1964Symbol 265 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1964Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1964Symbol 70 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1964Symbol 75 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1964Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1964Symbol 65 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1964Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1964Symbol 62 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1964Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1964Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1964Symbol 119 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1964Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1964Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1964Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1965Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1965Symbol 260 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1965Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1965Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1965Symbol 127 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1965Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1965Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1965Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1965Symbol 115 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1965Symbol 265 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1965Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1965Symbol 70 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1965Symbol 75 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1965Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1965Symbol 65 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1965Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1965Symbol 62 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1965Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1965Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1965Symbol 119 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1965Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1965Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1965Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1966Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1966Symbol 260 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1966Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1966Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1966Symbol 127 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1966Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1966Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1966Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1966Symbol 115 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1966Symbol 265 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1966Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1966Symbol 70 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1966Symbol 75 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1966Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1966Symbol 65 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1966Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1966Symbol 62 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1966Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1966Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1966Symbol 119 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1966Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1966Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1966Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1967Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1967Symbol 260 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1967Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1967Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1967Symbol 127 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1967Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1967Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1967Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1967Symbol 115 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1967Symbol 265 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1967Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1967Symbol 70 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1967Symbol 75 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1967Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1967Symbol 65 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1967Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1967Symbol 62 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1967Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1967Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1967Symbol 119 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1967Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1967Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1967Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1968Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1968Symbol 260 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1968Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1968Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1968Symbol 127 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1968Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1968Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1968Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1968Symbol 115 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1968Symbol 265 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1968Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1968Symbol 70 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1968Symbol 75 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1968Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1968Symbol 65 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1968Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1968Symbol 62 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1968Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1968Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1968Symbol 119 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1968Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1968Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1968Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1969Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1969Symbol 260 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1969Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1969Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1969Symbol 127 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1969Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1969Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1969Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1969Symbol 115 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1969Symbol 265 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1969Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1969Symbol 70 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1969Symbol 75 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1969Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1969Symbol 65 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1969Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1969Symbol 62 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1969Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1969Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1969Symbol 119 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1969Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1969Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1969Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1970Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1970Symbol 260 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1970Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1970Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1970Symbol 127 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1970Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1970Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1970Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1970Symbol 115 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1970Symbol 265 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1970Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1970Symbol 70 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1970Symbol 75 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1970Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1970Symbol 65 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1970Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1970Symbol 62 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1970Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1970Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1970Symbol 119 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1970Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1970Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1970Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1971Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1971Symbol 260 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1971Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1971Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1971Symbol 127 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1971Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1971Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1971Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1971Symbol 115 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1971Symbol 265 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1971Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1971Symbol 70 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1971Symbol 75 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1971Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1971Symbol 65 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1971Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1971Symbol 62 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1971Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1971Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1971Symbol 119 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1971Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1971Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1971Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1972Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1972Symbol 260 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1972Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1972Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1972Symbol 127 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1972Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1972Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1972Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1972Symbol 115 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1972Symbol 265 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1972Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1972Symbol 70 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1972Symbol 75 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1972Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1972Symbol 65 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1972Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1972Symbol 62 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1972Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1972Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1972Symbol 119 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1972Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1972Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1972Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1973Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1973Symbol 260 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1973Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1973Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1973Symbol 127 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1973Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1973Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1973Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1973Symbol 115 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1973Symbol 265 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1973Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1973Symbol 70 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1973Symbol 75 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1973Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1973Symbol 65 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1973Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1973Symbol 62 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1973Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1973Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1973Symbol 119 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1973Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1973Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1973Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1974Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1974Symbol 260 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1974Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1974Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1974Symbol 127 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1974Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1974Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1974Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1974Symbol 115 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1974Symbol 265 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1974Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1974Symbol 70 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1974Symbol 75 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1974Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1974Symbol 65 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1974Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1974Symbol 62 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1974Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1974Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1974Symbol 119 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1974Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1974Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1974Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1975Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1975Symbol 260 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1975Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1975Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1975Symbol 127 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1975Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1975Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1975Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1975Symbol 115 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1975Symbol 265 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1975Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1975Symbol 70 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1975Symbol 75 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1975Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1975Symbol 65 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1975Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1975Symbol 62 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1975Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1975Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1975Symbol 119 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1975Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1975Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1975Symbol 133 as "SpeedPickupGfx"
ExportAssets (56)Timeline Frame 1976Symbol 292 as "OuterRing_skin0"
ExportAssets (56)Timeline Frame 1976Symbol 260 as "BR_c_barrier_skin0"
ExportAssets (56)Timeline Frame 1976Symbol 97 as "BananaBunchPickupGfx"
ExportAssets (56)Timeline Frame 1976Symbol 95 as "BananaPickupGfx"
ExportAssets (56)Timeline Frame 1976Symbol 127 as "BigBatPickupGfx"
ExportAssets (56)Timeline Frame 1976Symbol 50 as "BombPickupGfx"
ExportAssets (56)Timeline Frame 1976Symbol 112 as "CherryPickupGfx"
ExportAssets (56)Timeline Frame 1976Symbol 109 as "DiamondPickupGfx"
ExportAssets (56)Timeline Frame 1976Symbol 115 as "DoubleBatPickupGfx"
ExportAssets (56)Timeline Frame 1976Symbol 265 as "DrainCoverPickup"
ExportAssets (56)Timeline Frame 1976Symbol 102 as "EatenMelonPickupGfx"
ExportAssets (56)Timeline Frame 1976Symbol 70 as "FireballPickupGfx"
ExportAssets (56)Timeline Frame 1976Symbol 75 as "LittleBatPickupGfx"
ExportAssets (56)Timeline Frame 1976Symbol 105 as "MelonPickupGfx"
ExportAssets (56)Timeline Frame 1976Symbol 65 as "MultiBallPickupGfx"
ExportAssets (56)Timeline Frame 1976Symbol 80 as "MultiLaserPickupGfx"
ExportAssets (56)Timeline Frame 1976Symbol 62 as "NextLevelPickupGfx"
ExportAssets (56)Timeline Frame 1976Symbol 59 as "NoGravityPickupGfx"
ExportAssets (56)Timeline Frame 1976Symbol 91 as "RaspberryPickupGfx"
ExportAssets (56)Timeline Frame 1976Symbol 119 as "ReverseGravityPickupGfx"
ExportAssets (56)Timeline Frame 1976Symbol 87 as "SingleLaserPickupGfx"
ExportAssets (56)Timeline Frame 1976Symbol 130 as "SpeedDownPickupGfx"
ExportAssets (56)Timeline Frame 1976Symbol 133 as "SpeedPickupGfx"

Labels

"Intro"Frame 3
"playButShow"Frame 29
"StaticMainMenu"Frame 48
"PlayGame"Frame 303
"Nag"Frame 304
"Instructions"Frame 305
"HiScore"Frame 306
"Credits"Frame 307
"playGame"Frame 1000
"StaticHiscore"Frame 1001
"gotoInstructions"Frame 1002
"startInstruct"Frame 1003
"playGame"Frame 1223
"StaticInstructions"Frame 1224
"gotoHiscore"Frame 1225
"pickups"Frame 1242
"Start"Frame 1290
"BuildArena"Frame 1291
"InitGame"Frame 1293
"GameOver"Frame 1300
"Finish"Frame 1371
"NextLevel"Frame 1372
"gotoNextLevel"Frame 1527
"DemoOver"Frame 1528
"NagDemoOver"Frame 1703
"Quit"Frame 1962
"DESIGN"Frame 1963
"destroy"Symbol 30 MovieClip [BR_normal_0_skin0] Frame 2
"destroy"Symbol 35 MovieClip [BR_normal_1_skin0] Frame 2
"destroy"Symbol 40 MovieClip [BR_normal_3_skin0] Frame 2
"destroy"Symbol 45 MovieClip [BR_normal_2_skin0] Frame 2
"explode"Symbol 172 MovieClip [block] Frame 2
"KILLME"Symbol 206 MovieClip [LevelPanel] Frame 20
"startWobble"Symbol 299 MovieClip [Saucer] Frame 1
"addBallMarker"Symbol 479 MovieClip Frame 36
"ballsAdded"Symbol 479 MovieClip Frame 45

Dynamic Text Variables

playerNameTxtSymbol 219 EditableText"0"
localGlobalScoreSymbol 370 EditableText"local high scores"
name0Symbol 382 EditableText"Name1"
name9Symbol 383 EditableText"Name10"
name8Symbol 384 EditableText"Name9"
name7Symbol 385 EditableText"Name8"
name6Symbol 386 EditableText"Name7"
name5Symbol 387 EditableText"Name6"
name4Symbol 388 EditableText"Name5"
name3Symbol 389 EditableText"Name4"
name2Symbol 390 EditableText"Name3"
name1Symbol 391 EditableText"Name2"
fpsdebugSymbol 469 EditableText"fps"
levelTxtSymbol 488 EditableText"level"




http://swfchan.com/6/27385/info.shtml
Created: 21/5 -2019 15:37:26 Last modified: 21/5 -2019 15:37:26 Server time: 15/05 -2024 23:32:00