diff --git a/games/2048/.gitignore b/games/2048/.gitignore new file mode 100644 index 0000000..0d31019 --- /dev/null +++ b/games/2048/.gitignore @@ -0,0 +1 @@ +.sass-cache/ diff --git a/games/2048/.jshintrc b/games/2048/.jshintrc new file mode 100644 index 0000000..87dbf9a --- /dev/null +++ b/games/2048/.jshintrc @@ -0,0 +1,19 @@ +{ + "esnext": true, + "indent": 2, + "maxlen": 80, + "freeze": true, + "camelcase": true, + "unused": true, + "eqnull": true, + "proto": true, + "supernew": true, + "noyield": true, + "evil": true, + "node": true, + "boss": true, + "expr": true, + "loopfunc": true, + "white": true, + "maxdepth": 4 +} diff --git a/games/2048/CONTRIBUTING.md b/games/2048/CONTRIBUTING.md new file mode 100644 index 0000000..8b269ae --- /dev/null +++ b/games/2048/CONTRIBUTING.md @@ -0,0 +1,33 @@ +# Contributing +Changes and improvements are more than welcome! Feel free to fork and open a pull request. + +Please follow the house rules to have a bigger chance of your contribution being merged. + +## House rules + +### How to make changes + - To make changes, create a new branch based on `master` (do not create one from `gh-pages` unless strictly necessary) and make them there, then create a Pull Request to master. + `gh-pages` is different from master in that it contains sharing features, analytics and other things that have no direct bearing with the game. `master` is the "pure" version of the game. + - If you want to modify the CSS, please edit the SCSS files present in `style/`: `main.scss` and others. Don't edit the `main.css`, because it's supposed to be generated. + In order to compile your SCSS modifications, you need to use the `sass` gem (install it by running `gem install sass` once Ruby is installed). + To run SASS, simply use the following command: + `sass --unix-newlines --watch style/main.scss` + SASS will automatically recompile your css when changed. + - `Rakefile` contains some tasks that help during development. Feel free to add useful tasks if needed. + - Please use 2-space indentation when editing the JavaScript. A `.jshintrc` file is present, which will help your code to follow the guidelines if you install and run `jshint`. + - Please test your modification thoroughly before submitting your Pull Request. + +### Changes that might not be accepted +We have to be conservative with the core game. This means that some modifications won't be merged, or will have to be evaluated carefully before being merged: + + - Undo/redo features + - Save/reload features + - Changes to how the tiles look or their contents + - Changes to the layout + - Changes to the grid size + +### Changes that are welcome + - Bug fixes + - Compatibility improvements + - "Under the hood" enhancements + - Small changes that don't have an impact on the core gameplay diff --git a/games/2048/LICENSE.txt b/games/2048/LICENSE.txt new file mode 100644 index 0000000..b0dbfa4 --- /dev/null +++ b/games/2048/LICENSE.txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Gabriele Cirulli + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/games/2048/README.md b/games/2048/README.md new file mode 100644 index 0000000..ccdd9e9 --- /dev/null +++ b/games/2048/README.md @@ -0,0 +1,35 @@ +# 2048 +A small clone of [2048](https://github.com/gabrielecirulli/2048). + +Made just for fun. [Play it here!](http://neon443.github.io/2048/) + +The official app can also be found on the [Play Store](https://play.google.com/store/apps/details?id=com.gabrielecirulli.app2048) and [App Store!](https://itunes.apple.com/us/app/2048-by-gabriele-cirulli/id868076805) + +### Contributions + +[Anna Harren](https://github.com/iirelu/) and [sigod](https://github.com/sigod) are maintainers for this repository. + +Other notable contributors: + + - [TimPetricola](https://github.com/TimPetricola) added best score storage + - [chrisprice](https://github.com/chrisprice) added custom code for swipe handling on mobile + - [marcingajda](https://github.com/marcingajda) made swipes work on Windows Phone + - [mgarciaisaia](https://github.com/mgarciaisaia) added support for Android 2.3 + +Many thanks to [rayhaanj](https://github.com/rayhaanj), [Mechazawa](https://github.com/Mechazawa), [grant](https://github.com/grant), [remram44](https://github.com/remram44) and [ghoullier](https://github.com/ghoullier) for the many other good contributions. + +### Screenshot + +

+ Screenshot +

+ +That screenshot is fake, by the way. I never reached 2048 :smile: + +## Contributing +Changes and improvements are more than welcome! Feel free to fork and open a pull request. Please make your changes in a specific branch and request to pull into `master`! If you can, please make sure the game fully works before sending the PR, as that will help speed up the process. + +You can find the same information in the [contributing guide.](https://github.com/gabrielecirulli/2048/blob/master/CONTRIBUTING.md) + +## License +2048 is licensed under the [MIT license.](https://github.com/gabrielecirulli/2048/blob/master/LICENSE.txt) diff --git a/games/2048/Rakefile b/games/2048/Rakefile new file mode 100644 index 0000000..3e9851e --- /dev/null +++ b/games/2048/Rakefile @@ -0,0 +1,11 @@ +require "date" + +namespace :appcache do + desc "update the date in the appcache file (in the gh-pages branch)" + task :update do + appcache = File.read("cache.appcache") + updated = "# Updated: #{DateTime.now}" + + File.write("cache.appcache", appcache.sub(/^# Updated:.*$/, updated)) + end +end diff --git a/games/2048/favicon.ico b/games/2048/favicon.ico new file mode 100644 index 0000000..22109e0 Binary files /dev/null and b/games/2048/favicon.ico differ diff --git a/games/2048/index.html b/games/2048/index.html new file mode 100644 index 0000000..4ba63b1 --- /dev/null +++ b/games/2048/index.html @@ -0,0 +1,102 @@ + + + + + 2048 + + + + + + + + + + + + + + + + + + + + +
+

neon443

+
Github
+
Contact
+
+
+
+
+

2048

+
+
0
+
0
+
+
+
+

Join the numbers and get to the 2048 tile! +

+ New Game +
+
+
+

+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

+ How to play: Use your arrow keys to move the tiles. When two tiles with the same number touch, they merge into one! +

+
+ + + + + + + + + + + + diff --git a/games/2048/js/animframe_polyfill.js b/games/2048/js/animframe_polyfill.js new file mode 100644 index 0000000..c524a99 --- /dev/null +++ b/games/2048/js/animframe_polyfill.js @@ -0,0 +1,28 @@ +(function () { + var lastTime = 0; + var vendors = ['webkit', 'moz']; + for (var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) { + window.requestAnimationFrame = window[vendors[x] + 'RequestAnimationFrame']; + window.cancelAnimationFrame = window[vendors[x] + 'CancelAnimationFrame'] || + window[vendors[x] + 'CancelRequestAnimationFrame']; + } + + if (!window.requestAnimationFrame) { + window.requestAnimationFrame = function (callback) { + var currTime = new Date().getTime(); + var timeToCall = Math.max(0, 16 - (currTime - lastTime)); + var id = window.setTimeout(function () { + callback(currTime + timeToCall); + }, + timeToCall); + lastTime = currTime + timeToCall; + return id; + }; + } + + if (!window.cancelAnimationFrame) { + window.cancelAnimationFrame = function (id) { + clearTimeout(id); + }; + } +}()); diff --git a/games/2048/js/application.js b/games/2048/js/application.js new file mode 100644 index 0000000..2c1108e --- /dev/null +++ b/games/2048/js/application.js @@ -0,0 +1,4 @@ +// Wait till the browser is ready to render the game (avoids glitches) +window.requestAnimationFrame(function () { + new GameManager(4, KeyboardInputManager, HTMLActuator, LocalStorageManager); +}); diff --git a/games/2048/js/bind_polyfill.js b/games/2048/js/bind_polyfill.js new file mode 100644 index 0000000..8d9c4a4 --- /dev/null +++ b/games/2048/js/bind_polyfill.js @@ -0,0 +1,9 @@ +Function.prototype.bind = Function.prototype.bind || function (target) { + var self = this; + return function (args) { + if (!(args instanceof Array)) { + args = [args]; + } + self.apply(target, args); + }; +}; diff --git a/games/2048/js/classlist_polyfill.js b/games/2048/js/classlist_polyfill.js new file mode 100644 index 0000000..1789ae7 --- /dev/null +++ b/games/2048/js/classlist_polyfill.js @@ -0,0 +1,71 @@ +(function () { + if (typeof window.Element === "undefined" || + "classList" in document.documentElement) { + return; + } + + var prototype = Array.prototype, + push = prototype.push, + splice = prototype.splice, + join = prototype.join; + + function DOMTokenList(el) { + this.el = el; + // The className needs to be trimmed and split on whitespace + // to retrieve a list of classes. + var classes = el.className.replace(/^\s+|\s+$/g, '').split(/\s+/); + for (var i = 0; i < classes.length; i++) { + push.call(this, classes[i]); + } + } + + DOMTokenList.prototype = { + add: function (token) { + if (this.contains(token)) return; + push.call(this, token); + this.el.className = this.toString(); + }, + contains: function (token) { + return this.el.className.indexOf(token) != -1; + }, + item: function (index) { + return this[index] || null; + }, + remove: function (token) { + if (!this.contains(token)) return; + for (var i = 0; i < this.length; i++) { + if (this[i] == token) break; + } + splice.call(this, i, 1); + this.el.className = this.toString(); + }, + toString: function () { + return join.call(this, ' '); + }, + toggle: function (token) { + if (!this.contains(token)) { + this.add(token); + } else { + this.remove(token); + } + + return this.contains(token); + } + }; + + window.DOMTokenList = DOMTokenList; + + function defineElementGetter(obj, prop, getter) { + if (Object.defineProperty) { + Object.defineProperty(obj, prop, { + get: getter + }); + } else { + obj.__defineGetter__(prop, getter); + } + } + + defineElementGetter(HTMLElement.prototype, 'classList', function () { + return new DOMTokenList(this); + }); +})(); diff --git a/games/2048/js/game_manager.js b/games/2048/js/game_manager.js new file mode 100644 index 0000000..1c13d15 --- /dev/null +++ b/games/2048/js/game_manager.js @@ -0,0 +1,272 @@ +function GameManager(size, InputManager, Actuator, StorageManager) { + this.size = size; // Size of the grid + this.inputManager = new InputManager; + this.storageManager = new StorageManager; + this.actuator = new Actuator; + + this.startTiles = 2; + + this.inputManager.on("move", this.move.bind(this)); + this.inputManager.on("restart", this.restart.bind(this)); + this.inputManager.on("keepPlaying", this.keepPlaying.bind(this)); + + this.setup(); +} + +// Restart the game +GameManager.prototype.restart = function () { + this.storageManager.clearGameState(); + this.actuator.continueGame(); // Clear the game won/lost message + this.setup(); +}; + +// Keep playing after winning (allows going over 2048) +GameManager.prototype.keepPlaying = function () { + this.keepPlaying = true; + this.actuator.continueGame(); // Clear the game won/lost message +}; + +// Return true if the game is lost, or has won and the user hasn't kept playing +GameManager.prototype.isGameTerminated = function () { + return this.over || (this.won && !this.keepPlaying); +}; + +// Set up the game +GameManager.prototype.setup = function () { + var previousState = this.storageManager.getGameState(); + + // Reload the game from a previous game if present + if (previousState) { + this.grid = new Grid(previousState.grid.size, + previousState.grid.cells); // Reload grid + this.score = previousState.score; + this.over = previousState.over; + this.won = previousState.won; + this.keepPlaying = previousState.keepPlaying; + } else { + this.grid = new Grid(this.size); + this.score = 0; + this.over = false; + this.won = false; + this.keepPlaying = false; + + // Add the initial tiles + this.addStartTiles(); + } + + // Update the actuator + this.actuate(); +}; + +// Set up the initial tiles to start the game with +GameManager.prototype.addStartTiles = function () { + for (var i = 0; i < this.startTiles; i++) { + this.addRandomTile(); + } +}; + +// Adds a tile in a random position +GameManager.prototype.addRandomTile = function () { + if (this.grid.cellsAvailable()) { + var value = Math.random() < 0.9 ? 2 : 4; + var tile = new Tile(this.grid.randomAvailableCell(), value); + + this.grid.insertTile(tile); + } +}; + +// Sends the updated grid to the actuator +GameManager.prototype.actuate = function () { + if (this.storageManager.getBestScore() < this.score) { + this.storageManager.setBestScore(this.score); + } + + // Clear the state when the game is over (game over only, not win) + if (this.over) { + this.storageManager.clearGameState(); + } else { + this.storageManager.setGameState(this.serialize()); + } + + this.actuator.actuate(this.grid, { + score: this.score, + over: this.over, + won: this.won, + bestScore: this.storageManager.getBestScore(), + terminated: this.isGameTerminated() + }); + +}; + +// Represent the current game as an object +GameManager.prototype.serialize = function () { + return { + grid: this.grid.serialize(), + score: this.score, + over: this.over, + won: this.won, + keepPlaying: this.keepPlaying + }; +}; + +// Save all tile positions and remove merger info +GameManager.prototype.prepareTiles = function () { + this.grid.eachCell(function (x, y, tile) { + if (tile) { + tile.mergedFrom = null; + tile.savePosition(); + } + }); +}; + +// Move a tile and its representation +GameManager.prototype.moveTile = function (tile, cell) { + this.grid.cells[tile.x][tile.y] = null; + this.grid.cells[cell.x][cell.y] = tile; + tile.updatePosition(cell); +}; + +// Move tiles on the grid in the specified direction +GameManager.prototype.move = function (direction) { + // 0: up, 1: right, 2: down, 3: left + var self = this; + + if (this.isGameTerminated()) return; // Don't do anything if the game's over + + var cell, tile; + + var vector = this.getVector(direction); + var traversals = this.buildTraversals(vector); + var moved = false; + + // Save the current tile positions and remove merger information + this.prepareTiles(); + + // Traverse the grid in the right direction and move tiles + traversals.x.forEach(function (x) { + traversals.y.forEach(function (y) { + cell = { x: x, y: y }; + tile = self.grid.cellContent(cell); + + if (tile) { + var positions = self.findFarthestPosition(cell, vector); + var next = self.grid.cellContent(positions.next); + + // Only one merger per row traversal? + if (next && next.value === tile.value && !next.mergedFrom) { + var merged = new Tile(positions.next, tile.value * 2); + merged.mergedFrom = [tile, next]; + + self.grid.insertTile(merged); + self.grid.removeTile(tile); + + // Converge the two tiles' positions + tile.updatePosition(positions.next); + + // Update the score + self.score += merged.value; + + // The mighty 2048 tile + if (merged.value === 2048) self.won = true; + } else { + self.moveTile(tile, positions.farthest); + } + + if (!self.positionsEqual(cell, tile)) { + moved = true; // The tile moved from its original cell! + } + } + }); + }); + + if (moved) { + this.addRandomTile(); + + if (!this.movesAvailable()) { + this.over = true; // Game over! + } + + this.actuate(); + } +}; + +// Get the vector representing the chosen direction +GameManager.prototype.getVector = function (direction) { + // Vectors representing tile movement + var map = { + 0: { x: 0, y: -1 }, // Up + 1: { x: 1, y: 0 }, // Right + 2: { x: 0, y: 1 }, // Down + 3: { x: -1, y: 0 } // Left + }; + + return map[direction]; +}; + +// Build a list of positions to traverse in the right order +GameManager.prototype.buildTraversals = function (vector) { + var traversals = { x: [], y: [] }; + + for (var pos = 0; pos < this.size; pos++) { + traversals.x.push(pos); + traversals.y.push(pos); + } + + // Always traverse from the farthest cell in the chosen direction + if (vector.x === 1) traversals.x = traversals.x.reverse(); + if (vector.y === 1) traversals.y = traversals.y.reverse(); + + return traversals; +}; + +GameManager.prototype.findFarthestPosition = function (cell, vector) { + var previous; + + // Progress towards the vector direction until an obstacle is found + do { + previous = cell; + cell = { x: previous.x + vector.x, y: previous.y + vector.y }; + } while (this.grid.withinBounds(cell) && + this.grid.cellAvailable(cell)); + + return { + farthest: previous, + next: cell // Used to check if a merge is required + }; +}; + +GameManager.prototype.movesAvailable = function () { + return this.grid.cellsAvailable() || this.tileMatchesAvailable(); +}; + +// Check for available matches between tiles (more expensive check) +GameManager.prototype.tileMatchesAvailable = function () { + var self = this; + + var tile; + + for (var x = 0; x < this.size; x++) { + for (var y = 0; y < this.size; y++) { + tile = this.grid.cellContent({ x: x, y: y }); + + if (tile) { + for (var direction = 0; direction < 4; direction++) { + var vector = self.getVector(direction); + var cell = { x: x + vector.x, y: y + vector.y }; + + var other = self.grid.cellContent(cell); + + if (other && other.value === tile.value) { + return true; // These two tiles can be merged + } + } + } + } + } + + return false; +}; + +GameManager.prototype.positionsEqual = function (first, second) { + return first.x === second.x && first.y === second.y; +}; diff --git a/games/2048/js/grid.js b/games/2048/js/grid.js new file mode 100644 index 0000000..29f0821 --- /dev/null +++ b/games/2048/js/grid.js @@ -0,0 +1,117 @@ +function Grid(size, previousState) { + this.size = size; + this.cells = previousState ? this.fromState(previousState) : this.empty(); +} + +// Build a grid of the specified size +Grid.prototype.empty = function () { + var cells = []; + + for (var x = 0; x < this.size; x++) { + var row = cells[x] = []; + + for (var y = 0; y < this.size; y++) { + row.push(null); + } + } + + return cells; +}; + +Grid.prototype.fromState = function (state) { + var cells = []; + + for (var x = 0; x < this.size; x++) { + var row = cells[x] = []; + + for (var y = 0; y < this.size; y++) { + var tile = state[x][y]; + row.push(tile ? new Tile(tile.position, tile.value) : null); + } + } + + return cells; +}; + +// Find the first available random position +Grid.prototype.randomAvailableCell = function () { + var cells = this.availableCells(); + + if (cells.length) { + return cells[Math.floor(Math.random() * cells.length)]; + } +}; + +Grid.prototype.availableCells = function () { + var cells = []; + + this.eachCell(function (x, y, tile) { + if (!tile) { + cells.push({ x: x, y: y }); + } + }); + + return cells; +}; + +// Call callback for every cell +Grid.prototype.eachCell = function (callback) { + for (var x = 0; x < this.size; x++) { + for (var y = 0; y < this.size; y++) { + callback(x, y, this.cells[x][y]); + } + } +}; + +// Check if there are any cells available +Grid.prototype.cellsAvailable = function () { + return !!this.availableCells().length; +}; + +// Check if the specified cell is taken +Grid.prototype.cellAvailable = function (cell) { + return !this.cellOccupied(cell); +}; + +Grid.prototype.cellOccupied = function (cell) { + return !!this.cellContent(cell); +}; + +Grid.prototype.cellContent = function (cell) { + if (this.withinBounds(cell)) { + return this.cells[cell.x][cell.y]; + } else { + return null; + } +}; + +// Inserts a tile at its position +Grid.prototype.insertTile = function (tile) { + this.cells[tile.x][tile.y] = tile; +}; + +Grid.prototype.removeTile = function (tile) { + this.cells[tile.x][tile.y] = null; +}; + +Grid.prototype.withinBounds = function (position) { + return position.x >= 0 && position.x < this.size && + position.y >= 0 && position.y < this.size; +}; + +Grid.prototype.serialize = function () { + var cellState = []; + + for (var x = 0; x < this.size; x++) { + var row = cellState[x] = []; + + for (var y = 0; y < this.size; y++) { + row.push(this.cells[x][y] ? this.cells[x][y].serialize() : null); + } + } + + return { + size: this.size, + cells: cellState + }; +}; diff --git a/games/2048/js/html_actuator.js b/games/2048/js/html_actuator.js new file mode 100644 index 0000000..6b31f2d --- /dev/null +++ b/games/2048/js/html_actuator.js @@ -0,0 +1,139 @@ +function HTMLActuator() { + this.tileContainer = document.querySelector(".tile-container"); + this.scoreContainer = document.querySelector(".score-container"); + this.bestContainer = document.querySelector(".best-container"); + this.messageContainer = document.querySelector(".game-message"); + + this.score = 0; +} + +HTMLActuator.prototype.actuate = function (grid, metadata) { + var self = this; + + window.requestAnimationFrame(function () { + self.clearContainer(self.tileContainer); + + grid.cells.forEach(function (column) { + column.forEach(function (cell) { + if (cell) { + self.addTile(cell); + } + }); + }); + + self.updateScore(metadata.score); + self.updateBestScore(metadata.bestScore); + + if (metadata.terminated) { + if (metadata.over) { + self.message(false); // You lose + } else if (metadata.won) { + self.message(true); // You win! + } + } + + }); +}; + +// Continues the game (both restart and keep playing) +HTMLActuator.prototype.continueGame = function () { + this.clearMessage(); +}; + +HTMLActuator.prototype.clearContainer = function (container) { + while (container.firstChild) { + container.removeChild(container.firstChild); + } +}; + +HTMLActuator.prototype.addTile = function (tile) { + var self = this; + + var wrapper = document.createElement("div"); + var inner = document.createElement("div"); + var position = tile.previousPosition || { x: tile.x, y: tile.y }; + var positionClass = this.positionClass(position); + + // We can't use classlist because it somehow glitches when replacing classes + var classes = ["tile", "tile-" + tile.value, positionClass]; + + if (tile.value > 2048) classes.push("tile-super"); + + this.applyClasses(wrapper, classes); + + inner.classList.add("tile-inner"); + inner.textContent = tile.value; + + if (tile.previousPosition) { + // Make sure that the tile gets rendered in the previous position first + window.requestAnimationFrame(function () { + classes[2] = self.positionClass({ x: tile.x, y: tile.y }); + self.applyClasses(wrapper, classes); // Update the position + }); + } else if (tile.mergedFrom) { + classes.push("tile-merged"); + this.applyClasses(wrapper, classes); + + // Render the tiles that merged + tile.mergedFrom.forEach(function (merged) { + self.addTile(merged); + }); + } else { + classes.push("tile-new"); + this.applyClasses(wrapper, classes); + } + + // Add the inner part of the tile to the wrapper + wrapper.appendChild(inner); + + // Put the tile on the board + this.tileContainer.appendChild(wrapper); +}; + +HTMLActuator.prototype.applyClasses = function (element, classes) { + element.setAttribute("class", classes.join(" ")); +}; + +HTMLActuator.prototype.normalizePosition = function (position) { + return { x: position.x + 1, y: position.y + 1 }; +}; + +HTMLActuator.prototype.positionClass = function (position) { + position = this.normalizePosition(position); + return "tile-position-" + position.x + "-" + position.y; +}; + +HTMLActuator.prototype.updateScore = function (score) { + this.clearContainer(this.scoreContainer); + + var difference = score - this.score; + this.score = score; + + this.scoreContainer.textContent = this.score; + + if (difference > 0) { + var addition = document.createElement("div"); + addition.classList.add("score-addition"); + addition.textContent = "+" + difference; + + this.scoreContainer.appendChild(addition); + } +}; + +HTMLActuator.prototype.updateBestScore = function (bestScore) { + this.bestContainer.textContent = bestScore; +}; + +HTMLActuator.prototype.message = function (won) { + var type = won ? "game-won" : "game-over"; + var message = won ? "You win!" : "Game over!"; + + this.messageContainer.classList.add(type); + this.messageContainer.getElementsByTagName("p")[0].textContent = message; +}; + +HTMLActuator.prototype.clearMessage = function () { + // IE only takes one value to remove at a time. + this.messageContainer.classList.remove("game-won"); + this.messageContainer.classList.remove("game-over"); +}; diff --git a/games/2048/js/keyboard_input_manager.js b/games/2048/js/keyboard_input_manager.js new file mode 100644 index 0000000..ca01b3c --- /dev/null +++ b/games/2048/js/keyboard_input_manager.js @@ -0,0 +1,144 @@ +function KeyboardInputManager() { + this.events = {}; + + if (window.navigator.msPointerEnabled) { + //Internet Explorer 10 style + this.eventTouchstart = "MSPointerDown"; + this.eventTouchmove = "MSPointerMove"; + this.eventTouchend = "MSPointerUp"; + } else { + this.eventTouchstart = "touchstart"; + this.eventTouchmove = "touchmove"; + this.eventTouchend = "touchend"; + } + + this.listen(); +} + +KeyboardInputManager.prototype.on = function (event, callback) { + if (!this.events[event]) { + this.events[event] = []; + } + this.events[event].push(callback); +}; + +KeyboardInputManager.prototype.emit = function (event, data) { + var callbacks = this.events[event]; + if (callbacks) { + callbacks.forEach(function (callback) { + callback(data); + }); + } +}; + +KeyboardInputManager.prototype.listen = function () { + var self = this; + + var map = { + 38: 0, // Up + 39: 1, // Right + 40: 2, // Down + 37: 3, // Left + 75: 0, // Vim up + 76: 1, // Vim right + 74: 2, // Vim down + 72: 3, // Vim left + 87: 0, // W + 68: 1, // D + 83: 2, // S + 65: 3 // A + }; + + // Respond to direction keys + document.addEventListener("keydown", function (event) { + var modifiers = event.altKey || event.ctrlKey || event.metaKey || + event.shiftKey; + var mapped = map[event.which]; + + if (!modifiers) { + if (mapped !== undefined) { + event.preventDefault(); + self.emit("move", mapped); + } + } + + // R key restarts the game + if (!modifiers && event.which === 82) { + self.restart.call(self, event); + } + }); + + // Respond to button presses + this.bindButtonPress(".retry-button", this.restart); + this.bindButtonPress(".restart-button", this.restart); + this.bindButtonPress(".keep-playing-button", this.keepPlaying); + + // Respond to swipe events + var touchStartClientX, touchStartClientY; + var gameContainer = document.getElementsByClassName("game-container")[0]; + + gameContainer.addEventListener(this.eventTouchstart, function (event) { + if ((!window.navigator.msPointerEnabled && event.touches.length > 1) || + event.targetTouches.length > 1) { + return; // Ignore if touching with more than 1 finger + } + + if (window.navigator.msPointerEnabled) { + touchStartClientX = event.pageX; + touchStartClientY = event.pageY; + } else { + touchStartClientX = event.touches[0].clientX; + touchStartClientY = event.touches[0].clientY; + } + + event.preventDefault(); + }); + + gameContainer.addEventListener(this.eventTouchmove, function (event) { + event.preventDefault(); + }); + + gameContainer.addEventListener(this.eventTouchend, function (event) { + if ((!window.navigator.msPointerEnabled && event.touches.length > 0) || + event.targetTouches.length > 0) { + return; // Ignore if still touching with one or more fingers + } + + var touchEndClientX, touchEndClientY; + + if (window.navigator.msPointerEnabled) { + touchEndClientX = event.pageX; + touchEndClientY = event.pageY; + } else { + touchEndClientX = event.changedTouches[0].clientX; + touchEndClientY = event.changedTouches[0].clientY; + } + + var dx = touchEndClientX - touchStartClientX; + var absDx = Math.abs(dx); + + var dy = touchEndClientY - touchStartClientY; + var absDy = Math.abs(dy); + + if (Math.max(absDx, absDy) > 10) { + // (right : left) : (down : up) + self.emit("move", absDx > absDy ? (dx > 0 ? 1 : 3) : (dy > 0 ? 2 : 0)); + } + }); +}; + +KeyboardInputManager.prototype.restart = function (event) { + event.preventDefault(); + this.emit("restart"); +}; + +KeyboardInputManager.prototype.keepPlaying = function (event) { + event.preventDefault(); + this.emit("keepPlaying"); +}; + +KeyboardInputManager.prototype.bindButtonPress = function (selector, fn) { + var button = document.querySelector(selector); + button.addEventListener("click", fn.bind(this)); + button.addEventListener(this.eventTouchend, fn.bind(this)); +}; diff --git a/games/2048/js/local_storage_manager.js b/games/2048/js/local_storage_manager.js new file mode 100644 index 0000000..2ca9cc3 --- /dev/null +++ b/games/2048/js/local_storage_manager.js @@ -0,0 +1,63 @@ +window.fakeStorage = { + _data: {}, + + setItem: function (id, val) { + return this._data[id] = String(val); + }, + + getItem: function (id) { + return this._data.hasOwnProperty(id) ? this._data[id] : undefined; + }, + + removeItem: function (id) { + return delete this._data[id]; + }, + + clear: function () { + return this._data = {}; + } +}; + +function LocalStorageManager() { + this.bestScoreKey = "bestScore"; + this.gameStateKey = "gameState"; + + var supported = this.localStorageSupported(); + this.storage = supported ? window.localStorage : window.fakeStorage; +} + +LocalStorageManager.prototype.localStorageSupported = function () { + var testKey = "test"; + + try { + var storage = window.localStorage; + storage.setItem(testKey, "1"); + storage.removeItem(testKey); + return true; + } catch (error) { + return false; + } +}; + +// Best score getters/setters +LocalStorageManager.prototype.getBestScore = function () { + return this.storage.getItem(this.bestScoreKey) || 0; +}; + +LocalStorageManager.prototype.setBestScore = function (score) { + this.storage.setItem(this.bestScoreKey, score); +}; + +// Game state getters/setters and clearing +LocalStorageManager.prototype.getGameState = function () { + var stateJSON = this.storage.getItem(this.gameStateKey); + return stateJSON ? JSON.parse(stateJSON) : null; +}; + +LocalStorageManager.prototype.setGameState = function (gameState) { + this.storage.setItem(this.gameStateKey, JSON.stringify(gameState)); +}; + +LocalStorageManager.prototype.clearGameState = function () { + this.storage.removeItem(this.gameStateKey); +}; diff --git a/games/2048/js/tile.js b/games/2048/js/tile.js new file mode 100644 index 0000000..92a670a --- /dev/null +++ b/games/2048/js/tile.js @@ -0,0 +1,27 @@ +function Tile(position, value) { + this.x = position.x; + this.y = position.y; + this.value = value || 2; + + this.previousPosition = null; + this.mergedFrom = null; // Tracks tiles that merged together +} + +Tile.prototype.savePosition = function () { + this.previousPosition = { x: this.x, y: this.y }; +}; + +Tile.prototype.updatePosition = function (position) { + this.x = position.x; + this.y = position.y; +}; + +Tile.prototype.serialize = function () { + return { + position: { + x: this.x, + y: this.y + }, + value: this.value + }; +}; diff --git a/games/2048/meta/apple-touch-icon.png b/games/2048/meta/apple-touch-icon.png new file mode 100644 index 0000000..3fd20f6 Binary files /dev/null and b/games/2048/meta/apple-touch-icon.png differ diff --git a/games/2048/meta/apple-touch-startup-image-640x1096.png b/games/2048/meta/apple-touch-startup-image-640x1096.png new file mode 100644 index 0000000..5a68ba0 Binary files /dev/null and b/games/2048/meta/apple-touch-startup-image-640x1096.png differ diff --git a/games/2048/meta/apple-touch-startup-image-640x920.png b/games/2048/meta/apple-touch-startup-image-640x920.png new file mode 100644 index 0000000..17bc9d8 Binary files /dev/null and b/games/2048/meta/apple-touch-startup-image-640x920.png differ diff --git a/games/2048/pwa.html b/games/2048/pwa.html new file mode 100644 index 0000000..049e44a --- /dev/null +++ b/games/2048/pwa.html @@ -0,0 +1,95 @@ + + + + + 2048 + + + + + + + + + + + + + + + + + + + +
+
+

2048

+
+
0
+
0
+
+
+
+

Join the numbers and get to the 2048 tile! +

+ New Game +
+
+
+

+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

+ How to play: Use your arrow keys to move the tiles. When two tiles with the same number touch, they merge into one! +

+
+ + + + + + + + + + + + diff --git a/games/2048/style/fonts/ClearSans-Bold-webfont.eot b/games/2048/style/fonts/ClearSans-Bold-webfont.eot new file mode 100755 index 0000000..3678ef2 Binary files /dev/null and b/games/2048/style/fonts/ClearSans-Bold-webfont.eot differ diff --git a/games/2048/style/fonts/ClearSans-Bold-webfont.svg b/games/2048/style/fonts/ClearSans-Bold-webfont.svg new file mode 100755 index 0000000..aa985ae --- /dev/null +++ b/games/2048/style/fonts/ClearSans-Bold-webfont.svg @@ -0,0 +1,640 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/games/2048/style/fonts/ClearSans-Bold-webfont.woff b/games/2048/style/fonts/ClearSans-Bold-webfont.woff new file mode 100755 index 0000000..184a945 Binary files /dev/null and b/games/2048/style/fonts/ClearSans-Bold-webfont.woff differ diff --git a/games/2048/style/fonts/ClearSans-Light-webfont.eot b/games/2048/style/fonts/ClearSans-Light-webfont.eot new file mode 100755 index 0000000..0dc609d Binary files /dev/null and b/games/2048/style/fonts/ClearSans-Light-webfont.eot differ diff --git a/games/2048/style/fonts/ClearSans-Light-webfont.svg b/games/2048/style/fonts/ClearSans-Light-webfont.svg new file mode 100755 index 0000000..1d5d2ec --- /dev/null +++ b/games/2048/style/fonts/ClearSans-Light-webfont.svg @@ -0,0 +1,670 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/games/2048/style/fonts/ClearSans-Light-webfont.woff b/games/2048/style/fonts/ClearSans-Light-webfont.woff new file mode 100755 index 0000000..44555e0 Binary files /dev/null and b/games/2048/style/fonts/ClearSans-Light-webfont.woff differ diff --git a/games/2048/style/fonts/ClearSans-Regular-webfont.eot b/games/2048/style/fonts/ClearSans-Regular-webfont.eot new file mode 100755 index 0000000..b020e05 Binary files /dev/null and b/games/2048/style/fonts/ClearSans-Regular-webfont.eot differ diff --git a/games/2048/style/fonts/ClearSans-Regular-webfont.svg b/games/2048/style/fonts/ClearSans-Regular-webfont.svg new file mode 100755 index 0000000..1e2cffd --- /dev/null +++ b/games/2048/style/fonts/ClearSans-Regular-webfont.svg @@ -0,0 +1,669 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/games/2048/style/fonts/ClearSans-Regular-webfont.woff b/games/2048/style/fonts/ClearSans-Regular-webfont.woff new file mode 100755 index 0000000..9d58858 Binary files /dev/null and b/games/2048/style/fonts/ClearSans-Regular-webfont.woff differ diff --git a/games/2048/style/fonts/clear-sans.css b/games/2048/style/fonts/clear-sans.css new file mode 100755 index 0000000..de2811d --- /dev/null +++ b/games/2048/style/fonts/clear-sans.css @@ -0,0 +1,30 @@ +@font-face { + font-family: "Clear Sans"; + src: url("ClearSans-Light-webfont.eot"); + src: url("ClearSans-Light-webfont.eot?#iefix") format("embedded-opentype"), + url("ClearSans-Light-webfont.svg#clear_sans_lightregular") format("svg"), + url("ClearSans-Light-webfont.woff") format("woff"); + font-weight: 200; + font-style: normal; +} + +@font-face { + font-family: "Clear Sans"; + src: url("ClearSans-Regular-webfont.eot"); + src: url("ClearSans-Regular-webfont.eot?#iefix") format("embedded-opentype"), + url("ClearSans-Regular-webfont.svg#clear_sansregular") format("svg"), + url("ClearSans-Regular-webfont.woff") format("woff"); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: "Clear Sans"; + src: url("ClearSans-Bold-webfont.eot"); + src: url("ClearSans-Bold-webfont.eot?#iefix") format("embedded-opentype"), + url("ClearSans-Bold-webfont.svg#clear_sansbold") format("svg"), + url("ClearSans-Bold-webfont.woff") format("woff"); + font-weight: 700; + font-style: normal; +} + diff --git a/games/2048/style/helpers.scss b/games/2048/style/helpers.scss new file mode 100644 index 0000000..72693ee --- /dev/null +++ b/games/2048/style/helpers.scss @@ -0,0 +1,82 @@ +// Exponent +// From: https://github.com/Team-Sass/Sassy-math/blob/master/sass/math.scss#L36 + +@function exponent($base, $exponent) { + // reset value + $value: $base; + // positive intergers get multiplied + @if $exponent > 1 { + @for $i from 2 through $exponent { + $value: $value * $base; } } + // negitive intergers get divided. A number divided by itself is 1 + @if $exponent < 1 { + @for $i from 0 through -$exponent { + $value: $value / $base; } } + // return the last value written + @return $value; +} + +@function pow($base, $exponent) { + @return exponent($base, $exponent); +} + +// Transition mixins +@mixin transition($args...) { + -webkit-transition: $args; + -moz-transition: $args; + transition: $args; +} + +@mixin transition-property($args...) { + -webkit-transition-property: $args; + -moz-transition-property: $args; + transition-property: $args; +} + +@mixin animation($args...) { + -webkit-animation: $args; + -moz-animation: $args; + animation: $args; +} + +@mixin animation-fill-mode($args...) { + -webkit-animation-fill-mode: $args; + -moz-animation-fill-mode: $args; + animation-fill-mode: $args; +} + +@mixin transform($args...) { + -webkit-transform: $args; + -moz-transform: $args; + -ms-transform: $args; + transform: $args; +} + +// Keyframe animations +@mixin keyframes($animation-name) { + @-webkit-keyframes $animation-name { + @content; + } + @-moz-keyframes $animation-name { + @content; + } + @keyframes $animation-name { + @content; + } +} + +// Media queries +@mixin smaller($width) { + @media screen and (max-width: $width) { + @content; + } +} + +// Clearfix +@mixin clearfix { + &:after { + content: ""; + display: block; + clear: both; + } +} diff --git a/games/2048/style/main.css b/games/2048/style/main.css new file mode 100644 index 0000000..02ce669 --- /dev/null +++ b/games/2048/style/main.css @@ -0,0 +1,971 @@ +@import url(fonts/clear-sans.css); + +p.game-intro, +p.game-explanation { + font-size: 18px; +} +p.game-intro { + padding: 0px; +} +div.score-container, +div.score-container::after { + color: #222; +} +div.best-container, +div.best-container::after { + color: #222; +} +div.above-game { + padding: 20px 0px; +} +a.restart-button { + font-size: + margin: 1px 0px; +} + +@media (prefers-color-scheme: dark) { + html, + body { + background-color: #222; + color: #ddd; + } + div.score-container, + div.score-container::after { + color: #222; + } + div.best-container, + div.best-container::after { + color: #222; + } + div.tile-inner { + color: #222; + } + .game-over p, + .game-won p { + color: #222; + } + .score-addition div { + color: #ddd; + } +} + + +html, +body { + margin: 0px; + padding: 0px; + background: #faf8ef; + color: #776e65; + font-family: "Clear Sans", "Helvetica Neue", Arial, sans-serif; + font-size: 18px; +} + +.heading:after { + content: ""; + display: block; + clear: both; +} + +h1.title { + font-size: 41px; + font-weight: bold; + padding: 0; + margin: 0; + display: block; + float: left; +} + +@-webkit-keyframes move-up { + 0% { + top: 25px; + opacity: 1; + } + + 100% { + top: -50px; + opacity: 0; + } +} +@-moz-keyframes move-up { + 0% { + top: 25px; + opacity: 1; + } + + 100% { + top: -50px; + opacity: 0; + } +} +@keyframes move-up { + 0% { + top: 25px; + opacity: 1; + } + + 100% { + top: -50px; + opacity: 0; + } +} +.scores-container { + float: right; + text-align: right; +} + +.score-container, +.best-container { + position: relative; + display: inline-block; + background: #bbada0; + padding: 15px 25px; + font-size: 25px; + height: 25px; + line-height: 47px; + font-weight: bold; + border-radius: 3px; + color: #222; + text-align: center; +} +.score-container:after, +.best-container:after { + position: absolute; + width: 100%; + top: 10px; + left: 0; + text-transform: uppercase; + font-size: 13px; + line-height: 13px; + text-align: center; + color: #eee4da; +} +.score-container .score-addition, +.best-container .score-addition { + position: absolute; + right: 30px; + font-size: 25px; + line-height: 25px; + font-weight: bold; + color: #222; + z-index: 4; + -webkit-animation: move-up 600ms ease-in; + -moz-animation: move-up 600ms ease-in; + animation: move-up 600ms ease-in; + -webkit-animation-fill-mode: both; + -moz-animation-fill-mode: both; + animation-fill-mode: both; +} + +.score-container:after { + content: "Score"; +} + +.best-container:after { + content: "Best"; +} + +p { + margin: 0; + line-height: 1.5; +} + +a { + color: #776e65; + text-decoration: underline; + cursor: pointer; +} + +strong.important { + text-transform: uppercase; +} + +.container { + width: 500px; + margin: 0 auto; +} + +@-webkit-keyframes fade-in { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} +@-moz-keyframes fade-in { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} +@keyframes fade-in { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} +.game-container { + position: relative; + padding: 15px; + cursor: default; + -webkit-touch-callout: none; + -ms-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -ms-touch-action: none; + touch-action: none; + background: #bbada0; + border-radius: 6px; + width: 500px; + height: 500px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +.game-container .game-message { + display: none; + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: rgba(238, 228, 218, 0.5); + z-index: 100; + text-align: center; + -webkit-animation: fade-in 800ms ease 1200ms; + -moz-animation: fade-in 800ms ease 1200ms; + animation: fade-in 800ms ease 1200ms; + -webkit-animation-fill-mode: both; + -moz-animation-fill-mode: both; + animation-fill-mode: both; +} +.game-container .game-message p { + font-size: 60px; + font-weight: bold; + height: 60px; + line-height: 60px; + margin-top: 222px; +} +.game-container .game-message .lower { + display: block; + margin-top: 59px; +} +.game-container .game-message a { + display: inline-block; + background: #8f7a66; + border-radius: 3px; + padding: 0 20px; + text-decoration: none; + color: #f9f6f2; + height: 40px; + line-height: 42px; + margin-left: 9px; +} +.game-container .game-message a.keep-playing-button { + display: none; +} +.game-container .game-message.game-won { + background: rgba(237, 194, 46, 0.5); + color: #f9f6f2; +} +.game-container .game-message.game-won a.keep-playing-button { + display: inline-block; +} +.game-container .game-message.game-won, +.game-container .game-message.game-over { + display: block; +} + +.grid-container { + position: absolute; + z-index: 1; +} + +.grid-row { + margin-bottom: 15px; +} +.grid-row:last-child { + margin-bottom: 0; +} +.grid-row:after { + content: ""; + display: block; + clear: both; +} + +.grid-cell { + width: 106.25px; + height: 106.25px; + margin-right: 15px; + float: left; + border-radius: 3px; + background: rgba(238, 228, 218, 0.35); +} +.grid-cell:last-child { + margin-right: 0; +} + +.tile-container { + position: absolute; + z-index: 2; +} + +.tile, +.tile .tile-inner { + width: 107px; + height: 107px; + line-height: 107px; +} +.tile.tile-position-1-1 { + -webkit-transform: translate(0px, 0px); + -moz-transform: translate(0px, 0px); + -ms-transform: translate(0px, 0px); + transform: translate(0px, 0px); +} +.tile.tile-position-1-2 { + -webkit-transform: translate(0px, 121px); + -moz-transform: translate(0px, 121px); + -ms-transform: translate(0px, 121px); + transform: translate(0px, 121px); +} +.tile.tile-position-1-3 { + -webkit-transform: translate(0px, 242px); + -moz-transform: translate(0px, 242px); + -ms-transform: translate(0px, 242px); + transform: translate(0px, 242px); +} +.tile.tile-position-1-4 { + -webkit-transform: translate(0px, 363px); + -moz-transform: translate(0px, 363px); + -ms-transform: translate(0px, 363px); + transform: translate(0px, 363px); +} +.tile.tile-position-2-1 { + -webkit-transform: translate(121px, 0px); + -moz-transform: translate(121px, 0px); + -ms-transform: translate(121px, 0px); + transform: translate(121px, 0px); +} +.tile.tile-position-2-2 { + -webkit-transform: translate(121px, 121px); + -moz-transform: translate(121px, 121px); + -ms-transform: translate(121px, 121px); + transform: translate(121px, 121px); +} +.tile.tile-position-2-3 { + -webkit-transform: translate(121px, 242px); + -moz-transform: translate(121px, 242px); + -ms-transform: translate(121px, 242px); + transform: translate(121px, 242px); +} +.tile.tile-position-2-4 { + -webkit-transform: translate(121px, 363px); + -moz-transform: translate(121px, 363px); + -ms-transform: translate(121px, 363px); + transform: translate(121px, 363px); +} +.tile.tile-position-3-1 { + -webkit-transform: translate(242px, 0px); + -moz-transform: translate(242px, 0px); + -ms-transform: translate(242px, 0px); + transform: translate(242px, 0px); +} +.tile.tile-position-3-2 { + -webkit-transform: translate(242px, 121px); + -moz-transform: translate(242px, 121px); + -ms-transform: translate(242px, 121px); + transform: translate(242px, 121px); +} +.tile.tile-position-3-3 { + -webkit-transform: translate(242px, 242px); + -moz-transform: translate(242px, 242px); + -ms-transform: translate(242px, 242px); + transform: translate(242px, 242px); +} +.tile.tile-position-3-4 { + -webkit-transform: translate(242px, 363px); + -moz-transform: translate(242px, 363px); + -ms-transform: translate(242px, 363px); + transform: translate(242px, 363px); +} +.tile.tile-position-4-1 { + -webkit-transform: translate(363px, 0px); + -moz-transform: translate(363px, 0px); + -ms-transform: translate(363px, 0px); + transform: translate(363px, 0px); +} +.tile.tile-position-4-2 { + -webkit-transform: translate(363px, 121px); + -moz-transform: translate(363px, 121px); + -ms-transform: translate(363px, 121px); + transform: translate(363px, 121px); +} +.tile.tile-position-4-3 { + -webkit-transform: translate(363px, 242px); + -moz-transform: translate(363px, 242px); + -ms-transform: translate(363px, 242px); + transform: translate(363px, 242px); +} +.tile.tile-position-4-4 { + -webkit-transform: translate(363px, 363px); + -moz-transform: translate(363px, 363px); + -ms-transform: translate(363px, 363px); + transform: translate(363px, 363px); +} + +.tile { + position: absolute; + -webkit-transition: 100ms ease-in-out; + -moz-transition: 100ms ease-in-out; + transition: 100ms ease-in-out; + -webkit-transition-property: -webkit-transform; + -moz-transition-property: -moz-transform; + transition-property: transform; +} +.tile .tile-inner { + border-radius: 3px; + background: #eee4da; + text-align: center; + font-weight: bold; + z-index: 10; + font-size: 55px; +} +.tile.tile-2 .tile-inner { + background: #eee4da; + box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0), + inset 0 0 0 1px rgba(255, 255, 255, 0); +} +.tile.tile-4 .tile-inner { + background: #ede0c8; + box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0), + inset 0 0 0 1px rgba(255, 255, 255, 0); +} +.tile.tile-8 .tile-inner { + color: #f9f6f2; + background: #f2b179; +} +.tile.tile-16 .tile-inner { + color: #f9f6f2; + background: #f59563; +} +.tile.tile-32 .tile-inner { + color: #f9f6f2; + background: #f67c5f; +} +.tile.tile-64 .tile-inner { + color: #f9f6f2; + background: #f65e3b; +} +.tile.tile-128 .tile-inner { + color: #f9f6f2; + background: #edcf72; + box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0.2381), + inset 0 0 0 1px rgba(255, 255, 255, 0.14286); + font-size: 45px; +} +@media screen and (max-width: 520px) { + .tile.tile-128 .tile-inner { + font-size: 25px; + } +} +.tile.tile-256 .tile-inner { + color: #f9f6f2; + background: #edcc61; + box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0.31746), + inset 0 0 0 1px rgba(255, 255, 255, 0.19048); + font-size: 45px; +} +@media screen and (max-width: 520px) { + .tile.tile-256 .tile-inner { + font-size: 25px; + } +} +.tile.tile-512 .tile-inner { + color: #f9f6f2; + background: #edc850; + box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0.39683), + inset 0 0 0 1px rgba(255, 255, 255, 0.2381); + font-size: 45px; +} +@media screen and (max-width: 520px) { + .tile.tile-512 .tile-inner { + font-size: 25px; + } +} +.tile.tile-1024 .tile-inner { + color: #f9f6f2; + background: #edc53f; + box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0.47619), + inset 0 0 0 1px rgba(255, 255, 255, 0.28571); + font-size: 35px; +} +@media screen and (max-width: 520px) { + .tile.tile-1024 .tile-inner { + font-size: 15px; + } +} +.tile.tile-2048 .tile-inner { + color: #f9f6f2; + background: #edc22e; + box-shadow: 0 0 30px 10px rgba(243, 215, 116, 0.55556), + inset 0 0 0 1px rgba(255, 255, 255, 0.33333); + font-size: 35px; +} +@media screen and (max-width: 520px) { + .tile.tile-2048 .tile-inner { + font-size: 15px; + } +} +.tile.tile-super .tile-inner { + color: #f9f6f2; + background: #3c3a32; + font-size: 30px; +} +@media screen and (max-width: 520px) { + .tile.tile-super .tile-inner { + font-size: 10px; + } +} + +@-webkit-keyframes appear { + 0% { + opacity: 0; + -webkit-transform: scale(0); + -moz-transform: scale(0); + -ms-transform: scale(0); + transform: scale(0); + } + + 100% { + opacity: 1; + -webkit-transform: scale(1); + -moz-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + } +} +@-moz-keyframes appear { + 0% { + opacity: 0; + -webkit-transform: scale(0); + -moz-transform: scale(0); + -ms-transform: scale(0); + transform: scale(0); + } + + 100% { + opacity: 1; + -webkit-transform: scale(1); + -moz-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + } +} +@keyframes appear { + 0% { + opacity: 0; + -webkit-transform: scale(0); + -moz-transform: scale(0); + -ms-transform: scale(0); + transform: scale(0); + } + + 100% { + opacity: 1; + -webkit-transform: scale(1); + -moz-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + } +} +.tile-new .tile-inner { + -webkit-animation: appear 200ms ease 100ms; + -moz-animation: appear 200ms ease 100ms; + animation: appear 200ms ease 100ms; + -webkit-animation-fill-mode: backwards; + -moz-animation-fill-mode: backwards; + animation-fill-mode: backwards; +} + +@-webkit-keyframes pop { + 0% { + -webkit-transform: scale(0); + -moz-transform: scale(0); + -ms-transform: scale(0); + transform: scale(0); + } + + 50% { + -webkit-transform: scale(1.2); + -moz-transform: scale(1.2); + -ms-transform: scale(1.2); + transform: scale(1.2); + } + + 100% { + -webkit-transform: scale(1); + -moz-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + } +} +@-moz-keyframes pop { + 0% { + -webkit-transform: scale(0); + -moz-transform: scale(0); + -ms-transform: scale(0); + transform: scale(0); + } + + 50% { + -webkit-transform: scale(1.2); + -moz-transform: scale(1.2); + -ms-transform: scale(1.2); + transform: scale(1.2); + } + + 100% { + -webkit-transform: scale(1); + -moz-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + } +} +@keyframes pop { + 0% { + -webkit-transform: scale(0); + -moz-transform: scale(0); + -ms-transform: scale(0); + transform: scale(0); + } + + 50% { + -webkit-transform: scale(1.2); + -moz-transform: scale(1.2); + -ms-transform: scale(1.2); + transform: scale(1.2); + } + + 100% { + -webkit-transform: scale(1); + -moz-transform: scale(1); + -ms-transform: scale(1); + transform: scale(1); + } +} +.tile-merged .tile-inner { + z-index: 20; + -webkit-animation: pop 200ms ease 100ms; + -moz-animation: pop 200ms ease 100ms; + animation: pop 200ms ease 100ms; + -webkit-animation-fill-mode: backwards; + -moz-animation-fill-mode: backwards; + animation-fill-mode: backwards; +} + +.above-game:after { + content: ""; + display: block; + clear: both; +} + +.game-intro { + float: left; + line-height: 40px; +} + +.restart-button { + display: inline-block; + background: #8f7a66; + border-radius: 3px; + padding: 0 10px; + text-decoration: none; + color: #f9f6f2; + height: 40px; + font-size: 18px; + line-height: 40px; + display: block; + text-align: center; + float: right; +} + +.game-explanation { + padding: 20px 0px; +} + +@media screen and (max-width: 520px) { + html, + body { + font-size: 15px; + } + + p { + font-size: 15px; + } + + p.game-intro { + font-size: 15px; + line-height: 20px; + } + p.game-explanation { + font-size: 15px; + line-height: 1.5; + } + + .container { + width: 280px; + margin: 0 auto; + } + + .score-container, + .best-container { + margin-top: 0; + padding: 15px 10px; + min-width: 40px; + } + + .game-intro { + width: 55%; + display: block; + box-sizing: border-box; + } + + .restart-button { + width: 42%; + padding: 0; + display: block; + box-sizing: border-box; + } + + .game-container { + position: relative; + padding: 10px; + cursor: default; + -webkit-touch-callout: none; + -ms-touch-callout: none; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + -ms-touch-action: none; + touch-action: none; + background: #bbada0; + border-radius: 6px; + width: 280px; + height: 280px; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + } + .game-container .game-message { + display: none; + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: rgba(238, 228, 218, 0.5); + z-index: 100; + text-align: center; + -webkit-animation: fade-in 800ms ease 1200ms; + -moz-animation: fade-in 800ms ease 1200ms; + animation: fade-in 800ms ease 1200ms; + -webkit-animation-fill-mode: both; + -moz-animation-fill-mode: both; + animation-fill-mode: both; + } + .game-container .game-message p { + font-size: 60px; + font-weight: bold; + height: 60px; + line-height: 60px; + margin-top: 222px; + } + .game-container .game-message .lower { + display: block; + margin-top: 59px; + } + .game-container .game-message a { + display: inline-block; + background: #8f7a66; + border-radius: 3px; + padding: 0 20px; + text-decoration: none; + color: #f9f6f2; + height: 40px; + line-height: 42px; + margin-left: 9px; + } + .game-container .game-message a.keep-playing-button { + display: none; + } + .game-container .game-message.game-won { + background: rgba(237, 194, 46, 0.5); + color: #f9f6f2; + } + .game-container .game-message.game-won a.keep-playing-button { + display: inline-block; + } + .game-container .game-message.game-won, + .game-container .game-message.game-over { + display: block; + } + + .grid-container { + position: absolute; + z-index: 1; + } + + .grid-row { + margin-bottom: 10px; + } + .grid-row:last-child { + margin-bottom: 0; + } + .grid-row:after { + content: ""; + display: block; + clear: both; + } + + .grid-cell { + width: 57.5px; + height: 57.5px; + margin-right: 10px; + float: left; + border-radius: 3px; + background: rgba(238, 228, 218, 0.35); + } + .grid-cell:last-child { + margin-right: 0; + } + + .tile-container { + position: absolute; + z-index: 2; + } + + .tile, + .tile .tile-inner { + width: 58px; + height: 58px; + line-height: 58px; + } + .tile.tile-position-1-1 { + -webkit-transform: translate(0px, 0px); + -moz-transform: translate(0px, 0px); + -ms-transform: translate(0px, 0px); + transform: translate(0px, 0px); + } + .tile.tile-position-1-2 { + -webkit-transform: translate(0px, 67px); + -moz-transform: translate(0px, 67px); + -ms-transform: translate(0px, 67px); + transform: translate(0px, 67px); + } + .tile.tile-position-1-3 { + -webkit-transform: translate(0px, 135px); + -moz-transform: translate(0px, 135px); + -ms-transform: translate(0px, 135px); + transform: translate(0px, 135px); + } + .tile.tile-position-1-4 { + -webkit-transform: translate(0px, 202px); + -moz-transform: translate(0px, 202px); + -ms-transform: translate(0px, 202px); + transform: translate(0px, 202px); + } + .tile.tile-position-2-1 { + -webkit-transform: translate(67px, 0px); + -moz-transform: translate(67px, 0px); + -ms-transform: translate(67px, 0px); + transform: translate(67px, 0px); + } + .tile.tile-position-2-2 { + -webkit-transform: translate(67px, 67px); + -moz-transform: translate(67px, 67px); + -ms-transform: translate(67px, 67px); + transform: translate(67px, 67px); + } + .tile.tile-position-2-3 { + -webkit-transform: translate(67px, 135px); + -moz-transform: translate(67px, 135px); + -ms-transform: translate(67px, 135px); + transform: translate(67px, 135px); + } + .tile.tile-position-2-4 { + -webkit-transform: translate(67px, 202px); + -moz-transform: translate(67px, 202px); + -ms-transform: translate(67px, 202px); + transform: translate(67px, 202px); + } + .tile.tile-position-3-1 { + -webkit-transform: translate(135px, 0px); + -moz-transform: translate(135px, 0px); + -ms-transform: translate(135px, 0px); + transform: translate(135px, 0px); + } + .tile.tile-position-3-2 { + -webkit-transform: translate(135px, 67px); + -moz-transform: translate(135px, 67px); + -ms-transform: translate(135px, 67px); + transform: translate(135px, 67px); + } + .tile.tile-position-3-3 { + -webkit-transform: translate(135px, 135px); + -moz-transform: translate(135px, 135px); + -ms-transform: translate(135px, 135px); + transform: translate(135px, 135px); + } + .tile.tile-position-3-4 { + -webkit-transform: translate(135px, 202px); + -moz-transform: translate(135px, 202px); + -ms-transform: translate(135px, 202px); + transform: translate(135px, 202px); + } + .tile.tile-position-4-1 { + -webkit-transform: translate(202px, 0px); + -moz-transform: translate(202px, 0px); + -ms-transform: translate(202px, 0px); + transform: translate(202px, 0px); + } + .tile.tile-position-4-2 { + -webkit-transform: translate(202px, 67px); + -moz-transform: translate(202px, 67px); + -ms-transform: translate(202px, 67px); + transform: translate(202px, 67px); + } + .tile.tile-position-4-3 { + -webkit-transform: translate(202px, 135px); + -moz-transform: translate(202px, 135px); + -ms-transform: translate(202px, 135px); + transform: translate(202px, 135px); + } + .tile.tile-position-4-4 { + -webkit-transform: translate(202px, 202px); + -moz-transform: translate(202px, 202px); + -ms-transform: translate(202px, 202px); + transform: translate(202px, 202px); + } + + .tile .tile-inner { + font-size: 35px; + } + + .game-message p { + font-size: 30px !important; + height: 30px !important; + line-height: 30px !important; + margin-top: 90px !important; + } + .game-message .lower { + margin-top: 30px !important; + } +} \ No newline at end of file diff --git a/games/2048/style/main.scss b/games/2048/style/main.scss new file mode 100644 index 0000000..b0ec8da --- /dev/null +++ b/games/2048/style/main.scss @@ -0,0 +1,549 @@ +@import "helpers"; +@import "fonts/clear-sans.css"; + +$field-width: 500px; +$grid-spacing: 15px; +$grid-row-cells: 4; +$tile-size: ($field-width - $grid-spacing * ($grid-row-cells + 1)) / $grid-row-cells; +$tile-border-radius: 3px; + +$mobile-threshold: $field-width + 20px; + +$text-color: #776E65; +$bright-text-color: #f9f6f2; + +$tile-color: #eee4da; +$tile-gold-color: #edc22e; +$tile-gold-glow-color: lighten($tile-gold-color, 15%); + +$game-container-margin-top: 40px; +$game-container-background: #bbada0; + +$transition-speed: 100ms; + +html, body { + margin: 0; + padding: 0; + + background: #faf8ef; + color: $text-color; + font-family: "Clear Sans", "Helvetica Neue", Arial, sans-serif; + font-size: 18px; +} + +body { + margin: 80px 0; +} + +.heading { + @include clearfix; +} + +h1.title { + font-size: 80px; + font-weight: bold; + margin: 0; + display: block; + float: left; +} + +@include keyframes(move-up) { + 0% { + top: 25px; + opacity: 1; + } + + 100% { + top: -50px; + opacity: 0; + } +} + +.scores-container { + float: right; + text-align: right; +} + +.score-container, .best-container { + $height: 25px; + + position: relative; + display: inline-block; + background: $game-container-background; + padding: 15px 25px; + font-size: $height; + height: $height; + line-height: $height + 22px; + font-weight: bold; + border-radius: 3px; + color: white; + margin-top: 8px; + text-align: center; + + &:after { + position: absolute; + width: 100%; + top: 10px; + left: 0; + text-transform: uppercase; + font-size: 13px; + line-height: 13px; + text-align: center; + color: $tile-color; + } + + .score-addition { + position: absolute; + right: 30px; + color: red; + font-size: $height; + line-height: $height; + font-weight: bold; + color: rgba($text-color, .9); + z-index: 100; + @include animation(move-up 600ms ease-in); + @include animation-fill-mode(both); + } +} + +.score-container:after { + content: "Score"; +} + +.best-container:after { + content: "Best"; +} + +p { + margin-top: 0; + margin-bottom: 10px; + line-height: 1.65; +} + +a { + color: $text-color; + font-weight: bold; + text-decoration: underline; + cursor: pointer; +} + +strong { + &.important { + text-transform: uppercase; + } +} + +hr { + border: none; + border-bottom: 1px solid lighten($text-color, 40%); + margin-top: 20px; + margin-bottom: 30px; +} + +.container { + width: $field-width; + margin: 0 auto; +} + +@include keyframes(fade-in) { + 0% { + opacity: 0; + } + + 100% { + opacity: 1; + } +} + +// Styles for buttons +@mixin button { + display: inline-block; + background: darken($game-container-background, 20%); + border-radius: 3px; + padding: 0 20px; + text-decoration: none; + color: $bright-text-color; + height: 40px; + line-height: 42px; +} + +// Game field mixin used to render CSS at different width +@mixin game-field { + .game-container { + margin-top: $game-container-margin-top; + position: relative; + padding: $grid-spacing; + + cursor: default; + -webkit-touch-callout: none; + -ms-touch-callout: none; + + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + + -ms-touch-action: none; + touch-action: none; + + background: $game-container-background; + border-radius: $tile-border-radius * 2; + width: $field-width; + height: $field-width; + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + + .game-message { + display: none; + + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + background: rgba($tile-color, .5); + z-index: 100; + + text-align: center; + + p { + font-size: 60px; + font-weight: bold; + height: 60px; + line-height: 60px; + margin-top: 222px; + // height: $field-width; + // line-height: $field-width; + } + + .lower { + display: block; + margin-top: 59px; + } + + a { + @include button; + margin-left: 9px; + // margin-top: 59px; + + &.keep-playing-button { + display: none; + } + } + + @include animation(fade-in 800ms ease $transition-speed * 12); + @include animation-fill-mode(both); + + &.game-won { + background: rgba($tile-gold-color, .5); + color: $bright-text-color; + + a.keep-playing-button { + display: inline-block; + } + } + + &.game-won, &.game-over { + display: block; + } + } + } + + .grid-container { + position: absolute; + z-index: 1; + } + + .grid-row { + margin-bottom: $grid-spacing; + + &:last-child { + margin-bottom: 0; + } + + &:after { + content: ""; + display: block; + clear: both; + } + } + + .grid-cell { + width: $tile-size; + height: $tile-size; + margin-right: $grid-spacing; + float: left; + + border-radius: $tile-border-radius; + + background: rgba($tile-color, .35); + + &:last-child { + margin-right: 0; + } + } + + .tile-container { + position: absolute; + z-index: 2; + } + + .tile { + &, .tile-inner { + width: ceil($tile-size); + height: ceil($tile-size); + line-height: ceil($tile-size); + } + + // Build position classes + @for $x from 1 through $grid-row-cells { + @for $y from 1 through $grid-row-cells { + &.tile-position-#{$x}-#{$y} { + $xPos: floor(($tile-size + $grid-spacing) * ($x - 1)); + $yPos: floor(($tile-size + $grid-spacing) * ($y - 1)); + @include transform(translate($xPos, $yPos)); + } + } + } + } +} + +// End of game-field mixin +@include game-field; + +.tile { + position: absolute; // Makes transforms relative to the top-left corner + + .tile-inner { + border-radius: $tile-border-radius; + + background: $tile-color; + text-align: center; + font-weight: bold; + z-index: 10; + + font-size: 55px; + } + + // Movement transition + @include transition($transition-speed ease-in-out); + -webkit-transition-property: -webkit-transform; + -moz-transition-property: -moz-transform; + transition-property: transform; + + $base: 2; + $exponent: 1; + $limit: 11; + + // Colors for all 11 states, false = no special color + $special-colors: false false, // 2 + false false, // 4 + #f78e48 true, // 8 + #fc5e2e true, // 16 + #ff3333 true, // 32 + #ff0000 true, // 64 + false true, // 128 + false true, // 256 + false true, // 512 + false true, // 1024 + false true; // 2048 + + // Build tile colors + @while $exponent <= $limit { + $power: pow($base, $exponent); + + &.tile-#{$power} .tile-inner { + // Calculate base background color + $gold-percent: ($exponent - 1) / ($limit - 1) * 100; + $mixed-background: mix($tile-gold-color, $tile-color, $gold-percent); + + $nth-color: nth($special-colors, $exponent); + + $special-background: nth($nth-color, 1); + $bright-color: nth($nth-color, 2); + + @if $special-background { + $mixed-background: mix($special-background, $mixed-background, 55%); + } + + @if $bright-color { + color: $bright-text-color; + } + + // Set background + background: $mixed-background; + + // Add glow + $glow-opacity: max($exponent - 4, 0) / ($limit - 4); + + @if not $special-background { + box-shadow: 0 0 30px 10px rgba($tile-gold-glow-color, $glow-opacity / 1.8), + inset 0 0 0 1px rgba(white, $glow-opacity / 3); + } + + // Adjust font size for bigger numbers + @if $power >= 100 and $power < 1000 { + font-size: 45px; + + // Media queries placed here to avoid carrying over the rest of the logic + @include smaller($mobile-threshold) { + font-size: 25px; + } + } @else if $power >= 1000 { + font-size: 35px; + + @include smaller($mobile-threshold) { + font-size: 15px; + } + } + } + + $exponent: $exponent + 1; + } + + // Super tiles (above 2048) + &.tile-super .tile-inner { + color: $bright-text-color; + background: mix(#333, $tile-gold-color, 95%); + + font-size: 30px; + + @include smaller($mobile-threshold) { + font-size: 10px; + } + } +} + +@include keyframes(appear) { + 0% { + opacity: 0; + @include transform(scale(0)); + } + + 100% { + opacity: 1; + @include transform(scale(1)); + } +} + +.tile-new .tile-inner { + @include animation(appear 200ms ease $transition-speed); + @include animation-fill-mode(backwards); +} + +@include keyframes(pop) { + 0% { + @include transform(scale(0)); + } + + 50% { + @include transform(scale(1.2)); + } + + 100% { + @include transform(scale(1)); + } +} + +.tile-merged .tile-inner { + z-index: 20; + @include animation(pop 200ms ease $transition-speed); + @include animation-fill-mode(backwards); +} + +.above-game { + @include clearfix; +} + +.game-intro { + float: left; + line-height: 42px; + margin-bottom: 0; +} + +.restart-button { + @include button; + display: block; + text-align: center; + float: right; +} + +.game-explanation { + margin-top: 50px; +} + +@include smaller($mobile-threshold) { + // Redefine variables for smaller screens + $field-width: 280px; + $grid-spacing: 10px; + $grid-row-cells: 4; + $tile-size: ($field-width - $grid-spacing * ($grid-row-cells + 1)) / $grid-row-cells; + $tile-border-radius: 3px; + $game-container-margin-top: 17px; + + html, body { + font-size: 15px; + } + + body { + margin: 20px 0; + padding: 0 20px; + } + + h1.title { + font-size: 27px; + margin-top: 15px; + } + + .container { + width: $field-width; + margin: 0 auto; + } + + .score-container, .best-container { + margin-top: 0; + padding: 15px 10px; + min-width: 40px; + } + + .heading { + margin-bottom: 10px; + } + + // Show intro and restart button side by side + .game-intro { + width: 55%; + display: block; + box-sizing: border-box; + line-height: 1.65; + } + + .restart-button { + width: 42%; + padding: 0; + display: block; + box-sizing: border-box; + margin-top: 2px; + } + + // Render the game field at the right width + @include game-field; + + // Rest of the font-size adjustments in the tile class + .tile .tile-inner { + font-size: 35px; + } + + .game-message { + p { + font-size: 30px !important; + height: 30px !important; + line-height: 30px !important; + margin-top: 90px !important; + } + + .lower { + margin-top: 30px !important; + } + } +} diff --git a/games/2048/sw.js b/games/2048/sw.js new file mode 100644 index 0000000..e69de29 diff --git a/games/champion-island/.gitignore b/games/champion-island/.gitignore new file mode 100644 index 0000000..f17b3f4 --- /dev/null +++ b/games/champion-island/.gitignore @@ -0,0 +1,2 @@ +*.7z +*.part diff --git a/games/champion-island/CTA-Archery-174787996-174787824.png b/games/champion-island/CTA-Archery-174787996-174787824.png new file mode 100644 index 0000000..f7e2e0a Binary files /dev/null and b/games/champion-island/CTA-Archery-174787996-174787824.png differ diff --git a/games/champion-island/CTA-CenteredPlayButtonFrame1.png b/games/champion-island/CTA-CenteredPlayButtonFrame1.png new file mode 100644 index 0000000..e2aff02 Binary files /dev/null and b/games/champion-island/CTA-CenteredPlayButtonFrame1.png differ diff --git a/games/champion-island/CTA-CenteredPlayButtonFrame2.png b/games/champion-island/CTA-CenteredPlayButtonFrame2.png new file mode 100644 index 0000000..d46ff42 Binary files /dev/null and b/games/champion-island/CTA-CenteredPlayButtonFrame2.png differ diff --git a/games/champion-island/CTA-Closing-174787829-192414335.png b/games/champion-island/CTA-Closing-174787829-192414335.png new file mode 100644 index 0000000..6292701 Binary files /dev/null and b/games/champion-island/CTA-Closing-174787829-192414335.png differ diff --git a/games/champion-island/CTA-Marathon-174788017-174787794.png b/games/champion-island/CTA-Marathon-174788017-174787794.png new file mode 100644 index 0000000..e199a46 Binary files /dev/null and b/games/champion-island/CTA-Marathon-174788017-174787794.png differ diff --git a/games/champion-island/CTA-OffsetPlayButtonFrame1.png b/games/champion-island/CTA-OffsetPlayButtonFrame1.png new file mode 100644 index 0000000..ffc571c Binary files /dev/null and b/games/champion-island/CTA-OffsetPlayButtonFrame1.png differ diff --git a/games/champion-island/CTA-OffsetPlayButtonFrame2.png b/games/champion-island/CTA-OffsetPlayButtonFrame2.png new file mode 100644 index 0000000..50d0774 Binary files /dev/null and b/games/champion-island/CTA-OffsetPlayButtonFrame2.png differ diff --git a/games/champion-island/CTA-Opening-144867217-174787752-174787825-192413481.png b/games/champion-island/CTA-Opening-144867217-174787752-174787825-192413481.png new file mode 100644 index 0000000..4927d6b Binary files /dev/null and b/games/champion-island/CTA-Opening-144867217-174787752-174787825-192413481.png differ diff --git a/games/champion-island/CTA-Rugby-174787947-174787773.png b/games/champion-island/CTA-Rugby-174787947-174787773.png new file mode 100644 index 0000000..e28031e Binary files /dev/null and b/games/champion-island/CTA-Rugby-174787947-174787773.png differ diff --git a/games/champion-island/CTA-Skateboarding-174787927.png b/games/champion-island/CTA-Skateboarding-174787927.png new file mode 100644 index 0000000..5cdfbc7 Binary files /dev/null and b/games/champion-island/CTA-Skateboarding-174787927.png differ diff --git a/games/champion-island/CTA-Swimming-174787828-174787766.png b/games/champion-island/CTA-Swimming-174787828-174787766.png new file mode 100644 index 0000000..7af333a Binary files /dev/null and b/games/champion-island/CTA-Swimming-174787828-174787766.png differ diff --git a/games/champion-island/CTA-TableTennis-174787827-174787820.png b/games/champion-island/CTA-TableTennis-174787827-174787820.png new file mode 100644 index 0000000..5f8e283 Binary files /dev/null and b/games/champion-island/CTA-TableTennis-174787827-174787820.png differ diff --git a/games/champion-island/CTA_Climbing-174787997.png b/games/champion-island/CTA_Climbing-174787997.png new file mode 100644 index 0000000..09151dc Binary files /dev/null and b/games/champion-island/CTA_Climbing-174787997.png differ diff --git a/games/champion-island/PixelMplus10-Regular.ttf b/games/champion-island/PixelMplus10-Regular.ttf new file mode 100644 index 0000000..d8c10d5 Binary files /dev/null and b/games/champion-island/PixelMplus10-Regular.ttf differ diff --git a/games/champion-island/README.md b/games/champion-island/README.md new file mode 100644 index 0000000..e377c4a --- /dev/null +++ b/games/champion-island/README.md @@ -0,0 +1,40 @@ +Doodle Champion Island Games +============================= + +This is an offline backup copy of the Doodle Champion Island Games by Google and Studio 4°C. +The game has been modified to forcefully load the english text and force fullscreen, as well as some other minor improvements +like turning off smoothing on Gecko-based browsers (and forcing moz-opaque), as well as fixing an issue with web browsers not supporting the Web Audio API. + +Preferably you should play the game on google.com but if for some reasons it is blocked +or you wish not to be tracked (note that for now, the submitscore url is still used and it still loads the leaderboard from Google's servers, that may change later), +you can do so here : + +https://gameblabla.github.io/doodle-champion-island-games-Google/ + +I would like to thank @potherca-blog for some of his interesting changes :P + + +Playing the game offline +========================= + + +Firefox +======= +You can just open the index.html (you may have to change a setting for that though if reads from file:// are not allowed). + +Chrominum and forks (Brave) +====================================== +Yyou will need to host your own HTTP server. +Run : +python3 -m http.server + +in a terminal and load up the game at 127.0.0.1:8000. + + +COPYRIGHT +========= + +Of course the game code itself belong to their respective owners, Google and Studio 4°C Co., Ltd. + +I would recommend that you do not host this on your website or elsewhere without Google's permission. +The only purpose of this project is to be able to run this game offline in case the game gets shut down. diff --git a/games/champion-island/archery-sprite.png b/games/champion-island/archery-sprite.png new file mode 100644 index 0000000..ede869f Binary files /dev/null and b/games/champion-island/archery-sprite.png differ diff --git a/games/champion-island/archery.mp3 b/games/champion-island/archery.mp3 new file mode 100644 index 0000000..3562a03 Binary files /dev/null and b/games/champion-island/archery.mp3 differ diff --git a/games/champion-island/archery.ogg b/games/champion-island/archery.ogg new file mode 100644 index 0000000..00923a2 Binary files /dev/null and b/games/champion-island/archery.ogg differ diff --git a/games/champion-island/archeryintro.mp4 b/games/champion-island/archeryintro.mp4 new file mode 100644 index 0000000..da572ed Binary files /dev/null and b/games/champion-island/archeryintro.mp4 differ diff --git a/games/champion-island/archeryoutro.mp4 b/games/champion-island/archeryoutro.mp4 new file mode 100644 index 0000000..2d17156 Binary files /dev/null and b/games/champion-island/archeryoutro.mp4 differ diff --git a/games/champion-island/ballad.mp3 b/games/champion-island/ballad.mp3 new file mode 100644 index 0000000..5cbbed5 Binary files /dev/null and b/games/champion-island/ballad.mp3 differ diff --git a/games/champion-island/ballad.ogg b/games/champion-island/ballad.ogg new file mode 100644 index 0000000..b2f4715 Binary files /dev/null and b/games/champion-island/ballad.ogg differ diff --git a/games/champion-island/bundle.min.js b/games/champion-island/bundle.min.js new file mode 100644 index 0000000..9219fca --- /dev/null +++ b/games/champion-island/bundle.min.js @@ -0,0 +1,26 @@ +/** + * @license + * The MIT License (MIT) + * + * Copyright (c) 2015 Matthew Crumley + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ + +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):t.exprEval=e()}(this,function(){"use strict";function t(t,e){this.type=t,this.value=void 0!==e&&null!==e?e:0}function e(e){return new t(Q,e)}function s(e){return new t(Y,e)}function r(e){return new t(Z,e)}function n(e,s,r,i,o){for(var a,h,p,u,c=[],l=[],f=0;f1)h=c.pop(),a=c.pop(),u=r[v.value],v=new t(K,u(a.value,h.value)),c.push(v);else if(x===Z&&c.length>2)p=c.pop(),h=c.pop(),a=c.pop(),"?"===v.value?c.push(a.value?h.value:p.value):(u=i[v.value],v=new t(K,u(a.value,h.value,p.value)),c.push(v));else if(x===Q&&c.length>0)a=c.pop(),u=s[v.value],v=new t(K,u(a.value)),c.push(v);else if(x===st){for(;c.length>0;)l.push(c.shift());l.push(new t(st,n(v.value,s,r,i,o)))}else if(x===rt&&c.length>0)a=c.pop(),c.push(new t(K,a.value[v.value]));else{for(;c.length>0;)l.push(c.shift());l.push(v)}}for(;c.length>0;)l.push(c.shift());return l}function i(n,o,a){for(var h=[],p=0;p0;)v.unshift(h.pop());if(!(a=h.pop()).apply||!a.call)throw new Error(a+" is not a function");h.push(a.apply(void 0,v))}else if(c===st)h.push(u.value);else{if(c!==rt)throw new Error("invalid Expression");r=h.pop(),h.push(r[u.value])}}if(h.length>1)throw new Error("invalid Expression (parity)");return h[0]}function a(t,e){for(var s,r,n,i,o=[],p=0;p0;)f.unshift(o.pop());i=o.pop(),o.push(i+"("+f.join(", ")+")")}else if(c===rt)s=o.pop(),o.push(s+"."+u.value);else{if(c!==st)throw new Error("invalid Expression");o.push("("+a(u.value,e)+")")}}if(o.length>1)throw new Error("invalid Expression (parity)");return String(o[0])}function h(t){return"string"==typeof t?JSON.stringify(t).replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029"):t}function p(t,e){for(var s=0;se}function T(t,e){return t=e}function O(t,e){return t<=e}function N(t,e){return Boolean(t&&e)}function C(t,e){return Boolean(t||e)}function P(t,e){return p(e,t)}function I(t){return(Math.exp(t)-Math.exp(-t))/2}function S(t){return(Math.exp(t)+Math.exp(-t))/2}function R(t){return t===1/0?1:t===-1/0?-1:(Math.exp(t)-Math.exp(-t))/(Math.exp(t)+Math.exp(-t))}function F(t){return t===-1/0?t:Math.log(t+Math.sqrt(t*t+1))}function L(t){return Math.log(t+Math.sqrt(t*t-1))}function U(t){return Math.log((1+t)/(1-t))/2}function q(t){return Math.log(t)*Math.LOG10E}function B(t){return-t}function $(t){return!t}function G(t){return t<0?Math.ceil(t):Math.floor(t)}function _(t){return Math.random()*(t||1)}function j(t){return W(t+1)}function J(t){return isFinite(t)&&t===Math.round(t)}function W(t){var e,s;if(J(t)){if(t<=0)return isFinite(t)?1/0:NaN;if(t>171)return 1/0;for(var r=t-2,n=t-1;r>1;)n*=r,r--;return 0===n&&(n=1),n}if(t<.5)return Math.PI/(Math.sin(Math.PI*t)*W(1-t));if(t>=171.35)return 1/0;if(t>85){var i=t*t,o=i*t,a=o*t,h=a*t;return Math.sqrt(2*Math.PI/t)*Math.pow(t/Math.E,t)*(1+1/(12*t)+1/(288*i)-139/(51840*o)-571/(2488320*a)+163879/(209018880*h)+5246819/(75246796800*h*t))}--t,s=ct[0];for(var p=1;p0?(r=n/e)*r:n}return e===1/0?1/0:e*Math.sqrt(t)}function z(t,e,s){return t?e:s}function D(t,e){return void 0===e||0==+e?Math.round(t):(t=+t,e=-+e,isNaN(t)||"number"!=typeof e||e%1!=0?NaN:(t=t.toString().split("e"),t=Math.round(+(t[0]+"e"+(t[1]?+t[1]-e:-e))),+((t=t.toString().split("e"))[0]+"e"+(t[1]?+t[1]+e:e))))}function H(t){this.options=t||{},this.unaryOps={sin:Math.sin,cos:Math.cos,tan:Math.tan,asin:Math.asin,acos:Math.acos,atan:Math.atan,sinh:Math.sinh||I,cosh:Math.cosh||S,tanh:Math.tanh||R,asinh:Math.asinh||F,acosh:Math.acosh||L,atanh:Math.atanh||U,sqrt:Math.sqrt,log:Math.log,ln:Math.log,lg:Math.log10||q,log10:Math.log10||q,abs:Math.abs,ceil:Math.ceil,floor:Math.floor,round:Math.round,trunc:Math.trunc||G,"-":B,"+":Number,exp:Math.exp,not:$,length:V,"!":j},this.binaryOps={"+":y,"-":w,"*":d,"/":M,"%":g,"^":Math.pow,"||":E,"==":k,"!=":b,">":m,"<":T,">=":A,"<=":O,and:N,or:C,in:P},this.ternaryOps={"?":z},this.functions={random:_,fac:j,min:Math.min,max:Math.max,hypot:Math.hypot||X,pyt:Math.hypot||X,pow:Math.pow,atan2:Math.atan2,if:z,gamma:W,roundTo:D},this.consts={E:Math.E,PI:Math.PI,true:!0,false:!1}}var K="INUMBER",Q="IOP1",Y="IOP2",Z="IOP3",tt="IVAR",et="IFUNCALL",st="IEXPR",rt="IMEMBER";t.prototype.toString=function(){switch(this.type){case K:case Q:case Y:case Z:case tt:return this.value;case et:return"CALL "+this.value;case rt:return"."+this.value;default:return"Invalid Instruction"}},c.prototype.simplify=function(t){return t=t||{},new c(n(this.tokens,this.unaryOps,this.binaryOps,this.ternaryOps,t),this.parser)},c.prototype.substitute=function(t,e){return e instanceof c||(e=this.parser.parse(String(e))),new c(i(this.tokens,t,e),this.parser)},c.prototype.evaluate=function(t){return t=t||{},o(this.tokens,this,t)},c.prototype.toString=function(){return a(this.tokens,!1)},c.prototype.symbols=function(t){t=t||{};var e=[];return u(this.tokens,e,t),e},c.prototype.variables=function(t){t=t||{};var e=[];u(this.tokens,e,t);var s=this.functions;return e.filter(function(t){return!(t in s)})},c.prototype.toJSFunction=function(t,e){var s=this,r=new Function(t,"with(this.functions) with (this.ternaryOps) with (this.binaryOps) with (this.unaryOps) { return "+a(this.simplify(e).tokens,!0)+"; }");return function(){return r.apply(s,arguments)}};var nt="TOP";l.prototype.toString=function(){return this.type+": "+this.value},f.prototype.newToken=function(t,e,s){return new l(t,e,null!=s?s:this.pos)},f.prototype.save=function(){this.savedPosition=this.pos,this.savedCurrent=this.current},f.prototype.restore=function(){this.pos=this.savedPosition,this.current=this.savedCurrent},f.prototype.next=function(){return this.pos>=this.expression.length?this.newToken("TEOF","EOF"):this.isWhitespace()||this.isComment()?this.next():this.isRadixInteger()||this.isNumber()||this.isOperator()||this.isString()||this.isParen()||this.isComma()||this.isNamedOp()||this.isConst()||this.isName()?this.current:void this.parseError('Unknown character "'+this.expression.charAt(this.pos)+'"')},f.prototype.isString=function(){var t=!1,e=this.pos,s=this.expression.charAt(e);if("'"===s||'"'===s)for(var r=this.expression.indexOf(s,e+1);r>=0&&this.pos"9")))break}if(e>t){var r=this.expression.substring(t,e);if(r in this.consts)return this.current=this.newToken("TNUMBER",this.consts[r]),this.pos+=r.length,!0}return!1},f.prototype.isNamedOp=function(){for(var t=this.pos,e=t;e"9")))break}if(e>t){var r=this.expression.substring(t,e);if(this.isOperatorEnabled(r)&&(r in this.binaryOps||r in this.unaryOps||r in this.ternaryOps))return this.current=this.newToken(nt,r),this.pos+=r.length,!0}return!1},f.prototype.isName=function(){for(var t=this.pos,e=t,s=!1;e"9"))break}else s=!0}if(s){var n=this.expression.substring(t,e);return this.current=this.newToken("TNAME",n),this.pos+=n.length,!0}return!1},f.prototype.isWhitespace=function(){for(var t=!1,e=this.expression.charAt(this.pos);!(" "!==e&&"\t"!==e&&"\n"!==e&&"\r"!==e||(t=!0,++this.pos>=this.expression.length));)e=this.expression.charAt(this.pos);return t};var it=/^[0-9a-f]{4}$/i;f.prototype.unescape=function(t){var e=t.indexOf("\\");if(e<0)return t;for(var s=t.substring(0,e);e>=0;){var r=t.charAt(++e);switch(r){case"'":s+="'";break;case'"':s+='"';break;case"\\":s+="\\";break;case"/":s+="/";break;case"b":s+="\b";break;case"f":s+="\f";break;case"n":s+="\n";break;case"r":s+="\r";break;case"t":s+="\t";break;case"u":var n=t.substring(e+1,e+5);it.test(n)||this.parseError("Illegal escape sequence: \\u"+n),s+=String.fromCharCode(parseInt(n,16)),e+=4;break;default:throw this.parseError('Illegal escape sequence: "\\'+r+'"')}++e;var i=t.indexOf("\\",e);s+=t.substring(e,i<0?t.length:i),e=i}return s},f.prototype.isComment=function(){return"/"===this.expression.charAt(this.pos)&&"*"===this.expression.charAt(this.pos+1)&&(this.pos=this.expression.indexOf("*/",this.pos)+2,1===this.pos&&(this.pos=this.expression.length),!0)},f.prototype.isRadixInteger=function(){var t=this.pos;if(t>=this.expression.length-2||"0"!==this.expression.charAt(t))return!1;++t;var e,s;if("x"===this.expression.charAt(t))e=16,s=/^[0-9a-f]$/i,++t;else{if("b"!==this.expression.charAt(t))return!1;e=2,s=/^[01]$/i,++t}for(var r=!1,n=t;t="0"&&t<="9"||!i&&"."===t);)"."===t?i=!0:o=!0,s++,e=o;if(e&&(n=s),"e"===t||"E"===t){s++;for(var a=!0,h=!1;s="0"&&t<="9"))break;h=!0,a=!1}else a=!1;s++}h||(s=n)}return e?(this.current=this.newToken("TNUMBER",parseFloat(this.expression.substring(r,s))),this.pos=s):this.pos=n,e},f.prototype.isOperator=function(){var t=this.pos,e=this.expression.charAt(this.pos);if("+"===e||"-"===e||"*"===e||"/"===e||"%"===e||"^"===e||"?"===e||":"===e||"."===e)this.current=this.newToken(nt,e);else if("∙"===e||"•"===e)this.current=this.newToken(nt,"*");else if(">"===e)"="===this.expression.charAt(this.pos+1)?(this.current=this.newToken(nt,">="),this.pos++):this.current=this.newToken(nt,">");else if("<"===e)"="===this.expression.charAt(this.pos+1)?(this.current=this.newToken(nt,"<="),this.pos++):this.current=this.newToken(nt,"<");else if("|"===e){if("|"!==this.expression.charAt(this.pos+1))return!1;this.current=this.newToken(nt,"||"),this.pos++}else if("="===e){if("="!==this.expression.charAt(this.pos+1))return!1;this.current=this.newToken(nt,"=="),this.pos++}else{if("!"!==e)return!1;"="===this.expression.charAt(this.pos+1)?(this.current=this.newToken(nt,"!="),this.pos++):this.current=this.newToken(nt,e)}return this.pos++,!!this.isOperatorEnabled(this.current.value)||(this.pos=t,!1)};var ot={"+":"add","-":"subtract","*":"multiply","/":"divide","%":"remainder","^":"power","!":"factorial","<":"comparison",">":"comparison","<=":"comparison",">=":"comparison","==":"comparison","!=":"comparison","||":"concatenate",and:"logical",or:"logical",not:"logical","?":"conditional",":":"conditional"};f.prototype.isOperatorEnabled=function(t){var e=v(t),s=this.options.operators||{};return"in"===e?!!s.in:!(e in s&&!s[e])},f.prototype.getCoordinates=function(){var t,e=0,s=-1;do{e++,t=this.pos-s,s=this.expression.indexOf("\n",s+1)}while(s>=0&&s=",">","in"];x.prototype.parseComparison=function(t){for(this.parseAddSub(t);this.accept(nt,at);){var e=this.current;this.parseAddSub(t),t.push(s(e.value))}};var ht=["+","-","||"];x.prototype.parseAddSub=function(t){for(this.parseTerm(t);this.accept(nt,ht);){var e=this.current;this.parseTerm(t),t.push(s(e.value))}};var pt=["*","/","%"];x.prototype.parseTerm=function(t){for(this.parseFactor(t);this.accept(nt,pt);){var e=this.current;this.parseFactor(t),t.push(s(e.value))}},x.prototype.parseFactor=function(t){var s=this.tokens.unaryOps;if(this.save(),this.accept(nt,function(t){return t.value in s}))if("-"!==this.current.value&&"+"!==this.current.value&&"TPAREN"===this.nextToken.type&&"("===this.nextToken.value)this.restore(),this.parseExponential(t);else{var r=this.current;this.parseFactor(t),t.push(e(r.value))}else this.parseExponential(t)},x.prototype.parseExponential=function(t){for(this.parsePostfixExpression(t);this.accept(nt,"^");)this.parseFactor(t),t.push(s("^"))},x.prototype.parsePostfixExpression=function(t){for(this.parseFunctionCall(t);this.accept(nt,"!");)t.push(e("!"))},x.prototype.parseFunctionCall=function(s){var r=this.tokens.unaryOps;if(this.accept(nt,function(t){return t.value in r})){var n=this.current;this.parseAtom(s),s.push(e(n.value))}else for(this.parseMemberExpression(s);this.accept("TPAREN","(");)if(this.accept("TPAREN",")"))s.push(new t(et,0));else{var i=this.parseArgumentList(s);s.push(new t(et,i))}},x.prototype.parseArgumentList=function(t){for(var e=0;!this.accept("TPAREN",")");)for(this.parseExpression(t),++e;this.accept("TCOMMA");)this.parseExpression(t),++e;return e},x.prototype.parseMemberExpression=function(e){for(this.parseAtom(e);this.accept(nt,".");){if(!this.allowMemberAccess)throw new Error('unexpected ".", member access is not permitted');this.expect("TNAME"),e.push(new t(rt,this.current.value))}};var ut=4.7421875,ct=[.9999999999999971,57.15623566586292,-59.59796035547549,14.136097974741746,-.4919138160976202,3399464998481189e-20,4652362892704858e-20,-9837447530487956e-20,.0001580887032249125,-.00021026444172410488,.00021743961811521265,-.0001643181065367639,8441822398385275e-20,-26190838401581408e-21,36899182659531625e-22];H.prototype.parse=function(t){var e=[],s=new x(this,new f(this,t),{allowMemberAccess:this.options.allowMemberAccess});return s.parseExpression(e),s.expect("TEOF","EOF"),new c(e,this)},H.prototype.evaluate=function(t,e){return this.parse(t).evaluate(e)};var lt=new H;return H.parse=function(t){return lt.parse(t)},H.evaluate=function(t,e){return lt.parse(t).evaluate(e)},{Parser:H,Expression:c}}); diff --git a/games/champion-island/cannon.min.js b/games/champion-island/cannon.min.js new file mode 100644 index 0000000..8bab8ab --- /dev/null +++ b/games/champion-island/cannon.min.js @@ -0,0 +1,29 @@ +/** + * @license + * Copyright (c) 2015 cannon.js Authors + * + * Permission is hereby granted, free of charge, to any person + * obtaining a copy of this software and associated documentation + * files (the "Software"), to deal in the Software without + * restriction, including without limitation the rights to use, copy, + * modify, merge, publish, distribute, sublicense, and/or sell copies + * of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be + * included in all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ + +!function(e){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=e();else if("function"==typeof define&&false)define([],e);else{var f;"undefined"!=typeof window?f=window:"undefined"!=typeof global?f=global:"undefined"!=typeof self&&(f=self),f.CANNON=e()}}(function(){return function e(f,n,o){function d(t,l){if(!n[t]){if(!f[t]){var u="function"==typeof require&&require;if(!l&&u)return u(t,!0);if(i)return i(t,!0);throw new Error("Cannot find module '"+t+"'")}var p=n[t]={exports:{}};f[t][0].call(p.exports,function(e){var n=f[t][1][e];return d(n?n:e)},p,p.exports,e,f,n,o)}return n[t].exports}for(var i="function"==typeof require&&require,t=0;t (http://steffe.se)",keywords:["cannon.js","cannon","physics","engine","3d"],main:"./build/cannon.js",engines:{node:"*"},repository:{type:"git",url:"https://github.com/schteppe/cannon.js.git"},bugs:{url:"https://github.com/schteppe/cannon.js/issues"},licenses:[{type:"MIT"}],devDependencies:{jshint:"latest","uglify-js":"latest",nodeunit:"^0.9.0",grunt:"~0.4.0","grunt-contrib-jshint":"~0.1.1","grunt-contrib-nodeunit":"^0.4.1","grunt-contrib-concat":"~0.1.3","grunt-contrib-uglify":"^0.5.1","grunt-browserify":"^2.1.4","grunt-contrib-yuidoc":"^0.5.2",browserify:"*"},dependencies:{}}},{}],2:[function(e,f){f.exports={version:e("../package.json").version,AABB:e("./collision/AABB"),ArrayCollisionMatrix:e("./collision/ArrayCollisionMatrix"),Body:e("./objects/Body"),Box:e("./shapes/Box"),Broadphase:e("./collision/Broadphase"),Constraint:e("./constraints/Constraint"),ContactEquation:e("./equations/ContactEquation"),Narrowphase:e("./world/Narrowphase"),ConeTwistConstraint:e("./constraints/ConeTwistConstraint"),ContactMaterial:e("./material/ContactMaterial"),ConvexPolyhedron:e("./shapes/ConvexPolyhedron"),Cylinder:e("./shapes/Cylinder"),DistanceConstraint:e("./constraints/DistanceConstraint"),Equation:e("./equations/Equation"),EventTarget:e("./utils/EventTarget"),FrictionEquation:e("./equations/FrictionEquation"),GSSolver:e("./solver/GSSolver"),GridBroadphase:e("./collision/GridBroadphase"),Heightfield:e("./shapes/Heightfield"),HingeConstraint:e("./constraints/HingeConstraint"),LockConstraint:e("./constraints/LockConstraint"),Mat3:e("./math/Mat3"),Material:e("./material/Material"),NaiveBroadphase:e("./collision/NaiveBroadphase"),ObjectCollisionMatrix:e("./collision/ObjectCollisionMatrix"),Pool:e("./utils/Pool"),Particle:e("./shapes/Particle"),Plane:e("./shapes/Plane"),PointToPointConstraint:e("./constraints/PointToPointConstraint"),Quaternion:e("./math/Quaternion"),Ray:e("./collision/Ray"),RaycastVehicle:e("./objects/RaycastVehicle"),RaycastResult:e("./collision/RaycastResult"),RigidVehicle:e("./objects/RigidVehicle"),RotationalEquation:e("./equations/RotationalEquation"),RotationalMotorEquation:e("./equations/RotationalMotorEquation"),SAPBroadphase:e("./collision/SAPBroadphase"),SPHSystem:e("./objects/SPHSystem"),Shape:e("./shapes/Shape"),Solver:e("./solver/Solver"),Sphere:e("./shapes/Sphere"),SplitSolver:e("./solver/SplitSolver"),Spring:e("./objects/Spring"),Trimesh:e("./shapes/Trimesh"),Vec3:e("./math/Vec3"),Vec3Pool:e("./utils/Vec3Pool"),World:e("./world/World")}},{"../package.json":1,"./collision/AABB":3,"./collision/ArrayCollisionMatrix":4,"./collision/Broadphase":5,"./collision/GridBroadphase":6,"./collision/NaiveBroadphase":7,"./collision/ObjectCollisionMatrix":8,"./collision/Ray":9,"./collision/RaycastResult":10,"./collision/SAPBroadphase":11,"./constraints/ConeTwistConstraint":12,"./constraints/Constraint":13,"./constraints/DistanceConstraint":14,"./constraints/HingeConstraint":15,"./constraints/LockConstraint":16,"./constraints/PointToPointConstraint":17,"./equations/ContactEquation":19,"./equations/Equation":20,"./equations/FrictionEquation":21,"./equations/RotationalEquation":22,"./equations/RotationalMotorEquation":23,"./material/ContactMaterial":24,"./material/Material":25,"./math/Mat3":27,"./math/Quaternion":28,"./math/Vec3":30,"./objects/Body":31,"./objects/RaycastVehicle":32,"./objects/RigidVehicle":33,"./objects/SPHSystem":34,"./objects/Spring":35,"./shapes/Box":37,"./shapes/ConvexPolyhedron":38,"./shapes/Cylinder":39,"./shapes/Heightfield":40,"./shapes/Particle":41,"./shapes/Plane":42,"./shapes/Shape":43,"./shapes/Sphere":44,"./shapes/Trimesh":45,"./solver/GSSolver":46,"./solver/Solver":47,"./solver/SplitSolver":48,"./utils/EventTarget":49,"./utils/Pool":51,"./utils/Vec3Pool":54,"./world/Narrowphase":55,"./world/World":56}],3:[function(e,f){function n(e){e=e||{},this.lowerBound=new o,e.lowerBound&&this.lowerBound.copy(e.lowerBound),this.upperBound=new o,e.upperBound&&this.upperBound.copy(e.upperBound)}{var o=e("../math/Vec3");e("../utils/Utils")}f.exports=n;var d=new o;n.prototype.setFromPoints=function(e,f,n,o){var i=this.lowerBound,t=this.upperBound,l=n;i.copy(e[0]),l&&l.vmult(i,i),t.copy(i);for(var u=1;ut.x&&(t.x=p.x),p.xt.y&&(t.y=p.y),p.yt.z&&(t.z=p.z),p.zf&&(this.lowerBound.x=f);var n=e.upperBound.x;this.upperBound.xf&&(this.lowerBound.y=f);var n=e.upperBound.y;this.upperBound.yf&&(this.lowerBound.z=f);var n=e.upperBound.z;this.upperBound.z=d.x&&f.y<=o.y&&n.y>=d.y&&f.z<=o.z&&n.z>=d.z},n.prototype.getCorners=function(e,f,n,o,d,i,t,l){var u=this.lowerBound,p=this.upperBound;e.copy(u),f.set(p.x,u.y,u.z),n.set(p.x,p.y,u.z),o.set(u.x,p.y,p.z),d.set(p.x,u.y,u.z),i.set(u.x,p.y,u.z),t.set(u.x,u.y,p.z),l.copy(p)};var i=[new o,new o,new o,new o,new o,new o,new o,new o];n.prototype.toLocalFrame=function(e,f){var n=i,o=n[0],d=n[1],t=n[2],l=n[3],u=n[4],p=n[5],s=n[6],y=n[7];this.getCorners(o,d,t,l,u,p,s,y);for(var c=0;8!==c;c++){var a=n[c];e.pointToLocal(a,a)}return f.setFromPoints(n)},n.prototype.toWorldFrame=function(e,f){var n=i,o=n[0],d=n[1],t=n[2],l=n[3],u=n[4],p=n[5],s=n[6],y=n[7];this.getCorners(o,d,t,l,u,p,s,y);for(var c=0;8!==c;c++){var a=n[c];e.pointToWorld(a,a)}return f.setFromPoints(n)}},{"../math/Vec3":30,"../utils/Utils":53}],4:[function(e,f){function n(){this.matrix=[]}f.exports=n,n.prototype.get=function(e,f){if(e=e.index,f=f.index,f>e){var n=f;f=e,e=n}return this.matrix[(e*(e+1)>>1)+f-1]},n.prototype.set=function(e,f,n){if(e=e.index,f=f.index,f>e){var o=f;f=e,e=o}this.matrix[(e*(e+1)>>1)+f-1]=n?1:0},n.prototype.reset=function(){for(var e=0,f=this.matrix.length;e!==f;e++)this.matrix[e]=0},n.prototype.setNumObjects=function(e){this.matrix.length=e*(e-1)>>1}},{}],5:[function(e,f){function n(){this.world=null,this.useBoundingBoxes=!1,this.dirty=!0}{var o=e("../objects/Body"),d=e("../math/Vec3"),i=e("../math/Quaternion");e("../shapes/Shape"),e("../shapes/Plane")}f.exports=n,n.prototype.collisionPairs=function(){throw new Error("collisionPairs not implemented for this BroadPhase class!")};var t=o.STATIC|o.KINEMATIC;n.prototype.needBroadphaseCollision=function(e,f){return 0===(e.collisionFilterGroup&f.collisionFilterMask)||0===(f.collisionFilterGroup&e.collisionFilterMask)?!1:0===(e.type&t)&&e.sleepState!==o.SLEEPING||0===(f.type&t)&&f.sleepState!==o.SLEEPING?!0:!1},n.prototype.intersectionTest=function(e,f,n,o){this.useBoundingBoxes?this.doBoundingBoxBroadphase(e,f,n,o):this.doBoundingSphereBroadphase(e,f,n,o)};{var l=new d;new d,new i,new d}n.prototype.doBoundingSphereBroadphase=function(e,f,n,o){var d=l;f.position.vsub(e.position,d);var i=Math.pow(e.boundingRadius+f.boundingRadius,2),t=d.norm2();i>t&&(n.push(e),o.push(f))},n.prototype.doBoundingBoxBroadphase=function(e,f,n,o){e.aabbNeedsUpdate&&e.computeAABB(),f.aabbNeedsUpdate&&f.computeAABB(),e.aabb.overlaps(f.aabb)&&(n.push(e),o.push(f))};var u={keys:[]},p=[],s=[];n.prototype.makePairsUnique=function(e,f){for(var n=u,o=p,d=s,i=e.length,t=0;t!==i;t++)o[t]=e[t],d[t]=f[t];e.length=0,f.length=0;for(var t=0;t!==i;t++){var l=o[t].id,y=d[t].id,c=y>l?l+","+y:y+","+l;n[c]=t,n.keys.push(c)}for(var t=0;t!==n.keys.length;t++){var c=n.keys.pop(),a=n[c];e.push(o[a]),f.push(d[a]),delete n[c]}},n.prototype.setWorld=function(){};var y=new d;n.boundingSphereCheck=function(e,f){var n=y;return e.position.vsub(f.position,n),Math.pow(e.shape.boundingSphereRadius+f.shape.boundingSphereRadius,2)>n.norm2()},n.prototype.aabbQuery=function(){return console.warn(".aabbQuery is not implemented in this Broadphase subclass."),[]}},{"../math/Quaternion":28,"../math/Vec3":30,"../objects/Body":31,"../shapes/Plane":42,"../shapes/Shape":43}],6:[function(e,f){function n(e,f,n,i,t){o.apply(this),this.nx=n||10,this.ny=i||10,this.nz=t||10,this.aabbMin=e||new d(100,100,100),this.aabbMax=f||new d(-100,-100,-100);var l=this.nx*this.ny*this.nz;if(0>=l)throw"GridBroadphase: Each dimension's n must be >0";this.bins=[],this.binLengths=[],this.bins.length=l,this.binLengths.length=l;for(var u=0;l>u;u++)this.bins[u]=[],this.binLengths[u]=0}f.exports=n;var o=e("./Broadphase"),d=e("../math/Vec3"),i=e("../shapes/Shape");n.prototype=new o,n.prototype.constructor=n;{var t=new d;new d}n.prototype.collisionPairs=function(e,f,n){function o(e,f,n,o,d,i,t){var l=(e-g)*v|0,u=(f-x)*A|0,p=(n-j)*C|0,b=I((o-g)*v),m=I((d-x)*A),N=I((i-j)*C);0>l?l=0:l>=s&&(l=s-1),0>u?u=0:u>=y&&(u=y-1),0>p?p=0:p>=c&&(p=c-1),0>b?b=0:b>=s&&(b=s-1),0>m?m=0:m>=y&&(m=y-1),0>N?N=0:N>=c&&(N=c-1),l*=a,u*=r,p*=w,b*=a,m*=r,N*=w;for(var O=l;b>=O;O+=a)for(var h=u;m>=h;h+=r)for(var k=p;N>=k;k+=w){var q=O+h+k;E[q][F[q]++]=t}}for(var d=e.numObjects(),l=e.bodies,u=this.aabbMax,p=this.aabbMin,s=this.nx,y=this.ny,c=this.nz,a=y*c,r=c,w=1,b=u.x,m=u.y,N=u.z,g=p.x,x=p.y,j=p.z,v=s/(b-g),A=y/(m-x),C=c/(N-j),O=(b-g)/s,h=(m-x)/y,k=(N-j)/c,q=.5*Math.sqrt(O*O+h*h+k*k),z=i.types,B=z.SPHERE,D=z.PLANE,E=(z.BOX,z.COMPOUND,z.CONVEXPOLYHEDRON,this.bins),F=this.binLengths,G=this.bins.length,H=0;H!==G;H++)F[H]=0;for(var I=Math.ceil,p=Math.min,u=Math.max,H=0;H!==d;H++){var J=l[H],K=J.shape;switch(K.type){case B:var L=J.position.x,M=J.position.y,P=J.position.z,Q=K.radius;o(L-Q,M-Q,P-Q,L+Q,M+Q,P+Q,J);break;case D:K.worldNormalNeedsUpdate&&K.computeWorldNormal(J.quaternion);var R=K.worldNormal,S=g+.5*O-J.position.x,T=x+.5*h-J.position.y,U=j+.5*k-J.position.z,V=t;V.set(S,T,U);for(var W=0,X=0;W!==s;W++,X+=a,V.y=T,V.x+=O)for(var Y=0,Z=0;Y!==y;Y++,Z+=r,V.z=U,V.y+=h)for(var $=0,_=0;$!==c;$++,_+=w,V.z+=k)if(V.dot(R)1)for(var nf=E[H],W=0;W!==ff;W++)for(var J=nf[W],Y=0;Y!==W;Y++){var of=nf[Y];this.needBroadphaseCollision(J,of)&&this.intersectionTest(J,of,f,n)}}this.makePairsUnique(f,n)}},{"../math/Vec3":30,"../shapes/Shape":43,"./Broadphase":5}],7:[function(e,f){function n(){o.apply(this)}f.exports=n;var o=e("./Broadphase"),d=e("./AABB");n.prototype=new o,n.prototype.constructor=n,n.prototype.collisionPairs=function(e,f,n){var o,d,i,t,l=e.bodies,u=l.length;for(o=0;o!==u;o++)for(d=0;d!==o;d++)i=l[o],t=l[d],this.needBroadphaseCollision(i,t)&&this.intersectionTest(i,t,f,n)};new d;n.prototype.aabbQuery=function(e,f,n){n=n||[];for(var o=0;oe){var n=f;f=e,e=n}return e+"-"+f in this.matrix},n.prototype.set=function(e,f,n){if(e=e.id,f=f.id,f>e){var o=f;f=e,e=o}n?this.matrix[e+"-"+f]=!0:delete this.matrix[e+"-"+f]},n.prototype.reset=function(){this.matrix={}},n.prototype.setNumObjects=function(){}},{}],9:[function(e,f){function n(e,f){this.from=e?e.clone():new i,this.to=f?f.clone():new i,this._direction=new i,this.precision=1e-4,this.checkCollisionResponse=!0,this.skipBackfaces=!1,this.collisionFilterMask=-1,this.collisionFilterGroup=-1,this.mode=n.ANY,this.result=new u,this.hasHit=!1,this.callback=function(){}}function o(e,f,n,o){o.vsub(f,G),n.vsub(f,a),e.vsub(f,r);var d,i,t=G.dot(G),l=G.dot(a),u=G.dot(r),p=a.dot(a),s=a.dot(r);return(d=p*u-l*s)>=0&&(i=t*s-l*u)>=0&&t*p-l*l>d+i}function d(e,f,n){n.vsub(e,G);var o=G.dot(f);f.mult(o,H),H.vadd(e,H);var d=n.distanceTo(H);return d}f.exports=n;var i=e("../math/Vec3"),t=e("../math/Quaternion"),l=e("../math/Transform"),u=(e("../shapes/ConvexPolyhedron"),e("../shapes/Box"),e("../collision/RaycastResult")),p=e("../shapes/Shape"),s=e("../collision/AABB");n.prototype.constructor=n,n.CLOSEST=1,n.ANY=2,n.ALL=4;var y=new s,c=[];n.prototype.intersectWorld=function(e,f){return this.mode=f.mode||n.ANY,this.result=f.result||new u,this.skipBackfaces=!!f.skipBackfaces,this.collisionFilterMask="undefined"!=typeof f.collisionFilterMask?f.collisionFilterMask:-1,this.collisionFilterGroup="undefined"!=typeof f.collisionFilterGroup?f.collisionFilterGroup:-1,f.from&&this.from.copy(f.from),f.to&&this.to.copy(f.to),this.callback=f.callback||function(){},this.hasHit=!1,this.result.reset(),this._updateDirection(),this.getAABB(y),c.length=0,e.broadphase.aabbQuery(e,y,c),this.intersectBodies(c),this.hasHit};var a=new i,r=new i;n.pointInTriangle=o;var w=new i,b=new t;n.prototype.intersectBody=function(e,f){f&&(this.result=f,this._updateDirection());var n=this.checkCollisionResponse;if((!n||e.collisionResponse)&&0!==(this.collisionFilterGroup&e.collisionFilterMask)&&0!==(e.collisionFilterGroup&this.collisionFilterMask))for(var o=w,d=b,i=0,t=e.shapes.length;t>i;i++){var l=e.shapes[i];if((!n||l.collisionResponse)&&(e.quaternion.mult(e.shapeOrientations[i],d),e.quaternion.vmult(e.shapeOffsets[i],o),o.vadd(e.position,o),this.intersectShape(l,d,o,e),this.result._shouldStop))break}},n.prototype.intersectBodies=function(e,f){f&&(this.result=f,this._updateDirection());for(var n=0,o=e.length;!this.result._shouldStop&&o>n;n++)this.intersectBody(e[n])},n.prototype._updateDirection=function(){this.to.vsub(this.from,this._direction),this._direction.normalize()},n.prototype.intersectShape=function(e,f,n,o){var i=this.from,t=d(i,this._direction,n);if(!(t>e.boundingSphereRadius)){var l=this[e.type];l&&l.call(this,e,f,n,o)}};{var m=(new i,new i,new i),N=new i,g=new i,x=new i;new i,new u}n.prototype.intersectBox=function(e,f,n,o){return this.intersectConvex(e.convexPolyhedronRepresentation,f,n,o)},n.prototype[p.types.BOX]=n.prototype.intersectBox,n.prototype.intersectPlane=function(e,f,n,o){var d=this.from,t=this.to,l=this._direction,u=new i(0,0,1);f.vmult(u,u);var p=new i;d.vsub(n,p);var s=p.dot(u);t.vsub(n,p);var y=p.dot(u);if(!(s*y>0||d.distanceTo(t)c)&&(c=p[0]),(null===y||p[1]a)&&(a=p[1])),null!==s){var w=[];e.getRectMinMax(s,y,c,a,w);for(var b=(w[0],w[1],s);c>=b;b++)for(var m=y;a>=m;m++){if(this.result._shouldStop)return;if(e.getConvexTrianglePillar(b,m,!1),l.pointToWorldFrame(o,f,e.pillarOffset,t),this.intersectConvex(e.pillarConvex,f,t,d,j),this.result._shouldStop)return;e.getConvexTrianglePillar(b,m,!0),l.pointToWorldFrame(o,f,e.pillarOffset,t),this.intersectConvex(e.pillarConvex,f,t,d,j)}}},n.prototype[p.types.HEIGHTFIELD]=n.prototype.intersectHeightfield;var v=new i,A=new i;n.prototype.intersectSphere=function(e,f,n,o){var d=this.from,i=this.to,t=e.radius,l=Math.pow(i.x-d.x,2)+Math.pow(i.y-d.y,2)+Math.pow(i.z-d.z,2),u=2*((i.x-d.x)*(d.x-n.x)+(i.y-d.y)*(d.y-n.y)+(i.z-d.z)*(d.z-n.z)),p=Math.pow(d.x-n.x,2)+Math.pow(d.y-n.y,2)+Math.pow(d.z-n.z,2)-Math.pow(t,2),s=Math.pow(u,2)-4*l*p,y=v,c=A;if(!(0>s))if(0===s)d.lerp(i,s,y),y.vsub(n,c),c.normalize(),this.reportIntersection(c,y,e,o,-1);else{var a=(-u-Math.sqrt(s))/(2*l),r=(-u+Math.sqrt(s))/(2*l);if(a>=0&&1>=a&&(d.lerp(i,a,y),y.vsub(n,c),c.normalize(),this.reportIntersection(c,y,e,o,-1)),this.result._shouldStop)return;r>=0&&1>=r&&(d.lerp(i,r,y),y.vsub(n,c),c.normalize(),this.reportIntersection(c,y,e,o,-1))}},n.prototype[p.types.SPHERE]=n.prototype.intersectSphere;var C=new i,O=(new i,new i,new i);n.prototype.intersectConvex=function(e,f,n,d,i){for(var t=C,l=O,u=i&&i.faceList||null,p=e.faces,s=e.vertices,y=e.faceNormals,c=this._direction,a=this.from,r=this.to,w=a.distanceTo(r),b=u?u.length:p.length,j=this.result,v=0;!j._shouldStop&&b>v;v++){var A=u?u[v]:v,h=p[A],k=y[A],q=f,z=n;l.copy(s[h[0]]),q.vmult(l,l),l.vadd(z,l),l.vsub(a,l),q.vmult(k,t);var B=c.dot(t);if(!(Math.abs(B)D)){c.mult(D,m),m.vadd(a,m),N.copy(s[h[0]]),q.vmult(N,N),z.vadd(N,N);for(var E=1;!j._shouldStop&&Ew||this.reportIntersection(t,m,e,d,A)}}}}},n.prototype[p.types.CONVEXPOLYHEDRON]=n.prototype.intersectConvex;var h=new i,k=new i,q=new i,z=new i,B=new i,D=new i,E=(new s,[]),F=new l;n.prototype.intersectTrimesh=function(e,f,n,d,i){var t=h,u=E,p=F,s=O,y=k,c=q,a=z,r=D,w=B,b=(i&&i.faceList||null,e.indices),j=(e.vertices,e.faceNormals,this.from),v=this.to,A=this._direction;p.position.copy(n),p.quaternion.copy(f),l.vectorToLocalFrame(n,f,A,y),l.pointToLocalFrame(n,f,j,c),l.pointToLocalFrame(n,f,v,a);var C=c.distanceSquared(a);e.tree.rayQuery(this,p,u);for(var G=0,H=u.length;!this.result._shouldStop&&G!==H;G++){var I=u[G];e.getNormal(I,t),e.getVertex(b[3*I],N),N.vsub(c,s);var J=y.dot(t),K=t.dot(s)/J;if(!(0>K)){y.scale(K,m),m.vadd(c,m),e.getVertex(b[3*I+1],g),e.getVertex(b[3*I+2],x);var L=m.distanceSquared(c);!o(m,g,N,x)&&!o(m,N,g,x)||L>C||(l.vectorToWorldFrame(f,t,w),l.pointToWorldFrame(n,f,m,r),this.reportIntersection(w,r,e,d,I))}}u.length=0},n.prototype[p.types.TRIMESH]=n.prototype.intersectTrimesh,n.prototype.reportIntersection=function(e,f,o,d,i){var t=this.from,l=this.to,u=t.distanceTo(f),p=this.result;if(!(this.skipBackfaces&&e.dot(this._direction)>0))switch(p.hitFaceIndex="undefined"!=typeof i?i:-1,this.mode){case n.ALL:this.hasHit=!0,p.set(t,l,e,f,o,d,u),p.hasHit=!0,this.callback(p);break;case n.CLOSEST:(uf;f++){for(var o=e[f],d=f-1;d>=0&&!(e[d].aabb.lowerBound.x<=o.aabb.lowerBound.x);d--)e[d+1]=e[d];e[d+1]=o}return e},n.insertionSortY=function(e){for(var f=1,n=e.length;n>f;f++){for(var o=e[f],d=f-1;d>=0&&!(e[d].aabb.lowerBound.y<=o.aabb.lowerBound.y);d--)e[d+1]=e[d];e[d+1]=o}return e},n.insertionSortZ=function(e){for(var f=1,n=e.length;n>f;f++){for(var o=e[f],d=f-1;d>=0&&!(e[d].aabb.lowerBound.z<=o.aabb.lowerBound.z);d--)e[d+1]=e[d];e[d+1]=o}return e},n.prototype.collisionPairs=function(e,f,o){var d,i,t=this.axisList,l=t.length,u=this.axisIndex;for(this.dirty&&(this.sortList(),this.dirty=!1),d=0;d!==l;d++){var p=t[d];for(i=d+1;l>i;i++){var s=t[i];if(this.needBroadphaseCollision(p,s)){if(!n.checkBounds(p,s,u))break;this.intersectionTest(p,s,f,o)}}}},n.prototype.sortList=function(){for(var e=this.axisList,f=this.axisIndex,o=e.length,d=0;d!==o;d++){var i=e[d];i.aabbNeedsUpdate&&i.computeAABB()}0===f?n.insertionSortX(e):1===f?n.insertionSortY(e):2===f&&n.insertionSortZ(e)},n.checkBounds=function(e,f,n){var o,d;0===n?(o=e.position.x,d=f.position.x):1===n?(o=e.position.y,d=f.position.y):2===n&&(o=e.position.z,d=f.position.z);var i=e.boundingRadius,t=f.boundingRadius,l=o+i,u=d-t;return l>u},n.prototype.autoDetectAxis=function(){for(var e=0,f=0,n=0,o=0,d=0,i=0,t=this.axisList,l=t.length,u=1/l,p=0;p!==l;p++){var s=t[p],y=s.position.x;e+=y,f+=y*y;var c=s.position.y;n+=c,o+=c*c;var a=s.position.z;d+=a,i+=a*a}var r=f-e*e*u,w=o-n*n*u,b=i-d*d*u;this.axisIndex=r>w?r>b?0:2:w>b?1:2},n.prototype.aabbQuery=function(e,f,n){n=n||[],this.dirty&&(this.sortList(),this.dirty=!1);var o=this.axisIndex,d="x";1===o&&(d="y"),2===o&&(d="z");for(var i=this.axisList,t=(f.lowerBound[d],f.upperBound[d],0);td;d++)for(var i=0;3>i;i++){for(var t=0,l=0;3>l;l++)t+=e.elements[d+3*l]*this.elements[l+3*i];o.elements[d+3*i]=t}return o},n.prototype.scale=function(e,f){f=f||new n;for(var o=this.elements,d=f.elements,i=0;3!==i;i++)d[3*i+0]=e.x*o[3*i+0],d[3*i+1]=e.y*o[3*i+1],d[3*i+2]=e.z*o[3*i+2];return f},n.prototype.solve=function(e,f){f=f||new o;for(var n=3,d=4,i=[],t=0;n*d>t;t++)i.push(0);var t,l;for(t=0;3>t;t++)for(l=0;3>l;l++)i[t+d*l]=this.elements[t+3*l];i[3]=e.x,i[7]=e.y,i[11]=e.z;var u,p,s=3,y=s,c=4;do{if(t=y-s,0===i[t+d*t])for(l=t+1;y>l;l++)if(0!==i[t+d*l]){u=c;do p=c-u,i[p+d*t]+=i[p+d*l];while(--u);break}if(0!==i[t+d*t])for(l=t+1;y>l;l++){var a=i[t+d*l]/i[t+d*t];u=c;do p=c-u,i[p+d*l]=t>=p?0:i[p+d*l]-i[p+d*t]*a;while(--u)}}while(--s);if(f.z=i[2*d+3]/i[2*d+2],f.y=(i[1*d+3]-i[1*d+2]*f.z)/i[1*d+1],f.x=(i[0*d+3]-i[0*d+2]*f.z-i[0*d+1]*f.y)/i[0*d+0],isNaN(f.x)||isNaN(f.y)||isNaN(f.z)||1/0===f.x||1/0===f.y||1/0===f.z)throw"Could not solve equation! Got x=["+f.toString()+"], b=["+e.toString()+"], A=["+this.toString()+"]";return f},n.prototype.e=function(e,f,n){return void 0===n?this.elements[f+3*e]:void(this.elements[f+3*e]=n)},n.prototype.copy=function(e){for(var f=0;fn;n++)e+=this.elements[n]+f;return e},n.prototype.reverse=function(e){e=e||new n;for(var f=3,o=6,d=[],i=0;f*o>i;i++)d.push(0);var i,t;for(i=0;3>i;i++)for(t=0;3>t;t++)d[i+o*t]=this.elements[i+3*t];d[3]=1,d[9]=0,d[15]=0,d[4]=0,d[10]=1,d[16]=0,d[5]=0,d[11]=0,d[17]=1;var l,u,p=3,s=p,y=o;do{if(i=s-p,0===d[i+o*i])for(t=i+1;s>t;t++)if(0!==d[i+o*t]){l=y;do u=y-l,d[u+o*i]+=d[u+o*t];while(--l);break}if(0!==d[i+o*i])for(t=i+1;s>t;t++){var c=d[i+o*t]/d[i+o*i];l=y;do u=y-l,d[u+o*t]=i>=u?0:d[u+o*t]-d[u+o*i]*c;while(--l)}}while(--p);i=2;do{t=i-1;do{var c=d[i+o*t]/d[i+o*i];l=o;do u=o-l,d[u+o*t]=d[u+o*t]-d[u+o*i]*c;while(--l)}while(t--)}while(--i);i=2;do{var c=1/d[i+o*i];l=o;do u=o-l,d[u+o*i]=d[u+o*i]*c;while(--l)}while(i--);i=2;do{t=2;do{if(u=d[f+t+o*i],isNaN(u)||1/0===u)throw"Could not reverse! A=["+this.toString()+"]";e.e(i,t,u)}while(t--)}while(i--);return e},n.prototype.setRotationFromQuaternion=function(e){var f=e.x,n=e.y,o=e.z,d=e.w,i=f+f,t=n+n,l=o+o,u=f*i,p=f*t,s=f*l,y=n*t,c=n*l,a=o*l,r=d*i,w=d*t,b=d*l,m=this.elements;return m[0]=1-(y+a),m[1]=p-b,m[2]=s+w,m[3]=p+b,m[4]=1-(u+a),m[5]=c-r,m[6]=s-w,m[7]=c+r,m[8]=1-(u+y),this},n.prototype.transpose=function(e){e=e||new n;for(var f=e.elements,o=this.elements,d=0;3!==d;d++)for(var i=0;3!==i;i++)f[3*d+i]=o[3*i+d];return e}},{"./Vec3":30}],28:[function(e,f){function n(e,f,n,o){this.x=void 0!==e?e:0,this.y=void 0!==f?f:0,this.z=void 0!==n?n:0,this.w=void 0!==o?o:1}f.exports=n;var o=e("./Vec3");n.prototype.set=function(e,f,n,o){this.x=e,this.y=f,this.z=n,this.w=o},n.prototype.toString=function(){return this.x+","+this.y+","+this.z+","+this.w},n.prototype.toArray=function(){return[this.x,this.y,this.z,this.w]},n.prototype.setFromAxisAngle=function(e,f){var n=Math.sin(.5*f);this.x=e.x*n,this.y=e.y*n,this.z=e.z*n,this.w=Math.cos(.5*f)},n.prototype.toAxisAngle=function(e){e=e||new o,this.normalize();var f=2*Math.acos(this.w),n=Math.sqrt(1-this.w*this.w);return.001>n?(e.x=this.x,e.y=this.y,e.z=this.z):(e.x=this.x/n,e.y=this.y/n,e.z=this.z/n),[e,f]};var d=new o,i=new o;n.prototype.setFromVectors=function(e,f){if(e.isAntiparallelTo(f)){var n=d,o=i;e.tangents(n,o),this.setFromAxisAngle(n,Math.PI)}else{var t=e.cross(f);this.x=t.x,this.y=t.y,this.z=t.z,this.w=Math.sqrt(Math.pow(e.norm(),2)*Math.pow(f.norm(),2))+e.dot(f),this.normalize()}};var t=new o,l=new o,u=new o;n.prototype.mult=function(e,f){f=f||new n;var o=this.w,d=t,i=l,p=u;return d.set(this.x,this.y,this.z),i.set(e.x,e.y,e.z),f.w=o*e.w-d.dot(i),d.cross(i,p),f.x=o*i.x+e.w*d.x+p.x,f.y=o*i.y+e.w*d.y+p.y,f.z=o*i.z+e.w*d.z+p.z,f},n.prototype.inverse=function(e){var f=this.x,o=this.y,d=this.z,i=this.w;e=e||new n,this.conjugate(e);var t=1/(f*f+o*o+d*d+i*i);return e.x*=t,e.y*=t,e.z*=t,e.w*=t,e},n.prototype.conjugate=function(e){return e=e||new n,e.x=-this.x,e.y=-this.y,e.z=-this.z,e.w=this.w,e},n.prototype.normalize=function(){var e=Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w);0===e?(this.x=0,this.y=0,this.z=0,this.w=0):(e=1/e,this.x*=e,this.y*=e,this.z*=e,this.w*=e)},n.prototype.normalizeFast=function(){var e=(3-(this.x*this.x+this.y*this.y+this.z*this.z+this.w*this.w))/2;0===e?(this.x=0,this.y=0,this.z=0,this.w=0):(this.x*=e,this.y*=e,this.z*=e,this.w*=e)},n.prototype.vmult=function(e,f){f=f||new o;var n=e.x,d=e.y,i=e.z,t=this.x,l=this.y,u=this.z,p=this.w,s=p*n+l*i-u*d,y=p*d+u*n-t*i,c=p*i+t*d-l*n,a=-t*n-l*d-u*i;return f.x=s*p+a*-t+y*-u-c*-l,f.y=y*p+a*-l+c*-t-s*-u,f.z=c*p+a*-u+s*-l-y*-t,f},n.prototype.copy=function(e){return this.x=e.x,this.y=e.y,this.z=e.z,this.w=e.w,this},n.prototype.toEuler=function(e,f){f=f||"YZX";var n,o,d,i=this.x,t=this.y,l=this.z,u=this.w;switch(f){case"YZX":var p=i*t+l*u;if(p>.499&&(n=2*Math.atan2(i,u),o=Math.PI/2,d=0),-.499>p&&(n=-2*Math.atan2(i,u),o=-Math.PI/2,d=0),isNaN(n)){var s=i*i,y=t*t,c=l*l;n=Math.atan2(2*t*u-2*i*l,1-2*y-2*c),o=Math.asin(2*p),d=Math.atan2(2*i*u-2*t*l,1-2*s-2*c)}break;default:throw new Error("Euler order "+f+" not supported yet.")}e.y=n,e.z=o,e.x=d},n.prototype.setFromEuler=function(e,f,n,o){o=o||"XYZ";var d=Math.cos(e/2),i=Math.cos(f/2),t=Math.cos(n/2),l=Math.sin(e/2),u=Math.sin(f/2),p=Math.sin(n/2);return"XYZ"===o?(this.x=l*i*t+d*u*p,this.y=d*u*t-l*i*p,this.z=d*i*p+l*u*t,this.w=d*i*t-l*u*p):"YXZ"===o?(this.x=l*i*t+d*u*p,this.y=d*u*t-l*i*p,this.z=d*i*p-l*u*t,this.w=d*i*t+l*u*p):"ZXY"===o?(this.x=l*i*t-d*u*p,this.y=d*u*t+l*i*p,this.z=d*i*p+l*u*t,this.w=d*i*t-l*u*p):"ZYX"===o?(this.x=l*i*t-d*u*p,this.y=d*u*t+l*i*p,this.z=d*i*p-l*u*t,this.w=d*i*t+l*u*p):"YZX"===o?(this.x=l*i*t+d*u*p,this.y=d*u*t+l*i*p,this.z=d*i*p-l*u*t,this.w=d*i*t-l*u*p):"XZY"===o&&(this.x=l*i*t-d*u*p,this.y=d*u*t-l*i*p,this.z=d*i*p+l*u*t,this.w=d*i*t+l*u*p),this},n.prototype.clone=function(){return new n(this.x,this.y,this.z,this.w)}},{"./Vec3":30}],29:[function(e,f){function n(e){e=e||{},this.position=new o,e.position&&this.position.copy(e.position),this.quaternion=new d,e.quaternion&&this.quaternion.copy(e.quaternion)}var o=e("./Vec3"),d=e("./Quaternion");f.exports=n;var i=new d;n.pointToLocalFrame=function(e,f,n,d){var d=d||new o;return n.vsub(e,d),f.conjugate(i),i.vmult(d,d),d},n.prototype.pointToLocal=function(e,f){return n.pointToLocalFrame(this.position,this.quaternion,e,f)},n.pointToWorldFrame=function(e,f,n,d){var d=d||new o;return f.vmult(n,d),d.vadd(e,d),d},n.prototype.pointToWorld=function(e,f){return n.pointToWorldFrame(this.position,this.quaternion,e,f)},n.prototype.vectorToWorldFrame=function(e,f){var f=f||new o;return this.quaternion.vmult(e,f),f},n.vectorToWorldFrame=function(e,f,n){return e.vmult(f,n),n},n.vectorToLocalFrame=function(e,f,n,d){var d=d||new o;return f.w*=-1,f.vmult(n,d),f.w*=-1,d}},{"./Quaternion":28,"./Vec3":30}],30:[function(e,f){function n(e,f,n){this.x=e||0,this.y=f||0,this.z=n||0}f.exports=n;var o=e("./Mat3");n.ZERO=new n(0,0,0),n.UNIT_X=new n(1,0,0),n.UNIT_Y=new n(0,1,0),n.UNIT_Z=new n(0,0,1),n.prototype.cross=function(e,f){var o=e.x,d=e.y,i=e.z,t=this.x,l=this.y,u=this.z;return f=f||new n,f.x=l*i-u*d,f.y=u*o-t*i,f.z=t*d-l*o,f},n.prototype.set=function(e,f,n){return this.x=e,this.y=f,this.z=n,this},n.prototype.setZero=function(){this.x=this.y=this.z=0},n.prototype.vadd=function(e,f){return f?(f.x=e.x+this.x,f.y=e.y+this.y,f.z=e.z+this.z,void 0):new n(this.x+e.x,this.y+e.y,this.z+e.z)},n.prototype.vsub=function(e,f){return f?(f.x=this.x-e.x,f.y=this.y-e.y,f.z=this.z-e.z,void 0):new n(this.x-e.x,this.y-e.y,this.z-e.z)},n.prototype.crossmat=function(){return new o([0,-this.z,this.y,this.z,0,-this.x,-this.y,this.x,0])},n.prototype.normalize=function(){var e=this.x,f=this.y,n=this.z,o=Math.sqrt(e*e+f*f+n*n);if(o>0){var d=1/o;this.x*=d,this.y*=d,this.z*=d}else this.x=0,this.y=0,this.z=0;return o},n.prototype.unit=function(e){e=e||new n;var f=this.x,o=this.y,d=this.z,i=Math.sqrt(f*f+o*o+d*d);return i>0?(i=1/i,e.x=f*i,e.y=o*i,e.z=d*i):(e.x=1,e.y=0,e.z=0),e},n.prototype.norm=function(){var e=this.x,f=this.y,n=this.z;return Math.sqrt(e*e+f*f+n*n)},n.prototype.length=n.prototype.norm,n.prototype.norm2=function(){return this.dot(this)},n.prototype.lengthSquared=n.prototype.norm2,n.prototype.distanceTo=function(e){var f=this.x,n=this.y,o=this.z,d=e.x,i=e.y,t=e.z;return Math.sqrt((d-f)*(d-f)+(i-n)*(i-n)+(t-o)*(t-o))},n.prototype.distanceSquared=function(e){var f=this.x,n=this.y,o=this.z,d=e.x,i=e.y,t=e.z;return(d-f)*(d-f)+(i-n)*(i-n)+(t-o)*(t-o)},n.prototype.mult=function(e,f){f=f||new n;var o=this.x,d=this.y,i=this.z;return f.x=e*o,f.y=e*d,f.z=e*i,f},n.prototype.scale=n.prototype.mult,n.prototype.dot=function(e){return this.x*e.x+this.y*e.y+this.z*e.z},n.prototype.isZero=function(){return 0===this.x&&0===this.y&&0===this.z},n.prototype.negate=function(e){return e=e||new n,e.x=-this.x,e.y=-this.y,e.z=-this.z,e};var d=new n,i=new n;n.prototype.tangents=function(e,f){var n=this.norm();if(n>0){var o=d,t=1/n;o.set(this.x*t,this.y*t,this.z*t);var l=i;Math.abs(o.x)<.9?(l.set(1,0,0),o.cross(l,e)):(l.set(0,1,0),o.cross(l,e)),o.cross(e,f)}else e.set(1,0,0),f.set(0,1,0)},n.prototype.toString=function(){return this.x+","+this.y+","+this.z},n.prototype.toArray=function(){return[this.x,this.y,this.z]},n.prototype.copy=function(e){return this.x=e.x,this.y=e.y,this.z=e.z,this},n.prototype.lerp=function(e,f,n){var o=this.x,d=this.y,i=this.z;n.x=o+(e.x-o)*f,n.y=d+(e.y-d)*f,n.z=i+(e.z-i)*f},n.prototype.almostEquals=function(e,f){return void 0===f&&(f=1e-6),Math.abs(this.x-e.x)>f||Math.abs(this.y-e.y)>f||Math.abs(this.z-e.z)>f?!1:!0},n.prototype.almostZero=function(e){return void 0===e&&(e=1e-6),Math.abs(this.x)>e||Math.abs(this.y)>e||Math.abs(this.z)>e?!1:!0};var t=new n;n.prototype.isAntiparallelTo=function(e,f){return this.negate(t),t.almostEquals(e,f)},n.prototype.clone=function(){return new n(this.x,this.y,this.z)}},{"./Mat3":27}],31:[function(e,f){function n(e){e=e||{},o.apply(this),this.id=n.idCounter++,this.world=null,this.preStep=null,this.postStep=null,this.vlambda=new d,this.collisionFilterGroup="number"==typeof e.collisionFilterGroup?e.collisionFilterGroup:1,this.collisionFilterMask="number"==typeof e.collisionFilterMask?e.collisionFilterMask:1,this.collisionResponse=!0,this.position=new d,e.position&&this.position.copy(e.position),this.previousPosition=new d,this.initPosition=new d,this.velocity=new d,e.velocity&&this.velocity.copy(e.velocity),this.initVelocity=new d,this.force=new d;var f="number"==typeof e.mass?e.mass:0;this.mass=f,this.invMass=f>0?1/f:0,this.material=e.material||null,this.linearDamping="number"==typeof e.linearDamping?e.linearDamping:.01,this.type=0>=f?n.STATIC:n.DYNAMIC,typeof e.type==typeof n.STATIC&&(this.type=e.type),this.allowSleep="undefined"!=typeof e.allowSleep?e.allowSleep:!0,this.sleepState=0,this.sleepSpeedLimit="undefined"!=typeof e.sleepSpeedLimit?e.sleepSpeedLimit:.1,this.sleepTimeLimit="undefined"!=typeof e.sleepTimeLimit?e.sleepTimeLimit:1,this.timeLastSleepy=0,this._wakeUpAfterNarrowphase=!1,this.torque=new d,this.quaternion=new t,e.quaternion&&this.quaternion.copy(e.quaternion),this.initQuaternion=new t,this.angularVelocity=new d,e.angularVelocity&&this.angularVelocity.copy(e.angularVelocity),this.initAngularVelocity=new d,this.interpolatedPosition=new d,this.interpolatedQuaternion=new t,this.shapes=[],this.shapeOffsets=[],this.shapeOrientations=[],this.inertia=new d,this.invInertia=new d,this.invInertiaWorld=new i,this.invMassSolve=0,this.invInertiaSolve=new d,this.invInertiaWorldSolve=new i,this.fixedRotation="undefined"!=typeof e.fixedRotation?e.fixedRotation:!1,this.angularDamping="undefined"!=typeof e.angularDamping?e.angularDamping:.01,this.aabb=new l,this.aabbNeedsUpdate=!0,this.wlambda=new d,e.shape&&this.addShape(e.shape),this.updateMassProperties()}f.exports=n;var o=e("../utils/EventTarget"),d=(e("../shapes/Shape"),e("../math/Vec3")),i=e("../math/Mat3"),t=e("../math/Quaternion"),l=(e("../material/Material"),e("../collision/AABB")),u=e("../shapes/Box");n.prototype=new o,n.prototype.constructor=n,n.DYNAMIC=1,n.STATIC=2,n.KINEMATIC=4,n.AWAKE=0,n.SLEEPY=1,n.SLEEPING=2,n.idCounter=0,n.prototype.wakeUp=function(){var e=this.sleepState;this.sleepState=0,e===n.SLEEPING&&this.dispatchEvent({type:"wakeup"})},n.prototype.sleep=function(){this.sleepState=n.SLEEPING,this.velocity.set(0,0,0),this.angularVelocity.set(0,0,0)},n.sleepyEvent={type:"sleepy"},n.sleepEvent={type:"sleep"},n.prototype.sleepTick=function(e){if(this.allowSleep){var f=this.sleepState,o=this.velocity.norm2()+this.angularVelocity.norm2(),d=Math.pow(this.sleepSpeedLimit,2);f===n.AWAKE&&d>o?(this.sleepState=n.SLEEPY,this.timeLastSleepy=e,this.dispatchEvent(n.sleepyEvent)):f===n.SLEEPY&&o>d?this.wakeUp():f===n.SLEEPY&&e-this.timeLastSleepy>this.sleepTimeLimit&&(this.sleep(),this.dispatchEvent(n.sleepEvent))}},n.prototype.updateSolveMassProperties=function(){this.sleepState===n.SLEEPING||this.type===n.KINEMATIC?(this.invMassSolve=0,this.invInertiaSolve.setZero(),this.invInertiaWorldSolve.setZero()):(this.invMassSolve=this.invMass,this.invInertiaSolve.copy(this.invInertia),this.invInertiaWorldSolve.copy(this.invInertiaWorld))},n.prototype.pointToLocalFrame=function(e,f){var f=f||new d;return e.vsub(this.position,f),this.quaternion.conjugate().vmult(f,f),f},n.prototype.vectorToLocalFrame=function(e,f){var f=f||new d;return this.quaternion.conjugate().vmult(e,f),f},n.prototype.pointToWorldFrame=function(e,f){var f=f||new d;return this.quaternion.vmult(e,f),f.vadd(this.position,f),f},n.prototype.vectorToWorldFrame=function(e,f){var f=f||new d;return this.quaternion.vmult(e,f),f};var p=new d,s=new t;n.prototype.addShape=function(e,f,n){var o=new d,i=new t;return f&&o.copy(f),n&&i.copy(n),this.shapes.push(e),this.shapeOffsets.push(o),this.shapeOrientations.push(i),this.updateMassProperties(),this.updateBoundingRadius(),this.aabbNeedsUpdate=!0,this},n.prototype.updateBoundingRadius=function(){for(var e=this.shapes,f=this.shapeOffsets,n=e.length,o=0,d=0;d!==n;d++){var i=e[d];i.updateBoundingSphereRadius();var t=f[d].norm(),l=i.boundingSphereRadius;t+l>o&&(o=t+l)}this.boundingRadius=o};var y=new l;n.prototype.computeAABB=function(){for(var e=this.shapes,f=this.shapeOffsets,n=this.shapeOrientations,o=e.length,d=p,i=s,t=this.quaternion,l=this.aabb,u=y,c=0;c!==o;c++){var a=e[c];n[c].mult(t,i),i.vmult(f[c],d),d.vadd(this.position,d),a.calculateWorldAABB(d,i,u.lowerBound,u.upperBound),0===c?l.copy(u):l.extend(u)}this.aabbNeedsUpdate=!1};{var c=new i,a=new i;new i}n.prototype.updateInertiaWorld=function(e){var f=this.invInertia;if(f.x!==f.y||f.y!==f.z||e){var n=c,o=a;n.setRotationFromQuaternion(this.quaternion),n.transpose(o),n.scale(f,n),n.mmult(o,this.invInertiaWorld)}else;};var r=new d,w=new d;n.prototype.applyForce=function(e,f){if(this.type===n.DYNAMIC){var o=r;f.vsub(this.position,o);var d=w;o.cross(e,d),this.force.vadd(e,this.force),this.torque.vadd(d,this.torque)}};var b=new d,m=new d;n.prototype.applyLocalForce=function(e,f){if(this.type===n.DYNAMIC){var o=b,d=m;this.vectorToWorldFrame(e,o),this.pointToWorldFrame(f,d),this.applyForce(o,d)}};var N=new d,g=new d,x=new d;n.prototype.applyImpulse=function(e,f){if(this.type===n.DYNAMIC){var o=N;f.vsub(this.position,o);var d=g;d.copy(e),d.mult(this.invMass,d),this.velocity.vadd(d,this.velocity);var i=x;o.cross(e,i),this.invInertiaWorld.vmult(i,i),this.angularVelocity.vadd(i,this.angularVelocity)}};var j=new d,v=new d;n.prototype.applyLocalImpulse=function(e,f){if(this.type===n.DYNAMIC){var o=j,d=v;this.vectorToWorldFrame(e,o),this.pointToWorldFrame(f,d),this.applyImpulse(o,d)}};var A=new d;n.prototype.updateMassProperties=function(){var e=A;this.invMass=this.mass>0?1/this.mass:0;var f=this.inertia,n=this.fixedRotation;this.computeAABB(),e.set((this.aabb.upperBound.x-this.aabb.lowerBound.x)/2,(this.aabb.upperBound.y-this.aabb.lowerBound.y)/2,(this.aabb.upperBound.z-this.aabb.lowerBound.z)/2),u.calculateInertia(e,this.mass,f),this.invInertia.set(f.x>0&&!n?1/f.x:0,f.y>0&&!n?1/f.y:0,f.z>0&&!n?1/f.z:0),this.updateInertiaWorld(!0)},n.prototype.getVelocityAtWorldPoint=function(e,f){var n=new d;return e.vsub(this.position,n),this.angularVelocity.cross(n,f),this.velocity.vadd(f,f),f}},{"../collision/AABB":3,"../material/Material":25,"../math/Mat3":27,"../math/Quaternion":28,"../math/Vec3":30,"../shapes/Box":37,"../shapes/Shape":43,"../utils/EventTarget":49}],32:[function(e,f){function n(e){this.chassisBody=e.chassisBody,this.wheelInfos=[],this.sliding=!1,this.world=null,this.indexRightAxis="undefined"!=typeof e.indexRightAxis?e.indexRightAxis:1,this.indexForwardAxis="undefined"!=typeof e.indexForwardAxis?e.indexForwardAxis:0,this.indexUpAxis="undefined"!=typeof e.indexUpAxis?e.indexUpAxis:2}function o(e,f,n,o,i){var t=0,l=n,u=x,p=j,s=v;e.getVelocityAtWorldPoint(l,u),f.getVelocityAtWorldPoint(l,p),u.vsub(p,s);var y=o.dot(s),c=d(e,n,o),a=d(f,n,o),r=1,w=r/(c+a);return t=-y*w,t>i&&(t=i),-i>t&&(t=-i),t}function d(e,f,n){var o=A,d=C,i=O,t=h;return f.vsub(e.position,o),o.cross(n,d),e.invInertiaWorld.vmult(d,t),t.cross(o,i),e.invMass+n.dot(i)}function i(e,f,n,o,d,i){var t=d.norm2();if(t>1.1)return 0;var l=k,u=q,p=z;e.getVelocityAtWorldPoint(f,l),n.getVelocityAtWorldPoint(o,u),l.vsub(u,p);var s=d.dot(p),y=.2,c=1/(e.invMass+n.invMass),i=-y*s*c;return i}var t=(e("./Body"),e("../math/Vec3")),l=e("../math/Quaternion"),u=(e("../collision/RaycastResult"),e("../collision/Ray")),p=e("../objects/WheelInfo");f.exports=n;{var s=(new t,new t,new t,new t),y=new t,c=new t;new u}n.prototype.addWheel=function(e){e=e||{};var f=new p(e),n=this.wheelInfos.length;return this.wheelInfos.push(f),n},n.prototype.setSteeringValue=function(e,f){var n=this.wheelInfos[f];n.steering=e};new t;n.prototype.applyEngineForce=function(e,f){this.wheelInfos[f].engineForce=e},n.prototype.setBrake=function(e,f){this.wheelInfos[f].brake=e},n.prototype.addToWorld=function(e){this.constraints;e.add(this.chassisBody);var f=this;this.preStepCallback=function(){f.updateVehicle(e.dt)},e.addEventListener("preStep",this.preStepCallback),this.world=e},n.prototype.getVehicleAxisWorld=function(e,f){f.set(0===e?1:0,1===e?1:0,2===e?1:0),this.chassisBody.vectorToWorldFrame(f,f)},n.prototype.updateVehicle=function(e){for(var f=this.wheelInfos,n=f.length,o=this.chassisBody,d=0;n>d;d++)this.updateWheelTransform(d);this.currentVehicleSpeedKmHour=3.6*o.velocity.norm();var i=new t;this.getVehicleAxisWorld(this.indexForwardAxis,i),i.dot(o.velocity)<0&&(this.currentVehicleSpeedKmHour*=-1);for(var d=0;n>d;d++)this.castRay(f[d]);this.updateSuspension(e);for(var l=new t,u=new t,d=0;n>d;d++){var p=f[d],s=p.suspensionForce;s>p.maxSuspensionForce&&(s=p.maxSuspensionForce),p.raycastResult.hitNormalWorld.scale(s*e,l),p.raycastResult.hitPointWorld.vsub(o.position,u),o.applyImpulse(l,p.raycastResult.hitPointWorld)}this.updateFriction(e);var y=new t,c=new t,a=new t;for(d=0;n>d;d++){var p=f[d];o.getVelocityAtWorldPoint(p.chassisConnectionPointWorld,a);var r=1;switch(this.indexUpAxis){case 1:r=-1}if(p.isInContact){this.getVehicleAxisWorld(this.indexForwardAxis,c);var w=c.dot(p.raycastResult.hitNormalWorld);p.raycastResult.hitNormalWorld.scale(w,y),c.vsub(y,c);var b=c.dot(a);p.deltaRotation=r*b*e/p.radius}!p.sliding&&p.isInContact||0===p.engineForce||!p.useCustomSlidingRotationalSpeed||(p.deltaRotation=(p.engineForce>0?1:-1)*p.customSlidingRotationalSpeed*e),Math.abs(p.brake)>Math.abs(p.engineForce)&&(p.deltaRotation=0),p.rotation+=p.deltaRotation,p.deltaRotation*=.99}},n.prototype.updateSuspension=function(){for(var e=this.chassisBody,f=e.mass,n=this.wheelInfos,o=n.length,d=0;o>d;d++){var i=n[d];if(i.isInContact){var t,l=i.suspensionRestLength,u=i.suspensionLength,p=l-u;t=i.suspensionStiffness*p*i.clippedInvContactDotSuspension;var s,y=i.suspensionRelativeVelocity;s=0>y?i.dampingCompression:i.dampingRelaxation,t-=s*y,i.suspensionForce=t*f,i.suspensionForce<0&&(i.suspensionForce=0)}else i.suspensionForce=0}},n.prototype.removeFromWorld=function(e){this.constraints;e.remove(this.chassisBody),e.removeEventListener("preStep",this.preStepCallback),this.world=null};var a=new t,r=new t;n.prototype.castRay=function(e){var f=a,n=r;this.updateWheelTransformWorld(e);var o=this.chassisBody,d=-1,i=e.suspensionRestLength+e.radius;e.directionWorld.scale(i,f);var l=e.chassisConnectionPointWorld;l.vadd(f,n);var u=e.raycastResult;u.reset();var p=o.collisionResponse;o.collisionResponse=!1,this.world.rayTest(l,n,u),o.collisionResponse=p;var s=u.body;if(e.raycastResult.groundObject=0,s){d=u.distance,e.raycastResult.hitNormalWorld=u.hitNormalWorld,e.isInContact=!0;var y=u.distance;e.suspensionLength=y-e.radius;var c=e.suspensionRestLength-e.maxSuspensionTravel,w=e.suspensionRestLength+e.maxSuspensionTravel;e.suspensionLengthw&&(e.suspensionLength=w,e.raycastResult.reset());var b=e.raycastResult.hitNormalWorld.dot(e.directionWorld),m=new t;o.getVelocityAtWorldPoint(e.raycastResult.hitPointWorld,m);var N=e.raycastResult.hitNormalWorld.dot(m);if(b>=-.1)e.suspensionRelativeVelocity=0,e.clippedInvContactDotSuspension=10;else{var g=-1/b;e.suspensionRelativeVelocity=N*g,e.clippedInvContactDotSuspension=g}}else e.suspensionLength=e.suspensionRestLength+0*e.maxSuspensionTravel,e.suspensionRelativeVelocity=0,e.directionWorld.scale(-1,e.raycastResult.hitNormalWorld),e.clippedInvContactDotSuspension=1;return d},n.prototype.updateWheelTransformWorld=function(e){e.isInContact=!1;var f=this.chassisBody;f.pointToWorldFrame(e.chassisConnectionPointLocal,e.chassisConnectionPointWorld),f.vectorToWorldFrame(e.directionLocal,e.directionWorld),f.vectorToWorldFrame(e.axleLocal,e.axleWorld)},n.prototype.updateWheelTransform=function(e){var f=s,n=y,o=c,d=this.wheelInfos[e];this.updateWheelTransformWorld(d),d.directionLocal.scale(-1,f),n.copy(d.axleLocal),f.cross(n,o),o.normalize(),n.normalize();var i=d.steering,t=new l;t.setFromAxisAngle(f,i);var u=new l;u.setFromAxisAngle(n,d.rotation);var p=d.worldTransform.quaternion;this.chassisBody.quaternion.mult(t,p),p.mult(u,p),p.normalize();var a=d.worldTransform.position;a.copy(d.directionWorld),a.scale(d.suspensionLength,a),a.vadd(d.chassisConnectionPointWorld,a)};var w=[new t(1,0,0),new t(0,1,0),new t(0,0,1)];n.prototype.getWheelTransformWorld=function(e){return this.wheelInfos[e].worldTransform};var b=new t,m=[],N=[],g=1;n.prototype.updateFriction=function(e){for(var f=b,n=this.wheelInfos,d=n.length,l=this.chassisBody,u=N,p=m,s=0,y=0;d>y;y++){var c=n[y],a=c.raycastResult.body;a&&s++,c.sideImpulse=0,c.forwardImpulse=0,u[y]||(u[y]=new t),p[y]||(p[y]=new t)}for(var y=0;d>y;y++){var c=n[y],a=c.raycastResult.body;if(a){var r=p[y],x=this.getWheelTransformWorld(y);x.vectorToWorldFrame(w[this.indexRightAxis],r);var j=c.raycastResult.hitNormalWorld,v=r.dot(j);j.scale(v,f),r.vsub(f,r),r.normalize(),j.cross(r,u[y]),u[y].normalize(),c.sideImpulse=i(l,c.raycastResult.hitPointWorld,a,c.raycastResult.hitPointWorld,r),c.sideImpulse*=g}}var A=1,C=.5;this.sliding=!1;for(var y=0;d>y;y++){var c=n[y],a=c.raycastResult.body,O=0;if(c.slipInfo=1,a){var h=0,k=c.brake?c.brake:h;O=o(l,a,c.raycastResult.hitPointWorld,u[y],k),O+=c.engineForce*e;var q=k/O;c.slipInfo*=q}if(c.forwardImpulse=0,c.skidInfo=1,a){c.skidInfo=1;var z=c.suspensionForce*e*c.frictionSlip,B=z,D=z*B;c.forwardImpulse=O;var E=c.forwardImpulse*C,F=c.sideImpulse*A,G=E*E+F*F;if(c.sliding=!1,G>D){this.sliding=!0,c.sliding=!0;var q=z/Math.sqrt(G);c.skidInfo*=q}}}if(this.sliding)for(var y=0;d>y;y++){var c=n[y];0!==c.sideImpulse&&c.skidInfo<1&&(c.forwardImpulse*=c.skidInfo,c.sideImpulse*=c.skidInfo)}for(var y=0;d>y;y++){var c=n[y],H=new t;if(H.copy(c.raycastResult.hitPointWorld),0!==c.forwardImpulse){var I=new t;u[y].scale(c.forwardImpulse,I),l.applyImpulse(I,H)}if(0!==c.sideImpulse){var a=c.raycastResult.body,J=new t;J.copy(c.raycastResult.hitPointWorld);var K=new t;p[y].scale(c.sideImpulse,K),l.pointToLocalFrame(H,H),H["xyz"[this.indexUpAxis]]*=c.rollInfluence,l.pointToWorldFrame(H,H),l.applyImpulse(K,H),K.scale(-1,K),a.applyImpulse(K,J)}}};var x=new t,j=new t,v=new t,A=new t,C=new t,O=new t,h=new t,k=new t,q=new t,z=new t},{"../collision/Ray":9,"../collision/RaycastResult":10,"../math/Quaternion":28,"../math/Vec3":30,"../objects/WheelInfo":36,"./Body":31}],33:[function(e,f){function n(e){if(this.wheelBodies=[],this.coordinateSystem="undefined"==typeof e.coordinateSystem?new t(1,2,3):e.coordinateSystem.clone(),this.chassisBody=e.chassisBody,!this.chassisBody){var f=new i(new t(5,2,.5));this.chassisBody=new o(1,f)}this.constraints=[],this.wheelAxes=[],this.wheelForces=[]}var o=e("./Body"),d=e("../shapes/Sphere"),i=e("../shapes/Box"),t=e("../math/Vec3"),l=e("../constraints/HingeConstraint");f.exports=n,n.prototype.addWheel=function(e){e=e||{};var f=e.body;f||(f=new o(1,new d(1.2))),this.wheelBodies.push(f),this.wheelForces.push(0);var n=(new t,"undefined"!=typeof e.position?e.position.clone():new t),i=new t;this.chassisBody.pointToWorldFrame(n,i),f.position.set(i.x,i.y,i.z);var u="undefined"!=typeof e.axis?e.axis.clone():new t(0,1,0);this.wheelAxes.push(u);var p=new l(this.chassisBody,f,{pivotA:n,axisA:u,pivotB:t.ZERO,axisB:u,collideConnected:!1});return this.constraints.push(p),this.wheelBodies.length-1},n.prototype.setSteeringValue=function(e,f){var n=this.wheelAxes[f],o=Math.cos(e),d=Math.sin(e),i=n.x,t=n.y;this.constraints[f].axisA.set(o*i-d*t,d*i+o*t,0)},n.prototype.setMotorSpeed=function(e,f){var n=this.constraints[f];n.enableMotor(),n.motorTargetVelocity=e},n.prototype.disableMotor=function(e){var f=this.constraints[e]; +f.disableMotor()};var u=new t;n.prototype.setWheelForce=function(e,f){this.wheelForces[f]=e},n.prototype.applyWheelForce=function(e,f){var n=this.wheelAxes[f],o=this.wheelBodies[f],d=o.torque;n.scale(e,u),o.vectorToWorldFrame(u,u),d.vadd(u,d)},n.prototype.addToWorld=function(e){for(var f=this.constraints,n=this.wheelBodies.concat([this.chassisBody]),o=0;othis.particles.length&&this.neighbors.pop())};var d=new o;n.prototype.getNeighbors=function(e,f){for(var n=this.particles.length,o=e.id,i=this.smoothingRadius*this.smoothingRadius,t=d,l=0;l!==n;l++){var u=this.particles[l];u.position.vsub(e.position,t),o!==u.id&&t.norm2()=-.1)this.suspensionRelativeVelocity=0,this.clippedInvContactDotSuspension=10;else{var d=-1/n;this.suspensionRelativeVelocity=o*d,this.clippedInvContactDotSuspension=d}}else f.suspensionLength=this.suspensionRestLength,this.suspensionRelativeVelocity=0,f.directionWorld.scale(-1,f.hitNormalWorld),this.clippedInvContactDotSuspension=1}},{"../collision/RaycastResult":10,"../math/Transform":29,"../math/Vec3":30,"../utils/Utils":53}],37:[function(e,f){function n(e){o.call(this),this.type=o.types.BOX,this.halfExtents=e,this.convexPolyhedronRepresentation=null,this.updateConvexPolyhedronRepresentation(),this.updateBoundingSphereRadius()}f.exports=n;var o=e("./Shape"),d=e("../math/Vec3"),i=e("./ConvexPolyhedron");n.prototype=new o,n.prototype.constructor=n,n.prototype.updateConvexPolyhedronRepresentation=function(){var e=this.halfExtents.x,f=this.halfExtents.y,n=this.halfExtents.z,o=d,t=[new o(-e,-f,-n),new o(e,-f,-n),new o(e,f,-n),new o(-e,f,-n),new o(-e,-f,n),new o(e,-f,n),new o(e,f,n),new o(-e,f,n)],l=[[3,2,1,0],[4,5,6,7],[5,4,0,1],[2,3,7,6],[0,4,7,3],[1,2,6,5]],u=([new o(0,0,1),new o(0,1,0),new o(1,0,0)],new i(t,l));this.convexPolyhedronRepresentation=u,u.material=this.material},n.prototype.calculateLocalInertia=function(e,f){return f=f||new d,n.calculateInertia(this.halfExtents,e,f),f},n.calculateInertia=function(e,f,n){var o=e;n.x=1/12*f*(2*o.y*2*o.y+2*o.z*2*o.z),n.y=1/12*f*(2*o.x*2*o.x+2*o.z*2*o.z),n.z=1/12*f*(2*o.y*2*o.y+2*o.x*2*o.x)},n.prototype.getSideNormals=function(e,f){var n=e,o=this.halfExtents;if(n[0].set(o.x,0,0),n[1].set(0,o.y,0),n[2].set(0,0,o.z),n[3].set(-o.x,0,0),n[4].set(0,-o.y,0),n[5].set(0,0,-o.z),void 0!==f)for(var d=0;d!==n.length;d++)f.vmult(n[d],n[d]);return n},n.prototype.volume=function(){return 8*this.halfExtents.x*this.halfExtents.y*this.halfExtents.z},n.prototype.updateBoundingSphereRadius=function(){this.boundingSphereRadius=this.halfExtents.norm()};{var t=new d;new d}n.prototype.forEachWorldCorner=function(e,f,n){for(var o=this.halfExtents,d=[[o.x,o.y,o.z],[-o.x,o.y,o.z],[-o.x,-o.y,o.z],[-o.x,-o.y,-o.z],[o.x,-o.y,-o.z],[o.x,o.y,-o.z],[-o.x,o.y,-o.z],[o.x,-o.y,o.z]],i=0;it;t++){var i=l[t];f.vmult(i,i),e.vadd(i,i);var u=i.x,p=i.y,s=i.z;u>o.x&&(o.x=u),p>o.y&&(o.y=p),s>o.z&&(o.z=s),ua&&(a=w,c=r)}for(var b=[],m=n.faces[c],N=m.length,g=0;N>g;g++){var x=n.vertices[m[g]],j=new d;j.copy(x),i.vmult(j,j),o.vadd(j,j),b.push(j)}c>=0&&this.clipFaceAgainstHull(t,e,f,b,l,u,s)};var s=new d,y=new d,c=new d,a=new d,r=new d,w=new d;n.prototype.findSeparatingAxis=function(e,f,n,o,d,i,t,l){var u=s,p=y,b=c,m=a,N=r,g=w,x=Number.MAX_VALUE,j=this,v=0;if(j.uniqueAxes)for(var A=0;A!==j.uniqueAxes.length;A++){n.vmult(j.uniqueAxes[A],u);var C=j.testSepAxis(u,e,f,n,o,d);if(C===!1)return!1;x>C&&(x=C,i.copy(u))}else for(var O=t?t.length:j.faces.length,A=0;O>A;A++){var h=t?t[A]:A;u.copy(j.faceNormals[h]),n.vmult(u,u);var C=j.testSepAxis(u,e,f,n,o,d);if(C===!1)return!1;x>C&&(x=C,i.copy(u))}if(e.uniqueAxes)for(var A=0;A!==e.uniqueAxes.length;A++){d.vmult(e.uniqueAxes[A],p),v++;var C=j.testSepAxis(p,e,f,n,o,d);if(C===!1)return!1;x>C&&(x=C,i.copy(p))}else for(var k=l?l.length:e.faces.length,A=0;k>A;A++){var h=l?l[A]:A;p.copy(e.faceNormals[h]),d.vmult(p,p),v++;var C=j.testSepAxis(p,e,f,n,o,d);if(C===!1)return!1;x>C&&(x=C,i.copy(p))}for(var q=0;q!==j.uniqueEdges.length;q++){n.vmult(j.uniqueEdges[q],m);for(var z=0;z!==e.uniqueEdges.length;z++)if(d.vmult(e.uniqueEdges[z],N),m.cross(N,g),!g.almostZero()){g.normalize();var B=j.testSepAxis(g,e,f,n,o,d);if(B===!1)return!1;x>B&&(x=B,i.copy(g))}}return o.vsub(f,b),b.dot(i)>0&&i.negate(i),!0};var b=[],m=[];n.prototype.testSepAxis=function(e,f,o,d,i,t){var l=this;n.project(l,e,o,d,b),n.project(f,e,i,t,m);var u=b[0],p=b[1],s=m[0],y=m[1];if(y>u||p>s)return!1;var c=u-y,a=s-p,r=a>c?c:a;return r};var N=new d,g=new d;n.prototype.calculateLocalInertia=function(e,f){this.computeLocalAABB(N,g);var n=g.x-N.x,o=g.y-N.y,d=g.z-N.z;f.x=1/12*e*(2*o*2*o+2*d*2*d),f.y=1/12*e*(2*n*2*n+2*d*2*d),f.z=1/12*e*(2*o*2*o+2*n*2*n)},n.prototype.getPlaneConstantOfFace=function(e){var f=this.faces[e],n=this.faceNormals[e],o=this.vertices[f[0]],d=-n.dot(o);return d};var x=new d,j=new d,v=new d,A=new d,C=new d,O=new d,h=new d,k=new d;n.prototype.clipFaceAgainstHull=function(e,f,n,o,d,i,t){for(var l=x,u=j,p=v,s=A,y=C,c=O,a=h,r=k,w=this,b=[],m=o,N=b,g=-1,q=Number.MAX_VALUE,z=0;zB&&(q=B,g=z)}if(!(0>g)){var D=w.faces[g];D.connectedFaces=[];for(var E=0;EH;H++){var I=w.vertices[D[H]],J=w.vertices[D[(H+1)%G]];I.vsub(J,u),p.copy(u),n.vmult(p,p),f.vadd(p,p),s.copy(this.faceNormals[g]),n.vmult(s,s),f.vadd(s,s),p.cross(s,y),y.negate(y),c.copy(I),n.vmult(c,c),f.vadd(c,c);var K,L=(-c.dot(y),D.connectedFaces[H]);a.copy(this.faceNormals[L]);var M=this.getPlaneConstantOfFace(L);r.copy(a),n.vmult(r,r);var K=M-r.dot(f);for(this.clipFaceAgainstPlane(m,N,r,K);m.length;)m.shift();for(;N.length;)m.push(N.shift())}a.copy(this.faceNormals[g]);var M=this.getPlaneConstantOfFace(g);r.copy(a),n.vmult(r,r);for(var K=M-r.dot(f),E=0;E=P&&(console.log("clamped: depth="+P+" to minDist="+(d+"")),P=d),i>=P){var Q=m[E];if(0>=P){var R={point:Q,normal:r,depth:P};t.push(R)}}}}},n.prototype.clipFaceAgainstPlane=function(e,f,n,o){var i,t,l=e.length;if(2>l)return f;var u=e[e.length-1],p=e[0];i=n.dot(u)+o;for(var s=0;l>s;s++){if(p=e[s],t=n.dot(p)+o,0>i)if(0>t){var y=new d;y.copy(p),f.push(y)}else{var y=new d;u.lerp(p,i/(i-t),y),f.push(y)}else if(0>t){var y=new d;u.lerp(p,i/(i-t),y),f.push(y),f.push(p)}u=p,i=t}return f},n.prototype.computeWorldVertices=function(e,f){for(var n=this.vertices.length;this.worldVertices.lengthd;d++){var i=o[d];i.xf.x&&(f.x=i.x),i.yf.y&&(f.y=i.y),i.zf.z&&(f.z=i.z)}},n.prototype.computeWorldFaceNormals=function(e){for(var f=this.faceNormals.length;this.worldFaceNormals.lengthe&&(e=d)}this.boundingSphereRadius=Math.sqrt(e)};var q=new d;n.prototype.calculateWorldAABB=function(e,f,n,o){for(var d,i,t,l,u,p,s=this.vertices.length,y=this.vertices,c=0;s>c;c++){q.copy(y[c]),f.vmult(q,q),e.vadd(q,q);var a=q;a.xl||void 0===l)&&(l=a.x),a.yu||void 0===u)&&(u=a.y),a.zp||void 0===p)&&(p=a.z)}n.set(d,i,t),o.set(l,u,p)},n.prototype.volume=function(){return 4*Math.PI*this.boundingSphereRadius/3},n.prototype.getAveragePointLocal=function(e){e=e||new d;for(var f=this.vertices.length,n=this.vertices,o=0;f>o;o++)e.vadd(n[o],e);return e.mult(1/f,e),e},n.prototype.transformAllPoints=function(e,f){var n=this.vertices.length,o=this.vertices;if(f){for(var d=0;n>d;d++){var i=o[d];f.vmult(i,i)}for(var d=0;dd;d++){var i=o[d];i.vadd(e,i)}};var z=new d,B=new d,D=new d;n.prototype.pointIsInside=function(e){var f=this.vertices.length,n=this.vertices,o=this.faces,d=this.faceNormals,i=null,t=this.faces.length,l=z;this.getAveragePointLocal(l);for(var u=0;t>u;u++){var f=(this.faces[u].length,d[u]),p=n[o[u][0]],s=B;e.vsub(p,s);var y=f.dot(s),c=D;l.vsub(p,c);var a=f.dot(c);if(0>y&&a>0||y>0&&0>a)return!1}return i?1:-1};var E=(new d,new d),F=new d;n.project=function(e,f,n,o,d){var t=e.vertices.length,l=E,u=0,p=0,s=F,y=e.vertices;s.setZero(),i.vectorToLocalFrame(n,o,f,l),i.pointToLocalFrame(n,o,s,s);var c=s.dot(l);p=u=y[0].dot(l);for(var a=1;t>a;a++){var r=y[a].dot(l);r>u&&(u=r),p>r&&(p=r)}if(p-=c,u-=c,p>u){var w=p;p=u,u=w}d[0]=u,d[1]=p}},{"../math/Quaternion":28,"../math/Transform":29,"../math/Vec3":30,"./Shape":43}],39:[function(e,f){function n(e,f,n,t){var l=t,u=[],p=[],s=[],y=[],c=[],a=Math.cos,r=Math.sin;u.push(new d(f*a(0),f*r(0),.5*-n)),y.push(0),u.push(new d(e*a(0),e*r(0),.5*n)),c.push(1);for(var w=0;l>w;w++){var b=2*Math.PI/l*(w+1),m=2*Math.PI/l*(w+.5);l-1>w?(u.push(new d(f*a(b),f*r(b),.5*-n)),y.push(2*w+2),u.push(new d(e*a(b),e*r(b),.5*n)),c.push(2*w+3),s.push([2*w+2,2*w+3,2*w+1,2*w])):s.push([0,1,2*w+1,2*w]),(l%2===1||l/2>w)&&p.push(new d(a(m),r(m),0))}s.push(c),p.push(new d(0,0,1));for(var N=[],w=0;wd&&(f=d)}this.minValue=f},n.prototype.updateMaxValue=function(){for(var e=this.data,f=e[0][0],n=0;n!==e.length;n++)for(var o=0;o!==e[n].length;o++){var d=e[n][o];d>f&&(f=d)}this.maxValue=f},n.prototype.setHeightValueAtIndex=function(e,f,n){var o=this.data;o[e][f]=n,this.clearCachedConvexTrianglePillar(e,f,!1),e>0&&(this.clearCachedConvexTrianglePillar(e-1,f,!0),this.clearCachedConvexTrianglePillar(e-1,f,!1)),f>0&&(this.clearCachedConvexTrianglePillar(e,f-1,!0),this.clearCachedConvexTrianglePillar(e,f-1,!1)),f>0&&e>0&&this.clearCachedConvexTrianglePillar(e-1,f-1,!0)},n.prototype.getRectMinMax=function(e,f,n,o,d){d=d||[];for(var i=this.data,t=this.minValue,l=e;n>=l;l++)for(var u=f;o>=u;u++){var p=i[l][u];p>t&&(t=p)}d[0]=this.minValue,d[1]=t},n.prototype.getIndexOfPosition=function(e,f,n,o){var d=this.elementSize,i=this.data,t=Math.floor(e/d),l=Math.floor(f/d);return n[0]=t,n[1]=l,o&&(0>t&&(t=0),0>l&&(l=0),t>=i.length-1&&(t=i.length-1),l>=i[0].length-1&&(l=i[0].length-1)),0>t||0>l||t>=i.length-1||l>=i[0].length-1?!1:!0},n.prototype.getHeightAt=function(e,f,n){var o=[];this.getIndexOfPosition(e,f,o,n);var d=[];return this.getRectMinMax(o[0],o[1]+1,o[0],o[1]+1,d),(d[0]+d[1])/2},n.prototype.getCacheConvexTrianglePillarKey=function(e,f,n){return e+"_"+f+"_"+(n?1:0)},n.prototype.getCachedConvexTrianglePillar=function(e,f,n){return this._cachedPillars[this.getCacheConvexTrianglePillarKey(e,f,n)]},n.prototype.setCachedConvexTrianglePillar=function(e,f,n,o,d){this._cachedPillars[this.getCacheConvexTrianglePillarKey(e,f,n)]={convex:o,offset:d}},n.prototype.clearCachedConvexTrianglePillar=function(e,f,n){delete this._cachedPillars[this.getCacheConvexTrianglePillarKey(e,f,n)]},n.prototype.getConvexTrianglePillar=function(e,f,n){var o=this.pillarConvex,t=this.pillarOffset;if(this.cacheEnabled){var l=this.getCachedConvexTrianglePillar(e,f,n);if(l)return this.pillarConvex=l.convex,void(this.pillarOffset=l.offset);o=new d,t=new i,this.pillarConvex=o,this.pillarOffset=t}var l=this.data,u=this.elementSize,p=o.faces;o.vertices.length=6;for(var s=0;6>s;s++)o.vertices[s]||(o.vertices[s]=new i);p.length=5;for(var s=0;5>s;s++)p[s]||(p[s]=[]);var y=o.vertices,c=(Math.min(l[e][f],l[e+1][f],l[e][f+1],l[e+1][f+1])-this.minValue)/2+this.minValue;n?(t.set((e+.75)*u,(f+.75)*u,c),y[0].set(.25*u,.25*u,l[e+1][f+1]-c),y[1].set(-.75*u,.25*u,l[e][f+1]-c),y[2].set(.25*u,-.75*u,l[e+1][f]-c),y[3].set(.25*u,.25*u,-c-1),y[4].set(-.75*u,.25*u,-c-1),y[5].set(.25*u,-.75*u,-c-1),p[0][0]=0,p[0][1]=1,p[0][2]=2,p[1][0]=5,p[1][1]=4,p[1][2]=3,p[2][0]=2,p[2][1]=5,p[2][2]=3,p[2][3]=0,p[3][0]=3,p[3][1]=4,p[3][2]=1,p[3][3]=0,p[4][0]=1,p[4][1]=4,p[4][2]=5,p[4][3]=2):(t.set((e+.25)*u,(f+.25)*u,c),y[0].set(-.25*u,-.25*u,l[e][f]-c),y[1].set(.75*u,-.25*u,l[e+1][f]-c),y[2].set(-.25*u,.75*u,l[e][f+1]-c),y[3].set(-.25*u,-.25*u,-c-1),y[4].set(.75*u,-.25*u,-c-1),y[5].set(-.25*u,.75*u,-c-1),p[0][0]=0,p[0][1]=1,p[0][2]=2,p[1][0]=5,p[1][1]=4,p[1][2]=3,p[2][0]=0,p[2][1]=2,p[2][2]=5,p[2][3]=3,p[3][0]=1,p[3][1]=0,p[3][2]=3,p[3][3]=4,p[4][0]=4,p[4][1]=5,p[4][2]=2,p[4][3]=1),o.computeNormals(),o.computeEdges(),o.updateBoundingSphereRadius(),this.setCachedConvexTrianglePillar(e,f,n,o,t)},n.prototype.calculateLocalInertia=function(e,f){return f=f||new i,f.set(0,0,0),f},n.prototype.volume=function(){return Number.MAX_VALUE},n.prototype.calculateWorldAABB=function(e,f,n,o){n.set(-Number.MAX_VALUE,-Number.MAX_VALUE,-Number.MAX_VALUE),o.set(Number.MAX_VALUE,Number.MAX_VALUE,Number.MAX_VALUE)},n.prototype.updateBoundingSphereRadius=function(){var e=this.data,f=this.elementSize;this.boundingSphereRadius=new i(e.length*f,e[0].length*f,Math.max(Math.abs(this.maxValue),Math.abs(this.minValue))).norm()}},{"../math/Vec3":30,"../utils/Utils":53,"./ConvexPolyhedron":38,"./Shape":43}],41:[function(e,f){function n(){o.call(this),this.type=o.types.PARTICLE}f.exports=n;var o=e("./Shape"),d=e("../math/Vec3");n.prototype=new o,n.prototype.constructor=n,n.prototype.calculateLocalInertia=function(e,f){return f=f||new d,f.set(0,0,0),f},n.prototype.volume=function(){return 0},n.prototype.updateBoundingSphereRadius=function(){this.boundingSphereRadius=0},n.prototype.calculateWorldAABB=function(e,f,n,o){n.copy(e),o.copy(e)}},{"../math/Vec3":30,"./Shape":43}],42:[function(e,f){function n(){o.call(this),this.type=o.types.PLANE,this.worldNormal=new d,this.worldNormalNeedsUpdate=!0,this.boundingSphereRadius=Number.MAX_VALUE}f.exports=n;var o=e("./Shape"),d=e("../math/Vec3");n.prototype=new o,n.prototype.constructor=n,n.prototype.computeWorldNormal=function(e){var f=this.worldNormal;f.set(0,0,1),e.vmult(f,f),this.worldNormalNeedsUpdate=!1},n.prototype.calculateLocalInertia=function(e,f){return f=f||new d},n.prototype.volume=function(){return Number.MAX_VALUE};var i=new d;n.prototype.calculateWorldAABB=function(e,f,n,o){i.set(0,0,1),f.vmult(i,i);var d=Number.MAX_VALUE;n.set(-d,-d,-d),o.set(d,d,d),1===i.x&&(o.x=e.x),1===i.y&&(o.y=e.y),1===i.z&&(o.z=e.z),-1===i.x&&(n.x=e.x),-1===i.y&&(n.y=e.y),-1===i.z&&(n.z=e.z)},n.prototype.updateBoundingSphereRadius=function(){this.boundingSphereRadius=Number.MAX_VALUE}},{"../math/Vec3":30,"./Shape":43}],43:[function(e,f){function n(){this.id=n.idCounter++,this.type=0,this.boundingSphereRadius=0,this.collisionResponse=!0,this.material=null}f.exports=n;{var n=e("./Shape");e("../math/Vec3"),e("../math/Quaternion"),e("../material/Material")}n.prototype.constructor=n,n.prototype.updateBoundingSphereRadius=function(){throw"computeBoundingSphereRadius() not implemented for shape type "+this.type},n.prototype.volume=function(){throw"volume() not implemented for shape type "+this.type},n.prototype.calculateLocalInertia=function(){throw"calculateLocalInertia() not implemented for shape type "+this.type},n.idCounter=0,n.types={SPHERE:1,PLANE:2,BOX:4,COMPOUND:8,CONVEXPOLYHEDRON:16,HEIGHTFIELD:32,PARTICLE:64,CYLINDER:128,TRIMESH:256}},{"../material/Material":25,"../math/Quaternion":28,"../math/Vec3":30,"./Shape":43}],44:[function(e,f){function n(e){if(o.call(this),this.radius=void 0!==e?Number(e):1,this.type=o.types.SPHERE,this.radius<0)throw new Error("The sphere radius cannot be negative.");this.updateBoundingSphereRadius()}f.exports=n;var o=e("./Shape"),d=e("../math/Vec3");n.prototype=new o,n.prototype.constructor=n,n.prototype.calculateLocalInertia=function(e,f){f=f||new d;var n=2*e*this.radius*this.radius/5;return f.x=n,f.y=n,f.z=n,f},n.prototype.volume=function(){return 4*Math.PI*this.radius/3},n.prototype.updateBoundingSphereRadius=function(){this.boundingSphereRadius=this.radius},n.prototype.calculateWorldAABB=function(e,f,n,o){for(var d=this.radius,i=["x","y","z"],t=0;td?d+"_"+i:i+"_"+d;e[f]=!0},n=0;nn.x&&(n.x=d.x),d.yn.y&&(n.y=d.y),d.zn.z&&(n.z=d.z)},n.prototype.updateAABB=function(){this.computeLocalAABB(this.aabb)},n.prototype.updateBoundingSphereRadius=function(){for(var e=0,f=this.vertices,n=new d,o=0,i=f.length/3;o!==i;o++){this.getVertex(o,n);var t=n.norm2();t>e&&(e=t)}this.boundingSphereRadius=Math.sqrt(e)};var g=(new d,new i),x=new t;n.prototype.calculateWorldAABB=function(e,f,n,o){var d=g,i=x;d.position=e,d.quaternion=f,this.aabb.toWorldFrame(d,i),n.copy(i.lowerBound),o.copy(i.upperBound)},n.prototype.volume=function(){return 4*Math.PI*this.boundingSphereRadius/3},n.createTorus=function(e,f,o,d,i){e=e||1,f=f||.5,o=o||8,d=d||6,i=i||2*Math.PI;for(var t=[],l=[],u=0;o>=u;u++)for(var p=0;d>=p;p++){var s=p/d*i,y=u/o*Math.PI*2,c=(e+f*Math.cos(y))*Math.cos(s),a=(e+f*Math.cos(y))*Math.sin(s),r=f*Math.sin(y);t.push(c,a,r)}for(var u=1;o>=u;u++)for(var p=1;d>=p;p++){var w=(d+1)*u+p-1,b=(d+1)*(u-1)+p-1,m=(d+1)*(u-1)+p,N=(d+1)*u+p;l.push(w,b,N),l.push(b,m,N)}return new n(t,l)}},{"../collision/AABB":3,"../math/Quaternion":28,"../math/Transform":29,"../math/Vec3":30,"../utils/Octree":50,"./Shape":43}],46:[function(e,f){function n(){o.call(this),this.iterations=10,this.tolerance=1e-7}f.exports=n;var o=(e("../math/Vec3"),e("../math/Quaternion"),e("./Solver"));n.prototype=new o;var d=[],i=[],t=[];n.prototype.solve=function(e,f){var n,o,l,u,p,s,y=0,c=this.iterations,a=this.tolerance*this.tolerance,r=this.equations,w=r.length,b=f.bodies,m=b.length,N=e;if(0!==w)for(var g=0;g!==m;g++)b[g].updateSolveMassProperties();var x=i,j=t,v=d; +x.length=w,j.length=w,v.length=w;for(var g=0;g!==w;g++){var A=r[g];v[g]=0,j[g]=A.computeB(N),x[g]=1/A.computeC()}if(0!==w){for(var g=0;g!==m;g++){var C=b[g],O=C.vlambda,h=C.wlambda;O.set(0,0,0),h&&h.set(0,0,0)}for(y=0;y!==c;y++){u=0;for(var k=0;k!==w;k++){var A=r[k];n=j[k],o=x[k],s=v[k],p=A.computeGWlambda(),l=o*(n-p-A.eps*s),s+lA.maxForce&&(l=A.maxForce-s),v[k]+=l,u+=l>0?l:-l,A.addToWlambda(l)}if(a>u*u)break}for(var g=0;g!==m;g++){var C=b[g],q=C.velocity,z=C.angularVelocity;q.vadd(C.vlambda,q),z&&z.vadd(C.wlambda,z)}}return y}},{"../math/Quaternion":28,"../math/Vec3":30,"./Solver":47}],47:[function(e,f){function n(){this.equations=[]}f.exports=n,n.prototype.solve=function(){return 0},n.prototype.addEquation=function(e){e.enabled&&this.equations.push(e)},n.prototype.removeEquation=function(e){var f=this.equations,n=f.indexOf(e);-1!==n&&f.splice(n,1)},n.prototype.removeAllEquations=function(){this.equations.length=0}},{}],48:[function(e,f){function n(e){for(l.call(this),this.iterations=10,this.tolerance=1e-7,this.subsolver=e,this.nodes=[],this.nodePool=[];this.nodePool.length<128;)this.nodePool.push(this.createNode())}function o(e){for(var f=e.length,n=0;n!==f;n++){var o=e[n];if(!(o.visited||o.body.type&c))return o}return!1}function d(e,f,n,d){for(a.push(e),e.visited=!0,f(e,n,d);a.length;)for(var i,t=a.pop();i=o(t.children);)i.visited=!0,f(i,n,d),a.push(i)}function i(e,f,n){f.push(e.body);for(var o=e.eqs.length,d=0;d!==o;d++){var i=e.eqs[d];-1===n.indexOf(i)&&n.push(i)}}function t(e,f){return f.id-e.id}f.exports=n;var l=(e("../math/Vec3"),e("../math/Quaternion"),e("./Solver")),u=e("../objects/Body");n.prototype=new l;var p=[],s=[],y={bodies:[]},c=u.STATIC,a=[];n.prototype.createNode=function(){return{body:null,children:[],eqs:[],visited:!1}},n.prototype.solve=function(e,f){for(var n=p,l=this.nodePool,u=f.bodies,c=this.equations,a=c.length,r=u.length,w=this.subsolver;l.lengthb;b++)n[b]=l[b];for(var b=0;b!==r;b++){var m=n[b];m.body=u[b],m.children.length=0,m.eqs.length=0,m.visited=!1}for(var N=0;N!==a;N++){var g=c[N],b=u.indexOf(g.bi),x=u.indexOf(g.bj),j=n[b],v=n[x];j.children.push(v),j.eqs.push(g),v.children.push(j),v.eqs.push(g)}var A,C=0,O=s;w.tolerance=this.tolerance,w.iterations=this.iterations;for(var h=y;A=o(n);){O.length=0,h.bodies.length=0,d(A,i,h.bodies,O);var k=O.length;O=O.sort(t);for(var b=0;b!==k;b++)w.addEquation(O[b]);{w.solve(e,h)}w.removeAllEquations(),C++}return C}},{"../math/Quaternion":28,"../math/Vec3":30,"../objects/Body":31,"./Solver":47}],49:[function(e,f){var n=function(){};f.exports=n,n.prototype={constructor:n,addEventListener:function(e,f){void 0===this._listeners&&(this._listeners={});var n=this._listeners;return void 0===n[e]&&(n[e]=[]),-1===n[e].indexOf(f)&&n[e].push(f),this},hasEventListener:function(e,f){if(void 0===this._listeners)return!1;var n=this._listeners;return void 0!==n[e]&&-1!==n[e].indexOf(f)?!0:!1},removeEventListener:function(e,f){if(void 0===this._listeners)return this;var n=this._listeners;if(void 0===n[e])return this;var o=n[e].indexOf(f);return-1!==o&&n[e].splice(o,1),this},dispatchEvent:function(e){if(void 0===this._listeners)return this;var f=this._listeners,n=f[e.type];if(void 0!==n){e.target=this;for(var o=0,d=n.length;d>o;o++)n[o].call(this,e)}return this}}},{}],50:[function(e,f){function n(e){e=e||{},this.root=e.root||null,this.aabb=e.aabb?e.aabb.clone():new d,this.data=[],this.children=[]}function o(e,f){f=f||{},f.root=null,f.aabb=e,n.call(this,f),this.maxDepth="undefined"!=typeof f.maxDepth?f.maxDepth:8}var d=e("../collision/AABB"),i=e("../math/Vec3");f.exports=o,o.prototype=new n,n.prototype.reset=function(){this.children.length=this.data.length=0},n.prototype.insert=function(e,f,n){var o=this.data;if(n=n||0,!this.aabb.contains(e))return!1;var d=this.children;if(n<(this.maxDepth||this.root.maxDepth)){var i=!1;d.length||(this.subdivide(),i=!0);for(var t=0;8!==t;t++)if(d[t].insert(e,f,n+1))return!0;i&&(d.length=0)}return o.push(f),!0};var t=new i;n.prototype.subdivide=function(){var e=this.aabb,f=e.lowerBound,o=e.upperBound,l=this.children;l.push(new n({aabb:new d({lowerBound:new i(0,0,0)})}),new n({aabb:new d({lowerBound:new i(1,0,0)})}),new n({aabb:new d({lowerBound:new i(1,1,0)})}),new n({aabb:new d({lowerBound:new i(1,1,1)})}),new n({aabb:new d({lowerBound:new i(0,1,1)})}),new n({aabb:new d({lowerBound:new i(0,0,1)})}),new n({aabb:new d({lowerBound:new i(1,0,1)})}),new n({aabb:new d({lowerBound:new i(0,1,0)})})),o.vsub(f,t),t.scale(.5,t);for(var u=this.root||this,p=0;8!==p;p++){var s=l[p];s.root=u;var y=s.aabb.lowerBound;y.x*=t.x,y.y*=t.y,y.z*=t.z,y.vadd(f,y),y.vadd(t,s.aabb.upperBound)}},n.prototype.aabbQuery=function(e,f){for(var n=(this.data,this.children,[this]);n.length;){var o=n.pop();o.aabb.overlaps(e)&&Array.prototype.push.apply(f,o.data),Array.prototype.push.apply(n,o.children)}return f};var l=new d;n.prototype.rayQuery=function(e,f,n){return e.getAABB(l),l.toLocalFrame(f,l),this.aabbQuery(l,n),n},n.prototype.removeEmptyNodes=function(){for(var e=[this];e.length;){for(var f=e.pop(),n=f.children.length-1;n>=0;n--)f.children[n].data.length||f.children.splice(n,1);Array.prototype.push.apply(e,f.children)}}},{"../collision/AABB":3,"../math/Vec3":30}],51:[function(e,f){function n(){this.objects=[],this.type=Object}f.exports=n,n.prototype.release=function(){for(var e=arguments.length,f=0;f!==e;f++)this.objects.push(arguments[f])},n.prototype.get=function(){return 0===this.objects.length?this.constructObject():this.objects.pop()},n.prototype.constructObject=function(){throw new Error("constructObject() not implemented in this Pool subclass yet!")}},{}],52:[function(e,f){function n(){this.data={keys:[]}}f.exports=n,n.prototype.get=function(e,f){if(e>f){var n=f;f=e,e=n}return this.data[e+"-"+f]},n.prototype.set=function(e,f,n){if(e>f){var o=f;f=e,e=o}var d=e+"-"+f;this.get(e,f)||this.data.keys.push(d),this.data[d]=n},n.prototype.reset=function(){for(var e=this.data,f=e.keys;f.length>0;){var n=f.pop();delete e[n]}}},{}],53:[function(e,f){function n(){}f.exports=n,n.defaults=function(e,f){e=e||{};for(var n in f)n in e||(e[n]=f[n]);return e}},{}],54:[function(e,f){function n(){d.call(this),this.type=o}f.exports=n;var o=e("../math/Vec3"),d=e("./Pool");n.prototype=new d,n.prototype.constructObject=function(){return new o}},{"../math/Vec3":30,"./Pool":51}],55:[function(e,f){function n(e){this.contactPointPool=[],this.frictionEquationPool=[],this.result=[],this.frictionResult=[],this.v3pool=new s,this.world=e,this.currentContactMaterial=null,this.enableFrictionReduction=!1}function o(e,f,n){for(var o=null,d=e.length,i=0;i!==d;i++){var t=e[i],l=M;e[(i+1)%d].vsub(t,l);var u=P;l.cross(f,u);var p=Q;n.vsub(t,p);var s=u.dot(p);if(!(null===o||s>0&&o===!0||0>=s&&o===!1))return!1;null===o&&(o=s>0)}return!0}f.exports=n;var d=e("../collision/AABB"),i=e("../shapes/Shape"),t=e("../collision/Ray"),l=e("../math/Vec3"),u=e("../math/Transform"),p=(e("../shapes/ConvexPolyhedron"),e("../math/Quaternion")),s=(e("../solver/Solver"),e("../utils/Vec3Pool")),y=e("../equations/ContactEquation"),c=e("../equations/FrictionEquation");n.prototype.createContactEquation=function(e,f,n,o,d,i){var t;this.contactPointPool.length?(t=this.contactPointPool.pop(),t.bi=e,t.bj=f):t=new y(e,f),t.enabled=e.collisionResponse&&f.collisionResponse&&n.collisionResponse&&o.collisionResponse;var l=this.currentContactMaterial;t.restitution=l.restitution,t.setSpookParams(l.contactEquationStiffness,l.contactEquationRelaxation,this.world.dt);var u=n.material||e.material,p=o.material||f.material;return u&&p&&u.restitution>=0&&p.restitution>=0&&(t.restitution=u.restitution*p.restitution),t.si=d||n,t.sj=i||o,t},n.prototype.createFrictionEquationsFromContact=function(e,f){var n=e.bi,o=e.bj,d=e.si,i=e.sj,t=this.world,l=this.currentContactMaterial,u=l.friction,p=d.material||n.material,s=i.material||o.material;if(p&&s&&p.friction>=0&&s.friction>=0&&(u=p.friction*s.friction),u>0){var y=u*t.gravity.length(),a=n.invMass+o.invMass;a>0&&(a=1/a);var r=this.frictionEquationPool,w=r.length?r.pop():new c(n,o,y*a),b=r.length?r.pop():new c(n,o,y*a);return w.bi=b.bi=n,w.bj=b.bj=o,w.minForce=b.minForce=-y*a,w.maxForce=b.maxForce=y*a,w.ri.copy(e.ri),w.rj.copy(e.rj),b.ri.copy(e.ri),b.rj.copy(e.rj),e.ni.tangents(w.t,b.t),w.setSpookParams(l.frictionEquationStiffness,l.frictionEquationRelaxation,t.dt),b.setSpookParams(l.frictionEquationStiffness,l.frictionEquationRelaxation,t.dt),w.enabled=b.enabled=e.enabled,f.push(w,b),!0}return!1};var a=new l,r=new l,w=new l;n.prototype.createFrictionFromAverage=function(e){var f=this.result[this.result.length-1];if(this.createFrictionEquationsFromContact(f,this.frictionResult)&&1!==e){var n=this.frictionResult[this.frictionResult.length-2],o=this.frictionResult[this.frictionResult.length-1];a.setZero(),r.setZero(),w.setZero();for(var d=f.bi,i=(f.bj,0);i!==e;i++)f=this.result[this.result.length-1-i],f.bodyA!==d?(a.vadd(f.ni,a),r.vadd(f.ri,r),w.vadd(f.rj,w)):(a.vsub(f.ni,a),r.vadd(f.rj,r),w.vadd(f.ri,w));var t=1/e;r.scale(t,n.ri),w.scale(t,n.rj),o.ri.copy(n.ri),o.rj.copy(n.rj),a.normalize(),a.tangents(n.t,o.t)}};var b=new l,m=new l,N=new p,g=new p;n.prototype.getContacts=function(e,f,n,o,d,i,t){this.contactPointPool=d,this.frictionEquationPool=t,this.result=o,this.frictionResult=i;for(var l=N,u=g,p=b,s=m,y=0,c=e.length;y!==c;y++){var a=e[y],r=f[y],w=null;a.material&&r.material&&(w=n.getContactMaterial(a.material,r.material)||null);for(var x=0;xj.boundingSphereRadius+A.boundingSphereRadius)){var C=null;j.material&&A.material&&(C=n.getContactMaterial(j.material,A.material)||null),this.currentContactMaterial=C||w||n.defaultContactMaterial;var O=this[j.type|A.type];O&&(j.type=w){var b=this.createContactEquation(t,p,e,f);b.ni.copy(y);var m=v;y.scale(r.dot(y),m),s.vsub(m,m),b.ri.copy(m),b.ri.vsub(t.position,b.ri),b.rj.copy(s),b.rj.vsub(p.position,b.rj),this.result.push(b),this.createFrictionEquationsFromContact(b,this.frictionResult)}}};var A=new l,C=new l,O=(new l,new l),h=new l,k=new l,q=new l,z=new l,B=new l,D=new l,E=new l,F=new l,G=new l,H=new l,I=new d,J=[];n.prototype[i.types.SPHERE|i.types.TRIMESH]=n.prototype.sphereTrimesh=function(e,f,n,o,d,i,l,p){var s=k,y=q,c=z,a=B,r=D,w=E,b=I,m=h,N=C,g=J;u.pointToLocalFrame(o,i,n,r);var x=e.radius;b.lowerBound.set(r.x-x,r.y-x,r.z-x),b.upperBound.set(r.x+x,r.y+x,r.z+x),f.getTrianglesInAABB(b,g);for(var j=O,v=e.radius*e.radius,K=0;KL;L++)if(f.getVertex(f.indices[3*g[K]+L],j),j.vsub(r,N),N.norm2()<=v){m.copy(j),u.pointToWorldFrame(o,i,m,j),j.vsub(n,N);var M=this.createContactEquation(l,p,e,f);M.ni.copy(N),M.ni.normalize(),M.ri.copy(M.ni),M.ri.scale(e.radius,M.ri),M.ri.vadd(n,M.ri),M.ri.vsub(l.position,M.ri),M.rj.copy(j),M.rj.vsub(p.position,M.rj),this.result.push(M),this.createFrictionEquationsFromContact(M,this.frictionResult)}for(var K=0;KL;L++){f.getVertex(f.indices[3*g[K]+L],s),f.getVertex(f.indices[3*g[K]+(L+1)%3],y),y.vsub(s,c),r.vsub(y,w);var P=w.dot(c);r.vsub(s,w);var Q=w.dot(c);if(Q>0&&0>P){r.vsub(s,w),a.copy(c),a.normalize(),Q=w.dot(a),a.scale(Q,w),w.vadd(s,w);var R=w.distanceTo(r);if(RC&&C>0){var O=T,h=U;O.copy(p[(x+1)%3]),h.copy(p[(x+2)%3]);var k=O.norm(),q=h.norm();O.normalize(),h.normalize();var z=R.dot(O),B=R.dot(h);if(k>z&&z>-k&&q>B&&B>-q){var D=Math.abs(C-A-s);(null===g||g>D)&&(g=D,m=z,N=B,w=A,c.copy(v),a.copy(O),r.copy(h),b++)}}}if(b){y=!0;var E=this.createContactEquation(t,l,e,f);c.mult(-s,E.ri),E.ni.copy(c),E.ni.negate(E.ni),c.mult(w,c),a.mult(m,a),c.vadd(a,c),r.mult(N,r),c.vadd(r,E.rj),E.ri.vadd(n,E.ri),E.ri.vsub(t.position,E.ri),E.rj.vadd(o,E.rj),E.rj.vsub(l.position,E.rj),this.result.push(E),this.createFrictionEquationsFromContact(E,this.frictionResult)}for(var F=u.get(),G=W,H=0;2!==H&&!y;H++)for(var I=0;2!==I&&!y;I++)for(var J=0;2!==J&&!y;J++)if(F.set(0,0,0),H?F.vadd(p[0],F):F.vsub(p[0],F),I?F.vadd(p[1],F):F.vsub(p[1],F),J?F.vadd(p[2],F):F.vsub(p[2],F),o.vadd(F,G),G.vsub(n,G),G.norm2()_){y=!0;var ef=this.createContactEquation(t,l,e,f);L.vadd(M,ef.rj),ef.rj.copy(ef.rj),D.negate(ef.ni),ef.ni.normalize(),ef.ri.copy(ef.rj),ef.ri.vadd(o,ef.ri),ef.ri.vsub(n,ef.ri),ef.ri.normalize(),ef.ri.mult(s,ef.ri),ef.ri.vadd(n,ef.ri),ef.ri.vsub(t.position,ef.ri),ef.rj.vadd(o,ef.rj),ef.rj.vsub(l.position,ef.rj),this.result.push(ef),this.createFrictionEquationsFromContact(ef,this.frictionResult)}}u.release(K,L,E,M,D)};var $=new l,_=new l,ef=new l,ff=new l,nf=new l,of=new l,df=new l,tf=new l,lf=new l,uf=new l;n.prototype[i.types.SPHERE|i.types.CONVEXPOLYHEDRON]=n.prototype.sphereConvex=function(e,f,n,d,i,t,l,u){var p=this.v3pool;n.vsub(d,$);for(var s=f.faceNormals,y=f.faces,c=f.vertices,a=e.radius,r=0;r!==c.length;r++){var w=c[r],b=nf;t.vmult(w,b),d.vadd(b,b);var m=ff;if(b.vsub(n,m),m.norm2()k&&q.dot(A)>0){for(var z=[],B=0,D=v.length;B!==D;B++){var E=p.get();t.vmult(c[v[B]],E),d.vadd(E,E),z.push(E)}if(o(z,A,n)){g=!0;var N=this.createContactEquation(l,u,e,f);A.mult(-a,N.ri),A.negate(N.ni);var F=p.get();A.mult(-k,F);var G=p.get();A.mult(-a,G),n.vsub(d,N.rj),N.rj.vadd(G,N.rj),N.rj.vadd(F,N.rj),N.rj.vadd(d,N.rj),N.rj.vsub(u.position,N.rj),N.ri.vadd(n,N.ri),N.ri.vsub(l.position,N.ri),p.release(F),p.release(G),this.result.push(N),this.createFrictionEquationsFromContact(N,this.frictionResult);for(var B=0,H=z.length;B!==H;B++)p.release(z[B]);return}for(var B=0;B!==v.length;B++){var I=p.get(),J=p.get();t.vmult(c[v[(B+1)%v.length]],I),t.vmult(c[v[(B+2)%v.length]],J),d.vadd(I,I),d.vadd(J,J);var K=_;J.vsub(I,K);var L=ef;K.unit(L);var M=p.get(),P=p.get();n.vsub(I,P);var Q=P.dot(L);L.mult(Q,M),M.vadd(I,M);var R=p.get();if(M.vsub(n,R),Q>0&&Q*Q=a){var r=this.createContactEquation(t,l,e,f),w=cf;p.mult(p.dot(y),w),u.vsub(w,w),w.vsub(n,r.ri),r.ni.copy(p),u.vsub(o,r.rj),r.ri.vadd(n,r.ri),r.ri.vsub(t.position,r.ri),r.rj.vadd(o,r.rj),r.rj.vsub(l.position,r.rj),this.result.push(r),s++,this.enableFrictionReduction||this.createFrictionEquationsFromContact(r,this.frictionResult)}}this.enableFrictionReduction&&s&&this.createFrictionFromAverage(s)};var af=new l,rf=new l;n.prototype[i.types.CONVEXPOLYHEDRON]=n.prototype.convexConvex=function(e,f,n,o,d,i,t,l,u,p,s,y){var c=af;if(!(n.distanceTo(o)>e.boundingSphereRadius+f.boundingSphereRadius)&&e.findSeparatingAxis(f,n,d,o,i,c,s,y)){var a=[],r=rf;e.clipAgainstHull(n,d,f,o,i,c,-100,100,a);for(var w=0,b=0;b!==a.length;b++){var m=this.createContactEquation(t,l,e,f,u,p),N=m.ri,g=m.rj;c.negate(m.ni),a[b].normal.negate(r),r.mult(a[b].depth,r),a[b].point.vadd(r,N),g.copy(a[b].point),N.vsub(n,N),g.vsub(o,g),N.vadd(n,N),N.vsub(t.position,N),g.vadd(o,g),g.vsub(l.position,g),this.result.push(m),w++,this.enableFrictionReduction||this.createFrictionEquationsFromContact(m,this.frictionResult)}this.enableFrictionReduction&&w&&this.createFrictionFromAverage(w)}};var wf=new l,bf=new l,mf=new l;n.prototype[i.types.PLANE|i.types.PARTICLE]=n.prototype.planeParticle=function(e,f,n,o,d,i,t,l){var u=wf;u.set(0,0,1),t.quaternion.vmult(u,u);var p=bf;o.vsub(t.position,p);var s=u.dot(p);if(0>=s){var y=this.createContactEquation(l,t,f,e);y.ni.copy(u),y.ni.negate(y.ni),y.ri.set(0,0,0);var c=mf;u.mult(u.dot(o),c),o.vsub(c,c),y.rj.copy(c),this.result.push(y),this.createFrictionEquationsFromContact(y,this.frictionResult)}};var Nf=new l;n.prototype[i.types.PARTICLE|i.types.SPHERE]=n.prototype.sphereParticle=function(e,f,n,o,d,i,t,l){var u=Nf;u.set(0,0,1),o.vsub(n,u);var p=u.norm2();if(p<=e.radius*e.radius){var s=this.createContactEquation(l,t,f,e);u.normalize(),s.rj.copy(u),s.rj.mult(e.radius,s.rj),s.ni.copy(u),s.ni.negate(s.ni),s.ri.set(0,0,0),this.result.push(s),this.createFrictionEquationsFromContact(s,this.frictionResult)}};var gf=new p,xf=new l,jf=(new l,new l),vf=new l,Af=new l;n.prototype[i.types.PARTICLE|i.types.CONVEXPOLYHEDRON]=n.prototype.convexParticle=function(e,f,n,o,d,i,t,l){var u=-1,p=jf,s=Af,y=null,c=0,a=xf;if(a.copy(o),a.vsub(n,a),d.conjugate(gf),gf.vmult(a,a),e.pointIsInside(a)){e.worldVerticesNeedsUpdate&&e.computeWorldVertices(n,d),e.worldFaceNormalsNeedsUpdate&&e.computeWorldFaceNormals(d);for(var r=0,w=e.faces.length;r!==w;r++){var b=[e.worldVertices[e.faces[r][0]]],m=e.worldFaceNormals[r];o.vsub(b[0],vf);var N=-m.dot(vf);(null===y||Math.abs(N)b||0>N||w>p.length||m>p[0].length)){0>w&&(w=0),0>b&&(b=0),0>m&&(m=0),0>N&&(N=0),w>=p.length&&(w=p.length-1),b>=p.length&&(b=p.length-1),N>=p[0].length&&(N=p[0].length-1),m>=p[0].length&&(m=p[0].length-1);var g=[];f.getRectMinMax(w,m,b,N,g);var x=g[0],j=g[1];if(!(r.z-y>j||r.z+yv;v++)for(var A=m;N>A;A++)f.getConvexTrianglePillar(v,A,!1),u.pointToWorldFrame(o,i,f.pillarOffset,c),n.distanceTo(c)w||0>m||r>p.length||m>p[0].length)){0>r&&(r=0),0>w&&(w=0),0>b&&(b=0),0>m&&(m=0),r>=p.length&&(r=p.length-1),w>=p.length&&(w=p.length-1),m>=p[0].length&&(m=p[0].length-1),b>=p[0].length&&(b=p[0].length-1);var N=[];f.getRectMinMax(r,b,w,m,N);var g=N[0],x=N[1];if(!(a.z-s>x||a.z+sv;v++)for(var A=b;m>A;A++){var C=j.length;f.getConvexTrianglePillar(v,A,!1),u.pointToWorldFrame(o,i,f.pillarOffset,c),n.distanceTo(c)2)return}}}},{"../collision/AABB":3,"../collision/Ray":9,"../equations/ContactEquation":19,"../equations/FrictionEquation":21,"../math/Quaternion":28,"../math/Transform":29,"../math/Vec3":30,"../shapes/ConvexPolyhedron":38,"../shapes/Shape":43,"../solver/Solver":47,"../utils/Vec3Pool":54}],56:[function(e,f){function n(){u.apply(this),this.dt=-1,this.allowSleep=!1,this.contacts=[],this.frictionEquations=[],this.quatNormalizeSkip=0,this.quatNormalizeFast=!1,this.time=0,this.stepnumber=0,this.default_dt=1/60,this.nextId=0,this.gravity=new d,this.broadphase=new m,this.bodies=[],this.solver=new t,this.constraints=[],this.narrowphase=new l(this),this.collisionMatrix=new p,this.collisionMatrixPrevious=new p,this.materials=[],this.contactmaterials=[],this.contactMaterialTable=new a,this.defaultMaterial=new s("default"),this.defaultContactMaterial=new y(this.defaultMaterial,this.defaultMaterial,{friction:.3,restitution:0}),this.doProfiling=!1,this.profile={solve:0,makeContactConstraints:0,broadphase:0,integrate:0,narrowphase:0},this.subsystems=[],this.addBodyEvent={type:"addBody",body:null},this.removeBodyEvent={type:"removeBody",body:null}}f.exports=n;var o=e("../shapes/Shape"),d=e("../math/Vec3"),i=e("../math/Quaternion"),t=e("../solver/GSSolver"),l=(e("../utils/Vec3Pool"),e("../equations/ContactEquation"),e("../equations/FrictionEquation"),e("./Narrowphase")),u=e("../utils/EventTarget"),p=e("../collision/ArrayCollisionMatrix"),s=e("../material/Material"),y=e("../material/ContactMaterial"),c=e("../objects/Body"),a=e("../utils/TupleDictionary"),r=e("../collision/RaycastResult"),w=e("../collision/AABB"),b=e("../collision/Ray"),m=e("../collision/NaiveBroadphase");n.prototype=new u;var N=(new w,new b);if(n.prototype.getContactMaterial=function(e,f){return this.contactMaterialTable.get(e.id,f.id)},n.prototype.numObjects=function(){return this.bodies.length},n.prototype.collisionMatrixTick=function(){var e=this.collisionMatrixPrevious;this.collisionMatrixPrevious=this.collisionMatrix,this.collisionMatrix=e,this.collisionMatrix.reset()},n.prototype.add=n.prototype.addBody=function(e){-1===this.bodies.indexOf(e)&&(e.index=this.bodies.length,this.bodies.push(e),e.world=this,e.initPosition.copy(e.position),e.initVelocity.copy(e.velocity),e.timeLastSleepy=this.time,e instanceof c&&(e.initAngularVelocity.copy(e.angularVelocity),e.initQuaternion.copy(e.quaternion)),this.collisionMatrix.setNumObjects(this.bodies.length),this.addBodyEvent.body=e,this.dispatchEvent(this.addBodyEvent))},n.prototype.addConstraint=function(e){this.constraints.push(e)},n.prototype.removeConstraint=function(e){var f=this.constraints.indexOf(e);-1!==f&&this.constraints.splice(f,1)},n.prototype.rayTest=function(e,f,n){n instanceof r?this.raycastClosest(e,f,{skipBackfaces:!0},n):this.raycastAll(e,f,{skipBackfaces:!0},n)},n.prototype.raycastAll=function(e,f,n,o){return n.mode=b.ALL,n.from=e,n.to=f,n.callback=o,N.intersectWorld(this,n)},n.prototype.raycastAny=function(e,f,n,o){return n.mode=b.ANY,n.from=e,n.to=f,n.result=o,N.intersectWorld(this,n)},n.prototype.raycastClosest=function(e,f,n,o){return n.mode=b.CLOSEST,n.from=e,n.to=f,n.result=o,N.intersectWorld(this,n)},n.prototype.remove=function(e){e.world=null;var f=this.bodies.length-1,n=this.bodies,o=n.indexOf(e);if(-1!==o){n.splice(o,1);for(var d=0;d!==n.length;d++)n[d].index=d;this.collisionMatrix.setNumObjects(f),this.removeBodyEvent.body=e,this.dispatchEvent(this.removeBodyEvent)}},n.prototype.removeBody=n.prototype.remove,n.prototype.addMaterial=function(e){this.materials.push(e)},n.prototype.addContactMaterial=function(e){this.contactmaterials.push(e),this.contactMaterialTable.set(e.materials[0].id,e.materials[1].id,e)},"undefined"==typeof performance&&(performance={}),!performance.now){var g=Date.now();performance.timing&&performance.timing.navigationStart&&(g=performance.timing.navigationStart),performance.now=function(){return Date.now()-g}}var x=new d;n.prototype.step=function(e,f,n){if(n=n||10,f=f||0,0===f)this.internalStep(e),this.time+=e;else{var o=Math.floor((this.time+f)/e)-Math.floor(this.time/e);o=Math.min(o,n);for(var d=performance.now(),i=0;i!==o&&(this.internalStep(e),!(performance.now()-d>1e3*e));i++);this.time+=f;for(var t=this.time%e,l=t/e,u=x,p=this.bodies,s=0;s!==p.length;s++){var y=p[s];y.type!==c.STATIC&&y.sleepState!==c.SLEEPING?(y.position.vsub(y.previousPosition,u),u.scale(l,u),y.position.vadd(u,y.interpolatedPosition)):(y.interpolatedPosition.copy(y.position),y.interpolatedQuaternion.copy(y.quaternion))}}};var j={type:"postStep"},v={type:"preStep"},A={type:"collide",body:null,contact:null},C=[],O=[],h=[],k=[],q=(new d,new d,new d,new d,new d,new d,new d,new d,new d,new i,new i),z=new i,B=new d;n.prototype.internalStep=function(e){this.dt=e;var f,n=this.contacts,d=h,i=k,t=this.numObjects(),l=this.bodies,u=this.solver,p=this.gravity,s=this.doProfiling,y=this.profile,a=c.DYNAMIC,r=this.constraints,w=O,b=(p.norm(),p.x),m=p.y,N=p.z,g=0;for(s&&(f=performance.now()),g=0;g!==t;g++){var x=l[g];if(x.type&a){var D=x.force,E=x.mass;D.x+=E*b,D.y+=E*m,D.z+=E*N}}for(var g=0,F=this.subsystems.length;g!==F;g++)this.subsystems[g].update();s&&(f=performance.now()),d.length=0,i.length=0,this.broadphase.collisionPairs(this,d,i),s&&(y.broadphase=performance.now()-f);var G=r.length;for(g=0;g!==G;g++){var H=r[g];if(!H.collideConnected)for(var I=d.length-1;I>=0;I-=1)(H.bodyA===d[I]&&H.bodyB===i[I]||H.bodyB===d[I]&&H.bodyA===i[I])&&(d.splice(I,1),i.splice(I,1))}this.collisionMatrixTick(),s&&(f=performance.now());var J=C,K=n.length;for(g=0;g!==K;g++)J.push(n[g]);n.length=0;var L=this.frictionEquations.length;for(g=0;g!==L;g++)w.push(this.frictionEquations[g]);this.frictionEquations.length=0,this.narrowphase.getContacts(d,i,this,n,J,this.frictionEquations,w),s&&(y.narrowphase=performance.now()-f),s&&(f=performance.now());for(var g=0;g=0&&R.material.friction>=0&&(S=x.material.friction*R.material.friction),x.material.restitution>=0&&R.material.restitution>=0&&(H.restitution=x.material.restitution*R.material.restitution)),u.addEquation(H),x.allowSleep&&x.type===c.DYNAMIC&&x.sleepState===c.SLEEPING&&R.sleepState===c.AWAKE&&R.type!==c.STATIC){var T=R.velocity.norm2()+R.angularVelocity.norm2(),U=Math.pow(R.sleepSpeedLimit,2); +T>=2*U&&(x._wakeUpAfterNarrowphase=!0)}if(R.allowSleep&&R.type===c.DYNAMIC&&R.sleepState===c.SLEEPING&&x.sleepState===c.AWAKE&&x.type!==c.STATIC){var V=x.velocity.norm2()+x.angularVelocity.norm2(),W=Math.pow(x.sleepSpeedLimit,2);V>=2*W&&(R._wakeUpAfterNarrowphase=!0)}this.collisionMatrix.set(x,R,!0),this.collisionMatrixPrevious.get(x,R)||(A.body=R,A.contact=H,x.dispatchEvent(A),A.body=x,R.dispatchEvent(A))}for(s&&(y.makeContactConstraints=performance.now()-f,f=performance.now()),g=0;g!==t;g++){var x=l[g];x._wakeUpAfterNarrowphase&&(x.wakeUp(),x._wakeUpAfterNarrowphase=!1)}var G=r.length;for(g=0;g!==G;g++){var H=r[g];H.update();for(var I=0,X=H.equations.length;I!==X;I++){var Y=H.equations[I];u.addEquation(Y)}}u.solve(e,this),s&&(y.solve=performance.now()-f),u.removeAllEquations();var Z=Math.pow;for(g=0;g!==t;g++){var x=l[g];if(x.type&a){var $=Z(1-x.linearDamping,e),_=x.velocity;_.mult($,_);var ef=x.angularVelocity;if(ef){var ff=Z(1-x.angularDamping,e);ef.mult(ff,ef)}}}for(this.dispatchEvent(v),g=0;g!==t;g++){var x=l[g];x.preStep&&x.preStep.call(x)}s&&(f=performance.now());{var nf=q,of=z,df=this.stepnumber,tf=c.DYNAMIC|c.KINEMATIC,lf=df%(this.quatNormalizeSkip+1)===0,uf=this.quatNormalizeFast,pf=.5*e;o.types.PLANE,o.types.CONVEXPOLYHEDRON}for(g=0;g!==t;g++){var sf=l[g],yf=sf.force,cf=sf.torque;if(sf.type&tf&&sf.sleepState!==c.SLEEPING){var af=sf.velocity,rf=sf.angularVelocity,wf=sf.position,bf=sf.quaternion,mf=sf.invMass,Nf=sf.invInertiaWorld;af.x+=yf.x*mf*e,af.y+=yf.y*mf*e,af.z+=yf.z*mf*e,sf.angularVelocity&&(Nf.vmult(cf,B),B.mult(e,B),B.vadd(rf,rf)),wf.x+=af.x*e,wf.y+=af.y*e,wf.z+=af.z*e,sf.angularVelocity&&(nf.set(rf.x,rf.y,rf.z,0),nf.mult(bf,of),bf.x+=pf*of.x,bf.y+=pf*of.y,bf.z+=pf*of.z,bf.w+=pf*of.w,lf&&(uf?bf.normalizeFast():bf.normalize())),sf.aabb&&(sf.aabbNeedsUpdate=!0),sf.updateInertiaWorld&&sf.updateInertiaWorld()}}for(this.clearForces(),this.broadphase.dirty=!0,s&&(y.integrate=performance.now()-f),this.time+=e,this.stepnumber+=1,this.dispatchEvent(j),g=0;g!==t;g++){var x=l[g],gf=x.postStep;gf&&gf.call(x)}if(this.allowSleep)for(g=0;g!==t;g++)l[g].sleepTick(this.time)},n.prototype.clearForces=function(){for(var e=this.bodies,f=e.length,n=0;n!==f;n++){{var o=e[n];o.force,o.torque}o.force.set(0,0,0),o.torque.set(0,0,0)}}},{"../collision/AABB":3,"../collision/ArrayCollisionMatrix":4,"../collision/NaiveBroadphase":7,"../collision/Ray":9,"../collision/RaycastResult":10,"../equations/ContactEquation":19,"../equations/FrictionEquation":21,"../material/ContactMaterial":24,"../material/Material":25,"../math/Quaternion":28,"../math/Vec3":30,"../objects/Body":31,"../shapes/Shape":43,"../solver/GSSolver":46,"../utils/EventTarget":49,"../utils/TupleDictionary":52,"../utils/Vec3Pool":54,"./Narrowphase":55}]},{},[2])(2)}); diff --git a/games/champion-island/climbing-sprite.png b/games/champion-island/climbing-sprite.png new file mode 100644 index 0000000..6a7ef2a Binary files /dev/null and b/games/champion-island/climbing-sprite.png differ diff --git a/games/champion-island/climbing.mp3 b/games/champion-island/climbing.mp3 new file mode 100644 index 0000000..5fa0e6e Binary files /dev/null and b/games/champion-island/climbing.mp3 differ diff --git a/games/champion-island/climbing.ogg b/games/champion-island/climbing.ogg new file mode 100644 index 0000000..6cc5e66 Binary files /dev/null and b/games/champion-island/climbing.ogg differ diff --git a/games/champion-island/climbingintro.mp4 b/games/champion-island/climbingintro.mp4 new file mode 100644 index 0000000..106d222 Binary files /dev/null and b/games/champion-island/climbingintro.mp4 differ diff --git a/games/champion-island/climbingoutro.mp4 b/games/champion-island/climbingoutro.mp4 new file mode 100644 index 0000000..b7442df Binary files /dev/null and b/games/champion-island/climbingoutro.mp4 differ diff --git a/games/champion-island/createjs-2015.11.26.min.js b/games/champion-island/createjs-2015.11.26.min.js new file mode 100644 index 0000000..ba15ff1 --- /dev/null +++ b/games/champion-island/createjs-2015.11.26.min.js @@ -0,0 +1,17 @@ +/*! +* @license CreateJS +* Visit http://createjs.com/ for documentation, updates and examples. +* +* Copyright (c) 2011-2015 gskinner.com, inc. +* +* Distributed under the terms of the MIT license. +* http://www.opensource.org/licenses/mit-license.html +* +* This notice shall be included in all copies or substantial portions of the Software. +*/ +this.createjs=this.createjs||{},createjs.extend=function(a,b){"use strict";function c(){this.constructor=a}return c.prototype=b.prototype,a.prototype=new c},this.createjs=this.createjs||{},createjs.promote=function(a,b){"use strict";var c=a.prototype,d=Object.getPrototypeOf&&Object.getPrototypeOf(c)||c.__proto__;if(d){c[(b+="_")+"constructor"]=d.constructor;for(var e in d)c.hasOwnProperty(e)&&"function"==typeof d[e]&&(c[b+e]=d[e])}return a},this.createjs=this.createjs||{},createjs.indexOf=function(a,b){"use strict";for(var c=0,d=a.length;d>c;c++)if(b===a[c])return c;return-1},this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c){this.type=a,this.target=null,this.currentTarget=null,this.eventPhase=0,this.bubbles=!!b,this.cancelable=!!c,this.timeStamp=(new Date).getTime(),this.defaultPrevented=!1,this.propagationStopped=!1,this.immediatePropagationStopped=!1,this.removed=!1}var b=a.prototype;b.preventDefault=function(){this.defaultPrevented=this.cancelable&&!0},b.stopPropagation=function(){this.propagationStopped=!0},b.stopImmediatePropagation=function(){this.immediatePropagationStopped=this.propagationStopped=!0},b.remove=function(){this.removed=!0},b.clone=function(){return new a(this.type,this.bubbles,this.cancelable)},b.set=function(a){for(var b in a)this[b]=a[b];return this},b.toString=function(){return"[Event (type="+this.type+")]"},createjs.Event=a}(),this.createjs=this.createjs||{},function(){"use strict";function a(){this._listeners=null,this._captureListeners=null}var b=a.prototype;a.initialize=function(a){a.addEventListener=b.addEventListener,a.on=b.on,a.removeEventListener=a.off=b.removeEventListener,a.removeAllEventListeners=b.removeAllEventListeners,a.hasEventListener=b.hasEventListener,a.dispatchEvent=b.dispatchEvent,a._dispatchEvent=b._dispatchEvent,a.willTrigger=b.willTrigger},b.addEventListener=function(a,b,c){var d;d=c?this._captureListeners=this._captureListeners||{}:this._listeners=this._listeners||{};var e=d[a];return e&&this.removeEventListener(a,b,c),e=d[a],e?e.push(b):d[a]=[b],b},b.on=function(a,b,c,d,e,f){return b.handleEvent&&(c=c||b,b=b.handleEvent),c=c||this,this.addEventListener(a,function(a){b.call(c,a,e),d&&a.remove()},f)},b.removeEventListener=function(a,b,c){var d=c?this._captureListeners:this._listeners;if(d){var e=d[a];if(e)for(var f=0,g=e.length;g>f;f++)if(e[f]==b){1==g?delete d[a]:e.splice(f,1);break}}},b.off=b.removeEventListener,b.removeAllEventListeners=function(a){a?(this._listeners&&delete this._listeners[a],this._captureListeners&&delete this._captureListeners[a]):this._listeners=this._captureListeners=null},b.dispatchEvent=function(a,b,c){if("string"==typeof a){var d=this._listeners;if(!(b||d&&d[a]))return!0;a=new createjs.Event(a,b,c)}else a.target&&a.clone&&(a=a.clone());try{a.target=this}catch(e){}if(a.bubbles&&this.parent){for(var f=this,g=[f];f.parent;)g.push(f=f.parent);var h,i=g.length;for(h=i-1;h>=0&&!a.propagationStopped;h--)g[h]._dispatchEvent(a,1+(0==h));for(h=1;i>h&&!a.propagationStopped;h++)g[h]._dispatchEvent(a,3)}else this._dispatchEvent(a,2);return!a.defaultPrevented},b.hasEventListener=function(a){var b=this._listeners,c=this._captureListeners;return!!(b&&b[a]||c&&c[a])},b.willTrigger=function(a){for(var b=this;b;){if(b.hasEventListener(a))return!0;b=b.parent}return!1},b.toString=function(){return"[EventDispatcher]"},b._dispatchEvent=function(a,b){var c,d=1==b?this._captureListeners:this._listeners;if(a&&d){var e=d[a.type];if(!e||!(c=e.length))return;try{a.currentTarget=this}catch(f){}try{a.eventPhase=b}catch(f){}a.removed=!1,e=e.slice();for(var g=0;c>g&&!a.immediatePropagationStopped;g++){var h=e[g];h.handleEvent?h.handleEvent(a):h(a),a.removed&&(this.off(a.type,h,1==b),a.removed=!1)}}},createjs.EventDispatcher=a}(),this.createjs=this.createjs||{},function(){"use strict";function a(){throw"Ticker cannot be instantiated."}a.RAF_SYNCHED="synched",a.RAF="raf",a.TIMEOUT="timeout",a.useRAF=!1,a.timingMode=null,a.maxDelta=0,a.paused=!1,a.removeEventListener=null,a.removeAllEventListeners=null,a.dispatchEvent=null,a.hasEventListener=null,a._listeners=null,createjs.EventDispatcher.initialize(a),a._addEventListener=a.addEventListener,a.addEventListener=function(){return!a._inited&&a.init(),a._addEventListener.apply(a,arguments)},a._inited=!1,a._startTime=0,a._pausedTime=0,a._ticks=0,a._pausedTicks=0,a._interval=50,a._lastTime=0,a._times=null,a._tickTimes=null,a._timerId=null,a._raf=!0,a.setInterval=function(b){a._interval=b,a._inited&&a._setupTick()},a.getInterval=function(){return a._interval},a.setFPS=function(b){a.setInterval(1e3/b)},a.getFPS=function(){return 1e3/a._interval};try{Object.defineProperties(a,{interval:{get:a.getInterval,set:a.setInterval},framerate:{get:a.getFPS,set:a.setFPS}})}catch(b){console.log(b)}a.init=function(){a._inited||(a._inited=!0,a._times=[],a._tickTimes=[],a._startTime=a._getTime(),a._times.push(a._lastTime=0),a.interval=a._interval)},a.reset=function(){if(a._raf){var b=window.cancelAnimationFrame||window.webkitCancelAnimationFrame||window.mozCancelAnimationFrame||window.oCancelAnimationFrame||window.msCancelAnimationFrame;b&&b(a._timerId)}else clearTimeout(a._timerId);a.removeAllEventListeners("tick"),a._timerId=a._times=a._tickTimes=null,a._startTime=a._lastTime=a._ticks=0,a._inited=!1},a.getMeasuredTickTime=function(b){var c=0,d=a._tickTimes;if(!d||d.length<1)return-1;b=Math.min(d.length,b||0|a.getFPS());for(var e=0;b>e;e++)c+=d[e];return c/b},a.getMeasuredFPS=function(b){var c=a._times;return!c||c.length<2?-1:(b=Math.min(c.length-1,b||0|a.getFPS()),1e3/((c[0]-c[b])/b))},a.setPaused=function(b){a.paused=b},a.getPaused=function(){return a.paused},a.getTime=function(b){return a._startTime?a._getTime()-(b?a._pausedTime:0):-1},a.getEventTime=function(b){return a._startTime?(a._lastTime||a._startTime)-(b?a._pausedTime:0):-1},a.getTicks=function(b){return a._ticks-(b?a._pausedTicks:0)},a._handleSynch=function(){a._timerId=null,a._setupTick(),a._getTime()-a._lastTime>=.97*(a._interval-1)&&a._tick()},a._handleRAF=function(){a._timerId=null,a._setupTick(),a._tick()},a._handleTimeout=function(){a._timerId=null,a._setupTick(),a._tick()},a._setupTick=function(){if(null==a._timerId){var b=a.timingMode||a.useRAF&&a.RAF_SYNCHED;if(b==a.RAF_SYNCHED||b==a.RAF){var c=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame;if(c)return a._timerId=c(b==a.RAF?a._handleRAF:a._handleSynch),void(a._raf=!0)}a._raf=!1,a._timerId=setTimeout(a._handleTimeout,a._interval)}},a._tick=function(){var b=a.paused,c=a._getTime(),d=c-a._lastTime;if(a._lastTime=c,a._ticks++,b&&(a._pausedTicks++,a._pausedTime+=d),a.hasEventListener("tick")){var e=new createjs.Event("tick"),f=a.maxDelta;e.delta=f&&d>f?f:d,e.paused=b,e.time=c,e.runTime=c-a._pausedTime,a.dispatchEvent(e)}for(a._tickTimes.unshift(a._getTime()-c);a._tickTimes.length>100;)a._tickTimes.pop();for(a._times.unshift(c);a._times.length>100;)a._times.pop()};var c=window.performance&&(performance.now||performance.mozNow||performance.msNow||performance.oNow||performance.webkitNow);a._getTime=function(){return(c&&c.call(performance)||(new Date).getTime())-a._startTime},createjs.Ticker=a}(),this.createjs=this.createjs||{},function(){"use strict";function a(){throw"UID cannot be instantiated"}a._nextID=0,a.get=function(){return a._nextID++},createjs.UID=a}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c,d,e,f,g,h,i,j,k){this.Event_constructor(a,b,c),this.stageX=d,this.stageY=e,this.rawX=null==i?d:i,this.rawY=null==j?e:j,this.nativeEvent=f,this.pointerID=g,this.primary=!!h,this.relatedTarget=k}var b=createjs.extend(a,createjs.Event);b._get_localX=function(){return this.currentTarget.globalToLocal(this.rawX,this.rawY).x},b._get_localY=function(){return this.currentTarget.globalToLocal(this.rawX,this.rawY).y},b._get_isTouch=function(){return-1!==this.pointerID};try{Object.defineProperties(b,{localX:{get:b._get_localX},localY:{get:b._get_localY},isTouch:{get:b._get_isTouch}})}catch(c){}b.clone=function(){return new a(this.type,this.bubbles,this.cancelable,this.stageX,this.stageY,this.nativeEvent,this.pointerID,this.primary,this.rawX,this.rawY)},b.toString=function(){return"[MouseEvent (type="+this.type+" stageX="+this.stageX+" stageY="+this.stageY+")]"},createjs.MouseEvent=createjs.promote(a,"Event")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c,d,e,f){this.setValues(a,b,c,d,e,f)}var b=a.prototype;a.DEG_TO_RAD=Math.PI/180,a.identity=null,b.setValues=function(a,b,c,d,e,f){return this.a=null==a?1:a,this.b=b||0,this.c=c||0,this.d=null==d?1:d,this.tx=e||0,this.ty=f||0,this},b.append=function(a,b,c,d,e,f){var g=this.a,h=this.b,i=this.c,j=this.d;return(1!=a||0!=b||0!=c||1!=d)&&(this.a=g*a+i*b,this.b=h*a+j*b,this.c=g*c+i*d,this.d=h*c+j*d),this.tx=g*e+i*f+this.tx,this.ty=h*e+j*f+this.ty,this},b.prepend=function(a,b,c,d,e,f){var g=this.a,h=this.c,i=this.tx;return this.a=a*g+c*this.b,this.b=b*g+d*this.b,this.c=a*h+c*this.d,this.d=b*h+d*this.d,this.tx=a*i+c*this.ty+e,this.ty=b*i+d*this.ty+f,this},b.appendMatrix=function(a){return this.append(a.a,a.b,a.c,a.d,a.tx,a.ty)},b.prependMatrix=function(a){return this.prepend(a.a,a.b,a.c,a.d,a.tx,a.ty)},b.appendTransform=function(b,c,d,e,f,g,h,i,j){if(f%360)var k=f*a.DEG_TO_RAD,l=Math.cos(k),m=Math.sin(k);else l=1,m=0;return g||h?(g*=a.DEG_TO_RAD,h*=a.DEG_TO_RAD,this.append(Math.cos(h),Math.sin(h),-Math.sin(g),Math.cos(g),b,c),this.append(l*d,m*d,-m*e,l*e,0,0)):this.append(l*d,m*d,-m*e,l*e,b,c),(i||j)&&(this.tx-=i*this.a+j*this.c,this.ty-=i*this.b+j*this.d),this},b.prependTransform=function(b,c,d,e,f,g,h,i,j){if(f%360)var k=f*a.DEG_TO_RAD,l=Math.cos(k),m=Math.sin(k);else l=1,m=0;return(i||j)&&(this.tx-=i,this.ty-=j),g||h?(g*=a.DEG_TO_RAD,h*=a.DEG_TO_RAD,this.prepend(l*d,m*d,-m*e,l*e,0,0),this.prepend(Math.cos(h),Math.sin(h),-Math.sin(g),Math.cos(g),b,c)):this.prepend(l*d,m*d,-m*e,l*e,b,c),this},b.rotate=function(b){b*=a.DEG_TO_RAD;var c=Math.cos(b),d=Math.sin(b),e=this.a,f=this.b;return this.a=e*c+this.c*d,this.b=f*c+this.d*d,this.c=-e*d+this.c*c,this.d=-f*d+this.d*c,this},b.skew=function(b,c){return b*=a.DEG_TO_RAD,c*=a.DEG_TO_RAD,this.append(Math.cos(c),Math.sin(c),-Math.sin(b),Math.cos(b),0,0),this},b.scale=function(a,b){return this.a*=a,this.b*=a,this.c*=b,this.d*=b,this},b.translate=function(a,b){return this.tx+=this.a*a+this.c*b,this.ty+=this.b*a+this.d*b,this},b.identity=function(){return this.a=this.d=1,this.b=this.c=this.tx=this.ty=0,this},b.invert=function(){var a=this.a,b=this.b,c=this.c,d=this.d,e=this.tx,f=a*d-b*c;return this.a=d/f,this.b=-b/f,this.c=-c/f,this.d=a/f,this.tx=(c*this.ty-d*e)/f,this.ty=-(a*this.ty-b*e)/f,this},b.isIdentity=function(){return 0===this.tx&&0===this.ty&&1===this.a&&0===this.b&&0===this.c&&1===this.d},b.equals=function(a){return this.tx===a.tx&&this.ty===a.ty&&this.a===a.a&&this.b===a.b&&this.c===a.c&&this.d===a.d},b.transformPoint=function(a,b,c){return c=c||{},c.x=a*this.a+b*this.c+this.tx,c.y=a*this.b+b*this.d+this.ty,c},b.decompose=function(b){null==b&&(b={}),b.x=this.tx,b.y=this.ty,b.scaleX=Math.sqrt(this.a*this.a+this.b*this.b),b.scaleY=Math.sqrt(this.c*this.c+this.d*this.d);var c=Math.atan2(-this.c,this.d),d=Math.atan2(this.b,this.a),e=Math.abs(1-c/d);return 1e-5>e?(b.rotation=d/a.DEG_TO_RAD,this.a<0&&this.d>=0&&(b.rotation+=b.rotation<=0?180:-180),b.skewX=b.skewY=0):(b.skewX=c/a.DEG_TO_RAD,b.skewY=d/a.DEG_TO_RAD),b},b.copy=function(a){return this.setValues(a.a,a.b,a.c,a.d,a.tx,a.ty)},b.clone=function(){return new a(this.a,this.b,this.c,this.d,this.tx,this.ty)},b.toString=function(){return"[Matrix2D (a="+this.a+" b="+this.b+" c="+this.c+" d="+this.d+" tx="+this.tx+" ty="+this.ty+")]"},a.identity=new a,createjs.Matrix2D=a}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c,d,e){this.setValues(a,b,c,d,e)}var b=a.prototype;b.setValues=function(a,b,c,d,e){return this.visible=null==a?!0:!!a,this.alpha=null==b?1:b,this.shadow=c,this.compositeOperation=d,this.matrix=e||this.matrix&&this.matrix.identity()||new createjs.Matrix2D,this},b.append=function(a,b,c,d,e){return this.alpha*=b,this.shadow=c||this.shadow,this.compositeOperation=d||this.compositeOperation,this.visible=this.visible&&a,e&&this.matrix.appendMatrix(e),this},b.prepend=function(a,b,c,d,e){return this.alpha*=b,this.shadow=this.shadow||c,this.compositeOperation=this.compositeOperation||d,this.visible=this.visible&&a,e&&this.matrix.prependMatrix(e),this},b.identity=function(){return this.visible=!0,this.alpha=1,this.shadow=this.compositeOperation=null,this.matrix.identity(),this},b.clone=function(){return new a(this.alpha,this.shadow,this.compositeOperation,this.visible,this.matrix.clone())},createjs.DisplayProps=a}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b){this.setValues(a,b)}var b=a.prototype;b.setValues=function(a,b){return this.x=a||0,this.y=b||0,this},b.copy=function(a){return this.x=a.x,this.y=a.y,this},b.clone=function(){return new a(this.x,this.y)},b.toString=function(){return"[Point (x="+this.x+" y="+this.y+")]"},createjs.Point=a}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c,d){this.setValues(a,b,c,d)}var b=a.prototype;b.setValues=function(a,b,c,d){return this.x=a||0,this.y=b||0,this.width=c||0,this.height=d||0,this},b.extend=function(a,b,c,d){return c=c||0,d=d||0,a+c>this.x+this.width&&(this.width=a+c-this.x),b+d>this.y+this.height&&(this.height=b+d-this.y),a=this.x&&a+c<=this.x+this.width&&b>=this.y&&b+d<=this.y+this.height},b.union=function(a){return this.clone().extend(a.x,a.y,a.width,a.height)},b.intersection=function(b){var c=b.x,d=b.y,e=c+b.width,f=d+b.height;return this.x>c&&(c=this.x),this.y>d&&(d=this.y),this.x+this.width=e||d>=f?null:new a(c,d,e-c,f-d)},b.intersects=function(a){return a.x<=this.x+this.width&&this.x<=a.x+a.width&&a.y<=this.y+this.height&&this.y<=a.y+a.height},b.isEmpty=function(){return this.width<=0||this.height<=0},b.clone=function(){return new a(this.x,this.y,this.width,this.height)},b.toString=function(){return"[Rectangle (x="+this.x+" y="+this.y+" width="+this.width+" height="+this.height+")]"},createjs.Rectangle=a}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c,d,e,f,g){a.addEventListener&&(this.target=a,this.overLabel=null==c?"over":c,this.outLabel=null==b?"out":b,this.downLabel=null==d?"down":d,this.play=e,this._isPressed=!1,this._isOver=!1,this._enabled=!1,a.mouseChildren=!1,this.enabled=!0,this.handleEvent({}),f&&(g&&(f.actionsEnabled=!1,f.gotoAndStop&&f.gotoAndStop(g)),a.hitArea=f))}var b=a.prototype;b.setEnabled=function(a){if(a!=this._enabled){var b=this.target;this._enabled=a,a?(b.cursor="pointer",b.addEventListener("rollover",this),b.addEventListener("rollout",this),b.addEventListener("mousedown",this),b.addEventListener("pressup",this),b._reset&&(b.__reset=b._reset,b._reset=this._reset)):(b.cursor=null,b.removeEventListener("rollover",this),b.removeEventListener("rollout",this),b.removeEventListener("mousedown",this),b.removeEventListener("pressup",this),b.__reset&&(b._reset=b.__reset,delete b.__reset))}},b.getEnabled=function(){return this._enabled};try{Object.defineProperties(b,{enabled:{get:b.getEnabled,set:b.setEnabled}})}catch(c){}b.toString=function(){return"[ButtonHelper]"},b.handleEvent=function(a){var b,c=this.target,d=a.type;"mousedown"==d?(this._isPressed=!0,b=this.downLabel):"pressup"==d?(this._isPressed=!1,b=this._isOver?this.overLabel:this.outLabel):"rollover"==d?(this._isOver=!0,b=this._isPressed?this.downLabel:this.overLabel):(this._isOver=!1,b=this._isPressed?this.overLabel:this.outLabel),this.play?c.gotoAndPlay&&c.gotoAndPlay(b):c.gotoAndStop&&c.gotoAndStop(b)},b._reset=function(){var a=this.paused;this.__reset(),this.paused=a},createjs.ButtonHelper=a}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c,d){this.color=a||"black",this.offsetX=b||0,this.offsetY=c||0,this.blur=d||0}var b=a.prototype;a.identity=new a("transparent",0,0,0),b.toString=function(){return"[Shadow]"},b.clone=function(){return new a(this.color,this.offsetX,this.offsetY,this.blur)},createjs.Shadow=a}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.EventDispatcher_constructor(),this.complete=!0,this.framerate=0,this._animations=null,this._frames=null,this._images=null,this._data=null,this._loadCount=0,this._frameHeight=0,this._frameWidth=0,this._numFrames=0,this._regX=0,this._regY=0,this._spacing=0,this._margin=0,this._parseData(a)}var b=createjs.extend(a,createjs.EventDispatcher);b.getAnimations=function(){return this._animations.slice()};try{Object.defineProperties(b,{animations:{get:b.getAnimations}})}catch(c){}b.getNumFrames=function(a){if(null==a)return this._frames?this._frames.length:this._numFrames||0;var b=this._data[a];return null==b?0:b.frames.length},b.getAnimation=function(a){return this._data[a]},b.getFrame=function(a){var b;return this._frames&&(b=this._frames[a])?b:null},b.getFrameBounds=function(a,b){var c=this.getFrame(a);return c?(b||new createjs.Rectangle).setValues(-c.regX,-c.regY,c.rect.width,c.rect.height):null},b.toString=function(){return"[SpriteSheet]"},b.clone=function(){throw"SpriteSheet cannot be cloned."},b._parseData=function(a){var b,c,d,e;if(null!=a){if(this.framerate=a.framerate||0,a.images&&(c=a.images.length)>0)for(e=this._images=[],b=0;c>b;b++){var f=a.images[b];if("string"==typeof f){var g=f;f=document.createElement("img"),f.src=g}e.push(f),f.getContext||f.naturalWidth||(this._loadCount++,this.complete=!1,function(a,b){f.onload=function(){a._handleImageLoad(b)}}(this,g),function(a,b){f.onerror=function(){a._handleImageError(b)}}(this,g))}if(null==a.frames);else if(Array.isArray(a.frames))for(this._frames=[],e=a.frames,b=0,c=e.length;c>b;b++){var h=e[b];this._frames.push({image:this._images[h[4]?h[4]:0],rect:new createjs.Rectangle(h[0],h[1],h[2],h[3]),regX:h[5]||0,regY:h[6]||0})}else d=a.frames,this._frameWidth=d.width,this._frameHeight=d.height,this._regX=d.regX||0,this._regY=d.regY||0,this._spacing=d.spacing||0,this._margin=d.margin||0,this._numFrames=d.count,0==this._loadCount&&this._calculateFrames();if(this._animations=[],null!=(d=a.animations)){this._data={};var i;for(i in d){var j={name:i},k=d[i];if("number"==typeof k)e=j.frames=[k];else if(Array.isArray(k))if(1==k.length)j.frames=[k[0]];else for(j.speed=k[3],j.next=k[2],e=j.frames=[],b=k[0];b<=k[1];b++)e.push(b);else{j.speed=k.speed,j.next=k.next;var l=k.frames;e=j.frames="number"==typeof l?[l]:l.slice(0)}(j.next===!0||void 0===j.next)&&(j.next=i),(j.next===!1||e.length<2&&j.next==i)&&(j.next=null),j.speed||(j.speed=1),this._animations.push(i),this._data[i]=j}}}},b._handleImageLoad=function(a){0==--this._loadCount&&(this._calculateFrames(),this.complete=!0,this.dispatchEvent("complete"))},b._handleImageError=function(a){var b=new createjs.Event("error");b.src=a,this.dispatchEvent(b),0==--this._loadCount&&this.dispatchEvent("complete")},b._calculateFrames=function(){if(!this._frames&&0!=this._frameWidth){this._frames=[];var a=this._numFrames||1e5,b=0,c=this._frameWidth,d=this._frameHeight,e=this._spacing,f=this._margin;a:for(var g=0,h=this._images;g=l;){for(var m=f;j-f-c>=m;){if(b>=a)break a;b++,this._frames.push({image:i,rect:new createjs.Rectangle(m,l,c,d),regX:this._regX,regY:this._regY}),m+=c+e}l+=d+e}this._numFrames=b}},createjs.SpriteSheet=createjs.promote(a,"EventDispatcher")}(),this.createjs=this.createjs||{},function(){"use strict";function a(){this.command=null,this._stroke=null,this._strokeStyle=null,this._oldStrokeStyle=null,this._strokeDash=null,this._oldStrokeDash=null,this._strokeIgnoreScale=!1,this._fill=null,this._instructions=[],this._commitIndex=0,this._activeInstructions=[],this._dirty=!1,this._storeIndex=0,this.clear()}var b=a.prototype,c=a;a.getRGB=function(a,b,c,d){return null!=a&&null==c&&(d=b,c=255&a,b=a>>8&255,a=a>>16&255),null==d?"rgb("+a+","+b+","+c+")":"rgba("+a+","+b+","+c+","+d+")"},a.getHSL=function(a,b,c,d){return null==d?"hsl("+a%360+","+b+"%,"+c+"%)":"hsla("+a%360+","+b+"%,"+c+"%,"+d+")"},a.BASE_64={A:0,B:1,C:2,D:3,E:4,F:5,G:6,H:7,I:8,J:9,K:10,L:11,M:12,N:13,O:14,P:15,Q:16,R:17,S:18,T:19,U:20,V:21,W:22,X:23,Y:24,Z:25,a:26,b:27,c:28,d:29,e:30,f:31,g:32,h:33,i:34,j:35,k:36,l:37,m:38,n:39,o:40,p:41,q:42,r:43,s:44,t:45,u:46,v:47,w:48,x:49,y:50,z:51,0:52,1:53,2:54,3:55,4:56,5:57,6:58,7:59,8:60,9:61,"+":62,"/":63},a.STROKE_CAPS_MAP=["butt","round","square"],a.STROKE_JOINTS_MAP=["miter","round","bevel"];var d=createjs.createCanvas?createjs.createCanvas():document.createElement("canvas");d.getContext&&(a._ctx=d.getContext("2d"),d.width=d.height=1),b.getInstructions=function(){return this._updateInstructions(),this._instructions};try{Object.defineProperties(b,{instructions:{get:b.getInstructions}})}catch(e){}b.isEmpty=function(){return!(this._instructions.length||this._activeInstructions.length)},b.draw=function(a,b){this._updateInstructions();for(var c=this._instructions,d=this._storeIndex,e=c.length;e>d;d++)c[d].exec(a,b)},b.drawAsPath=function(a){this._updateInstructions();for(var b,c=this._instructions,d=this._storeIndex,e=c.length;e>d;d++)(b=c[d]).path!==!1&&b.exec(a)},b.moveTo=function(a,b){return this.append(new c.MoveTo(a,b),!0)},b.lineTo=function(a,b){return this.append(new c.LineTo(a,b))},b.arcTo=function(a,b,d,e,f){return this.append(new c.ArcTo(a,b,d,e,f))},b.arc=function(a,b,d,e,f,g){return this.append(new c.Arc(a,b,d,e,f,g))},b.quadraticCurveTo=function(a,b,d,e){return this.append(new c.QuadraticCurveTo(a,b,d,e))},b.bezierCurveTo=function(a,b,d,e,f,g){return this.append(new c.BezierCurveTo(a,b,d,e,f,g))},b.rect=function(a,b,d,e){return this.append(new c.Rect(a,b,d,e))},b.closePath=function(){return this._activeInstructions.length?this.append(new c.ClosePath):this},b.clear=function(){return this._instructions.length=this._activeInstructions.length=this._commitIndex=0,this._strokeStyle=this._oldStrokeStyle=this._stroke=this._fill=this._strokeDash=this._oldStrokeDash=null,this._dirty=this._strokeIgnoreScale=!1,this},b.beginFill=function(a){return this._setFill(a?new c.Fill(a):null)},b.beginLinearGradientFill=function(a,b,d,e,f,g){return this._setFill((new c.Fill).linearGradient(a,b,d,e,f,g))},b.beginRadialGradientFill=function(a,b,d,e,f,g,h,i){return this._setFill((new c.Fill).radialGradient(a,b,d,e,f,g,h,i))},b.beginBitmapFill=function(a,b,d){return this._setFill(new c.Fill(null,d).bitmap(a,b))},b.endFill=function(){return this.beginFill()},b.setStrokeStyle=function(a,b,d,e,f){return this._updateInstructions(!0),this._strokeStyle=this.command=new c.StrokeStyle(a,b,d,e,f),this._stroke&&(this._stroke.ignoreScale=f),this._strokeIgnoreScale=f,this},b.setStrokeDash=function(a,b){return this._updateInstructions(!0),this._strokeDash=this.command=new c.StrokeDash(a,b),this},b.beginStroke=function(a){return this._setStroke(a?new c.Stroke(a):null)},b.beginLinearGradientStroke=function(a,b,d,e,f,g){return this._setStroke((new c.Stroke).linearGradient(a,b,d,e,f,g))},b.beginRadialGradientStroke=function(a,b,d,e,f,g,h,i){return this._setStroke((new c.Stroke).radialGradient(a,b,d,e,f,g,h,i))},b.beginBitmapStroke=function(a,b){return this._setStroke((new c.Stroke).bitmap(a,b))},b.endStroke=function(){return this.beginStroke()},b.curveTo=b.quadraticCurveTo,b.drawRect=b.rect,b.drawRoundRect=function(a,b,c,d,e){return this.drawRoundRectComplex(a,b,c,d,e,e,e,e)},b.drawRoundRectComplex=function(a,b,d,e,f,g,h,i){return this.append(new c.RoundRect(a,b,d,e,f,g,h,i))},b.drawCircle=function(a,b,d){return this.append(new c.Circle(a,b,d))},b.drawEllipse=function(a,b,d,e){return this.append(new c.Ellipse(a,b,d,e))},b.drawPolyStar=function(a,b,d,e,f,g){return this.append(new c.PolyStar(a,b,d,e,f,g))},b.append=function(a,b){return this._activeInstructions.push(a),this.command=a,b||(this._dirty=!0),this},b.decodePath=function(b){for(var c=[this.moveTo,this.lineTo,this.quadraticCurveTo,this.bezierCurveTo,this.closePath],d=[2,2,4,6,0],e=0,f=b.length,g=[],h=0,i=0,j=a.BASE_64;f>e;){var k=b.charAt(e),l=j[k],m=l>>3,n=c[m];if(!n||3&l)throw"bad path data (@"+e+"): "+k;var o=d[m];m||(h=i=0),g.length=0,e++;for(var p=(l>>2&1)+2,q=0;o>q;q++){var r=j[b.charAt(e)],s=r>>5?-1:1;r=(31&r)<<6|j[b.charAt(e+1)],3==p&&(r=r<<6|j[b.charAt(e+2)]),r=s*r/10,q%2?h=r+=h:i=r+=i,g[q]=r,e+=p}n.apply(this,g)}return this},b.store=function(){return this._updateInstructions(!0),this._storeIndex=this._instructions.length,this},b.unstore=function(){return this._storeIndex=0,this},b.clone=function(){var b=new a;return b.command=this.command,b._stroke=this._stroke,b._strokeStyle=this._strokeStyle,b._strokeDash=this._strokeDash,b._strokeIgnoreScale=this._strokeIgnoreScale,b._fill=this._fill,b._instructions=this._instructions.slice(),b._commitIndex=this._commitIndex,b._activeInstructions=this._activeInstructions.slice(),b._dirty=this._dirty,b._storeIndex=this._storeIndex,b},b.toString=function(){return"[Graphics]"},b.mt=b.moveTo,b.lt=b.lineTo,b.at=b.arcTo,b.bt=b.bezierCurveTo,b.qt=b.quadraticCurveTo,b.a=b.arc,b.r=b.rect,b.cp=b.closePath,b.c=b.clear,b.f=b.beginFill,b.lf=b.beginLinearGradientFill,b.rf=b.beginRadialGradientFill,b.bf=b.beginBitmapFill,b.ef=b.endFill,b.ss=b.setStrokeStyle,b.sd=b.setStrokeDash,b.s=b.beginStroke,b.ls=b.beginLinearGradientStroke,b.rs=b.beginRadialGradientStroke,b.bs=b.beginBitmapStroke,b.es=b.endStroke,b.dr=b.drawRect,b.rr=b.drawRoundRect,b.rc=b.drawRoundRectComplex,b.dc=b.drawCircle,b.de=b.drawEllipse,b.dp=b.drawPolyStar,b.p=b.decodePath,b._updateInstructions=function(b){var c=this._instructions,d=this._activeInstructions,e=this._commitIndex;if(this._dirty&&d.length){c.length=e,c.push(a.beginCmd);var f=d.length,g=c.length;c.length=g+f;for(var h=0;f>h;h++)c[h+g]=d[h];this._fill&&c.push(this._fill),this._stroke&&(this._strokeDash!==this._oldStrokeDash&&(this._oldStrokeDash=this._strokeDash,c.push(this._strokeDash)),this._strokeStyle!==this._oldStrokeStyle&&(this._oldStrokeStyle=this._strokeStyle,c.push(this._strokeStyle)),c.push(this._stroke)),this._dirty=!1}b&&(d.length=0,this._commitIndex=c.length)},b._setFill=function(a){return this._updateInstructions(!0),this.command=this._fill=a,this},b._setStroke=function(a){return this._updateInstructions(!0),(this.command=this._stroke=a)&&(a.ignoreScale=this._strokeIgnoreScale),this},(c.LineTo=function(a,b){this.x=a,this.y=b}).prototype.exec=function(a){a.lineTo(this.x,this.y)},(c.MoveTo=function(a,b){this.x=a,this.y=b}).prototype.exec=function(a){a.moveTo(this.x,this.y)},(c.ArcTo=function(a,b,c,d,e){this.x1=a,this.y1=b,this.x2=c,this.y2=d,this.radius=e}).prototype.exec=function(a){a.arcTo(this.x1,this.y1,this.x2,this.y2,this.radius)},(c.Arc=function(a,b,c,d,e,f){this.x=a,this.y=b,this.radius=c,this.startAngle=d,this.endAngle=e,this.anticlockwise=!!f}).prototype.exec=function(a){a.arc(this.x,this.y,this.radius,this.startAngle,this.endAngle,this.anticlockwise)},(c.QuadraticCurveTo=function(a,b,c,d){this.cpx=a,this.cpy=b,this.x=c,this.y=d}).prototype.exec=function(a){a.quadraticCurveTo(this.cpx,this.cpy,this.x,this.y)},(c.BezierCurveTo=function(a,b,c,d,e,f){this.cp1x=a,this.cp1y=b,this.cp2x=c,this.cp2y=d,this.x=e,this.y=f}).prototype.exec=function(a){a.bezierCurveTo(this.cp1x,this.cp1y,this.cp2x,this.cp2y,this.x,this.y)},(c.Rect=function(a,b,c,d){this.x=a,this.y=b,this.w=c,this.h=d}).prototype.exec=function(a){a.rect(this.x,this.y,this.w,this.h)},(c.ClosePath=function(){}).prototype.exec=function(a){a.closePath()},(c.BeginPath=function(){}).prototype.exec=function(a){a.beginPath()},b=(c.Fill=function(a,b){this.style=a,this.matrix=b}).prototype,b.exec=function(a){if(this.style){a.fillStyle=this.style;var b=this.matrix;b&&(a.save(),a.transform(b.a,b.b,b.c,b.d,b.tx,b.ty)),a.fill(),b&&a.restore()}},b.linearGradient=function(b,c,d,e,f,g){for(var h=this.style=a._ctx.createLinearGradient(d,e,f,g),i=0,j=b.length;j>i;i++)h.addColorStop(c[i],b[i]);return h.props={colors:b,ratios:c,x0:d,y0:e,x1:f,y1:g,type:"linear"},this},b.radialGradient=function(b,c,d,e,f,g,h,i){for(var j=this.style=a._ctx.createRadialGradient(d,e,f,g,h,i),k=0,l=b.length;l>k;k++)j.addColorStop(c[k],b[k]);return j.props={colors:b,ratios:c,x0:d,y0:e,r0:f,x1:g,y1:h,r1:i,type:"radial"},this},b.bitmap=function(b,c){if(b.naturalWidth||b.getContext||b.readyState>=2){var d=this.style=a._ctx.createPattern(b,c||"");d.props={image:b,repetition:c,type:"bitmap"}}return this},b.path=!1,b=(c.Stroke=function(a,b){this.style=a,this.ignoreScale=b}).prototype,b.exec=function(a){this.style&&(a.strokeStyle=this.style,this.ignoreScale&&(a.save(),a.setTransform(1,0,0,1,0,0)),a.stroke(),this.ignoreScale&&a.restore())},b.linearGradient=c.Fill.prototype.linearGradient,b.radialGradient=c.Fill.prototype.radialGradient,b.bitmap=c.Fill.prototype.bitmap,b.path=!1,b=(c.StrokeStyle=function(a,b,c,d,e){this.width=a,this.caps=b,this.joints=c,this.miterLimit=d,this.ignoreScale=e}).prototype,b.exec=function(b){b.lineWidth=null==this.width?"1":this.width,b.lineCap=null==this.caps?"butt":isNaN(this.caps)?this.caps:a.STROKE_CAPS_MAP[this.caps],b.lineJoin=null==this.joints?"miter":isNaN(this.joints)?this.joints:a.STROKE_JOINTS_MAP[this.joints],b.miterLimit=null==this.miterLimit?"10":this.miterLimit,b.ignoreScale=null==this.ignoreScale?!1:this.ignoreScale},b.path=!1,(c.StrokeDash=function(a,b){this.segments=a,this.offset=b||0}).prototype.exec=function(a){a.setLineDash&&(a.setLineDash(this.segments||c.StrokeDash.EMPTY_SEGMENTS),a.lineDashOffset=this.offset||0)},c.StrokeDash.EMPTY_SEGMENTS=[],(c.RoundRect=function(a,b,c,d,e,f,g,h){this.x=a,this.y=b,this.w=c,this.h=d,this.radiusTL=e,this.radiusTR=f,this.radiusBR=g,this.radiusBL=h}).prototype.exec=function(a){var b=(j>i?i:j)/2,c=0,d=0,e=0,f=0,g=this.x,h=this.y,i=this.w,j=this.h,k=this.radiusTL,l=this.radiusTR,m=this.radiusBR,n=this.radiusBL;0>k&&(k*=c=-1),k>b&&(k=b),0>l&&(l*=d=-1),l>b&&(l=b),0>m&&(m*=e=-1),m>b&&(m=b),0>n&&(n*=f=-1),n>b&&(n=b),a.moveTo(g+i-l,h),a.arcTo(g+i+l*d,h-l*d,g+i,h+l,l),a.lineTo(g+i,h+j-m),a.arcTo(g+i+m*e,h+j+m*e,g+i-m,h+j,m),a.lineTo(g+n,h+j),a.arcTo(g-n*f,h+j+n*f,g,h+j-n,n),a.lineTo(g,h+k),a.arcTo(g-k*c,h-k*c,g+k,h,k),a.closePath()},(c.Circle=function(a,b,c){this.x=a,this.y=b,this.radius=c}).prototype.exec=function(a){a.arc(this.x,this.y,this.radius,0,2*Math.PI)},(c.Ellipse=function(a,b,c,d){this.x=a,this.y=b,this.w=c,this.h=d}).prototype.exec=function(a){var b=this.x,c=this.y,d=this.w,e=this.h,f=.5522848,g=d/2*f,h=e/2*f,i=b+d,j=c+e,k=b+d/2,l=c+e/2;a.moveTo(b,l),a.bezierCurveTo(b,l-h,k-g,c,k,c),a.bezierCurveTo(k+g,c,i,l-h,i,l),a.bezierCurveTo(i,l+h,k+g,j,k,j),a.bezierCurveTo(k-g,j,b,l+h,b,l)},(c.PolyStar=function(a,b,c,d,e,f){this.x=a,this.y=b,this.radius=c,this.sides=d,this.pointSize=e,this.angle=f}).prototype.exec=function(a){var b=this.x,c=this.y,d=this.radius,e=(this.angle||0)/180*Math.PI,f=this.sides,g=1-(this.pointSize||0),h=Math.PI/f;a.moveTo(b+Math.cos(e)*d,c+Math.sin(e)*d);for(var i=0;f>i;i++)e+=h,1!=g&&a.lineTo(b+Math.cos(e)*d*g,c+Math.sin(e)*d*g),e+=h,a.lineTo(b+Math.cos(e)*d,c+Math.sin(e)*d);a.closePath()},a.beginCmd=new c.BeginPath,createjs.Graphics=a}(),this.createjs=this.createjs||{},function(){"use strict";function a(){this.EventDispatcher_constructor(),this.alpha=1,this.cacheCanvas=null,this.cacheID=0,this.id=createjs.UID.get(),this.mouseEnabled=!0,this.tickEnabled=!0,this.name=null,this.parent=null,this.regX=0,this.regY=0,this.rotation=0,this.scaleX=1,this.scaleY=1,this.skewX=0,this.skewY=0,this.shadow=null,this.visible=!0,this.x=0,this.y=0,this.transformMatrix=null,this.compositeOperation=null,this.snapToPixel=!0,this.filters=null, +this.mask=null,this.hitArea=null,this.cursor=null,this._cacheOffsetX=0,this._cacheOffsetY=0,this._filterOffsetX=0,this._filterOffsetY=0,this._cacheScale=1,this._cacheDataURLID=0,this._cacheDataURL=null,this._props=new createjs.DisplayProps,this._rectangle=new createjs.Rectangle,this._bounds=null}var b=createjs.extend(a,createjs.EventDispatcher);a._MOUSE_EVENTS=["click","dblclick","mousedown","mouseout","mouseover","pressmove","pressup","rollout","rollover"],a.suppressCrossDomainErrors=!1,a._snapToPixelEnabled=!1;var c=createjs.createCanvas?createjs.createCanvas():document.createElement("canvas");c.getContext&&(a._hitTestCanvas=c,a._hitTestContext=c.getContext("2d"),c.width=c.height=1),a._nextCacheID=1,b.getStage=function(){for(var a=this,b=createjs.Stage;a.parent;)a=a.parent;return a instanceof b?a:null};try{Object.defineProperties(b,{stage:{get:b.getStage}})}catch(d){}b.isVisible=function(){return!!(this.visible&&this.alpha>0&&0!=this.scaleX&&0!=this.scaleY)},b.draw=function(a,b){var c=this.cacheCanvas;if(b||!c)return!1;var d=this._cacheScale;return a.drawImage(c,this._cacheOffsetX+this._filterOffsetX,this._cacheOffsetY+this._filterOffsetY,c.width/d,c.height/d),!0},b.updateContext=function(b){var c=this,d=c.mask,e=c._props.matrix;d&&d.graphics&&!d.graphics.isEmpty()&&(d.getMatrix(e),b.transform(e.a,e.b,e.c,e.d,e.tx,e.ty),d.graphics.drawAsPath(b),b.clip(),e.invert(),b.transform(e.a,e.b,e.c,e.d,e.tx,e.ty)),this.getMatrix(e);var f=e.tx,g=e.ty;a._snapToPixelEnabled&&c.snapToPixel&&(f=f+(0>f?-.5:.5)|0,g=g+(0>g?-.5:.5)|0),b.transform(e.a,e.b,e.c,e.d,f,g),b.globalAlpha*=c.alpha,c.compositeOperation&&(b.globalCompositeOperation=c.compositeOperation),c.shadow&&this._applyShadow(b,c.shadow)},b.cache=function(a,b,c,d,e){e=e||1,this.cacheCanvas||(this.cacheCanvas=createjs.createCanvas?createjs.createCanvas():document.createElement("canvas")),this._cacheWidth=c,this._cacheHeight=d,this._cacheOffsetX=a,this._cacheOffsetY=b,this._cacheScale=e,this.updateCache()},b.updateCache=function(b){var c=this.cacheCanvas;if(!c)throw"cache() must be called before updateCache()";var d=this._cacheScale,e=this._cacheOffsetX*d,f=this._cacheOffsetY*d,g=this._cacheWidth,h=this._cacheHeight,i=c.getContext("2d"),j=this._getFilterBounds();e+=this._filterOffsetX=j.x,f+=this._filterOffsetY=j.y,g=Math.ceil(g*d)+j.width,h=Math.ceil(h*d)+j.height,g!=c.width||h!=c.height?(c.width=g,c.height=h):b||i.clearRect(0,0,g+1,h+1),i.save(),i.globalCompositeOperation=b,i.setTransform(d,0,0,d,-e,-f),this.draw(i,!0),this._applyFilters(),i.restore(),this.cacheID=a._nextCacheID++},b.uncache=function(){this._cacheDataURL=this.cacheCanvas=null,this.cacheID=this._cacheOffsetX=this._cacheOffsetY=this._filterOffsetX=this._filterOffsetY=0,this._cacheScale=1},b.getCacheDataURL=function(){return this.cacheCanvas?(this.cacheID!=this._cacheDataURLID&&(this._cacheDataURL=this.cacheCanvas.toDataURL()),this._cacheDataURL):null},b.localToGlobal=function(a,b,c){return this.getConcatenatedMatrix(this._props.matrix).transformPoint(a,b,c||new createjs.Point)},b.globalToLocal=function(a,b,c){return this.getConcatenatedMatrix(this._props.matrix).invert().transformPoint(a,b,c||new createjs.Point)},b.localToLocal=function(a,b,c,d){return d=this.localToGlobal(a,b,d),c.globalToLocal(d.x,d.y,d)},b.setTransform=function(a,b,c,d,e,f,g,h,i){return this.x=a||0,this.y=b||0,this.scaleX=null==c?1:c,this.scaleY=null==d?1:d,this.rotation=e||0,this.skewX=f||0,this.skewY=g||0,this.regX=h||0,this.regY=i||0,this},b.getMatrix=function(a){var b=this,c=a&&a.identity()||new createjs.Matrix2D;return b.transformMatrix?c.copy(b.transformMatrix):c.appendTransform(b.x,b.y,b.scaleX,b.scaleY,b.rotation,b.skewX,b.skewY,b.regX,b.regY)},b.getConcatenatedMatrix=function(a){for(var b=this,c=this.getMatrix(a);b=b.parent;)c.prependMatrix(b.getMatrix(b._props.matrix));return c},b.getConcatenatedDisplayProps=function(a){a=a?a.identity():new createjs.DisplayProps;var b=this,c=b.getMatrix(a.matrix);do a.prepend(b.visible,b.alpha,b.shadow,b.compositeOperation),b!=this&&c.prependMatrix(b.getMatrix(b._props.matrix));while(b=b.parent);return a},b.hitTest=function(b,c){var d=a._hitTestContext;d.setTransform(1,0,0,1,-b,-c),this.draw(d);var e=this._testHit(d);return d.setTransform(1,0,0,1,0,0),d.clearRect(0,0,2,2),e},b.set=function(a){for(var b in a)this[b]=a[b];return this},b.getBounds=function(){if(this._bounds)return this._rectangle.copy(this._bounds);var a=this.cacheCanvas;if(a){var b=this._cacheScale;return this._rectangle.setValues(this._cacheOffsetX,this._cacheOffsetY,a.width/b,a.height/b)}return null},b.getTransformedBounds=function(){return this._getBounds()},b.setBounds=function(a,b,c,d){null==a&&(this._bounds=a),this._bounds=(this._bounds||new createjs.Rectangle).setValues(a,b,c,d)},b.clone=function(){return this._cloneProps(new a)},b.toString=function(){return"[DisplayObject (name="+this.name+")]"},b._cloneProps=function(a){return a.alpha=this.alpha,a.mouseEnabled=this.mouseEnabled,a.tickEnabled=this.tickEnabled,a.name=this.name,a.regX=this.regX,a.regY=this.regY,a.rotation=this.rotation,a.scaleX=this.scaleX,a.scaleY=this.scaleY,a.shadow=this.shadow,a.skewX=this.skewX,a.skewY=this.skewY,a.visible=this.visible,a.x=this.x,a.y=this.y,a.compositeOperation=this.compositeOperation,a.snapToPixel=this.snapToPixel,a.filters=null==this.filters?null:this.filters.slice(0),a.mask=this.mask,a.hitArea=this.hitArea,a.cursor=this.cursor,a._bounds=this._bounds,a},b._applyShadow=function(a,b){b=b||Shadow.identity,a.shadowColor=b.color,a.shadowOffsetX=b.offsetX,a.shadowOffsetY=b.offsetY,a.shadowBlur=b.blur},b._tick=function(a){var b=this._listeners;b&&b.tick&&(a.target=null,a.propagationStopped=a.immediatePropagationStopped=!1,this.dispatchEvent(a))},b._testHit=function(b){try{var c=b.getImageData(0,0,1,1).data[3]>1}catch(d){if(!a.suppressCrossDomainErrors)throw"An error has occurred. This is most likely due to security restrictions on reading canvas pixel data with local or cross-domain images."}return c},b._applyFilters=function(){if(this.filters&&0!=this.filters.length&&this.cacheCanvas)for(var a=this.filters.length,b=this.cacheCanvas.getContext("2d"),c=this.cacheCanvas.width,d=this.cacheCanvas.height,e=0;a>e;e++)this.filters[e].applyFilter(b,0,0,c,d)},b._getFilterBounds=function(a){var b,c=this.filters,d=this._rectangle.setValues(0,0,0,0);if(!c||!(b=c.length))return d;for(var e=0;b>e;e++){var f=this.filters[e];f.getBounds&&f.getBounds(d)}return d},b._getBounds=function(a,b){return this._transformBounds(this.getBounds(),a,b)},b._transformBounds=function(a,b,c){if(!a)return a;var d=a.x,e=a.y,f=a.width,g=a.height,h=this._props.matrix;h=c?h.identity():this.getMatrix(h),(d||e)&&h.appendTransform(0,0,1,1,0,0,0,-d,-e),b&&h.prependMatrix(b);var i=f*h.a,j=f*h.b,k=g*h.c,l=g*h.d,m=h.tx,n=h.ty,o=m,p=m,q=n,r=n;return(d=i+m)p&&(p=d),(d=i+k+m)p&&(p=d),(d=k+m)p&&(p=d),(e=j+n)r&&(r=e),(e=j+l+n)r&&(r=e),(e=l+n)r&&(r=e),a.setValues(o,q,p-o,r-q)},b._hasMouseEventListener=function(){for(var b=a._MOUSE_EVENTS,c=0,d=b.length;d>c;c++)if(this.hasEventListener(b[c]))return!0;return!!this.cursor},createjs.DisplayObject=createjs.promote(a,"EventDispatcher")}(),this.createjs=this.createjs||{},function(){"use strict";function a(){this.DisplayObject_constructor(),this.children=[],this.mouseChildren=!0,this.tickChildren=!0}var b=createjs.extend(a,createjs.DisplayObject);b.getNumChildren=function(){return this.children.length};try{Object.defineProperties(b,{numChildren:{get:b.getNumChildren}})}catch(c){}b.initialize=a,b.isVisible=function(){var a=this.cacheCanvas||this.children.length;return!!(this.visible&&this.alpha>0&&0!=this.scaleX&&0!=this.scaleY&&a)},b.draw=function(a,b){if(this.DisplayObject_draw(a,b))return!0;for(var c=this.children.slice(),d=0,e=c.length;e>d;d++){var f=c[d];f.isVisible()&&(a.save(),f.updateContext(a),f.draw(a),a.restore())}return!0},b.addChild=function(a){if(null==a)return a;var b=arguments.length;if(b>1){for(var c=0;b>c;c++)this.addChild(arguments[c]);return arguments[b-1]}return a.parent&&a.parent.removeChild(a),a.parent=this,this.children.push(a),a.dispatchEvent("added"),a},b.addChildAt=function(a,b){var c=arguments.length,d=arguments[c-1];if(0>d||d>this.children.length)return arguments[c-2];if(c>2){for(var e=0;c-1>e;e++)this.addChildAt(arguments[e],d+e);return arguments[c-2]}return a.parent&&a.parent.removeChild(a),a.parent=this,this.children.splice(b,0,a),a.dispatchEvent("added"),a},b.removeChild=function(a){var b=arguments.length;if(b>1){for(var c=!0,d=0;b>d;d++)c=c&&this.removeChild(arguments[d]);return c}return this.removeChildAt(createjs.indexOf(this.children,a))},b.removeChildAt=function(a){var b=arguments.length;if(b>1){for(var c=[],d=0;b>d;d++)c[d]=arguments[d];c.sort(function(a,b){return b-a});for(var e=!0,d=0;b>d;d++)e=e&&this.removeChildAt(c[d]);return e}if(0>a||a>this.children.length-1)return!1;var f=this.children[a];return f&&(f.parent=null),this.children.splice(a,1),f.dispatchEvent("removed"),!0},b.removeAllChildren=function(){for(var a=this.children;a.length;)this.removeChildAt(0)},b.getChildAt=function(a){return this.children[a]},b.getChildByName=function(a){for(var b=this.children,c=0,d=b.length;d>c;c++)if(b[c].name==a)return b[c];return null},b.sortChildren=function(a){this.children.sort(a)},b.getChildIndex=function(a){return createjs.indexOf(this.children,a)},b.swapChildrenAt=function(a,b){var c=this.children,d=c[a],e=c[b];d&&e&&(c[a]=e,c[b]=d)},b.swapChildren=function(a,b){for(var c,d,e=this.children,f=0,g=e.length;g>f&&(e[f]==a&&(c=f),e[f]==b&&(d=f),null==c||null==d);f++);f!=g&&(e[c]=b,e[d]=a)},b.setChildIndex=function(a,b){var c=this.children,d=c.length;if(!(a.parent!=this||0>b||b>=d)){for(var e=0;d>e&&c[e]!=a;e++);e!=d&&e!=b&&(c.splice(e,1),c.splice(b,0,a))}},b.contains=function(a){for(;a;){if(a==this)return!0;a=a.parent}return!1},b.hitTest=function(a,b){return null!=this.getObjectUnderPoint(a,b)},b.getObjectsUnderPoint=function(a,b,c){var d=[],e=this.localToGlobal(a,b);return this._getObjectsUnderPoint(e.x,e.y,d,c>0,1==c),d},b.getObjectUnderPoint=function(a,b,c){var d=this.localToGlobal(a,b);return this._getObjectsUnderPoint(d.x,d.y,null,c>0,1==c)},b.getBounds=function(){return this._getBounds(null,!0)},b.getTransformedBounds=function(){return this._getBounds()},b.clone=function(b){var c=this._cloneProps(new a);return b&&this._cloneChildren(c),c},b.toString=function(){return"[Container (name="+this.name+")]"},b._tick=function(a){if(this.tickChildren)for(var b=this.children.length-1;b>=0;b--){var c=this.children[b];c.tickEnabled&&c._tick&&c._tick(a)}this.DisplayObject__tick(a)},b._cloneChildren=function(a){a.children.length&&a.removeAllChildren();for(var b=a.children,c=0,d=this.children.length;d>c;c++){var e=this.children[c].clone(!0);e.parent=a,b.push(e)}},b._getObjectsUnderPoint=function(b,c,d,e,f,g){if(g=g||0,!g&&!this._testMask(this,b,c))return null;var h,i=createjs.DisplayObject._hitTestContext;f=f||e&&this._hasMouseEventListener();for(var j=this.children,k=j.length,l=k-1;l>=0;l--){var m=j[l],n=m.hitArea;if(m.visible&&(n||m.isVisible())&&(!e||m.mouseEnabled)&&(n||this._testMask(m,b,c)))if(!n&&m instanceof a){var o=m._getObjectsUnderPoint(b,c,d,e,f,g+1);if(!d&&o)return e&&!this.mouseChildren?this:o}else{if(e&&!f&&!m._hasMouseEventListener())continue;var p=m.getConcatenatedDisplayProps(m._props);if(h=p.matrix,n&&(h.appendMatrix(n.getMatrix(n._props.matrix)),p.alpha=n.alpha),i.globalAlpha=p.alpha,i.setTransform(h.a,h.b,h.c,h.d,h.tx-b,h.ty-c),(n||m).draw(i),!this._testHit(i))continue;if(i.setTransform(1,0,0,1,0,0),i.clearRect(0,0,2,2),!d)return e&&!this.mouseChildren?this:m;d.push(m)}}return null},b._testMask=function(a,b,c){var d=a.mask;if(!d||!d.graphics||d.graphics.isEmpty())return!0;var e=this._props.matrix,f=a.parent;e=f?f.getConcatenatedMatrix(e):e.identity(),e=d.getMatrix(d._props.matrix).prependMatrix(e);var g=createjs.DisplayObject._hitTestContext;return g.setTransform(e.a,e.b,e.c,e.d,e.tx-b,e.ty-c),d.graphics.drawAsPath(g),g.fillStyle="#000",g.fill(),this._testHit(g)?(g.setTransform(1,0,0,1,0,0),g.clearRect(0,0,2,2),!0):!1},b._getBounds=function(a,b){var c=this.DisplayObject_getBounds();if(c)return this._transformBounds(c,a,b);var d=this._props.matrix;d=b?d.identity():this.getMatrix(d),a&&d.prependMatrix(a);for(var e=this.children.length,f=null,g=0;e>g;g++){var h=this.children[g];h.visible&&(c=h._getBounds(d))&&(f?f.extend(c.x,c.y,c.width,c.height):f=c.clone())}return f},createjs.Container=createjs.promote(a,"DisplayObject")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.Container_constructor(),this.autoClear=!0,this.canvas="string"==typeof a?document.getElementById(a):a,this.mouseX=0,this.mouseY=0,this.drawRect=null,this.snapToPixelEnabled=!1,this.mouseInBounds=!1,this.tickOnUpdate=!0,this.mouseMoveOutside=!1,this.preventSelection=!0,this._pointerData={},this._pointerCount=0,this._primaryPointerID=null,this._mouseOverIntervalID=null,this._nextStage=null,this._prevStage=null,this.enableDOMEvents(!0)}var b=createjs.extend(a,createjs.Container);b._get_nextStage=function(){return this._nextStage},b._set_nextStage=function(a){this._nextStage&&(this._nextStage._prevStage=null),a&&(a._prevStage=this),this._nextStage=a};try{Object.defineProperties(b,{nextStage:{get:b._get_nextStage,set:b._set_nextStage}})}catch(c){}b.update=function(a){if(this.canvas&&(this.tickOnUpdate&&this.tick(a),this.dispatchEvent("drawstart",!1,!0)!==!1)){createjs.DisplayObject._snapToPixelEnabled=this.snapToPixelEnabled;var b=this.drawRect,c=this.canvas.getContext("2d");c.setTransform(1,0,0,1,0,0),this.autoClear&&(b?c.clearRect(b.x,b.y,b.width,b.height):c.clearRect(0,0,this.canvas.width+1,this.canvas.height+1)),c.save(),this.drawRect&&(c.beginPath(),c.rect(b.x,b.y,b.width,b.height),c.clip()),this.updateContext(c),this.draw(c,!1),c.restore(),this.dispatchEvent("drawend")}},b.tick=function(a){if(this.tickEnabled&&this.dispatchEvent("tickstart",!1,!0)!==!1){var b=new createjs.Event("tick");if(a)for(var c in a)a.hasOwnProperty(c)&&(b[c]=a[c]);this._tick(b),this.dispatchEvent("tickend")}},b.handleEvent=function(a){"tick"==a.type&&this.update(a)},b.clear=function(){if(this.canvas){var a=this.canvas.getContext("2d");a.setTransform(1,0,0,1,0,0),a.clearRect(0,0,this.canvas.width+1,this.canvas.height+1)}},b.toDataURL=function(a,b){var c,d=this.canvas.getContext("2d"),e=this.canvas.width,f=this.canvas.height;if(a){c=d.getImageData(0,0,e,f);var g=d.globalCompositeOperation;d.globalCompositeOperation="destination-over",d.fillStyle=a,d.fillRect(0,0,e,f)}var h=this.canvas.toDataURL(b||"image/png");return a&&(d.putImageData(c,0,0),d.globalCompositeOperation=g),h},b.enableMouseOver=function(a){if(this._mouseOverIntervalID&&(clearInterval(this._mouseOverIntervalID),this._mouseOverIntervalID=null,0==a&&this._testMouseOver(!0)),null==a)a=20;else if(0>=a)return;var b=this;this._mouseOverIntervalID=setInterval(function(){b._testMouseOver()},1e3/Math.min(50,a))},b.enableDOMEvents=function(a){null==a&&(a=!0);var b,c,d=this._eventListeners;if(!a&&d){for(b in d)c=d[b],c.t.removeEventListener(b,c.f,!1);this._eventListeners=null}else if(a&&!d&&this.canvas){var e=window.addEventListener?window:document,f=this;d=this._eventListeners={},d.mouseup={t:e,f:function(a){f._handleMouseUp(a)}},d.mousemove={t:e,f:function(a){f._handleMouseMove(a)}},d.dblclick={t:this.canvas,f:function(a){f._handleDoubleClick(a)}},d.mousedown={t:this.canvas,f:function(a){f._handleMouseDown(a)}};for(b in d)c=d[b],c.t.addEventListener(b,c.f,!1)}},b.clone=function(){throw"Stage cannot be cloned."},b.toString=function(){return"[Stage (name="+this.name+")]"},b._getElementRect=function(a){var b;try{b=a.getBoundingClientRect()}catch(c){b={top:a.offsetTop,left:a.offsetLeft,width:a.offsetWidth,height:a.offsetHeight}}var d=(window.pageXOffset||document.scrollLeft||0)-(document.clientLeft||document.body.clientLeft||0),e=(window.pageYOffset||document.scrollTop||0)-(document.clientTop||document.body.clientTop||0),f=window.getComputedStyle?getComputedStyle(a,null):a.currentStyle,g=parseInt(f.paddingLeft)+parseInt(f.borderLeftWidth),h=parseInt(f.paddingTop)+parseInt(f.borderTopWidth),i=parseInt(f.paddingRight)+parseInt(f.borderRightWidth),j=parseInt(f.paddingBottom)+parseInt(f.borderBottomWidth);return{left:b.left+d+g,right:b.right+d-i,top:b.top+e+h,bottom:b.bottom+e-j}},b._getPointerData=function(a){var b=this._pointerData[a];return b||(b=this._pointerData[a]={x:0,y:0}),b},b._handleMouseMove=function(a){a||(a=window.event),this._handlePointerMove(-1,a,a.pageX,a.pageY)},b._handlePointerMove=function(a,b,c,d,e){if((!this._prevStage||void 0!==e)&&this.canvas){var f=this._nextStage,g=this._getPointerData(a),h=g.inBounds;this._updatePointerPosition(a,b,c,d),(h||g.inBounds||this.mouseMoveOutside)&&(-1===a&&g.inBounds==!h&&this._dispatchMouseEvent(this,h?"mouseleave":"mouseenter",!1,a,g,b),this._dispatchMouseEvent(this,"stagemousemove",!1,a,g,b),this._dispatchMouseEvent(g.target,"pressmove",!0,a,g,b)),f&&f._handlePointerMove(a,b,c,d,null)}},b._updatePointerPosition=function(a,b,c,d){var e=this._getElementRect(this.canvas);c-=e.left,d-=e.top;var f=this.canvas.width,g=this.canvas.height;c/=(e.right-e.left)/f,d/=(e.bottom-e.top)/g;var h=this._getPointerData(a);(h.inBounds=c>=0&&d>=0&&f-1>=c&&g-1>=d)?(h.x=c,h.y=d):this.mouseMoveOutside&&(h.x=0>c?0:c>f-1?f-1:c,h.y=0>d?0:d>g-1?g-1:d),h.posEvtObj=b,h.rawX=c,h.rawY=d,(a===this._primaryPointerID||-1===a)&&(this.mouseX=h.x,this.mouseY=h.y,this.mouseInBounds=h.inBounds)},b._handleMouseUp=function(a){this._handlePointerUp(-1,a,!1)},b._handlePointerUp=function(a,b,c,d){var e=this._nextStage,f=this._getPointerData(a);if(!this._prevStage||void 0!==d){var g=null,h=f.target;d||!h&&!e||(g=this._getObjectsUnderPoint(f.x,f.y,null,!0)),f.down&&(this._dispatchMouseEvent(this,"stagemouseup",!1,a,f,b,g),f.down=!1),g==h&&this._dispatchMouseEvent(h,"click",!0,a,f,b),this._dispatchMouseEvent(h,"pressup",!0,a,f,b),c?(a==this._primaryPointerID&&(this._primaryPointerID=null),delete this._pointerData[a]):f.target=null,e&&e._handlePointerUp(a,b,c,d||g&&this)}},b._handleMouseDown=function(a){this._handlePointerDown(-1,a,a.pageX,a.pageY)},b._handlePointerDown=function(a,b,c,d,e){this.preventSelection&&b.preventDefault(),(null==this._primaryPointerID||-1===a)&&(this._primaryPointerID=a),null!=d&&this._updatePointerPosition(a,b,c,d);var f=null,g=this._nextStage,h=this._getPointerData(a);e||(f=h.target=this._getObjectsUnderPoint(h.x,h.y,null,!0)),h.inBounds&&(this._dispatchMouseEvent(this,"stagemousedown",!1,a,h,b,f),h.down=!0),this._dispatchMouseEvent(f,"mousedown",!0,a,h,b),g&&g._handlePointerDown(a,b,c,d,e||f&&this)},b._testMouseOver=function(a,b,c){if(!this._prevStage||void 0!==b){var d=this._nextStage;if(!this._mouseOverIntervalID)return void(d&&d._testMouseOver(a,b,c));var e=this._getPointerData(-1);if(e&&(a||this.mouseX!=this._mouseOverX||this.mouseY!=this._mouseOverY||!this.mouseInBounds)){var f,g,h,i=e.posEvtObj,j=c||i&&i.target==this.canvas,k=null,l=-1,m="";!b&&(a||this.mouseInBounds&&j)&&(k=this._getObjectsUnderPoint(this.mouseX,this.mouseY,null,!0),this._mouseOverX=this.mouseX,this._mouseOverY=this.mouseY);var n=this._mouseOverTarget||[],o=n[n.length-1],p=this._mouseOverTarget=[];for(f=k;f;)p.unshift(f),m||(m=f.cursor),f=f.parent;for(this.canvas.style.cursor=m,!b&&c&&(c.canvas.style.cursor=m),g=0,h=p.length;h>g&&p[g]==n[g];g++)l=g;for(o!=k&&this._dispatchMouseEvent(o,"mouseout",!0,-1,e,i,k),g=n.length-1;g>l;g--)this._dispatchMouseEvent(n[g],"rollout",!1,-1,e,i,k);for(g=p.length-1;g>l;g--)this._dispatchMouseEvent(p[g],"rollover",!1,-1,e,i,o);o!=k&&this._dispatchMouseEvent(k,"mouseover",!0,-1,e,i,o),d&&d._testMouseOver(a,b||k&&this,c||j&&this)}}},b._handleDoubleClick=function(a,b){var c=null,d=this._nextStage,e=this._getPointerData(-1);b||(c=this._getObjectsUnderPoint(e.x,e.y,null,!0),this._dispatchMouseEvent(c,"dblclick",!0,-1,e,a)),d&&d._handleDoubleClick(a,b||c&&this)},b._dispatchMouseEvent=function(a,b,c,d,e,f,g){if(a&&(c||a.hasEventListener(b))){var h=new createjs.MouseEvent(b,c,!1,e.x,e.y,f,d,d===this._primaryPointerID||-1===d,e.rawX,e.rawY,g);a.dispatchEvent(h)}},createjs.Stage=createjs.promote(a,"Container")}(),this.createjs=this.createjs||{},function(){function a(a){this.DisplayObject_constructor(),"string"==typeof a?(this.image=document.createElement("img"),this.image.src=a):this.image=a,this.sourceRect=null}var b=createjs.extend(a,createjs.DisplayObject);b.initialize=a,b.isVisible=function(){var a=this.image,b=this.cacheCanvas||a&&(a.naturalWidth||a.getContext||a.readyState>=2);return!!(this.visible&&this.alpha>0&&0!=this.scaleX&&0!=this.scaleY&&b)},b.draw=function(a,b){if(this.DisplayObject_draw(a,b)||!this.image)return!0;var c=this.image,d=this.sourceRect;if(d){var e=d.x,f=d.y,g=e+d.width,h=f+d.height,i=0,j=0,k=c.width,l=c.height;0>e&&(i-=e,e=0),g>k&&(g=k),0>f&&(j-=f,f=0),h>l&&(h=l),a.drawImage(c,e,f,g-e,h-f,i,j,g-e,h-f)}else a.drawImage(c,0,0);return!0},b.getBounds=function(){var a=this.DisplayObject_getBounds();if(a)return a;var b=this.image,c=this.sourceRect||b,d=b&&(b.naturalWidth||b.getContext||b.readyState>=2);return d?this._rectangle.setValues(0,0,c.width,c.height):null},b.clone=function(){var b=new a(this.image);return this.sourceRect&&(b.sourceRect=this.sourceRect.clone()),this._cloneProps(b),b},b.toString=function(){return"[Bitmap (name="+this.name+")]"},createjs.Bitmap=createjs.promote(a,"DisplayObject")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b){this.DisplayObject_constructor(),this.currentFrame=0,this.currentAnimation=null,this.paused=!0,this.spriteSheet=a,this.currentAnimationFrame=0,this.framerate=0,this._animation=null,this._currentFrame=null,this._skipAdvance=!1,null!=b&&this.gotoAndPlay(b)}var b=createjs.extend(a,createjs.DisplayObject);b.initialize=a,b.isVisible=function(){var a=this.cacheCanvas||this.spriteSheet.complete;return!!(this.visible&&this.alpha>0&&0!=this.scaleX&&0!=this.scaleY&&a)},b.draw=function(a,b){if(this.DisplayObject_draw(a,b))return!0;this._normalizeFrame();var c=this.spriteSheet.getFrame(0|this._currentFrame);if(!c)return!1;var d=c.rect;return d.width&&d.height&&a.drawImage(c.image,d.x,d.y,d.width,d.height,-c.regX,-c.regY,d.width,d.height),!0},b.play=function(){this.paused=!1},b.stop=function(){this.paused=!0},b.gotoAndPlay=function(a){this.paused=!1,this._skipAdvance=!0,this._goto(a)},b.gotoAndStop=function(a){this.paused=!0,this._goto(a)},b.advance=function(a){var b=this.framerate||this.spriteSheet.framerate,c=b&&null!=a?a/(1e3/b):1;this._normalizeFrame(c)},b.getBounds=function(){return this.DisplayObject_getBounds()||this.spriteSheet.getFrameBounds(this.currentFrame,this._rectangle)},b.clone=function(){return this._cloneProps(new a(this.spriteSheet))},b.toString=function(){return"[Sprite (name="+this.name+")]"},b._cloneProps=function(a){return this.DisplayObject__cloneProps(a),a.currentFrame=this.currentFrame,a.currentAnimation=this.currentAnimation,a.paused=this.paused,a.currentAnimationFrame=this.currentAnimationFrame,a.framerate=this.framerate,a._animation=this._animation,a._currentFrame=this._currentFrame,a._skipAdvance=this._skipAdvance,a},b._tick=function(a){this.paused||(this._skipAdvance||this.advance(a&&a.delta),this._skipAdvance=!1),this.DisplayObject__tick(a)},b._normalizeFrame=function(a){a=a||0;var b,c=this._animation,d=this.paused,e=this._currentFrame;if(c){var f=c.speed||1,g=this.currentAnimationFrame;if(b=c.frames.length,g+a*f>=b){var h=c.next;if(this._dispatchAnimationEnd(c,e,d,h,b-1))return;if(h)return this._goto(h,a-(b-g)/f);this.paused=!0,g=c.frames.length-1}else g+=a*f;this.currentAnimationFrame=g,this._currentFrame=c.frames[0|g]}else if(e=this._currentFrame+=a,b=this.spriteSheet.getNumFrames(),e>=b&&b>0&&!this._dispatchAnimationEnd(c,e,d,b-1)&&(this._currentFrame-=b)>=b)return this._normalizeFrame();e=0|this._currentFrame,this.currentFrame!=e&&(this.currentFrame=e,this.dispatchEvent("change"))},b._dispatchAnimationEnd=function(a,b,c,d,e){var f=a?a.name:null;if(this.hasEventListener("animationend")){var g=new createjs.Event("animationend");g.name=f,g.next=d,this.dispatchEvent(g)}var h=this._animation!=a||this._currentFrame!=b;return h||c||!this.paused||(this.currentAnimationFrame=e,h=!0),h},b._goto=function(a,b){if(this.currentAnimationFrame=0,isNaN(a)){var c=this.spriteSheet.getAnimation(a);c&&(this._animation=c,this.currentAnimation=a,this._normalizeFrame(b))}else this.currentAnimation=this._animation=null,this._currentFrame=a,this._normalizeFrame()},createjs.Sprite=createjs.promote(a,"DisplayObject")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.DisplayObject_constructor(),this.graphics=a?a:new createjs.Graphics}var b=createjs.extend(a,createjs.DisplayObject);b.isVisible=function(){var a=this.cacheCanvas||this.graphics&&!this.graphics.isEmpty();return!!(this.visible&&this.alpha>0&&0!=this.scaleX&&0!=this.scaleY&&a)},b.draw=function(a,b){return this.DisplayObject_draw(a,b)?!0:(this.graphics.draw(a,this),!0)},b.clone=function(b){var c=b&&this.graphics?this.graphics.clone():this.graphics;return this._cloneProps(new a(c))},b.toString=function(){return"[Shape (name="+this.name+")]"},createjs.Shape=createjs.promote(a,"DisplayObject")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c){this.DisplayObject_constructor(),this.text=a,this.font=b,this.color=c,this.textAlign="left",this.textBaseline="top",this.maxWidth=null,this.outline=0,this.lineHeight=0,this.lineWidth=null}var b=createjs.extend(a,createjs.DisplayObject),c=createjs.createCanvas?createjs.createCanvas():document.createElement("canvas");c.getContext&&(a._workingContext=c.getContext("2d"),c.width=c.height=1),a.H_OFFSETS={start:0,left:0,center:-.5,end:-1,right:-1},a.V_OFFSETS={top:0,hanging:-.01,middle:-.4,alphabetic:-.8,ideographic:-.85,bottom:-1},b.isVisible=function(){var a=this.cacheCanvas||null!=this.text&&""!==this.text;return!!(this.visible&&this.alpha>0&&0!=this.scaleX&&0!=this.scaleY&&a)},b.draw=function(a,b){if(this.DisplayObject_draw(a,b))return!0;var c=this.color||"#000";return this.outline?(a.strokeStyle=c,a.lineWidth=1*this.outline):a.fillStyle=c,this._drawText(this._prepContext(a)),!0},b.getMeasuredWidth=function(){return this._getMeasuredWidth(this.text)},b.getMeasuredLineHeight=function(){return 1.2*this._getMeasuredWidth("M")},b.getMeasuredHeight=function(){return this._drawText(null,{}).height},b.getBounds=function(){var b=this.DisplayObject_getBounds();if(b)return b;if(null==this.text||""===this.text)return null;var c=this._drawText(null,{}),d=this.maxWidth&&this.maxWidthj;j++){var l=i[j],m=null;if(null!=this.lineWidth&&(m=b.measureText(l).width)>this.lineWidth){var n=l.split(/(\s)/);l=n[0],m=b.measureText(l).width;for(var o=1,p=n.length;p>o;o+=2){var q=b.measureText(n[o]+n[o+1]).width;m+q>this.lineWidth?(e&&this._drawTextLine(b,l,h*f),d&&d.push(l),m>g&&(g=m),l=n[o+1],m=b.measureText(l).width,h++):(l+=n[o]+n[o+1],m+=q)}}e&&this._drawTextLine(b,l,h*f),d&&d.push(l),c&&null==m&&(m=b.measureText(l).width),m>g&&(g=m),h++}return c&&(c.width=g,c.height=h*f),e||b.restore(),c},b._drawTextLine=function(a,b,c){this.outline?a.strokeText(b,0,c,this.maxWidth||65535):a.fillText(b,0,c,this.maxWidth||65535)},b._getMeasuredWidth=function(b){var c=a._workingContext;c.save();var d=this._prepContext(c).measureText(b).width;return c.restore(),d},createjs.Text=createjs.promote(a,"DisplayObject")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b){this.Container_constructor(),this.text=a||"",this.spriteSheet=b,this.lineHeight=0,this.letterSpacing=0,this.spaceWidth=0,this._oldProps={text:0,spriteSheet:0,lineHeight:0,letterSpacing:0,spaceWidth:0}}var b=createjs.extend(a,createjs.Container);a.maxPoolSize=100,a._spritePool=[],b.draw=function(a,b){this.DisplayObject_draw(a,b)||(this._updateText(),this.Container_draw(a,b))},b.getBounds=function(){return this._updateText(),this.Container_getBounds()},b.isVisible=function(){var a=this.cacheCanvas||this.spriteSheet&&this.spriteSheet.complete&&this.text;return!!(this.visible&&this.alpha>0&&0!==this.scaleX&&0!==this.scaleY&&a)},b.clone=function(){return this._cloneProps(new a(this.text,this.spriteSheet))},b.addChild=b.addChildAt=b.removeChild=b.removeChildAt=b.removeAllChildren=function(){},b._cloneProps=function(a){return this.Container__cloneProps(a),a.lineHeight=this.lineHeight,a.letterSpacing=this.letterSpacing,a.spaceWidth=this.spaceWidth,a},b._getFrameIndex=function(a,b){var c,d=b.getAnimation(a);return d||(a!=(c=a.toUpperCase())||a!=(c=a.toLowerCase())||(c=null),c&&(d=b.getAnimation(c))),d&&d.frames[0]},b._getFrame=function(a,b){var c=this._getFrameIndex(a,b);return null==c?c:b.getFrame(c)},b._getLineHeight=function(a){var b=this._getFrame("1",a)||this._getFrame("T",a)||this._getFrame("L",a)||a.getFrame(0);return b?b.rect.height:1},b._getSpaceWidth=function(a){var b=this._getFrame("1",a)||this._getFrame("l",a)||this._getFrame("e",a)||this._getFrame("a",a)||a.getFrame(0);return b?b.rect.width:1},b._updateText=function(){var b,c=0,d=0,e=this._oldProps,f=!1,g=this.spaceWidth,h=this.lineHeight,i=this.spriteSheet,j=a._spritePool,k=this.children,l=0,m=k.length;for(var n in e)e[n]!=this[n]&&(e[n]=this[n],f=!0);if(f){var o=!!this._getFrame(" ",i);o||g||(g=this._getSpaceWidth(i)),h||(h=this._getLineHeight(i));for(var p=0,q=this.text.length;q>p;p++){var r=this.text.charAt(p);if(" "!=r||o)if("\n"!=r&&"\r"!=r){var s=this._getFrameIndex(r,i);null!=s&&(m>l?b=k[l]:(k.push(b=j.length?j.pop():new createjs.Sprite),b.parent=this,m++),b.spriteSheet=i,b.gotoAndStop(s),b.x=c,b.y=d,l++,c+=b.getBounds().width+this.letterSpacing)}else"\r"==r&&"\n"==this.text.charAt(p+1)&&p++,c=0,d+=h;else c+=g}for(;m>l;)j.push(b=k.pop()),b.parent=null,m--;j.length>a.maxPoolSize&&(j.length=a.maxPoolSize)}},createjs.BitmapText=createjs.promote(a,"Container")}(),this.createjs=this.createjs||{},function(){"use strict";function a(b,c,d,e){this.Container_constructor(),!a.inited&&a.init(),this.mode=b||a.INDEPENDENT,this.startPosition=c||0,this.loop=d,this.currentFrame=0,this.timeline=new createjs.Timeline(null,e,{paused:!0,position:c,useTicks:!0}),this.paused=!1,this.actionsEnabled=!0,this.autoReset=!0,this.frameBounds=this.frameBounds||null,this.framerate=null,this._synchOffset=0,this._prevPos=-1,this._prevPosition=0,this._t=0,this._managed={}}function b(){throw"MovieClipPlugin cannot be instantiated."}var c=createjs.extend(a,createjs.Container);a.INDEPENDENT="independent",a.SINGLE_FRAME="single",a.SYNCHED="synched",a.inited=!1,a.init=function(){a.inited||(b.install(),a.inited=!0)},c.getLabels=function(){return this.timeline.getLabels()},c.getCurrentLabel=function(){return this._updateTimeline(),this.timeline.getCurrentLabel()},c.getDuration=function(){return this.timeline.duration; +};try{Object.defineProperties(c,{labels:{get:c.getLabels},currentLabel:{get:c.getCurrentLabel},totalFrames:{get:c.getDuration},duration:{get:c.getDuration}})}catch(d){}c.initialize=a,c.isVisible=function(){return!!(this.visible&&this.alpha>0&&0!=this.scaleX&&0!=this.scaleY)},c.draw=function(a,b){return this.DisplayObject_draw(a,b)?!0:(this._updateTimeline(),this.Container_draw(a,b),!0)},c.play=function(){this.paused=!1},c.stop=function(){this.paused=!0},c.gotoAndPlay=function(a){this.paused=!1,this._goto(a)},c.gotoAndStop=function(a){this.paused=!0,this._goto(a)},c.advance=function(b){var c=a.INDEPENDENT;if(this.mode==c){for(var d=this,e=d.framerate;(d=d.parent)&&null==e;)d.mode==c&&(e=d._framerate);this._framerate=e;var f=null!=e&&-1!=e&&null!=b?b/(1e3/e)+this._t:1,g=0|f;for(this._t=f-g;!this.paused&&g--;)this._prevPosition=this._prevPos<0?0:this._prevPosition+1,this._updateTimeline()}},c.clone=function(){throw"MovieClip cannot be cloned."},c.toString=function(){return"[MovieClip (name="+this.name+")]"},c._tick=function(a){this.advance(a&&a.delta),this.Container__tick(a)},c._goto=function(a){var b=this.timeline.resolve(a);null!=b&&(-1==this._prevPos&&(this._prevPos=NaN),this._prevPosition=b,this._t=0,this._updateTimeline())},c._reset=function(){this._prevPos=-1,this._t=this.currentFrame=0,this.paused=!1},c._updateTimeline=function(){var b=this.timeline,c=this.mode!=a.INDEPENDENT;b.loop=null==this.loop?!0:this.loop;var d=c?this.startPosition+(this.mode==a.SINGLE_FRAME?0:this._synchOffset):this._prevPos<0?0:this._prevPosition,e=c||!this.actionsEnabled?createjs.Tween.NONE:null;if(this.currentFrame=b._calcPosition(d),b.setPosition(d,e),this._prevPosition=b._prevPosition,this._prevPos!=b._prevPos){this.currentFrame=this._prevPos=b._prevPos;for(var f in this._managed)this._managed[f]=1;for(var g=b._tweens,h=0,i=g.length;i>h;h++){var j=g[h],k=j._target;if(k!=this&&!j.passive){var l=j._stepPosition;k instanceof createjs.DisplayObject?this._addManagedChild(k,l):this._setState(k.state,l)}}var m=this.children;for(h=m.length-1;h>=0;h--){var n=m[h].id;1==this._managed[n]&&(this.removeChildAt(h),delete this._managed[n])}}},c._setState=function(a,b){if(a)for(var c=a.length-1;c>=0;c--){var d=a[c],e=d.t,f=d.p;for(var g in f)e[g]=f[g];this._addManagedChild(e,b)}},c._addManagedChild=function(b,c){b._off||(this.addChildAt(b,0),b instanceof a&&(b._synchOffset=c,b.mode==a.INDEPENDENT&&b.autoReset&&!this._managed[b.id]&&b._reset()),this._managed[b.id]=2)},c._getBounds=function(a,b){var c=this.DisplayObject_getBounds();return c||(this._updateTimeline(),this.frameBounds&&(c=this._rectangle.copy(this.frameBounds[this.currentFrame]))),c?this._transformBounds(c,a,b):this.Container__getBounds(a,b)},createjs.MovieClip=createjs.promote(a,"Container"),b.priority=100,b.install=function(){createjs.Tween.installPlugin(b,["startPosition"])},b.init=function(a,b,c){return c},b.step=function(){},b.tween=function(b,c,d,e,f,g,h,i){return b.target instanceof a?1==g?f[c]:e[c]:d}}(),this.createjs=this.createjs||{},function(){"use strict";function a(){throw"SpriteSheetUtils cannot be instantiated"}var b=createjs.createCanvas?createjs.createCanvas():document.createElement("canvas");b.getContext&&(a._workingCanvas=b,a._workingContext=b.getContext("2d"),b.width=b.height=1),a.addFlippedFrames=function(b,c,d,e){if(c||d||e){var f=0;c&&a._flip(b,++f,!0,!1),d&&a._flip(b,++f,!1,!0),e&&a._flip(b,++f,!0,!0)}},a.extractFrame=function(b,c){isNaN(c)&&(c=b.getAnimation(c).frames[0]);var d=b.getFrame(c);if(!d)return null;var e=d.rect,f=a._workingCanvas;f.width=e.width,f.height=e.height,a._workingContext.drawImage(d.image,e.x,e.y,e.width,e.height,0,0,e.width,e.height);var g=document.createElement("img");return g.src=f.toDataURL("image/png"),g},a.mergeAlpha=function(a,b,c){c||(c=createjs.createCanvas?createjs.createCanvas():document.createElement("canvas")),c.width=Math.max(b.width,a.width),c.height=Math.max(b.height,a.height);var d=c.getContext("2d");return d.save(),d.drawImage(a,0,0),d.globalCompositeOperation="destination-in",d.drawImage(b,0,0),d.restore(),c},a._flip=function(b,c,d,e){for(var f=b._images,g=a._workingCanvas,h=a._workingContext,i=f.length/c,j=0;i>j;j++){var k=f[j];k.__tmp=j,h.setTransform(1,0,0,1,0,0),h.clearRect(0,0,g.width+1,g.height+1),g.width=k.width,g.height=k.height,h.setTransform(d?-1:1,0,0,e?-1:1,d?k.width:0,e?k.height:0),h.drawImage(k,0,0);var l=document.createElement("img");l.src=g.toDataURL("image/png"),l.width=k.width,l.height=k.height,f.push(l)}var m=b._frames,n=m.length/c;for(j=0;n>j;j++){k=m[j];var o=k.rect.clone();l=f[k.image.__tmp+i*c];var p={image:l,rect:o,regX:k.regX,regY:k.regY};d&&(o.x=l.width-o.x-o.width,p.regX=o.width-k.regX),e&&(o.y=l.height-o.y-o.height,p.regY=o.height-k.regY),m.push(p)}var q="_"+(d?"h":"")+(e?"v":""),r=b._animations,s=b._data,t=r.length/c;for(j=0;t>j;j++){var u=r[j];k=s[u];var v={name:u+q,speed:k.speed,next:k.next,frames:[]};k.next&&(v.next+=q),m=k.frames;for(var w=0,x=m.length;x>w;w++)v.frames.push(m[w]+n*c);s[v.name]=v,r.push(v.name)}},createjs.SpriteSheetUtils=a}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.EventDispatcher_constructor(),this.maxWidth=2048,this.maxHeight=2048,this.spriteSheet=null,this.scale=1,this.padding=1,this.timeSlice=.3,this.progress=-1,this.framerate=a||0,this._frames=[],this._animations={},this._data=null,this._nextFrameIndex=0,this._index=0,this._timerID=null,this._scale=1}var b=createjs.extend(a,createjs.EventDispatcher);a.ERR_DIMENSIONS="frame dimensions exceed max spritesheet dimensions",a.ERR_RUNNING="a build is already running",b.addFrame=function(b,c,d,e,f){if(this._data)throw a.ERR_RUNNING;var g=c||b.bounds||b.nominalBounds;return!g&&b.getBounds&&(g=b.getBounds()),g?(d=d||1,this._frames.push({source:b,sourceRect:g,scale:d,funct:e,data:f,index:this._frames.length,height:g.height*d})-1):null},b.addAnimation=function(b,c,d,e){if(this._data)throw a.ERR_RUNNING;this._animations[b]={frames:c,next:d,speed:e}},b.addMovieClip=function(b,c,d,e,f,g){if(this._data)throw a.ERR_RUNNING;var h=b.frameBounds,i=c||b.bounds||b.nominalBounds;if(!i&&b.getBounds&&(i=b.getBounds()),i||h){var j,k,l=this._frames.length,m=b.timeline.duration;for(j=0;m>j;j++){var n=h&&h[j]?h[j]:i;this.addFrame(b,n,d,this._setupMovieClipFrame,{i:j,f:e,d:f})}var o=b.timeline._labels,p=[];for(var q in o)p.push({index:o[q],label:q});if(p.length)for(p.sort(function(a,b){return a.index-b.index}),j=0,k=p.length;k>j;j++){for(var r=p[j].label,s=l+p[j].index,t=l+(j==k-1?m:p[j+1].index),u=[],v=s;t>v;v++)u.push(v);(!g||(r=g(r,b,s,t)))&&this.addAnimation(r,u,!0)}}},b.build=function(){if(this._data)throw a.ERR_RUNNING;for(this._startBuild();this._drawNext(););return this._endBuild(),this.spriteSheet},b.buildAsync=function(b){if(this._data)throw a.ERR_RUNNING;this.timeSlice=b,this._startBuild();var c=this;this._timerID=setTimeout(function(){c._run()},50-50*Math.max(.01,Math.min(.99,this.timeSlice||.3)))},b.stopAsync=function(){clearTimeout(this._timerID),this._data=null},b.clone=function(){throw"SpriteSheetBuilder cannot be cloned."},b.toString=function(){return"[SpriteSheetBuilder]"},b._startBuild=function(){var b=this.padding||0;this.progress=0,this.spriteSheet=null,this._index=0,this._scale=this.scale;var c=[];this._data={images:[],frames:c,framerate:this.framerate,animations:this._animations};var d=this._frames.slice();if(d.sort(function(a,b){return a.height<=b.height?-1:1}),d[d.length-1].height+2*b>this.maxHeight)throw a.ERR_DIMENSIONS;for(var e=0,f=0,g=0;d.length;){var h=this._fillRow(d,e,g,c,b);if(h.w>f&&(f=h.w),e+=h.h,!h.h||!d.length){var i=createjs.createCanvas?createjs.createCanvas():document.createElement("canvas");i.width=this._getSize(f,this.maxWidth),i.height=this._getSize(e,this.maxHeight),this._data.images[g]=i,h.h||(f=e=0,g++)}}},b._setupMovieClipFrame=function(a,b){var c=a.actionsEnabled;a.actionsEnabled=!1,a.gotoAndStop(b.i),a.actionsEnabled=c,b.f&&b.f(a,b.d,b.i)},b._getSize=function(a,b){for(var c=4;Math.pow(2,++c)=0;l--){var m=b[l],n=this._scale*m.scale,o=m.sourceRect,p=m.source,q=Math.floor(n*o.x-f),r=Math.floor(n*o.y-f),s=Math.ceil(n*o.height+2*f),t=Math.ceil(n*o.width+2*f);if(t>g)throw a.ERR_DIMENSIONS;s>i||j+t>g||(m.img=d,m.rect=new createjs.Rectangle(j,c,t,s),k=k||s,b.splice(l,1),e[m.index]=[j,c,t,s,d,Math.round(-q+n*p.regX-f),Math.round(-r+n*p.regY-f)],j+=t)}return{w:j,h:k}},b._endBuild=function(){this.spriteSheet=new createjs.SpriteSheet(this._data),this._data=null,this.progress=1,this.dispatchEvent("complete")},b._run=function(){for(var a=50*Math.max(.01,Math.min(.99,this.timeSlice||.3)),b=(new Date).getTime()+a,c=!1;b>(new Date).getTime();)if(!this._drawNext()){c=!0;break}if(c)this._endBuild();else{var d=this;this._timerID=setTimeout(function(){d._run()},50-a)}var e=this.progress=this._index/this._frames.length;if(this.hasEventListener("progress")){var f=new createjs.Event("progress");f.progress=e,this.dispatchEvent(f)}},b._drawNext=function(){var a=this._frames[this._index],b=a.scale*this._scale,c=a.rect,d=a.sourceRect,e=this._data.images[a.img],f=e.getContext("2d");return a.funct&&a.funct(a.source,a.data),f.save(),f.beginPath(),f.rect(c.x,c.y,c.width,c.height),f.clip(),f.translate(Math.ceil(c.x-d.x*b),Math.ceil(c.y-d.y*b)),f.scale(b,b),a.source.draw(f),f.restore(),++this._indexa)&&(a=0),(isNaN(b)||0>b)&&(b=0),(isNaN(c)||1>c)&&(c=1),this.blurX=0|a,this.blurY=0|b,this.quality=0|c}var b=createjs.extend(a,createjs.Filter);a.MUL_TABLE=[1,171,205,293,57,373,79,137,241,27,391,357,41,19,283,265,497,469,443,421,25,191,365,349,335,161,155,149,9,278,269,261,505,245,475,231,449,437,213,415,405,395,193,377,369,361,353,345,169,331,325,319,313,307,301,37,145,285,281,69,271,267,263,259,509,501,493,243,479,118,465,459,113,446,55,435,429,423,209,413,51,403,199,393,97,3,379,375,371,367,363,359,355,351,347,43,85,337,333,165,327,323,5,317,157,311,77,305,303,75,297,294,73,289,287,71,141,279,277,275,68,135,67,133,33,262,260,129,511,507,503,499,495,491,61,121,481,477,237,235,467,232,115,457,227,451,7,445,221,439,218,433,215,427,425,211,419,417,207,411,409,203,202,401,399,396,197,49,389,387,385,383,95,189,47,187,93,185,23,183,91,181,45,179,89,177,11,175,87,173,345,343,341,339,337,21,167,83,331,329,327,163,81,323,321,319,159,79,315,313,39,155,309,307,153,305,303,151,75,299,149,37,295,147,73,291,145,289,287,143,285,71,141,281,35,279,139,69,275,137,273,17,271,135,269,267,133,265,33,263,131,261,130,259,129,257,1],a.SHG_TABLE=[0,9,10,11,9,12,10,11,12,9,13,13,10,9,13,13,14,14,14,14,10,13,14,14,14,13,13,13,9,14,14,14,15,14,15,14,15,15,14,15,15,15,14,15,15,15,15,15,14,15,15,15,15,15,15,12,14,15,15,13,15,15,15,15,16,16,16,15,16,14,16,16,14,16,13,16,16,16,15,16,13,16,15,16,14,9,16,16,16,16,16,16,16,16,16,13,14,16,16,15,16,16,10,16,15,16,14,16,16,14,16,16,14,16,16,14,15,16,16,16,14,15,14,15,13,16,16,15,17,17,17,17,17,17,14,15,17,17,16,16,17,16,15,17,16,17,11,17,16,17,16,17,16,17,17,16,17,17,16,17,17,16,16,17,17,17,16,14,17,17,17,17,15,16,14,16,15,16,13,16,15,16,14,16,15,16,12,16,15,16,17,17,17,17,17,13,16,15,17,17,17,16,15,17,17,17,16,15,17,17,14,16,17,17,16,17,17,16,15,17,16,14,17,16,15,17,16,17,17,16,17,15,16,17,14,17,16,15,17,16,17,13,17,16,17,17,16,17,14,17,16,17,16,17,16,17,9],b.getBounds=function(a){var b=0|this.blurX,c=0|this.blurY;if(0>=b&&0>=c)return a;var d=Math.pow(this.quality,.2);return(a||new createjs.Rectangle).pad(b*d+1,c*d+1,b*d+1,c*d+1)},b.clone=function(){return new a(this.blurX,this.blurY,this.quality)},b.toString=function(){return"[BlurFilter]"},b._applyFilter=function(b){var c=this.blurX>>1;if(isNaN(c)||0>c)return!1;var d=this.blurY>>1;if(isNaN(d)||0>d)return!1;if(0==c&&0==d)return!1;var e=this.quality;(isNaN(e)||1>e)&&(e=1),e|=0,e>3&&(e=3),1>e&&(e=1);var f=b.data,g=0,h=0,i=0,j=0,k=0,l=0,m=0,n=0,o=0,p=0,q=0,r=0,s=0,t=0,u=0,v=c+c+1|0,w=d+d+1|0,x=0|b.width,y=0|b.height,z=x-1|0,A=y-1|0,B=c+1|0,C=d+1|0,D={r:0,b:0,g:0,a:0},E=D;for(i=1;v>i;i++)E=E.n={r:0,b:0,g:0,a:0};E.n=D;var F={r:0,b:0,g:0,a:0},G=F;for(i=1;w>i;i++)G=G.n={r:0,b:0,g:0,a:0};G.n=F;for(var H=null,I=0|a.MUL_TABLE[c],J=0|a.SHG_TABLE[c],K=0|a.MUL_TABLE[d],L=0|a.SHG_TABLE[d];e-->0;){m=l=0;var M=I,N=J;for(h=y;--h>-1;){for(n=B*(r=f[0|l]),o=B*(s=f[l+1|0]),p=B*(t=f[l+2|0]),q=B*(u=f[l+3|0]),E=D,i=B;--i>-1;)E.r=r,E.g=s,E.b=t,E.a=u,E=E.n;for(i=1;B>i;i++)j=l+((i>z?z:i)<<2)|0,n+=E.r=f[j],o+=E.g=f[j+1],p+=E.b=f[j+2],q+=E.a=f[j+3],E=E.n;for(H=D,g=0;x>g;g++)f[l++]=n*M>>>N,f[l++]=o*M>>>N,f[l++]=p*M>>>N,f[l++]=q*M>>>N,j=m+((j=g+c+1)g;g++){for(l=g<<2|0,n=C*(r=f[l])|0,o=C*(s=f[l+1|0])|0,p=C*(t=f[l+2|0])|0,q=C*(u=f[l+3|0])|0,G=F,i=0;C>i;i++)G.r=r,G.g=s,G.b=t,G.a=u,G=G.n;for(k=x,i=1;d>=i;i++)l=k+g<<2,n+=G.r=f[l],o+=G.g=f[l+1],p+=G.b=f[l+2],q+=G.a=f[l+3],G=G.n,A>i&&(k+=x);if(l=g,H=F,e>0)for(h=0;y>h;h++)j=l<<2,f[j+3]=u=q*M>>>N,u>0?(f[j]=n*M>>>N,f[j+1]=o*M>>>N,f[j+2]=p*M>>>N):f[j]=f[j+1]=f[j+2]=0,j=g+((j=h+C)h;h++)j=l<<2,f[j+3]=u=q*M>>>N,u>0?(u=255/u,f[j]=(n*M>>>N)*u,f[j+1]=(o*M>>>N)*u,f[j+2]=(p*M>>>N)*u):f[j]=f[j+1]=f[j+2]=0,j=g+((j=h+C)d;d+=4)b[d+3]=c[d]||0;return!0},b._prepAlphaMap=function(){if(!this.alphaMap)return!1;if(this.alphaMap==this._alphaMap&&this._mapData)return!0;this._mapData=null;var a,b=this._alphaMap=this.alphaMap,c=b;b instanceof HTMLCanvasElement?a=c.getContext("2d"):(c=createjs.createCanvas?createjs.createCanvas():document.createElement("canvas"),c.width=b.width,c.height=b.height,a=c.getContext("2d"),a.drawImage(b,0,0));try{var d=a.getImageData(0,0,b.width,b.height)}catch(e){return!1}return this._mapData=d.data,!0},createjs.AlphaMapFilter=createjs.promote(a,"Filter")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.mask=a}var b=createjs.extend(a,createjs.Filter);b.applyFilter=function(a,b,c,d,e,f,g,h){return this.mask?(f=f||a,null==g&&(g=b),null==h&&(h=c),f.save(),a!=f?!1:(f.globalCompositeOperation="destination-in",f.drawImage(this.mask,g,h),f.restore(),!0)):!0},b.clone=function(){return new a(this.mask)},b.toString=function(){return"[AlphaMaskFilter]"},createjs.AlphaMaskFilter=createjs.promote(a,"Filter")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c,d,e,f,g,h){this.redMultiplier=null!=a?a:1,this.greenMultiplier=null!=b?b:1,this.blueMultiplier=null!=c?c:1,this.alphaMultiplier=null!=d?d:1,this.redOffset=e||0,this.greenOffset=f||0,this.blueOffset=g||0,this.alphaOffset=h||0}var b=createjs.extend(a,createjs.Filter);b.toString=function(){return"[ColorFilter]"},b.clone=function(){return new a(this.redMultiplier,this.greenMultiplier,this.blueMultiplier,this.alphaMultiplier,this.redOffset,this.greenOffset,this.blueOffset,this.alphaOffset)},b._applyFilter=function(a){for(var b=a.data,c=b.length,d=0;c>d;d+=4)b[d]=b[d]*this.redMultiplier+this.redOffset,b[d+1]=b[d+1]*this.greenMultiplier+this.greenOffset,b[d+2]=b[d+2]*this.blueMultiplier+this.blueOffset,b[d+3]=b[d+3]*this.alphaMultiplier+this.alphaOffset;return!0},createjs.ColorFilter=createjs.promote(a,"Filter")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c,d){this.setColor(a,b,c,d)}var b=a.prototype;a.DELTA_INDEX=[0,.01,.02,.04,.05,.06,.07,.08,.1,.11,.12,.14,.15,.16,.17,.18,.2,.21,.22,.24,.25,.27,.28,.3,.32,.34,.36,.38,.4,.42,.44,.46,.48,.5,.53,.56,.59,.62,.65,.68,.71,.74,.77,.8,.83,.86,.89,.92,.95,.98,1,1.06,1.12,1.18,1.24,1.3,1.36,1.42,1.48,1.54,1.6,1.66,1.72,1.78,1.84,1.9,1.96,2,2.12,2.25,2.37,2.5,2.62,2.75,2.87,3,3.2,3.4,3.6,3.8,4,4.3,4.7,4.9,5,5.5,6,6.5,6.8,7,7.3,7.5,7.8,8,8.4,8.7,9,9.4,9.6,9.8,10],a.IDENTITY_MATRIX=[1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1],a.LENGTH=a.IDENTITY_MATRIX.length,b.setColor=function(a,b,c,d){return this.reset().adjustColor(a,b,c,d)},b.reset=function(){return this.copy(a.IDENTITY_MATRIX)},b.adjustColor=function(a,b,c,d){return this.adjustHue(d),this.adjustContrast(b),this.adjustBrightness(a),this.adjustSaturation(c)},b.adjustBrightness=function(a){return 0==a||isNaN(a)?this:(a=this._cleanValue(a,255),this._multiplyMatrix([1,0,0,0,a,0,1,0,0,a,0,0,1,0,a,0,0,0,1,0,0,0,0,0,1]),this)},b.adjustContrast=function(b){if(0==b||isNaN(b))return this;b=this._cleanValue(b,100);var c;return 0>b?c=127+b/100*127:(c=b%1,c=0==c?a.DELTA_INDEX[b]:a.DELTA_INDEX[b<<0]*(1-c)+a.DELTA_INDEX[(b<<0)+1]*c,c=127*c+127),this._multiplyMatrix([c/127,0,0,0,.5*(127-c),0,c/127,0,0,.5*(127-c),0,0,c/127,0,.5*(127-c),0,0,0,1,0,0,0,0,0,1]),this},b.adjustSaturation=function(a){if(0==a||isNaN(a))return this;a=this._cleanValue(a,100);var b=1+(a>0?3*a/100:a/100),c=.3086,d=.6094,e=.082;return this._multiplyMatrix([c*(1-b)+b,d*(1-b),e*(1-b),0,0,c*(1-b),d*(1-b)+b,e*(1-b),0,0,c*(1-b),d*(1-b),e*(1-b)+b,0,0,0,0,0,1,0,0,0,0,0,1]),this},b.adjustHue=function(a){if(0==a||isNaN(a))return this;a=this._cleanValue(a,180)/180*Math.PI;var b=Math.cos(a),c=Math.sin(a),d=.213,e=.715,f=.072;return this._multiplyMatrix([d+b*(1-d)+c*-d,e+b*-e+c*-e,f+b*-f+c*(1-f),0,0,d+b*-d+.143*c,e+b*(1-e)+.14*c,f+b*-f+c*-.283,0,0,d+b*-d+c*-(1-d),e+b*-e+c*e,f+b*(1-f)+c*f,0,0,0,0,0,1,0,0,0,0,0,1]),this},b.concat=function(b){return b=this._fixMatrix(b),b.length!=a.LENGTH?this:(this._multiplyMatrix(b),this)},b.clone=function(){return(new a).copy(this)},b.toArray=function(){for(var b=[],c=0,d=a.LENGTH;d>c;c++)b[c]=this[c];return b},b.copy=function(b){for(var c=a.LENGTH,d=0;c>d;d++)this[d]=b[d];return this},b.toString=function(){return"[ColorMatrix]"},b._multiplyMatrix=function(a){var b,c,d,e=[];for(b=0;5>b;b++){for(c=0;5>c;c++)e[c]=this[c+5*b];for(c=0;5>c;c++){var f=0;for(d=0;5>d;d++)f+=a[c+5*d]*e[d];this[c+5*b]=f}}},b._cleanValue=function(a,b){return Math.min(b,Math.max(-b,a))},b._fixMatrix=function(b){return b instanceof a&&(b=b.toArray()),b.lengtha.LENGTH&&(b=b.slice(0,a.LENGTH)),b},createjs.ColorMatrix=a}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.matrix=a}var b=createjs.extend(a,createjs.Filter);b.toString=function(){return"[ColorMatrixFilter]"},b.clone=function(){return new a(this.matrix)},b._applyFilter=function(a){for(var b,c,d,e,f=a.data,g=f.length,h=this.matrix,i=h[0],j=h[1],k=h[2],l=h[3],m=h[4],n=h[5],o=h[6],p=h[7],q=h[8],r=h[9],s=h[10],t=h[11],u=h[12],v=h[13],w=h[14],x=h[15],y=h[16],z=h[17],A=h[18],B=h[19],C=0;g>C;C+=4)b=f[C],c=f[C+1],d=f[C+2],e=f[C+3],f[C]=b*i+c*j+d*k+e*l+m,f[C+1]=b*n+c*o+d*p+e*q+r,f[C+2]=b*s+c*t+d*u+e*v+w,f[C+3]=b*x+c*y+d*z+e*A+B;return!0},createjs.ColorMatrixFilter=createjs.promote(a,"Filter")}(),this.createjs=this.createjs||{},function(){"use strict";function a(){throw"Touch cannot be instantiated"}a.isSupported=function(){return!!("ontouchstart"in window||window.navigator.msPointerEnabled&&window.navigator.msMaxTouchPoints>0||window.navigator.pointerEnabled&&window.navigator.maxTouchPoints>0)},a.enable=function(b,c,d){return b&&b.canvas&&a.isSupported()?b.__touch?!0:(b.__touch={pointers:{},multitouch:!c,preventDefault:!d,count:0},"ontouchstart"in window?a._IOS_enable(b):(window.navigator.msPointerEnabled||window.navigator.pointerEnabled)&&a._IE_enable(b),!0):!1},a.disable=function(b){b&&("ontouchstart"in window?a._IOS_disable(b):(window.navigator.msPointerEnabled||window.navigator.pointerEnabled)&&a._IE_disable(b),delete b.__touch)},a._IOS_enable=function(b){var c=b.canvas,d=b.__touch.f=function(c){a._IOS_handleEvent(b,c)};c.addEventListener("touchstart",d,!1),c.addEventListener("touchmove",d,!1),c.addEventListener("touchend",d,!1),c.addEventListener("touchcancel",d,!1)},a._IOS_disable=function(a){var b=a.canvas;if(b){var c=a.__touch.f;b.removeEventListener("touchstart",c,!1),b.removeEventListener("touchmove",c,!1),b.removeEventListener("touchend",c,!1),b.removeEventListener("touchcancel",c,!1)}},a._IOS_handleEvent=function(a,b){if(a){a.__touch.preventDefault&&b.preventDefault&&b.preventDefault();for(var c=b.changedTouches,d=b.type,e=0,f=c.length;f>e;e++){var g=c[e],h=g.identifier;g.target==a.canvas&&("touchstart"==d?this._handleStart(a,h,b,g.pageX,g.pageY):"touchmove"==d?this._handleMove(a,h,b,g.pageX,g.pageY):("touchend"==d||"touchcancel"==d)&&this._handleEnd(a,h,b))}}},a._IE_enable=function(b){var c=b.canvas,d=b.__touch.f=function(c){a._IE_handleEvent(b,c)};void 0===window.navigator.pointerEnabled?(c.addEventListener("MSPointerDown",d,!1),window.addEventListener("MSPointerMove",d,!1),window.addEventListener("MSPointerUp",d,!1),window.addEventListener("MSPointerCancel",d,!1),b.__touch.preventDefault&&(c.style.msTouchAction="none")):(c.addEventListener("pointerdown",d,!1),window.addEventListener("pointermove",d,!1),window.addEventListener("pointerup",d,!1),window.addEventListener("pointercancel",d,!1),b.__touch.preventDefault&&(c.style.touchAction="none")),b.__touch.activeIDs={}},a._IE_disable=function(a){var b=a.__touch.f;void 0===window.navigator.pointerEnabled?(window.removeEventListener("MSPointerMove",b,!1),window.removeEventListener("MSPointerUp",b,!1),window.removeEventListener("MSPointerCancel",b,!1),a.canvas&&a.canvas.removeEventListener("MSPointerDown",b,!1)):(window.removeEventListener("pointermove",b,!1),window.removeEventListener("pointerup",b,!1),window.removeEventListener("pointercancel",b,!1),a.canvas&&a.canvas.removeEventListener("pointerdown",b,!1))},a._IE_handleEvent=function(a,b){if(a){a.__touch.preventDefault&&b.preventDefault&&b.preventDefault();var c=b.type,d=b.pointerId,e=a.__touch.activeIDs;if("MSPointerDown"==c||"pointerdown"==c){if(b.srcElement!=a.canvas)return;e[d]=!0,this._handleStart(a,d,b,b.pageX,b.pageY)}else e[d]&&("MSPointerMove"==c||"pointermove"==c?this._handleMove(a,d,b,b.pageX,b.pageY):("MSPointerUp"==c||"MSPointerCancel"==c||"pointerup"==c||"pointercancel"==c)&&(delete e[d],this._handleEnd(a,d,b)))}},a._handleStart=function(a,b,c,d,e){var f=a.__touch;if(f.multitouch||!f.count){var g=f.pointers;g[b]||(g[b]=!0,f.count++,a._handlePointerDown(b,c,d,e))}},a._handleMove=function(a,b,c,d,e){a.__touch.pointers[b]&&a._handlePointerMove(b,c,d,e)},a._handleEnd=function(a,b,c){var d=a.__touch,e=d.pointers;e[b]&&(d.count--,a._handlePointerUp(b,c,!0),delete e[b])},createjs.Touch=a}(),this.createjs=this.createjs||{},function(){"use strict";var a=createjs.EaselJS=createjs.EaselJS||{};a.version="0.8.2",a.buildDate="Thu, 26 Nov 2015 20:44:34 GMT"}(),this.createjs=this.createjs||{},function(){"use strict";var a=createjs.PreloadJS=createjs.PreloadJS||{};a.version="0.6.2",a.buildDate="Thu, 26 Nov 2015 20:44:31 GMT"}(),this.createjs=this.createjs||{},function(){"use strict";createjs.proxy=function(a,b){var c=Array.prototype.slice.call(arguments,2);return function(){return a.apply(b,Array.prototype.slice.call(arguments,0).concat(c))}}}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c){this.Event_constructor("error"),this.title=a,this.message=b,this.data=c}var b=createjs.extend(a,createjs.Event);b.clone=function(){return new createjs.ErrorEvent(this.title,this.message,this.data)},createjs.ErrorEvent=createjs.promote(a,"Event")}(),this.createjs=this.createjs||{},function(a){"use strict";function b(a,b){this.Event_constructor("progress"),this.loaded=a,this.total=null==b?1:b,this.progress=0==b?0:this.loaded/this.total}var c=createjs.extend(b,createjs.Event);c.clone=function(){return new createjs.ProgressEvent(this.loaded,this.total)},createjs.ProgressEvent=createjs.promote(b,"Event")}(window),function(){function a(b,d){function f(a){if(f[a]!==q)return f[a];var b;if("bug-string-char-index"==a)b="a"!="a"[0];else if("json"==a)b=f("json-stringify")&&f("json-parse");else{var c,e='{"a":[1,true,false,null,"\\u0000\\b\\n\\f\\r\\t"]}';if("json-stringify"==a){var i=d.stringify,k="function"==typeof i&&t;if(k){(c=function(){return 1}).toJSON=c;try{k="0"===i(0)&&"0"===i(new g)&&'""'==i(new h)&&i(s)===q&&i(q)===q&&i()===q&&"1"===i(c)&&"[1]"==i([c])&&"[null]"==i([q])&&"null"==i(null)&&"[null,null,null]"==i([q,s,null])&&i({a:[c,!0,!1,null,"\x00\b\n\f\r "]})==e&&"1"===i(null,c)&&"[\n 1,\n 2\n]"==i([1,2],null,1)&&'"-271821-04-20T00:00:00.000Z"'==i(new j(-864e13))&&'"+275760-09-13T00:00:00.000Z"'==i(new j(864e13))&&'"-000001-01-01T00:00:00.000Z"'==i(new j(-621987552e5))&&'"1969-12-31T23:59:59.999Z"'==i(new j(-1))}catch(l){k=!1}}b=k}if("json-parse"==a){var m=d.parse;if("function"==typeof m)try{if(0===m("0")&&!m(!1)){c=m(e);var n=5==c.a.length&&1===c.a[0];if(n){try{n=!m('" "')}catch(l){}if(n)try{n=1!==m("01")}catch(l){}if(n)try{n=1!==m("1.")}catch(l){}}}}catch(l){n=!1}b=n}}return f[a]=!!b}b||(b=e.Object()),d||(d=e.Object());var g=b.Number||e.Number,h=b.String||e.String,i=b.Object||e.Object,j=b.Date||e.Date,k=b.SyntaxError||e.SyntaxError,l=b.TypeError||e.TypeError,m=b.Math||e.Math,n=b.JSON||e.JSON;"object"==typeof n&&n&&(d.stringify=n.stringify,d.parse=n.parse);var o,p,q,r=i.prototype,s=r.toString,t=new j(-0xc782b5b800cec);try{t=-109252==t.getUTCFullYear()&&0===t.getUTCMonth()&&1===t.getUTCDate()&&10==t.getUTCHours()&&37==t.getUTCMinutes()&&6==t.getUTCSeconds()&&708==t.getUTCMilliseconds()}catch(u){}if(!f("json")){var v="[object Function]",w="[object Date]",x="[object Number]",y="[object String]",z="[object Array]",A="[object Boolean]",B=f("bug-string-char-index");if(!t)var C=m.floor,D=[0,31,59,90,120,151,181,212,243,273,304,334],E=function(a,b){return D[b]+365*(a-1970)+C((a-1969+(b=+(b>1)))/4)-C((a-1901+b)/100)+C((a-1601+b)/400)};if((o=r.hasOwnProperty)||(o=function(a){var b,c={};return(c.__proto__=null,c.__proto__={toString:1},c).toString!=s?o=function(a){var b=this.__proto__,c=a in(this.__proto__=null,this);return this.__proto__=b,c}:(b=c.constructor,o=function(a){var c=(this.constructor||b).prototype;return a in this&&!(a in c&&this[a]===c[a])}),c=null,o.call(this,a)}),p=function(a,b){var d,e,f,g=0;(d=function(){this.valueOf=0}).prototype.valueOf=0,e=new d;for(f in e)o.call(e,f)&&g++;return d=e=null,g?p=2==g?function(a,b){var c,d={},e=s.call(a)==v;for(c in a)e&&"prototype"==c||o.call(d,c)||!(d[c]=1)||!o.call(a,c)||b(c)}:function(a,b){var c,d,e=s.call(a)==v;for(c in a)e&&"prototype"==c||!o.call(a,c)||(d="constructor"===c)||b(c);(d||o.call(a,c="constructor"))&&b(c)}:(e=["valueOf","toString","toLocaleString","propertyIsEnumerable","isPrototypeOf","hasOwnProperty","constructor"],p=function(a,b){var d,f,g=s.call(a)==v,h=!g&&"function"!=typeof a.constructor&&c[typeof a.hasOwnProperty]&&a.hasOwnProperty||o;for(d in a)g&&"prototype"==d||!h.call(a,d)||b(d);for(f=e.length;d=e[--f];h.call(a,d)&&b(d));}),p(a,b)},!f("json-stringify")){var F={92:"\\\\",34:'\\"',8:"\\b",12:"\\f",10:"\\n",13:"\\r",9:"\\t"},G="000000",H=function(a,b){return(G+(b||0)).slice(-a)},I="\\u00",J=function(a){for(var b='"',c=0,d=a.length,e=!B||d>10,f=e&&(B?a.split(""):a);d>c;c++){var g=a.charCodeAt(c);switch(g){case 8:case 9:case 10:case 12:case 13:case 34:case 92:b+=F[g];break;default:if(32>g){b+=I+H(2,g.toString(16));break}b+=e?f[c]:a.charAt(c)}}return b+'"'},K=function(a,b,c,d,e,f,g){var h,i,j,k,m,n,r,t,u,v,B,D,F,G,I,L;try{h=b[a]}catch(M){}if("object"==typeof h&&h)if(i=s.call(h),i!=w||o.call(h,"toJSON"))"function"==typeof h.toJSON&&(i!=x&&i!=y&&i!=z||o.call(h,"toJSON"))&&(h=h.toJSON(a));else if(h>-1/0&&1/0>h){if(E){for(m=C(h/864e5),j=C(m/365.2425)+1970-1;E(j+1,0)<=m;j++);for(k=C((m-E(j,0))/30.42);E(j,k+1)<=m;k++);m=1+m-E(j,k),n=(h%864e5+864e5)%864e5,r=C(n/36e5)%24,t=C(n/6e4)%60,u=C(n/1e3)%60,v=n%1e3}else j=h.getUTCFullYear(),k=h.getUTCMonth(),m=h.getUTCDate(),r=h.getUTCHours(),t=h.getUTCMinutes(),u=h.getUTCSeconds(),v=h.getUTCMilliseconds();h=(0>=j||j>=1e4?(0>j?"-":"+")+H(6,0>j?-j:j):H(4,j))+"-"+H(2,k+1)+"-"+H(2,m)+"T"+H(2,r)+":"+H(2,t)+":"+H(2,u)+"."+H(3,v)+"Z"}else h=null;if(c&&(h=c.call(b,a,h)),null===h)return"null";if(i=s.call(h),i==A)return""+h;if(i==x)return h>-1/0&&1/0>h?""+h:"null";if(i==y)return J(""+h);if("object"==typeof h){for(G=g.length;G--;)if(g[G]===h)throw l();if(g.push(h),B=[],I=f,f+=e,i==z){for(F=0,G=h.length;G>F;F++)D=K(F,h,c,d,e,f,g),B.push(D===q?"null":D);L=B.length?e?"[\n"+f+B.join(",\n"+f)+"\n"+I+"]":"["+B.join(",")+"]":"[]"}else p(d||h,function(a){var b=K(a,h,c,d,e,f,g);b!==q&&B.push(J(a)+":"+(e?" ":"")+b)}),L=B.length?e?"{\n"+f+B.join(",\n"+f)+"\n"+I+"}":"{"+B.join(",")+"}":"{}";return g.pop(),L}};d.stringify=function(a,b,d){var e,f,g,h;if(c[typeof b]&&b)if((h=s.call(b))==v)f=b;else if(h==z){g={};for(var i,j=0,k=b.length;k>j;i=b[j++],h=s.call(i),(h==y||h==x)&&(g[i]=1));}if(d)if((h=s.call(d))==x){if((d-=d%1)>0)for(e="",d>10&&(d=10);e.lengthL;)switch(e=f.charCodeAt(L)){case 9:case 10:case 13:case 32:L++;break;case 123:case 125:case 91:case 93:case 58:case 44:return a=B?f.charAt(L):f[L],L++,a;case 34:for(a="@",L++;g>L;)if(e=f.charCodeAt(L),32>e)P();else if(92==e)switch(e=f.charCodeAt(++L)){case 92:case 34: +case 47:case 98:case 116:case 110:case 102:case 114:a+=O[e],L++;break;case 117:for(b=++L,c=L+4;c>L;L++)e=f.charCodeAt(L),e>=48&&57>=e||e>=97&&102>=e||e>=65&&70>=e||P();a+=N("0x"+f.slice(b,L));break;default:P()}else{if(34==e)break;for(e=f.charCodeAt(L),b=L;e>=32&&92!=e&&34!=e;)e=f.charCodeAt(++L);a+=f.slice(b,L)}if(34==f.charCodeAt(L))return L++,a;P();default:if(b=L,45==e&&(d=!0,e=f.charCodeAt(++L)),e>=48&&57>=e){for(48==e&&(e=f.charCodeAt(L+1),e>=48&&57>=e)&&P(),d=!1;g>L&&(e=f.charCodeAt(L),e>=48&&57>=e);L++);if(46==f.charCodeAt(L)){for(c=++L;g>c&&(e=f.charCodeAt(c),e>=48&&57>=e);c++);c==L&&P(),L=c}if(e=f.charCodeAt(L),101==e||69==e){for(e=f.charCodeAt(++L),(43==e||45==e)&&L++,c=L;g>c&&(e=f.charCodeAt(c),e>=48&&57>=e);c++);c==L&&P(),L=c}return+f.slice(b,L)}if(d&&P(),"true"==f.slice(L,L+4))return L+=4,!0;if("false"==f.slice(L,L+5))return L+=5,!1;if("null"==f.slice(L,L+4))return L+=4,null;P()}return"$"},R=function(a){var b,c;if("$"==a&&P(),"string"==typeof a){if("@"==(B?a.charAt(0):a[0]))return a.slice(1);if("["==a){for(b=[];a=Q(),"]"!=a;c||(c=!0))c&&(","==a?(a=Q(),"]"==a&&P()):P()),","==a&&P(),b.push(R(a));return b}if("{"==a){for(b={};a=Q(),"}"!=a;c||(c=!0))c&&(","==a?(a=Q(),"}"==a&&P()):P()),(","==a||"string"!=typeof a||"@"!=(B?a.charAt(0):a[0])||":"!=Q())&&P(),b[a.slice(1)]=R(Q());return b}P()}return a},S=function(a,b,c){var d=T(a,b,c);d===q?delete a[b]:a[b]=d},T=function(a,b,c){var d,e=a[b];if("object"==typeof e&&e)if(s.call(e)==z)for(d=e.length;d--;)S(e,d,c);else p(e,function(a){S(e,a,c)});return c.call(a,b,e)};d.parse=function(a,b){var c,d;return L=0,M=""+a,c=R(Q()),"$"!=Q()&&P(),L=M=null,b&&s.call(b)==v?T((d={},d[""]=c,d),"",b):c}}}return d.runInContext=a,d}var b="function"==typeof define&&define.amd,c={"function":!0,object:!0},d=c[typeof exports]&&exports&&!exports.nodeType&&exports,e=c[typeof window]&&window||this,f=d&&c[typeof module]&&module&&!module.nodeType&&"object"==typeof global&&global;if(!f||f.global!==f&&f.window!==f&&f.self!==f||(e=f),d&&!b)a(e,d);else{var g=e.JSON,h=e.JSON3,i=!1,j=a(e,e.JSON3={noConflict:function(){return i||(i=!0,e.JSON=g,e.JSON3=h,g=h=null),j}});e.JSON={parse:j.parse,stringify:j.stringify}}b&&define(function(){return j})}.call(this),function(){var a={};a.appendToHead=function(b){a.getHead().appendChild(b)},a.getHead=function(){return document.head||document.getElementsByTagName("head")[0]},a.getBody=function(){return document.body||document.getElementsByTagName("body")[0]},createjs.DomUtils=a}(),function(){var a={};a.parseXML=function(a,b){var c=null;try{if(window.DOMParser){var d=new DOMParser;c=d.parseFromString(a,b)}}catch(e){}if(!c)try{c=new ActiveXObject("Microsoft.XMLDOM"),c.async=!1,c.loadXML(a)}catch(e){c=null}return c},a.parseJSON=function(a){if(null==a)return null;try{return JSON.parse(a)}catch(b){throw b}},createjs.DataUtils=a}(),this.createjs=this.createjs||{},function(){"use strict";function a(){this.src=null,this.type=null,this.id=null,this.maintainOrder=!1,this.callback=null,this.data=null,this.method=createjs.LoadItem.GET,this.values=null,this.headers=null,this.withCredentials=!1,this.mimeType=null,this.crossOrigin=null,this.loadTimeout=c.LOAD_TIMEOUT_DEFAULT}var b=a.prototype={},c=a;c.LOAD_TIMEOUT_DEFAULT=8e3,c.create=function(b){if("string"==typeof b){var d=new a;return d.src=b,d}if(b instanceof c)return b;if(b instanceof Object&&b.src)return null==b.loadTimeout&&(b.loadTimeout=c.LOAD_TIMEOUT_DEFAULT),b;throw new Error("Type not recognized.")},b.set=function(a){for(var b in a)this[b]=a[b];return this},createjs.LoadItem=c}(),function(){var a={};a.ABSOLUTE_PATT=/^(?:\w+:)?\/{2}/i,a.RELATIVE_PATT=/^[.\/]*?\//i,a.EXTENSION_PATT=/\/?[^\/]+\.(\w{1,5})$/i,a.parseURI=function(b){var c={absolute:!1,relative:!1};if(null==b)return c;var d=b.indexOf("?");d>-1&&(b=b.substr(0,d));var e;return a.ABSOLUTE_PATT.test(b)?c.absolute=!0:a.RELATIVE_PATT.test(b)&&(c.relative=!0),(e=b.match(a.EXTENSION_PATT))&&(c.extension=e[1].toLowerCase()),c},a.formatQueryString=function(a,b){if(null==a)throw new Error("You must specify data.");var c=[];for(var d in a)c.push(d+"="+escape(a[d]));return b&&(c=c.concat(b)),c.join("&")},a.buildPath=function(a,b){if(null==b)return a;var c=[],d=a.indexOf("?");if(-1!=d){var e=a.slice(d+1);c=c.concat(e.split("&"))}return-1!=d?a.slice(0,d)+"?"+this.formatQueryString(b,c):a+"?"+this.formatQueryString(b,c)},a.isCrossDomain=function(a){var b=document.createElement("a");b.href=a.src;var c=document.createElement("a");c.href=location.href;var d=""!=b.hostname&&(b.port!=c.port||b.protocol!=c.protocol||b.hostname!=c.hostname);return d},a.isLocal=function(a){var b=document.createElement("a");return b.href=a.src,""==b.hostname&&"file:"==b.protocol},a.isBinary=function(a){switch(a){case createjs.AbstractLoader.IMAGE:case createjs.AbstractLoader.BINARY:return!0;default:return!1}},a.isImageTag=function(a){return a instanceof HTMLImageElement},a.isAudioTag=function(a){return window.HTMLAudioElement?a instanceof HTMLAudioElement:!1},a.isVideoTag=function(a){return window.HTMLVideoElement?a instanceof HTMLVideoElement:!1},a.isText=function(a){switch(a){case createjs.AbstractLoader.TEXT:case createjs.AbstractLoader.JSON:case createjs.AbstractLoader.MANIFEST:case createjs.AbstractLoader.XML:case createjs.AbstractLoader.CSS:case createjs.AbstractLoader.SVG:case createjs.AbstractLoader.JAVASCRIPT:case createjs.AbstractLoader.SPRITESHEET:return!0;default:return!1}},a.getTypeByExtension=function(a){if(null==a)return createjs.AbstractLoader.TEXT;switch(a.toLowerCase()){case"jpeg":case"jpg":case"gif":case"png":case"webp":case"bmp":return createjs.AbstractLoader.IMAGE;case"ogg":case"mp3":case"webm":return createjs.AbstractLoader.SOUND;case"mp4":case"webm":case"ts":return createjs.AbstractLoader.VIDEO;case"json":return createjs.AbstractLoader.JSON;case"xml":return createjs.AbstractLoader.XML;case"css":return createjs.AbstractLoader.CSS;case"js":return createjs.AbstractLoader.JAVASCRIPT;case"svg":return createjs.AbstractLoader.SVG;default:return createjs.AbstractLoader.TEXT}},createjs.RequestUtils=a}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c){this.EventDispatcher_constructor(),this.loaded=!1,this.canceled=!1,this.progress=0,this.type=c,this.resultFormatter=null,a?this._item=createjs.LoadItem.create(a):this._item=null,this._preferXHR=b,this._result=null,this._rawResult=null,this._loadedItems=null,this._tagSrcAttribute=null,this._tag=null}var b=createjs.extend(a,createjs.EventDispatcher),c=a;c.POST="POST",c.GET="GET",c.BINARY="binary",c.CSS="css",c.IMAGE="image",c.JAVASCRIPT="javascript",c.JSON="json",c.JSONP="jsonp",c.MANIFEST="manifest",c.SOUND="sound",c.VIDEO="video",c.SPRITESHEET="spritesheet",c.SVG="svg",c.TEXT="text",c.XML="xml",b.getItem=function(){return this._item},b.getResult=function(a){return a?this._rawResult:this._result},b.getTag=function(){return this._tag},b.setTag=function(a){this._tag=a},b.load=function(){this._createRequest(),this._request.on("complete",this,this),this._request.on("progress",this,this),this._request.on("loadStart",this,this),this._request.on("abort",this,this),this._request.on("timeout",this,this),this._request.on("error",this,this);var a=new createjs.Event("initialize");a.loader=this._request,this.dispatchEvent(a),this._request.load()},b.cancel=function(){this.canceled=!0,this.destroy()},b.destroy=function(){this._request&&(this._request.removeAllEventListeners(),this._request.destroy()),this._request=null,this._item=null,this._rawResult=null,this._result=null,this._loadItems=null,this.removeAllEventListeners()},b.getLoadedItems=function(){return this._loadedItems},b._createRequest=function(){this._preferXHR?this._request=new createjs.XHRRequest(this._item):this._request=new createjs.TagRequest(this._item,this._tag||this._createTag(),this._tagSrcAttribute)},b._createTag=function(a){return null},b._sendLoadStart=function(){this._isCanceled()||this.dispatchEvent("loadstart")},b._sendProgress=function(a){if(!this._isCanceled()){var b=null;"number"==typeof a?(this.progress=a,b=new createjs.ProgressEvent(this.progress)):(b=a,this.progress=a.loaded/a.total,b.progress=this.progress,(isNaN(this.progress)||this.progress==1/0)&&(this.progress=0)),this.hasEventListener("progress")&&this.dispatchEvent(b)}},b._sendComplete=function(){if(!this._isCanceled()){this.loaded=!0;var a=new createjs.Event("complete");a.rawResult=this._rawResult,null!=this._result&&(a.result=this._result),this.dispatchEvent(a)}},b._sendError=function(a){!this._isCanceled()&&this.hasEventListener("error")&&(null==a&&(a=new createjs.ErrorEvent("PRELOAD_ERROR_EMPTY")),this.dispatchEvent(a))},b._isCanceled=function(){return null==window.createjs||this.canceled?!0:!1},b.resultFormatter=null,b.handleEvent=function(a){switch(a.type){case"complete":this._rawResult=a.target._response;var b=this.resultFormatter&&this.resultFormatter(this);b instanceof Function?b.call(this,createjs.proxy(this._resultFormatSuccess,this),createjs.proxy(this._resultFormatFailed,this)):(this._result=b||this._rawResult,this._sendComplete());break;case"progress":this._sendProgress(a);break;case"error":this._sendError(a);break;case"loadstart":this._sendLoadStart();break;case"abort":case"timeout":this._isCanceled()||this.dispatchEvent(new createjs.ErrorEvent("PRELOAD_"+a.type.toUpperCase()+"_ERROR"))}},b._resultFormatSuccess=function(a){this._result=a,this._sendComplete()},b._resultFormatFailed=function(a){this._sendError(a)},b.buildPath=function(a,b){return createjs.RequestUtils.buildPath(a,b)},b.toString=function(){return"[PreloadJS AbstractLoader]"},createjs.AbstractLoader=createjs.promote(a,"EventDispatcher")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c){this.AbstractLoader_constructor(a,b,c),this.resultFormatter=this._formatResult,this._tagSrcAttribute="src",this.on("initialize",this._updateXHR,this)}var b=createjs.extend(a,createjs.AbstractLoader);b.load=function(){this._tag||(this._tag=this._createTag(this._item.src)),this._tag.preload="auto",this._tag.load(),this.AbstractLoader_load()},b._createTag=function(){},b._createRequest=function(){this._preferXHR?this._request=new createjs.XHRRequest(this._item):this._request=new createjs.MediaTagRequest(this._item,this._tag||this._createTag(),this._tagSrcAttribute)},b._updateXHR=function(a){a.loader.setResponseType&&a.loader.setResponseType("blob")},b._formatResult=function(a){if(this._tag.removeEventListener&&this._tag.removeEventListener("canplaythrough",this._loadedHandler),this._tag.onstalled=null,this._preferXHR){var b=window.URL||window.webkitURL,c=a.getResult(!0);a.getTag().src=b.createObjectURL(c)}return a.getTag()},createjs.AbstractMediaLoader=createjs.promote(a,"AbstractLoader")}(),this.createjs=this.createjs||{},function(){"use strict";var a=function(a){this._item=a},b=createjs.extend(a,createjs.EventDispatcher);b.load=function(){},b.destroy=function(){},b.cancel=function(){},createjs.AbstractRequest=createjs.promote(a,"EventDispatcher")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c){this.AbstractRequest_constructor(a),this._tag=b,this._tagSrcAttribute=c,this._loadedHandler=createjs.proxy(this._handleTagComplete,this),this._addedToDOM=!1,this._startTagVisibility=null}var b=createjs.extend(a,createjs.AbstractRequest);b.load=function(){this._tag.onload=createjs.proxy(this._handleTagComplete,this),this._tag.onreadystatechange=createjs.proxy(this._handleReadyStateChange,this),this._tag.onerror=createjs.proxy(this._handleError,this);var a=new createjs.Event("initialize");a.loader=this._tag,this.dispatchEvent(a),this._hideTag(),this._loadTimeout=setTimeout(createjs.proxy(this._handleTimeout,this),this._item.loadTimeout),this._tag[this._tagSrcAttribute]=this._item.src,null==this._tag.parentNode&&(window.document.body.appendChild(this._tag),this._addedToDOM=!0)},b.destroy=function(){this._clean(),this._tag=null,this.AbstractRequest_destroy()},b._handleReadyStateChange=function(){clearTimeout(this._loadTimeout);var a=this._tag;("loaded"==a.readyState||"complete"==a.readyState)&&this._handleTagComplete()},b._handleError=function(){this._clean(),this.dispatchEvent("error")},b._handleTagComplete=function(){this._rawResult=this._tag,this._result=this.resultFormatter&&this.resultFormatter(this)||this._rawResult,this._clean(),this._showTag(),this.dispatchEvent("complete")},b._handleTimeout=function(){this._clean(),this.dispatchEvent(new createjs.Event("timeout"))},b._clean=function(){this._tag.onload=null,this._tag.onreadystatechange=null,this._tag.onerror=null,this._addedToDOM&&null!=this._tag.parentNode&&this._tag.parentNode.removeChild(this._tag),clearTimeout(this._loadTimeout)},b._hideTag=function(){this._startTagVisibility=this._tag.style.visibility,this._tag.style.visibility="hidden"},b._showTag=function(){this._tag.style.visibility=this._startTagVisibility},b._handleStalled=function(){},createjs.TagRequest=createjs.promote(a,"AbstractRequest")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c){this.AbstractRequest_constructor(a),this._tag=b,this._tagSrcAttribute=c,this._loadedHandler=createjs.proxy(this._handleTagComplete,this)}var b=createjs.extend(a,createjs.TagRequest);b.load=function(){var a=createjs.proxy(this._handleStalled,this);this._stalledCallback=a;var b=createjs.proxy(this._handleProgress,this);this._handleProgress=b,this._tag.addEventListener("stalled",a),this._tag.addEventListener("progress",b),this._tag.addEventListener&&this._tag.addEventListener("canplaythrough",this._loadedHandler,!1),this.TagRequest_load()},b._handleReadyStateChange=function(){clearTimeout(this._loadTimeout);var a=this._tag;("loaded"==a.readyState||"complete"==a.readyState)&&this._handleTagComplete()},b._handleStalled=function(){},b._handleProgress=function(a){if(a&&!(a.loaded>0&&0==a.total)){var b=new createjs.ProgressEvent(a.loaded,a.total);this.dispatchEvent(b)}},b._clean=function(){this._tag.removeEventListener&&this._tag.removeEventListener("canplaythrough",this._loadedHandler),this._tag.removeEventListener("stalled",this._stalledCallback),this._tag.removeEventListener("progress",this._progressCallback),this.TagRequest__clean()},createjs.MediaTagRequest=createjs.promote(a,"TagRequest")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.AbstractRequest_constructor(a),this._request=null,this._loadTimeout=null,this._xhrLevel=1,this._response=null,this._rawResponse=null,this._canceled=!1,this._handleLoadStartProxy=createjs.proxy(this._handleLoadStart,this),this._handleProgressProxy=createjs.proxy(this._handleProgress,this),this._handleAbortProxy=createjs.proxy(this._handleAbort,this),this._handleErrorProxy=createjs.proxy(this._handleError,this),this._handleTimeoutProxy=createjs.proxy(this._handleTimeout,this),this._handleLoadProxy=createjs.proxy(this._handleLoad,this),this._handleReadyStateChangeProxy=createjs.proxy(this._handleReadyStateChange,this),!this._createXHR(a)}var b=createjs.extend(a,createjs.AbstractRequest);a.ACTIVEX_VERSIONS=["Msxml2.XMLHTTP.6.0","Msxml2.XMLHTTP.5.0","Msxml2.XMLHTTP.4.0","MSXML2.XMLHTTP.3.0","MSXML2.XMLHTTP","Microsoft.XMLHTTP"],b.getResult=function(a){return a&&this._rawResponse?this._rawResponse:this._response},b.cancel=function(){this.canceled=!0,this._clean(),this._request.abort()},b.load=function(){if(null==this._request)return void this._handleError();null!=this._request.addEventListener?(this._request.addEventListener("loadstart",this._handleLoadStartProxy,!1),this._request.addEventListener("progress",this._handleProgressProxy,!1),this._request.addEventListener("abort",this._handleAbortProxy,!1),this._request.addEventListener("error",this._handleErrorProxy,!1),this._request.addEventListener("timeout",this._handleTimeoutProxy,!1),this._request.addEventListener("load",this._handleLoadProxy,!1),this._request.addEventListener("readystatechange",this._handleReadyStateChangeProxy,!1)):(this._request.onloadstart=this._handleLoadStartProxy,this._request.onprogress=this._handleProgressProxy,this._request.onabort=this._handleAbortProxy,this._request.onerror=this._handleErrorProxy,this._request.ontimeout=this._handleTimeoutProxy,this._request.onload=this._handleLoadProxy,this._request.onreadystatechange=this._handleReadyStateChangeProxy),1==this._xhrLevel&&(this._loadTimeout=setTimeout(createjs.proxy(this._handleTimeout,this),this._item.loadTimeout));try{this._item.values&&this._item.method!=createjs.AbstractLoader.GET?this._item.method==createjs.AbstractLoader.POST&&this._request.send(createjs.RequestUtils.formatQueryString(this._item.values)):this._request.send()}catch(a){this.dispatchEvent(new createjs.ErrorEvent("XHR_SEND",null,a))}},b.setResponseType=function(a){"blob"===a&&(a=window.URL?"blob":"arraybuffer",this._responseType=a),this._request.responseType=a},b.getAllResponseHeaders=function(){return this._request.getAllResponseHeaders instanceof Function?this._request.getAllResponseHeaders():null},b.getResponseHeader=function(a){return this._request.getResponseHeader instanceof Function?this._request.getResponseHeader(a):null},b._handleProgress=function(a){if(a&&!(a.loaded>0&&0==a.total)){var b=new createjs.ProgressEvent(a.loaded,a.total);this.dispatchEvent(b)}},b._handleLoadStart=function(a){clearTimeout(this._loadTimeout),this.dispatchEvent("loadstart")},b._handleAbort=function(a){this._clean(),this.dispatchEvent(new createjs.ErrorEvent("XHR_ABORTED",null,a))},b._handleError=function(a){this._clean(),this.dispatchEvent(new createjs.ErrorEvent(a.message))},b._handleReadyStateChange=function(a){4==this._request.readyState&&this._handleLoad()},b._handleLoad=function(a){if(!this.loaded){this.loaded=!0;var b=this._checkError();if(b)return void this._handleError(b);if(this._response=this._getResponse(),"arraybuffer"===this._responseType)try{this._response=new Blob([this._response])}catch(c){if(window.BlobBuilder=window.BlobBuilder||window.WebKitBlobBuilder||window.MozBlobBuilder||window.MSBlobBuilder,"TypeError"===c.name&&window.BlobBuilder){var d=new BlobBuilder;d.append(this._response),this._response=d.getBlob()}}this._clean(),this.dispatchEvent(new createjs.Event("complete"))}},b._handleTimeout=function(a){this._clean(),this.dispatchEvent(new createjs.ErrorEvent("PRELOAD_TIMEOUT",null,a))},b._checkError=function(){var a=parseInt(this._request.status);switch(a){case 404:case 0:return new Error(a)}return null},b._getResponse=function(){if(null!=this._response)return this._response;if(null!=this._request.response)return this._request.response;try{if(null!=this._request.responseText)return this._request.responseText}catch(a){}try{if(null!=this._request.responseXML)return this._request.responseXML}catch(a){}return null},b._createXHR=function(a){var b=createjs.RequestUtils.isCrossDomain(a),c={},d=null;if(window.XMLHttpRequest)d=new XMLHttpRequest,b&&void 0===d.withCredentials&&window.XDomainRequest&&(d=new XDomainRequest);else{for(var e=0,f=s.ACTIVEX_VERSIONS.length;f>e;e++){var g=s.ACTIVEX_VERSIONS[e];try{d=new ActiveXObject(g);break}catch(h){}}if(null==d)return!1}null==a.mimeType&&createjs.RequestUtils.isText(a.type)&&(a.mimeType="text/plain; charset=utf-8"),a.mimeType&&d.overrideMimeType&&d.overrideMimeType(a.mimeType),this._xhrLevel="string"==typeof d.responseType?2:1;var i=null;if(i=a.method==createjs.AbstractLoader.GET?createjs.RequestUtils.buildPath(a.src,a.values):a.src,d.open(a.method||createjs.AbstractLoader.GET,i,!0),b&&d instanceof XMLHttpRequest&&1==this._xhrLevel&&(c.Origin=location.origin),a.values&&a.method==createjs.AbstractLoader.POST&&(c["Content-Type"]="application/x-www-form-urlencoded"),b||c["X-Requested-With"]||(c["X-Requested-With"]="XMLHttpRequest"),a.headers)for(var j in a.headers)c[j]=a.headers[j];for(j in c)d.setRequestHeader(j,c[j]);return d instanceof XMLHttpRequest&&void 0!==a.withCredentials&&(d.withCredentials=a.withCredentials),this._request=d,!0},b._clean=function(){clearTimeout(this._loadTimeout),null!=this._request.removeEventListener?(this._request.removeEventListener("loadstart",this._handleLoadStartProxy),this._request.removeEventListener("progress",this._handleProgressProxy),this._request.removeEventListener("abort",this._handleAbortProxy),this._request.removeEventListener("error",this._handleErrorProxy),this._request.removeEventListener("timeout",this._handleTimeoutProxy),this._request.removeEventListener("load",this._handleLoadProxy),this._request.removeEventListener("readystatechange",this._handleReadyStateChangeProxy)):(this._request.onloadstart=null,this._request.onprogress=null,this._request.onabort=null,this._request.onerror=null,this._request.ontimeout=null,this._request.onload=null,this._request.onreadystatechange=null)},b.toString=function(){return"[PreloadJS XHRRequest]"},createjs.XHRRequest=createjs.promote(a,"AbstractRequest")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c){this.AbstractLoader_constructor(),this._plugins=[],this._typeCallbacks={},this._extensionCallbacks={},this.next=null,this.maintainScriptOrder=!0,this.stopOnError=!1,this._maxConnections=1,this._availableLoaders=[createjs.ImageLoader,createjs.JavaScriptLoader,createjs.CSSLoader,createjs.JSONLoader,createjs.JSONPLoader,createjs.SoundLoader,createjs.ManifestLoader,createjs.SpriteSheetLoader,createjs.XMLLoader,createjs.SVGLoader,createjs.BinaryLoader,createjs.VideoLoader,createjs.TextLoader],this._defaultLoaderLength=this._availableLoaders.length,this.init(a,b,c)}var b=createjs.extend(a,createjs.AbstractLoader),c=a;b.init=function(a,b,c){this.useXHR=!0,this.preferXHR=!0,this._preferXHR=!0,this.setPreferXHR(a),this._paused=!1,this._basePath=b,this._crossOrigin=c,this._loadStartWasDispatched=!1,this._currentlyLoadingScript=null,this._currentLoads=[],this._loadQueue=[],this._loadQueueBackup=[],this._loadItemsById={},this._loadItemsBySrc={},this._loadedResults={},this._loadedRawResults={},this._numItems=0,this._numItemsLoaded=0,this._scriptOrder=[],this._loadedScripts=[],this._lastProgress=NaN},c.loadTimeout=8e3,c.LOAD_TIMEOUT=0,c.BINARY=createjs.AbstractLoader.BINARY,c.CSS=createjs.AbstractLoader.CSS,c.IMAGE=createjs.AbstractLoader.IMAGE,c.JAVASCRIPT=createjs.AbstractLoader.JAVASCRIPT,c.JSON=createjs.AbstractLoader.JSON,c.JSONP=createjs.AbstractLoader.JSONP,c.MANIFEST=createjs.AbstractLoader.MANIFEST,c.SOUND=createjs.AbstractLoader.SOUND,c.VIDEO=createjs.AbstractLoader.VIDEO,c.SVG=createjs.AbstractLoader.SVG,c.TEXT=createjs.AbstractLoader.TEXT,c.XML=createjs.AbstractLoader.XML,c.POST=createjs.AbstractLoader.POST,c.GET=createjs.AbstractLoader.GET,b.registerLoader=function(a){if(!a||!a.canLoadItem)throw new Error("loader is of an incorrect type.");if(-1!=this._availableLoaders.indexOf(a))throw new Error("loader already exists.");this._availableLoaders.unshift(a)},b.unregisterLoader=function(a){var b=this._availableLoaders.indexOf(a);-1!=b&&b0)return;var c=!1;if(b){for(;b.length;){var d=b.pop(),e=this.getResult(d);for(f=this._loadQueue.length-1;f>=0;f--)if(g=this._loadQueue[f].getItem(),g.id==d||g.src==d){this._loadQueue.splice(f,1)[0].cancel();break}for(f=this._loadQueueBackup.length-1;f>=0;f--)if(g=this._loadQueueBackup[f].getItem(),g.id==d||g.src==d){this._loadQueueBackup.splice(f,1)[0].cancel();break}if(e)this._disposeItem(this.getItem(d));else for(var f=this._currentLoads.length-1;f>=0;f--){var g=this._currentLoads[f].getItem();if(g.id==d||g.src==d){this._currentLoads.splice(f,1)[0].cancel(),c=!0;break}}}c&&this._loadNext()}else{this.close();for(var h in this._loadItemsById)this._disposeItem(this._loadItemsById[h]);this.init(this.preferXHR,this._basePath)}},b.reset=function(){this.close();for(var a in this._loadItemsById)this._disposeItem(this._loadItemsById[a]);for(var b=[],c=0,d=this._loadQueueBackup.length;d>c;c++)b.push(this._loadQueueBackup[c].getItem());this.loadManifest(b,!1)},b.installPlugin=function(a){if(null!=a&&null!=a.getPreloadHandlers){this._plugins.push(a);var b=a.getPreloadHandlers();if(b.scope=a,null!=b.types)for(var c=0,d=b.types.length;d>c;c++)this._typeCallbacks[b.types[c]]=b;if(null!=b.extensions)for(c=0,d=b.extensions.length;d>c;c++)this._extensionCallbacks[b.extensions[c]]=b}},b.setMaxConnections=function(a){this._maxConnections=a,!this._paused&&this._loadQueue.length>0&&this._loadNext()},b.loadFile=function(a,b,c){if(null==a){var d=new createjs.ErrorEvent("PRELOAD_NO_FILE");return void this._sendError(d)}this._addItem(a,null,c),b!==!1?this.setPaused(!1):this.setPaused(!0)},b.loadManifest=function(a,b,d){var e=null,f=null;if(Array.isArray(a)){if(0==a.length){var g=new createjs.ErrorEvent("PRELOAD_MANIFEST_EMPTY");return void this._sendError(g)}e=a}else if("string"==typeof a)e=[{src:a,type:c.MANIFEST}];else{if("object"!=typeof a){var g=new createjs.ErrorEvent("PRELOAD_MANIFEST_NULL");return void this._sendError(g)}if(void 0!==a.src){if(null==a.type)a.type=c.MANIFEST;else if(a.type!=c.MANIFEST){var g=new createjs.ErrorEvent("PRELOAD_MANIFEST_TYPE");this._sendError(g)}e=[a]}else void 0!==a.manifest&&(e=a.manifest,f=a.path)}for(var h=0,i=e.length;i>h;h++)this._addItem(e[h],f,d);b!==!1?this.setPaused(!1):this.setPaused(!0)},b.load=function(){this.setPaused(!1)},b.getItem=function(a){return this._loadItemsById[a]||this._loadItemsBySrc[a]},b.getResult=function(a,b){var c=this._loadItemsById[a]||this._loadItemsBySrc[a];if(null==c)return null;var d=c.id;return b&&this._loadedRawResults[d]?this._loadedRawResults[d]:this._loadedResults[d]},b.getItems=function(a){var b=[];for(var c in this._loadItemsById){var d=this._loadItemsById[c],e=this.getResult(c);(a!==!0||null!=e)&&b.push({item:d,result:e,rawResult:this.getResult(c,!0)})}return b},b.setPaused=function(a){this._paused=a,this._paused||this._loadNext()},b.close=function(){for(;this._currentLoads.length;)this._currentLoads.pop().cancel();this._scriptOrder.length=0,this._loadedScripts.length=0,this.loadStartWasDispatched=!1,this._itemCount=0,this._lastProgress=NaN},b._addItem=function(a,b,c){var d=this._createLoadItem(a,b,c);if(null!=d){var e=this._createLoader(d);null!=e&&("plugins"in e&&(e.plugins=this._plugins),d._loader=e,this._loadQueue.push(e),this._loadQueueBackup.push(e),this._numItems++,this._updateProgress(),(this.maintainScriptOrder&&d.type==createjs.LoadQueue.JAVASCRIPT||d.maintainOrder===!0)&&(this._scriptOrder.push(d),this._loadedScripts.push(null)))}},b._createLoadItem=function(a,b,c){var d=createjs.LoadItem.create(a);if(null==d)return null;var e="",f=c||this._basePath;if(d.src instanceof Object){if(!d.type)return null;if(b){e=b;var g=createjs.RequestUtils.parseURI(b);null==f||g.absolute||g.relative||(e=f+e)}else null!=f&&(e=f)}else{var h=createjs.RequestUtils.parseURI(d.src);h.extension&&(d.ext=h.extension),null==d.type&&(d.type=createjs.RequestUtils.getTypeByExtension(d.ext));var i=d.src;if(!h.absolute&&!h.relative)if(b){e=b;var g=createjs.RequestUtils.parseURI(b);i=b+i,null==f||g.absolute||g.relative||(e=f+e)}else null!=f&&(e=f);d.src=e+d.src}d.path=e,(void 0===d.id||null===d.id||""===d.id)&&(d.id=i);var j=this._typeCallbacks[d.type]||this._extensionCallbacks[d.ext];if(j){var k=j.callback.call(j.scope,d,this);if(k===!1)return null;k===!0||null!=k&&(d._loader=k),h=createjs.RequestUtils.parseURI(d.src),null!=h.extension&&(d.ext=h.extension)}return this._loadItemsById[d.id]=d,this._loadItemsBySrc[d.src]=d,null==d.crossOrigin&&(d.crossOrigin=this._crossOrigin),d},b._createLoader=function(a){if(null!=a._loader)return a._loader;for(var b=this.preferXHR,c=0;c=this._maxConnections);a++){var b=this._loadQueue[a];this._canStartLoad(b)&&(this._loadQueue.splice(a,1),a--,this._loadItem(b))}}},b._loadItem=function(a){a.on("fileload",this._handleFileLoad,this),a.on("progress",this._handleProgress,this),a.on("complete",this._handleFileComplete,this),a.on("error",this._handleError,this),a.on("fileerror",this._handleFileError,this),this._currentLoads.push(a),this._sendFileStart(a.getItem()),a.load()},b._handleFileLoad=function(a){a.target=null,this.dispatchEvent(a)},b._handleFileError=function(a){var b=new createjs.ErrorEvent("FILE_LOAD_ERROR",null,a.item);this._sendError(b)},b._handleError=function(a){var b=a.target;this._numItemsLoaded++,this._finishOrderedItem(b,!0),this._updateProgress();var c=new createjs.ErrorEvent("FILE_LOAD_ERROR",null,b.getItem());this._sendError(c),this.stopOnError?this.setPaused(!0):(this._removeLoadItem(b),this._cleanLoadItem(b),this._loadNext())},b._handleFileComplete=function(a){var b=a.target,c=b.getItem(),d=b.getResult();this._loadedResults[c.id]=d;var e=b.getResult(!0);null!=e&&e!==d&&(this._loadedRawResults[c.id]=e),this._saveLoadedItems(b),this._removeLoadItem(b),this._finishOrderedItem(b)||this._processFinishedLoad(c,b),this._cleanLoadItem(b)},b._saveLoadedItems=function(a){var b=a.getLoadedItems();if(null!==b)for(var c=0;cb;b++){var c=this._loadedScripts[b];if(null===c)break;if(c!==!0){var d=this._loadedResults[c.id];c.type==createjs.LoadQueue.JAVASCRIPT&&createjs.DomUtils.appendToHead(d);var e=c._loader;this._processFinishedLoad(c,e),this._loadedScripts[b]=!0}}},b._processFinishedLoad=function(a,b){if(this._numItemsLoaded++,!this.maintainScriptOrder&&a.type==createjs.LoadQueue.JAVASCRIPT){var c=b.getTag();createjs.DomUtils.appendToHead(c)}this._updateProgress(),this._sendFileComplete(a,b),this._loadNext()},b._canStartLoad=function(a){if(!this.maintainScriptOrder||a.preferXHR)return!0;var b=a.getItem();if(b.type!=createjs.LoadQueue.JAVASCRIPT)return!0;if(this._currentlyLoadingScript)return!1;for(var c=this._scriptOrder.indexOf(b),d=0;c>d;){var e=this._loadedScripts[d];if(null==e)return!1;d++}return this._currentlyLoadingScript=!0,!0},b._removeLoadItem=function(a){for(var b=this._currentLoads.length,c=0;b>c;c++)if(this._currentLoads[c]==a){this._currentLoads.splice(c,1);break}},b._cleanLoadItem=function(a){var b=a.getItem();b&&delete b._loader},b._handleProgress=function(a){var b=a.target;this._sendFileProgress(b.getItem(),b.progress),this._updateProgress()},b._updateProgress=function(){var a=this._numItemsLoaded/this._numItems,b=this._numItems-this._numItemsLoaded;if(b>0){for(var c=0,d=0,e=this._currentLoads.length;e>d;d++)c+=this._currentLoads[d].progress;a+=c/b*(b/this._numItems)}this._lastProgress!=a&&(this._sendProgress(a),this._lastProgress=a)},b._disposeItem=function(a){delete this._loadedResults[a.id],delete this._loadedRawResults[a.id],delete this._loadItemsById[a.id],delete this._loadItemsBySrc[a.src]},b._sendFileProgress=function(a,b){if(!this._isCanceled()&&!this._paused&&this.hasEventListener("fileprogress")){var c=new createjs.Event("fileprogress");c.progress=b,c.loaded=b,c.total=1,c.item=a,this.dispatchEvent(c)}},b._sendFileComplete=function(a,b){ +if(!this._isCanceled()&&!this._paused){var c=new createjs.Event("fileload");c.loader=b,c.item=a,c.result=this._loadedResults[a.id],c.rawResult=this._loadedRawResults[a.id],a.completeHandler&&a.completeHandler(c),this.hasEventListener("fileload")&&this.dispatchEvent(c)}},b._sendFileStart=function(a){var b=new createjs.Event("filestart");b.item=a,this.hasEventListener("filestart")&&this.dispatchEvent(b)},b.toString=function(){return"[PreloadJS LoadQueue]"},createjs.LoadQueue=createjs.promote(a,"AbstractLoader")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.AbstractLoader_constructor(a,!0,createjs.AbstractLoader.TEXT)}var b=(createjs.extend(a,createjs.AbstractLoader),a);b.canLoadItem=function(a){return a.type==createjs.AbstractLoader.TEXT},createjs.TextLoader=createjs.promote(a,"AbstractLoader")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.AbstractLoader_constructor(a,!0,createjs.AbstractLoader.BINARY),this.on("initialize",this._updateXHR,this)}var b=createjs.extend(a,createjs.AbstractLoader),c=a;c.canLoadItem=function(a){return a.type==createjs.AbstractLoader.BINARY},b._updateXHR=function(a){a.loader.setResponseType("arraybuffer")},createjs.BinaryLoader=createjs.promote(a,"AbstractLoader")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b){this.AbstractLoader_constructor(a,b,createjs.AbstractLoader.CSS),this.resultFormatter=this._formatResult,this._tagSrcAttribute="href",b?this._tag=document.createElement("style"):this._tag=document.createElement("link"),this._tag.rel="stylesheet",this._tag.type="text/css"}var b=createjs.extend(a,createjs.AbstractLoader),c=a;c.canLoadItem=function(a){return a.type==createjs.AbstractLoader.CSS},b._formatResult=function(a){if(this._preferXHR){var b=a.getTag();if(b.styleSheet)b.styleSheet.cssText=a.getResult(!0);else{var c=document.createTextNode(a.getResult(!0));b.appendChild(c)}}else b=this._tag;return createjs.DomUtils.appendToHead(b),b},createjs.CSSLoader=createjs.promote(a,"AbstractLoader")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b){this.AbstractLoader_constructor(a,b,createjs.AbstractLoader.IMAGE),this.resultFormatter=this._formatResult,this._tagSrcAttribute="src",createjs.RequestUtils.isImageTag(a)?this._tag=a:createjs.RequestUtils.isImageTag(a.src)?this._tag=a.src:createjs.RequestUtils.isImageTag(a.tag)&&(this._tag=a.tag),null!=this._tag?this._preferXHR=!1:this._tag=document.createElement("img"),this.on("initialize",this._updateXHR,this)}var b=createjs.extend(a,createjs.AbstractLoader),c=a;c.canLoadItem=function(a){return a.type==createjs.AbstractLoader.IMAGE},b.load=function(){if(""!=this._tag.src&&this._tag.complete)return void this._sendComplete();var a=this._item.crossOrigin;1==a&&(a="Anonymous"),null==a||createjs.RequestUtils.isLocal(this._item.src)||(this._tag.crossOrigin=a),this.AbstractLoader_load()},b._updateXHR=function(a){a.loader.mimeType="text/plain; charset=x-user-defined-binary",a.loader.setResponseType&&a.loader.setResponseType("blob")},b._formatResult=function(a){return this._formatImage},b._formatImage=function(a,b){var c=this._tag,d=window.URL||window.webkitURL;if(this._preferXHR)if(d){var e=d.createObjectURL(this.getResult(!0));c.src=e,c.addEventListener("load",this._cleanUpURL,!1),c.addEventListener("error",this._cleanUpURL,!1)}else c.src=this._item.src;else;c.complete?a(c):(c.onload=createjs.proxy(function(){a(this._tag)},this),c.onerror=createjs.proxy(function(){b(_this._tag)},this))},b._cleanUpURL=function(a){var b=window.URL||window.webkitURL;b.revokeObjectURL(a.target.src)},createjs.ImageLoader=createjs.promote(a,"AbstractLoader")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b){this.AbstractLoader_constructor(a,b,createjs.AbstractLoader.JAVASCRIPT),this.resultFormatter=this._formatResult,this._tagSrcAttribute="src",this.setTag(document.createElement("script"))}var b=createjs.extend(a,createjs.AbstractLoader),c=a;c.canLoadItem=function(a){return a.type==createjs.AbstractLoader.JAVASCRIPT},b._formatResult=function(a){var b=a.getTag();return this._preferXHR&&(b.text=a.getResult(!0)),b},createjs.JavaScriptLoader=createjs.promote(a,"AbstractLoader")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.AbstractLoader_constructor(a,!0,createjs.AbstractLoader.JSON),this.resultFormatter=this._formatResult}var b=createjs.extend(a,createjs.AbstractLoader),c=a;c.canLoadItem=function(a){return a.type==createjs.AbstractLoader.JSON},b._formatResult=function(a){var b=null;try{b=createjs.DataUtils.parseJSON(a.getResult(!0))}catch(c){var d=new createjs.ErrorEvent("JSON_FORMAT",null,c);return this._sendError(d),c}return b},createjs.JSONLoader=createjs.promote(a,"AbstractLoader")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.AbstractLoader_constructor(a,!1,createjs.AbstractLoader.JSONP),this.setTag(document.createElement("script")),this.getTag().type="text/javascript"}var b=createjs.extend(a,createjs.AbstractLoader),c=a;c.canLoadItem=function(a){return a.type==createjs.AbstractLoader.JSONP},b.cancel=function(){this.AbstractLoader_cancel(),this._dispose()},b.load=function(){if(null==this._item.callback)throw new Error("callback is required for loading JSONP requests.");if(null!=window[this._item.callback])throw new Error("JSONP callback '"+this._item.callback+"' already exists on window. You need to specify a different callback or re-name the current one.");window[this._item.callback]=createjs.proxy(this._handleLoad,this),window.document.body.appendChild(this._tag),this._loadTimeout=setTimeout(createjs.proxy(this._handleTimeout,this),this._item.loadTimeout),this._tag.src=this._item.src},b._handleLoad=function(a){this._result=this._rawResult=a,this._sendComplete(),this._dispose()},b._handleTimeout=function(){this._dispose(),this.dispatchEvent(new createjs.ErrorEvent("timeout"))},b._dispose=function(){window.document.body.removeChild(this._tag),delete window[this._item.callback],clearTimeout(this._loadTimeout)},createjs.JSONPLoader=createjs.promote(a,"AbstractLoader")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.AbstractLoader_constructor(a,null,createjs.AbstractLoader.MANIFEST),this.plugins=null,this._manifestQueue=null}var b=createjs.extend(a,createjs.AbstractLoader),c=a;c.MANIFEST_PROGRESS=.25,c.canLoadItem=function(a){return a.type==createjs.AbstractLoader.MANIFEST},b.load=function(){this.AbstractLoader_load()},b._createRequest=function(){var a=this._item.callback;null!=a?this._request=new createjs.JSONPLoader(this._item):this._request=new createjs.JSONLoader(this._item)},b.handleEvent=function(a){switch(a.type){case"complete":return this._rawResult=a.target.getResult(!0),this._result=a.target.getResult(),this._sendProgress(c.MANIFEST_PROGRESS),void this._loadManifest(this._result);case"progress":return a.loaded*=c.MANIFEST_PROGRESS,this.progress=a.loaded/a.total,(isNaN(this.progress)||this.progress==1/0)&&(this.progress=0),void this._sendProgress(a)}this.AbstractLoader_handleEvent(a)},b.destroy=function(){this.AbstractLoader_destroy(),this._manifestQueue.close()},b._loadManifest=function(a){if(a&&a.manifest){var b=this._manifestQueue=new createjs.LoadQueue;b.on("fileload",this._handleManifestFileLoad,this),b.on("progress",this._handleManifestProgress,this),b.on("complete",this._handleManifestComplete,this,!0),b.on("error",this._handleManifestError,this,!0);for(var c=0,d=this.plugins.length;d>c;c++)b.installPlugin(this.plugins[c]);b.loadManifest(a)}else this._sendComplete()},b._handleManifestFileLoad=function(a){a.target=null,this.dispatchEvent(a)},b._handleManifestComplete=function(a){this._loadedItems=this._manifestQueue.getItems(!0),this._sendComplete()},b._handleManifestProgress=function(a){this.progress=a.progress*(1-c.MANIFEST_PROGRESS)+c.MANIFEST_PROGRESS,this._sendProgress(this.progress)},b._handleManifestError=function(a){var b=new createjs.Event("fileerror");b.item=a.data,this.dispatchEvent(b)},createjs.ManifestLoader=createjs.promote(a,"AbstractLoader")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b){this.AbstractMediaLoader_constructor(a,b,createjs.AbstractLoader.SOUND),createjs.RequestUtils.isAudioTag(a)?this._tag=a:createjs.RequestUtils.isAudioTag(a.src)?this._tag=a:createjs.RequestUtils.isAudioTag(a.tag)&&(this._tag=createjs.RequestUtils.isAudioTag(a)?a:a.src),null!=this._tag&&(this._preferXHR=!1)}var b=createjs.extend(a,createjs.AbstractMediaLoader),c=a;c.canLoadItem=function(a){return a.type==createjs.AbstractLoader.SOUND},b._createTag=function(a){var b=document.createElement("audio");return b.autoplay=!1,b.preload="none",b.src=a,b},createjs.SoundLoader=createjs.promote(a,"AbstractMediaLoader")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b){this.AbstractMediaLoader_constructor(a,b,createjs.AbstractLoader.VIDEO),createjs.RequestUtils.isVideoTag(a)||createjs.RequestUtils.isVideoTag(a.src)?(this.setTag(createjs.RequestUtils.isVideoTag(a)?a:a.src),this._preferXHR=!1):this.setTag(this._createTag())}var b=createjs.extend(a,createjs.AbstractMediaLoader),c=a;b._createTag=function(){return document.createElement("video")},c.canLoadItem=function(a){return a.type==createjs.AbstractLoader.VIDEO},createjs.VideoLoader=createjs.promote(a,"AbstractMediaLoader")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b){this.AbstractLoader_constructor(a,b,createjs.AbstractLoader.SPRITESHEET),this._manifestQueue=null}var b=createjs.extend(a,createjs.AbstractLoader),c=a;c.SPRITESHEET_PROGRESS=.25,c.canLoadItem=function(a){return a.type==createjs.AbstractLoader.SPRITESHEET},b.destroy=function(){this.AbstractLoader_destroy,this._manifestQueue.close()},b._createRequest=function(){var a=this._item.callback;null!=a?this._request=new createjs.JSONPLoader(this._item):this._request=new createjs.JSONLoader(this._item)},b.handleEvent=function(a){switch(a.type){case"complete":return this._rawResult=a.target.getResult(!0),this._result=a.target.getResult(),this._sendProgress(c.SPRITESHEET_PROGRESS),void this._loadManifest(this._result);case"progress":return a.loaded*=c.SPRITESHEET_PROGRESS,this.progress=a.loaded/a.total,(isNaN(this.progress)||this.progress==1/0)&&(this.progress=0),void this._sendProgress(a)}this.AbstractLoader_handleEvent(a)},b._loadManifest=function(a){if(a&&a.images){var b=this._manifestQueue=new createjs.LoadQueue(this._preferXHR,this._item.path,this._item.crossOrigin);b.on("complete",this._handleManifestComplete,this,!0),b.on("fileload",this._handleManifestFileLoad,this),b.on("progress",this._handleManifestProgress,this),b.on("error",this._handleManifestError,this,!0),b.loadManifest(a.images)}},b._handleManifestFileLoad=function(a){var b=a.result;if(null!=b){var c=this.getResult().images,d=c.indexOf(a.item.src);c[d]=b}},b._handleManifestComplete=function(a){this._result=new createjs.SpriteSheet(this._result),this._loadedItems=this._manifestQueue.getItems(!0),this._sendComplete()},b._handleManifestProgress=function(a){this.progress=a.progress*(1-c.SPRITESHEET_PROGRESS)+c.SPRITESHEET_PROGRESS,this._sendProgress(this.progress)},b._handleManifestError=function(a){var b=new createjs.Event("fileerror");b.item=a.data,this.dispatchEvent(b)},createjs.SpriteSheetLoader=createjs.promote(a,"AbstractLoader")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b){this.AbstractLoader_constructor(a,b,createjs.AbstractLoader.SVG),this.resultFormatter=this._formatResult,this._tagSrcAttribute="data",b?this.setTag(document.createElement("svg")):(this.setTag(document.createElement("object")),this.getTag().type="image/svg+xml")}var b=createjs.extend(a,createjs.AbstractLoader),c=a;c.canLoadItem=function(a){return a.type==createjs.AbstractLoader.SVG},b._formatResult=function(a){var b=createjs.DataUtils.parseXML(a.getResult(!0),"text/xml"),c=a.getTag();return!this._preferXHR&&document.body.contains(c)&&document.body.removeChild(c),null!=b.documentElement?(c.appendChild(b.documentElement),c.style.visibility="visible",c):b},createjs.SVGLoader=createjs.promote(a,"AbstractLoader")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.AbstractLoader_constructor(a,!0,createjs.AbstractLoader.XML),this.resultFormatter=this._formatResult}var b=createjs.extend(a,createjs.AbstractLoader),c=a;c.canLoadItem=function(a){return a.type==createjs.AbstractLoader.XML},b._formatResult=function(a){return createjs.DataUtils.parseXML(a.getResult(!0),"text/xml")},createjs.XMLLoader=createjs.promote(a,"AbstractLoader")}(),this.createjs=this.createjs||{},function(){var a=createjs.SoundJS=createjs.SoundJS||{};a.version="0.6.2",a.buildDate="Thu, 26 Nov 2015 20:44:31 GMT"}(),this.createjs=this.createjs||{},createjs.indexOf=function(a,b){"use strict";for(var c=0,d=a.length;d>c;c++)if(b===a[c])return c;return-1},this.createjs=this.createjs||{},function(){"use strict";createjs.proxy=function(a,b){var c=Array.prototype.slice.call(arguments,2);return function(){return a.apply(b,Array.prototype.slice.call(arguments,0).concat(c))}}}(),this.createjs=this.createjs||{},function(){"use strict";function a(){throw"BrowserDetect cannot be instantiated"}var b=a.agent=window.navigator.userAgent;a.isWindowPhone=b.indexOf("IEMobile")>-1||b.indexOf("Windows Phone")>-1,a.isFirefox=b.indexOf("Firefox")>-1,a.isOpera=null!=window.opera,a.isChrome=b.indexOf("Chrome")>-1,a.isIOS=(b.indexOf("iPod")>-1||b.indexOf("iPhone")>-1||b.indexOf("iPad")>-1)&&!a.isWindowPhone,a.isAndroid=b.indexOf("Android")>-1&&!a.isWindowPhone,a.isBlackberry=b.indexOf("Blackberry")>-1,createjs.BrowserDetect=a}(),this.createjs=this.createjs||{},function(){"use strict";var a=function(){this.interrupt=null,this.delay=null,this.offset=null,this.loop=null,this.volume=null,this.pan=null,this.startTime=null,this.duration=null},b=a.prototype={},c=a;c.create=function(a){if(a instanceof c||a instanceof Object){var b=new createjs.PlayPropsConfig;return b.set(a),b}throw new Error("Type not recognized.")},b.set=function(a){for(var b in a)this[b]=a[b];return this},b.toString=function(){return"[PlayPropsConfig]"},createjs.PlayPropsConfig=c}(),this.createjs=this.createjs||{},function(){"use strict";function a(){throw"Sound cannot be instantiated"}function b(a,b){this.init(a,b)}var c=a;c.INTERRUPT_ANY="any",c.INTERRUPT_EARLY="early",c.INTERRUPT_LATE="late",c.INTERRUPT_NONE="none",c.PLAY_INITED="playInited",c.PLAY_SUCCEEDED="playSucceeded",c.PLAY_INTERRUPTED="playInterrupted",c.PLAY_FINISHED="playFinished",c.PLAY_FAILED="playFailed",c.SUPPORTED_EXTENSIONS=["mp3","ogg","opus","mpeg","wav","m4a","mp4","aiff","wma","mid"],c.EXTENSION_MAP={m4a:"mp4"},c.FILE_PATTERN=/^(?:(\w+:)\/{2}(\w+(?:\.\w+)*\/?))?([\/.]*?(?:[^?]+)?\/)?((?:[^\/?]+)\.(\w+))(?:\?(\S+)?)?$/,c.defaultInterruptBehavior=c.INTERRUPT_NONE,c.alternateExtensions=[],c.activePlugin=null,c._masterVolume=1,Object.defineProperty(c,"volume",{get:function(){return this._masterVolume},set:function(a){if(null==Number(a))return!1;if(a=Math.max(0,Math.min(1,a)),c._masterVolume=a,!this.activePlugin||!this.activePlugin.setVolume||!this.activePlugin.setVolume(a))for(var b=this._instances,d=0,e=b.length;e>d;d++)b[d].setMasterVolume(a)}}),c._masterMute=!1,Object.defineProperty(c,"muted",{get:function(){return this._masterMute},set:function(a){if(null==a)return!1;if(this._masterMute=a,!this.activePlugin||!this.activePlugin.setMute||!this.activePlugin.setMute(a))for(var b=this._instances,c=0,d=b.length;d>c;c++)b[c].setMasterMute(a);return!0}}),Object.defineProperty(c,"capabilities",{get:function(){return null==c.activePlugin?null:c.activePlugin._capabilities},set:function(a){return!1}}),c._pluginsRegistered=!1,c._lastID=0,c._instances=[],c._idHash={},c._preloadHash={},c._defaultPlayPropsHash={},c.addEventListener=null,c.removeEventListener=null,c.removeAllEventListeners=null,c.dispatchEvent=null,c.hasEventListener=null,c._listeners=null,createjs.EventDispatcher.initialize(c),c.getPreloadHandlers=function(){return{callback:createjs.proxy(c.initLoad,c),types:["sound"],extensions:c.SUPPORTED_EXTENSIONS}},c._handleLoadComplete=function(a){var b=a.target.getItem().src;if(c._preloadHash[b])for(var d=0,e=c._preloadHash[b].length;e>d;d++){var f=c._preloadHash[b][d];if(c._preloadHash[b][d]=!0,c.hasEventListener("fileload")){var a=new createjs.Event("fileload");a.src=f.src,a.id=f.id,a.data=f.data,a.sprite=f.sprite,c.dispatchEvent(a)}}},c._handleLoadError=function(a){var b=a.target.getItem().src;if(c._preloadHash[b])for(var d=0,e=c._preloadHash[b].length;e>d;d++){var f=c._preloadHash[b][d];if(c._preloadHash[b][d]=!1,c.hasEventListener("fileerror")){var a=new createjs.Event("fileerror");a.src=f.src,a.id=f.id,a.data=f.data,a.sprite=f.sprite,c.dispatchEvent(a)}}},c._registerPlugin=function(a){return a.isSupported()?(c.activePlugin=new a,!0):!1},c.registerPlugins=function(a){c._pluginsRegistered=!0;for(var b=0,d=a.length;d>b;b++)if(c._registerPlugin(a[b]))return!0;return!1},c.initializeDefaultPlugins=function(){return null!=c.activePlugin?!0:c._pluginsRegistered?!1:c.registerPlugins([createjs.WebAudioPlugin,createjs.HTMLAudioPlugin])?!0:!1},c.isReady=function(){return null!=c.activePlugin},c.getCapabilities=function(){return null==c.activePlugin?null:c.activePlugin._capabilities},c.getCapability=function(a){return null==c.activePlugin?null:c.activePlugin._capabilities[a]},c.initLoad=function(a){return c._registerSound(a)},c._registerSound=function(a){if(!c.initializeDefaultPlugins())return!1;var d;if(a.src instanceof Object?(d=c._parseSrc(a.src),d.src=a.path+d.src):d=c._parsePath(a.src),null==d)return!1;a.src=d.src,a.type="sound";var e=a.data,f=null;if(null!=e&&(isNaN(e.channels)?isNaN(e)||(f=parseInt(e)):f=parseInt(e.channels),e.audioSprite))for(var g,h=e.audioSprite.length;h--;)g=e.audioSprite[h],c._idHash[g.id]={src:a.src,startTime:parseInt(g.startTime),duration:parseInt(g.duration)},g.defaultPlayProps&&(c._defaultPlayPropsHash[g.id]=createjs.PlayPropsConfig.create(g.defaultPlayProps));null!=a.id&&(c._idHash[a.id]={src:a.src});var i=c.activePlugin.register(a);return b.create(a.src,f),null!=e&&isNaN(e)?a.data.channels=f||b.maxPerChannel():a.data=f||b.maxPerChannel(),i.type&&(a.type=i.type),a.defaultPlayProps&&(c._defaultPlayPropsHash[a.src]=createjs.PlayPropsConfig.create(a.defaultPlayProps)),i},c.registerSound=function(a,b,d,e,f){var g={src:a,id:b,data:d,defaultPlayProps:f};a instanceof Object&&a.src&&(e=b,g=a),g=createjs.LoadItem.create(g),g.path=e,null==e||g.src instanceof Object||(g.src=e+a);var h=c._registerSound(g);if(!h)return!1;if(c._preloadHash[g.src]||(c._preloadHash[g.src]=[]),c._preloadHash[g.src].push(g),1==c._preloadHash[g.src].length)h.on("complete",createjs.proxy(this._handleLoadComplete,this)),h.on("error",createjs.proxy(this._handleLoadError,this)),c.activePlugin.preload(h);else if(1==c._preloadHash[g.src][0])return!0;return g},c.registerSounds=function(a,b){var c=[];a.path&&(b?b+=a.path:b=a.path,a=a.manifest);for(var d=0,e=a.length;e>d;d++)c[d]=createjs.Sound.registerSound(a[d].src,a[d].id,a[d].data,b,a[d].defaultPlayProps);return c},c.removeSound=function(a,d){if(null==c.activePlugin)return!1;a instanceof Object&&a.src&&(a=a.src);var e;if(a instanceof Object?e=c._parseSrc(a):(a=c._getSrcById(a).src,e=c._parsePath(a)),null==e)return!1;a=e.src,null!=d&&(a=d+a);for(var f in c._idHash)c._idHash[f].src==a&&delete c._idHash[f];return b.removeSrc(a),delete c._preloadHash[a],c.activePlugin.removeSound(a),!0},c.removeSounds=function(a,b){var c=[];a.path&&(b?b+=a.path:b=a.path,a=a.manifest);for(var d=0,e=a.length;e>d;d++)c[d]=createjs.Sound.removeSound(a[d].src,b);return c},c.removeAllSounds=function(){c._idHash={},c._preloadHash={},b.removeAll(),c.activePlugin&&c.activePlugin.removeAllSounds()},c.loadComplete=function(a){if(!c.isReady())return!1;var b=c._parsePath(a);return a=b?c._getSrcById(b.src).src:c._getSrcById(a).src,void 0==c._preloadHash[a]?!1:1==c._preloadHash[a][0]},c._parsePath=function(a){"string"!=typeof a&&(a=a.toString());var b=a.match(c.FILE_PATTERN);if(null==b)return!1;for(var d=b[4],e=b[5],f=c.capabilities,g=0;!f[e];)if(e=c.alternateExtensions[g++],g>c.alternateExtensions.length)return null;a=a.replace("."+b[5],"."+e);var h={name:d,src:a,extension:e};return h},c._parseSrc=function(a){var b={name:void 0,src:void 0,extension:void 0},d=c.capabilities;for(var e in a)if(a.hasOwnProperty(e)&&d[e]){b.src=a[e],b.extension=e;break}if(!b.src)return!1;var f=b.src.lastIndexOf("/");return-1!=f?b.name=b.src.slice(f+1):b.name=b.src,b},c.play=function(a,b,d,e,f,g,h,i,j){var k;k=b instanceof Object||b instanceof createjs.PlayPropsConfig?createjs.PlayPropsConfig.create(b):createjs.PlayPropsConfig.create({interrupt:b,delay:d,offset:e,loop:f,volume:g,pan:h,startTime:i,duration:j});var l=c.createInstance(a,k.startTime,k.duration),m=c._playInstance(l,k);return m||l._playFailed(),l},c.createInstance=function(a,d,e){if(!c.initializeDefaultPlugins())return new createjs.DefaultSoundInstance(a,d,e);var f=c._defaultPlayPropsHash[a];a=c._getSrcById(a);var g=c._parsePath(a.src),h=null;return null!=g&&null!=g.src?(b.create(g.src),null==d&&(d=a.startTime),h=c.activePlugin.create(g.src,d,e||a.duration),f=f||c._defaultPlayPropsHash[g.src],f&&h.applyPlayProps(f)):h=new createjs.DefaultSoundInstance(a,d,e),h.uniqueId=c._lastID++,h},c.stop=function(){for(var a=this._instances,b=a.length;b--;)a[b].stop()},c.setVolume=function(a){if(null==Number(a))return!1;if(a=Math.max(0,Math.min(1,a)),c._masterVolume=a,!this.activePlugin||!this.activePlugin.setVolume||!this.activePlugin.setVolume(a))for(var b=this._instances,d=0,e=b.length;e>d;d++)b[d].setMasterVolume(a)},c.getVolume=function(){return this._masterVolume},c.setMute=function(a){if(null==a)return!1;if(this._masterMute=a,!this.activePlugin||!this.activePlugin.setMute||!this.activePlugin.setMute(a))for(var b=this._instances,c=0,d=b.length;d>c;c++)b[c].setMasterMute(a);return!0},c.getMute=function(){return this._masterMute},c.setDefaultPlayProps=function(a,b){a=c._getSrcById(a),c._defaultPlayPropsHash[c._parsePath(a.src).src]=createjs.PlayPropsConfig.create(b)},c.getDefaultPlayProps=function(a){return a=c._getSrcById(a),c._defaultPlayPropsHash[c._parsePath(a.src).src]},c._playInstance=function(a,b){var d=c._defaultPlayPropsHash[a.src]||{};if(null==b.interrupt&&(b.interrupt=d.interrupt||c.defaultInterruptBehavior),null==b.delay&&(b.delay=d.delay||0),null==b.offset&&(b.offset=a.getPosition()),null==b.loop&&(b.loop=a.loop),null==b.volume&&(b.volume=a.volume),null==b.pan&&(b.pan=a.pan),0==b.delay){var e=c._beginPlaying(a,b);if(!e)return!1}else{var f=setTimeout(function(){c._beginPlaying(a,b)},b.delay);a.delayTimeoutId=f}return this._instances.push(a),!0},c._beginPlaying=function(a,c){if(!b.add(a,c.interrupt))return!1;var d=a._beginPlaying(c);if(!d){var e=createjs.indexOf(this._instances,a);return e>-1&&this._instances.splice(e,1),!1}return!0},c._getSrcById=function(a){return c._idHash[a]||{src:a}},c._playFinished=function(a){b.remove(a);var c=createjs.indexOf(this._instances,a);c>-1&&this._instances.splice(c,1)},createjs.Sound=a,b.channels={},b.create=function(a,c){var d=b.get(a);return null==d?(b.channels[a]=new b(a,c),!0):!1},b.removeSrc=function(a){var c=b.get(a);return null==c?!1:(c._removeAll(),delete b.channels[a],!0)},b.removeAll=function(){for(var a in b.channels)b.channels[a]._removeAll();b.channels={}},b.add=function(a,c){var d=b.get(a.src);return null==d?!1:d._add(a,c)},b.remove=function(a){var c=b.get(a.src);return null==c?!1:(c._remove(a),!0)},b.maxPerChannel=function(){return d.maxDefault},b.get=function(a){return b.channels[a]};var d=b.prototype;d.constructor=b,d.src=null,d.max=null,d.maxDefault=100,d.length=0,d.init=function(a,b){this.src=a,this.max=b||this.maxDefault,-1==this.max&&(this.max=this.maxDefault),this._instances=[]},d._get=function(a){return this._instances[a]},d._add=function(a,b){return this._getSlot(b,a)?(this._instances.push(a),this.length++,!0):!1},d._remove=function(a){var b=createjs.indexOf(this._instances,a);return-1==b?!1:(this._instances.splice(b,1),this.length--,!0)},d._removeAll=function(){for(var a=this.length-1;a>=0;a--)this._instances[a].stop()},d._getSlot=function(b,c){var d,e;if(b!=a.INTERRUPT_NONE&&(e=this._get(0),null==e))return!0;for(var f=0,g=this.max;g>f;f++){if(d=this._get(f),null==d)return!0;if(d.playState==a.PLAY_FINISHED||d.playState==a.PLAY_INTERRUPTED||d.playState==a.PLAY_FAILED){e=d;break}b!=a.INTERRUPT_NONE&&(b==a.INTERRUPT_EARLY&&d.getPosition()e.getPosition())&&(e=d)}return null!=e?(e._interrupt(),this._remove(e),!0):!1},d.toString=function(){return"[Sound SoundChannel]"}}(),this.createjs=this.createjs||{},function(){"use strict";var a=function(a,b,c,d){this.EventDispatcher_constructor(),this.src=a,this.uniqueId=-1,this.playState=null,this.delayTimeoutId=null,this._volume=1,Object.defineProperty(this,"volume",{get:this.getVolume,set:this.setVolume}),this._pan=0,Object.defineProperty(this,"pan",{get:this.getPan,set:this.setPan}),this._startTime=Math.max(0,b||0),Object.defineProperty(this,"startTime",{get:this.getStartTime,set:this.setStartTime}),this._duration=Math.max(0,c||0),Object.defineProperty(this,"duration",{get:this.getDuration,set:this.setDuration}),this._playbackResource=null,Object.defineProperty(this,"playbackResource",{get:this.getPlaybackResource,set:this.setPlaybackResource}),d!==!1&&d!==!0&&this.setPlaybackResource(d),this._position=0,Object.defineProperty(this,"position",{get:this.getPosition,set:this.setPosition}),this._loop=0,Object.defineProperty(this,"loop",{get:this.getLoop,set:this.setLoop}),this._muted=!1,Object.defineProperty(this,"muted",{get:this.getMuted,set:this.setMuted}),this._paused=!1,Object.defineProperty(this,"paused",{get:this.getPaused,set:this.setPaused})},b=createjs.extend(a,createjs.EventDispatcher);b.play=function(a,b,c,d,e,f){var g;return g=a instanceof Object||a instanceof createjs.PlayPropsConfig?createjs.PlayPropsConfig.create(a):createjs.PlayPropsConfig.create({interrupt:a,delay:b,offset:c,loop:d,volume:e,pan:f}),this.playState==createjs.Sound.PLAY_SUCCEEDED?(this.applyPlayProps(g),void(this._paused&&this.setPaused(!1))):(this._cleanUp(),createjs.Sound._playInstance(this,g),this)},b.stop=function(){return this._position=0,this._paused=!1,this._handleStop(),this._cleanUp(),this.playState=createjs.Sound.PLAY_FINISHED,this},b.destroy=function(){this._cleanUp(),this.src=null,this.playbackResource=null,this.removeAllEventListeners()},b.applyPlayProps=function(a){return null!=a.offset&&this.setPosition(a.offset),null!=a.loop&&this.setLoop(a.loop),null!=a.volume&&this.setVolume(a.volume),null!=a.pan&&this.setPan(a.pan),null!=a.startTime&&(this.setStartTime(a.startTime),this.setDuration(a.duration)),this},b.toString=function(){return"[AbstractSoundInstance]"},b.getPaused=function(){return this._paused},b.setPaused=function(a){return a!==!0&&a!==!1||this._paused==a||1==a&&this.playState!=createjs.Sound.PLAY_SUCCEEDED?void 0:(this._paused=a,a?this._pause():this._resume(),clearTimeout(this.delayTimeoutId),this)},b.setVolume=function(a){return a==this._volume?this:(this._volume=Math.max(0,Math.min(1,a)),this._muted||this._updateVolume(),this)},b.getVolume=function(){return this._volume},b.setMuted=function(a){return a===!0||a===!1?(this._muted=a,this._updateVolume(),this):void 0},b.getMuted=function(){return this._muted},b.setPan=function(a){return a==this._pan?this:(this._pan=Math.max(-1,Math.min(1,a)),this._updatePan(),this)},b.getPan=function(){return this._pan},b.getPosition=function(){return this._paused||this.playState!=createjs.Sound.PLAY_SUCCEEDED||(this._position=this._calculateCurrentPosition()),this._position},b.setPosition=function(a){return this._position=Math.max(0,a),this.playState==createjs.Sound.PLAY_SUCCEEDED&&this._updatePosition(),this},b.getStartTime=function(){return this._startTime},b.setStartTime=function(a){return a==this._startTime?this:(this._startTime=Math.max(0,a||0),this._updateStartTime(),this)},b.getDuration=function(){return this._duration},b.setDuration=function(a){return a==this._duration?this:(this._duration=Math.max(0,a||0),this._updateDuration(),this)},b.setPlaybackResource=function(a){return this._playbackResource=a,0==this._duration&&this._setDurationFromSource(),this},b.getPlaybackResource=function(){return this._playbackResource},b.getLoop=function(){return this._loop},b.setLoop=function(a){null!=this._playbackResource&&(0!=this._loop&&0==a?this._removeLooping(a):0==this._loop&&0!=a&&this._addLooping(a)),this._loop=a},b._sendEvent=function(a){var b=new createjs.Event(a);this.dispatchEvent(b)},b._cleanUp=function(){clearTimeout(this.delayTimeoutId),this._handleCleanUp(),this._paused=!1,createjs.Sound._playFinished(this)},b._interrupt=function(){this._cleanUp(),this.playState=createjs.Sound.PLAY_INTERRUPTED,this._sendEvent("interrupted")},b._beginPlaying=function(a){return this.setPosition(a.offset),this.setLoop(a.loop),this.setVolume(a.volume),this.setPan(a.pan),null!=a.startTime&&(this.setStartTime(a.startTime),this.setDuration(a.duration)),null!=this._playbackResource&&this._positionc;c++){var e=this._soundInstances[b][c];e.setPlaybackResource(this._audioSources[b]); +}},b._handlePreloadError=function(a){},b._updateVolume=function(){},createjs.AbstractPlugin=a}(),this.createjs=this.createjs||{},function(){"use strict";function a(a){this.AbstractLoader_constructor(a,!0,createjs.AbstractLoader.SOUND)}var b=createjs.extend(a,createjs.AbstractLoader);a.context=null,b.toString=function(){return"[WebAudioLoader]"},b._createRequest=function(){this._request=new createjs.XHRRequest(this._item,!1),this._request.setResponseType("arraybuffer")},b._sendComplete=function(b){a.context.decodeAudioData(this._rawResult,createjs.proxy(this._handleAudioDecoded,this),createjs.proxy(this._sendError,this))},b._handleAudioDecoded=function(a){this._result=a,this.AbstractLoader__sendComplete()},createjs.WebAudioLoader=createjs.promote(a,"AbstractLoader")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,d,e){this.AbstractSoundInstance_constructor(a,b,d,e),this.gainNode=c.context.createGain(),this.panNode=c.context.createPanner(),this.panNode.panningModel=c._panningModel,this.panNode.connect(this.gainNode),this._updatePan(),this.sourceNode=null,this._soundCompleteTimeout=null,this._sourceNodeNext=null,this._playbackStartTime=0,this._endedHandler=createjs.proxy(this._handleSoundComplete,this)}var b=createjs.extend(a,createjs.AbstractSoundInstance),c=a;c.context=null,c._scratchBuffer=null,c.destinationNode=null,c._panningModel="equalpower",b.destroy=function(){this.AbstractSoundInstance_destroy(),this.panNode.disconnect(0),this.panNode=null,this.gainNode.disconnect(0),this.gainNode=null},b.toString=function(){return"[WebAudioSoundInstance]"},b._updatePan=function(){this.panNode.setPosition(this._pan,0,-.5)},b._removeLooping=function(a){this._sourceNodeNext=this._cleanUpAudioNode(this._sourceNodeNext)},b._addLooping=function(a){this.playState==createjs.Sound.PLAY_SUCCEEDED&&(this._sourceNodeNext=this._createAndPlayAudioNode(this._playbackStartTime,0))},b._setDurationFromSource=function(){this._duration=1e3*this.playbackResource.duration},b._handleCleanUp=function(){this.sourceNode&&this.playState==createjs.Sound.PLAY_SUCCEEDED&&(this.sourceNode=this._cleanUpAudioNode(this.sourceNode),this._sourceNodeNext=this._cleanUpAudioNode(this._sourceNodeNext)),0!=this.gainNode.numberOfOutputs&&this.gainNode.disconnect(0),clearTimeout(this._soundCompleteTimeout),this._playbackStartTime=0},b._cleanUpAudioNode=function(a){if(a){a.stop(0),a.disconnect(0);try{a.buffer=c._scratchBuffer}catch(b){}a=null}return a},b._handleSoundReady=function(a){this.gainNode.connect(c.destinationNode);var b=.001*this._duration,d=.001*this._position;d>b&&(d=b),this.sourceNode=this._createAndPlayAudioNode(c.context.currentTime-b,d),this._playbackStartTime=this.sourceNode.startTime-d,this._soundCompleteTimeout=setTimeout(this._endedHandler,1e3*(b-d)),0!=this._loop&&(this._sourceNodeNext=this._createAndPlayAudioNode(this._playbackStartTime,0))},b._createAndPlayAudioNode=function(a,b){var d=c.context.createBufferSource();d.buffer=this.playbackResource,d.connect(this.panNode);var e=.001*this._duration;return d.startTime=a+e,d.start(d.startTime,b+.001*this._startTime,e-b),d},b._pause=function(){this._position=1e3*(c.context.currentTime-this._playbackStartTime),this.sourceNode=this._cleanUpAudioNode(this.sourceNode),this._sourceNodeNext=this._cleanUpAudioNode(this._sourceNodeNext),0!=this.gainNode.numberOfOutputs&&this.gainNode.disconnect(0),clearTimeout(this._soundCompleteTimeout)},b._resume=function(){this._handleSoundReady()},b._updateVolume=function(){var a=this._muted?0:this._volume;a!=this.gainNode.gain.value&&(this.gainNode.gain.value=a)},b._calculateCurrentPosition=function(){return 1e3*(c.context.currentTime-this._playbackStartTime)},b._updatePosition=function(){this.sourceNode=this._cleanUpAudioNode(this.sourceNode),this._sourceNodeNext=this._cleanUpAudioNode(this._sourceNodeNext),clearTimeout(this._soundCompleteTimeout),this._paused||this._handleSoundReady()},b._handleLoop=function(){this._cleanUpAudioNode(this.sourceNode),this.sourceNode=this._sourceNodeNext,this._playbackStartTime=this.sourceNode.startTime,this._sourceNodeNext=this._createAndPlayAudioNode(this._playbackStartTime,0),this._soundCompleteTimeout=setTimeout(this._endedHandler,this._duration)},b._updateDuration=function(){this.playState==createjs.Sound.PLAY_SUCCEEDED&&(this._pause(),this._resume())},createjs.WebAudioSoundInstance=createjs.promote(a,"AbstractSoundInstance")}(),this.createjs=this.createjs||{},function(){"use strict";function a(){this.AbstractPlugin_constructor(),this._panningModel=c._panningModel,this.context=c.context,this.dynamicsCompressorNode=this.context.createDynamicsCompressor(),this.dynamicsCompressorNode.connect(this.context.destination),this.gainNode=this.context.createGain(),this.gainNode.connect(this.dynamicsCompressorNode),createjs.WebAudioSoundInstance.destinationNode=this.gainNode,this._capabilities=c._capabilities,this._loaderClass=createjs.WebAudioLoader,this._soundInstanceClass=createjs.WebAudioSoundInstance,this._addPropsToClasses()}var b=createjs.extend(a,createjs.AbstractPlugin),c=a;c._capabilities=null,c._panningModel="equalpower",c.context=null,c._scratchBuffer=null,c._unlocked=!1,c.isSupported=function(){var a=createjs.BrowserDetect.isIOS||createjs.BrowserDetect.isAndroid||createjs.BrowserDetect.isBlackberry;return"file:"!=location.protocol||a||this._isFileXHRSupported()?(c._generateCapabilities(),null==c.context?!1:!0):!1},c.playEmptySound=function(){if(null!=c.context){var a=c.context.createBufferSource();a.buffer=c._scratchBuffer,a.connect(c.context.destination),a.start(0,0,0)}},c._isFileXHRSupported=function(){var a=!0,b=new XMLHttpRequest;try{b.open("GET","WebAudioPluginTest.fail",!1)}catch(c){return a=!1}b.onerror=function(){a=!1},b.onload=function(){a=404==this.status||200==this.status||0==this.status&&""!=this.response};try{b.send()}catch(c){a=!1}return a},c._generateCapabilities=function(){if(null==c._capabilities){var a=document.createElement("audio");if(null==a.canPlayType)return null;if(null==c.context)if(window.AudioContext)c.context=new AudioContext;else{if(!window.webkitAudioContext)return null;c.context=new webkitAudioContext}null==c._scratchBuffer&&(c._scratchBuffer=c.context.createBuffer(1,1,22050)),c._compatibilitySetUp(),"ontouchstart"in window&&"running"!=c.context.state&&(c._unlock(),document.addEventListener("mousedown",c._unlock,!0),document.addEventListener("touchend",c._unlock,!0)),c._capabilities={panning:!0,volume:!0,tracks:-1};for(var b=createjs.Sound.SUPPORTED_EXTENSIONS,d=createjs.Sound.EXTENSION_MAP,e=0,f=b.length;f>e;e++){var g=b[e],h=d[g]||g;c._capabilities[g]="no"!=a.canPlayType("audio/"+g)&&""!=a.canPlayType("audio/"+g)||"no"!=a.canPlayType("audio/"+h)&&""!=a.canPlayType("audio/"+h)}c.context.destination.numberOfChannels<2&&(c._capabilities.panning=!1)}},c._compatibilitySetUp=function(){if(c._panningModel="equalpower",!c.context.createGain){c.context.createGain=c.context.createGainNode;var a=c.context.createBufferSource();a.__proto__.start=a.__proto__.noteGrainOn,a.__proto__.stop=a.__proto__.noteOff,c._panningModel=0}},c._unlock=function(){c._unlocked||(c.playEmptySound(),"running"==c.context.state&&(document.removeEventListener("mousedown",c._unlock,!0),document.removeEventListener("touchend",c._unlock,!0),c._unlocked=!0))},b.toString=function(){return"[WebAudioPlugin]"},b._addPropsToClasses=function(){var a=this._soundInstanceClass;a.context=this.context,a._scratchBuffer=c._scratchBuffer,a.destinationNode=this.gainNode,a._panningModel=this._panningModel,this._loaderClass.context=this.context},b._updateVolume=function(){var a=createjs.Sound._masterMute?0:this._volume;a!=this.gainNode.gain.value&&(this.gainNode.gain.value=a)},createjs.WebAudioPlugin=createjs.promote(a,"AbstractPlugin")}(),this.createjs=this.createjs||{},function(){"use strict";function a(){throw"HTMLAudioTagPool cannot be instantiated"}function b(a){this._tags=[]}var c=a;c._tags={},c._tagPool=new b,c._tagUsed={},c.get=function(a){var b=c._tags[a];return null==b?(b=c._tags[a]=c._tagPool.get(),b.src=a):c._tagUsed[a]?(b=c._tagPool.get(),b.src=a):c._tagUsed[a]=!0,b},c.set=function(a,b){b==c._tags[a]?c._tagUsed[a]=!1:c._tagPool.set(b)},c.remove=function(a){var b=c._tags[a];return null==b?!1:(c._tagPool.set(b),delete c._tags[a],delete c._tagUsed[a],!0)},c.getDuration=function(a){var b=c._tags[a];return null!=b&&b.duration?1e3*b.duration:0},createjs.HTMLAudioTagPool=a;var d=b.prototype;d.constructor=b,d.get=function(){var a;return a=0==this._tags.length?this._createTag():this._tags.pop(),null==a.parentNode&&document.body.appendChild(a),a},d.set=function(a){var b=createjs.indexOf(this._tags,a);-1==b&&(this._tags.src=null,this._tags.push(a))},d.toString=function(){return"[TagPool]"},d._createTag=function(){var a=document.createElement("audio");return a.autoplay=!1,a.preload="none",a}}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c,d){this.AbstractSoundInstance_constructor(a,b,c,d),this._audioSpriteStopTime=null,this._delayTimeoutId=null,this._endedHandler=createjs.proxy(this._handleSoundComplete,this),this._readyHandler=createjs.proxy(this._handleTagReady,this),this._stalledHandler=createjs.proxy(this._playFailed,this),this._audioSpriteEndHandler=createjs.proxy(this._handleAudioSpriteLoop,this),this._loopHandler=createjs.proxy(this._handleSoundComplete,this),c?this._audioSpriteStopTime=.001*(b+c):this._duration=createjs.HTMLAudioTagPool.getDuration(this.src)}var b=createjs.extend(a,createjs.AbstractSoundInstance);b.setMasterVolume=function(a){this._updateVolume()},b.setMasterMute=function(a){this._updateVolume()},b.toString=function(){return"[HTMLAudioSoundInstance]"},b._removeLooping=function(){null!=this._playbackResource&&(this._playbackResource.loop=!1,this._playbackResource.removeEventListener(createjs.HTMLAudioPlugin._AUDIO_SEEKED,this._loopHandler,!1))},b._addLooping=function(){null==this._playbackResource||this._audioSpriteStopTime||(this._playbackResource.addEventListener(createjs.HTMLAudioPlugin._AUDIO_SEEKED,this._loopHandler,!1),this._playbackResource.loop=!0)},b._handleCleanUp=function(){var a=this._playbackResource;if(null!=a){a.pause(),a.loop=!1,a.removeEventListener(createjs.HTMLAudioPlugin._AUDIO_ENDED,this._endedHandler,!1),a.removeEventListener(createjs.HTMLAudioPlugin._AUDIO_READY,this._readyHandler,!1),a.removeEventListener(createjs.HTMLAudioPlugin._AUDIO_STALLED,this._stalledHandler,!1),a.removeEventListener(createjs.HTMLAudioPlugin._AUDIO_SEEKED,this._loopHandler,!1),a.removeEventListener(createjs.HTMLAudioPlugin._TIME_UPDATE,this._audioSpriteEndHandler,!1);try{a.currentTime=this._startTime}catch(b){}createjs.HTMLAudioTagPool.set(this.src,a),this._playbackResource=null}},b._beginPlaying=function(a){return this._playbackResource=createjs.HTMLAudioTagPool.get(this.src),this.AbstractSoundInstance__beginPlaying(a)},b._handleSoundReady=function(a){if(4!==this._playbackResource.readyState){var b=this._playbackResource;return b.addEventListener(createjs.HTMLAudioPlugin._AUDIO_READY,this._readyHandler,!1),b.addEventListener(createjs.HTMLAudioPlugin._AUDIO_STALLED,this._stalledHandler,!1),b.preload="auto",void b.load()}this._updateVolume(),this._playbackResource.currentTime=.001*(this._startTime+this._position),this._audioSpriteStopTime?this._playbackResource.addEventListener(createjs.HTMLAudioPlugin._TIME_UPDATE,this._audioSpriteEndHandler,!1):(this._playbackResource.addEventListener(createjs.HTMLAudioPlugin._AUDIO_ENDED,this._endedHandler,!1),0!=this._loop&&(this._playbackResource.addEventListener(createjs.HTMLAudioPlugin._AUDIO_SEEKED,this._loopHandler,!1),this._playbackResource.loop=!0)),this._playbackResource.play()},b._handleTagReady=function(a){this._playbackResource.removeEventListener(createjs.HTMLAudioPlugin._AUDIO_READY,this._readyHandler,!1),this._playbackResource.removeEventListener(createjs.HTMLAudioPlugin._AUDIO_STALLED,this._stalledHandler,!1),this._handleSoundReady()},b._pause=function(){this._playbackResource.pause()},b._resume=function(){this._playbackResource.play()},b._updateVolume=function(){if(null!=this._playbackResource){var a=this._muted||createjs.Sound._masterMute?0:this._volume*createjs.Sound._masterVolume;a!=this._playbackResource.volume&&(this._playbackResource.volume=a)}},b._calculateCurrentPosition=function(){return 1e3*this._playbackResource.currentTime-this._startTime},b._updatePosition=function(){this._playbackResource.removeEventListener(createjs.HTMLAudioPlugin._AUDIO_SEEKED,this._loopHandler,!1),this._playbackResource.addEventListener(createjs.HTMLAudioPlugin._AUDIO_SEEKED,this._handleSetPositionSeek,!1);try{this._playbackResource.currentTime=.001*(this._position+this._startTime)}catch(a){this._handleSetPositionSeek(null)}},b._handleSetPositionSeek=function(a){null!=this._playbackResource&&(this._playbackResource.removeEventListener(createjs.HTMLAudioPlugin._AUDIO_SEEKED,this._handleSetPositionSeek,!1),this._playbackResource.addEventListener(createjs.HTMLAudioPlugin._AUDIO_SEEKED,this._loopHandler,!1))},b._handleAudioSpriteLoop=function(a){this._playbackResource.currentTime<=this._audioSpriteStopTime||(this._playbackResource.pause(),0==this._loop?this._handleSoundComplete(null):(this._position=0,this._loop--,this._playbackResource.currentTime=.001*this._startTime,this._paused||this._playbackResource.play(),this._sendEvent("loop")))},b._handleLoop=function(a){0==this._loop&&(this._playbackResource.loop=!1,this._playbackResource.removeEventListener(createjs.HTMLAudioPlugin._AUDIO_SEEKED,this._loopHandler,!1))},b._updateStartTime=function(){this._audioSpriteStopTime=.001*(this._startTime+this._duration),this.playState==createjs.Sound.PLAY_SUCCEEDED&&(this._playbackResource.removeEventListener(createjs.HTMLAudioPlugin._AUDIO_ENDED,this._endedHandler,!1),this._playbackResource.addEventListener(createjs.HTMLAudioPlugin._TIME_UPDATE,this._audioSpriteEndHandler,!1))},b._updateDuration=function(){this._audioSpriteStopTime=.001*(this._startTime+this._duration),this.playState==createjs.Sound.PLAY_SUCCEEDED&&(this._playbackResource.removeEventListener(createjs.HTMLAudioPlugin._AUDIO_ENDED,this._endedHandler,!1),this._playbackResource.addEventListener(createjs.HTMLAudioPlugin._TIME_UPDATE,this._audioSpriteEndHandler,!1))},b._setDurationFromSource=function(){this._duration=createjs.HTMLAudioTagPool.getDuration(this.src),this._playbackResource=null},createjs.HTMLAudioSoundInstance=createjs.promote(a,"AbstractSoundInstance")}(),this.createjs=this.createjs||{},function(){"use strict";function a(){this.AbstractPlugin_constructor(),this.defaultNumChannels=2,this._capabilities=c._capabilities,this._loaderClass=createjs.SoundLoader,this._soundInstanceClass=createjs.HTMLAudioSoundInstance}var b=createjs.extend(a,createjs.AbstractPlugin),c=a;c.MAX_INSTANCES=30,c._AUDIO_READY="canplaythrough",c._AUDIO_ENDED="ended",c._AUDIO_SEEKED="seeked",c._AUDIO_STALLED="stalled",c._TIME_UPDATE="timeupdate",c._capabilities=null,c.isSupported=function(){return c._generateCapabilities(),null!=c._capabilities},c._generateCapabilities=function(){if(null==c._capabilities){var a=document.createElement("audio");if(null==a.canPlayType)return null;c._capabilities={panning:!1,volume:!0,tracks:-1};for(var b=createjs.Sound.SUPPORTED_EXTENSIONS,d=createjs.Sound.EXTENSION_MAP,e=0,f=b.length;f>e;e++){var g=b[e],h=d[g]||g;c._capabilities[g]="no"!=a.canPlayType("audio/"+g)&&""!=a.canPlayType("audio/"+g)||"no"!=a.canPlayType("audio/"+h)&&""!=a.canPlayType("audio/"+h)}}},b.register=function(a){var b=createjs.HTMLAudioTagPool.get(a.src),c=this.AbstractPlugin_register(a);return c.setTag(b),c},b.removeSound=function(a){this.AbstractPlugin_removeSound(a),createjs.HTMLAudioTagPool.remove(a)},b.create=function(a,b,c){var d=this.AbstractPlugin_create(a,b,c);return d.setPlaybackResource(null),d},b.toString=function(){return"[HTMLAudioPlugin]"},b.setVolume=b.getVolume=b.setMute=null,createjs.HTMLAudioPlugin=createjs.promote(a,"AbstractPlugin")}(),this.createjs=this.createjs||{},function(){"use strict";function a(b,c,d){this.ignoreGlobalPause=!1,this.loop=!1,this.duration=0,this.pluginData=d||{},this.target=b,this.position=null,this.passive=!1,this._paused=!1,this._curQueueProps={},this._initQueueProps={},this._steps=[],this._actions=[],this._prevPosition=0,this._stepPosition=0,this._prevPos=-1,this._target=b,this._useTicks=!1,this._inited=!1,this._registered=!1,c&&(this._useTicks=c.useTicks,this.ignoreGlobalPause=c.ignoreGlobalPause,this.loop=c.loop,c.onChange&&this.addEventListener("change",c.onChange),c.override&&a.removeTweens(b)),c&&c.paused?this._paused=!0:createjs.Tween._register(this,!0),c&&null!=c.position&&this.setPosition(c.position,a.NONE)}var b=createjs.extend(a,createjs.EventDispatcher);a.NONE=0,a.LOOP=1,a.REVERSE=2,a.IGNORE={},a._tweens=[],a._plugins={},a.get=function(b,c,d,e){return e&&a.removeTweens(b),new a(b,c,d)},a.tick=function(b,c){for(var d=a._tweens.slice(),e=d.length-1;e>=0;e--){var f=d[e];c&&!f.ignoreGlobalPause||f._paused||f.tick(f._useTicks?1:b)}},a.handleEvent=function(a){"tick"==a.type&&this.tick(a.delta,a.paused)},a.removeTweens=function(b){if(b.tweenjs_count){for(var c=a._tweens,d=c.length-1;d>=0;d--){var e=c[d];e._target==b&&(e._paused=!0,c.splice(d,1))}b.tweenjs_count=0}},a.removeAllTweens=function(){for(var b=a._tweens,c=0,d=b.length;d>c;c++){var e=b[c];e._paused=!0,e.target&&(e.target.tweenjs_count=0)}b.length=0},a.hasActiveTweens=function(b){return b?null!=b.tweenjs_count&&!!b.tweenjs_count:a._tweens&&!!a._tweens.length},a.installPlugin=function(b,c){var d=b.priority;null==d&&(b.priority=d=0);for(var e=0,f=c.length,g=a._plugins;f>e;e++){var h=c[e];if(g[h]){for(var i=g[h],j=0,k=i.length;k>j&&!(d=a)return this;var c=this._cloneProps(this._curQueueProps);return this._addStep({d:a,p0:c,e:this._linearEase,p1:c,v:b})},b.to=function(a,b,c){return(isNaN(b)||0>b)&&(b=0),this._addStep({d:b||0,p0:this._cloneProps(this._curQueueProps),e:c,p1:this._cloneProps(this._appendQueueProps(a))})},b.call=function(a,b,c){return this._addAction({f:a,p:b?b:[this],o:c?c:this._target})},b.set=function(a,b){return this._addAction({f:this._set,o:this,p:[a,b?b:this._target]})},b.play=function(a){return a||(a=this),this.call(a.setPaused,[!1],a)},b.pause=function(a){return a||(a=this),this.call(a.setPaused,[!0],a)},b.setPosition=function(a,b){0>a&&(a=0),null==b&&(b=1);var c=a,d=!1;if(c>=this.duration&&(this.loop?c%=this.duration:(c=this.duration,d=!0)),c==this._prevPos)return d;var e=this._prevPos;if(this.position=this._prevPos=c,this._prevPosition=a,this._target)if(d)this._updateTargetProps(null,1);else if(this._steps.length>0){for(var f=0,g=this._steps.length;g>f&&!(this._steps[f].t>c);f++);var h=this._steps[f-1];this._updateTargetProps(h,(this._stepPosition=c-h.t)/h.d)}return 0!=b&&this._actions.length>0&&(this._useTicks?this._runActions(c,c):1==b&&e>c?(e!=this.duration&&this._runActions(e,this.duration),this._runActions(0,c,!0)):this._runActions(e,c)),d&&this.setPaused(!0),this.dispatchEvent("change"),d},b.tick=function(a){this._paused||this.setPosition(this._prevPosition+a)},b.setPaused=function(b){return this._paused===!!b?this:(this._paused=!!b,a._register(this,!b),this)},b.w=b.wait,b.t=b.to,b.c=b.call,b.s=b.set,b.toString=function(){return"[Tween]"},b.clone=function(){throw"Tween can not be cloned."},b._updateTargetProps=function(b,c){var d,e,f,g,h,i;if(b||1!=c){if(this.passive=!!b.v,this.passive)return;b.e&&(c=b.e(c,0,1,1)),d=b.p0,e=b.p1}else this.passive=!1,d=e=this._curQueueProps;for(var j in this._initQueueProps){null==(g=d[j])&&(d[j]=g=this._initQueueProps[j]),null==(h=e[j])&&(e[j]=h=g),f=g==h||0==c||1==c||"number"!=typeof g?1==c?h:g:g+(h-g)*c;var k=!1;if(i=a._plugins[j])for(var l=0,m=i.length;m>l;l++){var n=i[l].tween(this,j,f,d,e,c,!!b&&d==e,!b);n==a.IGNORE?k=!0:f=n}k||(this._target[j]=f)}},b._runActions=function(a,b,c){var d=a,e=b,f=-1,g=this._actions.length,h=1;for(a>b&&(d=b,e=a,f=g,g=h=-1);(f+=h)!=g;){var i=this._actions[f],j=i.t;(j==e||j>d&&e>j||c&&j==a)&&i.f.apply(i.o,i.p)}},b._appendQueueProps=function(b){var c,d,e,f,g;for(var h in b)if(void 0===this._initQueueProps[h]){if(d=this._target[h],c=a._plugins[h])for(e=0,f=c.length;f>e;e++)d=c[e].init(this,h,d);this._initQueueProps[h]=this._curQueueProps[h]=void 0===d?null:d}else d=this._curQueueProps[h];for(var h in b){if(d=this._curQueueProps[h],c=a._plugins[h])for(g=g||{},e=0,f=c.length;f>e;e++)c[e].step&&c[e].step(this,h,d,b[h],g);this._curQueueProps[h]=b[h]}return g&&this._appendQueueProps(g),this._curQueueProps},b._cloneProps=function(a){var b={};for(var c in a)b[c]=a[c];return b},b._addStep=function(a){return a.d>0&&(this._steps.push(a),a.t=this.duration,this.duration+=a.d),this},b._addAction=function(a){return a.t=this.duration,this._actions.push(a),this},b._set=function(a,b){for(var c in a)b[c]=a[c]},createjs.Tween=createjs.promote(a,"EventDispatcher")}(),this.createjs=this.createjs||{},function(){"use strict";function a(a,b,c){this.EventDispatcher_constructor(),this.ignoreGlobalPause=!1,this.duration=0,this.loop=!1,this.position=null,this._paused=!1,this._tweens=[],this._labels=null,this._labelList=null,this._prevPosition=0,this._prevPos=-1,this._useTicks=!1,this._registered=!1,c&&(this._useTicks=c.useTicks,this.loop=c.loop,this.ignoreGlobalPause=c.ignoreGlobalPause,c.onChange&&this.addEventListener("change",c.onChange)),a&&this.addTween.apply(this,a),this.setLabels(b),c&&c.paused?this._paused=!0:createjs.Tween._register(this,!0),c&&null!=c.position&&this.setPosition(c.position,createjs.Tween.NONE)}var b=createjs.extend(a,createjs.EventDispatcher);b.addTween=function(a){var b=arguments.length;if(b>1){for(var c=0;b>c;c++)this.addTween(arguments[c]);return arguments[0]}return 0==b?null:(this.removeTween(a),this._tweens.push(a),a.setPaused(!0),a._paused=!1,a._useTicks=this._useTicks,a.duration>this.duration&&(this.duration=a.duration),this._prevPos>=0&&a.setPosition(this._prevPos,createjs.Tween.NONE),a)},b.removeTween=function(a){var b=arguments.length;if(b>1){for(var c=!0,d=0;b>d;d++)c=c&&this.removeTween(arguments[d]);return c}if(0==b)return!1;for(var e=this._tweens,d=e.length;d--;)if(e[d]==a)return e.splice(d,1),a.duration>=this.duration&&this.updateDuration(),!0;return!1},b.addLabel=function(a,b){this._labels[a]=b;var c=this._labelList;if(c){for(var d=0,e=c.length;e>d&&!(bd&&!(b=this.duration;if(c==this._prevPos)return d;this._prevPosition=a,this.position=this._prevPos=c;for(var e=0,f=this._tweens.length;f>e;e++)if(this._tweens[e].setPosition(c,b),c!=this._prevPos)return!1;return d&&this.setPaused(!0),this.dispatchEvent("change"),d},b.setPaused=function(a){this._paused=!!a,createjs.Tween._register(this,!a)},b.updateDuration=function(){this.duration=0;for(var a=0,b=this._tweens.length;b>a;a++){var c=this._tweens[a];c.duration>this.duration&&(this.duration=c.duration)}},b.tick=function(a){this.setPosition(this._prevPosition+a)},b.resolve=function(a){var b=Number(a);return isNaN(b)&&(b=this._labels[a]),b},b.toString=function(){return"[Timeline]"},b.clone=function(){throw"Timeline can not be cloned."},b._goto=function(a){var b=this.resolve(a);null!=b&&this.setPosition(b)},b._calcPosition=function(a){return 0>a?0:aa&&(a=-1),a>1&&(a=1),function(b){return 0==a?b:0>a?b*(b*-a+1+a):b*((2-b)*a+(1-a))}},a.getPowIn=function(a){return function(b){return Math.pow(b,a)}},a.getPowOut=function(a){return function(b){return 1-Math.pow(1-b,a)}},a.getPowInOut=function(a){return function(b){return(b*=2)<1?.5*Math.pow(b,a):1-.5*Math.abs(Math.pow(2-b,a))}},a.quadIn=a.getPowIn(2),a.quadOut=a.getPowOut(2),a.quadInOut=a.getPowInOut(2),a.cubicIn=a.getPowIn(3),a.cubicOut=a.getPowOut(3),a.cubicInOut=a.getPowInOut(3),a.quartIn=a.getPowIn(4),a.quartOut=a.getPowOut(4),a.quartInOut=a.getPowInOut(4),a.quintIn=a.getPowIn(5),a.quintOut=a.getPowOut(5),a.quintInOut=a.getPowInOut(5),a.sineIn=function(a){return 1-Math.cos(a*Math.PI/2)},a.sineOut=function(a){return Math.sin(a*Math.PI/2)},a.sineInOut=function(a){return-.5*(Math.cos(Math.PI*a)-1)},a.getBackIn=function(a){return function(b){return b*b*((a+1)*b-a)}},a.backIn=a.getBackIn(1.7),a.getBackOut=function(a){return function(b){return--b*b*((a+1)*b+a)+1}},a.backOut=a.getBackOut(1.7),a.getBackInOut=function(a){return a*=1.525,function(b){return(b*=2)<1?.5*(b*b*((a+1)*b-a)):.5*((b-=2)*b*((a+1)*b+a)+2)}},a.backInOut=a.getBackInOut(1.7),a.circIn=function(a){return-(Math.sqrt(1-a*a)-1)},a.circOut=function(a){return Math.sqrt(1- --a*a)},a.circInOut=function(a){return(a*=2)<1?-.5*(Math.sqrt(1-a*a)-1):.5*(Math.sqrt(1-(a-=2)*a)+1)},a.bounceIn=function(b){return 1-a.bounceOut(1-b)},a.bounceOut=function(a){return 1/2.75>a?7.5625*a*a:2/2.75>a?7.5625*(a-=1.5/2.75)*a+.75:2.5/2.75>a?7.5625*(a-=2.25/2.75)*a+.9375:7.5625*(a-=2.625/2.75)*a+.984375},a.bounceInOut=function(b){return.5>b?.5*a.bounceIn(2*b):.5*a.bounceOut(2*b-1)+.5},a.getElasticIn=function(a,b){var c=2*Math.PI;return function(d){if(0==d||1==d)return d;var e=b/c*Math.asin(1/a);return-(a*Math.pow(2,10*(d-=1))*Math.sin((d-e)*c/b))}},a.elasticIn=a.getElasticIn(1,.3),a.getElasticOut=function(a,b){var c=2*Math.PI;return function(d){if(0==d||1==d)return d;var e=b/c*Math.asin(1/a);return a*Math.pow(2,-10*d)*Math.sin((d-e)*c/b)+1}},a.elasticOut=a.getElasticOut(1,.3),a.getElasticInOut=function(a,b){var c=2*Math.PI;return function(d){var e=b/c*Math.asin(1/a);return(d*=2)<1?-.5*(a*Math.pow(2,10*(d-=1))*Math.sin((d-e)*c/b)):a*Math.pow(2,-10*(d-=1))*Math.sin((d-e)*c/b)*.5+1}},a.elasticInOut=a.getElasticInOut(1,.3*1.5),createjs.Ease=a}(),this.createjs=this.createjs||{},function(){"use strict";function a(){throw"MotionGuidePlugin cannot be instantiated."}a.priority=0,a._rotOffS,a._rotOffE,a._rotNormS,a._rotNormE,a.install=function(){return createjs.Tween.installPlugin(a,["guide","x","y","rotation"]),createjs.Tween.IGNORE},a.init=function(a,b,c){var d=a.target;return d.hasOwnProperty("x")||(d.x=0),d.hasOwnProperty("y")||(d.y=0),d.hasOwnProperty("rotation")||(d.rotation=0),"rotation"==b&&(a.__needsRot=!0),"guide"==b?null:c},a.step=function(b,c,d,e,f){if("rotation"==c&&(b.__rotGlobalS=d,b.__rotGlobalE=e,a.testRotData(b,f)),"guide"!=c)return e;var g,h=e;h.hasOwnProperty("path")||(h.path=[]);var i=h.path;if(h.hasOwnProperty("end")||(h.end=1),h.hasOwnProperty("start")||(h.start=d&&d.hasOwnProperty("end")&&d.path===i?d.end:0),h.hasOwnProperty("_segments")&&h._length)return e;var j=i.length,k=10;if(!(j>=6&&(j-2)%4==0))throw"invalid 'path' data, please see documentation for valid paths";h._segments=[],h._length=0;for(var l=2;j>l;l+=4){for(var m,n,o=i[l-2],p=i[l-1],q=i[l+0],r=i[l+1],s=i[l+2],t=i[l+3],u=o,v=p,w=0,x=[],y=1;k>=y;y++){var z=y/k,A=1-z;m=A*A*o+2*A*z*q+z*z*s,n=A*A*p+2*A*z*r+z*z*t,w+=x[x.push(Math.sqrt((g=m-u)*g+(g=n-v)*g))-1],u=m,v=n}h._segments.push(w),h._segments.push(x),h._length+=w}g=h.orient,h.orient=!0;var B={};return a.calc(h,h.start,B),b.__rotPathS=Number(B.rotation.toFixed(5)),a.calc(h,h.end,B),b.__rotPathE=Number(B.rotation.toFixed(5)),h.orient=!1,a.calc(h,h.end,f),h.orient=g,h.orient?(b.__guideData=h,a.testRotData(b,f),e):e},a.testRotData=function(a,b){if(void 0===a.__rotGlobalS||void 0===a.__rotGlobalE){if(a.__needsRot)return;void 0!==a._curQueueProps.rotation?a.__rotGlobalS=a.__rotGlobalE=a._curQueueProps.rotation:a.__rotGlobalS=a.__rotGlobalE=b.rotation=a.target.rotation||0}if(void 0!==a.__guideData){var c=a.__guideData,d=a.__rotGlobalE-a.__rotGlobalS,e=a.__rotPathE-a.__rotPathS,f=d-e;if("auto"==c.orient)f>180?f-=360:-180>f&&(f+=360);else if("cw"==c.orient){for(;0>f;)f+=360;0==f&&d>0&&180!=d&&(f+=360)}else if("ccw"==c.orient){for(f=d-(e>180?360-e:e);f>0;)f-=360;0==f&&0>d&&-180!=d&&(f-=360)}c.rotDelta=f,c.rotOffS=a.__rotGlobalS-a.__rotPathS,a.__rotGlobalS=a.__rotGlobalE=a.__guideData=a.__needsRot=void 0}},a.tween=function(b,c,d,e,f,g,h,i){var j=f.guide;if(void 0==j||j===e.guide)return d;if(j.lastRatio!=g){var k=(j.end-j.start)*(h?j.end:g)+j.start;switch(a.calc(j,k,b.target),j.orient){case"cw":case"ccw":case"auto":b.target.rotation+=j.rotOffS+j.rotDelta*g;break;case"fixed":default:b.target.rotation+=j.rotOffS}j.lastRatio=g}return"rotation"!=c||j.orient&&"false"!=j.orient?b.target[c]:d},a.calc=function(a,b,c){if(void 0==a._segments)throw"Missing critical pre-calculated information, please file a bug";void 0==c&&(c={x:0,y:0,rotation:0});for(var d=a._segments,e=a.path,f=a._length*b,g=d.length-2,h=0;f>d[h]&&g>h;)f-=d[h],h+=2;var i=d[h+1],j=0;for(g=i.length-1;f>i[j]&&g>j;)f-=i[j],j++;var k=j/++g+f/(g*i[j]);h=2*h+2;var l=1-k;return c.x=l*l*e[h-2]+2*l*k*e[h+0]+k*k*e[h+2],c.y=l*l*e[h-1]+2*l*k*e[h+1]+k*k*e[h+3],a.orient&&(c.rotation=57.2957795*Math.atan2((e[h+1]-e[h-1])*l+(e[h+3]-e[h+1])*k,(e[h+0]-e[h-2])*l+(e[h+2]-e[h+0])*k)),c},createjs.MotionGuidePlugin=a}(),this.createjs=this.createjs||{},function(){"use strict";var a=createjs.TweenJS=createjs.TweenJS||{};a.version="0.6.2",a.buildDate="Thu, 26 Nov 2015 20:44:31 GMT"}(); \ No newline at end of file diff --git a/games/champion-island/cutscene-sprite.png b/games/champion-island/cutscene-sprite.png new file mode 100644 index 0000000..6f8e611 Binary files /dev/null and b/games/champion-island/cutscene-sprite.png differ diff --git a/games/champion-island/disco.mp3 b/games/champion-island/disco.mp3 new file mode 100644 index 0000000..15cd12d Binary files /dev/null and b/games/champion-island/disco.mp3 differ diff --git a/games/champion-island/disco.ogg b/games/champion-island/disco.ogg new file mode 100644 index 0000000..08de5ca Binary files /dev/null and b/games/champion-island/disco.ogg differ diff --git a/games/champion-island/doodle-champion-island-games-begin-6753651837108462.2-l.png b/games/champion-island/doodle-champion-island-games-begin-6753651837108462.2-l.png new file mode 100644 index 0000000..2aae2e5 Binary files /dev/null and b/games/champion-island/doodle-champion-island-games-begin-6753651837108462.2-l.png differ diff --git a/games/champion-island/favicon.ico b/games/champion-island/favicon.ico new file mode 100644 index 0000000..ec1208f Binary files /dev/null and b/games/champion-island/favicon.ico differ diff --git a/games/champion-island/index.html b/games/champion-island/index.html new file mode 100644 index 0000000..d8d4ac5 --- /dev/null +++ b/games/champion-island/index.html @@ -0,0 +1,503 @@ + + + + + + + + + Google + + + + + + + + + + + + diff --git a/games/champion-island/index.js b/games/champion-island/index.js new file mode 100644 index 0000000..5823d14 --- /dev/null +++ b/games/champion-island/index.js @@ -0,0 +1,22 @@ +window.root = ""//\/logos\/2020\/kitsune\/rc6\/" +Sk = { + "Zd": ["348D233EE4ED48398F13A42B3BD73D9C", "462CEA9764EE4C8D86AB0BDFEAEB1BF9", "462CEA9764EE4C8D86AB0BDFEAEB1BF9", "6B325686132B46298EE25D130F14A658", "6B325686132B46298EE25D130F14A658", "B6B0DC09A20D455BAB815F8FE24BCF08", "0E30EA04F8F04E9B8B08CAC42EEA149E", "1754741A4A3841C2AB73BD915D793487", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "53A3DF4EA6694858812E8CA9B4AB07DC", "6B325686132B46298EE25D130F14A658", "53A3DF4EA6694858812E8CA9B4AB07DC", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "462CEA9764EE4C8D86AB0BDFEAEB1BF9", "6CC3977E663B4BA1A079CF41822948DB", "6CC3977E663B4BA1A079CF41822948DB", "462CEA9764EE4C8D86AB0BDFEAEB1BF9", "6B325686132B46298EE25D130F14A658", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "462CEA9764EE4C8D86AB0BDFEAEB1BF9", "1F5F819ABC834FD88AEB5AFCEFF8263B", "1F5F819ABC834FD88AEB5AFCEFF8263B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "7B2C344CB74B48B4AFAEBCF1D033F55A", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "462CEA9764EE4C8D86AB0BDFEAEB1BF9", "8AB206B0C8EC450BA137F5272C53C5F0", "8AB206B0C8EC450BA137F5272C53C5F0", "6B325686132B46298EE25D130F14A658", "8AB206B0C8EC450BA137F5272C53C5F0", "6B325686132B46298EE25D130F14A658", "8AB206B0C8EC450BA137F5272C53C5F0", "462CEA9764EE4C8D86AB0BDFEAEB1BF9", "6B325686132B46298EE25D130F14A658", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "81A4DDA62E6C4693B3A00E8A0484897E", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "462CEA9764EE4C8D86AB0BDFEAEB1BF9", "81A4DDA62E6C4693B3A00E8A0484897E", "81A4DDA62E6C4693B3A00E8A0484897E", "81A4DDA62E6C4693B3A00E8A0484897E", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "6A005E6C90D74E9A971A793C2ECC526F", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "462CEA9764EE4C8D86AB0BDFEAEB1BF9", "6A005E6C90D74E9A971A793C2ECC526F", "6A005E6C90D74E9A971A793C2ECC526F", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "1F5F819ABC834FD88AEB5AFCEFF8263B", "6B325686132B46298EE25D130F14A658", "1F5F819ABC834FD88AEB5AFCEFF8263B", "462CEA9764EE4C8D86AB0BDFEAEB1BF9", "6B325686132B46298EE25D130F14A658", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "53A3DF4EA6694858812E8CA9B4AB07DC", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "81A4DDA62E6C4693B3A00E8A0484897E", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "81A4DDA62E6C4693B3A00E8A0484897E", "81A4DDA62E6C4693B3A00E8A0484897E", "462CEA9764EE4C8D86AB0BDFEAEB1BF9", "6B325686132B46298EE25D130F14A658", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "81A4DDA62E6C4693B3A00E8A0484897E", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "6A005E6C90D74E9A971A793C2ECC526F", "6B325686132B46298EE25D130F14A658", "6A005E6C90D74E9A971A793C2ECC526F", "462CEA9764EE4C8D86AB0BDFEAEB1BF9", "462CEA9764EE4C8D86AB0BDFEAEB1BF9", "462CEA9764EE4C8D86AB0BDFEAEB1BF9", "6B325686132B46298EE25D130F14A658", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "81A4DDA62E6C4693B3A00E8A0484897E", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "641FECB93B7041208934B77EA1084BE4", "6B325686132B46298EE25D130F14A658", "641FECB93B7041208934B77EA1084BE4", "6B325686132B46298EE25D130F14A658", "641FECB93B7041208934B77EA1084BE4", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "641FECB93B7041208934B77EA1084BE4", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "1F5F819ABC834FD88AEB5AFCEFF8263B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658", "6CC3977E663B4BA1A079CF41822948DB", "6B325686132B46298EE25D130F14A658", "61DFBEFE7BBA42719310DD5484391B9B", "6B325686132B46298EE25D130F14A658"], + "Ve": [], + "Kf": { + "B6B0DC09A20D455BAB815F8FE24BCF08": {}, + "0E30EA04F8F04E9B8B08CAC42EEA149E": {}, + "348D233EE4ED48398F13A42B3BD73D9C": {}, + "1754741A4A3841C2AB73BD915D793487": {}, + "462CEA9764EE4C8D86AB0BDFEAEB1BF9": {}, + "1F5F819ABC834FD88AEB5AFCEFF8263B": {}, + "7B2C344CB74B48B4AFAEBCF1D033F55A": {}, + "641FECB93B7041208934B77EA1084BE4": {}, + "61DFBEFE7BBA42719310DD5484391B9B": {}, + "6A005E6C90D74E9A971A793C2ECC526F": {}, + "6B325686132B46298EE25D130F14A658": {}, + "53A3DF4EA6694858812E8CA9B4AB07DC": {}, + "6CC3977E663B4BA1A079CF41822948DB": {}, + "8AB206B0C8EC450BA137F5272C53C5F0": {}, + "81A4DDA62E6C4693B3A00E8A0484897E": {} + } +} diff --git a/games/champion-island/intro.mp4 b/games/champion-island/intro.mp4 new file mode 100644 index 0000000..e413008 Binary files /dev/null and b/games/champion-island/intro.mp4 differ diff --git a/games/champion-island/kitsune20.js b/games/champion-island/kitsune20.js new file mode 100644 index 0000000..cca8443 --- /dev/null +++ b/games/champion-island/kitsune20.js @@ -0,0 +1,31470 @@ +/* + + Copyright The Closure Library Authors. + SPDX-License-Identifier: Apache-2.0 +*/ +var l, aa = function (b) { + var g = 0; + return function () { + return g < b.length ? {done: ! 1, value: b[g++]} : {done: ! 0} + } +}, ba = "function" == typeof Object.defineProperties ? Object.defineProperty : function (b, g, m) { + if (b == Array.prototype || b == Object.prototype) return b; + b[g] = m.value; + return b +}, ca = function (b) { + b = ["object" == typeof globalThis && globalThis, b, "object" == typeof window && window, "object" == typeof self && self, "object" == typeof global && global]; + for (var g = 0; g < b.length; ++g) { + var m = b[g]; + if (m && m.Math == Math) return m + } + throw Error("a"); +}, da = + ca(this), ea = function (b, g) { + if (g) a:{ + var m = da; + b = b.split("."); + for (var k = 0; k < b.length - 1; k++) { + var c = b[k]; + if ( ! (c in m)) break a; + m = m[c] + } + b = b[b.length - 1]; + k = m[b]; + g = g(k); + g != k && null != g && ba(m, b, {configurable: ! 0, writable: ! 0, value: g}) + } +}; +ea("Symbol", function (b) { + if (b) return b; + var g = function (a, n) { + this.ha = a; + ba(this, "description", {configurable: ! 0, writable: ! 0, value: n}) + }; + g.prototype.toString = function () { + return this.ha + }; + var m = "jscomp_symbol_" + (1E9 * Math.random() >>> 0) + "_", k = 0, c = function (a) { + if (this instanceof c) throw new TypeError("b"); + return new g(m + (a || "") + "_" + k++, a) + }; + return c +}); +ea("Symbol.iterator", function (b) { + if (b) return b; + b = Symbol("Symbol.iterator"); + for (var g = "Array Int8Array Uint8Array Uint8ClampedArray Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array".split(" "), m = 0; m < g.length; m++) { + var k = da[g[m]]; + "function" === typeof k && "function" != typeof k.prototype[b] && ba(k.prototype, b, { + configurable: ! 0, + writable: ! 0, + value: function () { + return fa(aa(this)) + } + }) + } + return b +}); +var fa = function (b) { + b = {next: b}; + b[Symbol.iterator] = function () { + return this + }; + return b +}, p = function (b) { + var g = "undefined" != typeof Symbol && Symbol.iterator && b[Symbol.iterator]; + return g ? g.call(b) : {next: aa(b)} +}, ha = function (b) { + if ( ! (b instanceof Array)) { + b = p(b); + for (var g, m = []; ! (g = b.next()).done;) m.push(g.value); + b = m + } + return b +}, ia = "function" == typeof Object.create ? Object.create : function (b) { + var g = function () { + }; + g.prototype = b; + return new g +}, ja; +if ("function" == typeof Object.setPrototypeOf) ja = Object.setPrototypeOf; else { + var ka; + a:{ + var la = {a: ! 0}, ma = {}; + try { + ma.__proto__ = la; + ka = ma.a; + break a + } catch (b) { + } + ka = ! 1 + } + ja = ka ? function (b, g) { + b.__proto__ = g; + if (b.__proto__ !== g) throw new TypeError("c`" + b); + return b + } : null +} +var na = ja, q = function (b, g) { + b.prototype = ia(g.prototype); + b.prototype.constructor = b; + if (na) na(b, g); else for (var m in g) if ("prototype" != m) if (Object.defineProperties) { + var k = Object.getOwnPropertyDescriptor(g, m); + k && Object.defineProperty(b, m, k) + } else b[m] = g[m]; + b.lS = g.prototype +}, oa = function () { + this.Bb = ! 1; + this.Ca = null; + this.kb = void 0; + this.ha = 1; + this.le = 0; + this.oc = null +}, pa = function (b) { + if (b.Bb) throw new TypeError("e"); + b.Bb = ! 0 +}; +oa.prototype.Sc = function (b) { + this.kb = b +}; +var qa = function (b, g) { + b.oc = {Eab: g, obb: ! 0}; + b.ha = b.le +}; +oa.prototype.return = function (b) { + this.oc = {return: b}; + this.ha = this.le +}; +var ra = function (b, g, m) { + b.ha = m; + return {value: g} +}, sa = function (b) { + this.ha = new oa; + this.Ca = b +}, va = function (b, g) { + pa(b.ha); + var m = b.ha.Ca; + if (m) return ta(b, "return" in m ? m["return"] : function (k) { + return {value: k, done: ! 0} + }, g, b.ha.return); + b.ha.return(g); + return ua(b) +}, ta = function (b, g, m, k) { + try { + var c = g.call(b.ha.Ca, m); + if ( ! (c instanceof Object)) throw new TypeError("d`" + c); + if ( ! c.done) return b.ha.Bb = ! 1, c; + var a = c.value + } catch (n) { + return b.ha.Ca = null, qa(b.ha, n), ua(b) + } + b.ha.Ca = null; + k.call(b.ha, a); + return ua(b) +}, ua = function (b) { + for (; b.ha.ha;) try { + var g = + b.Ca(b.ha); + if (g) return b.ha.Bb = ! 1, {value: g.value, done: ! 1} + } catch (m) { + b.ha.kb = void 0, qa(b.ha, m) + } + b.ha.Bb = ! 1; + if (b.ha.oc) { + g = b.ha.oc; + b.ha.oc = null; + if (g.obb) throw g.Eab; + return {value: g.return, done: ! 0} + } + return {value: void 0, done: ! 0} +}, wa = function (b) { + this.next = function (g) { + pa(b.ha); + b.ha.Ca ? g = ta(b, b.ha.Ca.next, g, b.ha.Sc) : (b.ha.Sc(g), g = ua(b)); + return g + }; + this.throw = function (g) { + pa(b.ha); + b.ha.Ca ? g = ta(b, b.ha.Ca["throw"], g, b.ha.Sc) : (qa(b.ha, g), g = ua(b)); + return g + }; + this.return = function (g) { + return va(b, g) + }; + this[Symbol.iterator] = + function () { + return this + } +}, xa = function (b) { + function g(k) { + return b.next(k) + } + + function m(k) { + return b.throw(k) + } + + return new Promise(function (k, c) { + function a(n) { + n.done ? k(n.value) : Promise.resolve(n.value).then(g, m).then(a, c) + } + + a(b.next()) + }) +}, ya = function (b) { + return xa(new wa(new sa(b))) +}; +ea("Promise", function (b) { + function g() { + this.ha = null + } + + function m(n) { + return n instanceof c ? n : new c(function (h) { + h(n) + }) + } + + if (b) return b; + g.prototype.Ca = function (n) { + if (null == this.ha) { + this.ha = []; + var h = this; + this.kb(function () { + h.oc() + }) + } + this.ha.push(n) + }; + var k = da.setTimeout; + g.prototype.kb = function (n) { + k(n, 0) + }; + g.prototype.oc = function () { + for (; this.ha && this.ha.length;) { + var n = this.ha; + this.ha = []; + for (var h = 0; h < n.length; ++h) { + var d = n[h]; + n[h] = null; + try { + d() + } catch (e) { + this.Bb(e) + } + } + } + this.ha = null + }; + g.prototype.Bb = function (n) { + this.kb(function () { + throw n; + }) + }; + var c = function (n) { + this.ha = 0; + this.kb = void 0; + this.Ca = []; + this.le = ! 1; + var h = this.Bb(); + try { + n(h.resolve, h.reject) + } catch (d) { + h.reject(d) + } + }; + c.prototype.Bb = function () { + function n(e) { + return function (f) { + d || (d = ! 0, e.call(h, f)) + } + } + + var h = this, d = ! 1; + return {resolve: n(this.Xs), reject: n(this.oc)} + }; + c.prototype.Xs = function (n) { + if (n === this) this.oc(new TypeError("f")); else if (n instanceof c) this.Xw(n); else { + a:switch (typeof n) { + case "object": + var h = null != n; + break a; + case "function": + h = ! 0; + break a; + default: + h = ! 1 + } + h ? this.Jk(n) : this.Sc(n) + } + }; + c.prototype.Jk = function (n) { + var h = void 0; + try { + h = n.then + } catch (d) { + this.oc(d); + return + } + "function" == typeof h ? this.qB(h, n) : this.Sc(n) + }; + c.prototype.oc = function (n) { + this.Xd(2, n) + }; + c.prototype.Sc = function (n) { + this.Xd(1, n) + }; + c.prototype.Xd = function (n, h) { + if (0 != this.ha) throw Error("g`" + n + "`" + h + "`" + this.ha); + this.ha = n; + this.kb = h; + 2 === this.ha && this.Wt(); + this.Af() + }; + c.prototype.Wt = function () { + var n = this; + k(function () { + if (n.Pk()) { + var h = da.console; + "undefined" !== typeof h && h.error(n.kb) + } + }, 1) + }; + c.prototype.Pk = function () { + if (this.le) return ! 1; + var n = da.CustomEvent, h = da.Event, d = da.dispatchEvent; + if ("undefined" === typeof d) return ! 0; + "function" === typeof n ? n = new n("unhandledrejection", {cancelable: ! 0}) : "function" === typeof h ? n = new h("unhandledrejection", {cancelable: ! 0}) : (n = da.document.createEvent("CustomEvent"), n.initCustomEvent("unhandledrejection", ! 1, ! 0, n)); + n.promise = this; + n.reason = this.kb; + return d(n) + }; + c.prototype.Af = function () { + if (null != this.Ca) { + for (var n = 0; n < this.Ca.length; ++n) a.Ca(this.Ca[n]); + this.Ca = null + } + }; + var a = new g; + c.prototype.Xw = function (n) { + var h = + this.Bb(); + n.n_(h.resolve, h.reject) + }; + c.prototype.qB = function (n, h) { + var d = this.Bb(); + try { + n.call(h, d.resolve, d.reject) + } catch (e) { + d.reject(e) + } + }; + c.prototype.then = function (n, h) { + function d(u, E) { + return "function" == typeof u ? function (P) { + try { + e(u(P)) + } catch (K) { + f(K) + } + } : E + } + + var e, f, v = new c(function (u, E) { + e = u; + f = E + }); + this.n_(d(n, e), d(h, f)); + return v + }; + c.prototype.catch = function (n) { + return this.then(void 0, n) + }; + c.prototype.n_ = function (n, h) { + function d() { + switch (e.ha) { + case 1: + n(e.kb); + break; + case 2: + h(e.kb); + break; + default: + throw Error("h`" + + e.ha); + } + } + + var e = this; + null == this.Ca ? a.Ca(d) : this.Ca.push(d); + this.le = ! 0 + }; + c.resolve = m; + c.reject = function (n) { + return new c(function (h, d) { + d(n) + }) + }; + c.race = function (n) { + return new c(function (h, d) { + for (var e = p(n), f = e.next(); ! f.done; f = e.next()) m(f.value).n_(h, d) + }) + }; + c.all = function (n) { + var h = p(n), d = h.next(); + return d.done ? m([]) : new c(function (e, f) { + function v(P) { + return function (K) { + u[P] = K; + E--; + 0 == E && e(u) + } + } + + var u = [], E = 0; + do u.push(void 0), E++, m(d.value).n_(v(u.length - 1), f), d = h.next(); while ( ! d.done) + }) + }; + return c +}); +var za = function (b, g) { + return Object.prototype.hasOwnProperty.call(b, g) +}; +ea("WeakMap", function (b) { + function g() { + } + + function m(d) { + var e = typeof d; + return "object" === e && null !== d || "function" === e + } + + function k(d) { + if ( ! za(d, a)) { + var e = new g; + ba(d, a, {value: e}) + } + } + + function c(d) { + var e = Object[d]; + e && (Object[d] = function (f) { + if (f instanceof g) return f; + Object.isExtensible(f) && k(f); + return e(f) + }) + } + + if (function () { + if ( ! b || ! Object.seal) return ! 1; + try { + var d = Object.seal({}), e = Object.seal({}), f = new b([[d, 2], [e, 3]]); + if (2 != f.get(d) || 3 != f.get(e)) return ! 1; + f.delete(d); + f.set(e, 4); + return ! f.has(d) && 4 == f.get(e) + } catch (v) { + return ! 1 + } + }()) return b; + var a = "$jscomp_hidden_" + Math.random(); + c("freeze"); + c("preventExtensions"); + c("seal"); + var n = 0, h = function (d) { + this.ha = (n += Math.random() + 1).toString(); + if (d) { + d = p(d); + for (var e; ! (e = d.next()).done;) e = e.value, this.set(e[0], e[1]) + } + }; + h.prototype.set = function (d, e) { + if ( ! m(d)) throw Error("i"); + k(d); + if ( ! za(d, a)) throw Error("j`" + d); + d[a][this.ha] = e; + return this + }; + h.prototype.get = function (d) { + return m(d) && za(d, a) ? d[a][this.ha] : void 0 + }; + h.prototype.has = function (d) { + return m(d) && za(d, a) && za(d[a], this.ha) + }; + h.prototype.delete = function (d) { + return m(d) && + za(d, a) && za(d[a], this.ha) ? delete d[a][this.ha] : ! 1 + }; + return h +}); +ea("Map", function (b) { + if (function () { + if ( ! b || "function" != typeof b || ! b.prototype.entries || "function" != typeof Object.seal) return ! 1; + try { + var h = Object.seal({x: 4}), d = new b(p([[h, "s"]])); + if ("s" != d.get(h) || 1 != d.size || d.get({x: 4}) || d.set({x: 4}, "t") != d || 2 != d.size) return ! 1; + var e = d.entries(), f = e.next(); + if (f.done || f.value[0] != h || "s" != f.value[1]) return ! 1; + f = e.next(); + return f.done || 4 != f.value[0].x || "t" != f.value[1] || ! e.next().done ? ! 1 : ! 0 + } catch (v) { + return ! 1 + } + }()) return b; + var g = new WeakMap, m = function (h) { + this.Ca = {}; + this.ha = + a(); + this.size = 0; + if (h) { + h = p(h); + for (var d; ! (d = h.next()).done;) d = d.value, this.set(d[0], d[1]) + } + }; + m.prototype.set = function (h, d) { + h = 0 === h ? 0 : h; + var e = k(this, h); + e.list || (e.list = this.Ca[e.id] = []); + e.Qx ? e.Qx.value = d : (e.Qx = { + next: this.ha, + yK: this.ha.yK, + head: this.ha, + key: h, + value: d + }, e.list.push(e.Qx), this.ha.yK.next = e.Qx, this.ha.yK = e.Qx, this.size++); + return this + }; + m.prototype.delete = function (h) { + h = k(this, h); + return h.Qx && h.list ? (h.list.splice(h.index, 1), h.list.length || delete this.Ca[h.id], h.Qx.yK.next = h.Qx.next, h.Qx.next.yK = + h.Qx.yK, h.Qx.head = null, this.size--, ! 0) : ! 1 + }; + m.prototype.clear = function () { + this.Ca = {}; + this.ha = this.ha.yK = a(); + this.size = 0 + }; + m.prototype.has = function (h) { + return !! k(this, h).Qx + }; + m.prototype.get = function (h) { + return (h = k(this, h).Qx) && h.value + }; + m.prototype.entries = function () { + return c(this, function (h) { + return [h.key, h.value] + }) + }; + m.prototype.keys = function () { + return c(this, function (h) { + return h.key + }) + }; + m.prototype.values = function () { + return c(this, function (h) { + return h.value + }) + }; + m.prototype.forEach = function (h, d) { + for (var e = this.entries(), + f; ! (f = e.next()).done;) f = f.value, h.call(d, f[1], f[0], this) + }; + m.prototype[Symbol.iterator] = m.prototype.entries; + var k = function (h, d) { + var e = d && typeof d; + "object" == e || "function" == e ? g.has(d) ? e = g.get(d) : (e = "" + ++n, g.set(d, e)) : e = "p_" + d; + var f = h.Ca[e]; + if (f && za(h.Ca, e)) for (h = 0; h < f.length; h++) { + var v = f[h]; + if (d !== d && v.key !== v.key || d === v.key) return {id: e, list: f, index: h, Qx: v} + } + return {id: e, list: f, index: -1, Qx: void 0} + }, c = function (h, d) { + var e = h.ha; + return fa(function () { + if (e) { + for (; e.head != h.ha;) e = e.yK; + for (; e.next != e.head;) return e = + e.next, {done: ! 1, value: d(e)}; + e = null + } + return {done: ! 0, value: void 0} + }) + }, a = function () { + var h = {}; + return h.yK = h.next = h.head = h + }, n = 0; + return m +}); +ea("Array.prototype.find", function (b) { + return b ? b : function (g, m) { + a:{ + var k = this; + k instanceof String && (k = String(k)); + for (var c = k.length, a = 0; a < c; a++) { + var n = k[a]; + if (g.call(m, n, a, k)) { + g = n; + break a + } + } + g = void 0 + } + return g + } +}); +var Aa = function (b, g, m) { + if (null == b) throw new TypeError("k`" + m); + if (g instanceof RegExp) throw new TypeError("l`" + m); + return b + "" +}; +ea("String.prototype.startsWith", function (b) { + return b ? b : function (g, m) { + var k = Aa(this, g, "startsWith"); + g += ""; + var c = k.length, a = g.length; + m = Math.max(0, Math.min(m | 0, k.length)); + for (var n = 0; n < a && m < c;) if (k[m++] != g[n++]) return ! 1; + return n >= a + } +}); +ea("String.prototype.repeat", function (b) { + return b ? b : function (g) { + var m = Aa(this, null, "repeat"); + if (0 > g || 1342177279 < g) throw new RangeError("Invalid count value"); + g |= 0; + for (var k = ""; g;) if (g & 1 && (k += m), g >>>= 1) m += m; + return k + } +}); +var Ba = function (b, g) { + b instanceof String && (b += ""); + var m = 0, k = ! 1, c = { + next: function () { + if ( ! k && m < b.length) { + var a = m++; + return {value: g(a, b[a]), done: ! 1} + } + k = ! 0; + return {done: ! 0, value: void 0} + } + }; + c[Symbol.iterator] = function () { + return c + }; + return c +}; +ea("Array.prototype.keys", function (b) { + return b ? b : function () { + return Ba(this, function (g) { + return g + }) + } +}); +ea("Array.from", function (b) { + return b ? b : function (g, m, k) { + m = null != m ? m : function (h) { + return h + }; + var c = [], a = "undefined" != typeof Symbol && Symbol.iterator && g[Symbol.iterator]; + if ("function" == typeof a) { + g = a.call(g); + for (var n = 0; ! (a = g.next()).done;) c.push(m.call(k, a.value, n++)) + } else for (a = g.length, n = 0; n < a; n++) c.push(m.call(k, g[n], n)); + return c + } +}); +ea("Array.prototype.values", function (b) { + return b ? b : function () { + return Ba(this, function (g, m) { + return m + }) + } +}); +ea("Object.is", function (b) { + return b ? b : function (g, m) { + return g === m ? 0 !== g || 1 / g === 1 / m : g !== g && m !== m + } +}); +ea("Array.prototype.includes", function (b) { + return b ? b : function (g, m) { + var k = this; + k instanceof String && (k = String(k)); + var c = k.length; + m = m || 0; + for (0 > m && (m = Math.max(m + c, 0)); m < c; m++) { + var a = k[m]; + if (a === g || Object.is(a, g)) return ! 0 + } + return ! 1 + } +}); +ea("String.prototype.includes", function (b) { + return b ? b : function (g, m) { + return -1 !== Aa(this, g, "includes").indexOf(g, m || 0) + } +}); +var Ca = "function" == typeof Object.assign ? Object.assign : function (b, g) { + for (var m = 1; m < arguments.length; m++) { + var k = arguments[m]; + if (k) for (var c in k) za(k, c) && (b[c] = k[c]) + } + return b +}; +ea("Object.assign", function (b) { + return b || Ca +}); +ea("Array.prototype.fill", function (b) { + return b ? b : function (g, m, k) { + var c = this.length || 0; + 0 > m && (m = Math.max(0, c + m)); + if (null == k || k > c) k = c; + k = Number(k); + 0 > k && (k = Math.max(0, c + k)); + for (m = Number(m || 0); m < k; m++) this[m] = g; + return this + } +}); +var Da = function (b) { + return b ? b : Array.prototype.fill +}; +ea("Int8Array.prototype.fill", Da); +ea("Uint8Array.prototype.fill", Da); +ea("Uint8ClampedArray.prototype.fill", Da); +ea("Int16Array.prototype.fill", Da); +ea("Uint16Array.prototype.fill", Da); +ea("Int32Array.prototype.fill", Da); +ea("Uint32Array.prototype.fill", Da); +ea("Float32Array.prototype.fill", Da); +ea("Float64Array.prototype.fill", Da); +ea("Number.MAX_SAFE_INTEGER", function () { + return 9007199254740991 +}); +ea("String.prototype.padStart", function (b) { + return b ? b : function (g, m) { + var k = Aa(this, null, "padStart"); + g -= k.length; + m = void 0 !== m ? String(m) : " "; + return (0 < g && m ? m.repeat(Math.ceil(g / m.length)).substring(0, g) : "") + k + } +}); +ea("String.prototype.matchAll", function (b) { + return b ? b : function (g) { + if (g instanceof RegExp && ! g.global) throw new TypeError("m"); + var m = new RegExp(g, g instanceof RegExp ? void 0 : "g"), k = this, c = ! 1, a = { + next: function () { + if (c) return {value: void 0, done: ! 0}; + var n = m.exec(k); + if ( ! n) return c = ! 0, {value: void 0, done: ! 0}; + "" === n[0] && (m.lastIndex += 1); + return {value: n, done: ! 1} + } + }; + a[Symbol.iterator] = function () { + return a + }; + return a + } +}); +ea("String.prototype.replaceAll", function (b) { + return b ? b : function (g, m) { + if (g instanceof RegExp && ! g.global) throw new TypeError("n"); + return g instanceof RegExp ? this.replace(g, m) : this.replace(new RegExp(String(g).replace(/([-()\[\]{}+?*.$\^|,:# g ? -m : m + } +}); +ea("Promise.prototype.finally", function (b) { + return b ? b : function (g) { + return this.then(function (m) { + return Promise.resolve(g()).then(function () { + return m + }) + }, function (m) { + return Promise.resolve(g()).then(function () { + throw m; + }) + }) + } +}); +var Ea = Ea || {}, r = this || self, Fa = function () { +}, Ga = function (b) { + b.EN = void 0; + b.AJ = function () { + return b.EN ? b.EN : b.EN = new b + } +}, Ha = function (b) { + var g = typeof b; + g = "object" != g ? g : b ? Array.isArray(b) ? "array" : g : "null"; + return "array" == g || "object" == g && "number" == typeof b.length +}, Ia = function (b) { + var g = typeof b; + return "object" == g && null != b || "function" == g +}, Ja = function (b, g, m) { + return b.call.apply(b.bind, arguments) +}, Ka = function (b, g, m) { + if ( ! b) throw Error(); + if (2 < arguments.length) { + var k = Array.prototype.slice.call(arguments, 2); + return function () { + var c = + Array.prototype.slice.call(arguments); + Array.prototype.unshift.apply(c, k); + return b.apply(g, c) + } + } + return function () { + return b.apply(g, arguments) + } +}, La = function (b, g, m) { + Function.prototype.bind && -1 != Function.prototype.bind.toString().indexOf("native code") ? La = Ja : La = Ka; + return La.apply(null, arguments) +}, Ma = function (b, g) { + var m = Array.prototype.slice.call(arguments, 1); + return function () { + var k = m.slice(); + k.push.apply(k, arguments); + return b.apply(this, k) + } +}, Na = function (b, g) { + b = b.split("."); + var m = r; + b[0] in m || "undefined" == + typeof m.execScript || m.execScript("var " + b[0]); + for (var k; b.length && (k = b.shift());) b.length || void 0 === g ? m[k] && m[k] !== Object.prototype[k] ? m = m[k] : m = m[k] = {} : m[k] = g +}, Oa = function (b, g) { + function m() { + } + + m.prototype = g.prototype; + b.lS = g.prototype; + b.prototype = new m; + b.prototype.constructor = b; + b.qK = function (k, c, a) { + for (var n = Array(arguments.length - 2), h = 2; h < arguments.length; h++) n[h - 2] = arguments[h]; + return g.prototype[c].apply(k, n) + } +}, Pa = function (b) { + return b +}; +var Qa = function (b) { + this.oc = b; + this.Ca = ! 1; + this.kb = [] +}, Ra = function (b) { + if ( ! b.Ca) { + b.Ca = ! 0; + b = p(b.kb); + for (var g = b.next(); ! g.done; g = b.next()) g = g.value, g() + } +}; +Qa.prototype.Bb = function () { +}; + +function Sa(b) { + if (Error.captureStackTrace) Error.captureStackTrace(this, Sa); else { + var g = Error().stack; + g && (this.stack = g) + } + b && (this.message = String(b)) +} + +Oa(Sa, Error); +Sa.prototype.name = "CustomError"; +var Ta; +var Ua = Array.prototype.indexOf ? function (b, g) { + return Array.prototype.indexOf.call(b, g, void 0) +} : function (b, g) { + if ("string" === typeof b) return "string" !== typeof g || 1 != g.length ? -1 : b.indexOf(g, 0); + for (var m = 0; m < b.length; m++) if (m in b && b[m] === g) return m; + return -1 +}, Va = Array.prototype.some ? function (b, g) { + return Array.prototype.some.call(b, g, void 0) +} : function (b, g) { + for (var m = b.length, k = "string" === typeof b ? b.split("") : b, c = 0; c < m; c++) if (c in k && g.call(void 0, k[c], c, b)) return ! 0; + return ! 1 +}; + +function Wa(b, g) { + g = Ua(b, g); + var m; + (m = 0 <= g) && Array.prototype.splice.call(b, g, 1); + return m +} + +function Xa(b, g, m, k) { + Array.prototype.splice.apply(b, Ya(arguments, 1)) +} + +function Ya(b, g, m) { + return 2 >= arguments.length ? Array.prototype.slice.call(b, g) : Array.prototype.slice.call(b, g, m) +} + +function Za(b, g) { + for (var m = $a || ab, k = 0, c = b.length, a; k < c;) { + var n = k + (c - k >>> 1); + var h = m(g, b[n]); + 0 < h ? k = n + 1 : (c = n, a = ! h) + } + return a ? k : -k - 1 +} + +function ab(b, g) { + return b > g ? 1 : b < g ? -1 : 0 +} + +function bb(b) { + for (var g = Math.random, m = b.length - 1; 0 < m; m--) { + var k = Math.floor(g() * (m + 1)), c = b[m]; + b[m] = b[k]; + b[k] = c + } +};var cb = String.prototype.trim ? function (b) { + return b.trim() +} : function (b) { + return /^[\s\xa0]*([\s\S]*?)[\s\xa0]*$/.exec(b)[1] +}, db = /&/g, eb = //g, gb = /"/g, hb = /'/g, ib = /\x00/g, jb = /[\x00&<>"']/, kb = function (b, g) { + return b < g ? -1 : b > g ? 1 : 0 +}; +var lb; +a:{ + var mb = r.navigator; + if (mb) { + var nb = mb.userAgent; + if (nb) { + lb = nb; + break a + } + } + lb = "" +} +var x = function (b) { + return -1 != lb.indexOf(b) +}; + +function ob(b, g, m) { + for (var k in b) g.call(m, b[k], k, b) +} + +var pb = "constructor hasOwnProperty isPrototypeOf propertyIsEnumerable toLocaleString toString valueOf".split(" "); + +function qb(b, g) { + for (var m, k, c = 1; c < arguments.length; c++) { + k = arguments[c]; + for (m in k) b[m] = k[m]; + for (var a = 0; a < pb.length; a++) m = pb[a], Object.prototype.hasOwnProperty.call(k, m) && (b[m] = k[m]) + } +};var rb = function () { + return x("Firefox") || x("FxiOS") +}, sb = function () { + return (x("Chrome") || x("CriOS")) && ! x("Edge") +}; +var tb, ub = function () { + if (void 0 === tb) { + var b = null, g = r.trustedTypes; + if (g && g.createPolicy) { + try { + b = g.createPolicy("goog#html", {createHTML: Pa, createScript: Pa, createScriptURL: Pa}) + } catch (m) { + r.console && r.console.error(m.message) + } + tb = b + } else tb = b + } + return tb +}; +var xb = function (b, g) { + this.ha = b === vb && g || ""; + this.Ca = wb +}; +xb.prototype.MT = ! 0; +xb.prototype.DT = function () { + return this.ha +}; +var wb = {}, vb = {}; +var yb = /[A-Za-z\u00c0-\u00d6\u00d8-\u00f6\u00f8-\u02b8\u0300-\u0590\u0900-\u1fff\u200e\u2c00-\ud801\ud804-\ud839\ud83c-\udbff\uf900-\ufb1c\ufe00-\ufe6f\ufefd-\uffff]/, + zb = /^[^A-Za-z\u00c0-\u00d6\u00d8-\u00f6\u00f8-\u02b8\u0300-\u0590\u0900-\u1fff\u200e\u2c00-\ud801\ud804-\ud839\ud83c-\udbff\uf900-\ufb1c\ufe00-\ufe6f\ufefd-\uffff]*[\u0591-\u06ef\u06fa-\u08ff\u200f\ud802-\ud803\ud83a-\ud83b\ufb1d-\ufdff\ufe70-\ufefc]/, + Ab = /^http:\/\/.*/, Bb = /\s+/, Cb = /[\d\u06f0-\u06f9]/; +var Eb = function (b, g) { + this.ha = g === Db ? b : "" +}; +l = Eb.prototype; +l.MT = ! 0; +l.DT = function () { + return this.ha.toString() +}; +l.e7 = ! 0; +l.c7 = function () { + return 1 +}; +l.toString = function () { + return this.ha + "" +}; +var Fb = function (b) { + return b instanceof Eb && b.constructor === Eb ? b.ha : "type_error:TrustedResourceUrl" +}, Db = {}, Hb = function () { + var b = Gb; + b = b instanceof xb && b.constructor === xb && b.Ca === wb ? b.ha : "type_error:Const"; + var g = ub(); + b = g ? g.createScriptURL(b) : b; + return new Eb(b, Db) +}; +var Jb = function (b, g) { + this.ha = g === Ib ? b : "" +}; +l = Jb.prototype; +l.MT = ! 0; +l.DT = function () { + return this.ha.toString() +}; +l.e7 = ! 0; +l.c7 = function () { + return 1 +}; +l.toString = function () { + return this.ha.toString() +}; +var Kb = function (b) { + return b instanceof Jb && b.constructor === Jb ? b.ha : "type_error:SafeUrl" +}, Lb = /^(?:(?:https?|mailto|ftp):|[^:/?#]*(?:[/?#]|$))/i, Ib = {}; +var Mb = {}, Nb = function (b, g, m) { + this.ha = m === Mb ? b : ""; + this.Ca = g; + this.MT = this.e7 = ! 0 +}; +Nb.prototype.c7 = function () { + return this.Ca +}; +Nb.prototype.DT = function () { + return this.ha.toString() +}; +Nb.prototype.toString = function () { + return this.ha.toString() +}; +var Ob = function (b) { + return b instanceof Nb && b.constructor === Nb ? b.ha : "type_error:SafeHtml" +}, Qb = function (b) { + if (b instanceof Nb) return b; + var g = "object" == typeof b, m = null; + g && b.e7 && (m = b.c7()); + b = g && b.MT ? b.DT() : String(b); + jb.test(b) && (-1 != b.indexOf("&") && (b = b.replace(db, "&")), -1 != b.indexOf("<") && (b = b.replace(eb, "<")), -1 != b.indexOf(">") && (b = b.replace(fb, ">")), -1 != b.indexOf('"') && (b = b.replace(gb, """)), -1 != b.indexOf("'") && (b = b.replace(hb, "'")), -1 != b.indexOf("\x00") && (b = b.replace(ib, "�"))); + return Pb(b, m) +}, Pb = function (b, g) { + var m = ub(); + b = m ? m.createHTML(b) : b; + return new Nb(b, g, Mb) +}, Rb = new Nb(r.trustedTypes && r.trustedTypes.emptyHTML || "", 0, Mb); +var Sb = function (b) { + var g = ! 1, m; + return function () { + g || (m = b(), g = ! 0); + return m + } +}(function () { + var b = document.createElement("div"), g = document.createElement("div"); + g.appendChild(document.createElement("div")); + b.appendChild(g); + g = b.firstChild.firstChild; + b.innerHTML = Ob(Rb); + return ! g.parentElement +}), Ub = function (b) { + a:{ + var g = (b.ownerDocument && b.ownerDocument.defaultView || r).document; + if (g.querySelector && (g = g.querySelector("script[nonce]")) && (g = g.nonce || g.getAttribute("nonce")) && Tb.test(g)) break a; + g = "" + } + g && b.setAttribute("nonce", + g) +}, Vb = function (b) { + b instanceof Jb || b instanceof Jb || (b = "object" == typeof b && b.MT ? b.DT() : String(b), Lb.test(b) || (b = "about:invalid#zClosurez"), b = new Jb(b, Ib)); + r.open(Kb(b), "") +}, Tb = /^[\w+/_-]+[=]{0,2}$/; +var Wb = function () { + return x("iPhone") && ! x("iPod") && ! x("iPad") +}, Xb = function () { + Wb() || x("iPad") || x("iPod") +}; +var Yb = function (b) { + Yb[" "](b); + return b +}; +Yb[" "] = Fa; +var $b = function (b) { + var g = Zb; + return Object.prototype.hasOwnProperty.call(g, 9) ? g[9] : g[9] = b(9) +}; +var ac = x("Opera"), bc = x("Trident") || x("MSIE"), cc = x("Edge"), + dc = x("Gecko") && ! (-1 != lb.toLowerCase().indexOf("webkit") && ! x("Edge")) && ! (x("Trident") || x("MSIE")) && ! x("Edge"), + ec = -1 != lb.toLowerCase().indexOf("webkit") && ! x("Edge"); +ec && x("Mobile"); +x("Macintosh"); +x("Windows"); +x("Linux") || x("CrOS"); +var fc = r.navigator || null; +fc && (fc.appVersion || "").indexOf("X11"); +x("Android"); +Wb(); +x("iPad"); +x("iPod"); +Xb(); +lb.toLowerCase().indexOf("kaios"); +var gc; +a:{ + var hc = "", ic = function () { + var b = lb; + if (dc) return /rv:([^\);]+)(\)|;)/.exec(b); + if (cc) return /Edge\/([\d\.]+)/.exec(b); + if (bc) return /\b(?:MSIE|rv)[: ]([^\);]+)(\)|;)/.exec(b); + if (ec) return /WebKit\/(\S+)/.exec(b); + if (ac) return /(?:Version)[ \/]?(\S+)/.exec(b) + }(); + ic && (hc = ic ? ic[1] : ""); + if (bc) { + var jc, kc = r.document; + jc = kc ? kc.documentMode : void 0; + if (null != jc && jc > parseFloat(hc)) { + gc = String(jc); + break a + } + } + gc = hc +} +var lc = gc, Zb = {}, mc = function () { + return $b(function () { + for (var b = 0, g = cb(String(lc)).split("."), m = cb("9").split("."), k = Math.max(g.length, m.length), c = 0; 0 == b && c < k; c++) { + var a = g[c] || "", n = m[c] || ""; + do { + a = /(\d*)(\D*)(.*)/.exec(a) || ["", "", "", ""]; + n = /(\d*)(\D*)(.*)/.exec(n) || ["", "", "", ""]; + if (0 == a[0].length && 0 == n[0].length) break; + b = kb(0 == a[1].length ? 0 : parseInt(a[1], 10), 0 == n[1].length ? 0 : parseInt(n[1], 10)) || kb(0 == a[2].length, 0 == n[2].length) || kb(a[2], n[2]); + a = a[3]; + n = n[3] + } while (0 == b) + } + return 0 <= b + }) +}; +var nc = function () { + if ( ! r.addEventListener || ! Object.defineProperty) return ! 1; + var b = ! 1, g = Object.defineProperty({}, "passive", { + get: function () { + b = ! 0 + } + }); + try { + r.addEventListener("test", Fa, g), r.removeEventListener("test", Fa, g) + } catch (m) { + } + return b +}(); + +function oc(b) { + b && "function" == typeof b.Z6 && b.Z6() +};var pc = function () { + this.Pk = this.Pk; + this.le = this.le +}; +pc.prototype.Pk = ! 1; +pc.prototype.Z6 = function () { + this.Pk || (this.Pk = ! 0, this.Ca()) +}; +var qc = function (b, g) { + b.Pk ? g() : (b.le || (b.le = []), b.le.push(g)) +}; +pc.prototype.Ca = function () { + if (this.le) for (; this.le.length;) this.le.shift()() +}; +var rc = function (b, g) { + this.type = b; + this.currentTarget = this.target = g; + this.defaultPrevented = this.Ca = ! 1 +}; +rc.prototype.stopPropagation = function () { + this.Ca = ! 0 +}; +rc.prototype.preventDefault = function () { + this.defaultPrevented = ! 0 +}; +var tc = function (b, g) { + rc.call(this, b ? b.type : ""); + this.relatedTarget = this.currentTarget = this.target = null; + this.button = this.screenY = this.screenX = this.clientY = this.clientX = 0; + this.key = ""; + this.keyCode = 0; + this.metaKey = this.shiftKey = this.altKey = this.ctrlKey = ! 1; + this.state = null; + this.pointerId = 0; + this.pointerType = ""; + this.ha = null; + if (b) { + var m = this.type = b.type, k = b.changedTouches && b.changedTouches.length ? b.changedTouches[0] : null; + this.target = b.target || b.srcElement; + this.currentTarget = g; + if (g = b.relatedTarget) { + if (dc) { + a:{ + try { + Yb(g.nodeName); + var c = ! 0; + break a + } catch (a) { + } + c = ! 1 + } + c || (g = null) + } + } else "mouseover" == m ? g = b.fromElement : "mouseout" == m && (g = b.toElement); + this.relatedTarget = g; + k ? (this.clientX = void 0 !== k.clientX ? k.clientX : k.pageX, this.clientY = void 0 !== k.clientY ? k.clientY : k.pageY, this.screenX = k.screenX || 0, this.screenY = k.screenY || 0) : (this.clientX = void 0 !== b.clientX ? b.clientX : b.pageX, this.clientY = void 0 !== b.clientY ? b.clientY : b.pageY, this.screenX = b.screenX || 0, this.screenY = b.screenY || 0); + this.button = b.button; + this.keyCode = b.keyCode || 0; + this.key = b.key || + ""; + this.ctrlKey = b.ctrlKey; + this.altKey = b.altKey; + this.shiftKey = b.shiftKey; + this.metaKey = b.metaKey; + this.pointerId = b.pointerId || 0; + this.pointerType = "string" === typeof b.pointerType ? b.pointerType : sc[b.pointerType] || ""; + this.state = b.state; + this.ha = b; + b.defaultPrevented && tc.lS.preventDefault.call(this) + } +}; +Oa(tc, rc); +var sc = {2: "touch", 3: "pen", 4: "mouse"}; +tc.prototype.stopPropagation = function () { + tc.lS.stopPropagation.call(this); + this.ha.stopPropagation ? this.ha.stopPropagation() : this.ha.cancelBubble = ! 0 +}; +tc.prototype.preventDefault = function () { + tc.lS.preventDefault.call(this); + var b = this.ha; + b.preventDefault ? b.preventDefault() : b.returnValue = ! 1 +}; +var uc = "closure_listenable_" + (1E6 * Math.random() | 0); +var vc = 0; +var wc = function (b, g, m, k, c) { + this.listener = b; + this.ha = null; + this.src = g; + this.type = m; + this.capture = !! k; + this.y_ = c; + this.key = ++vc; + this.removed = this.m_ = ! 1 +}, xc = function (b) { + b.removed = ! 0; + b.listener = null; + b.ha = null; + b.src = null; + b.y_ = null +}; +var yc = function (b) { + this.src = b; + this.ha = {}; + this.Ca = 0 +}; +yc.prototype.add = function (b, g, m, k, c) { + var a = b.toString(); + b = this.ha[a]; + b || (b = this.ha[a] = [], this.Ca++); + var n = zc(b, g, k, c); + -1 < n ? (g = b[n], m || (g.m_ = ! 1)) : (g = new wc(g, this.src, a, !! k, c), g.m_ = m, b.push(g)); + return g +}; +var Ac = function (b, g) { + var m = g.type; + m in b.ha && Wa(b.ha[m], g) && (xc(g), 0 == b.ha[m].length && (delete b.ha[m], b.Ca--)) +}, zc = function (b, g, m, k) { + for (var c = 0; c < b.length; ++c) { + var a = b[c]; + if ( ! a.removed && a.listener == g && a.capture == !! m && a.y_ == k) return c + } + return -1 +}; +var Bc = "closure_lm_" + (1E6 * Math.random() | 0), Cc = {}, Dc = 0, Fc = function (b, g, m, k, c) { + if (k && k.once) return Ec(b, g, m, k, c); + if (Array.isArray(g)) { + for (var a = 0; a < g.length; a++) Fc(b, g[a], m, k, c); + return null + } + m = Gc(m); + return b && b[uc] ? Hc(b, g, m, Ia(k) ? !! k.capture : !! k, c) : Ic(b, g, m, ! 1, k, c) +}, Ic = function (b, g, m, k, c, a) { + if ( ! g) throw Error("o"); + var n = Ia(c) ? !! c.capture : !! c, h = Jc(b); + h || (b[Bc] = h = new yc(b)); + m = h.add(g, m, k, n, a); + if (m.ha) return m; + k = Kc(); + m.ha = k; + k.src = b; + k.listener = m; + if (b.addEventListener) nc || (c = n), void 0 === c && (c = ! 1), b.addEventListener(g.toString(), + k, c); else if (b.attachEvent) b.attachEvent(Lc(g.toString()), k); else if (b.addListener && b.removeListener) b.addListener(k); else throw Error("p"); + Dc++; + return m +}, Kc = function () { + var b = Mc, g = function (m) { + return b.call(g.src, g.listener, m) + }; + return g +}, Ec = function (b, g, m, k, c) { + if (Array.isArray(g)) { + for (var a = 0; a < g.length; a++) Ec(b, g[a], m, k, c); + return null + } + m = Gc(m); + return b && b[uc] ? b.kb.add(String(g), m, ! 0, Ia(k) ? !! k.capture : !! k, c) : Ic(b, g, m, ! 0, k, c) +}, Nc = function (b, g, m, k, c) { + if (Array.isArray(g)) for (var a = 0; a < g.length; a++) Nc(b, + g[a], m, k, c); else (k = Ia(k) ? !! k.capture : !! k, m = Gc(m), b && b[uc]) ? (b = b.kb, g = String(g).toString(), g in b.ha && (a = b.ha[g], m = zc(a, m, k, c), -1 < m && (xc(a[m]), Array.prototype.splice.call(a, m, 1), 0 == a.length && (delete b.ha[g], b.Ca--)))) : b && (b = Jc(b)) && (g = b.ha[g.toString()], b = -1, g && (b = zc(g, m, k, c)), (m = -1 < b ? g[b] : null) && Oc(m)) +}, Oc = function (b) { + if ("number" !== typeof b && b && ! b.removed) { + var g = b.src; + if (g && g[uc]) Ac(g.kb, b); else { + var m = b.type, k = b.ha; + g.removeEventListener ? g.removeEventListener(m, k, b.capture) : g.detachEvent ? g.detachEvent(Lc(m), + k) : g.addListener && g.removeListener && g.removeListener(k); + Dc--; + (m = Jc(g)) ? (Ac(m, b), 0 == m.Ca && (m.src = null, g[Bc] = null)) : xc(b) + } + } +}, Lc = function (b) { + return b in Cc ? Cc[b] : Cc[b] = "on" + b +}, Mc = function (b, g) { + if (b.removed) b = ! 0; else { + g = new tc(g, this); + var m = b.listener, k = b.y_ || b.src; + b.m_ && Oc(b); + b = m.call(k, g) + } + return b +}, Jc = function (b) { + b = b[Bc]; + return b instanceof yc ? b : null +}, Pc = "__closure_events_fn_" + (1E9 * Math.random() >>> 0), Gc = function (b) { + if ("function" === typeof b) return b; + b[Pc] || (b[Pc] = function (g) { + return b.handleEvent(g) + }); + return b[Pc] +}; +var Qc = function () { + pc.call(this); + this.kb = new yc(this); + this.Hqa = this; + this.qB = null +}; +Oa(Qc, pc); +Qc.prototype[uc] = ! 0; +Qc.prototype.addEventListener = function (b, g, m, k) { + Fc(this, b, g, m, k) +}; +Qc.prototype.removeEventListener = function (b, g, m, k) { + Nc(this, b, g, m, k) +}; +Qc.prototype.dispatchEvent = function (b) { + var g, m = this.qB; + if (m) for (g = []; m; m = m.qB) g.push(m); + m = this.Hqa; + var k = b.type || b; + if ("string" === typeof b) b = new rc(b, m); else if (b instanceof rc) b.target = b.target || m; else { + var c = b; + b = new rc(k, m); + qb(b, c) + } + c = ! 0; + if (g) for (var a = g.length - 1; ! b.Ca && 0 <= a; a--) { + var n = b.currentTarget = g[a]; + c = Rc(n, k, ! 0, b) && c + } + b.Ca || (n = b.currentTarget = m, c = Rc(n, k, ! 0, b) && c, b.Ca || (c = Rc(n, k, ! 1, b) && c)); + if (g) for (a = 0; ! b.Ca && a < g.length; a++) n = b.currentTarget = g[a], c = Rc(n, k, ! 1, b) && c; + return c +}; +Qc.prototype.Ca = function () { + Qc.lS.Ca.call(this); + if (this.kb) { + var b = this.kb, g = 0, m; + for (m in b.ha) { + for (var k = b.ha[m], c = 0; c < k.length; c++) ++g, xc(k[c]); + delete b.ha[m]; + b.Ca-- + } + } + this.qB = null +}; +var Hc = function (b, g, m, k, c) { + return b.kb.add(String(g), m, ! 1, k, c) +}, Rc = function (b, g, m, k) { + g = b.kb.ha[String(g)]; + if ( ! g) return ! 0; + g = g.concat(); + for (var c = ! 0, a = 0; a < g.length; ++a) { + var n = g[a]; + if (n && ! n.removed && n.capture == m) { + var h = n.listener, d = n.y_ || n.src; + n.m_ && Ac(b.kb, n); + c = ! 1 !== h.call(d, k) && c + } + } + return c && ! k.defaultPrevented +}; +var Sc = function (b) { + try { + return r.JSON.parse(b) + } catch (g) { + } + b = String(b); + if (/^\s*$/.test(b) ? 0 : /^[\],:{}\s\u2028\u2029]*$/.test(b.replace(/\\["\\\/bfnrtu]/g, "@").replace(/(?:"[^"\\\n\r\u2028\u2029\x00-\x08\x0a-\x1f]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?)[\s\u2028\u2029]*(?=:|,|]|}|$)/g, "]").replace(/(?:^|:|,)(?:[\s\u2028\u2029]*\[)+/g, ""))) try { + return eval("(" + b + ")") + } catch (g) { + } + throw Error("q`" + b); +}; +var Tc = function () { +}; +Tc.prototype.ha = null; +Tc.prototype.getOptions = function () { + var b; + (b = this.ha) || (b = {}, Uc(this) && (b[0] = ! 0, b[1] = ! 0), b = this.ha = b); + return b +}; +var Vc, Wc = function () { +}; +Oa(Wc, Tc); +var Xc = function (b) { + return (b = Uc(b)) ? new ActiveXObject(b) : new XMLHttpRequest +}, Uc = function (b) { + if ( ! b.Ca && "undefined" == typeof XMLHttpRequest && "undefined" != typeof ActiveXObject) { + for (var g = ["MSXML2.XMLHTTP.6.0", "MSXML2.XMLHTTP.3.0", "MSXML2.XMLHTTP", "Microsoft.XMLHTTP"], m = 0; m < g.length; m++) { + var k = g[m]; + try { + return new ActiveXObject(k), b.Ca = k + } catch (c) { + } + } + throw Error("r"); + } + return b.Ca +}; +Vc = new Wc; +var Yc = function (b, g) { + this.ha = b[r.Symbol.iterator](); + this.Ca = g; + this.kb = 0 +}; +Yc.prototype[Symbol.iterator] = function () { + return this +}; +Yc.prototype.next = function () { + var b = this.ha.next(); + return {value: b.done ? void 0 : this.Ca.call(void 0, b.value, this.kb++), done: b.done} +}; +var Zc = function (b, g) { + return new Yc(b, g) +}; +var $c = function (b, g, m) { + return b + m * (g - b) +}; +var ad = "StopIteration" in r ? r.StopIteration : {message: "StopIteration", stack: ""}, bd = function () { +}; +bd.prototype.next = function () { + return bd.prototype.ha.call(this) +}; +bd.prototype.ha = function () { + throw ad; +}; +bd.prototype.nT = function () { + return this +}; +var gd = function (b) { + if (b instanceof cd || b instanceof dd || b instanceof ed) return b; + if ("function" == typeof b.next) return new cd(function () { + return fd(b) + }); + if ("function" == typeof b[Symbol.iterator]) return new cd(function () { + return b[Symbol.iterator]() + }); + if ("function" == typeof b.nT) return new cd(function () { + return fd(b.nT()) + }); + throw Error("s"); + }, fd = function (b) { + if ( ! (b instanceof bd)) return b; + var g = ! 1; + return { + next: function () { + for (var m; ! g;) try { + m = b.next(); + break + } catch (k) { + if (k !== ad) throw k; + g = ! 0 + } + return {value: m, done: g} + } + } + }, + cd = function (b) { + this.ha = b + }; +cd.prototype.nT = function () { + return new dd(this.ha()) +}; +cd.prototype[Symbol.iterator] = function () { + return new ed(this.ha()) +}; +cd.prototype.kb = function () { + return new ed(this.ha()) +}; +var dd = function (b) { + this.Ca = b +}; +q(dd, bd); +dd.prototype.ha = function () { + var b = this.Ca.next(); + if (b.done) throw ad; + return b.value +}; +dd.prototype.next = function () { + return dd.prototype.ha.call(this) +}; +dd.prototype[Symbol.iterator] = function () { + return new ed(this.Ca) +}; +dd.prototype.kb = function () { + return new ed(this.Ca) +}; +var ed = function (b) { + cd.call(this, function () { + return b + }); + this.Ca = b +}; +q(ed, cd); +ed.prototype.next = function () { + return this.Ca.next() +}; +var hd = function (b, g) { + this.Ca = {}; + this.ha = []; + this.kb = this.size = 0; + var m = arguments.length; + if (1 < m) { + if (m % 2) throw Error("t"); + for (var k = 0; k < m; k += 2) this.set(arguments[k], arguments[k + 1]) + } else if (b) if (b instanceof hd) for (m = b.uK(), k = 0; k < m.length; k++) this.set(m[k], b.get(m[k])); else for (k in b) this.set(k, b[k]) +}; +l = hd.prototype; +l.BJ = function () { + id(this); + for (var b = [], g = 0; g < this.ha.length; g++) b.push(this.Ca[this.ha[g]]); + return b +}; +l.uK = function () { + id(this); + return this.ha.concat() +}; +l.has = function (b) { + return jd(this.Ca, b) +}; +l.clear = function () { + this.Ca = {}; + this.kb = this.size = this.ha.length = 0 +}; +l.delete = function (b) { + return jd(this.Ca, b) ? (delete this.Ca[b], --this.size, this.kb++, this.ha.length > 2 * this.size && id(this), ! 0) : ! 1 +}; +var id = function (b) { + if (b.size != b.ha.length) { + for (var g = 0, m = 0; g < b.ha.length;) { + var k = b.ha[g]; + jd(b.Ca, k) && (b.ha[m++] = k); + g++ + } + b.ha.length = m + } + if (b.size != b.ha.length) { + var c = {}; + for (m = g = 0; g < b.ha.length;) k = b.ha[g], jd(c, k) || (b.ha[m++] = k, c[k] = 1), g++; + b.ha.length = m + } +}; +l = hd.prototype; +l.get = function (b, g) { + return jd(this.Ca, b) ? this.Ca[b] : g +}; +l.set = function (b, g) { + jd(this.Ca, b) || (this.size += 1, this.ha.push(b), this.kb++); + this.Ca[b] = g +}; +l.forEach = function (b, g) { + for (var m = this.uK(), k = 0; k < m.length; k++) { + var c = m[k], a = this.get(c); + b.call(g, a, c, this) + } +}; +l.clone = function () { + return new hd(this) +}; +l.keys = function () { + return gd(this.nT( ! 0)).kb() +}; +l.values = function () { + return gd(this.nT( ! 1)).kb() +}; +l.entries = function () { + var b = this; + return Zc(this.keys(), function (g) { + return [g, b.get(g)] + }) +}; +l.nT = function (b) { + id(this); + var g = 0, m = this.kb, k = this, c = new bd; + c.ha = function () { + if (m != k.kb) throw Error("u"); + if (g >= k.ha.length) throw ad; + var a = k.ha[g++]; + return b ? a : k.Ca[a] + }; + c.next = c.ha.bind(c); + return c +}; +var jd = function (b, g) { + return Object.prototype.hasOwnProperty.call(b, g) +}; +var kd = function (b) { + if (b.BJ && "function" == typeof b.BJ) return b.BJ(); + if ("undefined" !== typeof Map && b instanceof Map || "undefined" !== typeof Set && b instanceof Set) return Array.from(b.values()); + if ("string" === typeof b) return b.split(""); + if (Ha(b)) { + for (var g = [], m = b.length, k = 0; k < m; k++) g.push(b[k]); + return g + } + g = []; + m = 0; + for (k in b) g[m++] = b[k]; + return g +}, ld = function (b) { + if (b.uK && "function" == typeof b.uK) return b.uK(); + if ( ! b.BJ || "function" != typeof b.BJ) { + if ("undefined" !== typeof Map && b instanceof Map) return Array.from(b.keys()); + if ( ! ("undefined" !== typeof Set && b instanceof Set)) { + if (Ha(b) || "string" === typeof b) { + var g = []; + b = b.length; + for (var m = 0; m < b; m++) g.push(m); + return g + } + g = []; + m = 0; + for (var k in b) g[m++] = k; + return g + } + } +}, md = function (b, g, m) { + if (b.forEach && "function" == typeof b.forEach) b.forEach(g, m); else if (Ha(b) || "string" === typeof b) Array.prototype.forEach.call(b, g, m); else for (var k = ld(b), c = kd(b), a = c.length, n = 0; n < a; n++) g.call(m, c[n], k && k[n], b) +}; +var nd = function (b, g) { + this.kb = b; + this.Bb = g; + this.Ca = 0; + this.ha = null +}; +nd.prototype.get = function () { + if (0 < this.Ca) { + this.Ca--; + var b = this.ha; + this.ha = b.next; + b.next = null + } else b = this.kb(); + return b +}; +var od = function (b, g) { + b.Bb(g); + 100 > b.Ca && (b.Ca++, g.next = b.ha, b.ha = g) +}; +var qd = function (b, g) { + ob(g, function (m, k) { + m && "object" == typeof m && m.MT && (m = m.DT()); + "style" == k ? b.style.cssText = m : "class" == k ? b.className = m : "for" == k ? b.htmlFor = m : pd.hasOwnProperty(k) ? b.setAttribute(pd[k], m) : 0 == k.lastIndexOf("aria-", 0) || 0 == k.lastIndexOf("data-", 0) ? b.setAttribute(k, m) : b[k] = m + }) +}, pd = { + cellpadding: "cellPadding", + cellspacing: "cellSpacing", + colspan: "colSpan", + frameborder: "frameBorder", + height: "height", + maxlength: "maxLength", + nonce: "nonce", + role: "role", + rowspan: "rowSpan", + type: "type", + usemap: "useMap", + valign: "vAlign", + width: "width" +}, rd = function (b, g) { + g = String(g); + "application/xhtml+xml" === b.contentType && (g = g.toLowerCase()); + return b.createElement(g) +}, sd = function (b) { + this.ha = b || r.document || document +}, td = function (b, g) { + return rd(b.ha, g) +}; +var ud, vd = function () { + var b = r.MessageChannel; + "undefined" === typeof b && "undefined" !== typeof window && window.postMessage && window.addEventListener && ! x("Presto") && (b = function () { + var c = rd(document, "IFRAME"); + c.style.display = "none"; + document.documentElement.appendChild(c); + var a = c.contentWindow; + c = a.document; + c.open(); + c.close(); + var n = "callImmediate" + Math.random(), + h = "file:" == a.location.protocol ? "*" : a.location.protocol + "//" + a.location.host; + c = La(function (d) { + if (("*" == h || d.origin == h) && d.data == n) this.port1.onmessage() + }, + this); + a.addEventListener("message", c, ! 1); + this.port1 = {}; + this.port2 = { + postMessage: function () { + a.postMessage(n, h) + } + } + }); + if ("undefined" !== typeof b && ! x("Trident") && ! x("MSIE")) { + var g = new b, m = {}, k = m; + g.port1.onmessage = function () { + if (void 0 !== m.next) { + m = m.next; + var c = m.cb; + m.cb = null; + c() + } + }; + return function (c) { + k.next = {cb: c}; + k = k.next; + g.port2.postMessage(0) + } + } + return function (c) { + r.setTimeout(c, 0) + } +}; + +function wd(b) { + r.setTimeout(function () { + throw b; + }, 0) +};var xd = function () { + this.Ca = this.ha = null +}; +xd.prototype.add = function (b, g) { + var m = yd.get(); + m.set(b, g); + this.Ca ? this.Ca.next = m : this.ha = m; + this.Ca = m +}; +var Ad = function () { + var b = zd, g = null; + b.ha && (g = b.ha, b.ha = b.ha.next, b.ha || (b.Ca = null), g.next = null); + return g +}, yd = new nd(function () { + return new Bd +}, function (b) { + return b.reset() +}), Bd = function () { + this.next = this.ha = this.Ca = null +}; +Bd.prototype.set = function (b, g) { + this.Ca = b; + this.ha = g; + this.next = null +}; +Bd.prototype.reset = function () { + this.next = this.ha = this.Ca = null +}; +var Fd = function (b, g) { + Cd || Dd(); + Ed || (Cd(), Ed = ! 0); + zd.add(b, g) +}, Cd, Dd = function () { + if (r.Promise && r.Promise.resolve) { + var b = r.Promise.resolve(void 0); + Cd = function () { + b.then(Gd) + } + } else Cd = function () { + var g = Gd; + "function" !== typeof r.setImmediate || r.Window && r.Window.prototype && ! x("Edge") && r.Window.prototype.setImmediate == r.setImmediate ? (ud || (ud = vd()), ud(g)) : r.setImmediate(g) + } +}, Ed = ! 1, zd = new xd, Gd = function () { + for (var b; b = Ad();) { + try { + b.Ca.call(b.ha) + } catch (g) { + wd(g) + } + od(yd, b) + } + Ed = ! 1 +}; +var Hd = function (b) { + if ( ! b) return ! 1; + try { + return !! b.$goog_Thenable + } catch (g) { + return ! 1 + } +}; +var Jd = function (b) { + this.ha = 0; + this.le = void 0; + this.Bb = this.Ca = this.kb = null; + this.oc = this.Sc = ! 1; + if (b != Fa) try { + var g = this; + b.call(void 0, function (m) { + Id(g, 2, m) + }, function (m) { + Id(g, 3, m) + }) + } catch (m) { + Id(this, 3, m) + } +}, Kd = function () { + this.next = this.kb = this.Ca = this.Bb = this.ha = null; + this.oc = ! 1 +}; +Kd.prototype.reset = function () { + this.kb = this.Ca = this.Bb = this.ha = null; + this.oc = ! 1 +}; +var Ld = new nd(function () { + return new Kd +}, function (b) { + b.reset() +}), Md = function (b, g, m) { + var k = Ld.get(); + k.Bb = b; + k.Ca = g; + k.kb = m; + return k +}; +Jd.prototype.then = function (b, g, m) { + return Nd(this, "function" === typeof b ? b : null, "function" === typeof g ? g : null, m) +}; +Jd.prototype.$goog_Thenable = ! 0; +Jd.prototype.cancel = function (b) { + if (0 == this.ha) { + var g = new Od(b); + Fd(function () { + Pd(this, g) + }, this) + } +}; +var Pd = function (b, g) { + if (0 == b.ha) if (b.kb) { + var m = b.kb; + if (m.Ca) { + for (var k = 0, c = null, a = null, n = m.Ca; n && (n.oc || (k++, n.ha == b && (c = n), ! (c && 1 < k))); n = n.next) c || (a = n); + c && (0 == m.ha && 1 == k ? Pd(m, g) : (a ? (k = a, k.next == m.Bb && (m.Bb = k), k.next = k.next.next) : Qd(m), Rd(m, c, 3, g))) + } + b.kb = null + } else Id(b, 3, g) +}, Td = function (b, g) { + b.Ca || 2 != b.ha && 3 != b.ha || Sd(b); + b.Bb ? b.Bb.next = g : b.Ca = g; + b.Bb = g +}, Nd = function (b, g, m, k) { + var c = Md(null, null, null); + c.ha = new Jd(function (a, n) { + c.Bb = g ? function (h) { + try { + var d = g.call(k, h); + a(d) + } catch (e) { + n(e) + } + } : a; + c.Ca = m ? function (h) { + try { + var d = + m.call(k, h); + void 0 === d && h instanceof Od ? n(h) : a(d) + } catch (e) { + n(e) + } + } : n + }); + c.ha.kb = b; + Td(b, c); + return c.ha +}; +Jd.prototype.Af = function (b) { + this.ha = 0; + Id(this, 2, b) +}; +Jd.prototype.Pk = function (b) { + this.ha = 0; + Id(this, 3, b) +}; +var Id = function (b, g, m) { + if (0 == b.ha) { + b === m && (g = 3, m = new TypeError("v")); + b.ha = 1; + a:{ + var k = m, c = b.Af, a = b.Pk; + if (k instanceof Jd) { + Td(k, Md(c || Fa, a || null, b)); + var n = ! 0 + } else if (Hd(k)) k.then(c, a, b), n = ! 0; else { + if (Ia(k)) try { + var h = k.then; + if ("function" === typeof h) { + Ud(k, h, c, a, b); + n = ! 0; + break a + } + } catch (d) { + a.call(b, d); + n = ! 0; + break a + } + n = ! 1 + } + } + n || (b.le = m, b.ha = g, b.kb = null, Sd(b), 3 != g || m instanceof Od || Vd(b, m)) + } +}, Ud = function (b, g, m, k, c) { + var a = ! 1, n = function (d) { + a || (a = ! 0, m.call(c, d)) + }, h = function (d) { + a || (a = ! 0, k.call(c, d)) + }; + try { + g.call(b, + n, h) + } catch (d) { + h(d) + } +}, Sd = function (b) { + b.Sc || (b.Sc = ! 0, Fd(b.Xd, b)) +}, Qd = function (b) { + var g = null; + b.Ca && (g = b.Ca, b.Ca = g.next, g.next = null); + b.Ca || (b.Bb = null); + return g +}; +Jd.prototype.Xd = function () { + for (var b; b = Qd(this);) Rd(this, b, this.ha, this.le); + this.Sc = ! 1 +}; +var Rd = function (b, g, m, k) { + if (3 == m && g.Ca && ! g.oc) for (; b && b.oc; b = b.kb) b.oc = ! 1; + if (g.ha) g.ha.kb = null, Wd(g, m, k); else try { + g.oc ? g.Bb.call(g.kb) : Wd(g, m, k) + } catch (c) { + Xd.call(null, c) + } + od(Ld, g) +}, Wd = function (b, g, m) { + 2 == g ? b.Bb.call(b.kb, m) : b.Ca && b.Ca.call(b.kb, m) +}, Vd = function (b, g) { + b.oc = ! 0; + Fd(function () { + b.oc && Xd.call(null, g) + }) +}, Xd = wd, Od = function (b) { + Sa.call(this, b) +}; +Oa(Od, Sa); +Od.prototype.name = "cancel"; +var Yd = function (b, g, m) { + if ("function" === typeof b) m && (b = La(b, m)); else if (b && "function" == typeof b.handleEvent) b = La(b.handleEvent, b); else throw Error("w"); + return 2147483647 < Number(g) ? -1 : r.setTimeout(b, g || 0) +}; +var Zd = /^(?:([^:/?#.]+):)?(?:\/\/(?:([^\\/?#]*)@)?([^\\/?#]*?)(?::([0-9]+))?(?=[\\/?#]|$))?([^?#]+)?(?:\?([^#]*))?(?:#([\s\S]*))?$/, + $d = function (b, g) { + if (b) { + b = b.split("&"); + for (var m = 0; m < b.length; m++) { + var k = b[m].indexOf("="), c = null; + if (0 <= k) { + var a = b[m].substring(0, k); + c = b[m].substring(k + 1) + } else a = b[m]; + g(a, c ? decodeURIComponent(c.replace(/\+/g, " ")) : "") + } + } + }; +var ae = function (b) { + Qc.call(this); + this.headers = new hd; + this.Jk = b || null; + this.Bb = ! 1; + this.Af = this.ha = null; + this.Xw = ""; + this.oc = this.Wt = this.Sc = this.Xs = ! 1; + this.$aa = 0; + this.Xd = null; + this.HQ = ""; + this.bba = this.xqa = ! 1 +}; +Oa(ae, Qc); +var be = /^https?$/i, ce = ["POST", "PUT"], de = [], fe = function (b, g, m, k, c) { + var a = new ae; + de.push(a); + g && Hc(a, "complete", g); + a.kb.add("ready", a.Dsa, ! 0, void 0, void 0); + ee(a, b, m, k, c) +}; +ae.prototype.Dsa = function () { + this.Z6(); + Wa(de, this) +}; +var ee = function (b, g, m, k, c) { + if (b.ha) throw Error("x`" + b.Xw + "`" + g); + m = m ? m.toUpperCase() : "GET"; + b.Xw = g; + b.Xs = ! 1; + b.Bb = ! 0; + b.ha = b.Jk ? Xc(b.Jk) : Xc(Vc); + b.Af = b.Jk ? b.Jk.getOptions() : Vc.getOptions(); + b.ha.onreadystatechange = La(b.uqa, b); + try { + b.Wt = ! 0, b.ha.open(m, String(g), ! 0), b.Wt = ! 1 + } catch (n) { + ge(b); + return + } + g = k || ""; + var a = b.headers.clone(); + c && md(c, function (n, h) { + a.set(h, n) + }); + c = a.uK().find(function (n) { + return "content-type" == n.toLowerCase() + }); + k = r.FormData && g instanceof r.FormData; + ! (0 <= Ua(ce, m)) || c || k || a.set("Content-Type", + "application/x-www-form-urlencoded;charset=utf-8"); + a.forEach(function (n, h) { + this.ha.setRequestHeader(h, n) + }, b); + b.HQ && (b.ha.responseType = b.HQ); + "withCredentials" in b.ha && b.ha.withCredentials !== b.xqa && (b.ha.withCredentials = b.xqa); + try { + he(b), 0 < b.$aa && (b.bba = ie(b.ha), b.bba ? (b.ha.timeout = b.$aa, b.ha.ontimeout = La(b.OY, b)) : b.Xd = Yd(b.OY, b.$aa, b)), b.Sc = ! 0, b.ha.send(g), b.Sc = ! 1 + } catch (n) { + ge(b) + } +}, ie = function (b) { + return bc && mc() && "number" === typeof b.timeout && void 0 !== b.ontimeout +}; +ae.prototype.OY = function () { + "undefined" != typeof Ea && this.ha && (this.dispatchEvent("timeout"), this.abort(8)) +}; +var ge = function (b) { + b.Bb = ! 1; + b.ha && (b.oc = ! 0, b.ha.abort(), b.oc = ! 1); + je(b); + ke(b) +}, je = function (b) { + b.Xs || (b.Xs = ! 0, b.dispatchEvent("complete"), b.dispatchEvent("error")) +}; +ae.prototype.abort = function () { + this.ha && this.Bb && (this.Bb = ! 1, this.oc = ! 0, this.ha.abort(), this.oc = ! 1, this.dispatchEvent("complete"), this.dispatchEvent("abort"), ke(this)) +}; +ae.prototype.Ca = function () { + this.ha && (this.Bb && (this.Bb = ! 1, this.oc = ! 0, this.ha.abort(), this.oc = ! 1), ke(this, ! 0)); + ae.lS.Ca.call(this) +}; +ae.prototype.uqa = function () { + this.Pk || (this.Wt || this.Sc || this.oc ? le(this) : this.oza()) +}; +ae.prototype.oza = function () { + le(this) +}; +var le = function (b) { + if (b.Bb && "undefined" != typeof Ea && ( ! b.Af[1] || 4 != (b.ha ? b.ha.readyState : 0) || 2 != me(b))) if (b.Sc && 4 == (b.ha ? b.ha.readyState : 0)) Yd(b.uqa, 0, b); else if (b.dispatchEvent("readystatechange"), 4 == (b.ha ? b.ha.readyState : 0)) { + b.Bb = ! 1; + try { + ne(b) ? (b.dispatchEvent("complete"), b.dispatchEvent("success")) : je(b) + } finally { + ke(b) + } + } +}, ke = function (b, g) { + if (b.ha) { + he(b); + var m = b.ha, k = b.Af[0] ? Fa : null; + b.ha = null; + b.Af = null; + g || b.dispatchEvent("ready"); + try { + m.onreadystatechange = k + } catch (c) { + } + } +}, he = function (b) { + b.ha && b.bba && + (b.ha.ontimeout = null); + b.Xd && (r.clearTimeout(b.Xd), b.Xd = null) +}, ne = function (b) { + var g = me(b); + a:switch (g) { + case 200: + case 201: + case 202: + case 204: + case 206: + case 304: + case 1223: + var m = ! 0; + break a; + default: + m = ! 1 + } + if ( ! m) { + if (g = 0 === g) b = String(b.Xw).match(Zd)[1] || null, ! b && r.self && r.self.location && (b = r.self.location.protocol, b = b.substr(0, b.length - 1)), g = ! be.test(b ? b.toLowerCase() : ""); + m = g + } + return m +}, me = function (b) { + try { + return 2 < (b.ha ? b.ha.readyState : 0) ? b.ha.status : -1 + } catch (g) { + return -1 + } +}; +var oe = function (b, g) { + this.Sc = b; + this.oc = g; + this.ha = null; + this.Pk = []; + this.kb = null; + this.Xd = this.Bb = this.le = ! 1; + this.Af = []; + this.Ca = null +}, te = function (b, g) { + if (pe && ! b.ha) { + b.ha = new (window.AudioContext || window.webkitAudioContext); + b.kb = b.ha.createGain(); + b.kb.connect(b.ha.destination); + for (var m in b.Sc) b.Sc[m].Sc = b.ha; + for (var k in b.oc) qe(b.oc[k], b.ha, b.kb); + b.ha.onstatechange = function () { + re(b) + }; + re(b); + se(b); + Ec(g, ["click", "pointerup", "mouseup", "touchend"], function () { + b.ha.resume(); + se(b) + }, ! 0) + } +}, re = function (b) { + if ("running" == + b.ha.state && ! b.Xd) { + b.Xd = ! 0; + for (var g = 0; g < b.Af.length; g++) b.Af[g]() + } +}, ue = function (b) { + b.Ca = b.ha.createBufferSource(); + var g = b.ha.createBuffer(1, 1, 22050); + b.Ca.buffer = g; + b.Ca.connect(b.ha.destination); + b.Ca.start(0); + b = p(b.Pk); + for (g = b.next(); ! g.done; g = b.next()) g = g.value, g() +}, se = function (b) { + b.ha && (null == b.Ca ? ue(b) : void 0 === b.Ca.playbackState ? ue(b) : b.Ca.playbackState !== b.Ca.PLAYING_STATE && b.Ca.playbackState !== b.Ca.FINISHED_STATE && ue(b)) +}; +oe.prototype.destroy = function () { + this.ha.close(); + this.ha = null +}; +oe.prototype.reset = function () { + for (var b in this.Sc) this.Sc[b].kb = []; + for (var g in this.oc) this.oc[g].stop() +}; +var we = function () { + var b = ve; + b.kb && b.kb.gain.setValueAtTime(0, b.ha.currentTime); + b.le = ! 0 +}, xe = function () { + var b = ve; + b.kb && b.kb.gain.setValueAtTime(1, b.ha.currentTime); + b.le = ! 1 +}, ye = function (b) { + Promise.resolve(); + b.Bb && b.ha.resume(); + b.Bb = ! 1 +}; +oe.prototype.isMuted = function () { + return this.le && !! this.kb && 0 == this.kb.gain.value +}; +var pe = ! ( ! window.AudioContext && ! window.webkitAudioContext) && !! window.GainNode, y = function (b, g, m, k) { + this.le = b; + this.Xd = g; + this.Sc = m; + this.Af = k; + this.Ca = {}; + this.Bb = this.oc = this.ha = this.kb = null; + this.Pk = 0 +}; +y.prototype.clone = function () { + var b = new y(this.le, this.Xd, this.Sc, this.Af); + qe(b, this.ha, this.oc); + return b +}; +var qe = function (b, g, m) { + b.ha = g; + b.oc = m +}, ze = function (b) { + if (b.ha) for (var g in b.Ca) { + var m = b.Ca[g]; + ! m.cqa && 1E3 * b.ha.currentTime > m.Gaa + b.Sc && delete b.Ca[g] + } +}, Ae = function (b) { + ! b.kb && b.ha.createGain && (b.kb = b.ha.createGain()) +}; +y.prototype.play = function (b, g, m, k, c, a) { + b = void 0 === b ? 0 : b; + g = void 0 === g ? ! 1 : g; + m = void 0 === m ? 0 : m; + c = void 0 === c ? ! 1 : c; + if ( ! this.ha || ! this.oc) return -1; + ze(this); + a = void 0 === a ? this.ha.currentTime + b / 1E3 : a; + k || (k = this.ha.createBufferSource(), k.playbackRate.setValueAtTime(1, this.ha.currentTime)); + Ae(this); + this.Bb && k.connect(this.Bb); + this.kb ? (this.Bb ? this.Bb.connect(this.kb) : k.connect(this.kb), this.kb.connect(this.oc)) : this.Bb ? this.Bb.connect(this.oc) : k.connect(this.oc); + this.Bb = null; + k.loop = g; + try { + k.buffer = this.le.le + } catch (h) { + return -1 + } + b = + this.Xd / 1E3; + var n = this.Sc / 1E3 / k.playbackRate.value; + g ? (k.loopStart = b + (c ? m / 1E3 : 0), k.loopEnd = b + n, k.start(a, b + m / 1E3)) : k.start(a, b + m / 1E3, n); + c = this.Pk++; + this.Ca[c] = {node: k, Gaa: 1E3 * a - m, cqa: g}; + return c +}; +var Be = function (b) { + for (var g in b.Ca) { + var m = b.Ca[g]; + if (m && (m.cqa || ! (1E3 * b.ha.currentTime > m.Gaa + b.Sc))) return ! 0 + } + return ! 1 +}; +y.prototype.stop = function (b) { + ze(this); + if (void 0 !== b) { + if (this.Ca[b]) { + try { + this.Ca[b].node.stop(0) + } catch (m) { + } + var g = (1E3 * this.ha.currentTime - this.Ca[b].Gaa) % this.Sc; + delete this.Ca[b]; + return [g] + } + return [] + } + b = []; + for (g in this.Ca) b = b.concat(this.stop(g)); + return b +}; +var Ce = document.createElement("audio"), + De = "function" === typeof Ce.canPlayType && "" != Ce.canPlayType("audio/mpeg") ? ".mp3" : ".ogg", + Ee = function (b, g) { + Qa.call(this, b + g + De); + this.Sc = this.le = null; + this.ha = 0 + }; +q(Ee, Qa); +Ee.prototype.Bb = function () { + var b = this, g = new Promise(function (k) { + b.Ca ? k() : b.kb.push(k) + }); + if (0 != this.ha) return Promise.resolve(); + //if (!this.Sc) return Promise.reject("Must call Audio.init before preloading audio."); + if (!this.Sc) return Promise.resolve(); + var m = new XMLHttpRequest; + m.open("GET", this.oc, ! 0); + m.responseType = "arraybuffer"; + m.onload = function () { + b.Sc.decodeAudioData(m.response, function (k) { + k && (b.le = k, b.ha = 3, Ra(b)) + }); + b.ha = 2 + }; + m.send(); + this.ha = 1; + return g +}; +var Fe = function () { + oe.call(this, z, A) +}; +q(Fe, oe); +var z = {}; +z.RU = new Ee(window.root, "archery"); +z.BS = new Ee(window.root, "climbing"); +z.bK = new Ee(window.root, "marathon"); +z.nX = new Ee(window.root, "overworld"); +z.vJ = new Ee(window.root, "pingpong"); +z.cL = new Ee(window.root, "rugby"); +z.iN = new Ee(window.root, "skate"); +z.c1 = new Ee(window.root, "ballad"); +z.K1 = new Ee(window.root, "disco"); +z.j5 = new Ee(window.root, "rock"); +z.xJ = new Ee(window.root, "shared"); +var A = {}; +A.yqa = new y(z.RU, 0, 666.6669921875, 0); +A.zqa = new y(z.RU, 1666.6669921875, 187.5, 0); +A.Aqa = new y(z.RU, 2854.1669921875, 187.5, 0); +A.dba = new y(z.RU, 5541.6669921875, 19200.021484375, 0); +A.Bqa = new y(z.RU, 4041.6669921875, 500, 0); +A.c1 = new y(z.c1, 0, 55272.73046875, 0); +A.d1 = new y(z.xJ, 0, 625, 0); +A.Asa = new y(z.xJ, 1625, 1125, 0); +A.kza = new y(z.BS, 0, 500, 0); +A.jda = new y(z.BS, 1500, 500, 0); +A.lza = new y(z.BS, 3E3, 500, 0); +A.mza = new y(z.BS, 4500, 500, 0); +A.nza = new y(z.BS, 6E3, 250, 0); +A.kda = new y(z.BS, 7250, 19692.33203125, 0); +A.bCa = new y(z.xJ, 11E3, 83.33300018310547, 0); +A.K1 = new y(z.K1, 0, 62365.0625, 0); +A.A2 = new y(z.xJ, 12083.3330078125, 83.33300018310547, 0); +A.zfa = new y(z.nX, 4E3, 13500, 0); +A.idb = new y(z.bK, 0, 125, 0); +A.zOa = new y(z.bK, 2250, 125, 0); +A.AOa = new y(z.bK, 3375, 125, 0); +A.BOa = new y(z.bK, 1125, 125, 0); +A.COa = new y(z.bK, 4500, 500, 0); +A.DOa = new y(z.bK, 6E3, 125, 0); +A.jdb = new y(z.bK, 7125, 250, 0); +A.EOa = new y(z.bK, 8375, 187.5, 0); +A.Cia = new y(z.bK, 9562.5, 18285.70703125, 0); +A.Dia = new y(z.xJ, 13166.6669921875, 83.33300018310547, 0); +A.H3 = new y(z.xJ, 3750, 250, 0); +A.FOa = new y(z.xJ, 5E3, 250, 0); +A.GOa = new y(z.xJ, 6250, 250, 0); +A.kdb = new y(z.nX, 0, 1500, 0); +A.uja = new y(z.nX, 2500, 500, 0); +A.vja = new y(z.nX, 18500, 36324.33203125, 0); +A.bWa = new y(z.vJ, 6511.5830078125, 105.29199981689453, 0); +A.cWa = new y(z.vJ, 0, 96.91699981689453, 0); +A.mdb = new y(z.vJ, 1096.9169921875, 96.91699981689453, 0); +A.dWa = new y(z.vJ, 2193.8330078125, 133.375, 0); +A.eWa = new y(z.vJ, 7616.875, 126.39600372314453, 0); +A.fWa = new y(z.vJ, 8743.271484375, 180.22900390625, 0); +A.Sja = new y(z.vJ, 9923.5, 21942.853515625, 0); +A.ndb = new y(z.vJ, 3261.5830078125, 2250, 0); +A.gWa = new y(z.vJ, 32866.35546875, 3518.2919921875, 0); +A.hWa = new y(z.vJ, 37384.64453125, 1544.10400390625, 0); +A.pdb = new y(z.xJ, 7500, 500, 0); +A.$Za = new y(z.xJ, 9E3, 1E3, 0); +A.j5 = new y(z.j5, 0, 57333.33203125, 0); +A.qdb = new y(z.nX, 55824.33203125, 500, 0); +A.a_a = new y(z.cL, 0, 500, 0); +A.b_a = new y(z.cL, 1500, 1500, 0); +A.rdb = new y(z.cL, 4E3, 250, 0); +A.sdb = new y(z.cL, 5250, 2E3, 0); +A.c_a = new y(z.cL, 8250, 500, 0); +A.Rka = new y(z.cL, 12750, 22325.58203125, 0); +A.d_a = new y(z.cL, 9750, 500, 0); +A.e_a = new y(z.cL, 11250, 500, 0); +A.r1a = new y(z.iN, 0, 250, 0); +A.F5 = new y(z.iN, 1250, 500, 0); +A.s1a = new y(z.iN, 2750, 250, 0); +A.Kla = new y(z.iN, 8875.9580078125, 20210.521484375, 0); +A.t1a = new y(z.iN, 4E3, 750, 0); +A.tdb = new y(z.iN, 5750, 500, 0); +A.u1a = new y(z.iN, 7250, 625.9580078125, 0); +Ga(Fe); +var Ge = "en ja af am ar az be bg bn bs ca cs da de el en-GB es es-419 et eu fa fi fil fr fr-ca gl gu hi hr hu hy id is it iw ka kk km kn ko ky lo lt lv mk ml mn mr ms my ne nl no pa pl pt-BR pt-PT ro ru si sk sl sq sr sv sw ta te th tr uk ur uz vi zh-CN zh-HK zh-TW zu".split(" "); +var Je = function (b) { + var g = new Image; + g.onerror = g.onload = g.onabort = function () { + delete He[Ie] + }; + He[Ie] = g; + g.src = "/gen_204?atyp=i&ct=doodle&cad=" + b + "&zx=" + Date.now(); + Ie++ +}, He = [], Ie = 0; +var Ke = function (b, g) { + this.kb = this.le = this.Bb = ""; + this.Xd = null; + this.Sc = this.Ca = ""; + this.oc = ! 1; + var m; + b instanceof Ke ? (this.oc = void 0 !== g ? g : b.oc, Le(this, b.Bb), this.le = b.le, this.kb = b.kb, Me(this, b.Xd), this.Ca = b.Ca, Ne(this, b.ha.clone()), this.Sc = b.Sc) : b && (m = String(b).match(Zd)) ? (this.oc = !! g, Le(this, m[1] || "", ! 0), this.le = Oe(m[2] || ""), this.kb = Oe(m[3] || "", ! 0), Me(this, m[4]), this.Ca = Oe(m[5] || "", ! 0), Ne(this, m[6] || "", ! 0), this.Sc = Oe(m[7] || "")) : (this.oc = !! g, this.ha = new Pe(null, this.oc)) +}; +Ke.prototype.toString = function () { + var b = [], g = this.Bb; + g && b.push(Qe(g, Re, ! 0), ":"); + var m = this.kb; + if (m || "file" == g) b.push("//"), (g = this.le) && b.push(Qe(g, Re, ! 0), "@"), b.push(encodeURIComponent(String(m)).replace(/%25([0-9a-fA-F]{2})/g, "%$1")), m = this.Xd, null != m && b.push(":", String(m)); + if (m = this.Ca) this.kb && "/" != m.charAt(0) && b.push("/"), b.push(Qe(m, "/" == m.charAt(0) ? Se : Te, ! 0)); + (m = this.ha.toString()) && b.push("?", m); + (m = this.Sc) && b.push("#", Qe(m, Ue)); + return b.join("") +}; +Ke.prototype.resolve = function (b) { + var g = this.clone(), m = !! b.Bb; + m ? Le(g, b.Bb) : m = !! b.le; + m ? g.le = b.le : m = !! b.kb; + m ? g.kb = b.kb : m = null != b.Xd; + var k = b.Ca; + if (m) Me(g, b.Xd); else if (m = !! b.Ca) { + if ("/" != k.charAt(0)) if (this.kb && ! this.Ca) k = "/" + k; else { + var c = g.Ca.lastIndexOf("/"); + -1 != c && (k = g.Ca.substr(0, c + 1) + k) + } + c = k; + if (".." == c || "." == c) k = ""; else if (-1 != c.indexOf("./") || -1 != c.indexOf("/.")) { + k = 0 == c.lastIndexOf("/", 0); + c = c.split("/"); + for (var a = [], n = 0; n < c.length;) { + var h = c[n++]; + "." == h ? k && n == c.length && a.push("") : ".." == h ? ((1 < a.length || + 1 == a.length && "" != a[0]) && a.pop(), k && n == c.length && a.push("")) : (a.push(h), k = ! 0) + } + k = a.join("/") + } else k = c + } + m ? g.Ca = k : m = "" !== b.ha.toString(); + m ? Ne(g, b.ha.clone()) : m = !! b.Sc; + m && (g.Sc = b.Sc); + return g +}; +Ke.prototype.clone = function () { + return new Ke(this) +}; +var Le = function (b, g, m) { + b.Bb = m ? Oe(g, ! 0) : g; + b.Bb && (b.Bb = b.Bb.replace(/:$/, "")) +}, Me = function (b, g) { + if (g) { + g = Number(g); + if (isNaN(g) || 0 > g) throw Error("y`" + g); + b.Xd = g + } else b.Xd = null +}, Ne = function (b, g, m) { + g instanceof Pe ? (b.ha = g, Ve(b.ha, b.oc)) : (m || (g = Qe(g, We)), b.ha = new Pe(g, b.oc)) +}, Xe = function (b) { + var g = window.location; + return (g instanceof Ke ? g.clone() : new Ke(g, void 0)).ha.get(b) +}, Oe = function (b, g) { + return b ? g ? decodeURI(b.replace(/%25/g, "%2525")) : decodeURIComponent(b) : "" +}, Qe = function (b, g, m) { + return "string" === typeof b ? + (b = encodeURI(b).replace(g, Ye), m && (b = b.replace(/%25([0-9a-fA-F]{2})/g, "%$1")), b) : null +}, Ye = function (b) { + b = b.charCodeAt(0); + return "%" + (b >> 4 & 15).toString(16) + (b & 15).toString(16) +}, Re = /[#\/\?@]/g, Te = /[#\?:]/g, Se = /[#\?]/g, We = /[#\?@]/g, Ue = /#/g, Pe = function (b, g) { + this.Ca = this.ha = null; + this.kb = b || null; + this.Bb = !! g +}, Ze = function (b) { + b.ha || (b.ha = new hd, b.Ca = 0, b.kb && $d(b.kb, function (g, m) { + b.add(decodeURIComponent(g.replace(/\+/g, " ")), m) + })) +}; +Pe.prototype.add = function (b, g) { + Ze(this); + this.kb = null; + b = $e(this, b); + var m = this.ha.get(b); + m || this.ha.set(b, m = []); + m.push(g); + this.Ca += 1; + return this +}; +var af = function (b, g) { + Ze(b); + g = $e(b, g); + b.ha.has(g) && (b.kb = null, b.Ca -= b.ha.get(g).length, b.ha.delete(g)) +}; +Pe.prototype.clear = function () { + this.ha = this.kb = null; + this.Ca = 0 +}; +var bf = function (b, g) { + Ze(b); + g = $e(b, g); + return b.ha.has(g) +}; +l = Pe.prototype; +l.forEach = function (b, g) { + Ze(this); + this.ha.forEach(function (m, k) { + m.forEach(function (c) { + b.call(g, c, k, this) + }, this) + }, this) +}; +l.uK = function () { + Ze(this); + for (var b = this.ha.BJ(), g = this.ha.uK(), m = [], k = 0; k < g.length; k++) for (var c = b[k], a = 0; a < c.length; a++) m.push(g[k]); + return m +}; +l.BJ = function (b) { + Ze(this); + var g = []; + if ("string" === typeof b) bf(this, b) && (g = g.concat(this.ha.get($e(this, b)))); else { + b = this.ha.BJ(); + for (var m = 0; m < b.length; m++) g = g.concat(b[m]) + } + return g +}; +l.set = function (b, g) { + Ze(this); + this.kb = null; + b = $e(this, b); + bf(this, b) && (this.Ca -= this.ha.get(b).length); + this.ha.set(b, [g]); + this.Ca += 1; + return this +}; +l.get = function (b, g) { + if ( ! b) return g; + b = this.BJ(b); + return 0 < b.length ? String(b[0]) : g +}; +l.toString = function () { + if (this.kb) return this.kb; + if ( ! this.ha) return ""; + for (var b = [], g = this.ha.uK(), m = 0; m < g.length; m++) { + var k = g[m], c = encodeURIComponent(String(k)); + k = this.BJ(k); + for (var a = 0; a < k.length; a++) { + var n = c; + "" !== k[a] && (n += "=" + encodeURIComponent(String(k[a]))); + b.push(n) + } + } + return this.kb = b.join("&") +}; +l.clone = function () { + var b = new Pe; + b.kb = this.kb; + this.ha && (b.ha = this.ha.clone(), b.Ca = this.Ca); + return b +}; +var $e = function (b, g) { + g = String(g); + b.Bb && (g = g.toLowerCase()); + return g +}, Ve = function (b, g) { + g && ! b.Bb && (Ze(b), b.kb = null, b.ha.forEach(function (m, k) { + var c = k.toLowerCase(); + if (k != c && (af(this, k), af(this, c), 0 < m.length)) { + this.kb = null; + k = this.ha; + var a = k.set; + c = $e(this, c); + var n = m.length; + if (0 < n) { + for (var h = Array(n), d = 0; d < n; d++) h[d] = m[d]; + n = h + } else n = []; + a.call(k, c, n); + this.Ca += m.length + } + }, b)); + b.Bb = g +}; +Pe.prototype.extend = function (b) { + for (var g = 0; g < arguments.length; g++) md(arguments[g], function (m, k) { + this.add(k, m) + }, this) +}; +var cf = navigator.userAgent, df = new Ke(location.href), ef = "sdoodles" === document.documentElement.id, + ff = function () { + return "MacIntel" === navigator.platform && 1 < navigator.maxTouchPoints + }, gf = function () { + return cf.includes("iPad") || cf.includes("iPhone") || cf.includes("iPod") || ff() + }, hf = function () { + return cf.toLowerCase().includes("gsa") || cf.includes("GoogleApp") + }, jf = function () { + return hf() && gf() + }, kf = function () { + return gf() || cf.includes("Android") || cf.includes("Mobile") || cf.includes("Silk") || cf.includes("UCBrowser") || + cf.includes("UCWEB") + }; +cf.includes("GT-I9300") && cf.includes("Chrome"); +/* Gameblabla - Fullscreen hack */ +/* Change it to 0 for windowed mode */ +var lf = function () { + return true // df.Ca.includes("/logos/") && df.Ca.includes(".html") +}, nf = function () { + return !! document.getElementById("fkbx") || mf() +}, mf = function () { + var b = df.ha.get("ntp"); + return "1" === b || "2" === b +}, of = function () { + return "1" === df.ha.get("fpdoodle") && !! document.getElementById("fpdoodle") +}, pf = function () { + return !! document.querySelector("body#iframedoodle") +}, qf = function () { + return ! kf() && ! ef && ! nf() && ! of() && ! lf() +}, rf = ff() && ! ef && ! nf() && ! of() && ! lf(); +var sf = {}; +var tf = function () { +}, uf = function (b, g) { + if (g !== sf) throw Error("A"); + this.ha = b +}; +q(uf, tf); +uf.prototype.toString = function () { + return this.ha +}; +var vf = new uf("about:invalid#zTSz", sf); + +function wf(b) { + if (b instanceof tf) if (b instanceof uf) b = b.ha; else throw Error("B"); else b = Kb(b); + return b +};var xf = function (b) { + this.qbb = b +}; + +function yf(b) { + return new xf(function (g) { + return g.substr(0, b.length + 1).toLowerCase() === b + ":" + }) +} + +var zf = [yf("data"), yf("http"), yf("https"), yf("mailto"), yf("ftp"), new xf(function (b) { + return /^[^:]*([/?#]|$)/.test(b) +})]; +var Af = function (b, g) { + for (var m = [], k = 1; k < arguments.length; ++k) m[k - 1] = arguments[k]; + if (b) for (k = 0; k < m.length; k += 2) { + var c = m[k], a = m[k + 1], n = b.style; + n && c in n ? n[c] = a : c in b && (b[c] = a) + } + }, Bf = Date.now, Cf = function () { + return self.performance.now() + }, Df = ["Moz", "ms", "O", "webkit"], Ef = function (b, g, m) { + if (b) { + for (var k = p(Df), c = k.next(); ! c.done; c = k.next()) b.style[c.value + g] = m; + b.style[g.charAt(0).toLowerCase() + g.substr(1)] = m + } + }, Ff = ["", "moz", "ms", "o", "webkit"], Gf = function (b, g) { + if ( ! b) return null; + for (var m = p(Ff), k = m.next(); ! k.done; k = + m.next()) { + k = k.value; + var c = g; + 0 < k.length && (c = g.charAt(0).toUpperCase() + g.substr(1)); + k += c; + if ("undefined" != typeof b[k]) return k + } + return null + }, Hf = function (b, g) { + if (g = (g = g && ! jf()) || mf()) Vb(b); else { + g = window.top.location; + var m = void 0 === m ? zf : m; + a:{ + m = void 0 === m ? zf : m; + for (var k = 0; k < m.length; ++k) { + var c = m[k]; + if (c instanceof xf && c.qbb(b)) { + b = new uf(b, sf); + break a + } + } + b = void 0 + } + g.assign(wf(b || vf)) + } + }, If = function () { + return window.google && void 0 !== window.google.doodle ? window.google.doodle : null + }, Jf = function (b, g) { + var m = If(); + return m && + void 0 != m[b] ? m[b] : g + }, Kf = function (b) { + If() || (window.google.doodle = {}); + window.google.doodle.pvc = b + }, Lf = function (b, g) { + b = Jf("doodle_args", {})[b]; + return null != b ? b : g + }, Mf = function () { + return !! Lf("is_dogfood", ! 1) + }, Nf = Jf("alt", ""), Of = Jf("hl", "en"), Pf = Jf("gl", ""), + Qf = /^(ar|ckb|dv|he|iw|fa|nqo|ps|sd|ug|ur|yi|.*[-_](Adlm|Arab|Hebr|Nkoo|Rohg|Thaa))(?!.*[-_](Latn|Cyrl)($|-|_))($|-|_)/i.test(Of), + Sf = function (b, g, m) { + var k = Math.max(0, m - 230) + (document.querySelector("div.og-pdp") ? 36 : 12); + Af(b, "width", g + "px", "height", m + "px"); + Rf(k) + }, Rf = function (b) { + b += "px"; + var g = document.getElementById("lga"); + g && Af(g, "marginBottom", b); + nf() || ((g = document.getElementById("searchform")) && Af(g, "transform", "translateY(" + b + ")"), b = new UIEvent("resize", { + bubbles: ! 1, + udb: ! 1, + view: window, + detail: 0 + }), window.dispatchEvent(b)) + }, Tf = null, Uf = null, Vf = null, Wf = function () { + Vf || (window.google && window.google.kEI && window.google.kEI.length ? Vf = window.google.kEI : pf() && bf(df.ha, "ei") && (Vf = df.ha.get("ei"))); + return Vf + }, Xf = function () { + if ( ! Tf) { + var b = document.getElementById("hplogoved"); + b ? Tf = b.getAttribute("data-ved") : pf() && bf(df.ha, "ved") && (Tf = df.ha.get("ved")) + } + return Tf + }, Zf = function () { + var b = Yf, g = new Ke("/"); + g.ha.set("fpdoodle", "1"); + g.ha.set("doodle", String(b)); + Of && g.ha.set("hl", Of); + Pf && g.ha.set("gl", Pf); + Hf(g.toString(), ! 1) + }; +var Yf = Jf("id", "144867217"), Gb = new xb(vb, window.root+"kitsune_compiled_deferred_module.js"), + $f = 1 / 30, ag = 1E3 * $f, bg = new createjs.Rectangle(0, 0, 960, 540), cg = ["PixelMplus10"], + dg = void 0 != Xe("debug"), eg = [{TeamId: 0, GlobalScore: 32940, RecordCount: 590}, { + TeamId: 1, + GlobalScore: 30938, + RecordCount: 510 + }, {TeamId: 2, GlobalScore: 36028, RecordCount: 650}, {TeamId: 3, GlobalScore: 31865, RecordCount: 550}], + fg = "archery climbing marathon pingpong rugby skate swim".split(" "), + gg = new Map([["archery", 0], ["climbing", 1], ["marathon", + 2], ["pingpong", 3], ["rugby", 4], ["skate", 5], ["swim", 6]]), + hg = new Map([["blue", 0], ["red", 1], ["green", 2], ["yellow", 3]]), ig = ["blue", "red", "green", "yellow"]; +var jg = function (b, g) { + this.x = b; + this.y = g +}; +jg.prototype.add = function (b) { + return B(this.x + b.x, this.y + b.y) +}; +jg.prototype.sub = function (b) { + return B(this.x - b.x, this.y - b.y) +}; +var kg = function (b, g) { + return B(b.x * g, b.y * g) +}, C = function (b) { + return Math.sqrt(b.x * b.x + b.y * b.y) +}, lg = function (b, g) { + return 0 == C(b) || 0 == g ? B(0, 0) : kg(b, g / C(b)) +}; +jg.prototype.toJSON = function () { + return {x: this.x, y: this.y} +}; +jg.prototype.toString = function () { + return "vec2(x: " + this.x + ", y: " + this.y + ")" +}; +var B = function (b, g) { + return "number" === typeof b && "number" === typeof g ? new jg(b, g) : new jg(b.x, b.y) +}; +var mg = {}, ng = function (b, g, m) { + return g && b in g ? g[b] : m +}, D = function (b) { + b = void 0 === b ? {} : b; + this.IC = ng("findable", b, ! 0) +}, G = function (b, g) { + if (b in mg) throw Error("C`" + b); + mg[b] = g +}; +var og = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.RL = []; + this.type = b.type || "normal"; + this.Bx = b.team || "none" +}; +q(og, D); +G("arrow", og); +var pg = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.tick = 1799; + this.jC = this.bB = this.zx = 0 +}; +q(pg, D); +G("archeryGame", pg); +var qg = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.Pw = this.zN = 0; + this.u_ = "normal"; + this.ut = 0 +}; +q(qg, D); +G("archeryPlayer", qg); +var rg = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.ut = this.Caa = this.Pw = this.zN = 0 +}; +q(rg, D); +G("archeryChampion", rg); +var sg = function () { + D.apply(this, arguments) +}; +q(sg, D); +G("archeryHud", sg); +var tg = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.type = b.type; + this.left = ! 1 +}; +q(tg, D); +G("archeryTarget", tg); +var ug = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.altitude = this.v_ = this.PL = NaN; + this.acb = 16 +}; +q(ug, D); +G("altitudeMeter", ug); +var vg = function () { + D.apply(this, arguments) +}; +q(vg, D); +G("groundBounds", vg); +var wg = function () { + D.apply(this, arguments) +}; +q(wg, D); +G("goalBounds", wg); +var xg = function () { + D.apply(this, arguments) +}; +q(xg, D); +G("obstacleBounds", xg); +var yg = function () { + D.apply(this, arguments) +}; +q(yg, D); +G("climbingHold", yg); +var zg = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.speed = b.speed || 1; + this.sab = b.directionNormal || B(1, 0); + this.distance = b.distance || 100; + this.jS = null; + this.hJ = 0 +}; +q(zg, D); +G("movingClimbingHold", zg); +var Ag = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.speed = b.speed || .5; + this.gab = b.clockwise || ! 1; + this.radius = b.radius || 25; + this.start = b.start || 0; + this.jS = null; + this.hJ = 0 +}; +q(Ag, D); +G("circlingClimbingHold", Ag); +var Bg = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.PL = NaN; + this.$T = ! 1; + this.CT = 0; + this.Kab = 60; + this.W_ = 0; + this.mcb = 120 +}; +q(Bg, D); +G("fallingClimbingHold", Bg); +var Cg = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.Jab = 50; + this.mY = ! 1; + this.delay = 0; + this.Rpa = 1 +}; +q(Cg, D); +G("checkpoint", Cg); +var Dg = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.mode = "ground"; + this.Y6 = ! 1; + this.zY = 0; + this.zaa = ! 1; + this.d7 = 0; + this.kC = this.DY = null; + this.EL = Number.MAX_SAFE_INTEGER; + this.D_ = null; + this.b7 = 0 +}; +q(Dg, D); +G("climber", Dg); +var Eg = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.state = 0 +}; +q(Eg, D); +G("climbingCamera", Eg); +var Fg = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.KY = b.seconds || 0 +}; +q(Fg, D); +G("clock", Fg); +var Gg = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.Vpa = b.factor || B(0, 0); + this.yY = ! 1; + this.Daa = B(0, 0); + this.Hpa = B(0, 0) +}; +q(Gg, D); +G("parallax", Gg); +var Hg = function () { + D.apply(this, arguments) +}; +q(Hg, D); +G("dialog", Hg); +var Ig = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.next = null +}; +q(Ig, D); +G("dialogOption", Ig); +var Jg = function () { + D.apply(this, arguments) +}; +q(Jg, D); +G("dialogNext", Jg); +var Kg = function () { + D.apply(this, arguments) +}; +q(Kg, D); +G("dialogAvatar", Kg); +var Lg = function () { + D.apply(this, arguments) +}; +q(Lg, D); +G("joystick", Lg); +var Mg = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.fcb = b.positionMultiplier || 0 +}; +q(Mg, D); +G("joystickControl", Mg); +var Ng = function () { + D.apply(this, arguments) +}; +q(Ng, D); +G("actionButton", Ng); +var Og = function () { + D.apply(this, arguments) +}; +q(Og, D); +G("pauseButton", Og); +var Pg = function () { + D.apply(this, arguments) +}; +q(Pg, D); +G("overworldButton", Pg); +var Qg = function () { + D.apply(this, arguments) +}; +q(Qg, D); +G("closeButton", Qg); +var Rg = function (b) { + switch (b) { + case "n": + return "s"; + case "s": + return "n"; + case "e": + return "w"; + case "w": + return "e"; + case "nw": + return "se"; + case "sw": + return "ne"; + case "ne": + return "sw"; + case "se": + return "ne" + } + return null +}; +var Sg = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.Q_ = ! 0; + this.eqa = this.vK = this.KQ = this.U_ = 0 +}; +q(Sg, D); +G("marathonPlayer", Sg); +var Tg = function () { + D.apply(this, arguments) +}; +q(Tg, D); +G("marathonHud", Tg); +var Ug = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.tick = 0; + this.LL = 1; + this.UB = 0; + this.$_ = 1 +}; +q(Ug, D); +G("marathonMap", Ug); +var Vg = function () { + D.apply(this, arguments) +}; +q(Vg, D); +G("marathonTile", Vg); +var Wg = function () { + D.apply(this, arguments) +}; +q(Wg, D); +G("marathonSpeedLine", Wg); +var Xg = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.speed = b.speed; + this.name = b.name; + this.oab = b.cursorColor; + this.nC = this.cursor = null +}; +q(Xg, D); +G("marathonOpponent", Xg); +var Yg = function () { + D.apply(this, arguments) +}; +q(Yg, D); +G("marathonWaypoint", Yg); +var Zg = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.aba = b.toSpawn || null; + this.Dcb = b.spawnFrame; + this.direction = b.direction +}; +q(Zg, D); +G("marathonSpawn", Zg); +var $g = function () { + D.apply(this, arguments) +}; +q($g, D); +G("marathonObstacle", $g); +var ah = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.start = b.start; + this.end = b.end; + this.width = b.width +}; +q(ah, D); +G("marathonPath", ah); +var bh = function (b, g, m) { + return g >= b && g <= m || g <= b && g >= m +}, ch = function (b, g, m) { + return Math.max(b, Math.min(m, g)) +}, dh = function (b, g) { + return C(b.sub(g)) +}, eh = function (b, g, m) { + return b + (m - b) * g +}, fh = function (b, g, m) { + return (g - b) / (m - b) +}, gh = function (b, g, m) { + return b.add(kg(m.sub(b), g)) +}, ih = function (b, g) { + "number" != typeof b && (b = hh(b) || 0); + "number" != typeof g && (g = hh(g) || 0); + b = g - b; + 180 < b ? b -= 360 : -180 > b && (b += 360); + return b +}, hh = function (b) { + return b && 0 != C(b) ? (Math.atan2(b.y, b.x) + 2 * Math.PI) % (2 * Math.PI) * 180 / Math.PI : NaN +}, jh = function (b) { + switch (b) { + case "e": + return 0; + case "se": + return 45; + case "s": + return 90; + case "sw": + return 135; + case "w": + return 180; + case "nw": + return 225; + case "n": + return 270; + case "ne": + return 315 + } + return NaN +}, kh = function (b) { + return "string" == typeof b ? jh(b) : hh(b) +}, lh = function (b, g) { + b %= 360; + if (void 0 === g ? 0 : g) { + if (bh(0, b, 45) || bh(315, b, 360)) return "e"; + if (bh(45, b, 135)) return "s"; + if (bh(135, b, 225)) return "w"; + if (bh(225, b, 315)) return "n" + } else { + if (bh(0, b, 22.5) || bh(337.5, b, 360)) return "e"; + if (bh(22.5, b, 67.5)) return "se"; + if (bh(67.5, b, 112.5)) return "s"; + if (bh(112.5, b, 157.5)) return "sw"; + if (bh(157.5, b, 202.5)) return "w"; + if (bh(202.5, b, 247.5)) return "nw"; + if (bh(247.5, b, 292.5)) return "n"; + if (bh(292.5, b, 337.5)) return "ne" + } + return null +}, mh = function (b, g) { + g = void 0 === g ? ! 1 : g; + return "number" != typeof b ? lh(hh(b), g) : lh(b, g) +}, nh = function (b) { + b = b * Math.PI / 180; + return lg(B(Math.cos(b), Math.sin(b)), 1) +}, oh = function (b) { + return "string" == typeof b ? nh(jh(b)) : nh(b) +}, ph = function (b, g) { + return b + Math.random() * (g - b) +}, qh = function (b, g) { + return Math.floor(ph(b, g)) +}, rh = function (b) { + if (0 != b.length) return b[qh(0, b.length)] +}; +var sh = !! self.localStorage; +var th = function (b, g) { + a:if (sh) { + try { + var m = window.localStorage.getItem("KITSUNE_" + b) + } catch (k) { + b = g; + break a + } + b = null == m ? g : JSON.parse(m) + } else b = g; + return b +}, uh = function (b, g) { + if (sh) try { + window.localStorage.setItem("KITSUNE_" + b, JSON.stringify(g)) + } catch (m) { + } +}, vh = function () { + var b = Object.keys(self.localStorage).filter(function (m) { + return m.startsWith("KITSUNE_") + }); + b = p(b); + for (var g = b.next(); ! g.done; g = b.next()) self.localStorage.removeItem(g.value) +}; +var wh = { + ad: ["ca"], + ae: ["ar", "en", "fa", "hi", "ur"], + af: ["ps", "fa"], + ag: ["en"], + ai: ["en"], + al: ["sq", "en"], + am: ["hy", "ru"], + ao: ["pt-PT"], + ar: ["es-419", "es"], + as: ["en"], + at: ["de"], + au: ["en"], + az: ["az", "ru"], + ba: ["bs", "hr", "sr"], + bd: ["bn", "en"], + be: ["nl", "de", "en", "fr"], + bf: ["fr"], + bg: ["bg"], + bh: ["ar", "en"], + bi: ["fr"], + bj: ["fr"], + bn: ["ms", "en", "zh-CN"], + bo: ["es-419", "es"], + br: ["pt-BR", "en"], + bs: ["en"], + bt: ["en"], + bw: ["tn", "en"], + by: ["be", "ru"], + bz: ["en", "es", "es-419"], + ca: ["en", "fr", "fr-CA"], + cd: ["fr", "sw"], + cf: ["fr"], + cg: ["fr"], + ch: ["de", + "en", "fr", "it"], + ci: ["fr"], + ck: ["en"], + cl: ["es-419", "es"], + cm: ["fr", "en"], + cn: ["zh-CN"], + co: ["es-419", "es"], + cr: ["es-419", "en", "es"], + cu: ["es-419", "es"], + cv: ["pt-PT"], + cy: ["en", "el", "tr"], + cz: ["cs"], + de: ["de", "en", "fr"], + dj: ["fr", "ar", "so"], + dk: ["da"], + dm: ["en"], + "do": ["es-419", "es"], + dz: ["fr", "ar"], + ec: ["es-419", "es"], + ee: ["et", "ru"], + eg: ["ar", "en"], + es: ["es", "ca", "en", "eu", "gl"], + et: ["am", "en", "so"], + fi: ["fi", "sv"], + fj: ["en"], + fr: ["fr"], + ga: ["fr"], + ge: ["ka", "en"], + gg: ["en", "fr"], + gh: ["en"], + gi: ["en", "es", "it", "pt-PT"], + gl: ["da", + "en"], + gm: ["en", "wo"], + gr: ["el"], + gt: ["es-419", "es"], + gy: ["en"], + hk: ["zh-TW", "en", "zh-CN", "zh-HK"], + hn: ["es-419", "es"], + hr: ["hr"], + ht: ["fr", "en", "ht"], + hu: ["hu"], + id: ["id", "en", "nl"], + ie: ["en-GB", "ga"], + il: ["iw", "ar", "en"], + im: ["en"], + "in": "en bn gu hi kn ml mr ne or pa ta te".split(" "), + iq: ["ar", "en"], + is: ["is", "en"], + it: ["it", "en"], + je: ["en", "fr"], + jm: ["en"], + jo: ["ar", "en"], + jp: ["ja"], + ke: ["sw", "en"], + kg: ["ky", "ru"], + kh: ["km", "en"], + ki: ["en"], + kr: ["ko"], + kw: ["ar", "en"], + kz: ["kk", "ru"], + la: ["lo", "en"], + lb: ["ar", "en", "fr", "hy"], + lk: ["en", "si", "ta"], + ls: ["st", "en", "zu"], + lt: ["lt"], + lu: ["de", "fr"], + lv: ["lv", "lt", "ru"], + ly: ["ar", "en", "it"], + ma: ["fr", "ar"], + md: ["ro", "ro-MD", "ru"], + me: ["sr-ME", "bs", "sr"], + mg: ["mg", "fr"], + mk: ["mk"], + ml: ["fr"], + mm: ["my", "en"], + mn: ["mn"], + mt: ["mt", "en"], + mu: ["en", "fr"], + mv: ["en"], + mw: ["ny", "en"], + mx: ["es-419", "es"], + my: ["en", "ms"], + mz: ["pt-PT", "ny", "sn", "sw"], + na: ["en", "af", "de"], + ne: ["fr"], + ng: ["en"], + ni: ["es-419", "en", "es"], + nl: ["nl", "en"], + no: ["no", "nn"], + np: ["ne", "en"], + nr: ["en"], + nu: ["en"], + nz: ["en-GB"], + om: ["ar", "en"], + pa: ["es-419", + "en", "es"], + pe: ["es-419", "es"], + pg: ["en"], + ph: ["en"], + pk: ["en", "pa", "ur"], + pl: ["pl"], + pn: ["en"], + pr: ["es-419", "en", "es"], + ps: ["ar", "en"], + pt: ["pt-PT"], + py: ["es-419", "es"], + qa: ["ar", "en"], + ro: ["ro", "de", "hu"], + rs: ["sr", "sr-Latn"], + ru: ["ru"], + rw: ["en", "fr", "sw"], + sa: ["ar", "en"], + sb: ["en"], + sc: ["crs", "en", "fr"], + se: ["sv"], + sg: ["en", "ms", "ta", "zh-CN"], + si: ["sl"], + sk: ["sk", "hu"], + sl: ["en"], + sm: ["it"], + sn: ["fr", "wo"], + so: ["so", "ar", "en"], + sr: ["nl", "en"], + st: ["pt-PT"], + sv: ["es-419", "es"], + td: ["fr", "ar"], + tg: ["fr"], + th: ["th", "en"], + tj: ["tg", + "ru"], + tl: ["pt-PT", "en", "id"], + tm: ["tk", "ru", "uz"], + tn: ["ar", "fr"], + to: ["en"], + tr: ["tr"], + tt: "en es es-419 fr hi zh-TW".split(" "), + tw: ["zh-TW", "en"], + tz: ["sw", "en"], + ua: ["uk", "ru"], + ug: ["en"], + uk: ["en-GB"], + us: ["en", "es", "es-419", "zh-CN"], + uy: ["es-419", "es"], + uz: ["uz", "ru"], + vc: ["en"], + ve: ["es-419", "es"], + vi: ["en"], + vn: ["vi", "en", "fr", "zh-TW"], + vu: ["en", "fr"], + ws: ["en"], + za: ["en", "af", "st", "tn", "zu"], + zm: ["en", "ny", "sn"], + zw: ["en", "ny", "sn", "tn", "zu"] +}; +var xh = function (b) { + if (b.EN && b.hasOwnProperty("EN")) return b.EN; + var g = new b; + return b.EN = g +}; +var yh = function () { + this.ha = this.Ca = null +}; +yh.prototype.load = function (b, g, m, k) { + var c = this; + b = zh(this, b, g, m); + if (null == b) return Promise.resolve(); + var a = k + "messages." + b + ".nocache.json", n = new ae; + n.HQ = "text"; + return new Promise(function (h, d) { + Hc(n, "success", function () { + try { + var e = n.ha ? n.ha.responseText : "" + } catch (f) { + e = "" + } + c.Ca = JSON.parse(e.substring(5)); + h() + }); + Hc(n, "error", d); + ee(n, a) + }) +}; +var zh = function (b, g, m, k) { + var c = g + "-" + m; + if (k.includes(c)) return b.ha = g, c; + if (g && k.includes(g)) return b.ha = g; + if (m && wh[m]) for (g = p(wh[m]), m = g.next(); ! m.done; m = g.next()) if (m = m.value, k.includes(m)) return b.ha = m, b.ha; + return k.includes("en") ? (b.ha = "en", b.ha) : b.ha = null +}; +var Ah = xh(yh), Bh = { + en: 1, + bn: .84, + "en-GB": 1, + de: 1, + hi: .84, + id: 1, + mr: 1, + ar: .84, + es: .84, + "es-419": .84, + it: .84, + ja: .84, + ko: .84, + nl: .84, + "pt-BR": .84, + "pt-PT": .84, + th: .84, + tr: .84, + "zh-CN": .84, + "zh-HK": .84, + "zh-TW": .84 +}, Ch; +Ch = 0 <= Ua(["vi", "tr", "zh-HK", "zh-CN", "zh-TW"], Of); +var Dh = function (b) { + var g = b.split(""); + b = b.substring(0, Math.min(b.length, 1)); + for (var m = 1; m < g.length; m++) { + if (g[m].match("[\u3400-\u9fbf]|[\u3000-\u303f]|[\u3040-\u309f]|[\u30a0-\u30ff]|[\uff00-\uffef]|[\u4e00-\u9faf]|[\u2605-\u2606]|[\u2190-\u2195]|[\u0e00-\u0e7f]")) { + var k = 0 <= '\u3008\u300a\u300c\u300e\u3010\u3014\u3016$(\u00a3\u00a5\u00b7\u2018"\u301d\ufe59\ufe5b\uff04\uff08\uff0e\uff3b\uff5b\uffe1\uffe5'.indexOf(g[m - 1]), + c = 0 <= '\u3009\u300b\u300d\u3015\u3017!%),.:;?]}\u00a2\u00b0\u00b7\u2019""\u2020\u2021\u203a\u2103\u2236\u3001\u3002\u3003\u3006\u301e\ufe5a\ufe5c\uff01\uff02\uff05\uff07\uff09\uff0c\uff0e\uff1a\uff1b\uff1f\uff01\uff3d\uff5d\uff5e'.indexOf(g[m]), + a = g[m].match("[\u0e31-\u0e3a]|[\u0e47-\u0e4e]"); + k || c || a || (b += "\u200a") + } + b += g[m] + } + return b +}, Eh = function (b) { + for (var g = 0; g < cg.length; g++) { + var m = document.createElement("div"); + m.textContent = "."; + m.style.position = "absolute"; + m.style.left = "0px"; + m.style.top = "0px"; + m.style.opacity = "0.01"; + m.style.fontFamily = cg[g]; + b.appendChild(m) + } +}, L = function (b, g) { + g = void 0 === g ? "" : g; + if ( ! Ah.Ca || void 0 === Ah.Ca[b]) return g ? g : b; + try { + if (null == Ah.Ca) throw Error("E"); + for (var m = void 0 === Ah.Ca[b] ? "" : Ah.Ca[b], k = g = 0, c = ! 1, a = m.split(Bb), n = 0; n < + a.length; n++) { + var h = a[n]; + zb.test(h) ? (g++, k++) : Ab.test(h) ? c = ! 0 : yb.test(h) ? k++ : Cb.test(h) && (c = ! 0) + } + b = 0 == k ? c ? 1 : 0 : .4 < g / k ? -1 : 1; + return 1 == b ? "\u202a" + m + "\u202c" : -1 == b ? "\u202b" + m + "\u202c" : m + } catch (d) { + console.error("Incorrect translate id: " + b) + } +}; +var Fh = new createjs.Rectangle(48, 108, 336, 405), Gh = new createjs.Rectangle(624, 108, 288, 405), Kh = function () { + this.le = new Hh(this); + this.oc = new Ih(this); + this.Bb = new Jh(this); + this.Xd = []; + this.Af = [this.oc, this.le, this.Bb]; + this.ha = B(0, 0); + this.Sc = 0; + this.Pk = null; + this.kb = {}; + this.Ca = {} +}, Lh = function (b, g) { + b.Xd.push(g) +}, Mh = function (b) { + b = p(b.Xd); + for (var g = b.next(); ! g.done; g = b.next()) g = g.value, g() +}; +Kh.prototype.tick = function () { + for (var b = this, g = p(this.Af), m = g.next(); ! m.done; m = g.next()) m.value.tick(); + this.ha = B(0, 0); + g = p(this.Af); + for (m = g.next(); ! m.done; m = g.next()) m = m.value, m.oc && (this.ha = this.ha.add(m.pZ())); + 1 < C(this.ha) && (this.ha = lg(this.ha, 1)); + m = mh(this.ha); + m != this.Pk && (this.Sc = 0); + this.Sc++; + this.Pk = m; + g = function (h, d) { + b.Ca[h] = d && ! b.kb[h]; + b.kb[h] = d + }; + var k = p([4, 5]); + for (m = k.next(); ! m.done; m = k.next()) { + var c = m.value, a = ! 1, n = p(this.Af); + for (m = n.next(); ! m.done; m = n.next()) m = m.value, m.oc && m.ZB(c) && (a = ! 0); + g(c, a) + } + g(0, -.1 > this.ha.x); + g(1, .1 < this.ha.x); + g(2, -.1 > this.ha.y); + g(3, .1 < this.ha.y) +}; +var Nh = function () { + this.oc = ! 0; + this.ha = null +}; +l = Nh.prototype; +l.pZ = function () { +}; +l.ZB = function () { +}; +l.tick = function () { +}; +l.enable = function () { + this.oc = ! 0 +}; +l.disable = function () { + this.oc = ! 1 +}; +var Ih = function (b) { + Nh.call(this); + var g = this; + this.le = b; + this.Ca = {}; + this.kb = {}; + Oh(this); + Ph(this); + this.Sc = { + 37: "ArrowLeft", + 38: "ArrowUp", + 39: "ArrowRight", + 40: "ArrowDown", + 65: "a", + 87: "w", + 68: "d", + 83: "s", + 32: " ", + 13: "Enter", + 27: "Escape", + 8: "Backspace", + 49: "1", + 46: "Delete" + }; + this.Bb = {}; + b = document.querySelector("#hplogo2"); + b.addEventListener("keydown", function (m) { + var k = m.which; + if (null != g.ha) { + m.preventDefault(); + g.Sc[k] = m.key; + if (k in g.kb) { + m = g.kb[k]; + var c = g.Ca[m].indexOf(k); + g.Ca[m][c] = g.Ca[g.ha][0] + } + g.Ca[g.ha][0] = k; + Oh(g); + g.ha = null + } else k in g.kb && (m.preventDefault(), g.Bb[k] = ! 0) + }); + b.addEventListener("blur", function () { + for (var m = p(Object.keys(g.Bb)), k = m.next(); ! k.done; k = m.next()) g.Bb[Number(k.value)] = ! 1 + }); + document.addEventListener("keyup", function (m) { + var k = g.ZB(4); + m.which in g.kb && (m.preventDefault(), g.Bb[m.which] = ! 1); + k && ! g.ZB(4) && Mh(g.le) + }) +}; +q(Ih, Nh); +var Ph = function (b) { + b.Ca[2] = [38, 87]; + b.Ca[3] = [40, 83]; + b.Ca[0] = [37, 65]; + b.Ca[1] = [39, 68]; + b.Ca[4] = [32, 13]; + b.Ca[5] = [8, 49, 46]; + Oh(b) +}, Oh = function (b) { + b.kb = {}; + for (var g in b.Ca) for (var m = parseInt(g, 10), k = p(b.Ca[m]), c = k.next(); ! c.done; c = k.next()) b.kb[c.value] = m +}; +Ih.prototype.pZ = function () { + var b = B(0, 0); + this.ZB(0) && b.x--; + this.ZB(2) && b.y--; + this.ZB(1) && b.x++; + this.ZB(3) && b.y++; + 1 < C(b) && (b = lg(b, 1)); + return b +}; +Ih.prototype.ZB = function (b) { + for (var g in this.kb) if (g = parseInt(g, 10), this.kb[g] == b && this.Bb[g]) return ! 0; + return ! 1 +}; +var Hh = function (b) { + Nh.call(this); + var g = this; + this.Af = b; + this.Xd = {}; + this.Jk = Fh; + this.Pk = Gh; + this.le = B(120, 445.5); + this.Sc = this.Bb = null; + this.Ca = B(0, 0); + this.kb = document.querySelector("#hpcanvas"); + this.kb.addEventListener("touchstart", function (m) { + return g.register(m) + }); + this.kb.addEventListener("touchmove", function (m) { + return g.register(m) + }); + this.kb.addEventListener("touchend", function (m) { + var k = ! 1; + m = p(m.changedTouches); + for (var c = m.next(); ! c.done; c = m.next()) c = c.value, delete g.Xd[c.identifier], c.identifier === + g.Bb && (g.Bb = null), c.identifier === g.Sc && (g.Sc = null, k = ! 0); + k && Mh(g.Af) + }) +}; +q(Hh, Nh); +Hh.prototype.register = function (b) { + if (this.oc) for (var g = p(b.changedTouches), m = g.next(); ! m.done; m = g.next()) { + m = m.value; + var k = b; + var c = m; + k = (k = k || window.event) ? (c = c || k.targetTouches && k.targetTouches[0] || k.changedTouches && k.changedTouches[0]) && void 0 !== c.pageX ? [c.pageX, c.pageY] : void 0 !== k.clientX ? [k.clientX + ("rtl" == document.dir ? -1 : 1) * (document.body.scrollLeft || document.documentElement.scrollLeft || 0), k.clientY + (document.body.scrollTop || document.documentElement.scrollTop || 0)] : void 0 !== k.pageX ? [k.pageX, k.pageY] : + [0, 0] : [0, 0]; + c = this.kb.getBoundingClientRect(); + k[0] -= c.x; + k[1] -= c.y; + if (c.width < c.height) { + var a = k[0]; + k[0] = k[1]; + k[1] = c.width - a + } + c = parseInt(this.kb.style.width, 10) / this.kb.width; + k = B(k[0] / c, k[1] / c); + this.Xd[m.identifier] = k; + "touchstart" === b.type && (this.Jk.contains(k.x, k.y) && null === this.Bb ? (this.Bb = m.identifier, 1 < C(this.le.sub(k)) && (this.le = k)) : this.Pk.contains(k.x, k.y) && null === this.Sc && (this.Sc = m.identifier)) + } +}; +Hh.prototype.tick = function () { + this.Ca = B(0, 0); + if (null !== this.Bb) { + var b = this.Xd[this.Bb].sub(this.le); + 15 <= C(b) && (this.Ca = kg(b.sub(lg(b, 10.5)), 1 / 45), 1 < C(this.Ca) && (this.Ca = lg(this.Ca, 1))) + } +}; +Hh.prototype.pZ = function () { + return this.Ca +}; +Hh.prototype.ZB = function (b) { + if (4 == b) return null !== this.Sc; + if (5 != b) { + if (0 == b) return "w" == mh(this.Ca, ! 0); + if (1 == b) return "e" == mh(this.Ca, ! 0); + if (2 == b) return "n" == mh(this.Ca, ! 0); + if (3 == b) return "s" == mh(this.Ca, ! 0) + } + return ! 1 +}; +var Qh = function (b, g) { + this.type = b; + this.eJ = g +}; +Qh.prototype.key = function () { + return this.type + "_" + this.eJ +}; +var Rh = function (b) { + return new Qh(0, b) +}, Sh = function (b) { + return new Qh(1, b) +}, Jh = function (b) { + Nh.call(this); + this.Xd = b; + this.Ca = {}; + Th(this); + this.le = 0; + this.kb = B(0, 0); + this.Bb = {}; + this.Sc = {}; + this.Sc[0] = {}; + this.Sc[1] = {} +}; +q(Jh, Nh); +var Th = function (b) { + b.Ca[2] = [Rh(-2), Rh(-4), Sh(12)]; + b.Ca[3] = [Rh(2), Rh(4), Sh(13)]; + b.Ca[0] = [Rh(-1), Rh(-3), Sh(14)]; + b.Ca[1] = [Rh(1), Rh(3), Sh(15)]; + b.Ca[4] = [Sh(0)]; + b.Ca[5] = [Sh(1), Sh(9)] +}; +Jh.prototype.tick = function () { + for (var b = {}, g = p(navigator.getGamepads()), m = g.next(); ! m.done; m = g.next()) if (m = m.value, null != m) { + for (var k = 0; k < m.buttons.length; k++) b[Sh(k).key()] = m.buttons[k].pressed ? 1 : 0; + for (k = 0; k < m.axes.length; k++) { + var c = m.axes[k], a = k + 1; + b[Rh(a).key()] = 0; + b[Rh(-a).key()] = 0; + .2 < c ? b[Rh(a).key()] = c : -.2 > c && (b[Rh(-a).key()] = Math.abs(c)) + } + } + if (null != this.ha) { + g = this.ha; + for (var n in b) if (.5 <= b[n] && .5 > this.Sc[n]) { + for (var h in this.Ca) for (h = parseInt(h, 10), m = 0; m < this.Ca[h].length; m++) n == this.Ca[h][m].key() && + (this.Ca[h][m] = this.Ca[g][0]); + k = p(n.split("_")); + m = k.next().value; + k = k.next().value; + this.Ca[g][0] = new Qh(parseInt(m, 10), parseInt(k, 10)); + this.ha = null + } + this.le = 15 + } + this.Sc = b; + if (0 < this.le) this.le--; else { + h = this.ZB(4); + this.Bb = {}; + this.kb = B(0, 0); + g = p([4, 5]); + for (n = g.next(); ! n.done; n = g.next()) for (m = n.value, k = p(this.Ca[m]), n = k.next(); ! n.done; n = k.next()) n = n.value, n.key() in b && (this.Bb[m] = this.Bb[m] || !! b[n.key()]); + h && ! this.ZB(4) && Mh(this.Xd); + h = p(this.Ca[2]); + for (n = h.next(); ! n.done; n = h.next()) n = n.value, n.key() in b && + (this.kb.y -= b[n.key()]); + h = p(this.Ca[3]); + for (n = h.next(); ! n.done; n = h.next()) n = n.value, n.key() in b && (this.kb.y += b[n.key()]); + h = p(this.Ca[0]); + for (n = h.next(); ! n.done; n = h.next()) n = n.value, n.key() in b && (this.kb.x -= b[n.key()]); + h = p(this.Ca[1]); + for (n = h.next(); ! n.done; n = h.next()) n = n.value, n.key() in b && (this.kb.x += b[n.key()]); + this.Bb[0] = -.2 > this.kb.x; + this.Bb[1] = .2 < this.kb.x; + this.Bb[2] = -.2 > this.kb.y; + this.Bb[3] = .2 < this.kb.y + } +}; +Jh.prototype.pZ = function () { + return this.kb +}; +Jh.prototype.ZB = function (b) { + return !! this.Bb[b] +}; +var Uh = function (b) { + this.ha = this.duration = b; + this.Ca = ! 0; + this.loop = ! 1; + this.O_ = null +}; +Uh.prototype.tick = function () { + this.Ca && (this.ha--, 0 >= this.ha && (this.O_ && this.O_(), this.ha = this.duration, this.loop || (this.Ca = ! 1))) +}; +Uh.prototype.reset = function () { + this.ha = this.duration; + this.Ca = ! 0 +}; +var Vh = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.ha = ng("positionalDrawOrder", b, ! 0); + this.currentFrame = 0 +}; +q(Vh, D); +G("map", Vh); +var Wh = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.Tpa = b.drawOrder || 0 +}; +q(Wh, D); +G("drawOrderOverride", Wh); +var Xh = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.Qw = b.pos || B(0, 0); + this.Aab = b.ease || .6; + this.speed = b.speed || 60; + this.Baa = ! 0; + this.viewport = null +}; +q(Xh, D); +G("camera", Xh); +var Yh = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.offset = b.offset || B(0, 0) +}; +q(Yh, D); +G("cameraTarget", Yh); +var Zh = function () { + D.apply(this, arguments) +}; +q(Zh, D); +G("deleteOffScreen", Zh); +var $h = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.aba = b.toSpawn || null; + this.hJ = new Uh(b.duration); + this.hJ.loop = ! 0 +}; +q($h, D); +G("spawner", $h); +var ai = function () { + D.apply(this, arguments) +}; +q(ai, D); +G("randomize", ai); +var M = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.velocity = b.velocity || B(0, 0); + this.pC = b.zVelocity ? b.zVelocity : 0 +}; +q(M, D); +G("velocity", M); +var bi = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.direction = b.direction || "s" +}; +q(bi, D); +G("direction", bi); +var ci = function () { + D.apply(this, arguments) +}; +q(ci, D); +G("spritable", ci); +var di = function () { + D.apply(this, arguments) +}; +q(di, D); +G("sprite", di); +var ei = function () { + D.apply(this, arguments) +}; +q(ei, D); +G("boundable", ei); +var fi = function () { + D.apply(this, arguments) +}; +q(fi, D); +G("bounds", fi); +var gi = function () { + D.apply(this, arguments) +}; +q(gi, D); +G("untraversable", gi); +var hi = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.tick = 0; + this.uY = ng("frameCount", b, 0); + this.Wpa = ng("frameDuration", b, 0); + this.frames = [] +}; +q(hi, D); +G("tileBackground", hi); +var ii = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.Qpa = b.deathFrame +}; +q(ii, D); +G("ephemeral", ii); +var ji = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.CY = b.mc || null +}; +q(ji, D); +G("addFx", ji); +var ki = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.CY = b.mc || null +}; +q(ki, D); +G("removeFx", ki); +var li = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.speed = ng("speed", b, 3) +}; +q(li, D); +G("playerMovement", li); +var mi = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.speed = 0; + this.n0 = b.targetPos || B(0, 0) +}; +q(mi, D); +G("waypoint", mi); +var ni = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.id = b.id || "" +}; +q(ni, D); +G("translatable", ni); +var oi = function () { + D.apply(this, arguments) +}; +q(oi, D); +G("cutscene", oi); +var qi = function (b, g) { + if ( ! g(b) && b.children && ! pi(b, gi)) { + b = p(b.children); + for (var m = b.next(); ! m.done; m = b.next()) qi(m.value, g) + } +}, pi = function (b, g) { + if ( ! b.ec) return ! 1; + if ( ! Array.isArray(g)) return b.ec.has(g) && b.ec.get(g).IC; + g = p(g); + for (var m = g.next(); ! m.done; m = g.next()) { + m = m.value; + if (void 0 === m) throw Error("F"); + if ( ! b.ec.has(m) || ! b.ec.get(m).IC) return ! 1 + } + return ! 0 +}, ri = function (b, g) { + var m = []; + qi(b, function (k) { + pi(k, g) && m.push(k) + }); + return m +}, si = function (b, g) { + qi(b, function (m) { + if (pi(m, Mg)) return g(m) + }) +}, ti = function (b, + g) { + var m = []; + b = p(b.children); + for (var k = b.next(); ! k.done; k = b.next()) k = k.value, pi(k, g) && m.push(k); + return m +}, ui = function (b, g) { + var m; + qi(b, function (k) { + if (pi(k, g)) return m = k, ! 0 + }); + return m +}, vi = function (b, g, m) { + return b.parent && 0 != m ? pi(b.parent, g) ? b.parent : vi(b.parent, g, m - 1) : null +}; +var xi = function (b, g) { + b = ti(b, wi).filter(function (m) { + return m.ec.get(wi).eventId == g + }); + return 0 < b.length ? b[0] : null +}, wi = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.HC = ! 1; + this.eventId = ng("eventId", b, null); + this.pK = "" +}; +q(wi, D); +G("button", wi); +var yi = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.id = ng("id", b, null); + this.lC = null; + this.pK = ""; + this.j_ = ! 0; + this.C_ = ! 1 +}; +q(yi, D); +G("menu", yi); +var zi = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.button = 4 +}; +q(zi, D); +G("controlsMenuButton", zi); +var Ai = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.order = b.order || 0 +}; +q(Ai, D); +G("keyboardNav", Ai); +var Bi = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.Jaa = 0 +}; +q(Bi, D); +G("overworldPlayer", Bi); +var Ci = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.name = b.name +}; +q(Ci, D); +G("scenePortal", Ci); +var Di = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.name = b.name +}; +q(Di, D); +G("menuPortal", Di); +var Ei = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.Eaa = ! 1 +}; +q(Ei, D); +G("region", Ei); +var Fi = function () { + D.apply(this, arguments) +}; +q(Fi, D); +G("interiorExit", Fi); +var Gi = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.R6 = 0; + this.name = b.name; + this.R_ = ! 1; + this.fqa = b.node; + this.node = "" +}; +q(Gi, D); +G("npc", Gi); +var Hi = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.label = b.label +}; +q(Hi, D); +G("ariaBillboard", Hi); +var Ii = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.Tbb = b.npc; + this.node = b.node +}; +q(Ii, D); +G("dialogTrigger", Ii); +var Ji = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.name = b.name +}; +q(Ji, D); +G("sceneTrigger", Ji); +var Ki = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.name = b.name +}; +q(Ki, D); +G("location", Ki); +var Li = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.Pcb = b.tileWidth; + this.Ocb = b.tileHeight +}; +q(Li, D); +G("repeatableTiles", Li); +var Mi = function (b, g) { + return B(Math.round(fh(b.Pa.x, g.x, b.Pa.x + b.Pa.width) * b.width), Math.round(fh(b.Pa.y, g.y, b.Pa.y + b.Pa.height) * b.height)) + }, Ni = function (b, g) { + return B(eh(b.Pa.x, g.x / b.width, b.Pa.x + b.Pa.width), eh(b.Pa.y, g.y / b.height, b.Pa.y + b.Pa.height)) + }, Oi = function (b, g) { + var m = g.Qw.x - b.Qw.x; + b = g.Qw.y - b.Qw.y; + return m * m + b * b + }, $a = function (b, g) { + return b.f - g.f + }, Pi = function (b, g, m) { + var k = void 0 === k ? 100 : k; + var c = [g], a = [g], n = g; + g.h = Oi(g, m); + for (g = 0; 0 < a.length && g <= k;) { + g++; + var h = a.shift(); + if (h == m) { + n = h; + break + } + h.closed = + ! 0; + var d = b, e = [], f = h.Qw.x, v = h.Qw.y; + d.rm[f - 1] && d.rm[f - 1][v] && e.push(d.rm[f - 1][v]); + d.rm[f + 1] && d.rm[f + 1][v] && e.push(d.rm[f + 1][v]); + d.rm[f] && d.rm[f][v - 1] && e.push(d.rm[f][v - 1]); + d.rm[f] && d.rm[f][v + 1] && e.push(d.rm[f][v + 1]); + d.rm[f - 1] && d.rm[f - 1][v - 1] && e.push(d.rm[f - 1][v - 1]); + d.rm[f + 1] && d.rm[f + 1][v - 1] && e.push(d.rm[f + 1][v - 1]); + d.rm[f - 1] && d.rm[f - 1][v + 1] && e.push(d.rm[f - 1][v + 1]); + d.rm[f + 1] && d.rm[f + 1][v + 1] && e.push(d.rm[f + 1][v + 1]); + d = p(e); + for (e = d.next(); ! e.done; e = d.next()) if (e = e.value, ! e.closed && 0 != e.type && (f = h.BN + dh(e.Qw, + h.Qw), ! e.ha || f < e.BN)) { + e.ha ? (v = Za(a, e), 0 <= v && Array.prototype.splice.call(a, v, 1)) : c.push(e); + e.ha = ! 0; + e.parent = h; + e.h = e.h || Oi(e, m); + e.BN = f; + e.f = e.BN + e.h; + if (e.h < n.h || e.h === n.h && e.BN < n.BN) n = e; + f = Za(a, e); + 0 > f && Xa(a, -(f + 1), 0, e) + } + } + m = n; + for (b = []; m.parent;) b.unshift(m), m = m.parent; + c = p(c); + for (m = c.next(); ! m.done; m = c.next()) m.value.clear(); + return b + }, Ri = function (b) { + this.rm = []; + this.nodes = []; + for (var g = 0; g < b.length; g++) { + this.rm[g] = []; + for (var m = 0, k = b[g]; m < k.length; m++) { + var c = new Qi(B(g, m), k[m]); + this.rm[g][m] = c; + this.nodes.push(c) + } + } + }, + Qi = function (b, g) { + this.Qw = b; + this.h = this.BN = this.f = 0; + this.closed = this.ha = ! 1; + this.parent = null; + this.type = g + }; +Qi.prototype.clear = function () { + this.h = this.BN = this.f = 0; + this.closed = this.ha = ! 1; + this.parent = null +}; +var Si = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.rm = []; + this.Pa = this.DN = null; + this.height = this.width = 0 +}; +q(Si, D); +G("pathMap", Si); +var Ti = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.end = this.start = this.target = null; + this.nodes = []; + this.path = [] +}; +q(Ti, D); +G("pathfinder", Ti); +var Vi = function (b, g) { + b = b.ec.get(Ui); + b.Gp && (b.Gp.collisionFilterMask = g) +}, Xi = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.world = new CANNON.World; + this.world.broadphase = new CANNON.NaiveBroadphase; + this.world.gravity.set(0, 0, -400); + this.world.solver.iterations = 40; + this.Yaa = 4; + this.ha = new Map; + this.contacts = new Map; + this.Ffa = new Map; + this.kb = new CANNON.Material("groundMaterial"); + this.Bb = new CANNON.Material("bodyMaterial"); + this.ha.set("groundMaterial", this.kb); + this.ha.set("bodyMaterial", this.Bb); + b = { + friction: 0, + restitution: 0, contactEquationStiffness: 1E7, contactEquationRelaxation: 3 + }; + this.addContactMaterial("groundMaterial", "bodyMaterial", b); + this.addContactMaterial("bodyMaterial", "bodyMaterial", b); + this.Ca = new CANNON.Body({mass: 0, material: this.kb, collisionFilterGroup: 1, collisionFilterMask: 4}); + this.Ca.addShape(new CANNON.Plane); + this.world.addBody(this.Ca); + Wi(this, "character", "bodyMaterial", {mass: 10, collisionFilterGroup: 4, collisionFilterMask: 7, linearDamping: .4}); + Wi(this, "prop", "bodyMaterial", { + mass: 0, collisionFilterGroup: 2, + collisionFilterMask: 4, linearDamping: .4 + }) +}; +q(Xi, D); +var Wi = function (b, g, m, k) { + var c = b.ha.get(m); + c || (c = new CANNON.Material(m), b.ha.set(m, c)); + k.material = c; + b.Ffa.set(g, k); + k.collisionFilterMask && k.collisionFilterGroup && k.collisionFilterMask & 1 && (b.Ca.collisionFilterMask |= k.collisionFilterGroup) +}; +Xi.prototype.addContactMaterial = function (b, g, m) { + b = this.ha.get(b); + g = this.ha.get(g); + b && g && this.world.addContactMaterial(new CANNON.ContactMaterial(b, g, m)) +}; +G("cannonWorld", Xi); +var Yi = function (b) { + this.U6 = b; + this.Iaa = [] +}, Zi = function () { + D.apply(this, arguments) +}; +q(Zi, D); +G("zSprite", Zi); +var $i = function () { + D.apply(this, arguments) +}; +q($i, D); +G("shadow", $i); +var aj = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.z = b.z || 0; + this.KT = null +}; +q(aj, D); +G("zObject", aj); +var bj = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.height = b.height || 100; + this.shape = b.shape || "box" +}; +q(bj, D); +G("zBoundable", bj); +var Ui = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.Gp = null; + this.NT = ! 1; + this.contacts = new Map; + this.l_ = b.bodyId || "" +}; +q(Ui, D); +G("collidable", Ui); +var cj = function () { + D.call(this); + this.Taa = 1; + this.DL = this.state = 0; + this.sleep = ! 1; + this.jU = ! 0; + this.iS = null; + this.vqa = ! 1 +}; +q(cj, D); +G("pingpongBall", cj); +var dj = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.state = 0 +}; +q(dj, D); +G("pingponger", dj); +var ej = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.currentTarget = null +}; +q(ej, D); +G("pingpongTarget", ej); +var fj = function () { + D.apply(this, arguments) +}; +q(fj, D); +G("pingpongPaddleBounds", fj); +var gj = function () { + D.apply(this, arguments) +}; +q(gj, D); +G("playerSide", gj); +var hj = function () { + D.apply(this, arguments) +}; +q(hj, D); +G("enemySide", hj); +var ij = function (b) { + b = void 0 === b ? {} : b; + D.call(this); + this.eu = this.Dab = this.wp = this.MY = this.Haa = 0; + this.dJ = ng("maxPoints", b, 30); + this.ha = ng("maxBalls", b, 5); + this.tY = 1E4 +}; +q(ij, D); +G("pingpongGame", ij); +var jj = function () { + D.apply(this, arguments) +}; +q(jj, D); +G("pingpongCourt", jj); +var kj = function () { + D.apply(this, arguments) +}; +q(kj, D); +G("pingpongTable", kj); +var lj = function () { + D.apply(this, arguments) +}; +q(lj, D); +G("smoke", lj); +var mj = function () { + D.apply(this, arguments) +}; +q(mj, D); +G("flame", mj); +var nj = function () { + D.apply(this, arguments) +}; +q(nj, D); +G("superMoveBackground", nj); +var oj = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.nC = this.sB = null; + this.V_ = 0; + this.Aaa = B(0, 1); + this.FC = []; + this.iJ = []; + this.Zpa = this.r0 = this.distance = this.Hf = this.tick = 0; + this.Ppa = ! 1; + this.LT = ! 0 +}; +q(oj, D); +G("rugbyPlayer", oj); +var pj = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b) +}; +q(pj, D); +G("rugbyAlly", pj); +var qj = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b) +}; +q(qj, D); +G("rugbyObstacle", qj); +var rj = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.nC = null +}; +q(rj, D); +G("rugbyBall", rj); +var sj = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.type = b.type; + this.S6 = this.p_ = 0 +}; +q(sj, D); +G("rugbyEnemy", sj); +var tj = function () { + D.apply(this, arguments) +}; +q(tj, D); +G("rugbyHud", tj); +var uj = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.name = b.name +}; +q(uj, D); +G("rugbyPowerup", uj); +var vj = function () { + D.apply(this, arguments) +}; +q(vj, D); +G("rugbyEnd", vj); +var wj = function (b, g) { + b.visible != g && (b.visible = g, b.tickEnabled = g) +}, xj = function (b) { + pi(b, Vh) || qi(b, function (g) { + g.Bb = null; + g.kb = null + }) +}, yj = function (b, g) { + return b.timeline ? void 0 !== b.timeline.resolve(g) : ! 1 +}, zj = function (b) { + return B(b.x, b.y) +}, Aj = function (b, g) { + b.x = g.x; + b.y = g.y; + xj(b) +}, Bj = function (b, g) { + b = b.localToLocal(0, 0, g); + if (null == b) throw Error("G"); + return B(b) +}, Cj = function (b) { + if (b.parent) return Bj(b, b.parent); + throw Error("H"); +}, Dj = function (b, g) { + var m = b.getMatrix(null); + null != g.x && (b.x = g.x + b.regX * m.a); + null != + g.y && (b.y = g.y + b.regY * m.d); + xj(b) +}, Ej = function (b) { + return b ? b.ec && b.ec.has(Vh) ? b : null != b.parent ? Ej(b.parent) : null : null +}, N = function (b) { + var g = Ej(b); + if (b.kb && g) return B(b.kb); + if (g && (b.kb = Bj(b, g), b.kb)) return B(b.kb); + throw Error("I"); +}, Fj = function (b, g) { + var m = Ej(b); + null != m && (g = m.localToLocal(g.x, g.y, b.parent), null != g && Dj(b, B(g))) +}, Ij = function (b, g, m, k, c) { + m = void 0 === m ? 0 : m; + k = void 0 === k ? ! 1 : k; + c = void 0 === c ? ! 1 : c; + b = b.ec.get(Xh).viewport; + if (k) return k = Gj(g, c), k || (g = N(g), k = new createjs.Rectangle(g.x, g.y, 0, 0)), Hj(b, + m).intersects(k); + g = N(g); + return Hj(b, m).contains(g.x, g.y) +}, Jj = function (b) { + return b.labels.map(function (g) { + return g.label + }) +}, Lj = function (b, g) { + var m = ! 0; + m = void 0 === m ? ! 1 : m; + if ( ! yj(b, g)) if ("ne" == g || "se" == g) if (yj(b, "e")) g = "e"; else return; else if ("nw" == g || "sw" == g) if (yj(b, "w")) g = "w"; else return; else return; + Kj(b, g, m) +}, Kj = function (b, g, m) { + if ( ! b.gotoAndStop) return ! 1; + if (b.currentLabel == g) return b.paused || (b.paused = ! 0), ! 1; + if (void 0 === m || ! m || 1 != b.children.length) return b.gotoAndStop(g), ! 0; + m = b.children[0]; + var k = m.totalFrames, + c = m.currentFrame, a = m.paused; + b.gotoAndStop(g); + b = b.children[0]; + b != m && b.totalFrames == k && (a && b.gotoAndStop ? b.gotoAndStop(c) : b.gotoAndPlay && b.gotoAndPlay(c)); + return ! 0 +}, Nj = function (b, g, m, k) { + return Kj(b, g, void 0 === k ? ! 1 : k) ? (Mj(m, b, ! 0, ! 0), ! 0) : ! 1 +}, Oj = function (b, g, m) { + if ( ! g) return null; + a:if (m = void 0 === m ? ! 1 : m, void 0 === m ? 0 : m) m = b.getBounds(); else { + if (b.ec && b.ec.has(ei) && (m = ui(b, fi))) { + m = m.getTransformedBounds(); + break a + } + m = null + } + if ( ! m) return null; + var k = b.localToLocal(m.x, m.y, g); + b = b.localToLocal(m.x + m.width, m.y + m.height, + g); + m.width = k.x < b.x ? b.x - k.x : k.x - b.x; + m.height = k.y < b.y ? b.y - k.y : k.y - b.y; + m.x = k.x < b.x ? k.x : b.x; + m.y = k.y < b.y ? k.y : b.y; + return m +}, Gj = function (b, g) { + g = void 0 === g ? ! 1 : g; + if (b.Bb) return b.Bb.clone(); + var m = Ej(b); + return m ? (b.Bb = Oj(b, m, g), b.Bb) : null +}, Rj = function (b, g, m) { + b = Pj(g, b); + var k = Q(g, Vh); + b && k && (Qj(g, b, k), m && Fj(b, m)); + return b +}, Sj = function (b, g) { + var m = void 0 === m ? null : m; + var k = void 0 === k ? null : k; + var c = Gj(b); + if ( ! c) { + c = N(b); + if ( ! c) return ! 1; + c = new createjs.Rectangle(c.x, c.y, 0, 0) + } + b = Gj(g); + if ( ! b) { + g = N(g); + if ( ! g) return ! 1; + b = new createjs.Rectangle(g.x, + g.y, 0, 0) + } + m && (c = Hj(c, m)); + k && (b = Hj(b, k)); + return c.intersects(b) +}, Tj = function (b) { + return B(qh(b.x, b.x + b.width), qh(b.y, b.y + b.height)) +}, Hj = function (b, g) { + if (0 == g) return b; + g = void 0 != g.left && void 0 != g.right && void 0 != g.top && void 0 != g.bottom ? g : { + left: g, + right: g, + top: g, + bottom: g + }; + b = b.clone(); + b.x -= g.left; + b.y -= g.top; + b.width += g.left + g.right; + b.height += g.top + g.bottom; + return b +}, Uj = function (b, g) { + var m = b.timeline.duration; + b.gotoAndStop(ch(0, Math.floor(g * (m - 1)), m - 1)) +}, Vj = function (b, g) { + return b.children.find(function (m) { + return m.name === + g + }) +}; +var Wj = {name: "fakie", Hf: 100, multiplier: 1, text: "FAKIE", frame: null, actions: [], duration: 0}, + Xj = {name: "hideAndSeek", Hf: 5E3, multiplier: 1, text: "Hide and Seek", frame: null, actions: [], duration: 0}, + Yj = { + name: "noseGrab", + Hf: 100, + multiplier: 1, + text: "Nose Grab", + frame: "nose_grab", + actions: ["action"], + duration: 10 + }, Zj = function (b, g) { + this.ha = b; + this.actions = g + }, bk = function (b, g) { + var m = b.ec.get(ak), k = b.ec.get(M), c = b.ec.get(bi), a = b.ec.get(aj); + this.type = g; + this.Qw = N(b) || B(0, 0); + this.direction = c.direction; + this.z = a.z; + this.velocity = + B(k.velocity); + this.pC = k.pC; + this.TB = m.TB + }, ak = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.CN = 2700; + this.bx = this.IY = this.Hf = 0; + this.TB = ! 0; + this.Ca = this.Bb = this.sK = 0; + this.ha = null; + this.actions = []; + this.a7 = ! 1; + this.CK = []; + this.oc = this.kb = 0 + }; +q(ak, D); +G("skatePlayer", ak); +var ck = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.ha = [] +}; +q(ck, D); +G("skateHud", ck); +var dk = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.points = b.points; + this.ha = b.respawn +}; +q(dk, D); +G("skateCoin", dk); +var ek = function () { + D.apply(this, arguments) +}; +q(ek, D); +G("skateRail", ek); +var fk = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.z = b.z +}; +q(fk, D); +G("skateRailMarker", fk); +var gk = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.active = ! 1 +}; +q(gk, D); +G("skateChamp", gk); +var hk = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.direction = b.direction || 3; + this.speed = b.speed +}; +q(hk, D); +G("speedBoost", hk); +var ik = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.speed = b.speed || 3 +}; +q(ik, D); +G("bouncePad", ik); +var jk = function (b) { + return b.split(",").map(function (g) { + return g.trim() + }).filter(function (g) { + return 0 < g.length + }) +}, kk = function (b) { + return isNaN(b) ? "true" == b.toLowerCase() ? ! 0 : "false" == b.toLowerCase() ? ! 1 : "null" == b.toLowerCase() ? null : b : Number(b) +}, lk = function (b) { + return parseInt(b / 1800 % 60, 10) + ":" + parseInt(b / 30 % 60, 10).toString().padStart(2, "0") + "." + parseInt(b % 30 / 30 * 100, 10).toString().padStart(2, "0") +}, mk = function (b, g) { + if (b.length != g.length) return ! 1; + for (var m = 0; m < b.length; m++) if (b[m] != g[m]) return ! 1; + return ! 0 +}; +var nk = /\$[A-z_0-9]+/g, ok = function (b) { + if ("" == b.trim()) return "true"; + b = b.replace(/!(\$[A-z_0-9]+)/g, "(not $1)"); + b = b.replace(/&&/g, " and "); + b = b.replace(/\|\|/g, " or "); + return b = b.replace(/null/g, "false") +}, pk = function (b) { + var g = Array.from(b.matchAll(nk), function (c) { + return c[0] + }), m = {}; + g = p(g); + for (var k = g.next(); ! k.done; k = g.next()) k = k.value, m[k] = th(k.replace("$", ""), ! 1); + return !! exprEval.Parser.evaluate(b, m) +}, qk = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.conditions = []; + this.nodes = []; + for (var g = 1; 10 >= + g; g++) { + var m = b["condition" + g], k = b["node" + g]; + k && (this.conditions.push(ok(m)), this.nodes.push(k)) + } +}; +q(qk, D); +G("storageNpc", qk); +var rk = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.conditions = []; + this.frames = []; + for (var g = 1; 10 >= g; g++) { + var m = b["condition" + g], k = b["frame" + g]; + k && (this.conditions.push(ok(m)), this.frames.push(k)) + } +}; +q(rk, D); +G("storageSprite", rk); +var sk = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.key = b.key.replace(/^(\$)/, ""); + this.value = kk(b.value) +}; +q(sk, D); +G("storageTrigger", sk); +var tk = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.key = b.key.replace(/^(\$)/, ""); + this.value = kk(b.value) +}; +q(tk, D); +G("storageOnAction", tk); +var uk = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.Mpa = ok(b.condition) +}; +q(uk, D); +G("conditionallyVisible", uk); +var vk = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.rqa = this.Faa = this.T6 = null; + this.rab = this.RB = this.FL = this.zL = 0; + this.currentFrame = -1 +}; +q(vk, D); +G("clockState", vk); +var wk = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.rY = 0 +}; +q(wk, D); +G("playbackState", wk); +var xk = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.type = null; + this.time = -1; + this.state = 0; + this.Opa = ! 1; + this.track = this.Ts = null +}; +q(xk, D); +G("danceMoveArrow", xk); +var yk = function () { + D.apply(this, arguments) +}; +q(yk, D); +G("redBg", yk); +var zk = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.yY = ! 1; + this.GQ = this.sqa = this.ut = this.wp = 0; + this.xL = new Map([[3, NaN], [1, NaN], [0, NaN], [2, NaN]]) +}; +q(zk, D); +G("swimState", zk); +var Ak = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.V6 = null +}; +q(Ak, D); +G("player", Ak); +var Bk = function () { + D.apply(this, arguments) +}; +q(Bk, D); +G("champion", Bk); +var Ck = function () { + D.apply(this, arguments) +}; +q(Ck, D); +G("oldMan", Ck); +var Dk = function () { + D.apply(this, arguments) +}; +q(Dk, D); +G("turtle", Dk); +var Ek = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.Ypa = null +}; +q(Ek, D); +G("character", Ek); +var Fk = function () { + D.apply(this, arguments) +}; +q(Fk, D); +G("beatTarget", Fk); +var Gk = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.tqa = jk(b.triggerComponent).map(function (g) { + return mg[g] + }); + this.ex = []; + this.bdb = ng("zMin", b, -1E5) - .1; + this.adb = ng("zMax", b, 1E5) + .1 +}; +q(Gk, D); +G("trigger", Gk); +var Hk = function () { + D.apply(this, arguments) +}; +q(Hk, D); +G("triggerArea", Hk); +var Ik = function (b) { + b = void 0 === b ? {} : b; + D.call(this, b); + this.Qcb = b.triggerFrame || null; + this.Tcb = b.untriggerFrame || null +}; +q(Ik, D); +G("jumpToFrameOnTrigger", Ik); +var Jk = {}, Kk = function () { + throw Error("J"); +}; +Kk.prototype.Npa = null; +Kk.prototype.toString = function () { + return this.ha +}; +var Lk = function () { + Kk.call(this) +}; +Oa(Lk, Kk); +Lk.prototype.iab = Jk; +var Mk = function (b) { + function g(m) { + this.ha = m + } + + g.prototype = b.prototype; + return function (m, k) { + m = new g(String(m)); + void 0 !== k && (m.Npa = k); + return m + } +}(Lk); +var Nk = function () { + var b = Mk(""); + var g = td(Ta || (Ta = new sd), "DIV"); + if (Ia(b)) if (b instanceof Kk) { + if (b.iab !== Jk) throw Error("K"); + b = Pb(b.toString(), b.Npa || null) + } else b = Qb("zSoyz"); else b = Qb(String(b)); + if (Sb()) for (; g.lastChild;) g.removeChild(g.lastChild); + g.innerHTML = Ob(b); + 1 == g.childNodes.length && (b = g.firstChild, 1 == b.nodeType && (g = b)); + return g +}; +var Ok = [[{U: [], nodeName: "cabinet1", V: "arcade", tags: {W: [""]}, text: "Magic Cat Academy"}], [{ + U: [], + nodeName: "cabinet2", + V: "arcade", + tags: {W: [""]}, + text: "Pangolin Love" +}], [{U: [], nodeName: "cabinet3", V: "arcade", tags: {W: [""]}, text: "Great Ghoul Duel"}], [{ + U: [], + nodeName: "cabinet4", + V: "arcade", + tags: {W: [""]}, + text: "The Pony Express" +}], [{U: [], nodeName: "cabinet5", V: "arcade", tags: {W: [""]}, text: "The Doodle Fruit Games"}], [{ + U: [], + nodeName: "cabinet6", + V: "arcade", + tags: {W: [""]}, + text: "The Pony Express" +}], [{ + U: [], nodeName: "cabinet7", + V: "arcade", tags: {W: [""]}, text: "Garden Gnomes" +}], [{U: [], nodeName: "cabinet8", V: "arcade", tags: {W: [""]}, text: "The Great Candy Cup"}], [{ + U: [], + nodeName: "cabinet9", + V: "arcade", + tags: {W: [""]}, + text: "Loteria" +}], [{ + U: [], + nodeName: "dome", + V: "arcade", + tags: {W: ["luckyCurious"]}, + text: "I've never seen games like this before..." +}], [{ + U: [], + nodeName: "ufo", + V: "arcade", + tags: {W: ["luckyCurious"]}, + text: "Wow, so many great prizes!" +}], [{U: [{next: "rawr", text: null}], nodeName: "yarn", V: "arcade", tags: {W: [""]}, text: "Yarn Master"}, { + U: [], + nodeName: "rawr", V: "arcade", tags: {W: ["luckyHappy"]}, text: "This one looks fun!" +}], [{U: [{next: "dotdotdot2", text: null}], nodeName: "banyanTree", V: "banyanTree", tags: {}, text: "..."}, { + U: [], + nodeName: "dotdotdot2", + V: "banyanTree", + tags: {}, + text: "...leaf me alone." +}], [{ + U: [], + nodeName: "backBigCat1", + V: "bigCat", + tags: {W: ["bigCatNeutral"]}, + text: "(oh no, I think I'm going to lose!)" +}], [{ + U: [], + nodeName: "backBigCat2", + V: "bigCat", + tags: {W: ["bigCatNeutral"]}, + text: "I prefer this game to the other sports." +}], [{ + U: [], nodeName: "bigCat1", + V: "bigCat", tags: {W: ["bigCatNeutral"]}, text: "Are you feeling...lucky?" +}], [{ + U: [], + nodeName: "bigCat2", + V: "bigCat", + tags: {W: ["bigCatNeutral"]}, + text: "Please don't sit next to me." +}], [{ + U: [], + nodeName: "bigCat3", + V: "bigCat", + tags: {W: ["bigCatNeutral"]}, + text: "Have you beaten all 7 sports yet?" +}], [{ + U: [], + nodeName: "bigCat1", + V: "bigCat1", + tags: {W: ["bigCatNeutral"]}, + text: "Are you feeling...lucky?" +}], [{U: [], nodeName: "bigCat2", V: "bigCat2", tags: {W: ["bigCatNeutral"]}, text: "Please don't sit next to me."}], [{ + U: [], nodeName: "bigCat3", + V: "bigCat3", tags: {W: ["bigCatNeutral"]}, text: "Have you beaten all 7 sports yet?" +}], [{ + U: [{next: "read", text: null}], + nodeName: "bookKarasu", + V: "bigKarasu", + tags: {}, + text: "Welcome to the Library" +}, { + U: [{next: "orelse", text: null}], + nodeName: "read", + V: "bigKarasu", + tags: {}, + text: "Read anything you like, but please don't take anything with you." +}, {U: [], nodeName: "orelse", V: "bigKarasu", tags: {}, text: "(or else...)"}], [{ + U: [], + nodeName: "blueBook", + V: "blueBook", + tags: {}, + text: "THE BLUE TEAM: Stronger Every Day" +}], [{ + U: [{ + next: "read", + text: null + }], nodeName: "bookKeepr", V: "bookKeeper", tags: {}, text: "Welcome to the Library" +}, { + U: [{next: "orelse", text: null}], + nodeName: "read", + V: "bookKeeper", + tags: {}, + text: "Read anything you like, but please don't take anything with you." +}, {U: [], nodeName: "orelse", V: "bookKeeper", tags: {}, text: "(or else...)"}], [{ + U: [], + nodeName: "bookArcheryCombos", + V: "bookStore", + tags: {}, + text: "The Secret to Combos in Archery" +}], [{U: [], nodeName: "bookBlue", V: "bookStore", tags: {}, text: "THE BLUE TEAM: Stronger Every Day"}], [{ + U: [], nodeName: "bookGreen", + V: "bookStore", tags: {}, text: "THE GREEN TEAM: Kappable of Anything" +}], [{ + U: [{next: "secret", text: null}], + nodeName: "bookHiddenForest", + V: "bookStore", + tags: {}, + text: "The Four Team Leaders" +}, { + U: [{next: "leaders", text: null}], + nodeName: "secret", + V: "bookStore", + tags: {}, + text: "Each team has a headquarters somewhere on the island..." +}, { + U: [], + nodeName: "leaders", + V: "bookStore", + tags: {}, + text: "The Great Leaders of the Four Teams can be found there, but only if you are strong enough.." +}], [{ + U: [], nodeName: "bookMagicCat", V: "bookStore", + tags: {}, text: "Magic Cat Academy III: Momo's Revenge" +}], [{U: [], nodeName: "bookRed", V: "bookStore", tags: {}, text: "THE RED TEAM: Researching Victory"}], [{ + U: [], + nodeName: "bookTanookiCitySubway", + V: "bookStore", + tags: {}, + text: "Subway Guide to Tanooki City" +}], [{U: [], nodeName: "bookTwoKappas", V: "bookStore", tags: {}, text: "A Tale Of Two Kappas"}], [{ + U: [], + nodeName: "bookUnderwaterCastle", + V: "bookStore", + tags: {}, + text: "Underwater Castles: Myth or Marvelous?" +}], [{U: [], nodeName: "bookYellow", V: "bookStore", tags: {}, text: "THE YELLOW TEAM: (content redacted)"}], + [{ + U: [{next: "cantgo", text: null}], + nodeName: "catBoat", + V: "catBoat", + tags: {W: ["luckyWorried"]}, + text: "..." + }, {U: [], nodeName: "dotdotdot2", V: "catBoat", tags: {}, text: "Empty Text"}, { + U: [{next: "still", text: null}], + nodeName: "cantgo", + V: "catBoat", + tags: {W: ["luckyWorried"]}, + text: "I can't leave now..." + }, { + U: [], + nodeName: "still", + V: "catBoat", + tags: {W: ["luckyNeutral"]}, + text: "There are still Sports to win!!" + }], [{ + U: [], + nodeName: "covenienceClerk1", + V: "convenienceStore1", + tags: {}, + text: "Welcome! Please let me know if you need any help." + }], + [{ + U: [{next: "money", text: null}], + nodeName: "freezer1", + V: "convenienceStore1", + tags: {W: ["luckyNeutral"]}, + text: "Wow, they have so many great sports drinks!" + }, { + U: [], + nodeName: "money", + V: "convenienceStore1", + tags: {W: ["luckyWorried"]}, + text: "...if only I had money." + }], [{ + U: [], + nodeName: "hotFood1", + V: "convenienceStore1", + tags: {}, + text: "Hot Veggie Buns: Please ask attendant for assistance." + }], [{ + U: [{next: "healthy", text: null}], + nodeName: "shelf1", + V: "convenienceStore1", + tags: {}, + text: "Green Tea Chips" + }, { + U: [], nodeName: "healthy", + V: "convenienceStore1", tags: {W: ["luckyNeutral"]}, text: "These sound healthy! But I'm not too hungry." + }], [{ + U: [{next: "spicy", text: null}], + nodeName: "shelf2", + V: "convenienceStore1", + tags: {}, + text: "Instant Ramen - EXTRA spicy!" + }, { + U: [], + nodeName: "spicy", + V: "convenienceStore1", + tags: {W: ["luckyWorried"]}, + text: "...am I spicy enough to handle this?" + }], [{ + U: [{next: "hatebath", text: null}], + nodeName: "shelf3", + V: "convenienceStore1", + tags: {}, + text: "Fur Shampoo - Keep your fur aerodynamic for maximum speed!" + }, { + U: [], nodeName: "hatebath", + V: "convenienceStore1", tags: {W: ["luckyWorried"]}, text: "That sounds useful, but I hate getting my fur wet!" + }], [{ + U: [{next: "books", text: null}], + nodeName: "bookFox", + V: "fox", + tags: {}, + text: "I used to think I was the Chosen One, but that was a long time ago." + }, { + U: [{next: "wonder", text: null}], + nodeName: "books", + V: "fox", + tags: {}, + text: "Now I'm happy just reading books." + }, { + U: [], + nodeName: "wonder", + V: "fox", + tags: {}, + text: "But sometimes I can't help but wonder what could have been..." + }], [{ + U: [], nodeName: "greenBook", V: "greenBook", + tags: {}, text: "THE GREEN TEAM: Kappable of Anything" + }], [{ + U: [], + nodeName: "diffteam", + V: "inari", + tags: {W: ["inariNeutral"]}, + text: "Hey you're not on Team Yellow... Stop staring at me!" + }], [{ + U: [], + nodeName: "invisible", + V: "inari", + tags: {W: ["inariNeutral"]}, + text: "You can't see me because I'm invisible." + }], [{ + U: [{next: "beach", text: null}], + nodeName: "running", + V: "inari", + tags: {W: ["inariNeutral"]}, + text: "The Kijimuna all love running races together on the beach." + }, { + U: [], nodeName: "beach", V: "inari", tags: {W: ["inariNeutral"]}, + text: "But the beach has a lot of obstacles, be careful if you join them!" + }], [{U: [], nodeName: "sameteam", V: "inari", tags: {W: ["inariNeutral"]}, text: "You're on Team Yellow!"}], [{ + U: [], + nodeName: "skateAllDay", + V: "inari", + tags: {W: ["inariNeutral"]}, + text: "Skate all day!" + }], [{ + U: [], + nodeName: "skater1", + V: "inari", + tags: {W: ["inariNeutral"]}, + text: "Welcome to the Skateboarding Dojo!" + }], [{ + U: [{next: "whereisthepark", text: "Where?"}], + nodeName: "skater2", + V: "inari", + tags: {W: ["inariNeutral"]}, + text: "We have a secret skatepark, members only!" + }, + { + U: [], + nodeName: "whereisthepark", + V: "inari", + tags: {W: ["inariNeutral"]}, + text: "Across the train tracks North of town. But SHHH don't tell anyone." + }], [{ + U: [], + nodeName: "spies", + V: "inari", + tags: {W: ["inariNeutral"]}, + text: "The Yellow Team has spies everywhere..." + }], [{ + U: [{next: "joinYellow", text: "Join Yellow!"}, {next: "noThanks", text: "Nah."}, { + next: "tellMeMore", + text: "Who?" + }], + nodeName: "teamPickerYellow", + V: "inari", + tags: {W: ["inariNeutral"]}, + text: "Pst, wanna join the super secret Team Yellow?" + }, { + U: [{ + next: "followPath", + text: null + }], + nodeName: "joinYellow", + V: "inari", + tags: {W: ["inariNeutral"], zd: ["PLAYER_TEAM", "yellow"]}, + text: "Welcome to Team Yellow! Your first assignment: find and defeat a Legendary Champion." + }, { + U: [{next: "mapShow", text: null}], + nodeName: "followPath", + V: "inari", + tags: {W: ["inariNeutral"]}, + text: "Follow the paths to find the Champions and play the sports." + }, { + U: [{next: "soSneaky", text: null}], + nodeName: "mapShow", + V: "inari", + tags: {W: ["map"]}, + text: "Or press ESC to use the map!" + }, { + U: [], nodeName: "soSneaky", V: "inari", + tags: {W: ["inariNeutral"]}, text: "Good luck and stay sneaky out there!" + }, { + U: [], + nodeName: "noThanks", + V: "inari", + tags: {W: ["inariNeutral"]}, + text: "Ok, but shhhhhh, you never saw me!" + }, { + U: [{next: "joinYellow", text: "I'll Join!"}, {next: "noThanks", text: "No thanks."}], + nodeName: "tellMeMore", + V: "inari", + tags: {W: ["inariNeutral"]}, + text: "I'm an Inari, the trickster fox mascot of Team Yellow. Life's just more fun if you're sneaky." + }], [{ + U: [{next: "fanoff", text: null}], nodeName: "yoichi", V: "inari", tags: {W: ["inariNeutral"]}, + text: "Captain Yoichi is the greatest archer in the world!" + }, { + U: [{next: "challengehim", text: null}], + nodeName: "fanoff", + V: "inari", + tags: {W: ["inariNeutral"]}, + text: "He once shot a fan off the mast of a boat while on horseback, can you believe it??" + }, { + U: [], + nodeName: "challengehim", + V: "inari", + tags: {W: ["inariNeutral"]}, + text: "One day I'll challenge him one-on-one but I don't think I'm strong enough yet." + }], [{ + U: [{next: "hiding", text: null}], + nodeName: "inari1", + V: "inari1", + tags: {W: ["inariNeutral"]}, + text: "Shhhhh!" + }, { + U: [{ + next: "sneaky", + text: null + }], + nodeName: "hiding", + V: "inari1", + tags: {W: ["inariNeutral"]}, + text: "I'm hiding so the other teams don't see me." + }, { + U: [], + nodeName: "join", + V: "inari1", + tags: {W: ["inariNeutral"], zd: ["PLAYER_TEAM", "yellow"]}, + text: "Welcome to the YELLOW TEAM! Shhhh" + }, { + U: [], + nodeName: "nothanks", + V: "inari1", + tags: {W: ["inariNeutral"]}, + text: "Ok, but don't tell anyone you saw me..." + }, { + U: [{next: "join", text: "I'll join."}, {next: "nothanks", text: "No thanks..."}], + nodeName: "tellmemore", + V: "inari1", + tags: {W: ["inariNeutral"]}, + text: "I'm an Inari, the trickster fox mascot of the Yellow Team. Life's just more fun if you're sneaky!" + }, + { + U: [{next: "join", text: "Join!"}, {next: "nothanks", text: "No thanks."}, {next: "tellmemore", text: "Who?"}], + nodeName: "sneaky", + V: "inari1", + tags: {W: ["inariNeutral"]}, + text: "But if you saw me you must be pretty sneaky, do you want to join our secret team?" + }], [{U: [], nodeName: "diffteam", V: "kappa", tags: {W: ["kappaNeutral"]}, text: "...no kappa..."}], [{ + U: [], + nodeName: "kappa", + V: "kappa", + tags: {W: ["kappaNeutral"]}, + text: "Kappa!" + }], [{U: [], nodeName: "sameteam", V: "kappa", tags: {W: ["kappaNeutral"]}, text: "Kappa \u2665"}], [{ + U: [{ + next: "how", + text: null + }], + nodeName: "smart", + V: "kappa", + tags: {W: ["kappaNeutral"]}, + text: "My brothers sit by content in ignorance, and yet I, the Smart Kappa, must carry the burden of my intellegence alone." + }, { + U: [{next: "search", text: null}], + nodeName: "how", + V: "kappa", + tags: {W: ["kappaNeutral"]}, + text: "The simple Kappa knows not the difficulties of intellect, the burden of existential dread." + }, { + U: [{next: "find", text: null}], + nodeName: "search", + V: "kappa", + tags: {W: ["kappaNeutral"]}, + text: "I stare out at the vast abyss in front of me and wonder...is this really all there is? Sure it can't be this simple." + }, + { + U: [], + nodeName: "find", + V: "kappa", + tags: {W: ["kappaNeutral"]}, + text: "But listen to me, going on about nothing. Please, enjoy your games. You've no idea how lucky you really are." + }], [{ + U: [{next: "kappaJoin", text: null}], + nodeName: "teamPickerGreen", + V: "kappa", + tags: {W: ["kappaNeutral"]}, + text: "Kappa." + }, { + U: [{next: "joinGreen", text: "Join Team Green."}, {next: "noThanks", text: "No."}, { + next: "tellMeMore", + text: "Who?" + }], nodeName: "kappaJoin", V: "kappa", tags: {W: ["kappaNeutral"]}, text: "Join kappa?" + }, { + U: [{next: "followPath", text: null}], + nodeName: "joinGreen", V: "kappa", tags: {W: ["kappaNeutral"], zd: ["PLAYER_TEAM", "green"]}, text: "KAPPA! KAPPA!" + }, {U: [], nodeName: "noThanks", V: "kappa", tags: {W: ["kappaNeutral"]}, text: "K-kappa?"}, { + U: [{ + next: "joinGreen", + text: "Join Green." + }, {next: "noThanks", text: "No Thanks."}], + nodeName: "tellMeMore", + V: "kappa", + tags: {W: ["kappaNeutral"]}, + text: "Kappa kappa kappa. Kappa? Kappa!! Kappa ka-PPA! kappa kappa. KAPPA!" + }, { + U: [{next: "mapShow", text: null}], + nodeName: "followPath", + V: "kappa", + tags: {W: ["kappaNeutral"]}, + text: "(Follow the paths to find the Champions and play the sports.)" + }, + { + U: [{next: "byeKappa", text: null}], + nodeName: "mapShow", + V: "kappa", + tags: {W: ["map"]}, + text: "(Or press ESC to use the map!)" + }, {U: [], nodeName: "byeKappa", V: "kappa", tags: {W: ["kappaNeutral"]}, text: "Kappa!"}], [{ + U: [{ + next: "recruit", + text: null + }], nodeName: "kappa1", V: "kappa1", tags: {W: ["kappaNeutral"]}, text: "Kappa." + }, { + U: [{next: "join", text: "Join Green!"}, {next: "nothanks", text: "No thanks?"}, { + next: "tellmemore", + text: "Kappa??" + }], nodeName: "recruit", V: "kappa1", tags: {W: ["kappaNeutral"]}, text: "Kappa kappa?" + }, { + U: [], nodeName: "join", + V: "kappa1", tags: {W: ["kappaNeutral"]}, text: "KAPPA! KAPPA!" + }, {U: [], nodeName: "nothanks", V: "kappa1", tags: {W: ["kappaNeutral"]}, text: "k-kappa?"}, { + U: [{ + next: "join", + text: "Join." + }, {next: "nothanks", text: "NO!"}], + nodeName: "tellmemore", + V: "kappa1", + tags: {W: ["kappaNeutral"]}, + text: "Kappa kappa kappa. Kappa? Kappa!! Kappa ka-PPA! kappa kappa. KAPPA!" + }], [{ + U: [{next: "Sports", text: "Sports!"}], + nodeName: "Start", + V: "kappa1", + tags: {W: ["kappaNeutral"]}, + text: "Hi there! What? Not a lot of Kappas where you're from? Well you look sort of out of place yourself. What brings you here?" + }, + { + U: [{next: "TableTennis", text: "Table Tennis"}, {next: "Skiing", text: "Skiing"}], + nodeName: "Sports", + V: "kappa1", + tags: {W: ["kappaNeutral"]}, + text: "So you like sports eh? Lucky for you there's a sports tournament happening on this island. Got any favorite sports?" + }, { + U: [{next: "TableTennis2", text: null}], + nodeName: "TableTennis", + V: "kappa1", + tags: {W: ["kappaNeutral"]}, + text: "Table tennis? I don't think I've ever heard of such a thing. Though if you want a sport that's a lot like tennis, I'd suggest ping pong." + }, { + U: [], + nodeName: "Skiing", + V: "kappa1", + tags: {W: ["kappaNeutral"]}, + text: "I have bad news for you. This island doesn't offer any skiing at the moment. Check back on www.google.com in 2 years." + }, { + U: [], + nodeName: "TableTennis2", + V: "kappa1", + tags: {W: ["kappaNeutral"]}, + text: "There's a guy EAST of here who's playing ping pong pretty passionately. You should challenge him!" + }], [{ + U: [{next: "momotaro", text: null}], + nodeName: "beware", + V: "karasu", + tags: {W: ["karasuNeutral"]}, + text: "The ogres of Oni Island love to play Rugby, no one can beat them." + }, + { + U: [{next: "maybeJoin", text: null}], + nodeName: "momotaro", + V: "karasu", + tags: {W: ["karasuNeutral"]}, + text: "Today they are playing against Momotaro and his friends." + }, { + U: [], + nodeName: "maybeJoin", + V: "karasu", + tags: {W: ["karasuNeutral"]}, + text: "Maybe you can join them!" + }], [{ + U: [{next: "cannotreach", text: null}], + nodeName: "climbing", + V: "karasu", + tags: {W: ["karasuNeutral"]}, + text: "The great Fukuro, Champion of Climbing, awaits at the top of this mountain." + }, { + U: [{next: "imabird", text: null}], nodeName: "cannotreach", V: "karasu", + tags: {W: ["karasuNeutral"]}, text: "No matter how hard we try, none have been able to reach him." + }, { + U: [], + nodeName: "imabird", + V: "karasu", + tags: {W: ["karasuNeutral"]}, + text: "Even birds like me can't get close, who could possibly stand a chance??" + }], [{ + U: [], + nodeName: "diffteam", + V: "karasu", + tags: {W: ["karasuNeutral"]}, + text: "Good luck with your other team..." + }], [{ + U: [{next: "yesa", text: "Yes!"}, {next: "noa", text: "Not really.."}], + nodeName: "goodBooks", + V: "karasu", + tags: {W: ["karasuNeutral"]}, + text: "Read any good books recently?" + }, + { + U: [], + nodeName: "yesa", + V: "karasu", + tags: {W: ["karasuNeutral"]}, + text: "Good work! Keep that mind sharp and the Red Team on top!" + }, { + U: [], + nodeName: "noa", + V: "karasu", + tags: {W: ["karasuNeutral"]}, + text: "Me either...please don't tell anyone." + }], [{ + U: [{next: "dancetogether", text: null}], + nodeName: "otohime", + V: "karasu", + tags: {W: ["karasuNeutral"]}, + text: "Princess Otohime lives in a beautiful underwater castle, you can see it from the red bridge west of here." + }, { + U: [], nodeName: "dancetogether", V: "karasu", tags: {W: ["karasuNeutral"]}, + text: "She welcomes all to join her in her sychronized swimming dances, but I could never keep up." + }], [{ + U: [{next: "yes", text: "Really?"}, {next: "no", text: "No way."}], + nodeName: "research", + V: "karasu", + tags: {W: ["karasuNeutral"]}, + text: "The Red Team's research is going well. did you know there are hidden sports all over the island?" + }, { + U: [], + nodeName: "yes", + V: "karasu", + tags: {W: ["karasuNeutral"]}, + text: "They say the real difficulties lie on the edges of this world. I think I'd rather stay at home!" + }, { + U: [], nodeName: "no", + V: "karasu", tags: {W: ["karasuNeutral"]}, text: "A doubtful mind will bear no fruit." + }], [{ + U: [], + nodeName: "sameteam", + V: "karasu", + tags: {W: ["karasuNeutral"]}, + text: "Happy to have you with us on Team Red!" + }], [{ + U: [{next: "wonder", text: null}], + nodeName: "smartKappa", + V: "karasu", + tags: {W: ["karasuNeutral"]}, + text: "I've heard there's a Kappa somewhere who can speak." + }, {U: [], nodeName: "wonder", V: "karasu", tags: {W: ["karasuNeutral"]}, text: "I wonder what it has to say..."}], [{ + U: [{next: "joinRed", text: "Join Red!"}, { + next: "noThanks", + text: "Nah." + }, {next: "tellMeMore", text: "Who?"}], + nodeName: "teamPickerRed", + V: "karasu", + tags: {W: ["karasuNeutral"]}, + text: "Salutations. A new student for Team Red?" + }, {U: [], nodeName: "noThanks", V: "karasu", tags: {W: ["karasuNeutral"]}, text: "..."}, { + U: [{ + next: "joinRed", + text: "Join Red!" + }, {next: "noThanks", text: "No thanks."}], + nodeName: "tellMeMore", + V: "karasu", + tags: {W: ["karasuNeutral"]}, + text: "I'm a Karasu, the noble crow mascot of Team Red. Knowledge is the only path to victory!" + }, { + U: [{next: "followPath", text: null}], + nodeName: "joinRed", + V: "karasu", + tags: {W: ["karasuNeutral"], zd: ["PLAYER_TEAM", "red"]}, + text: "A wise choice, welcome to Team Red. Your first assignment: find and defeat a Legendary Champion." + }, { + U: [{next: "mapShow", text: null}], + nodeName: "followPath", + V: "karasu", + tags: {W: ["karasuNeutral"]}, + text: "Follow the paths to find the Champions and play the sports." + }, { + U: [{next: "soSharp", text: null}], + nodeName: "mapShow", + V: "karasu", + tags: {W: ["map"]}, + text: "Or press ESC to use the map." + }, { + U: [], nodeName: "soSharp", V: "karasu", tags: {W: ["karasuNeutral"]}, + text: "Stay sharp, I know you'll make Team Red proud." + }], [{ + U: [{next: "recruit", text: null}], + nodeName: "karasu1", + V: "karasu1", + tags: {W: ["karasuNeutral"]}, + text: "Well well. A new student, I presume?" + }, { + U: [{next: "study", text: null}], + nodeName: "recruit", + V: "karasu1", + tags: {W: ["karasuNeutral"]}, + text: "Knowledge is the only path to victory. The RED TEAM is dedicated to the studying the games through participation and domination." + }, { + U: [], nodeName: "join", V: "karasu1", tags: {W: ["karasuNeutral"], zd: ["PLAYER_TEAM", "red"]}, + text: "Welcome to the RED TEAM! Let the learning begin!" + }, {U: [], nodeName: "nothanks", V: "karasu1", tags: {W: ["karasuNeutral"]}, text: "..."}, { + U: [{ + next: "balance", + text: null + }], + nodeName: "tellmemore", + V: "karasu1", + tags: {W: ["karasuNeutral"]}, + text: "I'm a Karasu, the noble crow mascot of the Red Team." + }, { + U: [{next: "join", text: "Join Red!"}, {next: "nothanks", text: "No thanks."}, { + next: "tellmemore", + text: "Who?" + }], + nodeName: "study", + V: "karasu1", + tags: {W: ["karasuNeutral"]}, + text: "Do you want to join our altruistic academic pursuit?" + }, + { + U: [{next: "join", text: "Join!"}, {next: "nothanks", text: "No thanks."}], + nodeName: "balance", + V: "karasu1", + tags: {W: ["karasuNeutral"]}, + text: "We believe winning them could unlock the key to restoring balance to Champion Island. Are you ready to join us in academic glory?" + }], [{ + U: [{next: "banyandtree", text: null}], + nodeName: "marathonDojo", + V: "kijimuna", + tags: {W: ["kijimunaNeutral"]}, + text: "All the other sports have dojos, but the kijimuna would rather be outside running than in some stuffy building." + }, { + U: [], + nodeName: "banyandtree", + V: "kijimuna", + tags: {W: ["kijimunaNeutral"]}, + text: "Closest thing we have is the big banyan tree we all like to hang out it. You can get to any part of the beach from it!" + }], [{ + U: [], + nodeName: "treeFriend", + V: "kijimuna", + tags: {W: ["kijimunaNeutral"]}, + text: "They say The Chosen One can hear the banyan tree speak..." + }], [{ + U: [], + nodeName: "waterRun", + V: "kijimuna", + tags: {W: ["kijimunaNeutral"]}, + text: "Just hearing the ocean waves makes me want to go for a run!" + }], [{ + U: [], nodeName: "koma1", V: "koma1", tags: {W: ["koma1Neutral"]}, + text: "Head North to play the games!" + }], [{ + U: [], + nodeName: "house", + V: "koma1", + tags: {W: ["koma1Neutral"]}, + text: "Find the Red Gate if you want to play the games!" + }], [{ + U: [{next: "explore", text: null}], + nodeName: "koma1tanooki", + V: "koma1tanooki", + tags: {W: ["koma1Neutral"]}, + text: "Welcome to Tanooki City!" + }, { + U: [], + nodeName: "explore", + V: "koma1tanooki", + tags: {W: ["koma1Neutral"]}, + text: "There's lots to see here, you should explore!" + }], [{U: [], nodeName: "koma2", V: "koma2", tags: {W: ["koma2Neutral"]}, text: "Head North to play the games!"}], + [{ + U: [], + nodeName: "house", + V: "koma2", + tags: {W: ["koma2Neutral"]}, + text: "The sports are outside, go find the Red Gates to play!" + }], [{ + U: [{next: "meet", text: null}], + nodeName: "koma2tanooki", + V: "koma2tanooki", + tags: {W: ["koma2Neutral"]}, + text: "Tanooki City is the largest city on the island." + }, { + U: [], + nodeName: "meet", + V: "koma2tanooki", + tags: {W: ["koma2Neutral"]}, + text: "The Grand Champion Tanooki sits in the Dojo at the center of the city." + }], [{ + U: [], nodeName: "firstTime", V: "leaderboard", tags: { + W: ["koma2Neutral"], zd: ["LEADERBOARD_FIRST", + ! 0] + }, text: "Join a team to see the Leaderboard!" + }], [{U: [], nodeName: "leaderboard", V: "leaderboard", tags: {}, text: "Leaderboard coming soon!"}], [{ + U: [], + nodeName: "archery", + V: "luckystatue", + tags: {}, + text: "'Grand Champion of Archery: Lucky the Cat'" + }], [{ + U: [], + nodeName: "climb", + V: "luckystatue", + tags: {}, + text: "'Grand Champion of Climbing: Lucky the Cat'" + }], [{ + U: [], + nodeName: "marathon", + V: "luckystatue", + tags: {}, + text: "'Grand Champion of Marathon: Lucky the Cat'" + }], [{ + U: [], + nodeName: "pingpong", + V: "luckystatue", + tags: {}, + text: "'Grand Champion of Table Tennis: Lucky the Cat'" + }], + [{U: [], nodeName: "rugby", V: "luckystatue", tags: {}, text: "'Grand Champion of Rugby: Lucky the Cat'"}], [{ + U: [], + nodeName: "skate", + V: "luckystatue", + tags: {}, + text: "'Grand Champion of Skateboarding: Lucky the Cat'" + }], [{ + U: [], + nodeName: "swim", + V: "luckystatue", + tags: {}, + text: "'Grand Champion of Synchronized Swimming: Lucky the Cat'" + }], [{ + U: [], + nodeName: "hotSpring1", + V: "monkey", + tags: {W: ["littleMonkeyNeutral"]}, + text: "My doctor says the natural hot springs of Champion Island are the perfect remedy for my aching bones..." + }], + [{ + U: [{next: "cantRemember", text: null}], + nodeName: "hotSpring2", + V: "monkey", + tags: {W: ["littleMonkeyNeutral"]}, + text: "I was passing through and decided to take a quick dip..." + }, { + U: [], + nodeName: "cantRemember", + V: "monkey", + tags: {W: ["littleMonkeyNeutral"]}, + text: "I can't remember where I was supposed to be going." + }], [{ + U: [], + nodeName: "hotSpring3", + V: "monkey", + tags: {W: ["littleMonkeyNeutral"]}, + text: "A new Champion already? Goodness, time flies when you're soaking in a hot bath..." + }], [{ + U: [{next: "tooComfy", text: null}], + nodeName: "hotSpring4", + V: "monkey", + tags: {W: ["littleMonkeyNeutral"]}, + text: "I thought I heard a big explosion just now..." + }, { + U: [], + nodeName: "tooComfy", + V: "monkey", + tags: {W: ["littleMonkeyNeutral"]}, + text: "...I was too comfortable to go check, though." + }], [{ + U: [], + nodeName: "blueOniChampion", + V: "oni", + tags: {W: ["blueOniNeutral"]}, + text: "You really think you can defeat us? Hahaha." + }], [{ + U: [{next: "rematch", text: null}], + nodeName: "blueOniChampionBeaten", + V: "oni", + tags: {W: ["blueOniNeutral"]}, + text: "Momotaro won? This can't be!!" + }, + {U: [], nodeName: "rematch", V: "oni", tags: {W: ["blueOniNeutral"]}, text: "We demand a rematch!!"}], [{ + U: [], + nodeName: "redOniChampion", + V: "oni", + tags: {W: ["redOniNeutral"]}, + text: "Momotaro and his friends are no match for the Oni! Look how big we are!!" + }], [{ + U: [], + nodeName: "redOniChampionBeaten", + V: "oni", + tags: {W: ["redOniNeutral"]}, + text: "Oni...lost?? How can this be? We are so much bigger than you!" + }], [{ + U: [{next: "activehurry", text: null}], + nodeName: "active", + V: "questArrows", + tags: {W: ["arrowCollectorNeutral"]}, + text: "Find me 5 Blue Arrows and then bring them back here!" + }, + { + U: [], + nodeName: "activehurry", + V: "questArrows", + tags: {W: ["arrowCollectorNeutral"]}, + text: "And be quick about it! The sun is starting to set!" + }], [{ + U: [{next: "trophyHint", text: null}], + nodeName: "activeTrophy", + V: "questArrows", + tags: {W: ["trophyMasterNeutral"]}, + text: "Looks like you're in the middle of helping out with this one." + }, { + U: [], + nodeName: "trophyHint", + V: "questArrows", + tags: {W: ["trophyMasterNeutral"]}, + text: "Search the North West Docks for five blue arrows! And you better hurry, sunset is approaching, hee hee." + }], + [{ + U: [], + nodeName: "bluearrow1", + V: "questArrows", + tags: {W: ["luckyNeutral"], zd: ["ARROWS", "blue1"]}, + text: "A blue arrow! That's one, four to go." + }], [{ + U: [], + nodeName: "bluearrow2", + V: "questArrows", + tags: {W: ["luckyNeutral"], zd: ["ARROWS", "blue2"]}, + text: "Another blue arrow! Two down, three to go." + }], [{ + U: [], + nodeName: "bluearrow3", + V: "questArrows", + tags: {W: ["luckyNeutral"], zd: ["ARROWS", "blue3"]}, + text: "Another blue arrow! Three down, two to go." + }], [{ + U: [], nodeName: "bluearrow4", V: "questArrows", tags: { + W: ["luckyNeutral"], zd: ["ARROWS", + "blue4"] + }, text: "Another blue arrow! That's four, I just need one more!" + }], [{ + U: [{next: "bettertake", text: null}], + nodeName: "bluearrow5", + V: "questArrows", + tags: {W: ["luckyNeutral"]}, + text: "At last! Five blue arrows!" + }, { + U: [], + nodeName: "bettertake", + V: "questArrows", + tags: {W: ["luckyNeutral"], zd: ["ARROWS", "found"]}, + text: "Better take them all back to that arrow collector, he seemed to really want them." + }], [{ + U: [], + nodeName: "complete", + V: "questArrows", + tags: {W: ["arrowCollectorNeutral"]}, + text: "Thank you for your service, Lucky. Yoichi will be an even stronger champion now!" + }], + [{ + U: [{next: "StillWatching", text: null}], + nodeName: "completeTrophy", + V: "questArrows", + tags: {W: ["luckyNeutral"]}, + text: '"Royal Arrow Collector Intern"' + }, { + U: [], + nodeName: "StillWatching", + V: "questArrows", + tags: {W: ["trophyMasterNeutral"]}, + text: "I saw the whole thing, you were magnificent. Hee hee." + }], [{ + U: [{next: "yoichiProud", text: null}], + nodeName: "found", + V: "questArrows", + tags: {W: ["arrowCollectorNeutral"]}, + text: "Oh! Five blue arrows, and so fast!" + }, { + U: [{next: "dotdotdot", text: null}], nodeName: "yoichiProud", V: "questArrows", + tags: {W: ["arrowCollectorNeutral"]}, text: "Yoichi will be so proud of me!" + }, { + U: [{next: "imeanus", text: null}], + nodeName: "dotdotdot", + V: "questArrows", + tags: {W: ["luckyAnnoyed"]}, + text: "..." + }, { + U: [{next: "thankyouservice", text: null}], + nodeName: "imeanus", + V: "questArrows", + tags: {W: ["arrowCollectorNeutral"]}, + text: "Us! I mean us, of course!" + }, { + U: [], + nodeName: "thankyouservice", + V: "questArrows", + tags: {W: ["arrowCollectorNeutral"], zd: ["ARROWS", "complete"]}, + text: "Thank you for your service, Lucky. Yoichi will be an even stronger champion now!" + }], + [{ + U: [{next: "lastHint", text: null}], + nodeName: "foundTrophy", + V: "questArrows", + tags: {W: ["trophyMasterNeutral"]}, + text: "You've almost got this one finished!" + }, { + U: [], + nodeName: "lastHint", + V: "questArrows", + tags: {W: ["trophyMasterNeutral"]}, + text: "You've found all five blue arrows, just take them back to the Royal Arrow Collector to collect your reward, hee hee." + }], [{ + U: [{next: "whatWrong", text: null}], + nodeName: "inactive", + V: "questArrows", + tags: {W: ["arrowCollectorNeutral"]}, + text: "Arrows... arrows everywhere..." + }, { + U: [{ + next: "lookAround", + text: null + }], nodeName: "whatWrong", V: "questArrows", tags: {W: ["luckyNeutral"]}, text: "Are you ok?" + }, { + U: [{next: "cleanUp", text: null}], + nodeName: "lookAround", + V: "questArrows", + tags: {W: ["arrowCollectorNeutral"]}, + text: "Of course not!! Look around, there are arrows everywhere! What a mess!" + }, { + U: [{next: "noTime", text: null}], + nodeName: "cleanUp", + V: "questArrows", + tags: {W: ["arrowCollectorNeutral"]}, + text: "I am the Royal Arrow Collector. Yoichi trusts me to collect all the arrows and bring them to him for target practice..." + }, + { + U: [{next: "help", text: "Help"}, {next: "sorry", text: "Sorry"}], + nodeName: "noTime", + V: "questArrows", + tags: {W: ["arrowCollectorNeutral"]}, + text: "But there are too many! I'll never get them all in time!" + }, { + U: [{next: "you", text: null}], + nodeName: "help", + V: "questArrows", + tags: {W: ["luckyNeutral"]}, + text: "I can help you collect them!" + }, { + U: [{next: "iHavent", text: null}], + nodeName: "you", + V: "questArrows", + tags: {W: ["arrowCollectorNeutral"]}, + text: "You? You look like you've never picked up an arrow in your life..." + }, { + U: [{ + next: "veryWell", + text: null + }], + nodeName: "iHavent", + V: "questArrows", + tags: {W: ["luckyAnnoyed"]}, + text: "Well thats probably because I haven't. But I'm willing to learn." + }, { + U: [{next: "hurryUp", text: null}], + nodeName: "veryWell", + V: "questArrows", + tags: {W: ["arrowCollectorNeutral"]}, + text: "Very well, I suppose I've no choice. Find me 5 Blue Arrows and then bring them back here!" + }, { + U: [], + nodeName: "hurryUp", + V: "questArrows", + tags: {W: ["arrowCollectorNeutral"], zd: ["ARROWS", "active"]}, + text: "And be quick about it! The sun is starting to set!" + }, + { + U: [{next: "noIdea", text: null}], + nodeName: "sorry", + V: "questArrows", + tags: {W: ["luckyWorried"]}, + text: "Sorry, that sounds like quite the problem" + }, { + U: [], + nodeName: "noIdea", + V: "questArrows", + tags: {W: ["arrowCollectorNeutral"]}, + text: "You've no idea...how can I do it all alone..." + }], [{ + U: [{next: "questDescription", text: null}], + nodeName: "inactiveTrophy", + V: "questArrows", + tags: {W: ["trophyMasterNeutral"]}, + text: "Oh, I'm saving that spot." + }, { + U: [{next: "IllBeWatching", text: null}], + nodeName: "questDescription", + V: "questArrows", + tags: {W: ["trophyMasterNeutral"]}, + text: "The Royal Arrow Collector in the North West Docks is running behind schedule. Maybe a swift little cat can help, hee hee." + }, { + U: [], + nodeName: "IllBeWatching", + V: "questArrows", + tags: {W: ["trophyMasterNeutral"]}, + text: "And I'll be watching to see when the task is resolved. Hee hee hee." + }], [{ + U: [{next: "LetUsDown", text: null}], + nodeName: "active", + V: "questBirthdayHero", + tags: {W: ["birthdayKidSad"]}, + text: "There's still no Super Mountain Girl..." + }, { + U: [], nodeName: "LetUsDown", V: "questBirthdayHero", + tags: {W: ["birthdayMomNeutral"]}, text: "Don't worry dear, the Champion won't let us down..." + }], [{ + U: [{next: "trophyHint", text: null}], + nodeName: "activeTrophy", + V: "questBirthdayHero", + tags: {W: ["trophyMasterNeutral"]}, + text: "Looks like you're in the middle of helping out with this one." + }, { + U: [], + nodeName: "trophyHint", + V: "questBirthdayHero", + tags: {W: ["trophyMasterNeutral"]}, + text: "Super Mountain Girl was last seen in the mountains, investigating trees...how odd. Hee hee." + }], [{ + U: [{next: "YouWereRight", text: null}], nodeName: "complete", + V: "questBirthdayHero", tags: {W: ["birthdayKidHappy"]}, text: "Wow!! Super Mountain Girl! You're the best!!" + }, { + U: [], + nodeName: "YouWereRight", + V: "questBirthdayHero", + tags: {W: ["superMountainGirlNeutral"]}, + text: "I couldn't have done it without you Lucky, you really ARE the Champion!" + }], [{ + U: [{next: "StillWatching", text: null}], + nodeName: "completeTrophy", + V: "questBirthdayHero", + tags: {W: ["luckyNeutral"]}, + text: "'Super Mountain Rescue'" + }, { + U: [], nodeName: "StillWatching", V: "questBirthdayHero", tags: {W: ["trophyMasterNeutral"]}, + text: "I saw the whole thing, you were magnificent. Hee hee." + }], [{ + U: [{next: "check", text: null}], + nodeName: "foundTrophy", + V: "questBirthdayHero", + tags: {W: ["trophyMasterNeutral"]}, + text: "You've almost got this one finished! Keep going!" + }, { + U: [], + nodeName: "check", + V: "questBirthdayHero", + tags: {W: ["trophyMasterNeutral"]}, + text: "Check to see if Super Mountain Girl made it to the party safely!" + }], [{ + U: [{next: "mom response", text: null}], + nodeName: "inactive", + V: "questBirthdayHero", + tags: {W: ["birthdayKidSad"]}, + text: "Mom! Where is Super Mountain Girl?!" + }, + { + U: [{next: "kid whining", text: null}], + nodeName: "mom response", + V: "questBirthdayHero", + tags: {W: ["birthdayMomNeutral"]}, + text: "She'll be here soon, honey..." + }, { + U: [{next: "mom to lucky", text: null}], + nodeName: "kid whining", + V: "questBirthdayHero", + tags: {W: ["birthdayKidSad"]}, + text: "I WANT SUPER MOUNTAIN GIRL NOW!" + }, { + U: [{next: "yes", text: "Sure!"}, {next: "no", text: "I'm busy, sorry."}], + nodeName: "mom to lucky", + V: "questBirthdayHero", + tags: {W: ["birthdayMomNeutral"]}, + text: "Excuse me! You're the champion right? Could you go look for Super Mountain Girl? She was supposed to perform at my son's birthday party an hour ago..." + }, + { + U: [], + nodeName: "yes", + V: "questBirthdayHero", + tags: {W: ["birthdayMomNeutral"], zd: ["BIRTHDAY", "active"]}, + text: "Oh thank you!! She has a purple and gold uniform." + }, { + U: [], + nodeName: "no", + V: "questBirthdayHero", + tags: {W: ["birthdayMomNeutral"]}, + text: "I guess we'll just have to make do without her... don't worry sweetie..." + }], [{ + U: [{next: "questDescription", text: null}], + nodeName: "inactiveTrophy", + V: "questBirthdayHero", + tags: {W: ["trophyMasterNeutral"]}, + text: "Oh, I'm saving that spot." + }, { + U: [{next: "IllBeWatching", text: null}], + nodeName: "questDescription", + V: "questBirthdayHero", + tags: {W: ["trophyMasterNeutral"]}, + text: "I saw plans for a big Birthday Party in the northern Mountains, but something is wrong..." + }, { + U: [], + nodeName: "IllBeWatching", + V: "questBirthdayHero", + tags: {W: ["trophyMasterNeutral"]}, + text: "I'll be watching to see when the task is resolved. Hee hee hee." + }], [{ + U: [{next: "SMG response", text: null}], + nodeName: "superMountainGirl", + V: "questBirthdayHero", + tags: {W: ["luckyCurious"]}, + text: "Excuse me, are you Super Mountain Girl?" + }, + { + U: [{next: "LuckyResponse", text: null}], + nodeName: "SMG response", + V: "questBirthdayHero", + tags: {W: ["superMountainGirlNeutral"]}, + text: "Um... no." + }, { + U: [{next: "SMG confesses", text: null}], + nodeName: "LuckyResponse", + V: "questBirthdayHero", + tags: {W: ["luckyAnnoyed"]}, + text: "Really?" + }, { + U: [{next: "SMG continues", text: null}], + nodeName: "SMG confesses", + V: "questBirthdayHero", + tags: {W: ["superMountainGirlNeutral"]}, + text: "Please don't make me go to the party! I'm just a babysitter." + }, { + U: [{next: "SMG happy", text: null}], + nodeName: "lucky reassures", + V: "questBirthdayHero", + tags: {W: ["luckyHappy"]}, + text: "Being a hero doesn't mean you're not afraid... It means you'll show up even if you're scared!" + }, { + U: [{next: "SMG heads out", text: null}], + nodeName: "SMG happy", + V: "questBirthdayHero", + tags: {W: ["superMountainGirlNeutral"]}, + text: "You know what... you're right. Seems like Super Mountain Girl has a thing or two to learn from you." + }, { + U: [{next: "lucky reassures", text: null}], + nodeName: "SMG continues", + V: "questBirthdayHero", + tags: {W: ["superMountainGirlNeutral"]}, + text: "I'm not a real hero. The kids are going to hate me." + }, + { + U: [], + nodeName: "SMG heads out", + V: "questBirthdayHero", + tags: {W: ["superMountainGirlNeutral"], zd: ["BIRTHDAY", "complete"]}, + text: "Thank you. I'll head over now!" + }], [{ + U: [{next: "firstHint", text: null}], + nodeName: "active", + V: "questBoatCastle", + tags: {W: [""]}, + text: "XXX" + }, {U: [], nodeName: "firstHint", V: "questBoatCastle", tags: {W: [""]}, text: "XXX"}], [{ + U: [{ + next: "trophyHint", + text: null + }], + nodeName: "activeTrophy", + V: "questBoatCastle", + tags: {W: ["trophyMasterNeutral"]}, + text: "Looks like you're in the middle of helping out with this one." + }, + {U: [], nodeName: "trophyHint", V: "questBoatCastle", tags: {W: ["trophyMasterNeutral"]}, text: "XXX"}], [{ + U: [], + nodeName: "complete", + V: "questBoatCastle", + tags: {W: [""]}, + text: "XXX" + }], [{ + U: [{next: "StillWatching", text: null}], + nodeName: "completeTrophy", + V: "questBoatCastle", + tags: {W: ["luckyNeutral"]}, + text: '"TROPHYNAME"' + }, { + U: [], + nodeName: "StillWatching", + V: "questBoatCastle", + tags: {W: ["trophyMasterNeutral"]}, + text: "I saw the whole thing, you were magnificent. Hee hee." + }], [{ + U: [{next: "thanks", text: null}], nodeName: "found", V: "questBoatCastle", + tags: {W: [""]}, text: "XXX" + }, { + U: [], + nodeName: "thanks", + V: "questBoatCastle", + tags: {W: [""], zd: ["NAME", "complete"]}, + text: "XXX" + }], [{ + U: [{next: "lastHint", text: null}], + nodeName: "foundTrophy", + V: "questBoatCastle", + tags: {W: ["trophyMasterNeutral"]}, + text: "You've almost got this one finished!" + }, { + U: [], + nodeName: "lastHint", + V: "questBoatCastle", + tags: {W: ["trophyMasterNeutral"]}, + text: "Finish up and come back to see your reward, see hee." + }], [{ + U: [{next: "yes", text: "Sure!"}, {next: "no", text: "No."}], nodeName: "inactive", V: "questBoatCastle", + tags: {W: [""]}, text: "XXX" + }, { + U: [], + nodeName: "yes", + V: "questBoatCastle", + tags: {W: [""], zd: ["NAME", "active"]}, + text: "XXX" + }, { + U: [{next: "changeMind", text: null}], + nodeName: "no", + V: "questBoatCastle", + tags: {W: [""]}, + text: "XXX" + }], [{ + U: [{next: "questDescription", text: null}], + nodeName: "inactiveTrophy", + V: "questBoatCastle", + tags: {W: ["trophyMasterNeutral"]}, + text: "Oh, I'm saving that spot." + }, { + U: [{next: "IllBeWatching", text: null}], + nodeName: "questDescription", + V: "questBoatCastle", + tags: {W: ["trophyMasterNeutral"]}, + text: "There's someone on the island who needs the Champion's help. YOUR help." + }, + { + U: [], + nodeName: "IllBeWatching", + V: "questBoatCastle", + tags: {W: ["trophyMasterNeutral"]}, + text: "And I'll be watching to see when the task is resolved. Hee hee hee." + }], [{ + U: [], + nodeName: "active", + V: "questChase", + tags: {W: ["kijiDadNeutral"]}, + text: "Any luck? Shouldn't have given her that candy this morning..." + }], [{ + U: [{next: "escapes lucky", text: null}], + nodeName: "activeKid1", + V: "questChase", + tags: {W: ["kijiKidNeutral"]}, + text: "You found me! Okay, ready set go!!" + }, { + U: [], nodeName: "escapes lucky", V: "questChase", tags: { + W: ["luckyNeutral"], + zd: ["CHASE", "active2"] + }, text: "Hey! Get back here!" + }], [{ + U: [{next: "escapes again", text: null}], + nodeName: "activeKid2", + V: "questChase", + tags: {W: ["kijiKidNeutral"]}, + text: "You lost! Okay let's race again!" + }, { + U: [], + nodeName: "escapes again", + V: "questChase", + tags: {W: ["luckyNeutral"], zd: ["CHASE", "active3"]}, + text: "So close that time..." + }], [{ + U: [{next: "kid agrees", text: null}], + nodeName: "activeKid3", + V: "questChase", + tags: {W: ["luckyNeutral"]}, + text: "Okay kid, let's get you back to your dad now..." + }, { + U: [], nodeName: "kid agrees", + V: "questChase", tags: {W: ["kijiKidNeutral"], zd: ["CHASE", "found"]}, text: "Okay! I'll meet you there! Bye!" + }], [{ + U: [{next: "trophyHint", text: null}], + nodeName: "activeTrophy", + V: "questChase", + tags: {W: ["trophyMasterNeutral"]}, + text: "Looks like you're in the middle of helping out with this one." + }, { + U: [], + nodeName: "trophyHint", + V: "questChase", + tags: {W: ["trophyMasterNeutral"]}, + text: "Find that speed Kijimura child running around on Marathon Beach!" + }], [{ + U: [], nodeName: "complete", V: "questChase", tags: {W: ["kijiDadNeutral"]}, + text: "Heh... She's a bit of a handful, but she sure is fast..." + }], [{ + U: [], + nodeName: "completeKid", + V: "questChase", + tags: {W: ["kijiKidNeutral"]}, + text: "I'm going to be the Grand Champion of Marathon when I grow up!" + }], [{ + U: [{next: "StillWatching", text: null}], + nodeName: "completeTrophy", + V: "questChase", + tags: {W: ["luckyNeutral"]}, + text: '"Marathon Babysitter"' + }, { + U: [], + nodeName: "StillWatching", + V: "questChase", + tags: {W: ["trophyMasterNeutral"]}, + text: "I saw the whole thing, you were magnificent. Hee hee." + }], [{ + U: [], + nodeName: "found", + V: "questChase", + tags: {W: ["kijiDadNeutral"], zd: ["CHASE", "complete"]}, + text: "Thanks for your help, I can't believe you actually caught her!" + }], [{ + U: [{next: "lastHint", text: null}], + nodeName: "foundTrophy", + V: "questChase", + tags: {W: ["trophyMasterNeutral"]}, + text: "You've almost got this one finished!" + }, { + U: [], + nodeName: "lastHint", + V: "questChase", + tags: {W: ["trophyMasterNeutral"]}, + text: "Make sure father and daughter Kijimura are reunited after your long chase!" + }], [{ + U: [{next: "kijikid", text: null}], + nodeName: "inactive", + V: "questChase", + tags: {W: ["kijiDadNeutral"]}, + text: "*huff* ... *wheeze* ... All right, how about a new game where we just stay in one place...?" + }, { + U: [{next: "ohnonnot", text: null}], + nodeName: "kijikid", + V: "questChase", + tags: {W: ["kijiKidNeutral"]}, + text: "Heeheehee! That's boring! Try and catch me Papa!" + }, { + U: [{next: "tolucky", text: null}], + nodeName: "ohnonnot", + V: "questChase", + tags: {W: ["kijiDadNeutral"]}, + text: "*huff* Oh no... not again..." + }, { + U: [{next: "tolucky2", text: null}], nodeName: "tolucky", V: "questChase", tags: {W: ["kijiDadNeutral"]}, + text: "Darned kid... can't keep up..." + }, { + U: [{next: "yes", text: "Sure!"}, {next: "no", text: "Sorry..."}], + nodeName: "tolucky2", + V: "questChase", + tags: {W: ["kijiDadNeutral"]}, + text: "You there... can you go see where she went?" + }, { + U: [], + nodeName: "yes", + V: "questChase", + tags: {W: ["kijiDadNeutral"], zd: ["CHASE", "active"]}, + text: "You're a lifesaver... Let me just sit down a second..." + }, { + U: [], + nodeName: "no", + V: "questChase", + tags: {W: ["kijiDadNeutral"]}, + text: "Fair enough... I'll go look when I catch my breath..." + }], [{ + U: [{ + next: "questDescription", + text: null + }], + nodeName: "inactiveTrophy", + V: "questChase", + tags: {W: ["trophyMasterNeutral"]}, + text: "Oh, I'm saving that spot." + }, { + U: [{next: "IllBeWatching", text: null}], + nodeName: "questDescription", + V: "questChase", + tags: {W: ["trophyMasterNeutral"]}, + text: "One of the Kijimura on Marathon Beach seems to be having a hard time keeping up with his daughter..." + }, { + U: [], + nodeName: "IllBeWatching", + V: "questChase", + tags: {W: ["trophyMasterNeutral"]}, + text: "I'll be watching to see when the task is resolved. Hee hee hee." + }], [{ + U: [], + nodeName: "active", + V: "questCoach", + tags: {W: ["coachNeutral"]}, + text: "Daichi ususally hangs out in the Noodle Bar to the West, always eating and making excuses..." + }], [{ + U: [{next: "areYouTaro", text: null}], + nodeName: "activeTrainee", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "Yum yum yum." + }, { + U: [{next: "whoWantsTo", text: null}], + nodeName: "areYouTaro", + V: "questCoach", + tags: {W: ["luckyNeutral"]}, + text: "Hey, are you Daichi?" + }, { + U: [{next: "SupposedToBe", text: null}], nodeName: "whoWantsTo", V: "questCoach", tags: {W: ["traineeNoodle"]}, + text: "...who wants to know?" + }, { + U: [{next: "CoachSent", text: null}], + nodeName: "SupposedToBe", + V: "questCoach", + tags: {W: ["luckyNeutral"]}, + text: "You're supposed to be at your workout!" + }, { + U: [{next: "StopEat", text: null}], + nodeName: "CoachSent", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "Oh no, did Coach send you? She is relentless..." + }, { + U: [{next: "NotLikeThat", text: null}], + nodeName: "StopEat", + V: "questCoach", + tags: {W: ["luckyAnnoyed"]}, + text: "She's waiting for you while you sit here and relax!" + }, { + U: [{ + next: "ForgotShoes", + text: null + }], + nodeName: "NotLikeThat", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "Hey, it's not like that! I'd LOVE to go work out, but I....uh..." + }, { + U: [{next: "WhereShoes", text: null}], + nodeName: "ForgotShoes", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "I forgot my running shoes! Can't work out without proper shoes!" + }, { + U: [{next: "MarathonBeach", text: null}], + nodeName: "WhereShoes", + V: "questCoach", + tags: {W: ["luckyShocked"]}, + text: "Oh no! Where did you leave them?" + }, { + U: [{next: "SeeAbout", text: null}], + nodeName: "MarathonBeach", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "Unm...all the way over in Marathon Beach! Way too far for anyone to go get them." + }, { + U: [{next: "cantTakeHint", text: null}], + nodeName: "SeeAbout", + V: "questCoach", + tags: {W: ["luckyHappy"]}, + text: "We'll see about that! Wait here, I'll find them!" + }, { + U: [{next: "ohGreat", text: null}], + nodeName: "cantTakeHint", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "Oh, great!" + }, { + U: [], + nodeName: "ohGreat", + V: "questCoach", + tags: {W: ["traineeNoodle"], zd: ["COACH", "shoes"]}, + text: "(Oh, great...)" + }], + [{ + U: [{next: "trophyHint", text: null}], + nodeName: "activeTrophy", + V: "questCoach", + tags: {W: ["trophyMasterNeutral"]}, + text: "Looks like you're in the middle of helping out with this one." + }, { + U: [], + nodeName: "trophyHint", + V: "questCoach", + tags: {W: ["trophyMasterNeutral"]}, + text: "Tanooki Gym's Coach is missing her trainee Daichi! Help find him in the Noodle Shop before he misses his workout." + }], [{ + U: [{next: "sniff", text: null}], + nodeName: "complete", + V: "questCoach", + tags: {W: ["coachNeutral"]}, + text: "I don't know what you said, but I've never seen Daichi work so hard!" + }, + { + U: [], + nodeName: "sniff", + V: "questCoach", + tags: {W: ["coachNeutral"]}, + text: "It's moments like these that make coaching worth it. *sniff*" + }], [{ + U: [{next: "goodworkthere", text: null}], + nodeName: "completeTrainee", + V: "questCoach", + tags: {W: ["traineeRun"]}, + text: "*huff huff* ONE TWO! ONE TWO! *huff huff*" + }, { + U: [{next: "tthankscoach", text: null}], + nodeName: "goodworkthere", + V: "questCoach", + tags: {W: ["coachNeutral"]}, + text: "Good work there, Daichi, nice hustle!" + }, { + U: [], nodeName: "tthankscoach", V: "questCoach", tags: {W: ["traineeRun"]}, + text: "*huff huff* T-Thanks Coach! *huff huff*" + }], [{ + U: [{next: "StillWatching", text: null}], + nodeName: "completeTrophy", + V: "questCoach", + tags: {W: ["luckyNeutral"]}, + text: '"Gym Motivater"' + }, { + U: [], + nodeName: "StillWatching", + V: "questCoach", + tags: {W: ["trophyMasterNeutral"]}, + text: "I saw the whole thing, you were magnificent. Hee hee." + }], [{ + U: [{next: "lastHint", text: null}], + nodeName: "foundTrophy", + V: "questCoach", + tags: {W: ["trophyMasterNeutral"]}, + text: "You've almost got this one finished!" + }, { + U: [], + nodeName: "lastHint", + V: "questCoach", + tags: {W: ["trophyMasterNeutral"]}, + text: "Daichi seems a little unwilling to return to the gym, see if you can help convince him to work out again!" + }], [{ + U: [], + nodeName: "hareComplete", + V: "questCoach", + tags: {W: ["hareNeutral"]}, + text: "Finally that cat left, I can enjoy my noodles in peace." + }], [{ + U: [], + nodeName: "hareIncomplete", + V: "questCoach", + tags: {W: ["hareNeutral"]}, + text: "That cat is always in here eating noodles..." + }], [{ + U: [{next: "nowWhere", text: null}], nodeName: "inactive", V: "questCoach", tags: {W: ["coachNeutral"]}, + text: "Good Work everyone! Good effort!" + }, { + U: [{next: "WhoLooking", text: null}], + nodeName: "nowWhere", + V: "questCoach", + tags: {W: ["coachNeutral"]}, + text: "Now where did Daichi go..." + }, { + U: [{next: "soLazy", text: null}], + nodeName: "WhoLooking", + V: "questCoach", + tags: {W: ["luckyNeutral"]}, + text: "Who are you looking for?" + }, { + U: [{next: "soLazy1", text: null}], + nodeName: "soLazy", + V: "questCoach", + tags: {W: ["coachNeutral"]}, + text: "Oh, my new trainee didn't show up for his workout!" + }, { + U: [{next: "lookBut", text: null}], + nodeName: "soLazy1", + V: "questCoach", + tags: {W: ["coachNeutral"]}, + text: "He's so lazy, always looking to get out of our workout sessions. How can he expect results??" + }, { + U: [{next: "help", text: "Help"}, {next: "sorry", text: "Sorry"}], + nodeName: "lookBut", + V: "questCoach", + tags: {W: ["coachNeutral"]}, + text: "I'd go look for him, but I've got other trainees to help!" + }, { + U: [{next: "getUpAndGo", text: null}], + nodeName: "help", + V: "questCoach", + tags: {W: ["luckyNeutral"]}, + text: "Training is important! I can go help find him!" + }, { + U: [], + nodeName: "getUpAndGo", + V: "questCoach", + tags: {W: ["coachNeutral"], zd: ["COACH", "active"]}, + text: "Now THAT'S the attitude of a winner! Daichi ususally hangs out in the Noodle Bar to the East." + }, { + U: [{next: "whoCanHelp", text: null}], + nodeName: "sorry", + V: "questCoach", + tags: {W: ["luckyWorried"]}, + text: "Sorry, wish I could help..." + }, { + U: [], + nodeName: "whoCanHelp", + V: "questCoach", + tags: {W: ["coachNeutral"]}, + text: "If only someone had the time to go look for him..." + }], [{ + U: [], nodeName: "inactiveConvini", V: "questCoach", tags: {W: ["conviniNeutral"]}, + text: "Welcome! Let me know if you need anything." + }], [{ + U: [{next: "stopDistracting", text: null}], + nodeName: "inactiveTrainee", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "Yum yum yum" + }, { + U: [{next: "soSorry", text: null}], + nodeName: "stopDistracting", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "Noodles are great! So much better than going to the gym." + }, { + U: [], + nodeName: "soSorry", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "...but don't tell Coach I said that." + }], [{ + U: [{next: "questDescription", text: null}], + nodeName: "inactiveTrophy", V: "questCoach", tags: {W: ["trophyMasterNeutral"]}, text: "Oh, I'm saving that spot." + }, { + U: [{next: "IllBeWatching", text: null}], + nodeName: "questDescription", + V: "questCoach", + tags: {W: ["trophyMasterNeutral"]}, + text: "Tanooki Gym's Coach seems to be missing one of her trainees..." + }, { + U: [], + nodeName: "IllBeWatching", + V: "questCoach", + tags: {W: ["trophyMasterNeutral"]}, + text: "And I'll be watching to see when the task is resolved. Hee hee hee." + }], [{ + U: [{next: "takeBackShoes", text: null}], nodeName: "shoes", + V: "questCoach", tags: {W: ["luckyNeutral"]}, text: "These must be Taro's shoes! Wow, they look brand new!" + }, { + U: [], + nodeName: "takeBackShoes", + V: "questCoach", + tags: {W: ["luckyNeutral"], zd: ["COACH", "shoesFound"]}, + text: "I better take them back to him in the noodle shop!" + }], [{ + U: [{next: "greatnewsshoes", text: null}], + nodeName: "shoesFoundTrainee", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "Yum yum yum." + }, { + U: [{next: "ohhowgreat", text: null}], + nodeName: "greatnewsshoes", + V: "questCoach", + tags: {W: ["luckyNeutral"]}, + text: "Great news Daichi! I found your shoes!" + }, + { + U: [{next: "nowtrain", text: null}], + nodeName: "ohhowgreat", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "...oh. That's great news..." + }, { + U: [{next: "wishicouldbut", text: null}], + nodeName: "nowtrain", + V: "questCoach", + tags: {W: ["luckyNeutral"]}, + text: "Now you can go train at the gym!" + }, { + U: [{next: "butwhat", text: null}], + nodeName: "wishicouldbut", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "Well, I wish I could but..." + }, { + U: [{next: "waterbottle", text: null}], nodeName: "butwhat", V: "questCoach", tags: {W: ["luckyNeutral"]}, + text: "But what?" + }, { + U: [{next: "stayHydrated", text: null}], + nodeName: "waterbottle", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "I don't have a water bottle! I can't work out without one." + }, { + U: [{next: "stayHere", text: null}], + nodeName: "stayHydrated", + V: "questCoach", + tags: {W: ["luckyWorried"]}, + text: "That's true...it's very important to stay hydrated...." + }, { + U: [{next: "findWater", text: null}], + nodeName: "stayHere", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "I had better stay here hydrating myself with more noodles!" + }, + { + U: [{next: "closeby", text: null}], + nodeName: "findWater", + V: "questCoach", + tags: {W: ["luckyNeutral"]}, + text: "I'm sure I can find a water bottle for you! I'll go check at the convenience store!" + }, { + U: [{next: "justcantTakeHint", text: null}], + nodeName: "closeby", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "...oh good. There's one just south of here." + }, { + U: [], + nodeName: "justcantTakeHint", + V: "questCoach", + tags: {W: ["traineeNoodle"], zd: ["COACH", "water"]}, + text: "(This cat just can't take a hint...)" + }], [{ + U: [{ + next: "leftshoeswhat", + text: null + }], nodeName: "shoesTrainee", V: "questCoach", tags: {W: ["traineeNoodle"]}, text: "Yum yum yum." + }, { + U: [{next: "swmb", text: null}], + nodeName: "leftshoeswhat", + V: "questCoach", + tags: {W: ["luckyNeutral"]}, + text: "Hey, where did you say you left your shoes?" + }, { + U: [], + nodeName: "swmb", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "...oh, on Marathon Beach in the South West. Probably too far to try and find..." + }], [{ + U: [{next: "needWater", text: null}], nodeName: "waterConvini", V: "questCoach", tags: {W: ["conviniNeutral"]}, + text: "Welcome! How can I help you?" + }, { + U: [{next: "ohyes", text: null}], + nodeName: "needWater", + V: "questCoach", + tags: {W: ["luckyCurious"]}, + text: "Hello, I'm looking for a water bottle..." + }, { + U: [{next: "noMoney", text: null}], + nodeName: "ohyes", + V: "questCoach", + tags: {W: ["conviniNeutral"]}, + text: "Oh PERFECT!" + }, { + U: [{next: "ohno", text: null}], + nodeName: "noMoney", + V: "questCoach", + tags: {W: ["luckyCurious"]}, + text: "Perfect?" + }, { + U: [{next: "takeasmany", text: null}], + nodeName: "ohno", + V: "questCoach", + tags: {W: ["conviniNeutral"]}, + text: "We had a bunch of extra water bottles delivered and now we have way too many." + }, + { + U: [{next: "justone", text: null}], + nodeName: "takeasmany", + V: "questCoach", + tags: {W: ["conviniNeutral"]}, + text: "Take as many as you want!" + }, { + U: [{next: "takemore", text: null}], + nodeName: "justone", + V: "questCoach", + tags: {W: ["luckyNeutral"]}, + text: "Thanks but I just need one." + }, { + U: [{next: "ahook", text: null}], + nodeName: "takemore", + V: "questCoach", + tags: {W: ["conviniNeutral"]}, + text: "No please take more! 10 at least!" + }, { + U: [{next: "comeback", text: null}], + nodeName: "ahook", + V: "questCoach", + tags: {W: ["luckyNeutral"]}, + text: "Ah, um...ok! Happy to help." + }, + { + U: [], + nodeName: "comeback", + V: "questCoach", + tags: {W: ["conviniNeutral"], zd: ["COACH", "waterFound"]}, + text: "Oh thank you! And come back if you ever need more!" + }], [{ + U: [{next: "greatnewswater", text: null}], + nodeName: "waterFoundTrainee", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "Yum yum yum." + }, { + U: [{next: "somuchwater", text: null}], + nodeName: "greatnewswater", + V: "questCoach", + tags: {W: ["luckyNeutral"]}, + text: "Great news Daichi! I got you LOTS of water! You'll be hydrated for weeks!" + }, { + U: [{next: "nowtrainWater", text: null}], + nodeName: "somuchwater", V: "questCoach", tags: {W: ["traineeNoodle"]}, text: "...oh. That's great news..." + }, { + U: [{next: "wishicouldbutWater", text: null}], + nodeName: "nowtrainWater", + V: "questCoach", + tags: {W: ["luckyNeutral"]}, + text: "Now you can go train at the gym!" + }, { + U: [{next: "butwhatWater", text: null}], + nodeName: "wishicouldbutWater", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "Well, I wish I could but..." + }, { + U: [{next: "luckybandana", text: null}], + nodeName: "butwhatWater", + V: "questCoach", + tags: {W: ["luckyAnnoyed"]}, + text: "But what?" + }, + { + U: [{next: "wherebandana", text: null}], + nodeName: "luckybandana", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "I don't have my lucky bandana! How could I work out without luck on my side??" + }, { + U: [{next: "waterfire", text: null}], + nodeName: "wherebandana", + V: "questCoach", + tags: {W: ["luckyWorried"]}, + text: "Oh no...where did you lose it?" + }, { + U: [{next: "ohmywhat", text: null}], + nodeName: "waterfire", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "It fell in the ocean, was eaten by a fish, and then the fish exploded." + }, + { + U: [{next: "cantfind", text: null}], + nodeName: "ohmywhat", + V: "questCoach", + tags: {W: ["luckyShocked"]}, + text: "Oh my!" + }, { + U: [{next: "hmmmmmm1", text: null}], + nodeName: "cantfind", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "Yes it's sadly lost forever. DON'T LOOK FOR IT." + }, { + U: [{next: "giveup", text: "Give Up"}, {next: "givebandana", text: "Give Bandana"}], + nodeName: "hmmmmmm1", + V: "questCoach", + tags: {W: ["luckyHappy"]}, + text: "Hmmm...." + }, { + U: [{next: "nomnomonom", text: null}], nodeName: "giveup", V: "questCoach", tags: {W: ["luckyHappy"]}, + text: "I guess there's nothing to be done..." + }, { + U: [], + nodeName: "nomnomonom", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "That's right! *yum yum yum*" + }, { + U: [{next: "xban", text: null}], + nodeName: "givebandana", + V: "questCoach", + tags: {W: ["luckyHappy"]}, + text: "Well I have some good news for you!" + }, { + U: [{next: "givetoyou", text: null}], + nodeName: "xban", + V: "questCoach", + tags: {W: ["luckyHappy"]}, + text: "I've got an extra bandana!" + }, { + U: [{next: "youddothat", text: null}], nodeName: "givetoyou", V: "questCoach", tags: {W: ["luckyNeutral"]}, + text: "I always keep it for good luck, but I'd be happy to give it to you!" + }, { + U: [{next: "ofcourseiwould", text: null}], + nodeName: "youddothat", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "Oh...you'd really do that? For me?" + }, { + U: [{next: "overwhelemed", text: null}], + nodeName: "ofcourseiwould", + V: "questCoach", + tags: {W: ["luckyHappy"]}, + text: "Well of course! Sports aren't just competition, athletes like us have to look out for each other too!" + }, { + U: [{next: "greatfuel", text: null}], + nodeName: "overwhelemed", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "You really see me as an athlete? All I'm doing is avoiding work and eating noodles." + }, { + U: [{next: "thankyoulucky", text: null}], + nodeName: "greatfuel", + V: "questCoach", + tags: {W: ["luckyHappy"]}, + text: "Noodles are great fuel for excercise, I see nothing but potential!" + }, { + U: [], + nodeName: "thankyoulucky", + V: "questCoach", + tags: {W: ["traineeNoodle"], zd: ["COACH", "complete"]}, + text: "Thank you for beleiving in me Lucky, I'm gonna go to the gym right now!" + }], [{ + U: [{next: "areYouTarow", text: null}], + nodeName: "waterTrainee", V: "questCoach", tags: {W: ["traineeNoodle"]}, text: "Yum yum yum." + }, { + U: [{next: "probclosed", text: null}], + nodeName: "areYouTarow", + V: "questCoach", + tags: {W: ["luckyNeutral"]}, + text: "Hey, where the nearest convenience store?" + }, { + U: [{next: "thankscheck", text: null}], + nodeName: "probclosed", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "There's one to south, but I think it's um...probably closed..." + }, { + U: [{next: "ofcourseyouwill", text: null}], nodeName: "thankscheck", V: "questCoach", tags: {W: ["luckyNeutral"]}, + text: "Thanks! I'll go check" + }, { + U: [], + nodeName: "ofcourseyouwill", + V: "questCoach", + tags: {W: ["traineeNoodle"]}, + text: "(Of course you will...)" + }], [{ + U: [{next: "tightSchedule", text: null}], + nodeName: "activeFreshWater", + V: "questConstruction", + tags: {W: ["luckyNeutral"]}, + text: "Wow, here's some fresh water already in a bottle! How thoughtful!" + }, { + U: [], + nodeName: "tightSchedule", + V: "questConstruction", + tags: {W: ["luckyNeutral"], zd: ["CONSTRUCTION", "found"]}, + text: "I better take this back to the construction worker in Tanooki City, he seemed to be on a tight schedule." + }], + [{ + U: [{next: "trophyHint", text: null}], + nodeName: "activeTrophy", + V: "questConstruction", + tags: {W: ["trophyMasterNeutral"]}, + text: "Looks like you're in the middle of helping out with this one." + }, { + U: [], + nodeName: "trophyHint", + V: "questConstruction", + tags: {W: ["trophyMasterNeutral"]}, + text: "The construction workers need fresh water from the Mountain Hot Springs in the North." + }], [{ + U: [], + nodeName: "activeWorker", + V: "questConstruction", + tags: {W: ["ushiNeutral"]}, + text: "The Hot Springs are North in the mountains. It seems so dangerous...be careful!" + }], + [{ + U: [{next: "StillWatching", text: null}], + nodeName: "completeTrophy", + V: "questConstruction", + tags: {W: ["luckyNeutral"]}, + text: "'Construction Employee of the Year'" + }, { + U: [], + nodeName: "StillWatching", + V: "questConstruction", + tags: {W: ["trophyMasterNeutral"]}, + text: "I saw the whole thing, you were magnificent. Hee hee." + }], [{ + U: [{next: "quiteRelaxing", text: null}], + nodeName: "completeWorker", + V: "questConstruction", + tags: {W: ["ushiNeutral"]}, + text: "I can't believe how brave you were to go to the hot springs." + }, { + U: [{ + next: "lurkingDangers", + text: null + }], + nodeName: "quiteRelaxing", + V: "questConstruction", + tags: {W: ["luckyNeutral"]}, + text: "Brave? It was really quite relaxing...you should try!" + }, { + U: [{next: "eachOwn", text: null}], + nodeName: "lurkingDangers", + V: "questConstruction", + tags: {W: ["ushiNeutral"]}, + text: "L-l-l-leave the city?? Are you crazy?...w-who knows what dangers are l-l-lurking out there!" + }, { + U: [], + nodeName: "eachOwn", + V: "questConstruction", + tags: {W: ["luckyNeutral"]}, + text: "Hm...to each their own I guess." + }], [{ + U: [{next: "returnWater", text: null}], + nodeName: "foundTrophy", + V: "questConstruction", + tags: {W: ["trophyMasterNeutral"]}, + text: "You've almost got this one finished!" + }, { + U: [], + nodeName: "returnWater", + V: "questConstruction", + tags: {W: ["trophyMasterNeutral"]}, + text: "Take the fresh water you found to the construction workers and call it a day, hee hee." + }], [{ + U: [{next: "difficultFind", text: null}], + nodeName: "foundWorker", + V: "questConstruction", + tags: {W: ["ushiNeutral"]}, + text: "Oh! You brought the fresh water from the spring!" + }, { + U: [{next: "clang", text: null}], + nodeName: "difficultFind", + V: "questConstruction", + tags: {W: ["ushiNeutral"]}, + text: "I can't imagine how difficult it was to find, you really might be the Chosen One!" + }, { + U: [{next: "openUp", text: null}], + nodeName: "clang", + V: "questConstruction", + tags: {}, + text: "*clang clang clang *" + }, { + U: [], + nodeName: "openUp", + V: "questConstruction", + tags: {W: ["ushiNeutral"], zd: ["CONSTRUCTION", "complete"]}, + text: "The construction is finished, right on schedule! Tanooki City can never thank you enough!" + }], [{ + U: [{next: "questDescription", text: null}], nodeName: "inactiveTrophy", + V: "questConstruction", tags: {W: ["trophyMasterNeutral"]}, text: "Oh, I'm saving that spot." + }, { + U: [{next: "IllBeWatching", text: null}], + nodeName: "questDescription", + V: "questConstruction", + tags: {W: ["trophyMasterNeutral"]}, + text: "Tanooki City's construction project is falling behind schedule!" + }, { + U: [], + nodeName: "IllBeWatching", + V: "questConstruction", + tags: {W: ["trophyMasterNeutral"]}, + text: "Talk to the construction workers to see what's wrong. I'll be watching to see when the task is resolved. Hee hee hee." + }], [{ + U: [{ + next: "behindSchedule", + text: null + }], + nodeName: "inactiveWorker", + V: "questConstruction", + tags: {W: ["ushiNeutral"]}, + text: "Oh dear...so behind schedule..." + }, { + U: [{next: "whatConstruction", text: null}], + nodeName: "behindSchedule", + V: "questConstruction", + tags: {W: ["ushiNeutral"]}, + text: "Sorry kid, can't let you in. This part of the city is closed for construction." + }, { + U: [{next: "noWater", text: null}], + nodeName: "whatConstruction", + V: "questConstruction", + tags: {W: ["luckyNeutral"]}, + text: "Oh, when will it be open again?" + }, { + U: [{next: "freshWater", text: null}], + nodeName: "noWater", + V: "questConstruction", + tags: {W: ["ushiNeutral"]}, + text: "I'm afraid you might be waiting awhile. We've run out of fresh water to mix the cement." + }, { + U: [{next: "tooSoft", text: null}], + nodeName: "freshWater", + V: "questConstruction", + tags: {W: ["ushiNeutral"]}, + text: "If only we had fresh water from the hot springs in the mountains..." + }, { + U: [{next: "illHelp", text: "I'll Help!"}, {next: "soundsHard", text: "Sorry..."}], + nodeName: "tooSoft", + V: "questConstruction", + tags: {W: ["ushiNeutral"]}, + text: "But urban life has made us too soft! No one from the city would dare climbing the mountains to get it." + }, + { + U: [{next: "thankYou", text: null}], + nodeName: "illHelp", + V: "questConstruction", + tags: {W: ["luckyNeutral"]}, + text: "I can find the Hot Springs and bring back the water!" + }, { + U: [], + nodeName: "thankYou", + V: "questConstruction", + tags: {W: ["ushiNeutral"], zd: ["CONSTRUCTION", "active"]}, + text: "Oh! Thank you! We might just finish on schedule after all!" + }, { + U: [{next: "neverFinish", text: null}], + nodeName: "soundsHard", + V: "questConstruction", + tags: {W: ["luckyNeutral"]}, + text: "Yikes, that sounds pretty tough." + }, { + U: [], nodeName: "neverFinish", + V: "questConstruction", tags: {W: ["ushiNeutral"]}, text: "We'll never finish at this rate..." + }], [{ + U: [{next: "hint", text: null}], + nodeName: "activeArtisan", + V: "questDriftwood", + tags: {W: ["kijimunaNeutral"]}, + text: "Let me know when you've found three pieces of wood." + }, { + U: [], + nodeName: "hint", + V: "questDriftwood", + tags: {W: ["kijimunaNeutral"]}, + text: "You can find them on the beach when the tide is low." + }], [{ + U: [{next: "trophyHint", text: null}], + nodeName: "activeTrophy", + V: "questDriftwood", + tags: {W: ["trophyMasterNeutral"]}, + text: "Looks like you're in the middle of helping out with this one." + }, + { + U: [], + nodeName: "trophyHint", + V: "questDriftwood", + tags: {W: ["trophyMasterNeutral"]}, + text: "Find three pieces of driftwood on the Southwest beach for the driftwood artist, hee hee." + }], [{ + U: [], + nodeName: "branch1", + V: "questDriftwood", + tags: {W: ["luckyNeutral"], zd: ["DRIFTWOOD", "second"]}, + text: "Yay! This is a nice piece of driftwood." + }], [{ + U: [], + nodeName: "branch2", + V: "questDriftwood", + tags: {W: ["luckyNeutral"], zd: ["DRIFTWOOD", "third"]}, + text: "Two down, one to go!" + }], [{ + U: [], nodeName: "branch3", V: "questDriftwood", tags: { + W: ["luckyHappy"], + zd: ["DRIFTWOOD", "found"] + }, text: "That's three! I can take these back to the artisan now!" + }], [{ + U: [], + nodeName: "completeArtisan", + V: "questDriftwood", + tags: {W: ["kijimunaNeutral"]}, + text: "Nothing is more inspiring than our Champion! Thank you Lucky!" + }], [{ + U: [{next: "StillWatching", text: null}], + nodeName: "completeTrophy", + V: "questDriftwood", + tags: {W: ["luckyNeutral"]}, + text: "'Artist's Apprentice'" + }, { + U: [], + nodeName: "StillWatching", + V: "questDriftwood", + tags: {W: ["trophyMasterNeutral"]}, + text: "I saw the whole thing, you were magnificent. Hee hee." + }], + [{ + U: [{next: "dragon", text: null}], + nodeName: "foundArtisan", + V: "questDriftwood", + tags: {W: ["kijimunaNeutral"]}, + text: "Oh! You found three wonderful pieces!" + }, { + U: [{next: "atOnce", text: null}], + nodeName: "dragon", + V: "questDriftwood", + tags: {W: ["kijimunaNeutral"]}, + text: "Hm what's this I'm seeing? A dragon, perhaps... or the curve of a tortoise's shell..." + }, { + U: [{next: "clangs", text: null}], + nodeName: "atOnce", + V: "questDriftwood", + tags: {W: ["kijimunaNeutral"]}, + text: "No! I see something even more inspiring! I must work at once!" + }, + { + U: [{next: "masterpiece", text: null}], + nodeName: "clangs", + V: "questDriftwood", + tags: {}, + text: "*clang clang clang*" + }, { + U: [], + nodeName: "masterpiece", + V: "questDriftwood", + tags: {W: ["kijimunaNeutral"], zd: ["DRIFTWOOD", "complete"]}, + text: "Behold! My greatest masterpiece!!" + }], [{ + U: [{next: "lastHint", text: null}], + nodeName: "foundTrophy", + V: "questDriftwood", + tags: {W: ["trophyMasterNeutral"]}, + text: "You've almost got this one finished!" + }, { + U: [], + nodeName: "lastHint", + V: "questDriftwood", + tags: {W: ["trophyMasterNeutral"]}, + text: "Take the driftwood back to the artist's studio for your beautiful reward, hee hee." + }], + [{ + U: [{next: "continue", text: null}], + nodeName: "inactiveArtisan", + V: "questDriftwood", + tags: {W: ["kijimunaNeutral"]}, + text: "Welcome to my studio. New Champion, I presume? Not many visitors out here... the Kijimuna scare most people off." + }, { + U: [{next: "request", text: null}], + nodeName: "continue", + V: "questDriftwood", + tags: {W: ["kijimunaNeutral"]}, + text: "As you can see, my specialty is in sculpture. I use driftwood that washes up on the beach." + }, { + U: [{next: "yes", text: "Sure!"}, {next: "no", text: "Sorry"}], + nodeName: "request", + V: "questDriftwood", + tags: {W: ["kijimunaNeutral"]}, + text: "I'd like to start a new sculpture, but my poor knees are killing me. Would you grant me a kindness and bring me some wood?" + }, { + U: [], + nodeName: "yes", + V: "questDriftwood", + tags: {W: ["kijimunaNeutral"], zd: ["DRIFTWOOD", "first"]}, + text: "Excellent! Three pieces should be enough." + }, { + U: [], + nodeName: "no", + V: "questDriftwood", + tags: {W: ["kijimunaNeutral"]}, + text: "Very well then... Feel free to keep browsing." + }], [{ + U: [{next: "questDescription", text: null}], nodeName: "inactiveTrophy", + V: "questDriftwood", tags: {W: ["trophyMasterNeutral"]}, text: "Oh, I'm saving that spot." + }, { + U: [{next: "IllBeWatching", text: null}], + nodeName: "questDescription", + V: "questDriftwood", + tags: {W: ["trophyMasterNeutral"]}, + text: "The driftwood artist in the Southwest Beach seems to have artist's block..." + }, { + U: [], + nodeName: "IllBeWatching", + V: "questDriftwood", + tags: {W: ["trophyMasterNeutral"]}, + text: "Maybe you're the inspiration she needs. I'll be watching to see when the task is resolved. Hee hee hee." + }], [{ + U: [], nodeName: "sculpture1", + V: "questDriftwood", tags: {W: ["luckyNeutral"]}, text: "Oh my, such interesting shapes." + }], [{ + U: [], + nodeName: "sculpture2", + V: "questDriftwood", + tags: {W: ["luckyNeutral"]}, + text: "Wow, is this all driftwood?" + }], [{ + U: [], + nodeName: "sculpture3", + V: "questDriftwood", + tags: {W: ["luckyWorried"]}, + text: "I'm not sure I understand art..." + }], [{ + U: [], + nodeName: "sculpture4", + V: "questDriftwood", + tags: {W: ["luckyNeutral"]}, + text: "It's beautiful...I think?" + }], [{ + U: [{next: "soHonored", text: null}], nodeName: "sculptureLucky", V: "questDriftwood", + tags: {W: ["luckyNeutral"]}, text: "Is that me???" + }, { + U: [], + nodeName: "soHonored", + V: "questDriftwood", + tags: {W: ["luckyNeutral"]}, + text: "Oh wow, I'm so honored. I better keep practicing so I can live up to this scupture!" + }], [{ + U: [], + nodeName: "active", + V: "questFan", + tags: {W: ["inariNeutral"]}, + text: "The Tengu is in the Table Tennis Dojo north of here, switch his fan to stop the wind!" + }], [{ + U: [{next: "whatdoing", text: null}], + nodeName: "activeFan", + V: "questFan", + tags: {W: ["luckyNeutral"]}, + text: "(There's the fan...I've almost got it...)" + }, + { + U: [{next: "nothing", text: "Nothing"}, {next: "trade", text: "Trade"}, { + next: "beautifulfan", + text: "Beautiful Fan" + }], nodeName: "whatdoing", V: "questFan", tags: {W: ["tenguNeutral"]}, text: "WHAT ARE YOU DOING THERE?" + }, { + U: [{next: "stayawayfan", text: null}], + nodeName: "nothing", + V: "questFan", + tags: {W: ["luckyShocked"]}, + text: "N-nothing!! I was just looking around." + }, { + U: [{next: "nevertrade", text: null}], + nodeName: "trade", + V: "questFan", + tags: {W: ["luckyRawr"]}, + text: "Was jsut admiring your fan...care to trade for it?" + }, { + U: [], nodeName: "nevertrade", + V: "questFan", tags: {W: ["tenguNeutral"]}, text: "Hah! I'd NEVER trade my beautiful fan, it's one of a kind!" + }, { + U: [], + nodeName: "stayawayfan", + V: "questFan", + tags: {W: ["tenguNeutral"]}, + text: "Well look around further from my beautiful fan. No one can take it from me!" + }, { + U: [{next: "everyonewantsit", text: null}], + nodeName: "beautifulfan", + V: "questFan", + tags: {W: ["luckySmileSweatdrop"]}, + text: "I was just admiring your fan, it's so beautiful!" + }, { + U: [{next: "takeit", text: null}], nodeName: "everyonewantsit", V: "questFan", tags: {W: ["tenguNeutral"]}, + text: "Ohohoh, you have very good taste! Everyone admires my fan, some have even tried to take it!" + }, { + U: [{next: "invisiblecloak", text: null}], + nodeName: "takeit", + V: "questFan", + tags: {W: ["luckySmileSweatdrop"]}, + text: "Oh, but who could ever take the fan from you, you are so fast and observant!" + }, { + U: [{next: "remindsme", text: null}], + nodeName: "invisiblecloak", + V: "questFan", + tags: {W: ["tenguNeutral"]}, + text: "Exactly! You'd have to be invisble to get past me!" + }, { + U: [{next: "cloak", text: null}], nodeName: "remindsme", V: "questFan", + tags: {W: ["tenguNeutral"]}, text: "Which reminds me...where is invisibility cloak??" + }, { + U: [{next: "missing", text: null}], + nodeName: "cloak", + V: "questFan", + tags: {W: ["luckyShocked"]}, + text: "You have an invisibility cloak too??" + }, { + U: [{next: "stolen", text: null}], + nodeName: "missing", + V: "questFan", + tags: {W: ["tenguNeutral"]}, + text: "I did, but it's been missing since that little octopus came to visit me and was admiring it." + }, { + U: [{next: "dotdotdot", text: null}], + nodeName: "stolen", + V: "questFan", + tags: {W: ["luckyWorried"]}, + text: "Oh, do you think the octopus stole it??" + }, + { + U: [{next: "idonow", text: null}], + nodeName: "dotdotdot", + V: "questFan", + tags: {W: ["tenguNeutral"]}, + text: "..." + }, { + U: [{next: "eventhefan", text: null}], + nodeName: "idonow", + V: "questFan", + tags: {W: ["tenguNeutral"]}, + text: "WELL NOW I DO! How dare that octopus take my cloak! I'd give anything to have it back!" + }, { + U: [{next: "findmycloak", text: null}], + nodeName: "eventhefan", + V: "questFan", + tags: {W: ["luckyRawr"]}, + text: "...Even your fan?" + }, { + U: [{next: "howfind", text: null}], nodeName: "findmycloak", V: "questFan", tags: {W: ["tenguNeutral"]}, + text: "Yes! It's a deal! Bring me my cloak and I'll give you my precious fan!" + }, { + U: [{next: "sparkles", text: null}], + nodeName: "howfind", + V: "questFan", + tags: {W: ["luckySmileSweatdrop"]}, + text: "But how am I supposed to find someone who's invisible??" + }, { + U: [{next: "searchforest", text: null}], + nodeName: "sparkles", + V: "questFan", + tags: {W: ["tenguNeutral"]}, + text: "You can tell the cloak is nearby if you see sparkles in the air." + }, { + U: [], + nodeName: "searchforest", + V: "questFan", + tags: {W: ["tenguNeutral"], zd: ["FAN", "search"]}, + text: "Search the Bamboo Forest!! Bring my beautiful cloak back to me!" + }], + [{ + U: [{next: "trophyHint", text: null}], + nodeName: "activeTrophy", + V: "questFan", + tags: {W: ["trophyMasterNeutral"]}, + text: "Looks like you're in the middle of helping out with this one." + }, { + U: [], + nodeName: "trophyHint", + V: "questFan", + tags: {W: ["trophyMasterNeutral"]}, + text: "The Tengu's Table Tennis games are creating too much wind for the villagers nearby, maybe you can take his fan and solve the problem!" + }], [{ + U: [], + nodeName: "complete", + V: "questFan", + tags: {W: ["inariNeutral"]}, + text: "The wind has stopped and the villagers are safe to return! You really are incredible, Lucky!" + }], + [{ + U: [], + nodeName: "completeFan", + V: "questFan", + tags: {W: ["tenguNeutral"]}, + text: "The fan's wind was just a trick I did for fun! I'll play without it from now on." + }], [{ + U: [], + nodeName: "completeOctopus", + V: "questFan", + tags: {W: ["invisibleOctopusNeutral"]}, + text: "I'll have to think of some other way to scare the Kijimura...khehehe." + }], [{ + U: [{next: "StillWatching", text: null}], + nodeName: "completeTrophy", + V: "questFan", + tags: {W: ["luckyNeutral"]}, + text: '"Wind Stopper"' + }, { + U: [], nodeName: "StillWatching", V: "questFan", tags: {W: ["trophyMasterNeutral"]}, + text: "I saw the whole thing, you were magnificent. Hee hee." + }], [{ + U: [{next: "somethingtosay", text: null}], + nodeName: "foundFan", + V: "questFan", + tags: {W: ["tenguNeutral"]}, + text: "Oh, my beautiful cloak, you found it!" + }, { + U: [{next: "sosorry", text: null}], + nodeName: "somethingtosay", + V: "questFan", + tags: {W: ["luckyNeutral"]}, + text: "Yes, and this little octopus has something she wants to say to you..." + }, { + U: [{next: "sonoharmdonesorry", text: null}], + nodeName: "sosorry", + V: "questFan", + tags: {W: ["invisibleOctopusNeutral"]}, + text: "S-sorry I took your cloack without asking, Mr. Tengu." + }, + { + U: [{next: "absolutelynot", text: null}], + nodeName: "sonoharmdonesorry", + V: "questFan", + tags: {W: ["luckyHappy"]}, + text: "There! Now that it's back, can I have the fan?" + }, { + U: [{next: "hadadeal", text: null}], + nodeName: "absolutelynot", + V: "questFan", + tags: {W: ["tenguNeutral"]}, + text: "Oh, absolutely not!" + }, { + U: [{next: "cantplay", text: null}], + nodeName: "hadadeal", + V: "questFan", + tags: {W: ["luckyShocked"]}, + text: "What?? But we had a deal!!" + }, { + U: [{next: "butthewind", text: null}], nodeName: "cantplay", V: "questFan", tags: {W: ["tenguNeutral"]}, + text: "But I can't play Table Tennis without my fan, you don't want me to be unable to play, do you??" + }, { + U: [{next: "thatwhyempty", text: null}], + nodeName: "butthewind", + V: "questFan", + tags: {W: ["luckyHide"]}, + text: "No but...the wind from your fan is so strong the villagers had to leave, the town is empty!" + }, { + U: [{next: "notscared", text: null}], + nodeName: "thatwhyempty", + V: "questFan", + tags: {W: ["tenguNeutral"]}, + text: "...That's why everyone left??? I thought they were all scared of me." + }, { + U: [{next: "inthatcase", text: null}], + nodeName: "notscared", + V: "questFan", + tags: {W: ["luckySmileSweatdrop"]}, + text: "No, they want to come watch you play!" + }, { + U: [{next: "didnttellme", text: null}], + nodeName: "inthatcase", + V: "questFan", + tags: {W: ["tenguNeutral"]}, + text: "Well the wind is just a trick I do for fun! I can play without it if the people prefer." + }, { + U: [{next: "straghtforward", text: null}], + nodeName: "didnttellme", + V: "questFan", + tags: {W: ["tenguNeutral"]}, + text: "Why didn't anyone ask me? We could have solved the problem long ago, ohohoho." + }, { + U: [], + nodeName: "straghtforward", + V: "questFan", + tags: {W: ["luckyAnnoyed"], zd: ["FAN", "complete"]}, + text: "...You're right, I'll try to be more straightforward next time." + }], [{ + U: [{next: "lastHint", text: null}], + nodeName: "foundTrophy", + V: "questFan", + tags: {W: ["trophyMasterNeutral"]}, + text: "You've almost got this one finished!" + }, { + U: [], + nodeName: "lastHint", + V: "questFan", + tags: {W: ["trophyMasterNeutral"]}, + text: "Return the stolen Invisibility Cloak to the Tengu in the Table Tennis Dojo in the North East!" + }], [{ + U: [{next: "whygo", text: null}], nodeName: "inactive", + V: "questFan", tags: {W: ["inariNeutral"]}, text: "Everyone left this village after the Tengu arrive..." + }, { + U: [{next: "strongwind", text: null}], + nodeName: "whygo", + V: "questFan", + tags: {W: ["luckyWorried"]}, + text: "Why? The Tengu seems friendly, and he's very good at Table Tennis!" + }, { + U: [{next: "toostrongwind", text: null}], + nodeName: "strongwind", + V: "questFan", + tags: {W: ["inariNeutral"]}, + text: "Well that's the problem. Everyone loves the Tengu, but he plays Table Tennis with his fan." + }, { + U: [{next: "howterrible", text: null}], + nodeName: "toostrongwind", + V: "questFan", + tags: {W: ["inariNeutral"]}, + text: "He plays so well it creates tremendous wind and it's too strong for anyone to live near by." + }, { + U: [{next: "gethisfan", text: null}], + nodeName: "howterrible", + V: "questFan", + tags: {W: ["luckyWorried"]}, + text: "Oh, how terrible! Has anyone aked him to stop??" + }, { + U: [{next: "illtry", text: "I'll Try!"}, {next: "soundshard", text: "Sounds hard."}], + nodeName: "gethisfan", + V: "questFan", + tags: {W: ["inariNeutral"]}, + text: "I tried sneaking into the Dojo and swapping his fan, but he's too fast and caught me!" + }, + { + U: [{next: "neverstop", text: null}], + nodeName: "soundshard", + V: "questFan", + tags: {W: ["luckyWorried"]}, + text: "Sounds like it's an impossible situation." + }, { + U: [], + nodeName: "neverstop", + V: "questFan", + tags: {W: ["inariNeutral"]}, + text: "I guess the winds will never stop..." + }, { + U: [{next: "goodluck", text: null}], + nodeName: "illtry", + V: "questFan", + tags: {W: ["luckyNeutral"]}, + text: "I don't know if I'll have any better luck, but I'm happy to try!" + }, { + U: [], nodeName: "goodluck", V: "questFan", tags: {W: ["inariNeutral"], zd: ["FAN", "active"]}, + text: "Wow you are so brave! The Tengu is in the Table Tennis Dojo north of here, good luck!" + }], [{ + U: [], + nodeName: "inactiveFan", + V: "questFan", + tags: {W: ["luckyNeutral"]}, + text: "That's the fan the Tengu uses as a paddle. It looks so powerful!" + }], [{ + U: [{next: "questDescription", text: null}], + nodeName: "inactiveTrophy", + V: "questFan", + tags: {W: ["trophyMasterNeutral"]}, + text: "Oh, I'm saving that spot." + }, { + U: [{next: "IllBeWatching", text: null}], + nodeName: "questDescription", + V: "questFan", + tags: {W: ["trophyMasterNeutral"]}, + text: "The Village in the Bamboo Forest in the North East is all but abandoned, I wonder why..." + }, + { + U: [], + nodeName: "IllBeWatching", + V: "questFan", + tags: {W: ["trophyMasterNeutral"]}, + text: "And I'll be watching to see when the task is resolved. Hee hee hee." + }], [{ + U: [{next: "sparkles2", text: null}], + nodeName: "searchFan", + V: "questFan", + tags: {W: ["tenguNeutral"]}, + text: "Find the octopus that stole my invisibility cloak and the fan is yours!" + }, { + U: [{next: "searchforest2", text: null}], + nodeName: "sparkles2", + V: "questFan", + tags: {W: ["tenguNeutral"]}, + text: "You can tell if the invisibility cloak is nearby if you see sparkles in the air." + }, + { + U: [], + nodeName: "searchforest2", + V: "questFan", + tags: {W: ["tenguNeutral"]}, + text: "Search the Bamboo Forest!! Bring my beautiful cloak back to me!" + }], [{ + U: [{next: "howididyousee", text: null}], + nodeName: "searchOctopus", + V: "questFan", + tags: {W: ["luckyRawr"]}, + text: "Aha!" + }, { + U: [{next: "seesparkles", text: null}], + nodeName: "howididyousee", + V: "questFan", + tags: {W: ["invisibleOctopusNeutral"]}, + text: "W-what?? How can you see me??" + }, { + U: [{next: "whatkindof", text: null}], nodeName: "seesparkles", V: "questFan", tags: {W: ["luckyBigGrin"]}, + text: "I just followed the sparkles." + }, { + U: [{next: "youstole", text: null}], + nodeName: "whatkindof", + V: "questFan", + tags: {W: ["invisibleOctopusNeutral"]}, + text: "...what good is an invisibility cloak if you can see the sparkles??" + }, { + U: [{next: "kijimuna", text: null}], + nodeName: "youstole", + V: "questFan", + tags: {W: ["luckyAnnoyed"]}, + text: "Well it's not your cloak it in the first place! Why did you take it from the Tengu??" + }, { + U: [{next: "notnice", text: null}], nodeName: "kijimuna", V: "questFan", tags: {W: ["invisibleOctopusNeutral"]}, + text: "I was gonna use it to scare the Kijimuna on Marathon Beach! We're always playing tricks on each other, khehehe." + }, { + U: [{next: "awwman", text: null}], + nodeName: "notnice", + V: "questFan", + tags: {W: ["luckyWorried"]}, + text: "Well that's no reason to steal! Let's take this back to the Tengu right now." + }, { + U: [], + nodeName: "awwman", + V: "questFan", + tags: {W: ["invisibleOctopusNeutral"], zd: ["FAN", "found"]}, + text: "Aw darn, you're no fun...khehehe." + }], [{ + U: [{next: "searchHint", text: null}], nodeName: "searchTrophy", V: "questFan", + tags: {W: ["trophyMasterNeutral"]}, text: "You're right in the middle of this one." + }, { + U: [], + nodeName: "searchHint", + V: "questFan", + tags: {W: ["trophyMasterNeutral"]}, + text: "Find the Octopus that stole the Tengu's Invisiblity cloak in the Bamboo Forest in the North East." + }], [{ + U: [], + nodeName: "active", + V: "questGhost", + tags: {W: ["TaroMomSad"]}, + text: "Precious child, thank you. I buried the letter between two stone lanterns safekeeping..." + }], [{ + U: [{next: "directionstothecastle", text: null}], nodeName: "activeLetter", V: "questGhost", + tags: {W: ["luckyHappy"]}, text: "This must be the letter! Wait, there's something on the scroll..." + }, { + U: [{next: "luckyconfused", text: null}], + nodeName: "directionstothecastle", + V: "questGhost", + tags: {W: ["scrollNeutral"]}, + text: "'THE PATH TO THE CASTLE IS AT YOUR FEET'" + }, { + U: [], + nodeName: "luckyconfused", + V: "questGhost", + tags: {W: ["luckyWorried"], zd: ["GHOST", "active2"]}, + text: "What could that mean?" + }], [{ + U: [{next: "trophyHint", text: null}], + nodeName: "activeTrophy", + V: "questGhost", + tags: {W: ["trophyMasterNeutral"]}, + text: "Looks like you're in the middle of helping out with this one." + }, + { + U: [], + nodeName: "trophyHint", + V: "questGhost", + tags: {W: ["trophyMasterNeutral"]}, + text: "Find the letter under the Maple Tree in Bridge Garden to the East and deliver it to Urashima Taro in the underwater castle!" + }], [{ + U: [{next: "urashimaresponds", text: null}], + nodeName: "activeUrashima", + V: "questGhost", + tags: {W: ["luckyCurious"]}, + text: "Excuse me... are you Urashima Taro?" + }, { + U: [{next: "luckydeliver", text: null}], + nodeName: "urashimaresponds", + V: "questGhost", + tags: {W: ["UrashimaNeutral"]}, + text: "Lucky! What a pleasant surprise! Here for another dance battle?" + }, + { + U: [{next: "Urashimareads", text: null}], + nodeName: "luckydeliver", + V: "questGhost", + tags: {W: ["luckyCurious"]}, + text: "Actually... I have something for you. A letter." + }, { + U: [{next: "urashima emotion", text: null}], + nodeName: "Urashimareads", + V: "questGhost", + tags: {W: ["UrashimaNeutral"]}, + text: "... ... ..." + }, { + U: [{next: "stammer", text: null}], + nodeName: "urashima emotion", + V: "questGhost", + tags: {W: ["UrashimaNeutral"]}, + text: "My mother... I'd nearly forgotten. Is she well?" + }, { + U: [{next: "Urashimaokay", text: null}], + nodeName: "stammer", + V: "questGhost", + tags: {W: ["luckyWorried"]}, + text: "She... um... she's been waiting for you. But she just wants to know that you're okay." + }, { + U: [{next: "willdo", text: null}], + nodeName: "Urashimaokay", + V: "questGhost", + tags: {W: ["UrashimaNeutral"]}, + text: "Tell her I miss her. And that I'm happy, down here in the Castle. Will you do that, Lucky?" + }, { + U: [], + nodeName: "willdo", + V: "questGhost", + tags: {W: ["luckyCurious"], zd: ["GHOST", "found"]}, + text: "Yes, I will." + }], [{ + U: [{next: "StillWatching", text: null}], nodeName: "completeTrophy", + V: "questGhost", tags: {W: ["luckyNeutral"]}, text: '"Ghostly Delivery"' + }, { + U: [], + nodeName: "StillWatching", + V: "questGhost", + tags: {W: ["trophyMasterNeutral"]}, + text: "I saw the whole thing, you were magnificent. Hee hee." + }], [{ + U: [{next: "ghost happy", text: null}], + nodeName: "found", + V: "questGhost", + tags: {W: ["luckyCurious"]}, + text: "I gave him the letter. He says he misses you, and he's happy." + }, { + U: [], + nodeName: "ghost happy", + V: "questGhost", + tags: {W: ["TaroMomSad"], zd: ["GHOST", "complete"]}, + text: "I shall be eternally in your debt, Lucky. At last I can move on..." + }], + [{ + U: [{next: "lastHint", text: null}], + nodeName: "foundTrophy", + V: "questGhost", + tags: {W: ["trophyMasterNeutral"]}, + text: "You've almost got this one finished!" + }, { + U: [], + nodeName: "lastHint", + V: "questGhost", + tags: {W: ["trophyMasterNeutral"]}, + text: "I'm sure the ghost of Urashima Taro's mother is eagerly awaiting word from her son, hee hee." + }], [{ + U: [{next: "yeswilldo", text: null}], + nodeName: "foundUrashima", + V: "questGhost", + tags: {W: ["UrashimaNeutral"]}, + text: "Tell her I miss her. And that I'm happy, down here in the Castle. Will you do that, Lucky?" + }, + { + U: [], + nodeName: "yeswilldo", + V: "questGhost", + tags: {W: ["luckyNeutral"]}, + text: "Yes, I will." + }], [{ + U: [{next: "what", text: null}], + nodeName: "inactive", + V: "questGhost", + tags: {W: ["TaroMomSad"]}, + text: "So close... yet so far away...!" + }, { + U: [{next: "momexplains", text: null}], + nodeName: "what", + V: "questGhost", + tags: {W: ["luckyNeutral"]}, + text: "What's close?" + }, { + U: [{next: "momcontinue", text: null}], + nodeName: "momexplains", + V: "questGhost", + tags: {W: ["TaroMomSad"]}, + text: "A long time ago... I had a son, Urashima Taro." + }, { + U: [{ + next: "momexplains2", + text: null + }], + nodeName: "momcontinue", + V: "questGhost", + tags: {W: ["TaroMomSad"]}, + text: "He went down to the Undersea Castle there... on the back of a turtle, so I was told." + }, { + U: [{next: "oldman", text: null}], + nodeName: "momexplains2", + V: "questGhost", + tags: {W: ["TaroMomSad"]}, + text: "I waited for his return. A week, a year, a lifetime... and now I wait still." + }, { + U: [{next: "momsigh", text: null}], + nodeName: "oldman", + V: "questGhost", + tags: {W: ["TaroMomSad"]}, + text: "He must be all grown up by now..." + }, { + U: [{ + next: "luckyresponse", + text: null + }], + nodeName: "momsigh", + V: "questGhost", + tags: {W: ["TaroMomSad"]}, + text: "When I was alive, I wrote him a letter. I wanted to get it to him somehow... If I could just do that, then I could rest." + }, { + U: [{next: "momrequest", text: null}], + nodeName: "luckyresponse", + V: "questGhost", + tags: {W: ["luckyNeutral"]}, + text: "I could probably bring the letter to the Undersea Castle..." + }, { + U: [{next: "yes", text: "Of course!"}, {next: "no", text: "On second thought..."}], + nodeName: "momrequest", + V: "questGhost", + tags: {W: ["TaroMomSad"]}, + text: "Oh, really?? Will you help me?" + }, { + U: [], + nodeName: "yes", + V: "questGhost", + tags: {W: ["TaroMomSad"], zd: ["GHOST", "active"]}, + text: "Precious child, thank you. I buried it between two stone lanterns for safekeeping..." + }, { + U: [], + nodeName: "no", + V: "questGhost", + tags: {W: ["TaroMomSad"]}, + text: "I thought it might be too much to ask..." + }], [{ + U: [{next: "questDescription", text: null}], + nodeName: "inactiveTrophy", + V: "questGhost", + tags: {W: ["trophyMasterNeutral"]}, + text: "Oh, I'm saving that spot." + }, { + U: [{next: "IllBeWatching", text: null}], + nodeName: "questDescription", + V: "questGhost", + tags: {W: ["trophyMasterNeutral"]}, + text: "There's been reports of a ghostly figure in the pagodas of the Bridge Garden to the East." + }, { + U: [], + nodeName: "IllBeWatching", + V: "questGhost", + tags: {W: ["trophyMasterNeutral"]}, + text: "I wonder if there's actually a ghost there. I'll be watching to see when the task is resolved. Hee hee hee." + }], [{ + U: [], + nodeName: "inactiveUrashima", + V: "questGhost", + tags: {W: ["UrashimaNeutral"]}, + text: "Lucky! What a pleasant surprise! Here for another dance battle?" + }], + [{ + U: [], + nodeName: "otohime", + V: "questGhost", + tags: {W: ["otohimeNeutral"]}, + text: "Hello Lucky, have you come to dance with us?" + }], [{ + U: [{next: "tightSchedule", text: null}], + nodeName: "activeLava", + V: "questHotSpring", + tags: {W: ["luckyNeutral"]}, + text: "Wow, here's some lava already in a bottle! How thoughtful!" + }, { + U: [], + nodeName: "tightSchedule", + V: "questHotSpring", + tags: {W: ["luckyNeutral"], zd: ["HOT_SPRING", "found"]}, + text: "I better take this to the Arrow Shop right away!" + }], [{ + U: [], + nodeName: "activeOwner", + V: "questHotSpring", + tags: {W: ["hareNeutral"]}, + text: "Fluffy's Arrow Shop is Northwest docks, a big boat with a red roof. I hope Fluffy can help us!" + }], [{ + U: [{next: "needHelp", text: null}], + nodeName: "activeShop", + V: "questHotSpring", + tags: {W: ["bigCatNeutral"]}, + text: "Welcome to Fluffy's Arrow Shop" + }, { + U: [{next: "haveArrow", text: null}], + nodeName: "needHelp", + V: "questHotSpring", + tags: {W: ["luckyWorried"]}, + text: "Do you have a Super Fire Arrow??" + }, { + U: [{next: "hotSpringBlocked", text: null}], + nodeName: "haveArrow", + V: "questHotSpring", + tags: {W: ["bigCatNeutral"]}, + text: "Super Fire Arrow?? Oh my...why do you need something so rare and dangerous?" + }, { + U: [{next: "vacation", text: null}], + nodeName: "hotSpringBlocked", + V: "questHotSpring", + tags: {W: ["luckyWorried"]}, + text: "A giant snowball has blocked the Mountain Hot Spings! We need it to-" + }, { + U: [{next: "illDoAnything", text: null}], + nodeName: "vacation", + V: "questHotSpring", + tags: {W: ["bigCatNeutral"]}, + text: "The Hot Springs are closed?!? But where will I go on vacation??" + }, { + U: [{next: "giveArrow", text: null}], nodeName: "illDoAnything", + V: "questHotSpring", tags: {W: ["bigCatNeutral"]}, text: "I'll do anything to help it reopen! Free of charge!" + }, { + U: [{next: "specialComponents", text: null}], + nodeName: "giveArrow", + V: "questHotSpring", + tags: {W: ["luckyNeutral"]}, + text: "Amazing! So you'll give us the Super Fire Arrow?" + }, { + U: [{next: "needLava", text: null}], + nodeName: "specialComponents", + V: "questHotSpring", + tags: {W: ["bigCatNeutral"]}, + text: "For an arrow so powerful, I need special components..." + }, { + U: [], nodeName: "needLava", V: "questHotSpring", tags: { + W: ["bigCatNeutral"], + zd: ["HOT_SPRING", "lava"] + }, text: "Bring me lava from Oni Island in the East, and the arrow shall be yours!" + }], [{ + U: [{next: "trophyHint", text: null}], + nodeName: "activeTrophy", + V: "questHotSpring", + tags: {W: ["trophyMasterNeutral"]}, + text: "Looks like you're in the middle of helping out with this one." + }, { + U: [], + nodeName: "trophyHint", + V: "questHotSpring", + tags: {W: ["trophyMasterNeutral"]}, + text: "A Super Fire Arrow is hard to come by, maybe Fluffy in the Arrow Shop in the Northwest Docks can help, hee hee." + }], [{ + U: [{ + next: "memberForLife", + text: null + }], + nodeName: "completeOwner", + V: "questHotSpring", + tags: {W: ["hareNeutral"]}, + text: "I can never repay you for all your help." + }, { + U: [{next: "youForReal", text: null}], + nodeName: "memberForLife", + V: "questHotSpring", + tags: {W: ["hareNeutral"]}, + text: "Please enjoy the hot spring free of charge...forever!" + }, { + U: [{next: "notGoodBusiness", text: null}], + nodeName: "youForReal", + V: "questHotSpring", + tags: {W: ["luckyShocked"]}, + text: "Really??" + }, { + U: [], + nodeName: "notGoodBusiness", + V: "questHotSpring", + tags: {W: ["hareNeutral"]}, + text: "It's not good business, but sometimes you have to do what's right!" + }], + [{ + U: [{next: "discount", text: null}], + nodeName: "completeShop", + V: "questHotSpring", + tags: {W: ["bigCatNeutral"]}, + text: "Welcome to Fluffy's Arrow Shop. Oh it's you again..." + }, { + U: [], + nodeName: "discount", + V: "questHotSpring", + tags: {W: ["bigCatNeutral"]}, + text: "Is the Hot Spring open yet? Hopefully I'll get a nice discount next time I'm there..." + }], [{ + U: [{next: "StillWatching", text: null}], + nodeName: "completeTrophy", + V: "questHotSpring", + tags: {W: ["luckyNeutral"]}, + text: "'Hot Spring Savior'" + }, { + U: [], + nodeName: "StillWatching", + V: "questHotSpring", + tags: {W: ["trophyMasterNeutral"]}, + text: "I saw the whole thing, you were magnificent. Hee hee." + }], [{ + U: [{next: "wasntEasy", text: null}], + nodeName: "foundOwner", + V: "questHotSpring", + tags: {W: ["hareNeutral"]}, + text: "The arrow! I can't believe you actaully found it!" + }, { + U: [{next: "standBack", text: null}], + nodeName: "wasntEasy", + V: "questHotSpring", + tags: {W: ["luckyNeutral"]}, + text: "It wasn't easy, but I hope it works!" + }, { + U: [{next: "boom", text: null}], nodeName: "standBack", V: "questHotSpring", tags: {W: ["hareNeutral"]}, + text: "Stand Back!" + }, { + U: [{next: "backInBusiness", text: null}], + nodeName: "boom", + V: "questHotSpring", + tags: {}, + text: "BOOOOOOOOOOOOOOOOOOM!!" + }, { + U: [{next: "safe", text: null}], + nodeName: "backInBusiness", + V: "questHotSpring", + tags: {W: ["hareNeutral"], zd: ["HOT_SPRING", "complete"]}, + text: "It worked!! I'm back in business!" + }, { + U: [], + nodeName: "safe", + V: "questHotSpring", + tags: {W: ["hareNeutral"]}, + text: "...oh, and hopefully everyone inside is safe too!" + }], [{ + U: [{next: "gotTheLava", text: null}], nodeName: "foundShop", V: "questHotSpring", + tags: {W: ["bigCatNeutral"]}, text: "Welcome to Fluffy's Arrow-" + }, { + U: [{next: "exactlyRight", text: null}], + nodeName: "gotTheLava", + V: "questHotSpring", + tags: {W: ["luckyNeutral"]}, + text: "I found the lava! Take it, it's hot!!" + }, { + U: [{next: "clangs", text: null}], + nodeName: "exactlyRight", + V: "questHotSpring", + tags: {W: ["bigCatNeutral"]}, + text: "Oh my. Yes...this is exactly what I need..." + }, { + U: [{next: "carefulWithIt", text: null}], + nodeName: "clangs", + V: "questHotSpring", + tags: {}, + text: "*clang clang clang*" + }, { + U: [{ + next: "toTheHotSpring", + text: null + }], + nodeName: "carefulWithIt", + V: "questHotSpring", + tags: {W: ["bigCatNeutral"]}, + text: "Here you are! But be careful, it's quite...explosive." + }, { + U: [], + nodeName: "toTheHotSpring", + V: "questHotSpring", + tags: {W: ["luckyNeutral"], zd: ["HOT_SPRING", "arrow"]}, + text: "Thank you! I'll take it to the hot springs right away!" + }], [{ + U: [{next: "lastHint", text: null}], + nodeName: "foundTrophy", + V: "questHotSpring", + tags: {W: ["trophyMasterNeutral"]}, + text: "You've almost got this one finished!" + }, { + U: [], + nodeName: "lastHint", + V: "questHotSpring", + tags: {W: ["trophyMasterNeutral"]}, + text: "Take the Super Fire Arrow back to Wooly at the hot spring in the North mountains, hee hee." + }], [{ + U: [{next: "unfortunate", text: null}], + nodeName: "inactiveOwner", + V: "questHotSpring", + tags: {W: ["hareNeutral"]}, + text: "Greetings, weary traveler." + }, { + U: [{next: "owlSnow", text: null}], + nodeName: "unfortunate", + V: "questHotSpring", + tags: {W: ["hareNeutral"]}, + text: "I wish I could invite you to relax in to my humble hot spring, but alas..." + }, { + U: [{next: "poorBusiness", text: null}], + nodeName: "owlSnow", + V: "questHotSpring", + tags: {W: ["hareNeutral"]}, + text: "One of Fukuro's snowballs has BLOCKED THE ENTRANCE!! There's no way in or out!" + }, { + U: [{next: "noWayIn", text: null}], + nodeName: "poorBusiness", + V: "questHotSpring", + tags: {W: ["hareNeutral"]}, + text: "My poor humble business venture...I'LL BE RUINED!!" + }, { + U: [{next: "fireArrow", text: null}], + nodeName: "noWayIn", + V: "questHotSpring", + tags: {W: ["luckyCurious"]}, + text: "Is there no way in??" + }, { + U: [{next: "help", text: "Help"}, {next: "sorry", text: "Sorry..."}], + nodeName: "fireArrow", + V: "questHotSpring", + tags: {W: ["hareNeutral"]}, + text: "No!! We'd need something like a Super Fire Arrow to melt that much snow. How can I afford that??" + }, { + U: [{next: "arrowShop", text: null}], + nodeName: "help", + V: "questHotSpring", + tags: {W: ["luckyNeutral"]}, + text: "Hm..I don't have any money, but maybe I can find one!" + }, { + U: [], + nodeName: "arrowShop", + V: "questHotSpring", + tags: {W: ["hareNeutral"], zd: ["HOT_SPRING", "active"]}, + text: "Oh, you sweet child. Check with Fluffy at the Arrow Shop in the Northwest Docks, he might be able to help!" + }, + { + U: [{next: "willNoOneTry", text: null}], + nodeName: "sorry", + V: "questHotSpring", + tags: {W: ["luckyNeutral"]}, + text: "Sorry, I can't afford it either!" + }, { + U: [], + nodeName: "willNoOneTry", + V: "questHotSpring", + tags: {W: ["hareNeutral"]}, + text: "Oh dear...can no one help? Where is the Chosen One?" + }], [{ + U: [{next: "manyArrows", text: null}], + nodeName: "inactiveShop", + V: "questHotSpring", + tags: {W: ["bigCatNeutral"]}, + text: "Welcome to Fluffy's Arrow Shop." + }, { + U: [{next: "fineCraft", text: null}], nodeName: "manyArrows", V: "questHotSpring", tags: {W: ["luckyNeutral"]}, + text: "Wow I've never seen so many arrows!" + }, { + U: [{next: "noMoney", text: null}], + nodeName: "fineCraft", + V: "questHotSpring", + tags: {W: ["bigCatNeutral"]}, + text: "Only the finest craftmanship at competitive prices." + }, { + U: [{next: "unfortune", text: null}], + nodeName: "noMoney", + V: "questHotSpring", + tags: {W: ["luckyNeutral"]}, + text: "Oh...but I have no money." + }, { + U: [{next: "browse", text: null}], + nodeName: "unfortune", + V: "questHotSpring", + tags: {W: ["bigCatNeutral"]}, + text: "Ah...how unfortunate." + }, { + U: [], nodeName: "browse", V: "questHotSpring", + tags: {W: ["bigCatNeutral"]}, text: "Well you are welcome to browse, but...please don't touch anything." + }], [{ + U: [{next: "questDescription", text: null}], + nodeName: "inactiveTrophy", + V: "questHotSpring", + tags: {W: ["trophyMasterNeutral"]}, + text: "Oh, I'm saving that spot." + }, { + U: [{next: "IllBeWatching", text: null}], + nodeName: "questDescription", + V: "questHotSpring", + tags: {W: ["trophyMasterNeutral"]}, + text: "Snowfall has blocked the Hot Springs in the North mountains. Poor Wooly is bound to go out of business!" + }, { + U: [], + nodeName: "IllBeWatching", + V: "questHotSpring", + tags: {W: ["trophyMasterNeutral"]}, + text: "Maybe your warm personality can help? I'll be watching to see when the task is resolved. Hee hee hee." + }], [{ + U: [{next: "findLava", text: null}], + nodeName: "lavaShop", + V: "questHotSpring", + tags: {W: ["bigCatNeutral"]}, + text: "Welcome to Fluffy's Arrow Shop. ...oh it's you." + }, { + U: [{next: "oldSaying", text: null}], + nodeName: "findLava", + V: "questHotSpring", + tags: {W: ["luckyWorried"]}, + text: "Where can I find lava?" + }, { + U: [{next: "checkBetweenEyes", text: null}], + nodeName: "oldSaying", + V: "questHotSpring", + tags: {W: ["bigCatNeutral"]}, + text: "Oni Island is the only place with lava...there's an old saying:" + }, { + U: [{next: "wonderWhat", text: null}], + nodeName: "checkBetweenEyes", + V: "questHotSpring", + tags: {W: ["bigCatNeutral"]}, + text: "'Look between The Eyes for your sweet lava prize.'" + }, { + U: [], + nodeName: "wonderWhat", + V: "questHotSpring", + tags: {W: ["bigCatNeutral"]}, + text: "I wonder what that could possibly mean..." + }], [{ + U: [{next: "checkinside", text: null}], nodeName: "active", V: "questIntro", tags: {W: ["gatekeeperNeutral"]}, + text: "You made it! Thanks for bringing the trophy all this way!" + }, { + U: [], + nodeName: "checkinside", + V: "questIntro", + tags: {W: ["gatekeeperNeutral"], zd: ["INTRO", "complete"]}, + text: "Check inside with the Trophy Master if you want to help more people!" + }], [{ + U: [], + nodeName: "complete", + V: "questIntro", + tags: {W: ["gatekeeperNeutral"]}, + text: "Check inside with the Trophy Master if you want to help more people!" + }], [{ + U: [{next: "moreways", text: null}], + nodeName: "inactive", + V: "questIntro", + tags: {W: ["gatekeeperNeutral"]}, + text: "Oh, you're new here aren't you?" + }, + { + U: [{next: "actsofkindness", text: null}], + nodeName: "moreways", + V: "questIntro", + tags: {W: ["gatekeeperNeutral"]}, + text: "All the sports on the island are great, but there are more ways to show you are a true champion." + }, { + U: [{next: "heavy", text: null}], + nodeName: "actsofkindness", + V: "questIntro", + tags: {W: ["gatekeeperNeutral"]}, + text: "Acts of kindness go a long way with the people here." + }, { + U: [{next: "lookstrong", text: null}], + nodeName: "heavy", + V: "questIntro", + tags: {W: ["gatekeeperNeutral"]}, + text: "Like me! I have this trophy for the Trophy Master, but its too heavy for me to carry!" + }, + { + U: [{next: "yes", text: "Of course!"}, {next: "no", text: "No way."}], + nodeName: "lookstrong", + V: "questIntro", + tags: {W: ["gatekeeperNeutral"]}, + text: "Would you take it to the Trophy House for me?" + }, { + U: [{next: "justNorth", text: null}], + nodeName: "yes", + V: "questIntro", + tags: {W: ["luckyHappy"]}, + text: "I'd be happy to!" + }, { + U: [], + nodeName: "justNorth", + V: "questIntro", + tags: {W: ["gatekeeperNeutral"], zd: ["INTRO", "active"]}, + text: "Oh thank you! I'll meet you at the Trophy House, it's just north of here." + }, { + U: [{next: "getit", text: null}], + nodeName: "no", V: "questIntro", tags: {W: ["luckyWorried"]}, text: "Sorry, not interested." + }, { + U: [], + nodeName: "getit", + V: "questIntro", + tags: {W: ["gatekeeperNeutral"]}, + text: "Oh, ok. Well let me know if you change your mind, helping people frequently pays off!" + }], [{ + U: [], + nodeName: "active", + V: "questLanternLight", + tags: {W: ["inariNeutral"]}, + text: "Light all four lanterns and your true test will begin!" + }], [{ + U: [{next: "trophyHint", text: null}], + nodeName: "activeTrophy", + V: "questLanternLight", + tags: {W: ["trophyMasterNeutral"]}, + text: "Looks like you're in the middle of helping out with this one." + }, { + U: [], + nodeName: "trophyHint", + V: "questLanternLight", + tags: {W: ["trophyMasterNeutral"]}, + text: "I wonder what will happen when you the lanterns around the ancient Table Tennis Table, hee hee." + }], [{ + U: [], + nodeName: "complete", + V: "questLanternLight", + tags: {W: ["inariNeutral"]}, + text: "Well done, your new challenger awaits. Touch the gate to play the game." + }], [{ + U: [{next: "StillWatching", text: null}], nodeName: "completeTrophy", V: "questLanternLight", + tags: {W: ["luckyNeutral"]}, text: "'Lighter of Lanterns'" + }, { + U: [], + nodeName: "StillWatching", + V: "questLanternLight", + tags: {W: ["trophyMasterNeutral"]}, + text: "I saw the whole thing, you were magnificent. Hee hee." + }], [{ + U: [], + nodeName: "found", + V: "questLanternLight", + tags: {W: ["inariNeutral"], zd: ["LANTERN_LIGHT", "complete"]}, + text: "Well done, your new challenger awaits. Touch the gate to play the game." + }], [{ + U: [{next: "lastHint", text: null}], + nodeName: "foundTrophy", + V: "questLanternLight", + tags: {W: ["trophyMasterNeutral"]}, + text: "You've almost got this one finished!" + }, { + U: [{next: "lastHint", text: null}], + nodeName: "lastHint", + V: "questLanternLight", + tags: {W: ["trophyMasterNeutral"]}, + text: "Now that the lanterns are lit, speak to the gaurdian for your reward, hee hee." + }], [{ + U: [{next: "doyoudare", text: null}], + nodeName: "inactive", + V: "questLanternLight", + tags: {W: ["inariNeutral"]}, + text: "Legend says the true masters of Table Tennis would light lanterns around their tables to call forth stronger spirits to compete against." + }, { + U: [{ + next: "yes", + text: "Yes!" + }, {next: "no", text: "N-no."}], + nodeName: "doyoudare", + V: "questLanternLight", + tags: {W: ["inariNeutral"]}, + text: "Do you dare to try the same?" + }, { + U: [], + nodeName: "yes", + V: "questLanternLight", + tags: {W: ["inariNeutral"], zd: ["LANTERN_LIGHT", "active"]}, + text: "You are brave. Take this flame and light the four lanterns around the table." + }, { + U: [{next: "changeMind", text: null}], + nodeName: "no", + V: "questLanternLight", + tags: {W: ["inariNeutral"]}, + text: "...I see." + }, { + U: [], nodeName: "changeMind", V: "questLanternLight", tags: {W: ["inariNeutral"]}, + text: "Come back to me when you feel you are strong enough!" + }], [{ + U: [{next: "questDescription", text: null}], + nodeName: "inactiveTrophy", + V: "questLanternLight", + tags: {W: ["trophyMasterNeutral"]}, + text: "Oh, I'm saving that spot." + }, { + U: [{next: "IllBeWatching", text: null}], + nodeName: "questDescription", + V: "questLanternLight", + tags: {W: ["trophyMasterNeutral"]}, + text: "Legend tells of an ancient Table Tennis found only but lantern light." + }, { + U: [], nodeName: "IllBeWatching", V: "questLanternLight", tags: {W: ["trophyMasterNeutral"]}, + text: "Find the guardian in the bamboo forest to see if it's all true. I'll be watching to see when the task is resolved. Hee hee hee." + }], [{ + U: [], + nodeName: "lantern1lit", + V: "questLanternLight", + tags: {W: ["luckyWorried"]}, + text: "The flame is so bright!" + }], [{ + U: [{next: "return", text: null}], + nodeName: "lantern1unlit", + V: "questLanternLight", + tags: {}, + text: "You light the stone lantern." + }, { + U: [], + nodeName: "return", + V: "questLanternLight", + tags: {W: ["luckyWorried"], zd: ["LANTERN_1", ! 0]}, + text: "The flame is so bright!" + }], [{ + U: [], + nodeName: "lantern2lit", V: "questLanternLight", tags: {W: ["luckyWorried"]}, text: "It seems so powerful." + }], [{ + U: [{next: "powerful", text: null}], + nodeName: "lantern2unlit", + V: "questLanternLight", + tags: {}, + text: "You light the stone lantern." + }, { + U: [], + nodeName: "powerful", + V: "questLanternLight", + tags: {W: ["luckyWorried"], zd: ["LANTERN_2", ! 0]}, + text: "It seems so powerful." + }], [{ + U: [], + nodeName: "lantern3lit", + V: "questLanternLight", + tags: {W: ["luckyWorried"]}, + text: "It's not casting any heat..." + }], [{ + U: [{next: "noheat", text: null}], + nodeName: "lantern3unlit", V: "questLanternLight", tags: {}, text: "You light the stone lantern." + }, { + U: [], + nodeName: "noheat", + V: "questLanternLight", + tags: {W: ["luckyWorried"], zd: ["LANTERN_3", ! 0]}, + text: "It's not casting any heat..." + }], [{ + U: [], + nodeName: "lantern4lit", + V: "questLanternLight", + tags: {W: ["luckyWorried"]}, + text: "I can't stop looking at it." + }], [{ + U: [{next: "cantstop", text: null}], + nodeName: "lantern4unlit", + V: "questLanternLight", + tags: {}, + text: "You light the stone lantern." + }, { + U: [], nodeName: "cantstop", V: "questLanternLight", + tags: {W: ["luckyWorried"], zd: ["LANTERN_4", ! 0]}, text: "I can't stop looking at it." + }], [{ + U: [{next: "hint", text: null}], + nodeName: "active", + V: "questLostBook", + tags: {W: ["otterNeutral"]}, + text: "D-did you find my book yet?" + }, { + U: [], + nodeName: "hint", + V: "questLostBook", + tags: {W: ["otterNeutral"]}, + text: "The bookstore Southeast of here is where I last had it..." + }], [{ + U: [{next: "trophyHint", text: null}], + nodeName: "activeTrophy", + V: "questLostBook", + tags: {W: ["trophyMasterNeutral"]}, + text: "Looks like you're in the middle of helping out with this one." + }, + { + U: [], + nodeName: "trophyHint", + V: "questLostBook", + tags: {W: ["trophyMasterNeutral"]}, + text: "Check the Bookstore in Tanooki City to find Nyan-Chan's lost book, hee hee." + }], [{ + U: [{next: "return", text: null}], + nodeName: "book", + V: "questLostBook", + tags: {W: ["luckyHappy"]}, + text: "Aha! Looks like the lost book." + }, { + U: [{next: "note", text: null}], + nodeName: "return", + V: "questLostBook", + tags: {W: ["luckyNeutral"]}, + text: "Oh, there's a note inside..." + }, { + U: [{next: "um", text: null}], nodeName: "note", V: "questLostBook", tags: {W: ["luckyWorried"]}, + text: "'My love, how I miss your face. Meet me at the secret beach tonight, alone.'" + }, { + U: [{next: "owner", text: null}], + nodeName: "um", + V: "questLostBook", + tags: {W: ["luckyWorried"]}, + text: "..." + }, { + U: [], + nodeName: "owner", + V: "questLostBook", + tags: {W: ["luckyWorried"], zd: ["LOST_BOOK", "found"]}, + text: "I should take this book back to its owner." + }], [{ + U: [{next: "thankYou", text: null}], + nodeName: "complete", + V: "questLostBook", + tags: {W: ["otterNeutral"]}, + text: "(The secret beach...yes...)" + }, { + U: [], nodeName: "thankYou", V: "questLostBook", + tags: {W: ["otterNeutral"]}, text: "OH HELLO! Um, yes, thank you again for returning...my book..." + }], [{ + U: [{next: "StillWatching", text: null}], + nodeName: "completeTrophy", + V: "questLostBook", + tags: {W: ["luckyNeutral"]}, + text: "'Book Enthusiast'" + }, { + U: [], + nodeName: "StillWatching", + V: "questLostBook", + tags: {W: ["trophyMasterNeutral"]}, + text: "I saw the whole thing, you were magnificent. Hee hee." + }], [{ + U: [{next: "thanks", text: null}], + nodeName: "found", + V: "questLostBook", + tags: {W: ["otterNeutral"]}, + text: "MY BOOK! GIVE IT TO ME!" + }, + { + U: [], + nodeName: "thanks", + V: "questLostBook", + tags: {W: ["otterNeutral"], zd: ["LOST_BOOK", "complete"]}, + text: "Oh I'm so relieved. I can't thank you enough." + }], [{ + U: [{next: "giveBookBack", text: null}], + nodeName: "foundTrophy", + V: "questLostBook", + tags: {W: ["trophyMasterNeutral"]}, + text: "You've almost got this one finished!" + }, { + U: [], + nodeName: "giveBookBack", + V: "questLostBook", + tags: {W: ["trophyMasterNeutral"]}, + text: "Just return the book you found to Olive the Otter in Tanooki City!" + }], [{ + U: [{next: "youOK", text: null}], nodeName: "inactive", + V: "questLostBook", tags: {W: ["otterNeutral"]}, text: "Oh dear where could it be?" + }, { + U: [{next: "missingBook", text: null}], + nodeName: "youOK", + V: "questLostBook", + tags: {W: ["luckyCurious"]}, + text: "What's wrong?" + }, { + U: [{next: "bookstore", text: null}], + nodeName: "missingBook", + V: "questLostBook", + tags: {W: ["otterNeutral"]}, + text: "I can't find a very important book!" + }, { + U: [{next: "help", text: null}], + nodeName: "bookstore", + V: "questLostBook", + tags: {W: ["otterNeutral"]}, + text: "I could have sworn I had it in the bookstore..." + }, { + U: [{ + next: "yes", + text: "Sure!" + }, {next: "no", text: "Nah"}], + nodeName: "help", + V: "questLostBook", + tags: {W: ["otterNeutral"]}, + text: "Could you help me find my precious book??" + }, { + U: [], + nodeName: "yes", + V: "questLostBook", + tags: {W: ["otterNeutral"], zd: ["LOST_BOOK", "active"]}, + text: "Oh thank you! If you find it, don't show anyone and bring it back to me." + }, { + U: [{next: "changeMind", text: null}], + nodeName: "no", + V: "questLostBook", + tags: {W: ["otterNeutral"]}, + text: "...oh. Of course, I'm sorry to bother you asking." + }, { + U: [], nodeName: "changeMind", V: "questLostBook", + tags: {W: ["otterNeutral"]}, text: "Oh dear, if only someone would help me..." + }], [{ + U: [{next: "questDescription", text: null}], + nodeName: "inactiveTrophy", + V: "questLostBook", + tags: {W: ["trophyMasterNeutral"]}, + text: "Oh, I'm saving that spot." + }, { + U: [{next: "IllBeWatching", text: null}], + nodeName: "questDescription", + V: "questLostBook", + tags: {W: ["trophyMasterNeutral"]}, + text: "Olive the Otter in Tanooki City has lost his book. Someone needs to help him find it." + }, { + U: [], nodeName: "IllBeWatching", V: "questLostBook", tags: {W: ["trophyMasterNeutral"]}, + text: "Funny tho...I never remember Olive liking to read before. Hee hee." + }], [{ + U: [{next: "hint", text: null}], + nodeName: "active", + V: "questLostPaddle", + tags: {W: ["inariNeutral"]}, + text: "Any luck finding my table tennis paddle?" + }, { + U: [], + nodeName: "hint", + V: "questLostPaddle", + tags: {W: ["inariNeutral"]}, + text: "I could have sworn I had it at the beach West of here..." + }], [{ + U: [{next: "trophyHint", text: null}], + nodeName: "activeTrophy", + V: "questLostPaddle", + tags: {W: ["trophyMasterNeutral"]}, + text: "Looks like you're in the middle of helping out with this one." + }, + { + U: [], + nodeName: "trophyHint", + V: "questLostPaddle", + tags: {W: ["trophyMasterNeutral"]}, + text: "I think I saw the lost paddle on the West alcove of Marathon Beach, hee hee." + }], [{ + U: [], + nodeName: "complete", + V: "questLostPaddle", + tags: {W: ["inariNeutral"]}, + text: "I can't wait to get back to training, thanks again!" + }], [{ + U: [{next: "StillWatching", text: null}], + nodeName: "completeTrophy", + V: "questLostPaddle", + tags: {W: ["luckyNeutral"]}, + text: "'Paddle Fetcher'" + }, { + U: [], nodeName: "StillWatching", V: "questLostPaddle", tags: {W: ["trophyMasterNeutral"]}, + text: "I saw the whole thing, you were magnificent. Hee hee." + }], [{ + U: [{next: "thanks", text: null}], + nodeName: "found", + V: "questLostPaddle", + tags: {W: ["inariNeutral"]}, + text: "My beautiful paddle! You found it!!" + }, { + U: [], + nodeName: "thanks", + V: "questLostPaddle", + tags: {W: ["inariNeutral"], zd: ["LOST_PADDLE", "complete"]}, + text: "I wish this game had an inventory system in place so I could thank you!" + }], [{ + U: [{next: "lastHint", text: null}], + nodeName: "foundTrophy", + V: "questLostPaddle", + tags: {W: ["trophyMasterNeutral"]}, + text: "You've almost got this one finished!" + }, + { + U: [], + nodeName: "lastHint", + V: "questLostPaddle", + tags: {W: ["trophyMasterNeutral"]}, + text: "You've found the lost paddle, now just return it to the wayard Inari on Marathon Beach, hee hee." + }], [{ + U: [{next: "yes", text: "Sure!"}, {next: "no", text: "Nah"}], + nodeName: "inactive", + V: "questLostPaddle", + tags: {W: ["inariNeutral"]}, + text: "I've lost my table tennis paddle! Can you help me find it?" + }, { + U: [], + nodeName: "yes", + V: "questLostPaddle", + tags: {W: ["inariNeutral"], zd: ["LOST_PADDLE", "active"]}, + text: "Oh thank you! I think I last had it on the beach." + }, + { + U: [{next: "changeMind", text: null}], + nodeName: "no", + V: "questLostPaddle", + tags: {W: ["inariNeutral"]}, + text: "...I see." + }, { + U: [], + nodeName: "changeMind", + V: "questLostPaddle", + tags: {W: ["inariNeutral"]}, + text: "Well let me know if you change your mind!" + }], [{ + U: [{next: "questDescription", text: null}], + nodeName: "inactiveTrophy", + V: "questLostPaddle", + tags: {W: ["trophyMasterNeutral"]}, + text: "Oh, I'm saving that spot." + }, { + U: [{next: "IllBeWatching", text: null}], + nodeName: "questDescription", + V: "questLostPaddle", + tags: {W: ["trophyMasterNeutral"]}, + text: "It seems a warward Inari has lost her Table Tennis Paddle." + }, { + U: [], + nodeName: "IllBeWatching", + V: "questLostPaddle", + tags: {W: ["trophyMasterNeutral"]}, + text: "Find her on the southwest beach to help. I'll be watching to see when the task is resolved. Hee hee hee." + }], [{ + U: [{next: "return", text: null}], + nodeName: "paddle", + V: "questLostPaddle", + tags: {W: ["luckyNeutral"]}, + text: "Wow, what a nice table tennis paddle..." + }, { + U: [], nodeName: "return", V: "questLostPaddle", tags: {W: ["luckyWorried"], zd: ["LOST_PADDLE", "found"]}, + text: "I should take it back to its owner!" + }], [{ + U: [{next: "notnotyet", text: null}], + nodeName: "active", + V: "questLuckyArrow", + tags: {W: ["youngArcherNeutral"]}, + text: "Did you find my lucky arrow?" + }, { + U: [{next: "roofagain", text: null}], + nodeName: "notnotyet", + V: "questLuckyArrow", + tags: {W: ["luckyNeutral"]}, + text: "Not yet, but I'm trying my best!" + }, { + U: [], + nodeName: "roofagain", + V: "questLuckyArrow", + tags: {W: ["youngArcherNeutral"]}, + text: "It landed on the roof of Yoichi's Castle...will I ever hit a bullseye again??" + }], [{ + U: [{ + next: "looksnormal", + text: null + }], + nodeName: "activeArrow", + V: "questLuckyArrow", + tags: {W: ["luckyHappy"]}, + text: "The lucky arrow, this must be it!" + }, { + U: [], + nodeName: "looksnormal", + V: "questLuckyArrow", + tags: {W: ["luckyAnnoyed"], zd: ["LUCKY_ARROW", "found"]}, + text: "(...It looks like any other arrow to me...)" + }], [{ + U: [{next: "trophyHint", text: null}], + nodeName: "activeTrophy", + V: "questLuckyArrow", + tags: {W: ["trophyMasterNeutral"]}, + text: "Looks like you're in the middle of helping out with this one." + }, { + U: [], + nodeName: "trophyHint", + V: "questLuckyArrow", + tags: {W: ["trophyMasterNeutral"]}, + text: "Get to the top of Yoichi's Castle in the North West docks to find the young archer's lost lucky arrow!" + }], [{ + U: [], + nodeName: "complete", + V: "questLuckyArrow", + tags: {W: ["youngArcherNeutral"]}, + text: "I've got a great feeling about this, maybe I can get this arrow all the way to the top of the mountains!" + }], [{ + U: [{next: "StillWatching", text: null}], + nodeName: "completeTrophy", + V: "questLuckyArrow", + tags: {W: ["luckyNeutral"]}, + text: '"Lucky Arrow Retriever"' + }, { + U: [], + nodeName: "StillWatching", + V: "questLuckyArrow", + tags: {W: ["trophyMasterNeutral"]}, + text: "I saw the whole thing, you were magnificent. Hee hee." + }], [{ + U: [{next: "whatarrow", text: null}], + nodeName: "found", + V: "questLuckyArrow", + tags: {W: ["luckyHappy"]}, + text: "You won't believe it, I found the arrow!" + }, { + U: [{next: "yourluckyarrow", text: null}], + nodeName: "whatarrow", + V: "questLuckyArrow", + tags: {W: ["youngArcherNeutral"]}, + text: "What arrow?" + }, { + U: [{next: "tooktoolong", text: null}], + nodeName: "yourluckyarrow", + V: "questLuckyArrow", + tags: {W: ["luckyAnnoyed"]}, + text: "Your lucky arrow, the one you lost on the roof!" + }, { + U: [{next: "yourekidding", text: null}], + nodeName: "tooktoolong", + V: "questLuckyArrow", + tags: {W: ["youngArcherNeutral"]}, + text: "Oh, but that was SO LONG ago! I found a new lucky arrow in the meantime!" + }, { + U: [{next: "isntitbeuatiful", text: null}], + nodeName: "yourekidding", + V: "questLuckyArrow", + tags: {W: ["luckyAnnoyed"]}, + text: "...what?" + }, { + U: [{next: "looksjustlikeold", text: null}], + nodeName: "isntitbeuatiful", + V: "questLuckyArrow", + tags: {W: ["youngArcherNeutral"]}, + text: "Yeah, isn't it beautiful??" + }, + { + U: [{next: "butitslucky", text: null}], + nodeName: "looksjustlikeold", + V: "questLuckyArrow", + tags: {W: ["luckyAnnoyed"]}, + text: "...It looks just like all the other arrows." + }, { + U: [{next: "ohbrother", text: null}], + nodeName: "butitslucky", + V: "questLuckyArrow", + tags: {W: ["youngArcherNeutral"]}, + text: "Yeah, but its lucky! I've got a great feeling about this, maybe I can get it all the way to the top of the mountains!" + }, { + U: [], nodeName: "ohbrother", V: "questLuckyArrow", tags: {W: ["luckyAnnoyed"], zd: ["LUCKY_ARROW", "complete"]}, + text: "Oh great..." + }], [{ + U: [{next: "lastHint", text: null}], + nodeName: "foundTrophy", + V: "questLuckyArrow", + tags: {W: ["trophyMasterNeutral"]}, + text: "You've almost got this one finished!" + }, { + U: [], + nodeName: "lastHint", + V: "questLuckyArrow", + tags: {W: ["trophyMasterNeutral"]}, + text: "Return the lucky arrow to the young archer outside Yoichi's Castle in the North West docks." + }], [{ + U: [{next: "whatswrong", text: null}], + nodeName: "inactive", + V: "questLuckyArrow", + tags: {W: ["youngArcherNeutral"]}, + text: "Oh no...what am I gonna do??" + }, + { + U: [{next: "arrowonroof", text: null}], + nodeName: "whatswrong", + V: "questLuckyArrow", + tags: {W: ["luckyCurious"]}, + text: "What seems to be the problem?" + }, { + U: [{next: "greatnews", text: null}], + nodeName: "arrowonroof", + V: "questLuckyArrow", + tags: {W: ["youngArcherNeutral"]}, + text: "I shot my lucky arrow higher than I ever have!" + }, { + U: [{next: "awful", text: null}], + nodeName: "greatnews", + V: "questLuckyArrow", + tags: {W: ["luckyHappy"]}, + text: "Oh, but that's great news!" + }, { + U: [{next: "neverseeagain", text: null}], nodeName: "awful", V: "questLuckyArrow", + tags: {W: ["youngArcherNeutral"]}, text: "No, it's awful! It landed on the roof of the Yochi's Castle!" + }, { + U: [{next: "illhelp", text: "I'll Help"}, {next: "sorry", text: "Sorry..."}], + nodeName: "neverseeagain", + V: "questLuckyArrow", + tags: {W: ["youngArcherNeutral"]}, + text: "I can't go that far away from the water. I'll never see my lucky arrow again!" + }, { + U: [{next: "poorluckyarrow", text: null}], + nodeName: "sorry", + V: "questLuckyArrow", + tags: {W: ["luckyWorried"]}, + text: "I'm sorry, I wish I could help." + }, { + U: [], nodeName: "poorluckyarrow", + V: "questLuckyArrow", tags: {W: ["youngArcherNeutral"]}, text: "My poor lucky arrow..." + }, { + U: [], + nodeName: "illhelp", + V: "questLuckyArrow", + tags: {zd: ["LUCKY_ARROW", "active"]}, + text: "Maybe I can find a way up to the roof! Wait here!" + }], [{ + U: [{next: "questDescription", text: null}], + nodeName: "inactiveTrophy", + V: "questLuckyArrow", + tags: {W: ["trophyMasterNeutral"]}, + text: "Oh, I'm saving that spot." + }, { + U: [{next: "IllBeWatching", text: null}], + nodeName: "questDescription", + V: "questLuckyArrow", + tags: {W: ["trophyMasterNeutral"]}, + text: "A young archer seems to have lost his lucky arrow at Yoichi's Castle in then Docks in the North West." + }, + { + U: [], + nodeName: "IllBeWatching", + V: "questLuckyArrow", + tags: {W: ["trophyMasterNeutral"]}, + text: "And I'll be watching to see when the task is resolved. Hee hee hee." + }], [{ + U: [], + nodeName: "active", + V: "questMomotaro", + tags: {W: ["momoDogNeutral"]}, + text: "Monkey last saw Momotaro heading north up Climbing Mountain. We hope you find him fast!" + }], [{ + U: [{next: "trophyHint", text: null}], + nodeName: "activeTrophy", + V: "questMomotaro", + tags: {W: ["trophyMasterNeutral"]}, + text: "Looks like you're in the middle of helping out with this one." + }, + { + U: [], + nodeName: "trophyHint", + V: "questMomotaro", + tags: {W: ["trophyMasterNeutral"]}, + text: "Momotaro was last seen heading into the Bamboo Forest in the North West. See if you can track him down, hee hee." + }], [{ + U: [{next: "StillWatching", text: null}], + nodeName: "completeTrophy", + V: "questMomotaro", + tags: {W: ["luckyNeutral"]}, + text: '"Peach Hunter"' + }, { + U: [], + nodeName: "StillWatching", + V: "questMomotaro", + tags: {W: ["trophyMasterNeutral"]}, + text: "I saw the whole thing, you were magnificent. Hee hee." + }], [{ + U: [{ + next: "wishedforachild", + text: null + }], + nodeName: "dad", + V: "questMomotaro", + tags: {W: ["momoDadNeutral"]}, + text: "My wife and I had wished for a child for years." + }, { + U: [{next: "offintheworld", text: null}], + nodeName: "wishedforachild", + V: "questMomotaro", + tags: {W: ["momoDadNeutral"]}, + text: "Then one day we found a peach floating down the river..." + }, { + U: [{next: "wheverpeaches", text: null}], + nodeName: "offintheworld", + V: "questMomotaro", + tags: {W: ["momoDadNeutral"]}, + text: "We cut it open and inside was a baby! That's how we found our son, Momotaro." + }, { + U: [], + nodeName: "wheverpeaches", + V: "questMomotaro", + tags: {W: ["momoDadNeutral"]}, + text: "Whereever there are peaches, you know Momotaro isn't far behind!" + }], [{ + U: [{next: "wereSoWorried", text: null}], + nodeName: "complete", + V: "questMomotaro", + tags: {W: ["momoDogNeutral"]}, + text: "Momotaro, you're back!" + }, { + U: [{next: "broughtPeaches", text: null}], + nodeName: "wereSoWorried", + V: "questMomotaro", + tags: {W: ["momoMonkeyNeutral"]}, + text: "We were so worried!" + }, { + U: [{next: "myFav", text: null}], nodeName: "broughtPeaches", V: "questMomotaro", tags: {W: ["momotaroNeutral"]}, + text: "Sorry everyone, but I brought us all peaches!" + }, { + U: [{next: "yummy", text: null}], + nodeName: "myFav", + V: "questMomotaro", + tags: {W: ["momoBirdNeutral"]}, + text: "Peaches, my favorite!" + }, { + U: [{next: "anythingTeam", text: null}], + nodeName: "yummy", + V: "questMomotaro", + tags: {W: ["momoDogNeutral"]}, + text: "So yummy! Thank you for finding him Lucky!" + }, { + U: [{next: "canIHave", text: null}], + nodeName: "anythingTeam", + V: "questMomotaro", + tags: {W: ["luckyHappy"]}, + text: "Anything to help the team out!" + }, { + U: [{next: "ofCourse", text: null}], + nodeName: "canIHave", V: "questMomotaro", tags: {W: ["luckyWorried"]}, text: "...can I have a peach too?" + }, { + U: [], + nodeName: "ofCourse", + V: "questMomotaro", + tags: {W: ["momotaroNeutral"]}, + text: "Of course!" + }], [{ + U: [{next: "lastHint", text: null}], + nodeName: "foundTrophy", + V: "questMomotaro", + tags: {W: ["trophyMasterNeutral"]}, + text: "You've almost got this one finished!" + }, { + U: [], + nodeName: "lastHint", + V: "questMomotaro", + tags: {W: ["trophyMasterNeutral"]}, + text: "Go back to Oni Island to see if Momotaro made it back to his team safely, hee hee." + }], + [{ + U: [{next: "whatsWrong", text: null}], + nodeName: "inactive", + V: "questMomotaro", + tags: {W: ["momoDogNeutral"]}, + text: "Oh no..." + }, { + U: [{next: "momoMissing", text: null}], + nodeName: "whatsWrong", + V: "questMomotaro", + tags: {W: ["luckyCurious"]}, + text: "What's wrong?" + }, { + U: [{next: "doomed", text: null}], + nodeName: "momoMissing", + V: "questMomotaro", + tags: {W: ["momoDogNeutral"]}, + text: "Momotaro has gone missing! And he's our team captain, how can we play without him?" + }, { + U: [{next: "help", text: "Help"}, {next: "sorry", text: "Sorry"}], nodeName: "doomed", + V: "questMomotaro", tags: {W: ["momoMonkeyNeutral"]}, text: "And it's the day of the big game! WE'RE DOOMED!!" + }, { + U: [{next: "ohThankYou", text: null}], + nodeName: "help", + V: "questMomotaro", + tags: {W: ["luckyNeutral"]}, + text: "Everybody stay calm, maybe I can help find him!" + }, { + U: [{next: "teamPlayer", text: null}], + nodeName: "ohThankYou", + V: "questMomotaro", + tags: {W: ["momoBirdNeutral"]}, + text: "You would do that for us?" + }, { + U: [], + nodeName: "teamPlayer", + V: "questMomotaro", + tags: {W: ["momoDogNeutral"], zd: ["MOMOTARO", "peach1"]}, + text: "What a team player! Monkey last saw him heading north up Climibng Mountain." + }, + { + U: [], + nodeName: "sorry", + V: "questMomotaro", + tags: {W: ["luckyNeutral"]}, + text: "Sorry, I hope you find him..." + }], [{ + U: [{next: "questDescription", text: null}], + nodeName: "inactiveTrophy", + V: "questMomotaro", + tags: {W: ["trophyMasterNeutral"]}, + text: "Oh, I'm saving that spot." + }, { + U: [{next: "IllBeWatching", text: null}], + nodeName: "questDescription", + V: "questMomotaro", + tags: {W: ["trophyMasterNeutral"]}, + text: "Momotaro, Captain of the Rugby Team, has gone missing on Oni Island in the East. Where could he be..." + }, { + U: [], + nodeName: "IllBeWatching", + V: "questMomotaro", + tags: {W: ["trophyMasterNeutral"]}, + text: "I'll be watching to see when the task is resolved. Hee hee hee." + }], [{ + U: [{next: "backsoon", text: null}], + nodeName: "mom", + V: "questMomotaro", + tags: {W: ["momoMomNeutral"]}, + text: "Our son Momotaro left for Oni Island to play rugby." + }, { + U: [], + nodeName: "backsoon", + V: "questMomotaro", + tags: {W: ["momoMomNeutral"]}, + text: "I hope he comes to visit us soon." + }], [{ + U: [{next: "doingHere", text: null}], + nodeName: "momotaro", + V: "questMomotaro", + tags: {W: ["luckyNeutral"]}, + text: "Momotaro, here you are!" + }, + { + U: [{next: "teamWorried", text: null}], + nodeName: "doingHere", + V: "questMomotaro", + tags: {W: ["momotaroNeutral"]}, + text: "Oh, hello Lucky! What are you doing all the way out here?" + }, { + U: [{next: "parents", text: null}], + nodeName: "teamWorried", + V: "questMomotaro", + tags: {W: ["luckyNeutral"], zd: ["MOMOTARO", "peach3"]}, + text: "You teammates are worried about you, they are getting ready for the big game!" + }, { + U: [{next: "momDad", text: null}], + nodeName: "parents", + V: "questMomotaro", + tags: {W: ["momotaroNeutral"]}, + text: "Oh no, well there's nothing to worry about! I just came to visit my parents." + }, + { + U: [{next: "whyHello", text: null}], + nodeName: "momDad", + V: "questMomotaro", + tags: {W: ["momotaroNeutral"]}, + text: "Mom, Dad...this is Lucky, the amazing athlete I was telling you about!" + }, { + U: [{next: "heardAlot", text: null}], + nodeName: "whyHello", + V: "questMomotaro", + tags: {W: ["momoDadNeutral"]}, + text: "Why hello Lucky, nice to meet you." + }, { + U: [{next: "blush", text: null}], + nodeName: "heardAlot", + V: "questMomotaro", + tags: {W: ["momoMomNeutral"]}, + text: "We've heard a lot about you, our son is very thankful for all your help." + }, { + U: [{ + next: "betterGetBack", + text: null + }], + nodeName: "blush", + V: "questMomotaro", + tags: {W: ["luckyNeutral"]}, + text: "Oh my...well it's nice to meet you both!" + }, { + U: [{next: "dontForget", text: null}], + nodeName: "betterGetBack", + V: "questMomotaro", + tags: {W: ["momotaroNeutral"]}, + text: "Well, we better get back to the rugby game." + }, { + U: [{next: "thanksBye", text: null}], + nodeName: "dontForget", + V: "questMomotaro", + tags: {W: ["momoMomNeutral"]}, + text: "Be careful with the Oni, and don't forget these peaches for your friends." + }, { + U: [], nodeName: "thanksBye", V: "questMomotaro", + tags: {W: ["momotaroNeutral"], zd: ["MOMOTARO", "complete"]}, text: "Right! Thanks Mom, see you both soon!" + }], [{ + U: [{next: "mustBe", text: null}], + nodeName: "peach1", + V: "questMomotaro", + tags: {W: ["luckyNeutral"]}, + text: "What's this, a peach?" + }, { + U: [], + nodeName: "mustBe", + V: "questMomotaro", + tags: {W: ["luckyNeutral"], zd: ["MOMOTARO", "peach2"]}, + text: "Momotaro must be this way!" + }], [{ + U: [], + nodeName: "peach2", + V: "questMomotaro", + tags: {W: ["luckyNeutral"], zd: ["MOMOTARO", "peach3"]}, + text: "Another peach! I must be on the right track!" + }], + [{ + U: [], + nodeName: "peach3", + V: "questMomotaro", + tags: {W: ["luckyNeutral"], zd: ["MOMOTARO", "found"]}, + text: "More peaches! I've got to be getting close now!" + }], [{U: [{next: "firstHint", text: null}], nodeName: "active", V: "questNAME", tags: {W: [""]}, text: "XXX"}, { + U: [], + nodeName: "firstHint", + V: "questNAME", + tags: {W: [""]}, + text: "XXX" + }], [{ + U: [{next: "trophyHint", text: null}], + nodeName: "activeTrophy", + V: "questNAME", + tags: {W: ["trophyMasterNeutral"]}, + text: "Looks like you're in the middle of helping out with this one." + }, { + U: [], nodeName: "trophyHint", + V: "questNAME", tags: {W: ["trophyMasterNeutral"]}, text: "XXX" + }], [{U: [], nodeName: "complete", V: "questNAME", tags: {W: [""]}, text: "XXX"}], [{ + U: [{ + next: "StillWatching", + text: null + }], nodeName: "completeTrophy", V: "questNAME", tags: {W: ["luckyNeutral"]}, text: '"TROPHYNAME"' + }, { + U: [], + nodeName: "StillWatching", + V: "questNAME", + tags: {W: ["trophyMasterNeutral"]}, + text: "I saw the whole thing, you were magnificent. Hee hee." + }], [{U: [{next: "thanks", text: null}], nodeName: "found", V: "questNAME", tags: {W: [""]}, text: "XXX"}, { + U: [], nodeName: "thanks", + V: "questNAME", tags: {W: [""], zd: ["NAME", "complete"]}, text: "XXX" + }], [{ + U: [{next: "lastHint", text: null}], + nodeName: "foundTrophy", + V: "questNAME", + tags: {W: ["trophyMasterNeutral"]}, + text: "You've almost got this one finished!" + }, { + U: [], + nodeName: "lastHint", + V: "questNAME", + tags: {W: ["trophyMasterNeutral"]}, + text: "Finish up and come back to see your reward, see hee." + }], [{ + U: [{next: "questDescription", text: null}], + nodeName: "inactiveTrophy", + V: "questNAME", + tags: {W: ["trophyMasterNeutral"]}, + text: "Oh, I'm saving that spot." + }, { + U: [{ + next: "IllBeWatching", + text: null + }], + nodeName: "questDescription", + V: "questNAME", + tags: {W: ["trophyMasterNeutral"]}, + text: "There's someone on the island who needs the Champion's help. YOUR help." + }, { + U: [], + nodeName: "IllBeWatching", + V: "questNAME", + tags: {W: ["trophyMasterNeutral"]}, + text: "And I'll be watching to see when the task is resolved. Hee hee hee." + }], [{ + U: [{next: "activewhatswrongbaker", text: null}], + nodeName: "activeBaker", + V: "questOni", + tags: {W: ["monkeyBaker"]}, + text: "*Sigh*" + }, { + U: [{next: "activereadytoretire", text: null}], nodeName: "activewhatswrongbaker", + V: "questOni", tags: {W: ["luckyNeutral"]}, text: "What's wrong?" + }, { + U: [{next: "activewarmallthetime", text: null}], + nodeName: "activereadytoretire", + V: "questOni", + tags: {W: ["monkeyBaker"]}, + text: "I've been a baker for so long, I feel ready to call it quits." + }, { + U: [{next: "howwarm", text: null}], + nodeName: "activewarmallthetime", + V: "questOni", + tags: {W: ["monkeyBaker"]}, + text: "I'd love to retire someplace where it's warm all the time and I can just relax." + }, { + U: [{next: "whereisthat", text: null}], nodeName: "howwarm", V: "questOni", + tags: {W: ["luckyNeutral"]}, text: "Hm...how about somewhere very VERY warm?" + }, { + U: [{next: "ihaveafriend", text: null}], + nodeName: "whereisthat", + V: "questOni", + tags: {W: ["monkeyBaker"]}, + text: "The warmer the better! Do you have something in mind?" + }, { + U: [{next: "wonderfulbring", text: null}], + nodeName: "ihaveafriend", + V: "questOni", + tags: {W: ["luckyNeutral"]}, + text: "I have a friend who wants to become a baker! But he's-" + }, { + U: [{next: "butihavent", text: null}], + nodeName: "wonderfulbring", + V: "questOni", + tags: {W: ["monkeyBaker"]}, + text: "Oh how wonderful! My wildest dreams are coming true! Bring your friend here as soon as you can!" + }, + { + U: [{next: "whocares", text: "He's Big"}, {next: "whocares", text: "He's Red"}, { + next: "whocares", + text: "He's an Oni" + }], + nodeName: "butihavent", + V: "questOni", + tags: {W: ["luckyNeutral"]}, + text: "But I haven't told you anything about him..." + }, { + U: [], + nodeName: "whocares", + V: "questOni", + tags: {W: ["monkeyBaker"], zd: ["ONI", "found"]}, + text: "Who cares?? If he has the baking spirit, that's all that matters. I can't wait to meet him!" + }], [{ + U: [{next: "stilllooking", text: null}], nodeName: "active", V: "questOni", tags: {W: ["oniDreamer"]}, + text: "Any luck on finding a place for me to work in Tanooki City?" + }, { + U: [], + nodeName: "stilllooking", + V: "questOni", + tags: {W: ["luckyHappy"]}, + text: "Still looking!" + }], [{ + U: [{next: "trophyHint", text: null}], + nodeName: "activeTrophy", + V: "questOni", + tags: {W: ["trophyMasterNeutral"]}, + text: "Looks like you're in the middle of helping out with this one." + }, { + U: [], + nodeName: "trophyHint", + V: "questOni", + tags: {W: ["trophyMasterNeutral"]}, + text: "Help find a place in Tanooki City for an Oni to pursue his dream of becoming a baker!" + }], + [{ + U: [{next: "bakingisbetter", text: null}], + nodeName: "complete", + V: "questOni", + tags: {W: ["oniBaker"]}, + text: "Baking is better than I even imagined, everyone is so happy!" + }, { + U: [], + nodeName: "bakingisbetter", + V: "questOni", + tags: {W: ["oniBaker"]}, + text: "You were right Lucky, I'm so happy I finally made my dream come true!" + }], [{ + U: [{next: "oniisbetter", text: null}], + nodeName: "completeBaker", + V: "questOni", + tags: {W: ["monkeyRetired"]}, + text: "Retirement on Oni Island is better than I could have dreamed!" + }, { + U: [], + nodeName: "oniisbetter", + V: "questOni", + tags: {W: ["monkeyRetired"]}, + text: "Being surrounded by boiling hot lava all day long...what could be more relaxing??" + }], [{ + U: [{next: "StillWatching", text: null}], + nodeName: "completeTrophy", + V: "questOni", + tags: {W: ["luckyNeutral"]}, + text: '"Bakery Real Estate Agent"' + }, { + U: [], + nodeName: "StillWatching", + V: "questOni", + tags: {W: ["trophyMasterNeutral"]}, + text: "I saw the whole thing, you were magnificent. Hee hee." + }], [{ + U: [{next: "sosudden", text: null}], + nodeName: "found", + V: "questOni", + tags: {W: ["luckyHappy"]}, + text: "Great news! The baker in Tanooki City wants to retire, he's willing to give you his shop!" + }, + { + U: [{next: "waitingforyou", text: null}], + nodeName: "sosudden", + V: "questOni", + tags: {W: ["oniDreamer"]}, + text: "Oh my...I can't believe it!" + }, { + U: [{next: "wowsosudden", text: null}], + nodeName: "waitingforyou", + V: "questOni", + tags: {W: ["luckyHappy"]}, + text: "Let's go, he's waiting for you!" + }, { + U: [{next: "leavehome", text: null}], + nodeName: "wowsosudden", + V: "questOni", + tags: {W: ["oniDreamer"]}, + text: "It's so sudden...can I really do this?" + }, { + U: [{next: "nogood", text: null}], + nodeName: "leavehome", + V: "questOni", + tags: {W: ["oniDreamer"]}, + text: "Leave my home and everything I've ever known?" + }, + { + U: [{next: "dreamsarehard2", text: null}], + nodeName: "nogood", + V: "questOni", + tags: {W: ["oniDreamer"]}, + text: "What if I'm no good?? What if I get homesick?" + }, { + U: [{next: "ilefteverything", text: null}], + nodeName: "dreamsarehard2", + V: "questOni", + tags: {W: ["luckyNeutral"]}, + text: "No one ever said following your dream is easy..." + }, { + U: [{next: "noregrets", text: null}], + nodeName: "ilefteverything", + V: "questOni", + tags: {W: ["luckyNeutral"]}, + text: "I left everything to come here, because I had a dream!" + }, { + U: [{next: "ibelieveinyou", text: null}], + nodeName: "noregrets", + V: "questOni", + tags: {W: ["luckyNeutral"]}, + text: "It's challenging, but I've grown so much and I have no regets!" + }, { + U: [{next: "yourerightlucky", text: null}], + nodeName: "ibelieveinyou", + V: "questOni", + tags: {W: ["luckyHappy"]}, + text: "I believe in you! You could be the best baker this island ever saw!" + }, { + U: [{next: "givemestength", text: null}], + nodeName: "yourerightlucky", + V: "questOni", + tags: {W: ["oniDreamer"]}, + text: "You believe in me..." + }, { + U: [{next: "meetyouthere", text: null}], nodeName: "givemestength", + V: "questOni", tags: {W: ["oniDreamer"]}, text: "Just hearing that give me stength. OK! Let's go!" + }, { + U: [], + nodeName: "meetyouthere", + V: "questOni", + tags: {W: ["oniDreamer"], zd: ["ONI", "complete"]}, + text: "I'll meet you in Tanooki City!" + }], [{ + U: [], + nodeName: "foundBaker", + V: "questOni", + tags: {W: ["monkeyBaker"]}, + text: "Is your friend here yet? hurry up, I've already started packing!" + }], [{ + U: [{next: "lastHint", text: null}], + nodeName: "foundTrophy", + V: "questOni", + tags: {W: ["trophyMasterNeutral"]}, + text: "You've almost got this one finished!" + }, + { + U: [], + nodeName: "lastHint", + V: "questOni", + tags: {W: ["trophyMasterNeutral"]}, + text: "Tell the Oni on Oni Island you've found a spot in Tanooki City that needs a new baker!" + }], [{ + U: [{next: "whatswrong", text: null}], + nodeName: "inactive", + V: "questOni", + tags: {W: ["oniDreamer"]}, + text: "*Sigh*" + }, { + U: [{next: "everyonescared", text: null}], + nodeName: "whatswrong", + V: "questOni", + tags: {W: ["luckyCurious"]}, + text: "W-what's wrong?" + }, { + U: [{next: "neverdream", text: null}], + nodeName: "everyonescared", + V: "questOni", + tags: {W: ["oniDreamer"]}, + text: "Being an Oni is tough. Everyone is always so scared of me." + }, + { + U: [{next: "dream", text: "Dream?"}, {next: "sorry", text: "S-sorry"}], + nodeName: "neverdream", + V: "questOni", + tags: {W: ["oniDreamer"]}, + text: "After all these years of playing Rugby, I'll never make my dream come true..." + }, { + U: [{next: "ofcoursewont", text: null}], + nodeName: "sorry", + V: "questOni", + tags: {W: ["luckyWorried"]}, + text: "S-s-sorry...please d-don't hurt m-me..." + }, { + U: [], + nodeName: "ofcoursewont", + V: "questOni", + tags: {W: ["oniDreamer"]}, + text: "Of course I wouldn't hurt you *sigh*" + }, { + U: [{next: "bigcity", text: null}], nodeName: "dream", + V: "questOni", tags: {W: ["luckyCurious"]}, text: "What's your dream?" + }, { + U: [{next: "makepeoplehappy", text: null}], + nodeName: "bigcity", + V: "questOni", + tags: {W: ["oniDreamer"]}, + text: "I've always wanted to move to Tanooki City and become a baker!" + }, { + U: [{next: "howwonderful", text: null}], + nodeName: "makepeoplehappy", + V: "questOni", + tags: {W: ["oniDreamer"]}, + text: "I'd rather use my stength to punch dough! What better way to make people happy than giving them delicious food." + }, { + U: [{next: "noonewould", text: null}], nodeName: "howwonderful", + V: "questOni", tags: {W: ["luckyHappy"]}, text: "How wonderful! Why don't you do it?" + }, { + U: [{next: "help", text: "Help"}, {next: "sorryno", text: "Sorry"}], + nodeName: "noonewould", + V: "questOni", + tags: {W: ["oniDreamer"]}, + text: "Who would trust an Oni in the city? I could never even find shop to start in." + }, { + U: [{next: "sodoi", text: null}], + nodeName: "sorryno", + V: "questOni", + tags: {W: ["luckyWorried"]}, + text: "I'm sorry, I wish I could help." + }, { + U: [], + nodeName: "sodoi", + V: "questOni", + tags: {W: ["oniDreamer"]}, + text: "*sigh* It was a silly dream anyway..." + }, + { + U: [{next: "doforme", text: null}], + nodeName: "help", + V: "questOni", + tags: {W: ["luckyHappy"]}, + text: "I can try and help! I'll check Tanooki City to see if anyone might need a new baker!" + }, { + U: [], + nodeName: "doforme", + V: "questOni", + tags: {W: ["oniDreamer"], zd: ["ONI", "active"]}, + text: "Oh..that would be so wonderful! Thank you for beleiving in my dream!" + }], [{ + U: [{next: "whatswrongbaker", text: null}], + nodeName: "inactiveBaker", + V: "questOni", + tags: {W: ["monkeyBaker"]}, + text: "*Sigh*" + }, { + U: [{next: "readytoretire", text: null}], nodeName: "whatswrongbaker", + V: "questOni", tags: {W: ["luckyNeutral"]}, text: "What's wrong?" + }, { + U: [{next: "warmallthetime", text: null}], + nodeName: "readytoretire", + V: "questOni", + tags: {W: ["monkeyBaker"]}, + text: "I've been a baker for so long, I feel ready to call it quits." + }, { + U: [{next: "soundslovely", text: null}], + nodeName: "warmallthetime", + V: "questOni", + tags: {W: ["monkeyBaker"]}, + text: "I'd love to retire someplace where it's warm all the time and I can just relax." + }, { + U: [{next: "whowillbread", text: null}], nodeName: "soundslovely", V: "questOni", tags: {W: ["luckyHappy"]}, + text: "That sounds very nice, and like you've earned it!" + }, { + U: [{next: "sighdream", text: null}], + nodeName: "whowillbread", + V: "questOni", + tags: {W: ["monkeyBaker"]}, + text: "But who will make the bread if its not me?? THe city would go hungry." + }, { + U: [{next: "luckyhmm", text: null}], + nodeName: "sighdream", + V: "questOni", + tags: {W: ["monkeyBaker"]}, + text: "*sigh* Some dreams aren't meant to come true." + }, {U: [], nodeName: "luckyhmm", V: "questOni", tags: {W: ["luckyWorried"]}, text: "Hmm..."}], [{ + U: [{next: "questDescription", text: null}], + nodeName: "inactiveTrophy", V: "questOni", tags: {W: ["trophyMasterNeutral"]}, text: "Oh, I'm saving that spot." + }, { + U: [{next: "IllBeWatching", text: null}], + nodeName: "questDescription", + V: "questOni", + tags: {W: ["trophyMasterNeutral"]}, + text: "One of the strongest Oni on Oni Island in the east is thinking about a career change..." + }, { + U: [], + nodeName: "IllBeWatching", + V: "questOni", + tags: {W: ["trophyMasterNeutral"]}, + text: "I'll be watching to see when the task is resolved. Hee hee hee." + }], [{ + U: [{next: "sssorry", text: null}], + nodeName: "active", + V: "questPorcupine", + tags: {W: ["porcupineNeutral"]}, + text: "What are you talking to me for? Delivery my letter to the locksmith in Oni Island in the East!" + }, { + U: [{next: "forgiveyou", text: null}], + nodeName: "sssorry", + V: "questPorcupine", + tags: {W: ["luckyWorried"]}, + text: "S-sorry." + }, { + U: [], + nodeName: "forgiveyou", + V: "questPorcupine", + tags: {W: ["porcupineNeutral"]}, + text: "I forgive you. Now get going!" + }], [{ + U: [{next: "letterforyou", text: null}], + nodeName: "activeLocksmith", + V: "questPorcupine", + tags: {W: ["locksmithNeutral"]}, + text: "Welcome to Hiro's Locks!" + }, + { + U: [{next: "inages", text: null}], + nodeName: "letterforyou", + V: "questPorcupine", + tags: {W: ["luckyNeutral"]}, + text: "Hi Hiro! I have a letter for you from the porcupine in the North West Docks." + }, { + U: [{next: "ohmymy", text: null}], + nodeName: "inages", + V: "questPorcupine", + tags: {W: ["locksmithNeutral"]}, + text: "From Petunia? I haven't seen her in ages! Thank you!" + }, { + U: [{next: "everythingok", text: null}], + nodeName: "ohmymy", + V: "questPorcupine", + tags: {W: ["locksmithNeutral"]}, + text: "....Hm. Oh my my, that's quite a request." + }, { + U: [{ + next: "onemoment", + text: null + }], nodeName: "everythingok", V: "questPorcupine", tags: {W: ["luckyNeutral"]}, text: "Everything OK?" + }, { + U: [{next: "deliverPet", text: null}], + nodeName: "onemoment", + V: "questPorcupine", + tags: {W: ["locksmithNeutral"]}, + text: "Yes, just one moment!" + }, { + U: [{next: "soheavy", text: null}], + nodeName: "deliverPet", + V: "questPorcupine", + tags: {W: ["locksmithNeutral"]}, + text: "Here you go! Could you please deliver this package to Petunia?" + }, { + U: [{next: "fivehundred", text: null}], nodeName: "soheavy", V: "questPorcupine", tags: {W: ["luckyWorried"]}, + text: "It's so heavy!" + }, { + U: [], + nodeName: "fivehundred", + V: "questPorcupine", + tags: {W: ["locksmithNeutral"], zd: ["PORCUPINE", "found"]}, + text: "Yes, five hundred locks seems like an odd request, but who am I to argue with a customer?" + }], [{ + U: [{next: "trophyHint", text: null}], + nodeName: "activeTrophy", + V: "questPorcupine", + tags: {W: ["trophyMasterNeutral"]}, + text: "Looks like you're in the middle of helping out with this one." + }, { + U: [], + nodeName: "trophyHint", + V: "questPorcupine", + tags: {W: ["trophyMasterNeutral"]}, + text: "Petunia the Porcupine wants you to deliver a letter to the Locksmith in Tanooki City in the South West, hee hee." + }], + [{ + U: [], + nodeName: "click", + V: "questPorcupine", + tags: {W: [""], zd: ["PORCUPINE", "complete"]}, + text: "*click*" + }], [{ + U: [{next: "whatshewants", text: null}], + nodeName: "complete", + V: "questPorcupine", + tags: {W: ["luckyAnnoyed"]}, + text: "...the door's locked." + }, { + U: [], + nodeName: "whatshewants", + V: "questPorcupine", + tags: {W: ["luckyHappy"]}, + text: "Oh well, I guess she got what she wanted." + }], [{ + U: [], + nodeName: "completeLocksmith", + V: "questPorcupine", + tags: {W: ["locksmithNeutral"]}, + text: "I hope Petunia likes those locks, they should last a lifetime!" + }], + [{ + U: [{next: "StillWatching", text: null}], + nodeName: "completeTrophy", + V: "questPorcupine", + tags: {W: ["luckyNeutral"]}, + text: '"Hermit Enabler"' + }, { + U: [], + nodeName: "StillWatching", + V: "questPorcupine", + tags: {W: ["trophyMasterNeutral"]}, + text: "I saw the whole thing, you were magnificent. Hee hee." + }], [{ + U: [], + nodeName: "delivered", + V: "questPorcupine", + tags: {W: ["porcupineNeutral"]}, + text: "You can leave now. I really wish you would." + }], [{ + U: [{next: "foundlock", text: null}], nodeName: "found", V: "questPorcupine", tags: {W: ["porcupineNeutral"]}, + text: "You again?" + }, { + U: [{next: "fantastic", text: null}], + nodeName: "foundlock", + V: "questPorcupine", + tags: {W: ["luckyNeutral"]}, + text: "I delivered the letter, the locksmith gave me this package for you." + }, { + U: [], + nodeName: "fantastic", + V: "questPorcupine", + tags: {W: ["porcupineNeutral"], zd: ["PORCUPINE", "delivered"]}, + text: "Oh how splendid. You can leave now." + }], [{ + U: [], + nodeName: "foundLocksmith", + V: "questPorcupine", + tags: {W: ["locksmithNeutral"]}, + text: "Five hundred locks seems like an odd request, but who am I to argue with a customer?" + }], + [{ + U: [{next: "lastHint", text: null}], + nodeName: "foundTrophy", + V: "questPorcupine", + tags: {W: ["trophyMasterNeutral"]}, + text: "You've almost got this one finished!" + }, { + U: [], + nodeName: "lastHint", + V: "questPorcupine", + tags: {W: ["trophyMasterNeutral"]}, + text: "Deliver the Locksmith's package to Petunia the Porcupine in the North East Docks, hee hee." + }], [{ + U: [{next: "haventyouheard", text: null}], + nodeName: "inactive", + V: "questPorcupine", + tags: {W: ["porcupineNeutral"]}, + text: "There's so much terrible noise outside, what's going on?" + }, + { + U: [{next: "lastyear", text: null}], + nodeName: "haventyouheard", + V: "questPorcupine", + tags: {W: ["luckyNeutral"]}, + text: "Haven't you heard? The Champion Games are happening!" + }, { + U: [{next: "wanttojoin", text: null}], + nodeName: "lastyear", + V: "questPorcupine", + tags: {W: ["porcupineNeutral"]}, + text: "Again?? I thought they were supposed to happen last year..." + }, { + U: [{next: "ofcoursenot", text: null}], + nodeName: "wanttojoin", + V: "questPorcupine", + tags: {W: ["luckyNeutral"]}, + text: "Don't you want to join everyone?" + }, { + U: [{next: "lonely", text: null}], + nodeName: "ofcoursenot", + V: "questPorcupine", + tags: {W: ["porcupineNeutral"]}, + text: "Of course not! I'm quite happy inside." + }, { + U: [{next: "wayilike", text: null}], + nodeName: "lonely", + V: "questPorcupine", + tags: {W: ["luckyWorried"]}, + text: "That sounds very lonely..." + }, { + U: [{next: "lockthedoor", text: null}], + nodeName: "wayilike", + V: "questPorcupine", + tags: {W: ["porcupineNeutral"]}, + text: "And that's just the way I like it!" + }, { + U: [{next: "goodpoint", text: null}], + nodeName: "lockthedoor", + V: "questPorcupine", + tags: {W: ["luckyCurious"]}, + text: "If you like being alone, why do you leave your front door open?" + }, + { + U: [{next: "favor", text: null}], + nodeName: "goodpoint", + V: "questPorcupine", + tags: {W: ["porcupineNeutral"]}, + text: "..." + }, { + U: [{next: "yes", text: "Yes"}, {next: "no", text: "No"}], + nodeName: "favor", + V: "questPorcupine", + tags: {W: ["porcupineNeutral"]}, + text: "...I wonder if you might do me a favor?" + }, { + U: [{next: "wonderful", text: null}], + nodeName: "yes", + V: "questPorcupine", + tags: {W: ["luckyHappy"]}, + text: "A favor, of course! I'm happy to help." + }, { + U: [{next: "ssure", text: null}], nodeName: "wonderful", V: "questPorcupine", tags: {W: ["porcupineNeutral"]}, + text: "Wonderful. There's a locksmith in Oni Island in the East, could you take him this letter from me?" + }, { + U: [{next: "goodcat", text: null}], + nodeName: "ssure", + V: "questPorcupine", + tags: {W: ["luckyNeutral"]}, + text: "Letter? S-sure." + }, { + U: [], + nodeName: "goodcat", + V: "questPorcupine", + tags: {W: ["porcupineNeutral"], zd: ["PORCUPINE", "active"]}, + text: "Splendid. I will enjoy the peace and quiet until you return." + }, { + U: [{next: "useless", text: null}], + nodeName: "no", + V: "questPorcupine", + tags: {W: ["luckyNeutral"]}, + text: "Sorry, I don't think I can." + }, + { + U: [], + nodeName: "useless", + V: "questPorcupine", + tags: {W: ["porcupineNeutral"]}, + text: "*Sigh* As I expected, never rely on anyone but yourself." + }], [{ + U: [{next: "sorryno", text: null}], + nodeName: "inactiveLocksmith", + V: "questPorcupine", + tags: {W: ["locksmithNeutral"]}, + text: "Welcome to Hiro's Locks, the key to success! Can I help you?" + }, { + U: [{next: "alwayshere", text: null}], + nodeName: "sorryno", + V: "questPorcupine", + tags: {W: ["luckyNeutral"]}, + text: "Sorry, I don't need any locks or keys. Thank you though!" + }, { + U: [], nodeName: "alwayshere", + V: "questPorcupine", tags: {W: ["locksmithNeutral"]}, text: "No problem, come anytime, my door is always open!" + }], [{ + U: [{next: "questDescription", text: null}], + nodeName: "inactiveTrophy", + V: "questPorcupine", + tags: {W: ["trophyMasterNeutral"]}, + text: "Oh, I'm saving that spot." + }, { + U: [{next: "IllBeWatching", text: null}], + nodeName: "questDescription", + V: "questPorcupine", + tags: {W: ["trophyMasterNeutral"]}, + text: "There's a lonely porcupine living in the North West Docks. Maybe you can help her conquer her fear of the outside." + }, + { + U: [], + nodeName: "IllBeWatching", + V: "questPorcupine", + tags: {W: ["trophyMasterNeutral"]}, + text: "And I'll be watching to see when the task is resolved. Hee hee hee." + }], [{ + U: [], + nodeName: "locked", + V: "questPorcupine", + tags: {W: ["porcupineNeutral"]}, + text: "You can leave now. I really wish you would." + }], [{ + U: [{next: "meneither", text: null}], + nodeName: "active", + V: "questRace", + tags: {W: ["racerAMad"]}, + text: "I'm not moving until you say I won!" + }, { + U: [{next: "geez", text: null}], nodeName: "meneither", V: "questRace", tags: {W: ["racerBMad"]}, + text: "I'm not moving until YOU say I won!" + }, { + U: [], + nodeName: "geez", + V: "questRace", + tags: {W: ["luckyHide"]}, + text: "Yikes, maybe I'd better leave..." + }], [{ + U: [{next: "blockingbeach", text: null}], + nodeName: "activeCrab", + V: "questRace", + tags: {W: ["crabNeutral"]}, + text: "All that bickering... those two must be at it again. I can hear it from out here!" + }, { + U: [{next: "toobad", text: null}], + nodeName: "blockingbeach", + V: "questRace", + tags: {W: ["luckyWorried"]}, + text: "Yes! Seems like they're refusing to move aside until one of them gives up." + }, + { + U: [{next: "hangry", text: null}], + nodeName: "toobad", + V: "questRace", + tags: {W: ["crabNeutral"]}, + text: "Too bad... the secret beach is lovely this time of year." + }, { + U: [{next: "conveniencestore", text: null}], + nodeName: "hangry", + V: "questRace", + tags: {W: ["crabNeutral"]}, + text: "Those two are best friends, but they fight a lot. Running makes them hungry, and hunger makes them angry." + }, { + U: [], + nodeName: "conveniencestore", + V: "questRace", + tags: {W: ["crabNeutral"]}, + text: "I bet you could get them to move if you brought them a snack from the bakery in Tanooki City..." + }], + [{ + U: [{next: "nomoney", text: null}], + nodeName: "activeMelonBread", + V: "questRace", + tags: {W: ["conviniNeutral"]}, + text: "Welcome to our bakery! Today we're selling a special melon bread. It's delicious!" + }, { + U: [{next: "freesample", text: null}], + nodeName: "nomoney", + V: "questRace", + tags: {W: ["luckyWorried"]}, + text: "Oh wow! Too bad I don't have any money..." + }, { + U: [{next: "decision", text: null}], + nodeName: "freesample", + V: "questRace", + tags: {W: ["conviniNeutral"]}, + text: "No money? No problem! Here's a free sample!" + }, { + U: [{ + next: "shouldi", + text: null + }], nodeName: "decision", V: "questRace", tags: {W: ["luckyNeutral"]}, text: "Yum! It smells amazing!" + }, { + U: [{next: "eatit", text: "Eat it."}, {next: "saveit", text: "Save it."}, {next: "refuse", text: "Refuse it."}], + nodeName: "shouldi", + V: "questRace", + tags: {W: ["luckyNeutral"]}, + text: "I could eat this now... or I could save it for those two racers to unblock the path to the beach..." + }, { + U: [], + nodeName: "eatit", + V: "questRace", + tags: {W: ["luckyHappy"]}, + text: "It smells too good! I gotta try it!" + }, { + U: [], + nodeName: "saveit", + V: "questRace", + tags: {W: ["luckyNeutral"], zd: ["RACE", "found"]}, + text: "This will be the perfect thing to patch things up between those two racers." + }, { + U: [{next: "suitthyself", text: null}], + nodeName: "refuse", + V: "questRace", + tags: {W: ["luckySmileSweatdrop"]}, + text: "Um..no thank you." + }, { + U: [], + nodeName: "suitthyself", + V: "questRace", + tags: {W: ["luckySmileSweatdrop"]}, + text: "Oh...I'm sorry it's not to your liking." + }], [{ + U: [{next: "trophyHint", text: null}], nodeName: "activeTrophy", V: "questRace", tags: {W: ["trophyMasterNeutral"]}, + text: "Looks like you're in the middle of helping out with this one." + }, { + U: [], + nodeName: "trophyHint", + V: "questRace", + tags: {W: ["trophyMasterNeutral"]}, + text: "Calm the quarreling friends at Marathon Beach with a tasty treat at the Conveince Store in Tanooki City in the South East." + }], [{ + U: [{next: "next time", text: null}], + nodeName: "complete", + V: "questRace", + tags: {W: ["racerANeutral"]}, + text: "Heh... another squabble caused by not bringing a snack." + }, { + U: [], nodeName: "next time", V: "questRace", tags: {W: ["racerBNeutral"]}, + text: "We'll know better next time." + }], [{ + U: [], + nodeName: "completeCrab", + V: "questRace", + tags: {W: ["crabNeutral"]}, + text: "Did you save any of the melon bread for me...?" + }], [{ + U: [{next: "StillWatching", text: null}], + nodeName: "completeTrophy", + V: "questRace", + tags: {W: ["luckyNeutral"]}, + text: '"Race Tie Breaker"' + }, { + U: [], + nodeName: "StillWatching", + V: "questRace", + tags: {W: ["trophyMasterNeutral"]}, + text: "I saw the whole thing, you were magnificent. Hee hee." + }], [{ + U: [{next: "racer2rebuttal", text: null}], nodeName: "found", V: "questRace", + tags: {W: ["racerAMad"]}, text: "Either I go in first, or neither of us does!" + }, { + U: [{next: "ahem", text: null}], + nodeName: "racer2rebuttal", + V: "questRace", + tags: {W: ["racerBMad"]}, + text: "You're so immature! If you would just admit I win then this would all be over." + }, { + U: [{next: "tryit", text: null}], + nodeName: "ahem", + V: "questRace", + tags: {W: ["luckyRawr"]}, + text: "Ahem... excuse me... do you two want to try this fresh melon bread?" + }, {U: [{next: "fine2", text: null}], nodeName: "tryit", V: "questRace", tags: {W: ["racerBMad"]}, text: "Fine."}, + { + U: [{next: "eating", text: null}], + nodeName: "fine2", + V: "questRace", + tags: {W: ["racerAMad"]}, + text: "Fine." + }, { + U: [{next: "soothed", text: null}], + nodeName: "eating", + V: "questRace", + tags: {W: ["racerBNeutral"]}, + text: "..." + }, { + U: [{next: "longtime", text: null}], + nodeName: "soothed", + V: "questRace", + tags: {W: ["racerANeutral"]}, + text: "Wow, that's delicious. I didn't realize how hungry I was..." + }, { + U: [{next: "goon", text: null}], + nodeName: "longtime", + V: "questRace", + tags: {W: ["racerBNeutral"]}, + text: "Me neither... how long were we standing here fighting?" + }, + { + U: [{next: "noyou", text: null}], + nodeName: "goon", + V: "questRace", + tags: {W: ["racerANeutral"]}, + text: "You know, I just realized something. It really doesn't matter who won... you're my best friend. I want you to go first." + }, { + U: [{next: "tolucky", text: null}], + nodeName: "noyou", + V: "questRace", + tags: {W: ["racerBNeutral"]}, + text: "No, I want YOU to go first! You're MY best friend!" + }, { + U: [{next: "thanks", text: null}], + nodeName: "tolucky", + V: "questRace", + tags: {W: ["racerANeutral"], zd: ["RACE", "complete"]}, + text: "Actually, why don't you go on through? We'll follow you." + }, + { + U: [], + nodeName: "thanks", + V: "questRace", + tags: {W: ["luckyHappy"]}, + text: "Oh - me? Thanks! I'll see you on the other side!" + }], [{ + U: [{next: "taketothem", text: null}], + nodeName: "foundCrab", + V: "questRace", + tags: {W: ["crabNeutral"]}, + text: "Oh wow, you got melon bread? My favorite!" + }, { + U: [], + nodeName: "taketothem", + V: "questRace", + tags: {W: ["crabNeutral"]}, + text: "Take it to the tree and see if the racers get out of the way." + }], [{ + U: [{next: "toolong", text: null}], nodeName: "foundMelonBread", V: "questRace", tags: {W: ["conviniNeutral"]}, + text: "Oh, you're saving the melon bread?" + }, { + U: [], + nodeName: "toolong", + V: "questRace", + tags: {W: ["conviniNeutral"]}, + text: "Don't wait too long or it will go stale!" + }], [{ + U: [{next: "lastHint", text: null}], + nodeName: "foundTrophy", + V: "questRace", + tags: {W: ["trophyMasterNeutral"]}, + text: "You've almost got this one finished!" + }, { + U: [], + nodeName: "lastHint", + V: "questRace", + tags: {W: ["trophyMasterNeutral"]}, + text: "Take the Melon Bread to the bickering friends racing at Marathon Beach in the South East. ." + }], [{ + U: [{ + next: "nome", + text: null + }], nodeName: "inactive", V: "questRace", tags: {W: ["racerAMad"]}, text: "I was first!" + }, { + U: [{next: "mynose", text: null}], + nodeName: "nome", + V: "questRace", + tags: {W: ["racerBMad"]}, + text: "No, I was! My toe was over the line!" + }, { + U: [{next: "no way", text: null}], + nodeName: "mynose", + V: "questRace", + tags: {W: ["racerAMad"]}, + text: "But my nose was already in front!" + }, { + U: [{next: "waiting", text: null}], + nodeName: "no way", + V: "questRace", + tags: {W: ["racerBMad"]}, + text: "Well there's no way I'm letting us go on to the secret beach until you admit I won fair and square." + }, + { + U: [], + nodeName: "waiting", + V: "questRace", + tags: {W: ["racerAMad"], zd: ["RACE", "active"]}, + text: "You'll be waiting a long time, buddy!" + }], [{ + U: [], + nodeName: "inactiveMelonBread", + V: "questRace", + tags: {W: ["conviniNeutral"]}, + text: "Welcome to our bakery! Let me know if I can help you with anything." + }], [{ + U: [{next: "questDescription", text: null}], + nodeName: "inactiveTrophy", + V: "questRace", + tags: {W: ["trophyMasterNeutral"]}, + text: "Oh, I'm saving that spot." + }, { + U: [{next: "IllBeWatching", text: null}], + nodeName: "questDescription", + V: "questRace", + tags: {W: ["trophyMasterNeutral"]}, + text: "Two friends racing at Marathon Beach in the South West seem to be taking the competition a little too far..." + }, { + U: [], + nodeName: "IllBeWatching", + V: "questRace", + tags: {W: ["trophyMasterNeutral"]}, + text: "And I'll be watching to see when the task is resolved. Hee hee hee." + }], [{ + U: [{next: "sunnyDay2", text: null}], + nodeName: "active", + V: "questRain", + tags: {W: ["froggyNeutral"]}, + text: "If you want to cross the bridge, talk to the strange boy outside the Table Tennis Dojo north of here, deep in the bamboo grove." + }, + { + U: [], + nodeName: "sunnyDay2", + V: "questRain", + tags: {W: ["froggyNeutral"]}, + text: "Best of luck, after so much rain I think we all could use a sunny day." + }], [{ + U: [{next: "excuseMe", text: null}], + nodeName: "activeRainBoy", + V: "questRain", + tags: {W: ["rainBoyNeutral"]}, + text: "Rain...yes...keep raining..." + }, { + U: [{next: "helloKitty", text: null}], + nodeName: "excuseMe", + V: "questRain", + tags: {W: ["luckyNeutral"]}, + text: "E-excuse me?" + }, { + U: [{next: "lessRain", text: null}], + nodeName: "helloKitty", + V: "questRain", + tags: {W: ["rainBoyNeutral"]}, + text: "Oh hello kitty cat. Isn't today a wonderful day?" + }, + { + U: [{next: "loveRain", text: null}], + nodeName: "lessRain", + V: "questRain", + tags: {W: ["luckySmileSweatdrop"]}, + text: "It is, but it might be even better if without the rain." + }, { + U: [{next: "itDoes", text: null}], + nodeName: "loveRain", + V: "questRain", + tags: {W: ["rainBoyNeutral"]}, + text: "Oh but that's what makes it so wonderful, I LOVE the rain! I'm Amefuri Kozo and rain follows me everywhere!" + }, { + U: [{next: "sharing", text: null}], + nodeName: "itDoes", + V: "questRain", + tags: {W: ["luckyWorried"]}, + text: "Follows you?" + }, { + U: [{ + next: "whyHere", + text: null + }], + nodeName: "sharing", + V: "questRain", + tags: {W: ["rainBoyNeutral"]}, + text: "Yes, and I love sharing it wherever I go!" + }, { + U: [{next: "lostMap", text: null}], + nodeName: "whyHere", + V: "questRain", + tags: {W: ["luckySmileSweatdrop"]}, + text: "Hm, well if you love sharing it why have you stayed here so long?" + }, { + U: [{next: "illHelp", text: "I'll Help"}, {next: "tooBad", text: "Too bad"}], + nodeName: "lostMap", + V: "questRain", + tags: {W: ["rainBoyNeutral"]}, + text: "Oh...well my plan was to share the Rain all over the island, but after I arrived here the wind from the Tengu's table tennis swings blew my train ticket away." + }, + { + U: [{next: "wow", text: null}], + nodeName: "illHelp", + V: "questRain", + tags: {W: ["luckyHappy"]}, + text: "Hmm, maybe I can help you get a new one! I'll check the train station in Tanooki City!" + }, { + U: [], + nodeName: "wow", + V: "questRain", + tags: {W: ["rainBoyNeutral"], zd: ["RAIN", "ticket"]}, + text: "Wow...you must love rain as much as I do." + }, { + U: [{next: "stillHaveRain", text: null}], + nodeName: "tooBad", + V: "questRain", + tags: {W: ["rainBoyNeutral"]}, + text: "Oh that's too bad..." + }, { + U: [], nodeName: "stillHaveRain", V: "questRain", tags: {W: ["rainBoyNeutral"]}, + text: "Well, at least I'll always have the rain." + }], [{ + U: [{next: "trophyHint", text: null}], + nodeName: "activeTrophy", + V: "questRain", + tags: {W: ["trophyMasterNeutral"]}, + text: "Looks like you're in the middle of helping out with this one." + }, { + U: [], + nodeName: "trophyHint", + V: "questRain", + tags: {W: ["trophyMasterNeutral"]}, + text: "Find the strange boy behind the Table Tennis Dojo and see if you can get to the bottom of why it keeps raining." + }], [{ + U: [{next: "happyHelp", text: null}], nodeName: "complete", V: "questRain", tags: {W: ["froggyNeutral"]}, + text: "The rain has stopped, the sun is shining and the bridge is open again! You really are a champion, Lucky!" + }, { + U: [], + nodeName: "happyHelp", + V: "questRain", + tags: {W: ["luckyHappy"]}, + text: "Aw, I'm just happy to help." + }], [{ + U: [{next: "StillWatching", text: null}], + nodeName: "completeTrophy", + V: "questRain", + tags: {W: ["luckyNeutral"]}, + text: '"Rain Stopper"' + }, { + U: [], + nodeName: "StillWatching", + V: "questRain", + tags: {W: ["trophyMasterNeutral"]}, + text: "I saw the whole thing, you were magnificent. Hee hee." + }], [{ + U: [{ + next: "maybeLater", + text: null + }], + nodeName: "foundCook", + V: "questRain", + tags: {W: ["noodleCookNeutral"]}, + text: "Hi Lucky! You're looking a little skinny, are you ready for your 50 bowls of noodles?? Ohoho." + }, { + U: [{next: "YouGotIt", text: null}], + nodeName: "maybeLater", + V: "questRain", + tags: {W: ["luckySmileSweatdrop"]}, + text: "Oh, um...maybe later?" + }, { + U: [], + nodeName: "YouGotIt", + V: "questRain", + tags: {W: ["noodleCookNeutral"]}, + text: "Ohoho, any time! but don't forget, a true champion always eats well!" + }], [{ + U: [{next: "foundIt", text: null}], nodeName: "foundRainBoy", + V: "questRain", tags: {W: ["rainBoyNeutral"]}, text: "Rain, rain, beautiful Rain." + }, { + U: [{next: "TourIsland", text: null}], + nodeName: "foundIt", + V: "questRain", + tags: {W: ["luckyHappy"]}, + text: "Amefuri Kozo! Good news, I found you a train ticket!" + }, { + U: [{next: "letsGoRain", text: null}], + nodeName: "TourIsland", + V: "questRain", + tags: {W: ["rainBoyNeutral"]}, + text: "Oh my, a tour of the whole island, how wonderful!" + }, { + U: [], + nodeName: "letsGoRain", + V: "questRain", + tags: {W: ["rainBoyNeutral"], zd: ["RAIN", "complete"]}, + text: "Let's go, rain! Everyone is gonna be so excited to see us!" + }], + [{ + U: [{next: "lastHint", text: null}], + nodeName: "foundTrophy", + V: "questRain", + tags: {W: ["trophyMasterNeutral"]}, + text: "You've almost got this one finished!" + }, { + U: [], + nodeName: "lastHint", + V: "questRain", + tags: {W: ["trophyMasterNeutral"]}, + text: "Finish up and come back to see your reward, see hee." + }], [{ + U: [{next: "stranger", text: null}], + nodeName: "inactive", + V: "questRain", + tags: {W: ["froggyNeutral"]}, + text: "You want to cross? Sorry, with all this rain the water has completely covered the bridge!" + }, { + U: [{next: "connection", text: null}], + nodeName: "stranger", + V: "questRain", + tags: {W: ["froggyNeutral"]}, + text: "It's been raining since that strange boy arrived behind the Table Tennis Dojo..." + }, { + U: [{next: "neverThought", text: null}], + nodeName: "connection", + V: "questRain", + tags: {W: ["luckyCurious"]}, + text: "Stranger? Do you think there's some connection?" + }, { + U: [{next: "askThem", text: null}], + nodeName: "neverThought", + V: "questRain", + tags: {W: ["froggyNeutral"]}, + text: "Hm, connection? I never thought of that...maybe he can make it stop!" + }, { + U: [{next: "yes", text: "Sure!"}, + {next: "no", text: "No"}], + nodeName: "askThem", + V: "questRain", + tags: {W: ["froggyNeutral"]}, + text: "Would you ask the boy? The whole village would be in your debt!" + }, { + U: [{next: "sunnyDay", text: null}], + nodeName: "yes", + V: "questRain", + tags: {W: ["froggyNeutral"], zd: ["RAIN", "active"]}, + text: "Oh thank you! The Table Tennis Dojo is north of here, deep in the bamboo grove." + }, { + U: [], + nodeName: "sunnyDay", + V: "questRain", + tags: {W: ["froggyNeutral"]}, + text: "Best of luck, after so much rain I think we all could use a sunny day." + }, { + U: [], + nodeName: "no", + V: "questRain", + tags: {W: ["froggyNeutral"]}, + text: "I see. I guess even the Chosen One can't stop the rain from falling..." + }], [{ + U: [{next: "notHungryRightNow", text: null}], + nodeName: "inactiveCook", + V: "questRain", + tags: {W: ["noodleCookNeutral"]}, + text: "Ohoho, welcome to the Noodle Shop! What can I get you?" + }, { + U: [{next: "whatacrime", text: null}], + nodeName: "notHungryRightNow", + V: "questRain", + tags: {W: ["luckyNeutral"]}, + text: "I'm not hungry right now, thank you!" + }, { + U: [], nodeName: "whatacrime", V: "questRain", + tags: {W: ["noodleCookNeutral"]}, text: "Not hungry? Then why would you come in a Noodle Shop..." + }], [{ + U: [], + nodeName: "inactiveRainBoy", + V: "questRain", + tags: {W: ["rainBoyNeutral"]}, + text: "Rain...yes....beautiful rain....forever..." + }], [{ + U: [], + nodeName: "inactiveTrainStation", + V: "questRain", + tags: {W: ["trainWorkerNeutral"]}, + text: "Welcome to Tanooki City Station!" + }], [{ + U: [{next: "questDescription", text: null}], + nodeName: "inactiveTrophy", + V: "questRain", + tags: {W: ["trophyMasterNeutral"]}, + text: "Oh, I'm saving that spot." + }, { + U: [{ + next: "wonderBridge", + text: null + }], + nodeName: "questDescription", + V: "questRain", + tags: {W: ["trophyMasterNeutral"]}, + text: "It's been raining non-stop in the Bamboo Forest to the North East....very strange." + }, { + U: [{next: "IllBeWatching", text: null}], + nodeName: "wonderBridge", + V: "questRain", + tags: {W: ["trophyMasterNeutral"]}, + text: "Someone should check to see if any of the bridges have flooded..." + }, { + U: [], + nodeName: "IllBeWatching", + V: "questRain", + tags: {W: ["trophyMasterNeutral"]}, + text: "And I'll be watching to see when the task is resolved. Hee hee hee." + }], + [{ + U: [{next: "mightHaveOne", text: null}], + nodeName: "noodleCook", + V: "questRain", + tags: {W: ["noodleCookNeutral"]}, + text: "Ohoho, welcome! What can I get you?" + }, { + U: [{next: "trainTicketPromo", text: null}], + nodeName: "mightHaveOne", + V: "questRain", + tags: {W: ["luckyNeutral"]}, + text: "I'm looking for a train ticket, I heard you might have one?" + }, { + U: [{next: "fiftyBowls", text: null}], + nodeName: "trainTicketPromo", + V: "questRain", + tags: {W: ["noodleCookNeutral"]}, + text: "OH yes! We are having a special promotion, one free train ticket for every 50 bowls of ramen you order!" + }, + { + U: [{next: "championSpecial", text: null}], + nodeName: "fiftyBowls", + V: "questRain", + tags: {W: ["luckyShocked"]}, + text: "50?? I could never eat that much, I have to be in top shape to compete!" + }, { + U: [{next: "thatsMe", text: null}], + nodeName: "championSpecial", + V: "questRain", + tags: {W: ["noodleCookNeutral"]}, + text: "Compete? Oh, are you the new Champion that arrived??" + }, { + U: [{next: "luckyDay", text: null}], + nodeName: "thatsMe", + V: "questRain", + tags: {W: ["luckyBigGrin"]}, + text: "That's me, Lucky the Cat!" + }, { + U: [{next: "ohMy", text: null}], + nodeName: "luckyDay", + V: "questRain", + tags: {W: ["noodleCookNeutral"]}, + text: "Well then today is your lucky day! We have the Champion Discount, 50 bowls free to help you train!" + }, { + U: [{next: "allAtOnce", text: null}], + nodeName: "ohMy", + V: "questRain", + tags: {W: ["luckyHide"]}, + text: "Oh my..." + }, { + U: [{next: "haveYourTicket", text: null}], + nodeName: "allAtOnce", + V: "questRain", + tags: {W: ["noodleCookNeutral"]}, + text: "Oh don't worry, you don't have to eat them all at once! But you have them waiting!" + }, { + U: [{next: "thankNoodle", text: null}], + nodeName: "haveYourTicket", + V: "questRain", + tags: {W: ["noodleCookNeutral"]}, + text: "And don't forget your free train ticket! A Champion should travel in style, ohoho." + }, { + U: [{next: "backNoodles", text: null}], + nodeName: "thankNoodle", + V: "questRain", + tags: {W: ["luckyBigGrin"]}, + text: "Oh! Thank you, this is perfect!" + }, { + U: [{next: "anyTime", text: null}], + nodeName: "backNoodles", + V: "questRain", + tags: {W: ["luckySmileSweatdrop"]}, + text: "And, um, I'll be back later for all those noodles!" + }, { + U: [], + nodeName: "anyTime", + V: "questRain", + tags: {W: ["noodleCookNeutral"], zd: ["RAIN", "found"]}, + text: "Any time! Tell your friends about us, and good luck in the games!" + }], [{ + U: [], + nodeName: "noodleTrainStation", + V: "questRain", + tags: {W: ["trainWorkerNeutral"]}, + text: "The Noodle Shop is just east of here, hopefully you find a ticket there!" + }], [{ + U: [{next: "trophymasterbychance", text: null}], + nodeName: "searchTrainStation", + V: "questRain", + tags: {W: ["trainWorkerNeutral"]}, + text: "Welcome to Tanooki City Station!" + }, { + U: [{next: "whatmaster", text: null}], nodeName: "trophymasterbychance", + V: "questRain", tags: {W: ["luckyCurious"]}, text: "Excuse me for asking, but are you the Trophy Master by chance?" + }, { + U: [{next: "othercats", text: null}], + nodeName: "whatmaster", + V: "questRain", + tags: {W: ["trainWorkerNeutral"]}, + text: "The what? Sorry, I just watch the train station..." + }, { + U: [{next: "calvin", text: null}], + nodeName: "othercats", + V: "questRain", + tags: {W: ["luckyWorried"]}, + text: "I see. I'm looking for another cat on the island that watches the Trophy House." + }, { + U: [], nodeName: "calvin", V: "questRain", tags: {W: ["trainWorkerNeutral"]}, + text: "Only other cat I know is Calvin, he's always asleep over on Oni Island." + }], [{ + U: [{next: "stillLooking", text: null}], + nodeName: "ticketRainBoy", + V: "questRain", + tags: {W: ["rainBoyNeutral"]}, + text: "Any luck finding my train ticket?" + }, { + U: [{next: "noRush", text: null}], + nodeName: "stillLooking", + V: "questRain", + tags: {W: ["luckyWideEyeSweat"]}, + text: "I'm still looking!" + }, { + U: [], + nodeName: "noRush", + V: "questRain", + tags: {W: ["rainBoyNeutral"]}, + text: "No rush, I don't mind waiting in the rain." + }], [{ + U: [{next: "oneTicket", text: null}], + nodeName: "ticketTrainStation", + V: "questRain", + tags: {W: ["trainWorkerNeutral"]}, + text: "Good afternoon, what can I do for you?" + }, { + U: [{next: "soldOut", text: null}], + nodeName: "oneTicket", + V: "questRain", + tags: {W: ["luckyNeutral"]}, + text: "Hello, I'd like a train ticket to tour the island please!" + }, { + U: [{next: "whatToDo", text: null}], + nodeName: "soldOut", + V: "questRain", + tags: {W: ["trainWorkerNeutral"]}, + text: "Oh I'm so sorry, with all the sport events we're sold out..." + }, { + U: [{next: "noodleShopDiscount", text: null}], nodeName: "whatToDo", + V: "questRain", tags: {W: ["luckyShocked"]}, text: "Oh no! There's no way to get a ticket at all??" + }, { + U: [{next: "checkNoodleShop", text: null}], + nodeName: "noodleShopDiscount", + V: "questRain", + tags: {W: ["trainWorkerNeutral"]}, + text: "Hmm...the owner of the Noodle Shop down the street is having a promotion, maybe she can help?" + }, { + U: [], + nodeName: "checkNoodleShop", + V: "questRain", + tags: {W: ["luckyNeutral"], zd: ["RAIN", "noodle"]}, + text: "I'll check, thank you so much!" + }], [{ + U: [{next: "leave2", text: null}], nodeName: "active1", V: "questSleepingCat", + tags: {W: ["sleepyCatNeutral"]}, text: "...go away coach... I'm too sleepy to compete..." + }, { + U: [], + nodeName: "leave2", + V: "questSleepingCat", + tags: {W: ["sleepyCatNeutral"], zd: ["SLEEPING_CAT", "active2"]}, + text: "...zzz..." + }], [{ + U: [{next: "lucky1", text: null}], + nodeName: "active2", + V: "questSleepingCat", + tags: {W: ["sleepyCatNeutral"]}, + text: "...zzz... ehh?! Ugh, fine, I'm awake now. What do you want? Did Coach send you?" + }, { + U: [{next: "champstory", text: null}], nodeName: "lucky1", V: "questSleepingCat", tags: {W: ["luckyNeutral"]}, + text: "Who are you?" + }, { + U: [{next: "lucky2", text: null}], + nodeName: "champstory", + V: "questSleepingCat", + tags: {W: ["sleepyCatNeutral"]}, + text: "I'm the chosen one. The one who will bring balance to the island." + }, { + U: [{next: "champstory2", text: null}], + nodeName: "lucky2", + V: "questSleepingCat", + tags: {W: ["luckyWorried"]}, + text: "I thought I was the chosen one..." + }, { + U: [{next: "warm", text: null}], + nodeName: "champstory2", + V: "questSleepingCat", + tags: {W: ["sleepyCatNeutral"]}, + text: "Oh, I guess they already found a new athlete." + }, { + U: [{ + next: "lucky3", + text: null + }], + nodeName: "warm", + V: "questSleepingCat", + tags: {W: ["sleepyCatNeutral"]}, + text: "I came here a while back to defeat all the champions and gather all the scrolls, but the lava flows here on Oni Island are just too warm and cozy..." + }, { + U: [{next: "champstory3", text: null}], + nodeName: "lucky3", + V: "questSleepingCat", + tags: {W: ["luckyNeutral"]}, + text: "Wanna team up and compete together?" + }, { + U: [{next: "sashimi", text: null}], + nodeName: "champstory3", + V: "questSleepingCat", + tags: {W: ["sleepyCatNeutral"]}, + text: "Don't know how much you've explored yet, but this island isn't really big enough for two Chosen Ones, champ." + }, + { + U: [], + nodeName: "sashimi", + V: "questSleepingCat", + tags: {W: ["sleepyCatNeutral"], zd: ["SLEEPING_CAT", "complete"]}, + text: "I'll sit this one out. Now leave me alone, I was having a really nice dream about some sashimi..." + }], [{ + U: [{next: "trophyHint", text: null}], + nodeName: "activeTrophy", + V: "questSleepingCat", + tags: {W: ["trophyMasterNeutral"]}, + text: "Looks like you're in the middle of helping out with this one." + }, { + U: [], + nodeName: "trophyHint", + V: "questSleepingCat", + tags: {W: ["trophyMasterNeutral"]}, + text: "The Former Champion is sleeping?? Well sounds like you better keep bothering him, hee hee.." + }], + [{ + U: [], + nodeName: "complete", + V: "questSleepingCat", + tags: {W: ["sleepyCatNeutral"], zd: ["SLEEPING_CAT", "complete"]}, + text: "...zzz..." + }], [{ + U: [{next: "StillWatching", text: null}], + nodeName: "completeTrophy", + V: "questSleepingCat", + tags: {W: ["luckyNeutral"]}, + text: "'Cat Nap Enabler'" + }, { + U: [], + nodeName: "StillWatching", + V: "questSleepingCat", + tags: {W: ["trophyMasterNeutral"]}, + text: "I saw the whole thing, you were magnificent. Hee hee." + }], [{ + U: [{next: "leave", text: null}], nodeName: "inactive", V: "questSleepingCat", tags: {W: ["sleepyCatNeutral"]}, + text: "zzz... don't mind if I do..." + }, { + U: [], + nodeName: "leave", + V: "questSleepingCat", + tags: {W: ["luckyNeutral"], zd: ["SLEEPING_CAT", "active1"]}, + text: "Oops, sorry." + }], [{ + U: [{next: "questDescription", text: null}], + nodeName: "inactiveTrophy", + V: "questSleepingCat", + tags: {W: ["trophyMasterNeutral"]}, + text: "Oh, I'm saving that spot." + }, { + U: [{next: "IllBeWatching", text: null}], + nodeName: "questDescription", + V: "questSleepingCat", + tags: {W: ["trophyMasterNeutral"]}, + text: "There was another Chosen One before you, poor thing. I wonder what happened to him, he was always sleeping..." + }, + { + U: [], + nodeName: "IllBeWatching", + V: "questSleepingCat", + tags: {W: ["trophyMasterNeutral"]}, + text: "And I'll be watching to see when the task is resolved. Hee hee hee." + }], [{ + U: [{next: "wakeup", text: null}], + nodeName: "searchSleepingCat", + V: "questSleepingCat", + tags: {W: ["sleepyCatNeutral"]}, + text: "zzzz" + }, { + U: [{next: "youagain", text: null}], + nodeName: "wakeup", + V: "questSleepingCat", + tags: {W: ["luckyCurious"]}, + text: "Hey, wake up!" + }, { + U: [{next: "youtrophy", text: null}], nodeName: "youagain", V: "questSleepingCat", tags: {W: ["sleepyCatNeutral"]}, + text: "Oh, it's you again..." + }, { + U: [{next: "agirl", text: null}], + nodeName: "youtrophy", + V: "questSleepingCat", + tags: {W: ["luckyCurious"]}, + text: "Sorry to bother you, but by any chance are you the Trophy Master?" + }, { + U: [{next: "seenher", text: null}], + nodeName: "agirl", + V: "questSleepingCat", + tags: {W: ["sleepyCatNeutral"]}, + text: "Me? Of course not, the Trophy Master is a girl." + }, { + U: [{next: "boat", text: null}], + nodeName: "seenher", + V: "questSleepingCat", + tags: {W: ["luckyCurious"]}, + text: "Oh! So you've seen her?" + }, { + U: [{ + next: "check", + text: null + }], + nodeName: "boat", + V: "questSleepingCat", + tags: {W: ["sleepyCatNeutral"]}, + text: "Last I saw her she was heading to one of the boat houses in the Archery Docks in the North West, but that was months ago." + }, { + U: [{next: "suresure", text: null}], + nodeName: "check", + V: "questSleepingCat", + tags: {W: ["luckyCurious"]}, + text: "Oh, thank you! I'll go check!" + }, { + U: [], + nodeName: "suresure", + V: "questSleepingCat", + tags: {W: ["sleepyCatNeutral"], zd: ["TROPHY_MASTER", "boat"]}, + text: "Sure sure, just don't wake me up again." + }], [{ + U: [], + nodeName: "advanced1", + V: "questTeamBlue", + tags: {W: ["ushiNeutral"]}, + text: "Have you found the secret skate park yet?" + }], [{ + U: [], + nodeName: "advanced2", + V: "questTeamBlue", + tags: {W: ["ushiNeutral"]}, + text: "There are 3 different songs in the synchonised swimming area." + }], [{ + U: [], + nodeName: "advanced3", + V: "questTeamBlue", + tags: {W: ["ushiNeutral"]}, + text: "The secret beach is where the long distance runners like to hang out, have you been yet?" + }], [{ + U: [], + nodeName: "advanced4", + V: "questTeamBlue", + tags: {W: ["ushiNeutral"]}, + text: "Powerups are the key to winning Rugby." + }], + [{ + U: [], + nodeName: "advanced5", + V: "questTeamBlue", + tags: {W: ["ushiNeutral"]}, + text: "The more obstacles you avoid in Marathon, the faster you run!" + }], [{ + U: [], + nodeName: "advanced6", + V: "questTeamBlue", + tags: {W: ["ushiNeutral"]}, + text: "Be careful of the green handholds on Climbing Mountain, they tend to fall!" + }], [{ + U: [], + nodeName: "elite1", + V: "questTeamBlue", + tags: {W: ["ushiNeutral"]}, + text: "Our team leader always keeps her eye on who's in first place." + }], [{ + U: [], nodeName: "elite2", V: "questTeamBlue", tags: {W: ["ushiNeutral"]}, + text: "Wow, you must be the cat everyone's been talking about. It's an honor!" + }], [{ + U: [], + nodeName: "elite3", + V: "questTeamBlue", + tags: {W: ["ushiNeutral"]}, + text: "Team Yellow is gonna be in first place, I just know it!" + }], [{ + U: [], + nodeName: "elite4", + V: "questTeamBlue", + tags: {W: ["ushiNeutral"]}, + text: "No one's ever become an Elite Memeber besides the Team Leader, we're only here as guards!" + }], [{ + U: [], + nodeName: "elite5", + V: "questTeamBlue", + tags: {W: ["ushiNeutral"]}, + text: "The Team Leader has been waiting to meet you." + }], + [{ + U: [], + nodeName: "elite6", + V: "questTeamBlue", + tags: {W: ["ushiNeutral"]}, + text: "I have to go to the bathroom but I'm on duty..." + }], [{ + U: [], + nodeName: "frontGuardLocked", + V: "questTeamBlue", + tags: {W: ["ushiNeutral"]}, + text: "This is Team Blue's private gym, only members allowed!" + }], [{ + U: [{next: "welcometohq", text: null}], + nodeName: "frontGuardUnlocked", + V: "questTeamBlue", + tags: {W: ["ushiNeutral"]}, + text: "Oho, I see you're a member of Team Blue." + }, { + U: [], + nodeName: "welcometohq", + V: "questTeamBlue", + tags: {W: ["ushiNeutral"]}, + text: "Welcome to our private gym, come on in!" + }], + [{ + U: [], + nodeName: "hq1GuardLocked", + V: "questTeamBlue", + tags: {W: ["ushiNeutral"]}, + text: "Sorry, this room is for Advanced Members only. You need 3 Champion Scrolls to gain access." + }], [{ + U: [], + nodeName: "hq1GuardUnlocked", + V: "questTeamBlue", + tags: {W: ["ushiNeutral"]}, + text: "You've won enough scrolls to join to the Advanced Members! Team Blue thanks you for your hard work!" + }], [{ + U: [], + nodeName: "hq2GuardLocked", + V: "questTeamBlue", + tags: {W: ["ushiNeutral"]}, + text: "Sorry, this room is for Elite Members only. You need 6 Champion Scrolls to gain access." + }], + [{ + U: [], + nodeName: "hq2GuardUnlocked", + V: "questTeamBlue", + tags: {W: ["ushiNeutral"]}, + text: "You've won enough scrolls to join to the Elite Members! Our Team Leader is excited to meet you!" + }], [{ + U: [{next: "notforme", text: null}], + nodeName: "lockedFrontDoor", + V: "questTeamBlue", + tags: {W: ["luckyCurious"]}, + text: "It's locked..." + }, { + U: [], + nodeName: "notforme", + V: "questTeamBlue", + tags: {W: ["luckyWorried"]}, + text: "Maybe I should find my own team's headquarters instead." + }], [{ + U: [], nodeName: "member1", V: "questTeamBlue", tags: {W: ["ushiNeutral"]}, + text: "This is our private gym, it's the best place to get strong!" + }], [{ + U: [], + nodeName: "member2", + V: "questTeamBlue", + tags: {W: ["ushiNeutral"]}, + text: "If I keep practicing, I know one day I can beat a Champion and earn a scroll!" + }], [{ + U: [], + nodeName: "member3", + V: "questTeamBlue", + tags: {W: ["ushiNeutral"]}, + text: "There are rumors that some sports have more difficult versions hidden throughout the island..." + }], [{ + U: [{next: "theleader", text: null}], + nodeName: "teamLeaderLosing", + V: "questTeamBlue", + tags: {W: ["leaderBlueNeutral"]}, + text: "Oh, Lucky. I've heard a lot about you." + }, { + U: [{next: "notdone", text: null}], + nodeName: "theleader", + V: "questTeamBlue", + tags: {W: ["leaderBlueNeutral"]}, + text: "I am the leader of Team Blue, and I'm very proud of what you've done for our team." + }, { + U: [], + nodeName: "notdone", + V: "questTeamBlue", + tags: {W: ["leaderBlueNeutral"]}, + text: "But our work is not done! Team Blue is behind on the leaderboard. We cannot rest until we are the strongest!" + }], [{ + U: [{next: "theleader2", text: null}], nodeName: "teamLeaderWinning", V: "questTeamBlue", + tags: {W: ["leaderBlueNeutral"]}, text: "Oh, Lucky. I've heard a lot about you." + }, { + U: [{next: "winning", text: null}], + nodeName: "theleader2", + V: "questTeamBlue", + tags: {W: ["leaderBlueNeutral"]}, + text: "I am the leader of Team Blue, and I'm very proud of what you've done for our team." + }, { + U: [{next: "keepgoodwork", text: null}], + nodeName: "winning", + V: "questTeamBlue", + tags: {W: ["leaderBlueNeutral"]}, + text: "And Team Blue is currently in first place!" + }, { + U: [], nodeName: "keepgoodwork", V: "questTeamBlue", tags: {W: ["leaderBlueNeutral"]}, + text: "Keep up your hard work to the very end, and Team Blue will win the Champion Island Games!" + }], [{ + U: [], + nodeName: "advanced1", + V: "questTeamGreen", + tags: {W: ["kappaNeutral"]}, + text: "Have you found the secret skate park yet?" + }], [{ + U: [], + nodeName: "advanced2", + V: "questTeamGreen", + tags: {W: ["kappaNeutral"]}, + text: "There are 3 different songs in the synchonised swimming area." + }], [{ + U: [], + nodeName: "advanced3", + V: "questTeamGreen", + tags: {W: ["kappaNeutral"]}, + text: "The secret beach is where the long distance runners like to hang out, have you been yet?" + }], + [{ + U: [], + nodeName: "advanced4", + V: "questTeamGreen", + tags: {W: ["kappaNeutral"]}, + text: "Powerups are the key to winning Rugby." + }], [{ + U: [], + nodeName: "advanced5", + V: "questTeamGreen", + tags: {W: ["kappaNeutral"]}, + text: "The more obstacles you avoid in Marathon, the faster you run!" + }], [{ + U: [], + nodeName: "advanced6", + V: "questTeamGreen", + tags: {W: ["kappaNeutral"]}, + text: "Be careful of the green handholds on Climbing Mountain, they tend to fall!" + }], [{ + U: [], + nodeName: "elite1", + V: "questTeamGreen", + tags: {W: ["kappaNeutral"]}, + text: "Our team leader always keeps her eye on who's in first place." + }], + [{ + U: [], + nodeName: "elite2", + V: "questTeamGreen", + tags: {W: ["kappaNeutral"]}, + text: "Wow, you must be the cat everyone's been talking about. It's an honor!" + }], [{ + U: [], + nodeName: "elite3", + V: "questTeamGreen", + tags: {W: ["kappaNeutral"]}, + text: "Team Green is gonna be in first place, I just know it!" + }], [{ + U: [], + nodeName: "elite4", + V: "questTeamGreen", + tags: {W: ["kappaNeutral"]}, + text: "No one's ever become an Elite Memeber besides the Team Leader, we're only here as guards!" + }], [{ + U: [], nodeName: "elite5", V: "questTeamGreen", tags: {W: ["kappaNeutral"]}, + text: "The Team Leader has been waiting to meet you." + }], [{ + U: [], + nodeName: "elite6", + V: "questTeamGreen", + tags: {W: ["kappaNeutral"]}, + text: "I have to go to the bathroom but I'm on duty..." + }], [{ + U: [], + nodeName: "frontGuardLocked", + V: "questTeamGreen", + tags: {W: ["kappaNeutral"]}, + text: "Kappa!" + }], [{ + U: [{next: "welcometohq", text: null}], + nodeName: "frontGuardUnlocked", + V: "questTeamGreen", + tags: {W: ["kappaNeutral"]}, + text: "Kappa!" + }, { + U: [{next: "comeonin", text: null}], nodeName: "welcometohq", V: "questTeamGreen", tags: {W: ["kappaNeutral"]}, + text: "Oh wait, you're a member of Team Green aren't you? I can talk normally." + }, { + U: [], + nodeName: "comeonin", + V: "questTeamGreen", + tags: {W: ["kappaNeutral"]}, + text: "Come on in to our headquarters and relax!" + }], [{ + U: [], + nodeName: "hq1GuardLocked", + V: "questTeamGreen", + tags: {W: ["kappaNeutral"]}, + text: "Sorry, this room is for Advanced Members only. You need 3 Champion Scrolls to gain access." + }], [{ + U: [], + nodeName: "hq1GuardUnlocked", + V: "questTeamGreen", + tags: {W: ["kappaNeutral"]}, + text: "You've won enough scrolls to join to the Advanced Members! Team Green thanks you for your hard work!" + }], + [{ + U: [], + nodeName: "hq2GuardLocked", + V: "questTeamGreen", + tags: {W: ["kappaNeutral"]}, + text: "Sorry, this room is for Elite Members only. You need 6 Champion Scrolls to gain access." + }], [{ + U: [], + nodeName: "hq2GuardUnlocked", + V: "questTeamGreen", + tags: {W: ["kappaNeutral"]}, + text: "You've won enough scrolls to join to the Elite Members! Our Team Leader is excited to meet you!" + }], [{ + U: [{next: "notforme", text: null}], + nodeName: "lockedFrontDoor", + V: "questTeamGreen", + tags: {W: ["luckyCurious"]}, + text: "It's locked..." + }, { + U: [], nodeName: "notforme", + V: "questTeamGreen", tags: {W: ["luckyWorried"]}, text: "Maybe I should find my own team's headquarters instead." + }], [{ + U: [{next: "inwater", text: null}], + nodeName: "member1", + V: "questTeamGreen", + tags: {W: ["kappaNeutral"]}, + text: "Welcome to our headquarters!" + }, { + U: [], + nodeName: "inwater", + V: "questTeamGreen", + tags: {W: ["kappaNeutral"]}, + text: "Kappa are most comfortable in water, I hope you don't mind." + }], [{ + U: [], + nodeName: "member2", + V: "questTeamGreen", + tags: {W: ["kappaNeutral"]}, + text: "If I keep practicing, I know one day I can beat a Champion and earn a scroll!" + }], + [{ + U: [], + nodeName: "member3", + V: "questTeamGreen", + tags: {W: ["kappaNeutral"]}, + text: "There are rumors that some sports have more difficult versions hidden throughout the island..." + }], [{ + U: [{next: "theleader", text: null}], + nodeName: "teamLeaderLosing", + V: "questTeamGreen", + tags: {W: ["leaderGreenNeutral"]}, + text: "Oh, Lucky. I've heard a lot about you." + }, { + U: [{next: "notdone", text: null}], + nodeName: "theleader", + V: "questTeamGreen", + tags: {W: ["leaderGreenNeutral"]}, + text: "I am the leader of Team Green, and I'm very proud of what you've done for our team." + }, + { + U: [], + nodeName: "notdone", + V: "questTeamGreen", + tags: {W: ["leaderGreenNeutral"]}, + text: "But our work is not done! Team Green is behind on the leaderboard. We cannot rest until we are on top!" + }], [{ + U: [{next: "theleader2", text: null}], + nodeName: "teamLeaderWinning", + V: "questTeamGreen", + tags: {W: ["leaderGreenNeutral"]}, + text: "Oh, Lucky. I've heard a lot about you." + }, { + U: [{next: "winning", text: null}], + nodeName: "theleader2", + V: "questTeamGreen", + tags: {W: ["leaderGreenNeutral"]}, + text: "I am the leader of Team Green, and I'm very proud of what you've done for our team." + }, + { + U: [{next: "keepgoodwork", text: null}], + nodeName: "winning", + V: "questTeamGreen", + tags: {W: ["leaderGreenNeutral"]}, + text: "And Team Green is currently in first place!" + }, { + U: [], + nodeName: "keepgoodwork", + V: "questTeamGreen", + tags: {W: ["leaderGreenNeutral"]}, + text: "Keep up your hard work to the very end and Team Green is sure to triumph. Kappa!" + }], [{ + U: [], + nodeName: "advanced1", + V: "questTeamRed", + tags: {W: ["karasuNeutral"]}, + text: "Have you found the secret skate park yet?" + }], [{ + U: [], nodeName: "advanced2", V: "questTeamRed", tags: {W: ["karasuNeutral"]}, + text: "There are 3 different songs in the synchonised swimming area." + }], [{ + U: [], + nodeName: "advanced3", + V: "questTeamRed", + tags: {W: ["karasuNeutral"]}, + text: "The secret beach is where the long distance runners like to hang out, have you been yet?" + }], [{ + U: [], + nodeName: "advanced4", + V: "questTeamRed", + tags: {W: ["karasuNeutral"]}, + text: "Powerups are the key to winning Rugby." + }], [{ + U: [], + nodeName: "advanced5", + V: "questTeamRed", + tags: {W: ["karasuNeutral"]}, + text: "The more obstacles you avoid in Marathon, the faster you run!" + }], + [{ + U: [], + nodeName: "advanced6", + V: "questTeamRed", + tags: {W: ["karasuNeutral"]}, + text: "Be careful of the green handholds on Climbing Mountain, they tend to fall!" + }], [{ + U: [], + nodeName: "elite1", + V: "questTeamRed", + tags: {W: ["karasuNeutral"]}, + text: "Our team leader always keeps her eye on who's in first place." + }], [{ + U: [], + nodeName: "elite2", + V: "questTeamRed", + tags: {W: ["karasuNeutral"]}, + text: "Wow, you must be the cat everyone's been talking about. It's an honor!" + }], [{ + U: [], nodeName: "elite3", V: "questTeamRed", tags: {W: ["karasuNeutral"]}, + text: "Team Red is gonna be in first place, I just know it!" + }], [{ + U: [], + nodeName: "elite4", + V: "questTeamRed", + tags: {W: ["karasuNeutral"]}, + text: "No one's ever become an Elite Memeber besides the Team Leader, we're only here as guards!" + }], [{ + U: [], + nodeName: "elite5", + V: "questTeamRed", + tags: {W: ["karasuNeutral"]}, + text: "The Team Leader has been waiting to meet you." + }], [{ + U: [], + nodeName: "elite6", + V: "questTeamRed", + tags: {W: ["karasuNeutral"]}, + text: "I have to go to the bathroom but I'm on duty..." + }], [{ + U: [], + nodeName: "frontGuardLocked", + V: "questTeamRed", + tags: {W: ["karasuNeutral"]}, + text: "The Research Library is only for members of Team Red. Kindly leave." + }], [{ + U: [{next: "welcometohq", text: null}], + nodeName: "frontGuardUnlocked", + V: "questTeamRed", + tags: {W: ["karasuNeutral"]}, + text: "Oho, I see you're a member of Team Red." + }, { + U: [], + nodeName: "welcometohq", + V: "questTeamRed", + tags: {W: ["karasuNeutral"]}, + text: "Welcome to our Research Library, please feel free to come in and relax." + }], [{ + U: [], nodeName: "hq1GuardLocked", V: "questTeamRed", tags: {W: ["karasuNeutral"]}, + text: "Sorry, this room is for Advanced Members only. You need 3 Champion Scrolls to gain access." + }], [{ + U: [], + nodeName: "hq1GuardUnlocked", + V: "questTeamRed", + tags: {W: ["karasuNeutral"]}, + text: "You've won enough scrolls to join to the Advanced Members! Team Red thanks you for your hard work!" + }], [{ + U: [], + nodeName: "hq2GuardLocked", + V: "questTeamRed", + tags: {W: ["karasuNeutral"]}, + text: "Sorry, this room is for Elite Members only. You need 6 Champion Scrolls to gain access." + }], [{ + U: [], + nodeName: "hq2GuardUnlocked", + V: "questTeamRed", + tags: {W: ["karasuNeutral"]}, + text: "You've won enough scrolls to join to the Elite Members! Our Team Leader is excited to meet you!" + }], [{ + U: [{next: "notforme", text: null}], + nodeName: "lockedFrontDoor", + V: "questTeamRed", + tags: {W: ["luckyCurious"]}, + text: "It's locked..." + }, { + U: [], + nodeName: "notforme", + V: "questTeamRed", + tags: {W: ["luckyWorried"]}, + text: "Maybe I should find my own team's headquarters instead." + }], [{ + U: [{next: "knowledge", text: null}], + nodeName: "member1", + V: "questTeamRed", + tags: {W: ["karasuNeutral"]}, + text: "Team Red loves reading so much we made our headquarters a Library." + }, + { + U: [], + nodeName: "knowledge", + V: "questTeamRed", + tags: {W: ["karasuNeutral"]}, + text: "Please take advantage of all the knowledge there is learn here." + }], [{ + U: [], + nodeName: "member2", + V: "questTeamRed", + tags: {W: ["karasuNeutral"]}, + text: "If I keep practicing, I know one day I can beat a Champion and earn a scroll!" + }], [{ + U: [], + nodeName: "member3", + V: "questTeamRed", + tags: {W: ["karasuNeutral"]}, + text: "There are rumors that some sports have more difficult versions hidden throughout the island..." + }], [{ + U: [{next: "theleader", text: null}], + nodeName: "teamLeaderLosing", + V: "questTeamRed", + tags: {W: ["leaderRedNeutral"]}, + text: "Oh, Lucky. I've heard a lot about you." + }, { + U: [{next: "notdone", text: null}], + nodeName: "theleader", + V: "questTeamRed", + tags: {W: ["leaderRedNeutral"]}, + text: "I am the leader of Team Red, and I'm very proud of what you've done for our team." + }, { + U: [], + nodeName: "notdone", + V: "questTeamRed", + tags: {W: ["leaderRedNeutral"]}, + text: "But our work is not done! Team Red is behind on the leaderboard. We cannot rest until our numbers improve!" + }], [{ + U: [{ + next: "theleader2", + text: null + }], + nodeName: "teamLeaderWinning", + V: "questTeamRed", + tags: {W: ["leaderRedNeutral"]}, + text: "Oh, Lucky. I've heard a lot about you." + }, { + U: [{next: "winning", text: null}], + nodeName: "theleader2", + V: "questTeamRed", + tags: {W: ["leaderRedNeutral"]}, + text: "I am the leader of Team Red, and I'm very proud of what you've done for our team." + }, { + U: [{next: "keepgoodwork", text: null}], + nodeName: "winning", + V: "questTeamRed", + tags: {W: ["leaderRedNeutral"]}, + text: "And Team Red is currently in first place!" + }, { + U: [], + nodeName: "keepgoodwork", + V: "questTeamRed", + tags: {W: ["leaderRedNeutral"]}, + text: "Keep up your hard work to the very end, and Team Red will triumph!" + }], [{ + U: [], + nodeName: "advanced1", + V: "questTeamYellow", + tags: {W: ["inariNeutral"]}, + text: "Have you found the secret skate park yet?" + }], [{ + U: [], + nodeName: "advanced2", + V: "questTeamYellow", + tags: {W: ["inariNeutral"]}, + text: "There are 3 different songs in the synchonised swimming area." + }], [{ + U: [], + nodeName: "advanced3", + V: "questTeamYellow", + tags: {W: ["inariNeutral"]}, + text: "The secret beach is where the long distance runners like to hang out, have you been yet?" + }], + [{ + U: [], + nodeName: "advanced4", + V: "questTeamYellow", + tags: {W: ["inariNeutral"]}, + text: "Powerups are the key to winning Rugby." + }], [{ + U: [], + nodeName: "advanced5", + V: "questTeamYellow", + tags: {W: ["inariNeutral"]}, + text: "The more obstacles you avoid in Marathon, the faster you run!" + }], [{ + U: [], + nodeName: "advanced6", + V: "questTeamYellow", + tags: {W: ["inariNeutral"]}, + text: "Be careful of the green handholds on Climbing Mountain, they tend to fall!" + }], [{ + U: [], + nodeName: "elite1", + V: "questTeamYellow", + tags: {W: ["inariNeutral"]}, + text: "Our team leader always keeps her eye on who's in first place." + }], + [{ + U: [], + nodeName: "elite2", + V: "questTeamYellow", + tags: {W: ["inariNeutral"]}, + text: "Wow, you must be the cat everyone's been talking about. It's an honor!" + }], [{ + U: [], + nodeName: "elite3", + V: "questTeamYellow", + tags: {W: ["inariNeutral"]}, + text: "Team Yellow is gonna be in first place, I just know it!" + }], [{ + U: [], + nodeName: "elite4", + V: "questTeamYellow", + tags: {W: ["inariNeutral"]}, + text: "No one's ever become an Elite Memeber besides the Team Leader, we're only here as guards!" + }], [{ + U: [], nodeName: "elite5", V: "questTeamYellow", + tags: {W: ["inariNeutral"]}, text: "The Team Leader has been waiting to meet you." + }], [{ + U: [], + nodeName: "elite6", + V: "questTeamYellow", + tags: {W: ["inariNeutral"]}, + text: "I have to go to the bathroom but I'm on duty..." + }], [{ + U: [], + nodeName: "frontGuardLocked", + V: "questTeamYellow", + tags: {W: ["inariNeutral"]}, + text: "This is a totally normal house and has nothing to do with Team Yellow. Off you go!" + }], [{ + U: [{next: "welcometohq", text: null}], + nodeName: "frontGuardUnlocked", + V: "questTeamYellow", + tags: {W: ["inariNeutral"]}, + text: "Oho, I see you're a member of Team Yellow." + }, + { + U: [], + nodeName: "welcometohq", + V: "questTeamYellow", + tags: {W: ["inariNeutral"]}, + text: "Welcome to our secret headquarters, come right in." + }], [{ + U: [], + nodeName: "hq1GuardLocked", + V: "questTeamYellow", + tags: {W: ["inariNeutral"]}, + text: "Sorry, this room is for Advanced Members only. You need 3 Champion Scrolls to gain access." + }], [{ + U: [], + nodeName: "hq1GuardUnlocked", + V: "questTeamYellow", + tags: {W: ["inariNeutral"]}, + text: "You've won enough scrolls to join to the Advanced Members! Team Yellow thanks you for your hard work!" + }], + [{ + U: [], + nodeName: "hq2GuardLocked", + V: "questTeamYellow", + tags: {W: ["inariNeutral"]}, + text: "Sorry, this room is for Elite Members only. You need 6 Champion Scrolls to gain access." + }], [{ + U: [], + nodeName: "hq2GuardUnlocked", + V: "questTeamYellow", + tags: {W: ["inariNeutral"]}, + text: "You've won enough scrolls to join to the Elite Members! Our Team Leader is excited to meet you!" + }], [{ + U: [{next: "notforme", text: null}], + nodeName: "lockedFrontDoor", + V: "questTeamYellow", + tags: {W: ["luckyCurious"]}, + text: "It's locked..." + }, { + U: [], nodeName: "notforme", + V: "questTeamYellow", tags: {W: ["luckyWorried"]}, text: "Maybe I should find my own team's headquarters instead." + }], [{ + U: [], + nodeName: "member1", + V: "questTeamYellow", + tags: {W: ["inariNeutral"]}, + text: "This is our secret headqueaters, don't tell anyone about it!" + }], [{ + U: [], + nodeName: "member2", + V: "questTeamYellow", + tags: {W: ["inariNeutral"]}, + text: "If I keep practicing, I know one day I can beat a Champion and earn a scroll!" + }], [{ + U: [], + nodeName: "member3", + V: "questTeamYellow", + tags: {W: ["inariNeutral"]}, + text: "There are rumors that some sports have more difficult versions hidden throughout the island..." + }], + [{ + U: [{next: "theleader", text: null}], + nodeName: "teamLeaderLosing", + V: "questTeamYellow", + tags: {W: ["leaderYellowNeutral"]}, + text: "Oh, Lucky. I've heard a lot about you." + }, { + U: [{next: "notdone", text: null}], + nodeName: "theleader", + V: "questTeamYellow", + tags: {W: ["leaderYellowNeutral"]}, + text: "I am the leader of Team Yellow, and I'm very proud of what you've done for our team." + }, { + U: [], + nodeName: "notdone", + V: "questTeamYellow", + tags: {W: ["leaderYellowNeutral"]}, + text: "But our work is not done! Team Yellow is behind on the leaderboard. We cannot rest until we are number 1!" + }], + [{ + U: [{next: "theleader2", text: null}], + nodeName: "teamLeaderWinning", + V: "questTeamYellow", + tags: {W: ["leaderYellowNeutral"]}, + text: "Oh, Lucky. I've heard a lot about you." + }, { + U: [{next: "winning", text: null}], + nodeName: "theleader2", + V: "questTeamYellow", + tags: {W: ["leaderYellowNeutral"]}, + text: "I am the leader of Team Yellow, and I'm very proud of what you've done for our team." + }, { + U: [{next: "keepgoodwork", text: null}], + nodeName: "winning", + V: "questTeamYellow", + tags: {W: ["leaderYellowNeutral"]}, + text: "And Team Yellow is currently in first place!" + }, + { + U: [], + nodeName: "keepgoodwork", + V: "questTeamYellow", + tags: {W: ["leaderYellowNeutral"]}, + text: "Keep up your hard work to the very end, and Team Yellow will win the Champion Island Games!" + }], [{ + U: [{next: "hint", text: "No..."}], + nodeName: "active", + V: "questTrainTracks", + tags: {W: ["ushiNeutral"]}, + text: "You learn the password yet?" + }, { + U: [{next: "impress", text: null}], + nodeName: "hint", + V: "questTrainTracks", + tags: {W: ["ushiNeutral"]}, + text: "The skaters at the Dojo in the center of town might be willing to let you in..." + }, { + U: [], + nodeName: "impress", V: "questTrainTracks", tags: {W: ["ushiNeutral"]}, text: "If you impress them, that is." + }], [{ + U: [{next: "trophyHint", text: null}], + nodeName: "activeTrophy", + V: "questTrainTracks", + tags: {W: ["trophyMasterNeutral"]}, + text: "Looks like you're in the middle of helping out with this one." + }, { + U: [], + nodeName: "trophyHint", + V: "questTrainTracks", + tags: {W: ["trophyMasterNeutral"]}, + text: "Need the password for the Secret Skate Park across the train tracks? Check at the Skate Dojo." + }], [{ + U: [], nodeName: "complete", V: "questTrainTracks", + tags: {W: ["ushiNeutral"]}, text: "Click on the Red Gate to try the secret skatepark!" + }], [{ + U: [{next: "StillWatching", text: null}], + nodeName: "completeTrophy", + V: "questTrainTracks", + tags: {W: ["luckyNeutral"]}, + text: "'Secret Skatepark Membership'" + }, { + U: [], + nodeName: "StillWatching", + V: "questTrainTracks", + tags: {W: ["trophyMasterNeutral"]}, + text: "I saw the whole thing, you were magnificent. Hee hee." + }], [{ + U: [{next: "teakettle", text: "Tea Kettle!"}], + nodeName: "found", + V: "questTrainTracks", + tags: {W: ["ushiNeutral"]}, + text: "You learn the password yet?" + }, + { + U: [], + nodeName: "teakettle", + V: "questTrainTracks", + tags: {W: ["ushiNeutral"], zd: ["TRAIN_TRACKS", "complete"]}, + text: "That's it! Follow the gate and enjoy the new park!" + }], [{ + U: [{next: "lastHint", text: null}], + nodeName: "foundTrophy", + V: "questTrainTracks", + tags: {W: ["trophyMasterNeutral"]}, + text: "You've almost got this one finished!" + }, { + U: [], + nodeName: "lastHint", + V: "questTrainTracks", + tags: {W: ["trophyMasterNeutral"]}, + text: "TEA KETTLE is the password to the Secret Skate Park across the train tracks in Tanooki City. Go check it out, hee hee." + }], + [{ + U: [{next: "password", text: "Yeah!"}, {next: "no", text: "Nah."}], + nodeName: "inactive", + V: "questTrainTracks", + tags: {W: ["ushiNeutral"]}, + text: "Curious about the other side of the train tracks?" + }, { + U: [{next: "wronganswer", text: "Tanooki?"}, {next: "wronganswer", text: "Skateboard?"}, { + next: "dontknow", + text: "I dunno." + }], + nodeName: "password", + V: "questTrainTracks", + tags: {W: ["ushiNeutral"]}, + text: "That's the EXCLUSIVE Skatepark. You need the secret password to get in, I assume you know it?" + }, { + U: [], nodeName: "no", V: "questTrainTracks", + tags: {W: ["ushiNeutral"]}, text: "...then you better move along." + }, { + U: [{next: "askaround", text: null}], + nodeName: "wronganswer", + V: "questTrainTracks", + tags: {W: ["ushiNeutral"], zd: ["TRAIN_TRACKS", "active"]}, + text: "HA! Nice try. No entry without the password." + }, { + U: [{next: "askaround", text: null}], + nodeName: "dontknow", + V: "questTrainTracks", + tags: {W: ["ushiNeutral"], zd: ["TRAIN_TRACKS", "active"]}, + text: "No entry without the password!" + }, { + U: [], + nodeName: "askaround", + V: "questTrainTracks", + tags: {W: ["ushiNeutral"]}, + text: "Members hang out at the Dojo in the center of town, maybe ask them." + }], + [{ + U: [{next: "questDescription", text: null}], + nodeName: "inactiveTrophy", + V: "questTrainTracks", + tags: {W: ["trophyMasterNeutral"]}, + text: "Oh, I'm saving that spot." + }, { + U: [{next: "IllBeWatching", text: null}], + nodeName: "questDescription", + V: "questTrainTracks", + tags: {W: ["trophyMasterNeutral"]}, + text: "Did you ever notice how the train tracks in Tanooki City are always down?" + }, { + U: [], + nodeName: "IllBeWatching", + V: "questTrainTracks", + tags: {W: ["trophyMasterNeutral"]}, + text: "I wonder if there's anything on the other side..hee hee hee." + }], + [{ + U: [{next: "whatsthepassword", text: null}], + nodeName: "active", + V: "questTrainTracksPassword", + tags: {W: ["inariNeutral"]}, + text: "Hehehe I'm so excited, I just got access to the secret skatepark!" + }, { + U: [{next: "dotdotdot", text: null}], + nodeName: "whatsthepassword", + V: "questTrainTracksPassword", + tags: {W: ["inariNeutral"]}, + text: "What's the password? I'll never tell. And who would ever guess...TEA KETTLE, it's brilliant!." + }, { + U: [{next: "slipup", text: null}], + nodeName: "dotdotdot", + V: "questTrainTracksPassword", + tags: {W: ["inariNeutral"]}, + text: "..." + }, { + U: [], + nodeName: "slipup", + V: "questTrainTracksPassword", + tags: {W: ["inariNeutral"], zd: ["TRAIN_TRACKS", "found"]}, + text: "... you didn't hear that from me. Hehehe." + }], [{ + U: [{next: "greatmoves", text: null}], + nodeName: "complete", + V: "questTrainTracksPassword", + tags: {W: ["inariNeutral"]}, + text: "I saw you at the secret skatepark..." + }, { + U: [], + nodeName: "greatmoves", + V: "questTrainTracksPassword", + tags: {W: ["inariNeutral"]}, + text: "...you've got some great moves!" + }], [{ + U: [], nodeName: "found", V: "questTrainTracksPassword", + tags: {W: ["inariNeutral"]}, text: "hehehe...TEA KETTLE...hehehe" + }], [{ + U: [{next: "firstHint", text: null}], + nodeName: "active", + V: "questTrophy", + tags: {W: [""]}, + text: "XXX" + }, {U: [], nodeName: "firstHint", V: "questTrophy", tags: {W: [""]}, text: "XXX"}], [{ + U: [{ + next: "trophyHint", + text: null + }], + nodeName: "activeTrophy", + V: "questTrophy", + tags: {W: ["trophyMasterNeutral"]}, + text: "Looks like you're in the middle of helping out with this one." + }, {U: [], nodeName: "trophyHint", V: "questTrophy", tags: {W: ["trophyMasterNeutral"]}, text: "XXX"}], [{ + U: [], + nodeName: "complete", V: "questTrophy", tags: {W: [""]}, text: "XXX" + }], [{ + U: [{next: "StillWatching", text: null}], + nodeName: "completeTrophy", + V: "questTrophy", + tags: {W: ["luckyNeutral"]}, + text: '"TROPHYNAME"' + }, { + U: [], + nodeName: "StillWatching", + V: "questTrophy", + tags: {W: ["trophyMasterNeutral"]}, + text: "I saw the whole thing, you were magnificent. Hee hee." + }], [{U: [{next: "thanks", text: null}], nodeName: "found", V: "questTrophy", tags: {W: [""]}, text: "XXX"}, { + U: [], nodeName: "thanks", V: "questTrophy", tags: {W: [""], zd: ["NAME", "complete"]}, + text: "XXX" + }], [{ + U: [{next: "lastHint", text: null}], + nodeName: "foundTrophy", + V: "questTrophy", + tags: {W: ["trophyMasterNeutral"]}, + text: "You've almost got this one finished!" + }, { + U: [], + nodeName: "lastHint", + V: "questTrophy", + tags: {W: ["trophyMasterNeutral"]}, + text: "Finish up and come back to see your reward, see hee." + }], [{ + U: [{next: "yes", text: "Sure!"}, {next: "no", text: "No."}], + nodeName: "inactive", + V: "questTrophy", + tags: {W: [""]}, + text: "XXX" + }, {U: [], nodeName: "yes", V: "questTrophy", tags: {W: [""], zd: ["NAME", "active"]}, text: "XXX"}, + { + U: [{next: "changeMind", text: null}], + nodeName: "no", + V: "questTrophy", + tags: {W: [""]}, + text: "XXX" + }], [{ + U: [{next: "questDescription", text: null}], + nodeName: "inactiveTrophy", + V: "questTrophy", + tags: {W: ["trophyMasterNeutral"]}, + text: "Oh, I'm saving that spot." + }, { + U: [], + nodeName: "questDescription", + V: "questTrophy", + tags: {W: ["trophyMasterNeutral"]}, + text: "Hee hee hee hee hee hee." + }], [{ + U: [{next: "visisting", text: null}], + nodeName: "active2Lions", + V: "questTrophyMaster", + tags: {W: ["koma1Neutral"]}, + text: "Lucky...what are you doing in there?" + }, + { + U: [{next: "whattrophy", text: null}], + nodeName: "visisting", + V: "questTrophyMaster", + tags: {W: ["luckyNeutral"]}, + text: "Huh? I was just visiting the Trophy Master." + }, { + U: [{next: "missing2", text: "Missing?"}, {next: "thenwho", text: "Not True"}], + nodeName: "whattrophy", + V: "questTrophyMaster", + tags: {W: ["koma2Neutral"]}, + text: "Trophy Master? But...the Trophy Master has been missing for months!" + }, { + U: [{next: "dissapeared", text: null}], + nodeName: "missing2", + V: "questTrophyMaster", + tags: {W: ["luckyNeutral"]}, + text: "Missing? What happened?" + }, + { + U: [{next: "thenwho", text: null}], + nodeName: "dissapeared", + V: "questTrophyMaster", + tags: {W: ["koma1Neutral"]}, + text: "No one knows, she just disappeared!" + }, { + U: [{next: "whatbird", text: null}], + nodeName: "thenwho", + V: "questTrophyMaster", + tags: {W: ["luckyNeutral"]}, + text: "That's not true, the Trophy Master is in there now! A nice old crane who watches my every move." + }, { + U: [{next: "imposter", text: null}], + nodeName: "whatbird", + V: "questTrophyMaster", + tags: {W: ["koma2Neutral"]}, + text: "A crane? Lucky...the Trophy Master is a cat, same as you!" + }, + { + U: [{next: "howcanthisbe", text: null}], + nodeName: "imposter", + V: "questTrophyMaster", + tags: {W: ["koma1Neutral"]}, + text: "An imposter!" + }, { + U: [{next: "betternot2", text: null}], + nodeName: "howcanthisbe", + V: "questTrophyMaster", + tags: {W: ["luckyWorried"]}, + text: "This can't be true...all this time..." + }, { + U: [{next: "maybecheck2", text: null}], + nodeName: "betternot2", + V: "questTrophyMaster", + tags: {W: ["koma2Neutral"]}, + text: "It sounds like something fishy is going on...you better not go back in there." + }, { + U: [{next: "butwhere2", text: null}], + nodeName: "maybecheck2", + V: "questTrophyMaster", + tags: {W: ["koma1Neutral"]}, + text: "You have to find the true Trophy Master!" + }, { + U: [{next: "cat2", text: null}], + nodeName: "butwhere2", + V: "questTrophyMaster", + tags: {W: ["luckyCurious"]}, + text: "But where do I even begin to look?" + }, { + U: [{next: "hmmm2", text: null}], + nodeName: "cat2", + V: "questTrophyMaster", + tags: {W: ["koma2Neutral"]}, + text: "Think! Have you seen an other cats anywhere on the island?" + }, { + U: [], nodeName: "hmmm2", V: "questTrophyMaster", tags: { + W: ["luckyWorried"], zd: ["TROPHY_MASTER", + "search"] + }, text: "Hmmm, as a matter of fact I have..." + }], [{ + U: [], + nodeName: "active2Master", + V: "questTrophyMaster", + tags: {W: ["trophyMasterNeutral"]}, + text: "Hee hee hee hee hee hee hee hee." + }], [{ + U: [{next: "donttrust", text: null}], + nodeName: "active2Trophy", + V: "questTrophyMaster", + tags: {W: ["trophyMasterNeutral"]}, + text: "You'd better stay away from there Lucky, hee hee." + }, { + U: [], + nodeName: "donttrust", + V: "questTrophyMaster", + tags: {W: ["luckyWorried"]}, + text: "It says 'Don't trust the bird.'" + }], [{ + U: [{next: "doMyBest", text: null}], + nodeName: "activeMaster", + V: "questTrophyMaster", + tags: {W: ["trophyMasterNeutral"]}, + text: "Check back here any time you want to see the trophies you've earned. Or if you need a reminder of what to do next!" + }], [{ + U: [{next: "donttrust2", text: null}], + nodeName: "activeTrophy", + V: "questTrophyMaster", + tags: {W: ["luckyNeutral"]}, + text: "There's something written here..." + }, { + U: [{next: "whatdoing2", text: null}], + nodeName: "donttrust2", + V: "questTrophyMaster", + tags: {W: [""]}, + text: "'Don't trust the bird.'" + }, { + U: [{next: "nnothing2", text: "Nothing!"}, + {next: "whatisthis2", text: "What's this?"}], + nodeName: "whatdoing2", + V: "questTrophyMaster", + tags: {W: ["trophyMasterNeutral"], zd: ["TROPHY_MASTER", "active"]}, + text: "...what are you doing over there Lucky?" + }, { + U: [{next: "heeheehee2", text: null}], + nodeName: "whatisthis2", + V: "questTrophyMaster", + tags: {W: ["luckyWorried"]}, + text: "Why does this spot say 'Don't trust the bird'" + }, { + U: [{next: "heeheeheehee2", text: null}], + nodeName: "heeheehee2", + V: "questTrophyMaster", + tags: {W: ["trophyMasterNeutral"]}, + text: "What? Oh....well you can't believe everything you read. Hee hee." + }, + { + U: [], + nodeName: "heeheeheehee2", + V: "questTrophyMaster", + tags: {W: ["trophyMasterNeutral"], zd: ["TROPHY_MASTER", "active2"]}, + text: "Hee hee hee hee." + }, { + U: [], + nodeName: "nnothing2", + V: "questTrophyMaster", + tags: {W: ["luckyWorried"]}, + text: "N-nothing!" + }], [{ + U: [{next: "catshate", text: null}], + nodeName: "boatBoatHouse", + V: "questTrophyMaster", + tags: {W: ["luckyCurious"]}, + text: "A whirlpool? I think see something at the bottom..." + }, { + U: [{next: "jump", text: "Jump in!"}, {next: "stay", text: "No way."}], + nodeName: "catshate", + V: "questTrophyMaster", + tags: {W: ["luckyHide"]}, + text: "But could the Trophy Master be down there? Cats hate water..." + }, { + U: [], + nodeName: "jump", + V: "questTrophyMaster", + tags: {W: ["luckyCurious"], zd: ["TROPHY_MASTER", "underwater"]}, + text: "Only one way to find out!" + }, { + U: [], + nodeName: "stay", + V: "questTrophyMaster", + tags: {W: ["luckyHide"]}, + text: "I don't think I'm ready yet..." + }], [{ + U: [{next: "getgoingboat", text: null}], + nodeName: "boatLions", + V: "questTrophyMaster", + tags: {W: ["luckyCurious"]}, + text: "The Trophy Master was last seen heading to a boat house in the North West Docks!" + }, + { + U: [], + nodeName: "getgoingboat", + V: "questTrophyMaster", + tags: {W: ["koma2Neutral"]}, + text: "Well don't tell us that, head to the North West Docks!" + }], [{ + U: [], + nodeName: "boatSleepingCat", + V: "questTrophyMaster", + tags: {W: ["sleepingCatNeutral"]}, + text: "Zzz...last saw the Trophy Master in the North West Docks...zzz" + }], [{ + U: [{next: "wherefindher", text: null}], + nodeName: "completeLions", + V: "questTrophyMaster", + tags: {W: ["koma1Neutral"]}, + text: "Lucky, you did it! The Trophy Master just returned." + }, { + U: [{next: "longstoryyy", text: null}], + nodeName: "wherefindher", V: "questTrophyMaster", tags: {W: ["koma2Neutral"]}, text: "Where did you find her??" + }, { + U: [], + nodeName: "longstoryyy", + V: "questTrophyMaster", + tags: {W: ["luckySmileSweatdrop"]}, + text: "It's kind of a long story..." + }], [{ + U: [{next: "StillWatching", text: null}], + nodeName: "completeTrophy", + V: "questTrophyMaster", + tags: {W: ["luckyNeutral"]}, + text: '"Trophy Master Locator"' + }, { + U: [{next: "mag", text: null}], + nodeName: "StillWatching", + V: "questTrophyMaster", + tags: {W: ["momoNeutral"]}, + text: "Thank you Lucky!" + }, { + U: [], + nodeName: "mag", V: "questTrophyMaster", tags: {W: ["trophyMasterNeutral"]}, text: "You were...a true Champion!" + }], [{ + U: [{next: "thankyoufor", text: null}], + nodeName: "completeTrophyMaster", + V: "questTrophyMaster", + tags: {W: ["luckyNeutral"]}, + text: "Momo, you made it back!" + }, { + U: [{next: "appo", text: null}], + nodeName: "thankyoufor", + V: "questTrophyMaster", + tags: {W: ["trophyMasterNeutral"]}, + text: "Yes, thank you for finding her Lucky, hee hee." + }, { + U: [{next: "embarssed", text: null}], nodeName: "appo", V: "questTrophyMaster", tags: {W: ["trophyMasterNeutral"]}, + text: "Apologies if my warning note was alarming, but I promised Momo I wouldn't say she had left." + }, { + U: [{next: "gettingworried", text: null}], + nodeName: "embarssed", + V: "questTrophyMaster", + tags: {W: ["luckyCurious"]}, + text: "So it was you who wrote the warning!" + }, { + U: [{next: "stillfinish", text: null}], + nodeName: "gettingworried", + V: "questTrophyMaster", + tags: {W: ["trophyMasterNeutral"]}, + text: "Hee hee, yes. But it turns out I had nothing to worry about, Momo is safe and sound!" + }, { + U: [{next: "plentyoftime", text: null}], nodeName: "stillfinish", + V: "questTrophyMaster", tags: {W: ["momoNeutral"]}, text: "But I still have to finish the game..." + }, { + U: [], + nodeName: "plentyoftime", + V: "questTrophyMaster", + tags: {W: ["luckyHappy"]}, + text: "Don't worry, you still have plenty of time!" + }], [{ + U: [{next: "withme", text: null}], + nodeName: "computer", + V: "questTrophyMaster", + tags: {W: ["luckyCurious"]}, + text: "A computer..." + }, { + U: [], + nodeName: "withme", + V: "questTrophyMaster", + tags: {W: ["luckyShocked"]}, + text: "...with me on the screen??" + }], [{ + U: [{next: "whoAre", text: null}], nodeName: "inactiveMaster", + V: "questTrophyMaster", tags: {W: ["trophyMasterNeutral"]}, text: "Oh. Hello Lucky." + }, { + U: [{next: "whoAm", text: null}], + nodeName: "whoAre", + V: "questTrophyMaster", + tags: {W: ["luckyNeutral"]}, + text: "H-how do you know my name?" + }, { + U: [{next: "myJob", text: null}], + nodeName: "whoAm", + V: "questTrophyMaster", + tags: {W: ["trophyMasterNeutral"]}, + text: "Oh I'm a BIG fan, hee hee." + }, { + U: [{next: "beautifulTrophy", text: null}], + nodeName: "myJob", + V: "questTrophyMaster", + tags: {W: ["trophyMasterNeutral"]}, + text: "I've been watching all the amazing things you've been doing since you arrived. That's my job, I'm the Trophy Master." + }, + { + U: [{next: "wow", text: null}], + nodeName: "beautifulTrophy", + V: "questTrophyMaster", + tags: {W: ["trophyMasterNeutral"]}, + text: "I keep track of everything that happens on the island. When someone does something amazing, I make sure they are rewarded with a beautiful trophy!" + }, { + U: [{next: "notOnlyThat", text: null}], + nodeName: "wow", + V: "questTrophyMaster", + tags: {W: ["luckyNeutral"]}, + text: "Wow, that sounds like a fun job!" + }, { + U: [{next: "youHave", text: null}], + nodeName: "notOnlyThat", + V: "questTrophyMaster", + tags: {W: ["trophyMasterNeutral"]}, + text: "It's very rewarding, hee hee. And I've already seen the amazing things that YOU have accomplished." + }, { + U: [{next: "goodFeeling", text: null}], + nodeName: "youHave", + V: "questTrophyMaster", + tags: {W: ["luckyNeutral"]}, + text: "M-me?" + }, { + U: [{next: "moreWays", text: null}], + nodeName: "goodFeeling", + V: "questTrophyMaster", + tags: {W: ["trophyMasterNeutral"]}, + text: "Oh yes, I've got a good feeling about you." + }, { + U: [{next: "checkBack", text: null}], + nodeName: "moreWays", + V: "questTrophyMaster", + tags: {W: ["trophyMasterNeutral"]}, + text: "There are more ways to get trophies than just winning sports. Helping people deserves rewarding too." + }, + { + U: [{next: "doMyBest", text: null}], + nodeName: "checkBack", + V: "questTrophyMaster", + tags: {W: ["trophyMasterNeutral"]}, + text: "Check back here any time you want to see the trophies you've earned. Or if you need a reminder of what to do next!" + }, { + U: [{next: "ohIKnow", text: null}], + nodeName: "doMyBest", + V: "questTrophyMaster", + tags: {W: ["luckyNeutral"]}, + text: "Thanks, I'll do my best!" + }, { + U: [], + nodeName: "ohIKnow", + V: "questTrophyMaster", + tags: {W: ["trophyMasterNeutral"], zd: ["TROPHY_MASTER", "idle"]}, + text: "Oh, I know. Hee hee." + }], + [{ + U: [{next: "questDescription", text: null}], + nodeName: "inactiveTrophy", + V: "questTrophyMaster", + tags: {W: ["luckyNeutral"]}, + text: "Hm, what's this one for?" + }, { + U: [], + nodeName: "questDescription", + V: "questTrophyMaster", + tags: {W: ["trophyMasterNeutral"]}, + text: "Oh, don't worry about that one. Hee hee." + }], [{ + U: [{next: "maybecheck3", text: null}], + nodeName: "searchLions", + V: "questTrophyMaster", + tags: {W: ["koma2Neutral"]}, + text: "It sounds like something fishy is going on...you better not go back in there." + }, { + U: [{ + next: "othercats3", + text: null + }], + nodeName: "maybecheck3", + V: "questTrophyMaster", + tags: {W: ["koma1Neutral"]}, + text: "The Trophy Master is a cat, same as you." + }, { + U: [{next: "matofac3", text: null}], + nodeName: "othercats3", + V: "questTrophyMaster", + tags: {W: ["koma2Neutral"]}, + text: "Have you seen an other cats anywhere on the island?" + }, { + U: [{next: "sleepingcat3", text: null}], + nodeName: "matofac3", + V: "questTrophyMaster", + tags: {W: ["luckyWorried"]}, + text: "Hmmm, as a matter of fact I have..." + }, { + U: [], nodeName: "sleepingcat3", V: "questTrophyMaster", tags: {W: ["luckyCurious"]}, + text: "There was a sleeping cat on Oni Island! I'll go check!" + }], [{ + U: [{next: "imlucky", text: null}], + nodeName: "unterwaterTrophyMaster", + V: "questTrophyMaster", + tags: {W: ["momoBlue"]}, + text: "W-who are you?" + }, { + U: [{next: "immomo", text: null}], + nodeName: "imlucky", + V: "questTrophyMaster", + tags: {W: ["luckyHide"]}, + text: "I'm Lucky the cat. A-are you the Trophy Master?" + }, { + U: [{next: "fromhere", text: null}], + nodeName: "immomo", + V: "questTrophyMaster", + tags: {W: ["momoBlue"]}, + text: "Oh, yes...but that was more of a side job. My name's Momo." + }, + { + U: [{next: "halloweendoodle", text: null}], + nodeName: "fromhere", + V: "questTrophyMaster", + tags: {W: ["luckyWorried"]}, + text: "Momo? That sounds familiar..." + }, { + U: [{next: "lovedreally", text: null}], + nodeName: "halloweendoodle", + V: "questTrophyMaster", + tags: {W: ["luckyShocked"]}, + text: "Oh! You're the cat from the Halloween Google Doodle! I loved that game!!" + }, { + U: [{next: "smallworld", text: null}], + nodeName: "lovedreally", + V: "questTrophyMaster", + tags: {W: ["momoBlue"]}, + text: "Wait...does that mean you're Lucky from the Champion Island Google Doodle? I've been playing it for days!" + }, + { + U: [{next: "controllingme", text: null}], + nodeName: "smallworld", + V: "questTrophyMaster", + tags: {W: ["luckyHappy"]}, + text: "Wow, what a small world!" + }, { + U: [{next: "controlmomo", text: null}], + nodeName: "controllingme", + V: "questTrophyMaster", + tags: {W: ["luckyCurious"]}, + text: "Wait...does that mean you've been controlling me this whole time?" + }, { + U: [{next: "dotdotdotlucky", text: null}], + nodeName: "controlmomo", + V: "questTrophyMaster", + tags: {W: ["momoBlue"]}, + text: "But wouldn't that mean you were controlling me??" + }, { + U: [{ + next: "dotdotdotmomo", + text: null + }], nodeName: "dotdotdotlucky", V: "questTrophyMaster", tags: {W: ["luckyCurious"]}, text: "..." + }, { + U: [{next: "notexistential", text: null}], + nodeName: "dotdotdotmomo", + V: "questTrophyMaster", + tags: {W: ["momoBlue"]}, + text: "..." + }, { + U: [{next: "everyoneslooking", text: null}], + nodeName: "notexistential", + V: "questTrophyMaster", + tags: {W: ["luckySmileSweatdrop"]}, + text: "Well, let's not get too existential!" + }, { + U: [{next: "hiding", text: null}], + nodeName: "everyoneslooking", + V: "questTrophyMaster", + tags: {W: ["luckyCurious"]}, + text: "Everyone on Champion Island has been looking for you!" + }, + { + U: [{next: "askedcrane", text: null}], + nodeName: "hiding", + V: "questTrophyMaster", + tags: {W: ["momoBlue"]}, + text: "Oh, I guess I lost track of time." + }, { + U: [{next: "comeback", text: null}], + nodeName: "askedcrane", + V: "questTrophyMaster", + tags: {W: ["momoBlue"]}, + text: "I asked my friend the crane to watch the Trophy House while I tried to finish your game, but it's very long!" + }, { + U: [{next: "notsobadcrane", text: null}], + nodeName: "comeback", + V: "questTrophyMaster", + tags: {W: ["luckyWorried"]}, + text: "The crane is your friend? He seemed so creepy..." + }, + { + U: [{next: "comebackup", text: null}], + nodeName: "notsobadcrane", + V: "questTrophyMaster", + tags: {W: ["momoBlue"]}, + text: "Oh he's not so bad, just has a funny laugh." + }, { + U: [{next: "sure", text: null}], + nodeName: "comebackup", + V: "questTrophyMaster", + tags: {W: ["luckyCurious"]}, + text: "Would you like to come back to the island with me? Everyone will be excited to see you!" + }, { + U: [], + nodeName: "sure", + V: "questTrophyMaster", + tags: {W: ["momoBlue"], zd: ["TROPHY_MASTER", "complete"]}, + text: "Of course, they must all be so worried! I'll meet you at the Trophy House!" + }], + [{ + U: [{next: "areYouThe", text: null}], + nodeName: "activeSister1", + V: "questWaterGate", + tags: {W: ["sister1Neutral"]}, + text: "Leave me alone...I can't stand all this competition." + }, { + U: [{next: "longBehindMe", text: null}], + nodeName: "areYouThe", + V: "questWaterGate", + tags: {W: ["luckyNeutral"]}, + text: "Excuse me, are you one of the sisters who built the red gate in the water?" + }, { + U: [{next: "gateSankAfter", text: null}], + nodeName: "longBehindMe", + V: "questWaterGate", + tags: {W: ["sister1Neutral"]}, + text: "Bah, a mistake of my youth, yes." + }, + { + U: [{next: "goodRiddance", text: null}], + nodeName: "gateSankAfter", + V: "questWaterGate", + tags: {W: ["luckyNeutral"]}, + text: "You must return to the gate, it sank after you and your sisters left!" + }, { + U: [{next: "why", text: null}], + nodeName: "goodRiddance", + V: "questWaterGate", + tags: {W: ["sister1Neutral"]}, + text: "Good riddance! That gate and all sports are nothing but trouble!" + }, { + U: [{next: "why2", text: null}], + nodeName: "why", + V: "questWaterGate", + tags: {W: ["luckyNeutral"]}, + text: "Trouble? Why? I love sports!" + }, { + U: [{ + next: "discipline", + text: "Discipline" + }, {next: "fun", text: "Fun!"}, {next: "accomplishment", text: "Accomplishment"}], + nodeName: "why2", + V: "questWaterGate", + tags: {W: ["sister1Neutral"]}, + text: "They're all nothing but needless competition. What good has sports ever done anyone?" + }, { + U: [{next: "zzz", text: null}], + nodeName: "fun", + V: "questWaterGate", + tags: {W: ["sister1Neutral"]}, + text: "Fun?? You know what's more fun than sports? Sleeping all day. Which reminds me..." + }, {U: [], nodeName: "zzz", V: "questWaterGate", tags: {W: ["sister1Neutral"]}, text: "Zzzzzzz..."}, + { + U: [], + nodeName: "accomplishment", + V: "questWaterGate", + tags: {W: ["sister1Neutral"]}, + text: "Accomplishment? For every winner there's a loser, I don't want to be a part of that." + }, { + U: [{next: "okIllGo", text: null}], + nodeName: "discipline", + V: "questWaterGate", + tags: {W: ["sister1Neutral"]}, + text: "Discipline? Hmm...maybe you're right. A lot of young people these days could use more discipline" + }, { + U: [{next: "climbingMountainNext", text: null}], + nodeName: "okIllGo", + V: "questWaterGate", + tags: {W: ["sister1Neutral"]}, + text: "Alright, I'll go back! But good luck getting my other sisters to come. One of them is up on top of Climbing Mountain!" + }, + { + U: [], + nodeName: "climbingMountainNext", + V: "questWaterGate", + tags: {W: ["luckyWorried"], zd: ["WATER_GATE", "sister2"]}, + text: "Hm, sounds like I should try Climbing Mountain next..." + }], [{ + U: [{next: "behindMe", text: null}], + nodeName: "activeSister2", + V: "questWaterGate", + tags: {W: ["luckyNeutral"]}, + text: "Excuse me? Are you one of the sisters who built the red gate in the water?" + }, { + U: [{next: "whyLeftBehind", text: null}], + nodeName: "behindMe", + V: "questWaterGate", + tags: {W: ["sister2Neutral"]}, + text: "Oh...um, yes. But I'm afraid I left all that behind me." + }, + { + U: [{next: "quiteImpossible", text: null}], + nodeName: "whyLeftBehind", + V: "questWaterGate", + tags: {W: ["luckyNeutral"]}, + text: "You should come back! The gate sank after you and your sisters left." + }, { + U: [{next: "foundPeace", text: null}], + nodeName: "quiteImpossible", + V: "questWaterGate", + tags: {W: ["sister2Neutral"]}, + text: "Oh how dreadful. But I'm afraid returning would be quite impossible." + }, { + U: [{next: "whyReturn", text: null}], + nodeName: "foundPeace", + V: "questWaterGate", + tags: {W: ["sister2Neutral"]}, + text: "I used to love climbing, but once I reached the top I looked out on the land below and I found peace." + }, + { + U: [{next: "family", text: "Family"}, {next: "fame", text: "Fame"}, {next: "money", text: "Money"}], + nodeName: "whyReturn", + V: "questWaterGate", + tags: {W: ["sister2Neutral"]}, + text: "Why would I possibly want to return?" + }, { + U: [{next: "sorryIllStay", text: null}], + nodeName: "family", + V: "questWaterGate", + tags: {W: ["sister2Neutral"]}, + text: "Family? My sisters you mean? To be honest I've enjoyed the quiet without them." + }, { + U: [{next: "sorryIllStay", text: null}], + nodeName: "fame", + V: "questWaterGate", + tags: {W: ["sister2Neutral"]}, + text: "Fame? Tempting, but it sounds very noisy, I like the quiet." + }, + { + U: [], + nodeName: "sorryIllStay", + V: "questWaterGate", + tags: {W: ["sister2Neutral"]}, + text: "Sorry, I think I'll stay put." + }, { + U: [{next: "theresMoney", text: null}], + nodeName: "money", + V: "questWaterGate", + tags: {W: ["sister2Neutral"]}, + text: "..." + }, { + U: [{next: "unexpected", text: null}], + nodeName: "theresMoney", + V: "questWaterGate", + tags: {W: ["sister2Neutral"]}, + text: "....there's money involved? I'll be right there!" + }, { + U: [{next: "notForMe", text: null}], + nodeName: "unexpected", + V: "questWaterGate", + tags: {W: ["luckyAnnoyed"]}, + text: "Really? Money is what you want?" + }, + { + U: [{next: "whatBirds", text: null}], + nodeName: "notForMe", + V: "questWaterGate", + tags: {W: ["sister2Neutral"]}, + text: "Not for me! I want to build a beautiful bird house for all the little birds up here." + }, { + U: [{next: "seeYouThere", text: null}], + nodeName: "whatBirds", + V: "questWaterGate", + tags: {W: ["luckyAnnoyed"]}, + text: "I don't see any birds...." + }, { + U: [], + nodeName: "seeYouThere", + V: "questWaterGate", + tags: {W: ["sister2Neutral"], zd: ["WATER_GATE", "sister3"]}, + text: "Well you should be looking for my last sister, she moved to Tanooki City in the South West!" + }], + [{ + U: [{next: "sorryToWakeYou", text: null}], + nodeName: "activeSister3", + V: "questWaterGate", + tags: {W: ["sister3Neutral"]}, + text: "Zzz..." + }, { + U: [{next: "hmwhat", text: null}], + nodeName: "sorryToWakeYou", + V: "questWaterGate", + tags: {W: ["luckyNeutral"]}, + text: "Um, excuse me ma'am?" + }, { + U: [{next: "sorrytodisturb", text: null}], + nodeName: "hmwhat", + V: "questWaterGate", + tags: {W: ["sister3Neutral"]}, + text: "Zzz...hm what?? Who's there??" + }, { + U: [{next: "ohThatOldThing", text: null}], + nodeName: "sorrytodisturb", + V: "questWaterGate", + tags: {W: ["luckyNeutral"]}, + text: "Sorry to disturb you, I'm looking for the sisters who built the red gate out in the water." + }, { + U: [{next: "soTired", text: null}], + nodeName: "ohThatOldThing", + V: "questWaterGate", + tags: {W: ["sister3Neutral"]}, + text: "You woke me to talk about that old thing?? Please leave me be, I just want to sleep." + }, { + U: [{next: "ranTooMuch", text: null}], + nodeName: "soTired", + V: "questWaterGate", + tags: {W: ["luckyNeutral"]}, + text: "Sleep in the middle of a festival? Don't you want to join in the fun?" + }, { + U: [{next: "reallyFast", text: null}], + nodeName: "ranTooMuch", + V: "questWaterGate", + tags: {W: ["sister3Neutral"]}, + text: "Oh I had plenty of fun back in my day. I ran so much I used up all my energy. Just the thought of standing is enough to make me drowsy." + }, { + U: [{next: "iwasthefast", text: null}], + nodeName: "reallyFast", + V: "questWaterGate", + tags: {W: ["luckyNeutral"]}, + text: "Wow, you must have been really fast to make tired all these years later." + }, { + U: [{next: "ibelieve", text: "I believe you!"}, {next: "iheard", text: "I heard..."}], + nodeName: "iwasthefast", + V: "questWaterGate", + tags: {W: ["sister3Neutral"]}, + text: "I was the FASTEST! And don't let my sisters tell you otherwise." + }, { + U: [{next: "yougotthatright", text: null}], + nodeName: "ibelieve", + V: "questWaterGate", + tags: {W: ["luckyNeutral"]}, + text: "I believe you, you must have been incredible!" + }, { + U: [{next: "bigzs", text: null}], + nodeName: "yougotthatright", + V: "questWaterGate", + tags: {W: ["sister3Neutral"]}, + text: "You got that right. And I've earned...zzz...a little....zzz....nap..." + }, { + U: [], nodeName: "bigzs", V: "questWaterGate", tags: {W: ["sister3Neutral"]}, + text: "Zzzzzzzzz..." + }, { + U: [{next: "whosaidwhat", text: null}], + nodeName: "iheard", + V: "questWaterGate", + tags: {W: ["luckyNeutral"]}, + text: "Oh, that's not what I heard..." + }, { + U: [{next: "lostit", text: "Lost it"}, {next: "cheater", text: "Cheater"}, { + next: "respect", + text: "Respect you" + }], + nodeName: "whosaidwhat", + V: "questWaterGate", + tags: {W: ["sister3Neutral"]}, + text: "What! What have my sisters been saying about me??" + }, { + U: [{next: "somadicould", text: null}], + nodeName: "lostit", + V: "questWaterGate", + tags: {W: ["luckyNeutral"]}, + text: "They said you've lost it, you're all washed up." + }, + { + U: [{next: "bigzs", text: null}], + nodeName: "somadicould", + V: "questWaterGate", + tags: {W: ["sister3Neutral"]}, + text: "WHAT? Why those two...they make me so angry I could just....just..." + }, { + U: [{next: "illshowthem", text: null}], + nodeName: "cheater", + V: "questWaterGate", + tags: {W: ["luckyNeutral"]}, + text: "They said you were cheating the whole time." + }, { + U: [{next: "bigzs", text: null}], + nodeName: "illshowthem", + V: "questWaterGate", + tags: {W: ["sister3Neutral"]}, + text: "CHEATING?? Why I'll show them...what...cheating...zz...is..." + }, { + U: [{ + next: "theysaidwha", + text: null + }], + nodeName: "respect", + V: "questWaterGate", + tags: {W: ["luckyNeutral"]}, + text: "They both said they love and respect you." + }, { + U: [{next: "sonice", text: null}], + nodeName: "theysaidwha", + V: "questWaterGate", + tags: {W: ["sister3Neutral"]}, + text: "THEY SAID WHA-" + }, { + U: [{next: "alltheseyears", text: null}], + nodeName: "sonice", + V: "questWaterGate", + tags: {W: ["sister3Neutral"]}, + text: "Wait...really? That's...that's so nice of them." + }, { + U: [{next: "umthewatergate", text: null}], + nodeName: "alltheseyears", + V: "questWaterGate", + tags: {W: ["sister3Neutral"]}, + text: "After all these years, they must have changed. I must see them! Where did you say they are?" + }, { + U: [{next: "reunion", text: null}], + nodeName: "umthewatergate", + V: "questWaterGate", + tags: {W: ["luckyNeutral"]}, + text: "At the sunken water gate!" + }, { + U: [], + nodeName: "reunion", + V: "questWaterGate", + tags: {W: ["sister3Neutral"], zd: ["WATER_GATE", "found"]}, + text: "Oh, the perfect spot for a reunion. Thank you sweet child." + }], [{ + U: [{next: "trophyHint", text: null}], + nodeName: "activeTrophy", + V: "questWaterGate", + tags: {W: ["trophyMasterNeutral"]}, + text: "Looks like you're in the middle of helping out with this one." + }, { + U: [], + nodeName: "trophyHint", + V: "questWaterGate", + tags: {W: ["trophyMasterNeutral"]}, + text: "Find the three sister who built the sunken red gate and convince them to return home!" + }], [{ + U: [], + nodeName: "complete", + V: "questWaterGate", + tags: {W: ["gatekeeperNeutral"]}, + text: "The gate is so beautiful, I wonder where it leads..." + }], [{ + U: [], + nodeName: "completeSister1", + V: "questWaterGate", + tags: {W: ["sister1Neutral"]}, + text: "It's good to be home." + }], [{ + U: [], + nodeName: "completeSister2", V: "questWaterGate", tags: {W: ["sister2Neutral"]}, text: "Wait...where's the money?" + }], [{ + U: [{next: "zzzsagain", text: null}], + nodeName: "completeSister3", + V: "questWaterGate", + tags: {W: ["sister3Neutral"]}, + text: "My sisters! How I missed them! I'm so happy I could...could..." + }, { + U: [], + nodeName: "zzzsagain", + V: "questWaterGate", + tags: {W: ["sister3Neutral"]}, + text: "Zzzzzzzzz..." + }], [{ + U: [{next: "StillWatching", text: null}], + nodeName: "completeTrophy", + V: "questWaterGate", + tags: {W: ["luckyNeutral"]}, + text: '"Sister Reunion Organizer"' + }, + { + U: [], + nodeName: "StillWatching", + V: "questWaterGate", + tags: {W: ["trophyMasterNeutral"]}, + text: "I saw the whole thing, you were magnificent. Hee hee." + }], [{ + U: [{next: "lookatthegate", text: null}], + nodeName: "found", + V: "questWaterGate", + tags: {W: ["gatekeeperNeutral"]}, + text: "Incredible, all three sisters have returned!" + }, { + U: [], + nodeName: "lookatthegate", + V: "questWaterGate", + tags: {W: ["gatekeeperNeutral"], zd: ["WATER_GATE", "complete"]}, + text: "The Gate! Look, it's moving!" + }], [{ + U: [{next: "lastHint", text: null}], nodeName: "foundTrophy", + V: "questWaterGate", tags: {W: ["trophyMasterNeutral"]}, text: "You've almost got this one finished!" + }, { + U: [], + nodeName: "lastHint", + V: "questWaterGate", + tags: {W: ["trophyMasterNeutral"]}, + text: "Return to the sunken red gate to see if the three sisters can make it rise!." + }], [{ + U: [{next: "sameday", text: null}], + nodeName: "inactive", + V: "questWaterGate", + tags: {W: ["gatekeeperNeutral"]}, + text: "Long ago there was once a beautiful red gate out in the water, but one day it sunk into the water..." + }, { + U: [{next: "threeSisters", text: null}], + nodeName: "sameday", + V: "questWaterGate", + tags: {W: ["luckyCurious"]}, + text: "Oh my! Does anyone know what happened to it?" + }, { + U: [{next: "leftGarden", text: null}], + nodeName: "threeSisters", + V: "questWaterGate", + tags: {W: ["gatekeeperNeutral"]}, + text: "The gate was built by three sisters, each one a great athlete." + }, { + U: [{next: "afterThat", text: null}], + nodeName: "leftGarden", + V: "questWaterGate", + tags: {W: ["gatekeeperNeutral"]}, + text: "But as time went on, they won games less and less. Eventually they all stopped playing sports completely." + }, + { + U: [{next: "stillLive", text: null}], + nodeName: "afterThat", + V: "questWaterGate", + tags: {W: ["gatekeeperNeutral"]}, + text: "Not long after that the sisters all moved away and the gate disappeared." + }, { + U: [{next: "returnGate", text: null}], + nodeName: "stillLive", + V: "questWaterGate", + tags: {W: ["gatekeeperNeutral"]}, + text: "Each still lives on the island, although they are now quite old. The gate disappeared not long after they left." + }, { + U: [{next: "hadntThought", text: null}], nodeName: "returnGate", V: "questWaterGate", tags: {W: ["luckyWorried"]}, + text: "Maybe if the sisters return, the gate would appear again!" + }, { + U: [{next: "doYouDare", text: null}], + nodeName: "hadntThought", + V: "questWaterGate", + tags: {W: ["gatekeeperNeutral"]}, + text: "I think you're right. Many have tried, but they always refuse. They've become quite stubborn I'm afraid." + }, { + U: [{next: "yes", text: "Yes"}, {next: "no", text: "No"}], + nodeName: "doYouDare", + V: "questWaterGate", + tags: {W: ["gatekeeperNeutral"]}, + text: "Would you be willing to try to convince them?" + }, { + U: [{next: "soBrave", text: null}], nodeName: "yes", + V: "questWaterGate", tags: {W: ["luckyNeutral"]}, text: "Of course, I'll do anything I can!" + }, { + U: [{next: "firstSister", text: null}], + nodeName: "soBrave", + V: "questWaterGate", + tags: {W: ["gatekeeperNeutral"]}, + text: "Oh, you are so eager! Maybe your optimistic spirit is just what they need to hear." + }, { + U: [], + nodeName: "firstSister", + V: "questWaterGate", + tags: {W: ["gatekeeperNeutral"], zd: ["WATER_GATE", "sister1"]}, + text: "The first sister lives in a small hut out on Marathon Beach in the South East. Start there!" + }, { + U: [{ + next: "changeMind", + text: null + }], nodeName: "no", V: "questWaterGate", tags: {W: ["luckyWorried"]}, text: "Hmm, I don't know if I can help." + }, { + U: [], + nodeName: "changeMind", + V: "questWaterGate", + tags: {W: ["gatekeeperNeutral"]}, + text: "Definitely not with that attitude! Come back when you feel more confident." + }], [{ + U: [], + nodeName: "inactiveSister1", + V: "questWaterGate", + tags: {W: ["sister1Neutral"]}, + text: "Leave me alone...I can't stand all this competition." + }], [{ + U: [], + nodeName: "inactiveSister2", + V: "questWaterGate", + tags: {W: ["sister2Neutral"]}, + text: "So nice to be up here away from it all..." + }], + [{ + U: [], + nodeName: "inactiveSister3", + V: "questWaterGate", + tags: {W: ["sister3Neutral"]}, + text: "Zzz..." + }], [{ + U: [{next: "questDescription", text: null}], + nodeName: "inactiveTrophy", + V: "questWaterGate", + tags: {W: ["trophyMasterNeutral"]}, + text: "Oh, I'm saving that spot." + }, { + U: [{next: "IllBeWatching", text: null}], + nodeName: "questDescription", + V: "questWaterGate", + tags: {W: ["trophyMasterNeutral"]}, + text: "There's a sunken red gate in the Bridge Garden in the West. I wonder if it could rise again..." + }, { + U: [], + nodeName: "IllBeWatching", + V: "questWaterGate", + tags: {W: ["trophyMasterNeutral"]}, + text: "I'll be watching to see when the task is resolved. Hee hee hee." + }], [{ + U: [{next: "findfirstSister", text: null}], + nodeName: "sister1Gatekeeper", + V: "questWaterGate", + tags: {W: ["gatekeeperNeutral"]}, + text: "Find the three sisters and the gate will rise again!" + }, { + U: [], + nodeName: "findfirstSister", + V: "questWaterGate", + tags: {W: ["gatekeeperNeutral"]}, + text: "The first sister lives in a small hut out on Marathon Beach in the South East. Start there!" + }], [{ + U: [{ + next: "findsecondSister", + text: null + }], + nodeName: "sister2Gatekeeper", + V: "questWaterGate", + tags: {W: ["gatekeeperNeutral"]}, + text: "Find the three sisters and the gate will rise again!" + }, { + U: [], + nodeName: "findsecondSister", + V: "questWaterGate", + tags: {W: ["gatekeeperNeutral"]}, + text: "The second sister was last seen on top of Climbing Mountain!" + }], [{ + U: [{next: "findthirdSister", text: null}], + nodeName: "sister3Gatekeeper", + V: "questWaterGate", + tags: {W: ["gatekeeperNeutral"]}, + text: "Find the three sisters and the gate will rise again!" + }, { + U: [], + nodeName: "findthirdSister", + V: "questWaterGate", + tags: {W: ["gatekeeperNeutral"]}, + text: "The third sister moved to Tanooki City in the South West!" + }], [{U: [], nodeName: "redBook", V: "redBook", tags: {}, text: "THE RED TEAM: Researching Victory"}], [{ + U: [], + nodeName: "archery", + V: "sign", + tags: {}, + text: "\u2191 Archery" + }], [{U: [], nodeName: "climbing", V: "sign", tags: {}, text: "\u2191 Climbing"}], [{ + U: [], + nodeName: "marathon", + V: "sign", + tags: {}, + text: "\u2193 Marathon" + }], [{U: [], nodeName: "pingpong", V: "sign", tags: {}, text: "\u2192 Table Tennis"}], [{ + U: [], nodeName: "rugby", + V: "sign", tags: {}, text: "\u2192 Rugby" + }], [{U: [], nodeName: "skate", V: "sign", tags: {}, text: "\u2190 Skateboarding"}], [{ + U: [], + nodeName: "swim", + V: "sign", + tags: {}, + text: "\u2190 Synchronized Swimming" + }], [{ + U: [], + nodeName: "archery", + V: "statue", + tags: {W: ["statueArchery"]}, + text: "'Yoichi: Grand Champion of Archery'" + }], [{ + U: [], + nodeName: "climbing", + V: "statue", + tags: {W: ["statueClimbing"]}, + text: "'Fukuro: Grand Champion of Climbing'" + }], [{ + U: [], + nodeName: "marathon", + V: "statue", + tags: {W: ["statueMarathon"]}, + text: "'Kijimuna: Grand Champion of Marathon'" + }], + [{ + U: [], + nodeName: "rugby", + V: "statue", + tags: {W: ["statueRugby"]}, + text: "'Red & Blue Oni: Grand Champions of Rugby'" + }], [{ + U: [], + nodeName: "skate", + V: "statue", + tags: {W: ["statueSkate"]}, + text: "'Tanooki: Grand Champion of Skateboarding'" + }], [{ + U: [], + nodeName: "swim", + V: "statue", + tags: {W: ["statueSwim"]}, + text: "'Otohime: Grand Champion of Synchronized Swimming'" + }], [{ + U: [], + nodeName: "tabletennisstatue", + V: "statue", + tags: {W: ["statueTableTennis"]}, + text: "'Tengu: Grand Champion of Table Tennis'" + }], [{ + U: [{next: "playagain", text: null}], + nodeName: "beaten", + V: "tanooki", + tags: {W: ["tanookiNeutral"]}, + text: "Wow, you're even better at skateboarding than me!" + }, { + U: [], + nodeName: "playagain", + V: "tanooki", + tags: {W: ["tanookiNeutral"]}, + text: "Meet me at the gate if you want to skate together again!" + }], [{ + U: [], + nodeName: "unbeaten", + V: "tanooki", + tags: {W: ["tanookiNeutral"]}, + text: "Think you can catch me? Meet me at the red gate and let's skate together!" + }], [{ + U: [{next: "lonely", text: null}], + nodeName: "goBoard", + V: "teahouse", + tags: {W: ["luckyNeutral"]}, + text: "This game looks fun." + }, + { + U: [], + nodeName: "lonely", + V: "teahouse", + tags: {W: ["luckyWorried"]}, + text: "Too bad there's no one to play with..." + }], [{ + U: [], + nodeName: "teaSet", + V: "teahouse", + tags: {W: ["luckyNeutral"]}, + text: "Mmm! This tea smells delicious!" + }], [{ + U: [{next: "braveEnough", text: null}], + nodeName: "tengu", + V: "tengu", + tags: {W: ["tenguNeutral"]}, + text: "None can defeat me at Table Tennis!" + }, { + U: [], + nodeName: "braveEnough", + V: "tengu", + tags: {W: ["tenguNeutral"]}, + text: "Are YOU brave enough to face me?" + }], [{ + U: [], nodeName: "tenguAsleep", V: "tengu", tags: {W: ["tenguNeutral"]}, + text: "zzz...it's your serve...zzz..." + }], [{ + U: [], + nodeName: "tenguDefeated", + V: "tengu", + tags: {W: ["tenguNeutral"]}, + text: "I underestimated you...maybe you really are The Chosen One." + }], [{ + U: [], + nodeName: "allergic", + V: "townspeople", + tags: {W: ["deerNeutral"]}, + text: "Go away! I'm allergic to cats." + }], [{ + U: [], + nodeName: "snowballs", + V: "townspeople", + tags: {W: ["grandpaNeutral"]}, + text: "Watch out for snowballs up here!" + }], [{ + U: [], + nodeName: "arcade", + V: "townspeople", + tags: {W: ["dangoKidNeutral"]}, + text: "Play sports? I'd rather go to the arcade..." + }], + [{ + U: [], + nodeName: "arcadeOwner", + V: "townspeople", + tags: {W: ["batNeutral"]}, + text: "Not many people come to the arcade during the Champion Island Games..." + }], [{ + U: [], + nodeName: "bat1", + V: "townspeople", + tags: {W: ["batNeutral"]}, + text: "Be careful, it's easy to get lost in these caves." + }], [{ + U: [{next: "oldturtle", text: null}], + nodeName: "bat2", + V: "townspeople", + tags: {W: ["batNeutral"]}, + text: "Wow, I haven't seen anyone from outside come through here in a long time." + }, { + U: [], nodeName: "oldturtle", V: "townspeople", tags: {W: ["batNeutral"]}, + text: "Except that old turtle who was trying to get to the top..." + }], [{ + U: [], + nodeName: "blueOni1", + V: "townspeople", + tags: {W: ["blueOniNeutral"]}, + text: "He better stay on his side of the room..." + }], [{ + U: [], + nodeName: "blueOni2", + V: "townspeople", + tags: {W: ["blueOniNeutral"]}, + text: "Little Cat wants to play rugby? Hahaha!" + }], [{ + U: [], + nodeName: "blueOni3", + V: "townspeople", + tags: {W: ["blueOniNeutral"]}, + text: "Blue Oni and Red Oni don't agree on much...except Rugby!!" + }], [{ + U: [], nodeName: "cold", V: "townspeople", tags: {W: ["deerNeutral"]}, + text: "I love climbing, but the mountain is too cold with all that snow!" + }], [{ + U: [{next: "betterplay", text: null}], + nodeName: "dangoKid", + V: "townspeople", + tags: {W: ["dangoKidNeutral"]}, + text: "I love the Champion Games because we get dango!" + }, { + U: [], + nodeName: "betterplay", + V: "townspeople", + tags: {W: ["dangoKidNeutral"]}, + text: "The better you play, the more dango you get. So delicous!" + }], [{ + U: [], + nodeName: "darkWolfieBlueTeam", + V: "townspeople", + tags: {W: ["darkWolfieNeutral"]}, + text: "Team Blue's Headquarters is somehwere in town...but only memebers are allowed inside." + }], + [{ + U: [], + nodeName: "deerAnimals", + V: "townspeople", + tags: {W: ["deerNeutral"]}, + text: "All animals are welcome at the Champion Island Games!" + }], [{ + U: [], + nodeName: "deerSkate1", + V: "townspeople", + tags: {W: ["deerNeutral"]}, + text: "Have you found the Tanooki while skateboarding yet? He likes to hide in a tea kettle." + }], [{ + U: [], + nodeName: "eggs", + V: "townspeople", + tags: {W: [""]}, + text: "Do kijimuna hatch from eggs?" + }], [{ + U: [{next: "whatsft", text: null}], + nodeName: "fastTravel", + V: "townspeople", + tags: {W: ["wolfieNeutral"]}, + text: "Have you tried warping around the world yet?" + }, + { + U: [], + nodeName: "whatsft", + V: "townspeople", + tags: {W: ["wolfieNeutral"]}, + text: "You can do it by clicking the sport icons on the main menu. It's much faster than walking!" + }], [{ + U: [], + nodeName: "fish1SyncSwim1", + V: "townspeople", + tags: {W: ["fish1Neutral"]}, + text: "I hope they play my favorite song tonight." + }], [{ + U: [], + nodeName: "fish1SyncSwim2", + V: "townspeople", + tags: {W: ["fish1Neutral"]}, + text: "No one can dance like Otohime." + }], [{ + U: [], + nodeName: "fish2SyncSwim1", + V: "townspeople", + tags: {W: ["fish2Neutral"]}, + text: "What is that strange human doing down here?" + }], + [{ + U: [], + nodeName: "fish2SyncSwim2", + V: "townspeople", + tags: {W: ["fish2Neutral"]}, + text: "Welcome to the Synchronized Swimming Dojo. The show is about to begin!" + }], [{ + U: [], + nodeName: "froggy", + V: "townspeople", + tags: {W: ["froggyNeutral"]}, + text: "The water is so clear here, you can see all the way to the bottom." + }], [{ + U: [], + nodeName: "fukuro", + V: "townspeople", + tags: {W: ["darkWolfieNeutral"]}, + text: "Fukuro will only return to the Climbing Dojo once someone else reaches the top of the mountain." + }], [{ + U: [], nodeName: "hareArchery", + V: "townspeople", tags: {W: ["hareNeutral"]}, text: "Welcome to the Archery Dojo!" + }], [{ + U: [], + nodeName: "looking", + V: "townspeople", + tags: {W: ["grandpaNeutral"]}, + text: "What're you looking at?" + }], [{ + U: [{next: "read", text: null}], + nodeName: "novaBookeeper", + V: "townspeople", + tags: {W: ["novaNeutral"]}, + text: "Welcome to the bookstore!" + }, { + U: [{next: "orelse", text: null}], + nodeName: "read", + V: "townspeople", + tags: {W: ["novaNeutral"]}, + text: "Read anything you like, but please don't take anything with you." + }, { + U: [], nodeName: "orelse", V: "townspeople", + tags: {W: ["novaNeutral"]}, text: "(or else...)" + }], [{ + U: [], + nodeName: "pango", + V: "townspeople", + tags: {W: ["pangoNeutral"]}, + text: "Oh. Don't mind me. I'm just waiting here for someone special." + }], [{ + U: [], + nodeName: "redOni1", + V: "townspeople", + tags: {W: ["redOniNeutral"]}, + text: "He better stay on his side of the room..." + }], [{ + U: [{next: "whyplaynotrg", text: null}], + nodeName: "redOni2", + V: "townspeople", + tags: {W: ["redOniNeutral"]}, + text: "I can see the whole island from this spot..." + }, { + U: [], nodeName: "whyplaynotrg", V: "townspeople", + tags: {W: ["redOniNeutral"]}, text: "But I'd rather be playing Rugby!!" + }], [{ + U: [{next: "whynotrug", text: null}], + nodeName: "redOni3", + V: "townspeople", + tags: {W: ["redOniNeutral"]}, + text: "I've heard there are seven sport on the island..." + }, { + U: [], + nodeName: "whynotrug", + V: "townspeople", + tags: {W: ["redOniNeutral"]}, + text: "But why would you want to play anything but Rugby??" + }], [{ + U: [], + nodeName: "rent", + V: "townspeople", + tags: {W: ["novaNeutral"]}, + text: "My roommates and I rent out our place during the Champion Island Games. It's an easy way to make some cash!" + }], + [{ + U: [{next: "moremore", text: null}], + nodeName: "scroll", + V: "townspeople", + tags: {W: ["hareNeutral"]}, + text: "If you defeat a Champion, you'll be rewarded with a sacred scroll." + }, { + U: [], + nodeName: "moremore", + V: "townspeople", + tags: {W: ["hareNeutral"]}, + text: "Not only that, but you'll get a statue of yourself in the main plaza. What an honor." + }], [{ + U: [], + nodeName: "seahorseSyncSwim1", + V: "townspeople", + tags: {W: ["seahorseNeutral"]}, + text: "I think I feel a draft coming from this door..." + }], [{ + U: [], + nodeName: "seahorseSyncSwim2", + V: "townspeople", + tags: {W: ["seahorseNeutral"]}, + text: "Combos are the secret to getting a high score in Synchronized Swimming." + }], [{ + U: [], + nodeName: "shiba", + V: "townspeople", + tags: {W: ["shibaNeutral"]}, + text: "I've been training all year, I know this time I'll win a scroll!" + }], [{ + U: [], + nodeName: "shibaArchery", + V: "townspeople", + tags: {W: ["shibaNeutral"]}, + text: "Yoichi's aim is too good, I can't keep up!" + }], [{ + U: [], + nodeName: "shibaSkate1", + V: "townspeople", + tags: {W: ["shibaNeutral"]}, + text: "Welcome to the Skateboarding Dojo!" + }], + [{ + U: [], + nodeName: "shibaSkate2", + V: "townspeople", + tags: {W: ["shibaNeutral"]}, + text: "Grinding on rails is a good way to earn easy points!" + }], [{ + U: [], + nodeName: "snowOwl1", + V: "townspeople", + tags: {W: ["snowOwlNeutral"]}, + text: "Welcome to the Climbing Dojo!" + }], [{ + U: [], + nodeName: "snowOwl2", + V: "townspeople", + tags: {W: ["snowOwlNeutral"]}, + text: "I like being inside, I don't have to worry about falling snowballs." + }], [{ + U: [], + nodeName: "snowOwl3", + V: "townspeople", + tags: {W: ["snowOwlNeutral"]}, + text: "One day I'll fly as high as Fukuro." + }], + [{ + U: [], + nodeName: "snowOwl4", + V: "townspeople", + tags: {W: ["snowOwlNeutral"]}, + text: "I miss Fukuro, will he ever come back to the dojo?" + }], [{ + U: [], + nodeName: "snowOwl5", + V: "townspeople", + tags: {W: ["snowOwlNeutral"]}, + text: "The lanterns on the mountain serve as check points in case you slip and fall!" + }], [{ + U: [], + nodeName: "snowOwl6", + V: "townspeople", + tags: {W: ["snowOwlNeutral"]}, + text: "No one will ever climb as high as Fukuro!" + }], [{ + U: [], + nodeName: "snowOwl7", + V: "townspeople", + tags: {W: ["snowOwlNeutral"]}, + text: "I'm scared of heights..." + }], + [{ + U: [{next: "sorrybut", text: null}], + nodeName: "snowOwlLeader", + V: "townspeople", + tags: {W: ["snowOwlNeutral"]}, + text: "Looking for Climbing Champion Fukuro?" + }, { + U: [{next: "perchoutside", text: null}], + nodeName: "sorrybut", + V: "townspeople", + tags: {W: ["snowOwlNeutral"]}, + text: "Sorry but he's still on top of the mountain." + }, { + U: [], + nodeName: "perchoutside", + V: "townspeople", + tags: {W: ["snowOwlNeutral"]}, + text: "If anyone ever reaches him, there's a perch on top of the dojo waiting for him." + }], [{ + U: [], nodeName: "strayArrows", V: "townspeople", + tags: {W: ["grandpaNeutral"]}, text: "I don't go to the docks anymore. I keep stepping on stray arrows." + }], [{ + U: [], + nodeName: "travel", + V: "townspeople", + tags: {W: ["fish1Neutral"]}, + text: "Animals travel from all over the world to challenge the Champions." + }], [{ + U: [], + nodeName: "whiteOniRugby1", + V: "townspeople", + tags: {W: ["whiteOniNeutral"]}, + text: "Welcome to the Rugby Dojo! Rawr!" + }], [{ + U: [], + nodeName: "whiteOniRugby2", + V: "townspeople", + tags: {W: ["whiteOniNeutral"]}, + text: "One day I'll be big enough to play rugby too!" + }], [{ + U: [], + nodeName: "whiteOniRugby3", + V: "townspeople", + tags: {W: ["whiteOniNeutral"]}, + text: "Powerups can help even tiny players do well in Rugby." + }], [{ + U: [], + nodeName: "wolfieArchery", + V: "townspeople", + tags: {W: ["wolfieNeutral"]}, + text: "Hitting more than one target with the same arrow gets you more points!" + }], [{ + U: [], + nodeName: "wolfieLanterns", + V: "townspeople", + tags: {W: ["wolfieNeutral"]}, + text: "During the Champion Island Games, the lanterns in town change color to match the winning team!" + }], [{ + U: [], nodeName: "treeFriend", V: "treeFriend", + tags: {W: ["kijimunaNeutral"]}, text: "They say The Chosen One can hear the banyan tree speak..." + }], [{ + U: [{next: "everyFourYears", text: null}], + nodeName: "start", + V: "tutorial", + tags: {W: ["koma1Neutral"]}, + text: "Welcome to Champion Island!" + }, { + U: [{next: "whatItTakes", text: null}], + nodeName: "everyFourYears", + V: "tutorial", + tags: {W: ["koma2Neutral"]}, + text: "Every four years the strongest athletes in the world gather here to compete." + }, { + U: [], nodeName: "whatItTakes", V: "tutorial", tags: { + W: ["koma1Neutral"], zd: ["TUTORIAL_BEGIN", + ! 0] + }, text: "Step forward to the Red Gate and we will test your skills!" + }], [{ + U: [{next: "chosenOne", text: null}], + nodeName: "tutorialPartTwo", + V: "tutorial", + tags: {W: ["koma1Neutral"]}, + text: "You're much stronger than you look..." + }, { + U: [{next: "SevenChampions", text: null}], + nodeName: "chosenOne", + V: "tutorial", + tags: {W: ["koma2Neutral"]}, + text: "(Could it be...The Chosen One?)" + }, { + U: [{next: "defeat", text: null}], + nodeName: "SevenChampions", + V: "tutorial", + tags: {W: ["koma1Neutral"]}, + text: "Seven Sport Champions await on this island." + }, + { + U: [], + nodeName: "defeat", + V: "tutorial", + tags: {W: ["koma2Neutral"]}, + text: "Can you defeat them all and restore balance?" + }], [{ + U: [], + nodeName: "wall", + V: "tutorial", + tags: {}, + text: "You are blocked from exiting by a wall. You should go back for now." + }], [{ + U: [{next: "whathappend", text: "Why?"}, {next: "dontcare", text: "OK..."}], + nodeName: "abandonedTown", + V: "ushi", + tags: {W: ["ushiNeutral"]}, + text: "This town is completely abandoned..." + }, { + U: [{next: "tengu", text: "Tengu?"}, {next: "whatcity", text: "Tanooki City?"}], + nodeName: "whathappend", + V: "ushi", + tags: {W: ["ushiNeutral"]}, + text: "After the Tengu arrived the winds were too strong, everyone left for the Tanooki City." + }, { + U: [], + nodeName: "dontcare", + V: "ushi", + tags: {W: ["ushiNeutral"]}, + text: "I'd be careful if I were you." + }, { + U: [], + nodeName: "whatcity", + V: "ushi", + tags: {W: ["ushiNeutral"]}, + text: "Tanooki City is to the Southwest, a modern metropolis! I'm not cool enough for that place." + }, { + U: [], + nodeName: "tengu", + V: "ushi", + tags: {W: ["ushiNeutral"]}, + text: "Tengu are part human, part bird! Very powerful and mysterious creatures, they love Table Tennis." + }], + [{ + U: [], + nodeName: "diffteam", + V: "ushi", + tags: {W: ["ushiNeutral"]}, + text: "Who is this weakling that's not on Team Blue? I want nothing to do with you!" + }], [{ + U: [], + nodeName: "noOneStronger", + V: "ushi", + tags: {W: ["ushiNeutral"]}, + text: "No one is stronger than The Blue Team! NO ONE!!" + }], [{ + U: [], + nodeName: "notStrong", + V: "ushi", + tags: {W: ["ushiNeutral"]}, + text: "Every now and them I worry I'm not actually strong..." + }], [{ + U: [], + nodeName: "sameteam", + V: "ushi", + tags: {W: ["ushiNeutral"]}, + text: "Team Blue is lucky to have you, get out there and win!" + }], + [{ + U: [{next: "changingshape", text: null}], + nodeName: "tanookiCity", + V: "ushi", + tags: {W: ["ushiNeutral"]}, + text: "This way to Tanooki City, metropolis of Champion Island and home to our Skateboarding Champion!" + }, { + U: [{next: "tryskateboarding", text: null}], + nodeName: "changingshape", + V: "ushi", + tags: {W: ["ushiNeutral"]}, + text: "But good luck finding him. He's always changing shape and hiding around the city." + }, { + U: [], + nodeName: "tryskateboarding", + V: "ushi", + tags: {W: ["ushiNeutral"]}, + text: "If you try skateboarding, you might be good enough to catch him!" + }], + [{ + U: [{next: "joinBlue", text: "Join Blue!"}, {next: "noThanks", text: "Nah."}, {next: "tellMeMore", text: "Who?"}], + nodeName: "teamPickerBlue", + V: "ushi", + tags: {W: ["ushiNeutral"]}, + text: "HELLO! Are you strong enough to join Team Blue??" + }, { + U: [], + nodeName: "noThanks", + V: "ushi", + tags: {W: ["ushiNeutral"]}, + text: "Wow...you don't know what you're missing..." + }, { + U: [{next: "joinBlue", text: "I'll Join!"}, {next: "noThanks", text: "No thanks."}], + nodeName: "tellMeMore", + V: "ushi", + tags: {W: ["ushiNeutral"]}, + text: "I'm an Ushi, strong bull mascot of the Team Blue. Hard work is the only path to victory, can you keep up?" + }, + { + U: [{next: "followPath", text: null}], + nodeName: "joinBlue", + V: "ushi", + tags: {W: ["ushiNeutral"], zd: ["PLAYER_TEAM", "blue"]}, + text: "WELL DONE! Welcome to Team Blue. Your first assignment: find and defeat a Legendary Champion!" + }, { + U: [{next: "mapShow", text: null}], + nodeName: "followPath", + V: "ushi", + tags: {W: ["ushiNeutral"]}, + text: "Follow the paths to find the Champions and play the sports." + }, { + U: [{next: "soMuscles", text: null}], + nodeName: "mapShow", + V: "ushi", + tags: {W: ["map"]}, + text: "Or press ESC to use the map!" + }, { + U: [], nodeName: "soMuscles", + V: "ushi", tags: {W: ["ushiNeutral"]}, text: "May the muscles be with you." + }], [{ + U: [{next: "recruit", text: null}], + nodeName: "ushi1", + V: "ushi1", + tags: {W: ["ushiNeutral"]}, + text: "WELL WELL! A new recruit!" + }, { + U: [{next: "tiny", text: null}], + nodeName: "recruit", + V: "ushi1", + tags: {W: ["ushiNeutral"]}, + text: "The BLUE TEAM is the strongest of them all! Those other teams don't stand a chance against our incredible muscles." + }, { + U: [], + nodeName: "join", + V: "ushi1", + tags: {W: ["ushiNeutral"], zd: ["PLAYER_TEAM", "blue"]}, + text: "Welcome to the BLUE TEAM! Now get out there and start winning!" + }, + { + U: [], + nodeName: "nothanks", + V: "ushi1", + tags: {W: ["ushiNeutral"]}, + text: "Wow...you don't know what you're missing..." + }, { + U: [{next: "join", text: "Join."}, {next: "nothanks", text: "Yikes. No."}], + nodeName: "tellmemore", + V: "ushi1", + tags: {W: ["ushiNeutral"]}, + text: "I'm an Ushi, strong bull mascot of the Blue Team. Hard work is the only path to victory, can you keep up?" + }, { + U: [{next: "join", text: "Join Blue!"}, {next: "nothanks", text: "No thanks."}, { + next: "tellmemore", + text: "Who?" + }], nodeName: "tiny", V: "ushi1", tags: {W: ["ushiNeutral"]}, + text: "You might be tiny, but I sense great power in you. Will you join the BLUE TEAM?" + }], [{ + U: [], + nodeName: "yellowBook", + V: "yellowBook", + tags: {}, + text: "THE YELLOW TEAM: (content redacted)" + }], [{ + U: [], + nodeName: "beaten", + V: "yoichi", + tags: {W: ["yoichiNeutral"]}, + text: "Your archery skills impress even me! But if you ever want another game, you know where to find me." + }], [{ + U: [], + nodeName: "unbeaten", + V: "yoichi", + tags: {W: ["yoichiNeutral"]}, + text: "I'm always up for a game of Archery! Meet me outside at the red gate on the beach if you want to challenge me." + }]]; +createjs.Bitmap.prototype.initialize = function (b) { + if (b && "sprite" in b) { + var g = b.sprite; + this.image = b.sheet.xY[Rk(g)].ha; + this.sourceRect = new createjs.Rectangle(g[1], g[2], g[3], g[4]) + } else this.image = b, this.sourceRect = new createjs.Rectangle(0, 0, 10, 10) +}; +var Sk = {}; +var Tk = Sk; +(function (b, g) { + function m() { + var d = this._cloneProps(new this.constructor(this.mode, this.startPosition, this.loop)); + d.gotoAndStop(this.currentFrame); + d.paused = this.paused; + d.framerate = this.framerate; + return d + } + + function k(d, e, f) { + d = b.extend(d, b.MovieClip); + d.clone = m; + d.j = e; + d.frameBounds = f; + return d + } + + var c, a = {}, n = {}, h = {}; + a.uB = []; + (a.EK = function () { + this.initialize(h.ArrowArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 3, 5); + (a.fsa = function () { + this.initialize(h.ArrowCollectorNeutralArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 56, 68); + (a.Lsa = function () { + this.initialize(h.Baker_Portrait_001) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 48, 59); + (a.Msa = function () { + this.initialize(h.Baker_Retired_Portait_001) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 50, 66); + (a.m1 = function () { + this.initialize(h.BigCatNeutralArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 44); + (a.qua = function () { + this.initialize(h.Bitmap12311) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 12, 8); + (a.Uxa = function () { + this.initialize(h.BlueOniNeutralArt) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 46, 54); + (a.eBa = function () { + this.initialize(h.CoachNeutralArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 58, 52); + (a.CBa = function () { + this.initialize(h.ConviniNeutralArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 50, 63); + (a.qab = function () { + this.initialize(h.deer_portrait) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 62, 56); + (a.xCa = function () { + this.initialize(h.DialogueFillArt1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 228, 68); + (a.$ab = function () { + this.initialize(h.gatekeeper_portrait) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 48); + (a.D2 = function () { + this.initialize(h.InariNeutralArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 49, 52); + (a.aFa = function () { + this.initialize(h.InvisibleOctopusNeutral) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 51, 45); + (a.F2 = function () { + this.initialize(h.KappaNeutralArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 54, 44); + (a.G2 = function () { + this.initialize(h.KarasuNeutralArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 53, 49); + (a.ybb = + function () { + this.initialize(h.kijimunaNeutralArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 54, 49); + (a.I2 = function () { + this.initialize(h.Koma1NeutralArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 53, 47); + (a.K2 = function () { + this.initialize(h.Koma2NeutralArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 51, 49); + (a.WGa = function () { + this.initialize(h.LittleMonkeyNeutral) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 56, 50); + (a.Jbb = function () { + this.initialize(h.locksmith_portrait) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 49, 48); + (a.rHa = function () { + this.initialize(h.LuckyAnnoyedArt11) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 51); + (a.Mbb = function () { + this.initialize(h.luckyCuriousArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 50); + (a.HHa = function () { + this.initialize(h.LuckyGrinArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 51); + (a.WHa = function () { + this.initialize(h.LuckyHappyArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 51); + (a.ZHa = function () { + this.initialize(h.LuckyHideArt) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 44); + (a.IIa = function () { + this.initialize(h.LuckyNeutralArt11111) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 51); + (a.MIa = function () { + this.initialize(h.LuckyRawrArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 51); + (a.MJa = function () { + this.initialize(h.LuckyShockedArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 51); + (a.ALa = function () { + this.initialize(h.LuckySmileSweatArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 51); + (a.rOa = + function () { + this.initialize(h.LuckyWideEyedSweatArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 51); + (a.G3 = function () { + this.initialize(h.LuckyWorriedArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 51); + (a.Rbb = function () { + this.initialize(h.momoBlueArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 46); + (a.qPa = function () { + this.initialize(h.MomoNeutralArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 46); + (a.kQa = function () { + this.initialize(h.MonkeyNeutralArt) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 51, 51); + (a.pUa = function () { + this.initialize(h.NoodleCookArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 47, 48); + (a.gVa = function () { + this.initialize(h.OniBakerArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 50, 51); + (a.rVa = function () { + this.initialize(h.OniPortraitArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 49, 51); + (a.Xbb = function () { + this.initialize(h.otter_portrait) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 54); + (a.T4 = function () { + this.initialize(h.OverworldMenuButtonBrown) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 22, 22); + (a.aWa = function () { + this.initialize(h.OwlNeutralArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 61, 46); + (a.ccb = function () { + this.initialize(h.porcupine_portrait) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 71, 52); + (a.JXa = function () { + this.initialize(h.Portraitbirthdaykidhappy) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 55, 53); + (a.KXa = function () { + this.initialize(h.Portraitbirthdaykidsad) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 55, + 53); + (a.LXa = function () { + this.initialize(h.Portraitbirthdaymom) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 46, 44); + (a.rXa = function () { + this.initialize(h.PortraitBlackWolfie) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 46); + (a.MXa = function () { + this.initialize(h.Portraitblueleader) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 56, 50); + (a.sXa = function () { + this.initialize(h.PortraitCrab) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 56, 44); + (a.tXa = function () { + this.initialize(h.PortraitDustyScroll) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 44); + (a.uXa = function () { + this.initialize(h.PortraitFroggy) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 48, 44); + (a.NXa = function () { + this.initialize(h.Portraitgreenleader) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 56, 45); + (a.vXa = function () { + this.initialize(h.PortraitKijiDad1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 65, 49); + (a.wXa = function () { + this.initialize(h.PortraitKijiKid) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 65, 45); + (a.OXa = + function () { + this.initialize(h.Portraitkijimunastatue1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 65, 46); + (a.AXa = function () { + this.initialize(h.PortraitMomobird) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 51); + (a.BXa = function () { + this.initialize(h.PortraitMomodadneutral) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 50); + (a.yXa = function () { + this.initialize(h.PortraitMomoDog) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 51); + (a.CXa = function () { + this.initialize(h.PortraitMomomomneutral) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 44); + (a.zXa = function () { + this.initialize(h.PortraitMomoMonkey) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 46, 44); + (a.DXa = function () { + this.initialize(h.PortraitMomotaro) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 49, 49); + (a.EXa = function () { + this.initialize(h.PortraitOtohimeNeutral) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 52); + (a.PXa = function () { + this.initialize(h.Portraitotohimestatue) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, + 52); + (a.QXa = function () { + this.initialize(h.Portraitowlstatue) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 72, 46); + (a.FXa = function () { + this.initialize(h.PortraitRacerAmad) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 51, 53); + (a.GXa = function () { + this.initialize(h.PortraitRacerAneutral) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 51, 53); + (a.RXa = function () { + this.initialize(h.PortraitracerBmad) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 49, 50); + (a.SXa = function () { + this.initialize(h.PortraitracerBneutral) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 49, 50); + (a.TXa = function () { + this.initialize(h.Portraitredleader) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 47); + (a.UXa = function () { + this.initialize(h.Portraitrugbystatue) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 55, 53); + (a.HXa = function () { + this.initialize(h.PortraitSupermountaingirl) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 51, 48); + (a.VXa = function () { + this.initialize(h.Portraittanukistatue) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, + 0, 50, 44); + (a.WXa = function () { + this.initialize(h.Portraittengustatue) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 57, 47); + (a.IXa = function () { + this.initialize(h.PortraitWolfie) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 46, 47); + (a.XXa = function () { + this.initialize(h.Portraityoichistatue) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 54, 44); + (a.t_a = function () { + this.initialize(h.RainBoyNeutralArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 55); + (a.W_a = function () { + this.initialize(h.RedOniNeutralArt) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 49, 53); + (a.tcb = function () { + this.initialize(h.sister1_portrait) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 45, 48); + (a.ucb = function () { + this.initialize(h.sister2_portrait) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 49); + (a.xcb = function () { + this.initialize(h.sister3_portrait) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 50, 47); + (a.I2a = function () { + this.initialize(h.SleepyCatNeutral) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 46); + (a.G3a = + function () { + this.initialize(h.SnowOwlAvatarArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 44); + (a.O4a = function () { + this.initialize(h.TanookiNeutralArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 50, 44); + (a.x5a = function () { + this.initialize(h.TenguNeutralArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 57, 47); + (a.N5a = function () { + this.initialize(h.Town_people_bat_portrait) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 46, 54); + (a.Q5a = function () { + this.initialize(h.Town_people_fish_handicap_portrait) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 48, 46); + (a.R5a = function () { + this.initialize(h.Town_people_fish_portrait) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 50, 45); + (a.U5a = function () { + this.initialize(h.Town_people_grandpa_portrait) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 48, 57); + (a.X5a = function () { + this.initialize(h.Town_people_hare_portrait) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 47, 44); + (a.Y5a = function () { + this.initialize(h.Town_people_kid_portrait) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 54, 54); + (a.Z5a = function () { + this.initialize(h.Town_people_nova_portrait) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 52, 54); + (a.$5a = function () { + this.initialize(h.Town_people_pango_portrait) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 48, 44); + (a.c6a = function () { + this.initialize(h.Town_people_seahorse_portrait) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 50, 49); + (a.f6a = function () { + this.initialize(h.Town_people_shiba_portrait) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, + 0, 46, 47); + (a.y6a = function () { + this.initialize(h.TraineeNoodlesArt1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 58, 52); + (a.A6a = function () { + this.initialize(h.TraineeRunArt1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 62, 52); + (a.u6a = function () { + this.initialize(h.TrainWorkerArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 50, 50); + (a.v7a = function () { + this.initialize(h.TrophyMasterArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 49, 50); + (a.T8a = function () { + this.initialize(h.UrashimaANeutralrt1) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 52); + (a.Z8a = function () { + this.initialize(h.UrashimaMomNeutral) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 44, 48); + (a.d9a = function () { + this.initialize(h.UshiNeutralArt1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 54, 49); + (a.P9a = function () { + this.initialize(h.WhiteOniAvatarArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 52, 59); + (a.$cb = function () { + this.initialize(h.yellowleader) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 50, 57); + (a.g$a = function () { + this.initialize(h.YouichiNeutralArt) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 54, 44); + (a.k$a = function () { + this.initialize(h.YoungArcherNeutralArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 58, 48); + (a.tBa = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.qua; + this.instance.parent = this; + this.instance.setTransform(29.5, -12); + this.timeline.addTween(b.Tween.get(this.instance).wait(8).to({x: 30.5}, 0).wait(4).to({x: 34.5}, 0).wait(4).to({x: 35.5}, 0).wait(8).to({x: 34.5}, 0).wait(3).to({x: 30.5}, 0).wait(4)); + this.g = new a.T4; + this.g.parent = + this; + this.g.setTransform(3, -16); + this.timeline.addTween(b.Tween.get(this.g).wait(31)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(3, -16, 44.5, 22); + (a.Yda = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.xCa; + this.instance.parent = this; + this.instance.setTransform(0, 0, 1, .9999); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)) + }).prototype = k(a.Yda, new b.Rectangle(0, 0, 228, 68), null); + (a.nV = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("#ffffff").s().p("AlEBfIAAi9IKJAAIAAC9g"); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)) + }).prototype = k(a.nV, new b.Rectangle(-32.5, -9.5, 65, 19), null); + (a.lX = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.EK; + this.instance.parent = this; + this.instance.setTransform(-1.5, -2.5); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)) + }).prototype = k(a.lX, new b.Rectangle(-1.5, -2.5, 3, 5), null); + (a.ct = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = + new a.lX; + this.instance.parent = this; + this.instance.setTransform(-1.5, 0); + this.timeline.addTween(b.Tween.get(this.instance).wait(5).to({alpha: .5898}, 0).wait(5)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-3, -2.5, 3, 5); + (a.tCa = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {dialogOption: {}, button: {eventId: "option3"}, keyboardNav: {order: 4}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.ct; + this.instance.parent = + this; + this.instance.setTransform(-4, 0, 1, 1, 180, 0, 0, -1.5, 0); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).to({_off: ! 0}, 1).wait(1)); + this.hitArea = new a.nV; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(30, -2); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)); + this.text = new b.Text("option", "10px 'PixelMplus10'", "#e7dbac"); + this.text.name = "text"; + this.text.lineHeight = 11; + this.text.lineWidth = 210; + this.text.parent = this; + this.text.setTransform(1, -6.45); + this.timeline.addTween(b.Tween.get(this.text).wait(2).to({color: "#ffffff", lineWidth: 68}, 0).wait(1)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-5.5, -11.5, 218.5, 19); + (a.sCa = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {dialogOption: {}, button: {eventId: "option2"}, keyboardNav: {order: 3}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.ct; + this.instance.parent = + this; + this.instance.setTransform(-4, 0, 1, 1, 180, 0, 0, -1.5, 0); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).to({_off: ! 0}, 1).wait(1)); + this.hitArea = new a.nV; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(30, -2); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)); + this.text = new b.Text("option", "10px 'PixelMplus10'", "#e7dbac"); + this.text.name = "text"; + this.text.lineHeight = 11; + this.text.lineWidth = 210; + this.text.parent = this; + this.text.setTransform(1, -6.45); + this.timeline.addTween(b.Tween.get(this.text).wait(2).to({color: "#ffffff", lineWidth: 68}, 0).wait(1)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-5.5, -11.5, 218.3, 19); + (a.rCa = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {dialogOption: {}, button: {eventId: "option1"}, keyboardNav: {order: 2}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.ct; + this.instance.parent = + this; + this.instance.setTransform(-4, 0, 1, 1, 180, 0, 0, -1.5, 0); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).to({_off: ! 0}, 1).wait(1)); + this.hitArea = new a.nV; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(30, -2); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)); + this.text = new b.Text("option", "10px 'PixelMplus10'", "#e7dbac"); + this.text.name = "text"; + this.text.lineHeight = 11; + this.text.lineWidth = 210; + this.text.parent = this; + this.text.setTransform(1, -6.45); + this.timeline.addTween(b.Tween.get(this.text).wait(2).to({color: "#ffffff", lineWidth: 68}, 0).wait(1)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-5.5, -11.5, 218.5, 19); + (a.Zda = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {dialogNext: {}, button: {eventId: "next"}, keyboardNav: {order: 1}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.hitArea = new a.nV; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(6.5, + -3.85, 3.4125, 3.2164, 0, 0, 0, -.1, -.1); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(1)) + }).prototype = k(a.Zda, new b.Rectangle(-104, -34.1, 221.8, 61.1), null); + (a.b1 = function (d, e, f) { + this.initialize(d, e, f, { + koma1Neutral: 0, + koma2Neutral: 1, + inariNeutral: 2, + ushiNeutral: 3, + karasuNeutral: 4, + kappaNeutral: 5, + luckyNeutral: 6, + luckyWorried: 7, + luckyHappy: 8, + luckyBigGrin: 9, + luckyAnnoyed: 10, + luckyRawr: 11, + luckyCurious: 12, + luckyShocked: 13, + luckyHide: 14, + luckyWideEyeSweat: 15, + luckySmileSweatdrop: 16, + bigCatNeutral: 17, + statueMarathon: 18, + kijimunaNeutral: 19, + statueSwim: 20, + otohimeNeutral: 21, + statueClimbing: 22, + owlNeutral: 23, + statueRugby: 24, + statueSkate: 25, + tanookiNeutral: 26, + statueTableTennis: 27, + tenguNeutral: 28, + statueArchery: 29, + yoichiNeutral: 30, + monkey: 31, + littleMonkeyNeutral: 32, + trophyMasterNeutral: 33, + rainBoyNeutral: 34, + map: 35, + trainWorkerNeutral: 36, + noodleCookNeutral: 37, + invisibleOctopusNeutral: 38, + coachNeutral: 39, + traineeNoodle: 40, + traineeRun: 41, + conviniNeutral: 42, + UrashimaNeutral: 43, + TaroMomSad: 44, + arrowCollectorNeutral: 45, + sleepyCatNeutral: 46, + kijiDadNeutral: 47, + kijiKidNeutral: 48, + oniDreamer: 49, + oniBaker: 50, + monkeyBaker: 51, + monkeyRetired: 52, + sister1Neutral: 53, + sister2Neutral: 54, + sister3Neutral: 55, + gatekeeperNeutral: 56, + superMountainGirlNeutral: 57, + birthdayMomNeutral: 58, + birthdayKidSad: 59, + birthdayKidHappy: 60, + racerANeutral: 61, + racerAMad: 62, + racerBNeutral: 63, + racerBMad: 64, + crabNeutral: 65, + momoDadNeutral: 66, + momoMomNeutral: 67, + locksmithNeutral: 68, + porcupineNeutral: 69, + youngArcherNeutral: 70, + momoBirdNeutral: 71, + momotaroNeutral: 72, + momoDogNeutral: 73, + momoMonkeyNeutral: 74, + scrollNeutral: 75, + wolfieNeutral: 76, + darkWolfieNeutral: 77, + momoBlue: 78, + momoNeutral: 79, + novaNeutral: 80, + dangoKidNeutral: 81, + deerNeutral: 82, + grandpaNeutral: 83, + froggyNeutral: 84, + blueOniNeutral: 85, + redOniNeutral: 86, + shibaNeutral: 87, + hareNeutral: 88, + fish2Neutral: 89, + fish1Neutral: 90, + seahorseNeutral: 91, + batNeutral: 92, + pangoNeutral: 93, + otterNeutral: 94, + snowOwlNeutral: 95, + whiteOniNeutral: 96, + leaderGreenNeutral: 97, + leaderBlueNeutral: 98, + leaderYellowNeutral: 99, + leaderRedNeutral: 100 + }); + this.u = function () { + this.T = {dialogAvatar: {}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(101)); + this.instance = new a.I2; + this.instance.parent = this; + this.instance.setTransform(7, 7); + this.g = new a.K2; + this.g.parent = this; + this.g.setTransform(7, 4); + this.i = new a.D2; + this.i.parent = this; + this.i.setTransform(7, 4); + this.o = new a.d9a; + this.o.parent = this; + this.o.setTransform(4, 6); + this.H = new a.G2; + this.H.parent = this; + this.H.setTransform(5, 4); + this.O = new a.F2; + this.O.parent = this; + this.O.setTransform(4, 11); + this.$ = new a.IIa; + this.$.parent = this; + this.$.setTransform(11, + 3); + this.ka = new a.G3; + this.ka.parent = this; + this.ka.setTransform(11, 3); + this.ta = new a.WHa; + this.ta.parent = this; + this.ta.setTransform(11, 3); + this.va = new a.HHa; + this.va.parent = this; + this.va.setTransform(11, 3); + this.wa = new a.rHa; + this.wa.parent = this; + this.wa.setTransform(11, 3); + this.ya = new a.MIa; + this.ya.parent = this; + this.ya.setTransform(11, 3); + this.Aa = new a.Mbb; + this.Aa.parent = this; + this.Aa.setTransform(11, 4); + this.Ba = new a.MJa; + this.Ba.parent = this; + this.Ba.setTransform(11, 3.05); + this.Da = new a.ZHa; + this.Da.parent = this; + this.Da.setTransform(11, + 10); + this.Ea = new a.rOa; + this.Ea.parent = this; + this.Ea.setTransform(11, 3); + this.Ga = new a.ALa; + this.Ga.parent = this; + this.Ga.setTransform(11, 3); + this.Ha = new a.m1; + this.Ha.parent = this; + this.Ha.setTransform(11, 9.85); + this.Ia = new a.OXa; + this.Ia.parent = this; + this.Ia.setTransform(-2, 7); + this.Ja = new a.ybb; + this.Ja.parent = this; + this.Ja.setTransform(4, 5); + this.Ka = new a.PXa; + this.Ka.parent = this; + this.Ka.setTransform(11, 2); + this.La = new a.EXa; + this.La.parent = this; + this.La.setTransform(11, 2); + this.Ma = new a.QXa; + this.Ma.parent = this; + this.Ma.setTransform(-6, + 8); + this.Na = new a.aWa; + this.Na.parent = this; + this.Na.setTransform(-1.75, 8); + this.Oa = new a.UXa; + this.Oa.parent = this; + this.Oa.setTransform(2, 1); + this.Qa = new a.VXa; + this.Qa.parent = this; + this.Qa.setTransform(9, 10); + this.Ua = new a.O4a; + this.Ua.parent = this; + this.Ua.setTransform(9, 10); + this.Va = new a.WXa; + this.Va.parent = this; + this.Va.setTransform(2, 7); + this.Wa = new a.x5a; + this.Wa.parent = this; + this.Wa.setTransform(2, 7); + this.Xa = new a.XXa; + this.Xa.parent = this; + this.Xa.setTransform(1, 10); + this.Ya = new a.g$a; + this.Ya.parent = this; + this.Ya.setTransform(1, + 10); + this.Za = new a.kQa; + this.Za.parent = this; + this.Za.setTransform(7, 3); + this.$a = new a.WGa; + this.$a.parent = this; + this.$a.setTransform(2, 4); + this.ab = new a.v7a; + this.ab.parent = this; + this.ab.setTransform(8, 6); + this.hb = new a.t_a; + this.hb.parent = this; + this.hb.setTransform(11, 0); + this.mb = new a.tBa; + this.mb.parent = this; + this.mb.setTransform(12, 13, 1, 1, 0, 0, 0, 0, -11); + this.nb = new a.u6a; + this.nb.parent = this; + this.nb.setTransform(5, 5); + this.rb = new a.pUa; + this.rb.parent = this; + this.rb.setTransform(8, 7); + this.tb = new a.aFa; + this.tb.parent = + this; + this.tb.setTransform(8, 10); + this.ub = new a.eBa; + this.ub.parent = this; + this.ub.setTransform(1, 2); + this.wb = new a.y6a; + this.wb.parent = this; + this.wb.setTransform(0, 2); + this.yb = new a.A6a; + this.yb.parent = this; + this.yb.setTransform(-2, 2); + this.Ab = new a.CBa; + this.Ab.parent = this; + this.Ab.setTransform(7, -9); + this.Cb = new a.T8a; + this.Cb.parent = this; + this.Cb.setTransform(11, 2); + this.Db = new a.Z8a; + this.Db.parent = this; + this.Db.setTransform(11, 6); + this.Eb = new a.fsa; + this.Eb.parent = this; + this.Eb.setTransform(1, -14); + this.Fb = new a.I2a; + this.Fb.parent = this; + this.Fb.setTransform(11, 8); + this.Gb = new a.vXa; + this.Gb.parent = this; + this.Gb.setTransform(-2, 5); + this.Hb = new a.wXa; + this.Hb.parent = this; + this.Hb.setTransform(-2, 9); + this.Jb = new a.rVa; + this.Jb.parent = this; + this.Jb.setTransform(8, 3); + this.Lb = new a.gVa; + this.Lb.parent = this; + this.Lb.setTransform(7, 3); + this.Mb = new a.Lsa; + this.Mb.parent = this; + this.Mb.setTransform(7, 3); + this.Pb = new a.Msa; + this.Pb.parent = this; + this.Pb.setTransform(8, -1); + this.Nb = new a.tcb; + this.Nb.parent = this; + this.Nb.setTransform(11, 6); + this.Qb = + new a.ucb; + this.Qb.parent = this; + this.Qb.setTransform(11, 5); + this.Ob = new a.xcb; + this.Ob.parent = this; + this.Ob.setTransform(8, 7); + this.Rb = new a.$ab; + this.Rb.parent = this; + this.Rb.setTransform(11, 10); + this.Sb = new a.HXa; + this.Sb.parent = this; + this.Sb.setTransform(6, 6); + this.Tb = new a.LXa; + this.Tb.parent = this; + this.Tb.setTransform(10, 10); + this.Ub = new a.KXa; + this.Ub.parent = this; + this.Ub.setTransform(3, 1); + this.Zb = new a.JXa; + this.Zb.parent = this; + this.Zb.setTransform(3, 1); + this.Wb = new a.GXa; + this.Wb.parent = this; + this.Wb.setTransform(7, + -1); + this.Xb = new a.FXa; + this.Xb.parent = this; + this.Xb.setTransform(7, -1); + this.Yb = new a.SXa; + this.Yb.parent = this; + this.Yb.setTransform(8, 2); + this.$b = new a.RXa; + this.$b.parent = this; + this.$b.setTransform(8, 2); + this.ac = new a.sXa; + this.ac.parent = this; + this.ac.setTransform(2, 8); + this.bc = new a.BXa; + this.bc.parent = this; + this.bc.setTransform(11, 2); + this.hc = new a.CXa; + this.hc.parent = this; + this.hc.setTransform(11, 8); + this.jc = new a.Jbb; + this.jc.parent = this; + this.jc.setTransform(7.2, 3.65); + this.kc = new a.ccb; + this.kc.parent = this; + this.kc.setTransform(-9, + 2); + this.lc = new a.k$a; + this.lc.parent = this; + this.lc.setTransform(0, 4); + this.nc = new a.AXa; + this.nc.parent = this; + this.nc.setTransform(10, 1); + this.tc = new a.DXa; + this.tc.parent = this; + this.tc.setTransform(8, 3); + this.uc = new a.yXa; + this.uc.parent = this; + this.uc.setTransform(10, 1); + this.xc = new a.zXa; + this.xc.parent = this; + this.xc.setTransform(9, 8); + this.zc = new a.tXa; + this.zc.parent = this; + this.zc.setTransform(10, 8); + this.Ac = new a.IXa; + this.Ac.parent = this; + this.Ac.setTransform(10, 5); + this.Bc = new a.rXa; + this.Bc.parent = this; + this.Bc.setTransform(9, + 6); + this.yc = new a.Rbb; + this.yc.parent = this; + this.yc.setTransform(10, 6); + this.Dc = new a.qPa; + this.Dc.parent = this; + this.Dc.setTransform(10, 6); + this.Ec = new a.Z5a; + this.Ec.parent = this; + this.Ec.setTransform(6, 2); + this.Fc = new a.Y5a; + this.Fc.parent = this; + this.Fc.setTransform(6, 2); + this.Gc = new a.qab; + this.Gc.parent = this; + this.Gc.setTransform(-2.1, -3.75); + this.Jc = new a.U5a; + this.Jc.parent = this; + this.Jc.setTransform(10, -1); + this.Kc = new a.uXa; + this.Kc.parent = this; + this.Kc.setTransform(10, 9); + this.Lc = new a.Uxa; + this.Lc.parent = this; + this.Lc.setTransform(9.25, .5); + this.Ic = new a.W_a; + this.Ic.parent = this; + this.Ic.setTransform(5.5, .5); + this.Nc = new a.f6a; + this.Nc.parent = this; + this.Nc.setTransform(11, 7.25); + this.Oc = new a.X5a; + this.Oc.parent = this; + this.Oc.setTransform(11, 10); + this.Rc = new a.R5a; + this.Rc.parent = this; + this.Rc.setTransform(59, 9, 1, 1, 0, 0, 180); + this.Uc = new a.Q5a; + this.Uc.parent = this; + this.Uc.setTransform(10, 10); + this.Xc = new a.c6a; + this.Xc.parent = this; + this.Xc.setTransform(8, 3); + this.jd = new a.N5a; + this.jd.parent = this; + this.jd.setTransform(9, 1); + this.$c = new a.$5a; + this.$c.parent = this; + this.$c.setTransform(9, 10); + this.kd = new a.Xbb; + this.kd.parent = this; + this.kd.setTransform(10, 0); + this.hd = new a.G3a; + this.hd.parent = this; + this.hd.setTransform(10, 10); + this.ld = new a.P9a; + this.ld.parent = this; + this.ld.setTransform(2, -5); + this.nd = new a.NXa; + this.nd.parent = this; + this.nd.setTransform(2, 8); + this.od = new a.MXa; + this.od.parent = this; + this.od.setTransform(2, 4); + this.rd = new a.$cb; + this.rd.parent = this; + this.rd.setTransform(4.8, -3.9); + this.vd = new a.TXa; + this.vd.parent = this; + this.vd.setTransform(8.8, + 4.1); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g}]}, 1).to({state: [{t: this.i}]}, 1).to({state: [{t: this.o}]}, 1).to({state: [{t: this.H}]}, 1).to({state: [{t: this.O}]}, 1).to({state: [{t: this.$}]}, 1).to({state: [{t: this.ka}]}, 1).to({state: [{t: this.ta}]}, 1).to({state: [{t: this.va}]}, 1).to({state: [{t: this.wa}]}, 1).to({state: [{t: this.ya}]}, 1).to({state: [{t: this.Aa}]}, 1).to({state: [{t: this.Ba}]}, 1).to({state: [{t: this.Da}]}, 1).to({state: [{t: this.Ea}]}, 1).to({state: [{t: this.Ga}]}, + 1).to({state: [{t: this.Ha}]}, 1).to({state: [{t: this.Ia}]}, 1).to({state: [{t: this.Ja}]}, 1).to({state: [{t: this.Ka}]}, 1).to({state: [{t: this.La}]}, 1).to({state: [{t: this.Ma}]}, 1).to({state: [{t: this.Na}]}, 1).to({state: [{t: this.Oa}]}, 1).to({state: [{t: this.Qa}]}, 1).to({state: [{t: this.Ua}]}, 1).to({state: [{t: this.Va}]}, 1).to({state: [{t: this.Wa}]}, 1).to({state: [{t: this.Xa}]}, 1).to({state: [{t: this.Ya}]}, 1).to({state: [{t: this.Za}]}, 1).to({state: [{t: this.$a}]}, 1).to({state: [{t: this.ab}]}, 1).to({state: [{t: this.hb}]}, + 1).to({state: [{t: this.mb}]}, 1).to({state: [{t: this.nb}]}, 1).to({state: [{t: this.rb}]}, 1).to({state: [{t: this.tb}]}, 1).to({state: [{t: this.ub}]}, 1).to({state: [{t: this.wb}]}, 1).to({state: [{t: this.yb}]}, 1).to({state: [{t: this.Ab}]}, 1).to({state: [{t: this.Cb}]}, 1).to({state: [{t: this.Db}]}, 1).to({state: [{t: this.Eb}]}, 1).to({state: [{t: this.Fb}]}, 1).to({state: [{t: this.Gb}]}, 1).to({state: [{t: this.Hb}]}, 1).to({state: [{t: this.Jb}]}, 1).to({state: [{t: this.Lb}]}, 1).to({state: [{t: this.Mb}]}, 1).to({state: [{t: this.Pb}]}, + 1).to({state: [{t: this.Nb}]}, 1).to({state: [{t: this.Qb}]}, 1).to({state: [{t: this.Ob}]}, 1).to({state: [{t: this.Rb}]}, 1).to({state: [{t: this.Sb}]}, 1).to({state: [{t: this.Tb}]}, 1).to({state: [{t: this.Ub}]}, 1).to({state: [{t: this.Zb}]}, 1).to({state: [{t: this.Wb}]}, 1).to({state: [{t: this.Xb}]}, 1).to({state: [{t: this.Yb}]}, 1).to({state: [{t: this.$b}]}, 1).to({state: [{t: this.ac}]}, 1).to({state: [{t: this.bc}]}, 1).to({state: [{t: this.hc}]}, 1).to({state: [{t: this.jc}]}, 1).to({state: [{t: this.kc}]}, 1).to({state: [{t: this.lc}]}, + 1).to({state: [{t: this.nc}]}, 1).to({state: [{t: this.tc}]}, 1).to({state: [{t: this.uc}]}, 1).to({state: [{t: this.xc}]}, 1).to({state: [{t: this.zc}]}, 1).to({state: [{t: this.Ac}]}, 1).to({state: [{t: this.Bc}]}, 1).to({state: [{t: this.yc}]}, 1).to({state: [{t: this.Dc}]}, 1).to({state: [{t: this.Ec}]}, 1).to({state: [{t: this.Fc}]}, 1).to({state: [{t: this.Gc}]}, 1).to({state: [{t: this.Jc}]}, 1).to({state: [{t: this.Kc}]}, 1).to({state: [{t: this.Lc}]}, 1).to({state: [{t: this.Ic}]}, 1).to({state: [{t: this.Nc}]}, 1).to({state: [{t: this.Oc}]}, + 1).to({state: [{t: this.Rc}]}, 1).to({state: [{t: this.Uc}]}, 1).to({state: [{t: this.Xc}]}, 1).to({state: [{t: this.jd}]}, 1).to({state: [{t: this.$c}]}, 1).to({state: [{t: this.kd}]}, 1).to({state: [{t: this.hd}]}, 1).to({state: [{t: this.ld}]}, 1).to({state: [{t: this.nd}]}, 1).to({state: [{t: this.od}]}, 1).to({state: [{t: this.rd}]}, 1).to({state: [{t: this.vd}]}, 1).wait(1)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-9, -14, 75, 79); + (a.RWa = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.ct; + this.instance.parent = + this; + this.instance.setTransform(0, 0, 1, 1, 180, 0, 0, -1.5, 0); + this.timeline.addTween(b.Tween.get(this.instance).wait(9).to({alpha: .6484}, 0).wait(5)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-1.5, -2.5, 3, 5); + (a.Xda = function (d, e, f) { + this.initialize(d, e, f, {avatar: 0}); + this.u = function () { + this.T = {menu: {}, dialog: {}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.W = new a.b1; + this.W.name = "avatar"; + this.W.parent = this; + this.timeline.addTween(b.Tween.get(this.W).wait(1)); + this.instance = new a.rCa; + this.instance.parent = this; + this.instance.setTransform(45.6, 61, 1, 1, 0, 0, 0, 31.6, -2); + this.g = new a.tCa; + this.g.parent = this; + this.g.setTransform(45.6, 93, 1, 1, 0, 0, 0, 31.6, -2); + this.i = new a.sCa; + this.i.parent = this; + this.i.setTransform(45.6, 77, 1, 1, 0, 0, 0, 31.6, -2); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.i}, {t: this.g}, {t: this.instance}]}).wait(1)); + this.text = new b.Text("text", "10px 'PixelMplus10'", "#e7dbac"); + this.text.name = "text"; + this.text.lineHeight = 11; + this.text.lineWidth = 163; + this.text.parent = this; + this.text.setTransform(62, 11); + this.timeline.addTween(b.Tween.get(this.text).wait(1)); + this.JQ = new a.RWa; + this.JQ.name = "pointer"; + this.JQ.parent = this; + this.JQ.setTransform(225, 63); + this.timeline.addTween(b.Tween.get(this.JQ).wait(1)); + this.next = new a.Zda; + this.next.name = "next"; + this.next.parent = this; + this.next.setTransform(111.6, 75.65, 1, 1.982, 0, 0, 0, -1.5, .1); + this.timeline.addTween(b.Tween.get(this.next).wait(1)); + this.qK = new a.Yda; + this.qK.name = "base"; + this.qK.parent = this; + this.qK.setTransform(5.5, 5); + this.timeline.addTween(b.Tween.get(this.qK).wait(1)) + }).prototype = + k(a.Xda, new b.Rectangle(5.5, 5, 228, 124), null); + (a.Spa = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.instance = new a.Xda; + this.instance.parent = this; + this.instance.setTransform(1.6, -.8, 4, 4, 0, 0, 0, .4, -.2); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(502, 290, 432, 225.89999999999998); + a.properties = { + id: "B6B0DC09A20D455BAB815F8FE24BCF08", + width: 960, + height: 540, + fps: 30, + color: "#ffffff", + opacity: 1, + aB: [{src: "images_dialog/ArrowArt.png", id: "ArrowArt"}, { + src: "images_dialog/ArrowCollectorNeutralArt.png", + id: "ArrowCollectorNeutralArt" + }, { + src: "images_dialog/Baker_Portrait_001.png", + id: "Baker_Portrait_001" + }, { + src: "images_dialog/Baker_Retired_Portait_001.png", + id: "Baker_Retired_Portait_001" + }, {src: "images_dialog/BigCatNeutralArt.png", id: "BigCatNeutralArt"}, { + src: "images_dialog/Bitmap12311.png", + id: "Bitmap12311" + }, {src: "images_dialog/BlueOniNeutralArt.png", id: "BlueOniNeutralArt"}, { + src: "images_dialog/CoachNeutralArt.png", + id: "CoachNeutralArt" + }, {src: "images_dialog/ConviniNeutralArt.png", id: "ConviniNeutralArt"}, { + src: "images_dialog/deer_portrait.png", + id: "deer_portrait" + }, { + src: "images_dialog/DialogueFillArt1.png", + id: "DialogueFillArt1" + }, { + src: "images_dialog/gatekeeper_portrait.png", + id: "gatekeeper_portrait" + }, { + src: "images_dialog/InariNeutralArt.png", + id: "InariNeutralArt" + }, { + src: "images_dialog/InvisibleOctopusNeutral.png", + id: "InvisibleOctopusNeutral" + }, {src: "images_dialog/KappaNeutralArt.png", id: "KappaNeutralArt"}, { + src: "images_dialog/KarasuNeutralArt.png", + id: "KarasuNeutralArt" + }, { + src: "images_dialog/kijimunaNeutralArt.png", + id: "kijimunaNeutralArt" + }, {src: "images_dialog/Koma1NeutralArt.png", id: "Koma1NeutralArt"}, { + src: "images_dialog/Koma2NeutralArt.png", + id: "Koma2NeutralArt" + }, { + src: "images_dialog/LittleMonkeyNeutral.png", + id: "LittleMonkeyNeutral" + }, { + src: "images_dialog/locksmith_portrait.png", + id: "locksmith_portrait" + }, {src: "images_dialog/LuckyAnnoyedArt11.png", id: "LuckyAnnoyedArt11"}, { + src: "images_dialog/luckyCuriousArt.png", + id: "luckyCuriousArt" + }, { + src: "images_dialog/LuckyGrinArt.png", + id: "LuckyGrinArt" + }, {src: "images_dialog/LuckyHappyArt.png", id: "LuckyHappyArt"}, { + src: "images_dialog/LuckyHideArt.png", + id: "LuckyHideArt" + }, { + src: "images_dialog/LuckyNeutralArt11111.png", + id: "LuckyNeutralArt11111" + }, {src: "images_dialog/LuckyRawrArt.png", id: "LuckyRawrArt"}, { + src: "images_dialog/LuckyShockedArt.png", + id: "LuckyShockedArt" + }, { + src: "images_dialog/LuckySmileSweatArt.png", + id: "LuckySmileSweatArt" + }, {src: "images_dialog/LuckyWideEyedSweatArt.png", id: "LuckyWideEyedSweatArt"}, { + src: "images_dialog/LuckyWorriedArt.png", + id: "LuckyWorriedArt" + }, {src: "images_dialog/momoBlueArt.png", id: "momoBlueArt"}, { + src: "images_dialog/MomoNeutralArt.png", + id: "MomoNeutralArt" + }, {src: "images_dialog/MonkeyNeutralArt.png", id: "MonkeyNeutralArt"}, { + src: "images_dialog/NoodleCookArt.png", + id: "NoodleCookArt" + }, {src: "images_dialog/OniBakerArt.png", id: "OniBakerArt"}, { + src: "images_dialog/OniPortraitArt.png", + id: "OniPortraitArt" + }, { + src: "images_dialog/otter_portrait.png", + id: "otter_portrait" + }, {src: "images_dialog/OverworldMenuButtonBrown.png", id: "OverworldMenuButtonBrown"}, + {src: "images_dialog/OwlNeutralArt.png", id: "OwlNeutralArt"}, { + src: "images_dialog/porcupine_portrait.png", + id: "porcupine_portrait" + }, { + src: "images_dialog/Portraitbirthdaykidhappy.png", + id: "Portraitbirthdaykidhappy" + }, { + src: "images_dialog/Portraitbirthdaykidsad.png", + id: "Portraitbirthdaykidsad" + }, { + src: "images_dialog/Portraitbirthdaymom.png", + id: "Portraitbirthdaymom" + }, { + src: "images_dialog/PortraitBlackWolfie.png", + id: "PortraitBlackWolfie" + }, {src: "images_dialog/Portraitblueleader.png", id: "Portraitblueleader"}, { + src: "images_dialog/PortraitCrab.png", + id: "PortraitCrab" + }, { + src: "images_dialog/PortraitDustyScroll.png", + id: "PortraitDustyScroll" + }, {src: "images_dialog/PortraitFroggy.png", id: "PortraitFroggy"}, { + src: "images_dialog/Portraitgreenleader.png", + id: "Portraitgreenleader" + }, {src: "images_dialog/PortraitKijiDad1.png", id: "PortraitKijiDad1"}, { + src: "images_dialog/PortraitKijiKid.png", + id: "PortraitKijiKid" + }, { + src: "images_dialog/Portraitkijimunastatue1.png", + id: "Portraitkijimunastatue1" + }, {src: "images_dialog/PortraitMomobird.png", id: "PortraitMomobird"}, { + src: "images_dialog/PortraitMomodadneutral.png", + id: "PortraitMomodadneutral" + }, { + src: "images_dialog/PortraitMomoDog.png", + id: "PortraitMomoDog" + }, { + src: "images_dialog/PortraitMomomomneutral.png", + id: "PortraitMomomomneutral" + }, { + src: "images_dialog/PortraitMomoMonkey.png", + id: "PortraitMomoMonkey" + }, { + src: "images_dialog/PortraitMomotaro.png", + id: "PortraitMomotaro" + }, { + src: "images_dialog/PortraitOtohimeNeutral.png", + id: "PortraitOtohimeNeutral" + }, { + src: "images_dialog/Portraitotohimestatue.png", + id: "Portraitotohimestatue" + }, {src: "images_dialog/Portraitowlstatue.png", id: "Portraitowlstatue"}, + { + src: "images_dialog/PortraitRacerAmad.png", + id: "PortraitRacerAmad" + }, { + src: "images_dialog/PortraitRacerAneutral.png", + id: "PortraitRacerAneutral" + }, { + src: "images_dialog/PortraitracerBmad.png", + id: "PortraitracerBmad" + }, { + src: "images_dialog/PortraitracerBneutral.png", + id: "PortraitracerBneutral" + }, { + src: "images_dialog/Portraitredleader.png", + id: "Portraitredleader" + }, { + src: "images_dialog/Portraitrugbystatue.png", + id: "Portraitrugbystatue" + }, {src: "images_dialog/PortraitSupermountaingirl.png", id: "PortraitSupermountaingirl"}, + { + src: "images_dialog/Portraittanukistatue.png", + id: "Portraittanukistatue" + }, { + src: "images_dialog/Portraittengustatue.png", + id: "Portraittengustatue" + }, { + src: "images_dialog/PortraitWolfie.png", + id: "PortraitWolfie" + }, { + src: "images_dialog/Portraityoichistatue.png", + id: "Portraityoichistatue" + }, { + src: "images_dialog/RainBoyNeutralArt.png", + id: "RainBoyNeutralArt" + }, { + src: "images_dialog/RedOniNeutralArt.png", + id: "RedOniNeutralArt" + }, {src: "images_dialog/sister1_portrait.png", id: "sister1_portrait"}, { + src: "images_dialog/sister2_portrait.png", + id: "sister2_portrait" + }, { + src: "images_dialog/sister3_portrait.png", + id: "sister3_portrait" + }, { + src: "images_dialog/SleepyCatNeutral.png", + id: "SleepyCatNeutral" + }, { + src: "images_dialog/SnowOwlAvatarArt.png", + id: "SnowOwlAvatarArt" + }, { + src: "images_dialog/TanookiNeutralArt.png", + id: "TanookiNeutralArt" + }, { + src: "images_dialog/TenguNeutralArt.png", + id: "TenguNeutralArt" + }, { + src: "images_dialog/Town_people_bat_portrait.png", + id: "Town_people_bat_portrait" + }, {src: "images_dialog/Town_people_fish_handicap_portrait.png", id: "Town_people_fish_handicap_portrait"}, + { + src: "images_dialog/Town_people_fish_portrait.png", + id: "Town_people_fish_portrait" + }, { + src: "images_dialog/Town_people_grandpa_portrait.png", + id: "Town_people_grandpa_portrait" + }, { + src: "images_dialog/Town_people_hare_portrait.png", + id: "Town_people_hare_portrait" + }, { + src: "images_dialog/Town_people_kid_portrait.png", + id: "Town_people_kid_portrait" + }, { + src: "images_dialog/Town_people_nova_portrait.png", + id: "Town_people_nova_portrait" + }, {src: "images_dialog/Town_people_pango_portrait.png", id: "Town_people_pango_portrait"}, + { + src: "images_dialog/Town_people_seahorse_portrait.png", + id: "Town_people_seahorse_portrait" + }, { + src: "images_dialog/Town_people_shiba_portrait.png", + id: "Town_people_shiba_portrait" + }, { + src: "images_dialog/TraineeNoodlesArt1.png", + id: "TraineeNoodlesArt1" + }, {src: "images_dialog/TraineeRunArt1.png", id: "TraineeRunArt1"}, { + src: "images_dialog/TrainWorkerArt.png", + id: "TrainWorkerArt" + }, { + src: "images_dialog/TrophyMasterArt.png", + id: "TrophyMasterArt" + }, {src: "images_dialog/UrashimaANeutralrt1.png", id: "UrashimaANeutralrt1"}, + { + src: "images_dialog/UrashimaMomNeutral.png", + id: "UrashimaMomNeutral" + }, {src: "images_dialog/UshiNeutralArt1.png", id: "UshiNeutralArt1"}, { + src: "images_dialog/WhiteOniAvatarArt.png", + id: "WhiteOniAvatarArt" + }, {src: "images_dialog/yellowleader.png", id: "yellowleader"}, { + src: "images_dialog/YouichiNeutralArt.png", + id: "YouichiNeutralArt" + }, {src: "images_dialog/YoungArcherNeutralArt.png", id: "YoungArcherNeutralArt"}], + tB: [] + }; + (a.Stage = function (d) { + createjs.Stage.call(this, d) + }).prototype = c = new createjs.Stage; + c.Ca = function (d) { + this.tickEnabled = + d + }; + c.play = function () { + this.tickEnabled = ! 0; + this.getChildAt(0).gotoAndPlay(this.vp()) + }; + c.stop = function (d) { + d && this.seek(d); + this.tickEnabled = ! 1 + }; + c.seek = function (d) { + this.tickEnabled = ! 0; + this.getChildAt(0).gotoAndStop(a.properties.fps * d / 1E3) + }; + c.getDuration = function () { + return this.getChildAt(0).totalFrames / a.properties.fps * 1E3 + }; + c.vp = function () { + return this.getChildAt(0).currentFrame / a.properties.fps * 1E3 + }; + g.Zd = g.Zd || []; + g.Ve || (g.Ve = []); + g.oB = function (d) { + g.Ve.push(d); + if (0 < g.Zd.length) for (var e = 0; e < g.Zd.length; ++e) d(g.Zd[e]) + }; + g.Kf = g.Kf || {}; + g.Kf.B6B0DC09A20D455BAB815F8FE24BCF08 = { + getStage: function () { + return (void 0).getStage() + }, getLibrary: function () { + return a + }, pB: function () { + return n + }, Sx: function () { + return h + } + }; + g.Px = function (d) { + g.Zd.push(d); + for (var e = 0; e < g.Ve.length; e++) g.Ve[e](d) + }; + g.kp = function (d) { + return g.Kf[d] + }; + g.rB = function (d, e, f, v, u) { + function E() { + var F = a.properties.width, H = a.properties.height, I = window.innerWidth, J = window.innerHeight, + U = window.devicePixelRatio || 1, O = I / F, R = J / H, w = 1; + if (d) if ("width" == e && P == I || "height" == e && K == J) w = + T; else if (f) 1 == v ? w = Math.min(O, R) : 2 == v && (w = Math.max(O, R)); else if (I < F || J < H) w = Math.min(O, R); + u[0].width = F * U * w; + u[0].height = H * U * w; + u.forEach(function (W) { + W.style.width = F * w + "px"; + W.style.height = H * w + "px" + }); + P = I; + K = J; + T = w; + (void 0).update() + } + + var P, K, T = 1; + window.addEventListener("resize", E); + E() + } +})(createjs = createjs || {}, Tk = Tk || {}); +var Uk = Sk; +(function (b, g) { + function m() { + var d = this._cloneProps(new this.constructor(this.mode, this.startPosition, this.loop)); + d.gotoAndStop(this.currentFrame); + d.paused = this.paused; + d.framerate = this.framerate; + return d + } + + function k(d, e, f) { + d = b.extend(d, b.MovieClip); + d.clone = m; + d.j = e; + d.frameBounds = f; + return d + } + + var c, a = {}, n = {}, h = {}; + a.uB = []; + (a.Sva = function () { + this.initialize(h.Bitmap4) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 18); + (a.$va = function () { + this.initialize(h.Bitmap5) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, + 0, 32, 32); + (a.awa = function () { + this.initialize(h.Bitmap6) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 26, 26); + (a.cBa = function () { + this.initialize(h.CloseButtonBrown) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 22, 22); + (a.T4 = function () { + this.initialize(h.OverworldMenuButtonBrown) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 22, 22); + (a.oWa = function () { + this.initialize(h.PauseButtonBrown) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 22, 22); + (a.wka = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.$va; + this.instance.parent = this; + this.instance.setTransform(0, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)) + }).prototype = k(a.wka, new b.Rectangle(0, 0, 96, 96), null); + (a.jka = function (d, e, f) { + this.initialize(d, e, f, {}); + this.shape = new b.Shape; + this.shape.graphics.f("#66ff00").s().p("At0MCIAA4DIbpAAIAAYDg"); + this.shape.setTransform(57.55, 45); + this.shape._off = ! 0; + this.timeline.addTween(b.Tween.get(this.shape).wait(3).to({_off: ! 1}, 0).wait(1)); + this.instance = new a.oWa; + this.instance.parent = + this; + this.instance.setTransform(-33, -33, 3, 3); + this.timeline.addTween(b.Tween.get(this.instance).to({_off: ! 0}, 3).wait(1)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-33, -33, 179.1, 155); + (a.Pja = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.T4; + this.instance.parent = this; + this.instance.setTransform(-11, -22); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)) + }).prototype = k(a.Pja, new b.Rectangle(-11, -22, 22, 22), null); + (a.Hfa = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = + {joystickControl: {positionMultiplier: 60}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.instance = new a.Sva; + this.instance.parent = this; + this.instance.setTransform(-26.85, -26.85, 3, 3); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)) + }).prototype = k(a.Hfa, new b.Rectangle(-37, -37, 74, 74), null); + (a.HK = function (d, e, f) { + this.initialize(d, e, f, {}); + this.shape = new b.Shape; + this.shape.graphics.f("#66ff00").s().p("AprH5IAAvxITXAAIAAPxg"); + this.shape.setTransform(1, 1.5); + this.shape._off = ! 0; + this.timeline.addTween(b.Tween.get(this.shape).wait(3).to({_off: ! 1}, 0).wait(1)); + this.instance = new a.cBa; + this.instance.parent = this; + this.instance.setTransform(-33, -33, 3, 3); + this.timeline.addTween(b.Tween.get(this.instance).to({_off: ! 0}, 3).wait(1)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-61, -49, 124, 101); + (a.gba = function (d, e, f) { + this.initialize(d, e, f, {}); + this.shape = new b.Shape; + this.shape.graphics.f("#00ff00").s().p("EgfPAnEMAAAhOHMA+fAAAMAAABOHg"); + this.shape._off = ! 0; + this.timeline.addTween(b.Tween.get(this.shape).wait(3).to({_off: ! 1}, + 0).wait(1)); + this.instance = new a.awa; + this.instance.parent = this; + this.instance.setTransform(-39, -39, 3, 3); + this.timeline.addTween(b.Tween.get(this.instance).to({_off: ! 0}, 3).wait(1)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-200, -250, 400, 500); + (a.kka = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {pauseButton: {}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.button = new a.jka; + this.button.name = "button"; + this.button.parent = this; + new b.ButtonHelper(this.button, + 0, 1, 2, ! 1, new a.jka, 3); + this.timeline.addTween(b.Tween.get(this.button).wait(1)) + }).prototype = k(a.kka, new b.Rectangle(-33, -33, 66, 66), null); + (a.RVa = function (d, e, f) { + this.initialize(d, e, f, {}); + this.Yab = function () { + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).wait(44).call(this.Yab).wait(1)); + this.instance = new a.Pja; + this.instance.parent = this; + this.instance.setTransform(0, -11, 1, 1, 0, 0, 0, 0, -11); + this.instance.alpha = 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(20).to({alpha: 1}, 24).wait(1)) + }).prototype = + c = new b.MovieClip; + c.j = new b.Rectangle(-11, -22, 22, 22); + (a.Qja = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.RVa; + this.instance.parent = this; + this.instance.setTransform(0, 0, 1, 1, 0, 0, 0, 0, -11); + this.shape = new b.Shape; + this.shape.graphics.f("#66ff00").s().p("Aj5DSIAAmjIHzAAIAAGjg"); + this.shape.setTransform(14.075, 10); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.shape}]}, 3).wait(1)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-11, -11, 50.1, 42); + (a.Gfa = + function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {joystick: {}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.instance = new a.Hfa; + this.instance.parent = this; + this.instance.setTransform(-1, -1.9, 1, 1, 0, 0, 0, -1, -1.9); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)); + this.g = new a.wka; + this.g.parent = this; + this.g.setTransform(0, 0, 1, 1, 0, 0, 0, 48, 48); + this.g.alpha = .3008; + this.timeline.addTween(b.Tween.get(this.g).wait(1)) + }).prototype = k(a.Gfa, new b.Rectangle(-78, -78, 156, + 156), null); + (a.Eda = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {closeButton: {}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.button = new a.HK; + this.button.name = "button"; + this.button.parent = this; + new b.ButtonHelper(this.button, 0, 1, 2, ! 1, new a.HK, 3); + this.timeline.addTween(b.Tween.get(this.button).wait(1)) + }).prototype = k(a.Eda, new b.Rectangle(-33, -33, 66, 66), null); + (a.hba = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {actionButton: {}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.button = new a.gba; + this.button.name = "button"; + this.button.parent = this; + new b.ButtonHelper(this.button, 0, 1, 2, ! 1, new a.gba, 3); + this.timeline.addTween(b.Tween.get(this.button).wait(1)) + }).prototype = k(a.hba, new b.Rectangle(-39, -39, 78, 78), null); + (a.Rja = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {overworldButton: {}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.button = new a.Qja; + this.button.name = "button"; + this.button.parent = this; + new b.ButtonHelper(this.button, + 0, 1, 2, ! 1, new a.Qja, 3); + this.timeline.addTween(b.Tween.get(this.button).wait(1)) + }).prototype = k(a.Rja, new b.Rectangle(-11, -11, 22, 22), null); + (a.Ap = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.instance = new a.Rja; + this.instance.parent = this; + this.instance.setTransform(36, 36, 3, 3); + this.instance.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.instance).wait(1)); + this.g = new a.kka; + this.g.parent = this; + this.g.setTransform(36, + 36); + this.g.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.g).wait(1)); + this.i = new a.Eda; + this.i.parent = this; + this.i.setTransform(924, 36); + this.i.visible = ! 1; + this.o = new a.hba; + this.o.parent = this; + this.o.setTransform(855, 453); + this.o.visible = ! 1; + this.H = new a.Gfa; + this.H.parent = this; + this.H.setTransform(114, 453); + this.H.visible = ! 1; + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.H}, {t: this.o}, {t: this.i}]}).wait(1)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(483, 273, 474, 228); + a.properties = { + id: "0E30EA04F8F04E9B8B08CAC42EEA149E", + width: 960, + height: 540, + fps: 30, + color: "#cccccc", + opacity: 1, + aB: [{src: "images_hud/Bitmap4.png", id: "Bitmap4"}, { + src: "images_hud/Bitmap5.png", + id: "Bitmap5" + }, {src: "images_hud/Bitmap6.png", id: "Bitmap6"}, { + src: "images_hud/CloseButtonBrown.png", + id: "CloseButtonBrown" + }, { + src: "images_hud/OverworldMenuButtonBrown.png", + id: "OverworldMenuButtonBrown" + }, {src: "images_hud/PauseButtonBrown.png", id: "PauseButtonBrown"}], + tB: [] + }; + (a.Stage = function (d) { + createjs.Stage.call(this, d) + }).prototype = c = new createjs.Stage; + c.Ca = function (d) { + this.tickEnabled = + d + }; + c.play = function () { + this.tickEnabled = ! 0; + this.getChildAt(0).gotoAndPlay(this.vp()) + }; + c.stop = function (d) { + d && this.seek(d); + this.tickEnabled = ! 1 + }; + c.seek = function (d) { + this.tickEnabled = ! 0; + this.getChildAt(0).gotoAndStop(a.properties.fps * d / 1E3) + }; + c.getDuration = function () { + return this.getChildAt(0).totalFrames / a.properties.fps * 1E3 + }; + c.vp = function () { + return this.getChildAt(0).currentFrame / a.properties.fps * 1E3 + }; + g.Zd = g.Zd || []; + g.Ve || (g.Ve = []); + g.oB = function (d) { + g.Ve.push(d); + if (0 < g.Zd.length) for (var e = 0; e < g.Zd.length; ++e) d(g.Zd[e]) + }; + g.Kf = g.Kf || {}; + g.Kf["0E30EA04F8F04E9B8B08CAC42EEA149E"] = { + getStage: function () { + return (void 0).getStage() + }, getLibrary: function () { + return a + }, pB: function () { + return n + }, Sx: function () { + return h + } + }; + g.Px = function (d) { + g.Zd.push(d); + for (var e = 0; e < g.Ve.length; e++) g.Ve[e](d) + }; + g.kp = function (d) { + return g.Kf[d] + }; + g.rB = function (d, e, f, v, u) { + function E() { + var F = a.properties.width, H = a.properties.height, I = window.innerWidth, J = window.innerHeight, + U = window.devicePixelRatio || 1, O = I / F, R = J / H, w = 1; + if (d) if ("width" == e && P == I || "height" == e && K == + J) w = T; else if (f) 1 == v ? w = Math.min(O, R) : 2 == v && (w = Math.max(O, R)); else if (I < F || J < H) w = Math.min(O, R); + u[0].width = F * U * w; + u[0].height = H * U * w; + u.forEach(function (W) { + W.style.width = F * w + "px"; + W.style.height = H * w + "px" + }); + P = I; + K = J; + T = w; + (void 0).update() + } + + var P, K, T = 1; + window.addEventListener("resize", E); + E() + } +})(createjs = createjs || {}, Uk = Uk || {}); +var Vk = Sk; +(function (b, g) { + var m, k = {}, c = {}, a = {}; + k.uB = []; + (k.eL = function () { + this.initialize(a.ScrollRotateArt0) + }).prototype = m = new b.Bitmap; + m.j = new b.Rectangle(0, 0, 14, 14); + (k.fL = function () { + this.initialize(a.ScrollRotateArt1) + }).prototype = m = new b.Bitmap; + m.j = new b.Rectangle(0, 0, 10, 14); + (k.gL = function () { + this.initialize(a.ScrollRotateArt2) + }).prototype = m = new b.Bitmap; + m.j = new b.Rectangle(0, 0, 6, 14); + (k.hL = function () { + this.initialize(a.ScrollRotateArt3) + }).prototype = m = new b.Bitmap; + m.j = new b.Rectangle(0, 0, 10, 14); + (k.iL = function () { + this.initialize(a.ScrollRotateArt4) + }).prototype = + m = new b.Bitmap; + m.j = new b.Rectangle(0, 0, 14, 14); + (k.jL = function () { + this.initialize(a.ScrollRotateArt5) + }).prototype = m = new b.Bitmap; + m.j = new b.Rectangle(0, 0, 10, 14); + (k.kL = function () { + this.initialize(a.ScrollRotateArt6) + }).prototype = m = new b.Bitmap; + m.j = new b.Rectangle(0, 0, 7, 14); + (k.lL = function () { + this.initialize(a.ScrollRotateArt7) + }).prototype = m = new b.Bitmap; + m.j = new b.Rectangle(0, 0, 11, 14); + (k.Dm = function (n, h, d) { + this.initialize(n, h, d, {}); + this.instance = new k.eL; + this.instance.parent = this; + this.instance.setTransform(-7, + -14); + this.g = new k.fL; + this.g.parent = this; + this.g.setTransform(-5, -14); + this.i = new k.gL; + this.i.parent = this; + this.i.setTransform(-3, -14); + this.o = new k.hL; + this.o.parent = this; + this.o.setTransform(-5, -14); + this.H = new k.iL; + this.H.parent = this; + this.H.setTransform(-7, -14); + this.O = new k.jL; + this.O.parent = this; + this.O.setTransform(-5, -14); + this.$ = new k.kL; + this.$.parent = this; + this.$.setTransform(-3.5, -14); + this.ka = new k.lL; + this.ka.parent = this; + this.ka.setTransform(-5.5, -14); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g}]}, + 3).to({state: [{t: this.i}]}, 3).to({state: [{t: this.o}]}, 3).to({state: [{t: this.H}]}, 3).to({state: [{t: this.O}]}, 3).to({state: [{t: this.$}]}, 3).to({state: [{t: this.ka}]}, 3).wait(3)) + }).prototype = m = new b.MovieClip; + m.j = new b.Rectangle(-7, -14, 14, 14); + (k.CJ = function (n, h, d) { + this.initialize(n, h, d, {}); + this.instance = new k.Dm; + this.instance.parent = this; + this.instance.setTransform(480, 280, 3, 2.9999, 0, 0, 0, 0, -7); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("#000000").s().p("EhK/AqMMAAAhUXMCV/AAAMAAABUXg"); + this.shape.setTransform(480, 270); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)) + }).prototype = m = new b.MovieClip; + m.j = new b.Rectangle(480, 270, 480, 270); + k.properties = { + id: "348D233EE4ED48398F13A42B3BD73D9C", + width: 960, + height: 540, + fps: 24, + color: "#ffffff", + opacity: 1, + aB: [{ + src: "images_loading/ScrollRotateArt0.png", + id: "ScrollRotateArt0" + }, { + src: "images_loading/ScrollRotateArt1.png", + id: "ScrollRotateArt1" + }, {src: "images_loading/ScrollRotateArt2.png", id: "ScrollRotateArt2"}, { + src: "images_loading/ScrollRotateArt3.png", + id: "ScrollRotateArt3" + }, { + src: "images_loading/ScrollRotateArt4.png", + id: "ScrollRotateArt4" + }, { + src: "images_loading/ScrollRotateArt5.png", + id: "ScrollRotateArt5" + }, { + src: "images_loading/ScrollRotateArt6.png", + id: "ScrollRotateArt6" + }, {src: "images_loading/ScrollRotateArt7.png", id: "ScrollRotateArt7"}], + tB: [] + }; + (k.Stage = function (n) { + createjs.Stage.call(this, n) + }).prototype = m = new createjs.Stage; + m.Ca = function (n) { + this.tickEnabled = n + }; + m.play = function () { + this.tickEnabled = ! 0; + this.getChildAt(0).gotoAndPlay(this.vp()) + }; + m.stop = + function (n) { + n && this.seek(n); + this.tickEnabled = ! 1 + }; + m.seek = function (n) { + this.tickEnabled = ! 0; + this.getChildAt(0).gotoAndStop(k.properties.fps * n / 1E3) + }; + m.getDuration = function () { + return this.getChildAt(0).totalFrames / k.properties.fps * 1E3 + }; + m.vp = function () { + return this.getChildAt(0).currentFrame / k.properties.fps * 1E3 + }; + g.Zd = g.Zd || []; + g.Ve || (g.Ve = []); + g.oB = function (n) { + g.Ve.push(n); + if (0 < g.Zd.length) for (var h = 0; h < g.Zd.length; ++h) n(g.Zd[h]) + }; + g.Kf = g.Kf || {}; + g.Kf["348D233EE4ED48398F13A42B3BD73D9C"] = { + getStage: function () { + return (void 0).getStage() + }, + getLibrary: function () { + return k + }, pB: function () { + return c + }, Sx: function () { + return a + } + }; + g.Px = function (n) { + g.Zd.push(n); + for (var h = 0; h < g.Ve.length; h++) g.Ve[h](n) + }; + g.kp = function (n) { + return g.Kf[n] + }; + g.rB = function (n, h, d, e, f) { + function v() { + var K = k.properties.width, T = k.properties.height, F = window.innerWidth, H = window.innerHeight, + I = window.devicePixelRatio || 1, J = F / K, U = H / T, O = 1; + if (n) if ("width" == h && u == F || "height" == h && E == H) O = P; else if (d) 1 == e ? O = Math.min(J, U) : 2 == e && (O = Math.max(J, U)); else if (F < K || H < T) O = Math.min(J, U); + f[0].width = + K * I * O; + f[0].height = T * I * O; + f.forEach(function (R) { + R.style.width = K * O + "px"; + R.style.height = T * O + "px" + }); + u = F; + E = H; + P = O; + (void 0).update() + } + + var u, E, P = 1; + window.addEventListener("resize", v); + v() + } +})(createjs = createjs || {}, Vk = Vk || {}); +var Wk = Sk; +(function (b, g) { + function m() { + var d = this._cloneProps(new this.constructor(this.mode, this.startPosition, this.loop)); + d.gotoAndStop(this.currentFrame); + d.paused = this.paused; + d.framerate = this.framerate; + return d + } + + function k(d, e, f) { + d = b.extend(d, b.MovieClip); + d.clone = m; + d.j = e; + d.frameBounds = f; + return d + } + + var c, a = {}, n = {}, h = {}; + a.uB = []; + (a.Mra = function () { + this.initialize(h.ArcheryIcon) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 19, 18); + (a.EK = function () { + this.initialize(h.ArrowArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, + 0, 3, 5); + (a.back = function () { + this.initialize(h.back) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 22, 22); + (a.T$a = function () { + this.initialize(h.backfocus) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 22, 22); + (a.rua = function () { + this.initialize(h.Bitmap129) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 27); + (a.sua = function () { + this.initialize(h.Bitmap129_1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 27); + (a.tua = function () { + this.initialize(h.Bitmap131) + }).prototype = c = new b.Bitmap; + c.j = + new b.Rectangle(0, 0, 20, 27); + (a.uua = function () { + this.initialize(h.Bitmap131_1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 27); + (a.vua = function () { + this.initialize(h.Bitmap132) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 27); + (a.wua = function () { + this.initialize(h.Bitmap132_1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 27); + (a.xua = function () { + this.initialize(h.Bitmap133) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 27); + (a.yua = function () { + this.initialize(h.Bitmap133_1) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 27); + (a.zua = function () { + this.initialize(h.Bitmap134) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 27); + (a.Aua = function () { + this.initialize(h.Bitmap134_1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 27); + (a.Bua = function () { + this.initialize(h.Bitmap135) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 27); + (a.Cua = function () { + this.initialize(h.Bitmap135_1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 27); + (a.Dua = function () { + this.initialize(h.Bitmap136) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 27); + (a.Eua = function () { + this.initialize(h.Bitmap136_1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 27); + (a.Fua = function () { + this.initialize(h.Bitmap137) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 27); + (a.Gua = function () { + this.initialize(h.Bitmap137_1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 27); + (a.Hua = function () { + this.initialize(h.Bitmap138) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 27); + (a.Iua = function () { + this.initialize(h.Bitmap138_1) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 27); + (a.Jua = function () { + this.initialize(h.Bitmap139) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 27); + (a.Kua = function () { + this.initialize(h.Bitmap139_1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 27); + (a.Lua = function () { + this.initialize(h.Bitmap140) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 27); + (a.Mua = function () { + this.initialize(h.Bitmap140_1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 27); + (a.Nua = function () { + this.initialize(h.Bitmap141) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 27); + (a.Oua = function () { + this.initialize(h.Bitmap141_1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 27); + (a.Pua = function () { + this.initialize(h.Bitmap142) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 27); + (a.Qua = function () { + this.initialize(h.Bitmap142_1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 27); + (a.Rua = function () { + this.initialize(h.Bitmap143) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 27); + (a.Sua = function () { + this.initialize(h.Bitmap143_1) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 27); + (a.mca = function () { + this.initialize(h.Bitmap147) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 26); + (a.nca = function () { + this.initialize(h.Bitmap148) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 30); + (a.oca = function () { + this.initialize(h.Bitmap149) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 30); + (a.qca = function () { + this.initialize(h.Bitmap150) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 26); + (a.rca = function () { + this.initialize(h.Bitmap151) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 26); + (a.sca = function () { + this.initialize(h.Bitmap152) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 26); + (a.tca = function () { + this.initialize(h.Bitmap153) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 26); + (a.Tua = function () { + this.initialize(h.Bitmap178) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 32); + (a.Vua = function () { + this.initialize(h.Bitmap180) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 29); + (a.Wua = function () { + this.initialize(h.Bitmap181) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 29); + (a.Xua = function () { + this.initialize(h.Bitmap182) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 29); + (a.Yua = function () { + this.initialize(h.Bitmap183) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 16, 16); + (a.Zua = function () { + this.initialize(h.Bitmap186) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 16, 16); + (a.$ua = function () { + this.initialize(h.Bitmap187) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 16, 16); + (a.ava = function () { + this.initialize(h.Bitmap188) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 16, 16); + (a.bva = function () { + this.initialize(h.Bitmap189) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 29); + (a.dva = function () { + this.initialize(h.Bitmap191) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 24); + (a.eva = function () { + this.initialize(h.Bitmap192) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 23, 25); + (a.fva = function () { + this.initialize(h.Bitmap196) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 21, 25); + (a.gva = function () { + this.initialize(h.Bitmap197) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 23, 25); + (a.hva = function () { + this.initialize(h.Bitmap198) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 21, 25); + (a.uca = function () { + this.initialize(h.Bitmap235) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 19, 23); + (a.vca = function () { + this.initialize(h.Bitmap236) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 22, 20); + (a.wca = function () { + this.initialize(h.Bitmap237) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 21, 29); + (a.xca = function () { + this.initialize(h.Bitmap238) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 30); + (a.mva = function () { + this.initialize(h.Bitmap239) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 17, 22); + (a.nva = function () { + this.initialize(h.Bitmap240) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 17, 21); + (a.ova = function () { + this.initialize(h.Bitmap241) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 22); + (a.pva = function () { + this.initialize(h.Bitmap242) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 14, 22); + (a.qva = function () { + this.initialize(h.Bitmap243) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 17, 22); + (a.rva = function () { + this.initialize(h.Bitmap244) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 17, 22); + (a.sva = function () { + this.initialize(h.Bitmap245) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 24, 23); + (a.tva = function () { + this.initialize(h.Bitmap247) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 23, 23); + (a.uva = function () { + this.initialize(h.Bitmap248) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 19, 26); + (a.vva = function () { + this.initialize(h.Bitmap249) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 23, 24); + (a.wva = function () { + this.initialize(h.Bitmap250) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 23, 25); + (a.xva = function () { + this.initialize(h.Bitmap251) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 24, 28); + (a.yva = function () { + this.initialize(h.Bitmap252) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 30, 31); + (a.zva = function () { + this.initialize(h.Bitmap253) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 29, 29); + (a.Ava = function () { + this.initialize(h.Bitmap254) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 27, 23); + (a.Bva = function () { + this.initialize(h.Bitmap255) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 28, 23); + (a.Cva = function () { + this.initialize(h.Bitmap256) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 26, 25); + (a.Dva = function () { + this.initialize(h.Bitmap257) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 22, 29); + (a.Eva = function () { + this.initialize(h.Bitmap258) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 37, 40); + (a.Fva = function () { + this.initialize(h.Bitmap259) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 25, 30); + (a.WB = function () { + this.initialize(h.Bitmap81) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 20); + (a.YL = function () { + this.initialize(h.BlackDotArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 14, 14); + (a.xAa = function () { + this.initialize(h.ClimbIcon1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 19, 18); + (a.Vt = function () { + this.initialize(h.closeButton) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 22, 22); + (a.Lpa = function () { + this.initialize(h.closeButtonFocus) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 22, 22); + (a.AT = function () { + this.initialize(h.controllerFocus) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 11); + (a.jab = function () { + this.initialize(h.controllerIdle) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 11); + (a.Jda = function () { + this.initialize(h.ControlsButtonBG) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 119, 21); + (a.wBa = function () { + this.initialize(h.ControlsFocus) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 26, 26); + (a.xBa = function () { + this.initialize(h.ControlsIdle) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 24, 24); + (a.mab = function () { + this.initialize(h.copyFocus) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 26, 26); + (a.nab = function () { + this.initialize(h.copyIdle) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 24, 24); + (a.dCa = function () { + this.initialize(h.DangoStickArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 133, 8); + (a.Bab = function () { + this.initialize(h.emailFocus) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 26, 26); + (a.Cab = function () { + this.initialize(h.emailIdle) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 24, 24); + (a.Fab = function () { + this.initialize(h.exitFocus) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 26, 26); + (a.Gab = function () { + this.initialize(h.exitIdle) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 24, 24); + (a.Hab = function () { + this.initialize(h.facebookFocus) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 26, 26); + (a.Iab = function () { + this.initialize(h.facebookIdle) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 24, 24); + (a.u2 = function () { + this.initialize(h.GreenDangoArt1) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 30, 30); + (a.v2 = function () { + this.initialize(h.GreenDangoArt2) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 22, 43); + (a.w2 = function () { + this.initialize(h.GreenDangoArt3) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 34, 27); + (a.OEa = function () { + this.initialize(h.HighlightDotArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 9, 9); + (a.OT = function () { + this.initialize(h.inariArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 16, 20); + (a.jbb = function () { + this.initialize(h.inariArt_1) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 16, 20); + (a.WV = function () { + this.initialize(h.InariArt2) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 17, 18); + (a.PT = function () { + this.initialize(h.indicatorAction) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 11, 11); + (a.QT = function () { + this.initialize(h.indicatorActionMobile) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 11, 11); + (a.RT = function () { + this.initialize(h.indicatorActionMobilePressed) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 11, 11); + (a.ST = + function () { + this.initialize(h.indicatorActionPressed) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 11, 10); + (a.TT = function () { + this.initialize(h.indicatorDown) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 11, 11); + (a.UT = function () { + this.initialize(h.indicatorJoystick) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 5, 5); + (a.VT = function () { + this.initialize(h.indicatorJoystickBase) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 11, 11); + (a.kbb = function () { + this.initialize(h.indicatorLeft) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 11, 11); + (a.WT = function () { + this.initialize(h.indicatorLeft_1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 11, 11); + (a.lbb = function () { + this.initialize(h.indicatorRight) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 11, 11); + (a.XT = function () { + this.initialize(h.indicatorRight_1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 11, 11); + (a.ZT = function () { + this.initialize(h.indicatorUp) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 11, 11); + (a.gM = function () { + this.initialize(h.KappaArt) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 16, 16); + (a.bFa = function () { + this.initialize(h.KappaArt_1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 16, 16); + (a.hM = function () { + this.initialize(h.KappaArt2) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 16, 17); + (a.aW = function () { + this.initialize(h.KarasuArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 16, 20); + (a.gFa = function () { + this.initialize(h.KarasuArt_1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 16, 20); + (a.bW = function () { + this.initialize(h.KarasuArt2) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 20); + (a.gU = function () { + this.initialize(h.keyboardFocus) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 19, 11); + (a.ubb = function () { + this.initialize(h.keyboardIdle) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 19, 11); + (a.yFa = function () { + this.initialize(h.Koma1Art) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 99, 49); + (a.AFa = function () { + this.initialize(h.Koma2Art) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 91, 51); + (a.pGa = function () { + this.initialize(h.LeaderFocus) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 26, 26); + (a.qGa = function () { + this.initialize(h.LeaderIdle) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 24, 24); + (a.lM = function () { + this.initialize(h.LuckyIdleS) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 22); + (a.ZJ = function () { + this.initialize(h.LuckyIdleSArt2) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 22); + (a.$J = function () { + this.initialize(h.LuckyIdleSArt3) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 22); + (a.Ep = function () { + this.initialize(h.LuckyLocationIconArt) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 14, 13); + (a.POa = function () { + this.initialize(h.MarathonIcon) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 19, 18); + (a.K_ = function () { + this.initialize(h.menuBG) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 308, 168); + (a.Nbb = function () { + this.initialize(h.menuBGMapBG) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 308, 168); + (a.jUa = function () { + this.initialize(h.NoStarsArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 18, 4); + (a.fVa = function () { + this.initialize(h.OneStarArt) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 19, 6); + (a.EWa = function () { + this.initialize(h.PinkDangoArt1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 30, 30); + (a.FWa = function () { + this.initialize(h.PinkDangoArt2) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 34, 27); + (a.GWa = function () { + this.initialize(h.PinkDangoArt3) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 22, 43); + (a.TWa = function () { + this.initialize(h.PongIcon1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 19, 18); + (a.ncb = function () { + this.initialize(h.replayFocus) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 26, 26); + (a.ocb = function () { + this.initialize(h.replayIdle) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 24, 24); + (a.Z0a = function () { + this.initialize(h.RugbyIcon11) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 19, 18); + (a.eL = function () { + this.initialize(h.ScrollRotateArt0) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 14, 14); + (a.fL = function () { + this.initialize(h.ScrollRotateArt1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 10, 14); + (a.gL = function () { + this.initialize(h.ScrollRotateArt2) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 6, 14); + (a.hL = function () { + this.initialize(h.ScrollRotateArt3) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 10, 14); + (a.iL = function () { + this.initialize(h.ScrollRotateArt4) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 14, 14); + (a.jL = function () { + this.initialize(h.ScrollRotateArt5) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 10, 14); + (a.kL = function () { + this.initialize(h.ScrollRotateArt6) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 7, 14); + (a.lL = function () { + this.initialize(h.ScrollRotateArt7) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 11, 14); + (a.pcb = function () { + this.initialize(h.searchFocus) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 26, 26); + (a.qcb = function () { + this.initialize(h.searchIdle) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 24, 24); + (a.jN = function () { + this.initialize(h.SelectedIconCircleArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 23, 22); + (a.z1a = function () { + this.initialize(h.SettingsFocus) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 26, 26); + (a.A1a = function () { + this.initialize(h.SettingsIdle) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 24, 24); + (a.ama = function () { + this.initialize(h.ShareFocus) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 26, 26); + (a.bma = function () { + this.initialize(h.ShareIdle) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 24, 24); + (a.C1a = function () { + this.initialize(h.ShareWindow) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 214, 66); + (a.n2a = function () { + this.initialize(h.SkateIcon1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 19, 18); + (a.Ecb = function () { + this.initialize(h.startBG1) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 92, 21); + (a.X3a = function () { + this.initialize(h.StatsMenuBGArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 120, 96); + (a.w4a = function () { + this.initialize(h.SwimIcon1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 19, 18); + (a.K5a = function () { + this.initialize(h.ThreeStarArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 6); + (a.vB = function () { + this.initialize(h.tutBG) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 308, 168); + (a.Rcb = function () { + this.initialize(h.twitterFocus) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 26, 26); + (a.Scb = function () { + this.initialize(h.twitterIdle) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 24, 24); + (a.J8a = function () { + this.initialize(h.TwoStarsArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 19, 6); + (a.y6 = function () { + this.initialize(h.UshiArt) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 16, 20); + (a.b9a = function () { + this.initialize(h.UshiArt_1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 16, 20); + (a.fY = function () { + this.initialize(h.UshiArt2) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 20, 19); + (a.Cx = function () { + this.initialize(h.valueBG) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 70, 13); + (a.rN = function () { + this.initialize(h.WhiteCircleFrameArt11) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 21, 20); + (a.vpa = function () { + this.initialize(h.YellowDangoArt1) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 30, 30); + (a.wpa = function () { + this.initialize(h.YellowDangoArt2) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 35, 27); + (a.xpa = function () { + this.initialize(h.YellowDangoArt3) + }).prototype = + c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 22, 43); + (a.$t = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.b9a; + this.instance.parent = this; + this.instance.setTransform(-8, -20); + this.g = new a.fY; + this.g.parent = this; + this.g.setTransform(-10, -19); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g}]}, 15).wait(15)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-10, -20, 20, 20); + (a.Xt = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.gFa; + this.instance.parent = + this; + this.instance.setTransform(-8, -20); + this.g = new a.bW; + this.g.parent = this; + this.g.setTransform(-10, -20); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g}]}, 15).wait(15)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-10, -20, 20, 20); + (a.Mw = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.bFa; + this.instance.parent = this; + this.instance.setTransform(-8, -16); + this.g = new a.hM; + this.g.parent = this; + this.g.setTransform(-8, -17); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g}]}, + 15).wait(15)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-8, -17, 16, 17); + (a.Uw = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.OT; + this.instance.parent = this; + this.instance.setTransform(-8, -20); + this.g = new a.WV; + this.g.parent = this; + this.g.setTransform(-8, -18); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g}]}, 15).wait(15)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-8, -20, 17, 20); + (a.cC = function (d, e, f) { + this.initialize(d, e, f, {}); + this.label = + new b.Text("Label", "10px 'PixelMplus10'", "#ffffff"); + this.label.name = "label"; + this.label.textAlign = "center"; + this.label.lineHeight = 11; + this.label.lineWidth = 118; + this.label.parent = this; + this.label.setTransform(0, -5); + this.timeline.addTween(b.Tween.get(this.label).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("#1d0900").s().p("AprBNIAAiaITXAAIAACag"); + this.shape.setTransform(0, -.25); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)) + }).prototype = k(a.cC, new b.Rectangle(-62, -8, 124, 16), null); + (a.oC = + function (d, e, f) { + this.initialize(d, e, f, {}); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(29,9,0,0.247)").s().p("AikClIAAlJIFJAAIAAFJg"); + this.shape.setTransform(-34.5, 19.5); + this.shape._off = ! 0; + this.timeline.addTween(b.Tween.get(this.shape).wait(15).to({_off: ! 1}, 0).to({_off: ! 0}, 9).wait(27).to({ + _off: ! 1, + x: 16.5 + }, 0).to({_off: ! 0}, 9).wait(27).to({_off: ! 1, x: 67.5}, 0).to({_off: ! 0}, 9).wait(27).to({ + _off: ! 1, + x: 118.5 + }, 0).to({_off: ! 0}, 9).wait(12)); + this.instance = new a.ZT; + this.instance.parent = this; + this.instance.setTransform(-51, + 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.instance).wait(15).to({y: 3}, 0).wait(9).to({y: 0}, 0).wait(120)); + this.g = new a.TT; + this.g.parent = this; + this.g.setTransform(0, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.g).wait(51).to({y: 3}, 0).wait(9).to({y: 0}, 0).wait(84)); + this.i = new a.WT; + this.i.parent = this; + this.i.setTransform(51, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.i).wait(87).to({y: 3}, 0).wait(9).to({y: 0}, 0).wait(48)); + this.o = new a.XT; + this.o.parent = this; + this.o.setTransform(102, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.o).wait(123).to({y: 3}, + 0).wait(9).to({y: 0}, 0).wait(12)); + d = new b.Shape; + d._off = ! 0; + d.graphics.p("AkrHgIAAu/IJXAAIAAO/g"); + d.setTransform(-9, -66); + this.H = new a.Yua; + this.H.parent = this; + this.H.setTransform(-33, -30, 3, 3); + this.H._off = ! 0; + this.O = new a.Zua; + this.O.parent = this; + this.O.setTransform(-33, -30, 3, 3); + this.O._off = ! 0; + this.$ = new a.$ua; + this.$.parent = this; + this.$.setTransform(-33, -30, 3, 3); + this.$._off = ! 0; + this.ka = new a.ava; + this.ka.parent = this; + this.ka.setTransform(-33, -30, 3, 3); + this.ka._off = ! 0; + e = [this.H, this.O, this.$, this.ka]; + for (f = 0; f < + e.length; f++) e[f].mask = d; + this.timeline.addTween(b.Tween.get(this.H).wait(3).to({_off: ! 1}, 0).wait(3).to({y: -42}, 0).wait(3).to({y: -54}, 0).wait(3).to({y: -66}, 0).wait(3).to({y: -78}, 0).wait(3).to({y: -90}, 0).wait(3).to({y: -102}, 0).wait(3).to({y: -114}, 0).wait(3).to({y: -126}, 0).wait(3).to({y: -138}, 0).wait(3).to({y: -150}, 0).to({_off: ! 0}, 3).wait(108)); + this.timeline.addTween(b.Tween.get(this.O).wait(39).to({_off: ! 1}, 0).wait(3).to({y: -42}, 0).wait(3).to({y: -54}, 0).wait(3).to({y: -66}, 0).wait(3).to({y: -78}, 0).wait(3).to({y: -90}, + 0).wait(3).to({y: -102}, 0).wait(3).to({y: -114}, 0).wait(3).to({y: -126}, 0).wait(3).to({y: -138}, 0).wait(3).to({y: -150}, 0).to({_off: ! 0}, 3).wait(72)); + this.timeline.addTween(b.Tween.get(this.$).wait(75).to({_off: ! 1}, 0).wait(3).to({y: -42}, 0).wait(3).to({y: -54}, 0).wait(3).to({y: -66}, 0).wait(3).to({y: -78}, 0).wait(3).to({y: -90}, 0).wait(3).to({y: -102}, 0).wait(3).to({y: -114}, 0).wait(3).to({y: -126}, 0).wait(3).to({y: -138}, 0).wait(3).to({y: -150}, 0).to({_off: ! 0}, 3).wait(36)); + this.timeline.addTween(b.Tween.get(this.ka).wait(111).to({_off: ! 1}, + 0).wait(3).to({y: -42}, 0).wait(3).to({y: -54}, 0).wait(3).to({y: -66}, 0).wait(3).to({y: -78}, 0).wait(3).to({y: -90}, 0).wait(3).to({y: -102}, 0).wait(3).to({y: -114}, 0).wait(3).to({y: -126}, 0).wait(3).to({y: -138}, 0).wait(3).to({y: -150}, 0).wait(3)); + this.ta = new a.Vua; + this.ta.parent = this; + this.ta.setTransform(63, -111, 3, 3); + this.va = new a.Wua; + this.va.parent = this; + this.va.setTransform(63, -111, 3, 3); + this.wa = new a.Xua; + this.wa.parent = this; + this.wa.setTransform(66, -111, 3, 3); + this.ya = new a.bva; + this.ya.parent = this; + this.ya.setTransform(63, + -111, 3, 3); + this.Aa = new a.dva; + this.Aa.parent = this; + this.Aa.setTransform(66, -105, 3, 3); + this.Ba = new a.eva; + this.Ba.parent = this; + this.Ba.setTransform(51, -111, 3, 3); + this.Da = new a.fva; + this.Da.parent = this; + this.Da.setTransform(60, -117, 3, 3); + this.Ea = new a.gva; + this.Ea.parent = this; + this.Ea.setTransform(66, -111, 3, 3); + this.Ga = new a.hva; + this.Ga.parent = this; + this.Ga.setTransform(63, -117, 3, 3); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.ta}]}).to({state: [{t: this.va}]}, 15).to({state: [{t: this.wa}]}, 3).to({state: [{t: this.va}]}, + 6).to({state: [{t: this.ta}]}, 3).to({state: [{t: this.ya}]}, 24).to({state: [{t: this.Aa}]}, 3).to({state: [{t: this.ya}]}, 6).to({state: [{t: this.ta}]}, 3).to({state: [{t: this.Ba}]}, 24).to({state: [{t: this.Da}]}, 3).to({state: [{t: this.Ba}]}, 6).to({state: [{t: this.ta}]}, 3).to({state: [{t: this.Ea}]}, 24).to({state: [{t: this.Ga}]}, 3).to({state: [{t: this.Ea}]}, 6).to({state: [{t: this.ta}]}, 3).wait(9)); + this.timeline.addTween(b.Tween.get(this.ta).to({_off: ! 0}, 15).wait(12).to({_off: ! 1}, 0).to({_off: ! 0}, 24).wait(12).to({_off: ! 1}, + 0).to({_off: ! 0}, 24).wait(12).to({_off: ! 1}, 0).to({_off: ! 0}, 24).wait(12).to({_off: ! 1}, 0).wait(9)); + this.Ha = new a.Tua; + this.Ha.parent = this; + this.Ha.setTransform(-39, -114, 3, 3); + this.timeline.addTween(b.Tween.get(this.Ha).wait(144)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-51, -117, 186, 153); + (a.T5 = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.yva; + this.instance.parent = this; + this.instance.setTransform(-15, -31); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)) + }).prototype = k(a.T5, + new b.Rectangle(-15, -31, 30, 31), null); + (a.R5 = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.xva; + this.instance.parent = this; + this.instance.setTransform(-12, -28); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)) + }).prototype = k(a.R5, new b.Rectangle(-12, -28, 24, 28), null); + (a.z5 = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.wva; + this.instance.parent = this; + this.instance.setTransform(-43, -35); + this.g = new a.vva; + this.g.parent = this; + this.g.setTransform(14, -34); + this.i = new a.uva; + this.i.parent = this; + this.i.setTransform(-10, -27); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.i}, {t: this.g}, {t: this.instance}]}).wait(1)) + }).prototype = k(a.z5, new b.Rectangle(-43, -35, 80, 34), null); + (a.vka = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.zva; + this.instance.parent = this; + this.instance.setTransform(-3, -29); + this.g = new a.Ava; + this.g.parent = this; + this.g.setTransform(-4, -28); + this.i = new a.Bva; + this.i.parent = this; + this.i.setTransform(-9, -23); + this.o = new a.Cva; + this.o.parent = this; + this.o.setTransform(-8, -32); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g}]}, 7).to({state: [{t: this.i}]}, 4).to({state: [{t: this.o}]}, 7).wait(5)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-9, -32, 35, 32); + (a.pka = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.Dva; + this.instance.parent = this; + this.instance.setTransform(-11, -29); + this.g = new a.Eva; + this.g.parent = this; + this.g.setTransform(-8, -33); + this.i = new a.Fva; + this.i.parent = this; + this.i.setTransform(-5, + -20); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance, p: {y: -29}}]}).to({ + state: [{ + t: this.instance, + p: {y: -31} + }] + }, 24).to({state: [{t: this.g}]}, 3).to({state: [{t: this.i}]}, 1).wait(19)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-11, -33, 40, 43); + (a.Bia = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.mva; + this.instance.parent = this; + this.instance.setTransform(-3, -22); + this.g = new a.nva; + this.g.parent = this; + this.g.setTransform(-3, -23); + this.i = new a.ova; + this.i.parent = this; + this.i.setTransform(-3, + -21); + this.o = new a.pva; + this.o.parent = this; + this.o.setTransform(0, -22); + this.H = new a.qva; + this.H.parent = this; + this.H.setTransform(0, -23); + this.O = new a.rva; + this.O.parent = this; + this.O.setTransform(-1, -21); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g}]}, 3).to({state: [{t: this.i}]}, 3).to({state: [{t: this.o}]}, 3).to({state: [{t: this.H}]}, 3).to({state: [{t: this.O}]}, 3).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-3, -23, 20, 24); + (a.AW = function (d, e, f) { + this.initialize(d, + e, f, {}); + this.instance = new a.sva; + this.instance.parent = this; + this.instance.setTransform(-12, -23); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)) + }).prototype = k(a.AW, new b.Rectangle(-12, -23, 24, 23), null); + (a.y3 = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.tva; + this.instance.parent = this; + this.instance.setTransform(-11.5, -23); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)) + }).prototype = k(a.y3, new b.Rectangle(-11.5, -23, 23, 23), null); + (a.rT = function (d, e, f) { + this.initialize(d, + e, f, {}); + this.instance = new a.mca; + this.instance.parent = this; + this.instance.setTransform(302, -111, 3, 3); + this.g = new a.nca; + this.g.parent = this; + this.g.setTransform(302, -111, 3, 3); + this.i = new a.oca; + this.i.parent = this; + this.i.setTransform(302, -111, 3, 3); + this.o = new a.qca; + this.o.parent = this; + this.o.setTransform(302, -111, 3, 3); + this.H = new a.rca; + this.H.parent = this; + this.H.setTransform(305, -111, 3, 3); + this.O = new a.sca; + this.O.parent = this; + this.O.setTransform(305, -111, 3, 3); + this.$ = new a.tca; + this.$.parent = this; + this.$.setTransform(305, + -111, 3, 3); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g}]}, 6).to({state: [{t: this.i}]}, 3).to({state: [{t: this.o}]}, 3).to({state: [{t: this.H}]}, 3).to({state: [{t: this.O}]}, 3).to({state: [{t: this.$}]}, 3).to({state: [{t: this.instance}]}, 3).to({state: [{t: this.g}]}, 6).to({state: [{t: this.i}]}, 3).to({state: [{t: this.o}]}, 3).to({state: [{t: this.H}]}, 3).to({state: [{t: this.O}]}, 3).to({state: [{t: this.$}]}, 3).wait(3)); + this.ka = new a.uua; + this.ka.parent = this; + this.ka.setTransform(-10, + -111, 3, 3); + this.ta = new a.wua; + this.ta.parent = this; + this.ta.setTransform(-1, -111, 3, 3); + this.va = new a.yua; + this.va.parent = this; + this.va.setTransform(8, -111, 3, 3); + this.wa = new a.Aua; + this.wa.parent = this; + this.wa.setTransform(17, -111, 3, 3); + this.ya = new a.Cua; + this.ya.parent = this; + this.ya.setTransform(26, -111, 3, 3); + this.Aa = new a.Eua; + this.Aa.parent = this; + this.Aa.setTransform(35, -111, 3, 3); + this.Ba = new a.Gua; + this.Ba.parent = this; + this.Ba.setTransform(44, -111, 3, 3); + this.Da = new a.Iua; + this.Da.parent = this; + this.Da.setTransform(47, + -111, 3, 3); + this.Ea = new a.Kua; + this.Ea.parent = this; + this.Ea.setTransform(38, -111, 3, 3); + this.Ga = new a.Mua; + this.Ga.parent = this; + this.Ga.setTransform(29, -111, 3, 3); + this.Ha = new a.Oua; + this.Ha.parent = this; + this.Ha.setTransform(20, -111, 3, 3); + this.Ia = new a.Qua; + this.Ia.parent = this; + this.Ia.setTransform(11, -111, 3, 3); + this.Ja = new a.Sua; + this.Ja.parent = this; + this.Ja.setTransform(2, -111, 3, 3); + this.Ka = new a.sua; + this.Ka.parent = this; + this.Ka.setTransform(-19, -111, 3, 3); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.ka}]}).to({state: [{t: this.ta}]}, + 3).to({state: [{t: this.va}]}, 3).to({state: [{t: this.wa}]}, 3).to({state: [{t: this.ya}]}, 3).to({state: [{t: this.Aa}]}, 3).to({state: [{t: this.Ba}]}, 3).to({state: [{t: this.Da}]}, 6).to({state: [{t: this.Ea}]}, 3).to({state: [{t: this.Ga}]}, 3).to({state: [{t: this.Ha}]}, 3).to({state: [{t: this.Ia}]}, 3).to({state: [{t: this.Ja}]}, 3).to({state: [{t: this.Ka}]}, 3).wait(6)); + this.La = new a.RT; + this.La.parent = this; + this.La.setTransform(316, 3, 2.9999, 2.9999); + this.Ma = new a.QT; + this.Ma.parent = this; + this.Ma.setTransform(316, 0, 3, 3); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.La}]}).to({state: [{t: this.Ma}]}, + 6).to({state: [{t: this.La}]}, 18).to({state: [{t: this.Ma}]}, 6).wait(18)); + this.Na = new a.UT; + this.Na.parent = this; + this.Na.setTransform(37, 9, 3, 3); + this.timeline.addTween(b.Tween.get(this.Na).wait(3).to({x: 49}, 0).wait(12).to({x: 46}, 0).wait(3).to({x: 34}, 0).wait(5).to({x: 31}, 0).wait(1).to({x: 22}, 0).wait(3).to({x: 19}, 0).wait(12).to({x: 22}, 0).wait(3).to({x: 34}, 0).wait(5).to({x: 37}, 0).wait(1)); + this.Oa = new a.VT; + this.Oa.parent = this; + this.Oa.setTransform(25, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.Oa).wait(48)) + }).prototype = + c = new b.MovieClip; + c.j = new b.Rectangle(-19, -111, 381, 147); + (a.qT = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.mca; + this.instance.parent = this; + this.instance.setTransform(302, -111, 3, 3); + this.g = new a.nca; + this.g.parent = this; + this.g.setTransform(302, -111, 3, 3); + this.i = new a.oca; + this.i.parent = this; + this.i.setTransform(302, -111, 3, 3); + this.o = new a.qca; + this.o.parent = this; + this.o.setTransform(302, -111, 3, 3); + this.H = new a.rca; + this.H.parent = this; + this.H.setTransform(305, -111, 3, 3); + this.O = new a.sca; + this.O.parent = + this; + this.O.setTransform(305, -111, 3, 3); + this.$ = new a.tca; + this.$.parent = this; + this.$.setTransform(305, -111, 3, 3); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g}]}, 6).to({state: [{t: this.i}]}, 3).to({state: [{t: this.o}]}, 3).to({state: [{t: this.H}]}, 3).to({state: [{t: this.O}]}, 3).to({state: [{t: this.$}]}, 3).to({state: [{t: this.instance}]}, 3).to({state: [{t: this.g}]}, 6).to({state: [{t: this.i}]}, 3).to({state: [{t: this.o}]}, 3).to({state: [{t: this.H}]}, 3).to({state: [{t: this.O}]}, + 3).to({state: [{t: this.$}]}, 3).wait(3)); + this.ka = new a.tua; + this.ka.parent = this; + this.ka.setTransform(-10, -111, 3, 3); + this.ta = new a.vua; + this.ta.parent = this; + this.ta.setTransform(-1, -111, 3, 3); + this.va = new a.xua; + this.va.parent = this; + this.va.setTransform(8, -111, 3, 3); + this.wa = new a.zua; + this.wa.parent = this; + this.wa.setTransform(17, -111, 3, 3); + this.ya = new a.Bua; + this.ya.parent = this; + this.ya.setTransform(26, -111, 3, 3); + this.Aa = new a.Dua; + this.Aa.parent = this; + this.Aa.setTransform(35, -111, 3, 3); + this.Ba = new a.Fua; + this.Ba.parent = + this; + this.Ba.setTransform(44, -110, 3, 3); + this.Da = new a.Hua; + this.Da.parent = this; + this.Da.setTransform(47, -111, 3, 3); + this.Ea = new a.Jua; + this.Ea.parent = this; + this.Ea.setTransform(38, -111, 3, 3); + this.Ga = new a.Lua; + this.Ga.parent = this; + this.Ga.setTransform(29, -112, 3, 3); + this.Ha = new a.Nua; + this.Ha.parent = this; + this.Ha.setTransform(20, -111, 3, 3); + this.Ia = new a.Pua; + this.Ia.parent = this; + this.Ia.setTransform(11, -111, 3, 3); + this.Ja = new a.Rua; + this.Ja.parent = this; + this.Ja.setTransform(2, -111, 3, 3); + this.Ka = new a.rua; + this.Ka.parent = + this; + this.Ka.setTransform(-19, -111, 3, 3); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.ka}]}).to({state: [{t: this.ta}]}, 3).to({state: [{t: this.va}]}, 3).to({state: [{t: this.wa}]}, 3).to({state: [{t: this.ya}]}, 3).to({state: [{t: this.Aa}]}, 3).to({state: [{t: this.Ba}]}, 3).to({state: [{t: this.Da}]}, 6).to({state: [{t: this.Ea}]}, 3).to({state: [{t: this.Ga}]}, 3).to({state: [{t: this.Ha}]}, 3).to({state: [{t: this.Ia}]}, 3).to({state: [{t: this.Ja}]}, 3).to({state: [{t: this.Ka}]}, 3).wait(6)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(29,9,0,0.247)").s().p("AikClIAAlJIFJAAIAAFJg"); + this.shape.setTransform(332.5, 16.5); + this.timeline.addTween(b.Tween.get(this.shape).to({_off: ! 0}, 6).wait(18).to({_off: ! 1}, 0).to({_off: ! 0}, 6).wait(18)); + this.La = new a.ST; + this.La.parent = this; + this.La.setTransform(316, 3, 3, 3); + this.Ma = new a.PT; + this.Ma.parent = this; + this.Ma.setTransform(316, 0, 3, 3); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.La}]}).to({state: [{t: this.Ma}]}, 6).to({state: [{t: this.La}]}, 18).to({state: [{t: this.Ma}]}, + 6).wait(18)); + this.Ze = new b.Shape; + this.Ze.graphics.f("rgba(29,9,0,0.247)").s().p("AikClIAAlJIFJAAIAAFJg"); + this.Ze.setTransform(67.5, 19.5); + this.timeline.addTween(b.Tween.get(this.Ze).to({_off: ! 0}, 18).wait(6).to({ + _off: ! 1, + x: 16.5 + }, 0).to({_off: ! 0}, 18).wait(6)); + this.Na = new a.kbb; + this.Na.parent = this; + this.Na.setTransform(0, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.Na).wait(24).to({y: 3}, 0).wait(18).to({y: 0}, 0).wait(6)); + this.Oa = new a.lbb; + this.Oa.parent = this; + this.Oa.setTransform(51, 3, 3, 3); + this.timeline.addTween(b.Tween.get(this.Oa).wait(18).to({y: 0}, + 0).wait(30)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-19, -112, 381, 148); + (a.$4a = function (d, e, f) { + this.initialize(d, e, f, {blue: 0, red: 1, green: 2, yellow: 3, none: 4}); + this.u = function () { + this.T = { + storageSprite: { + condition1: "$PLAYER_TEAM == 'blue'", + frame1: "blue", + condition2: "$PLAYER_TEAM == 'red'", + frame2: "red", + condition3: "$PLAYER_TEAM == 'yellow'", + frame3: "yellow", + condition4: "$PLAYER_TEAM == 'green'", + frame4: "green", + condition5: "", + frame5: "none" + } + }; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(5)); + this.instance = new a.y6; + this.instance.parent = this; + this.instance.setTransform(-8, -20); + this.g = new a.aW; + this.g.parent = this; + this.g.setTransform(-8, -20); + this.i = new a.gM; + this.i.parent = this; + this.i.setTransform(-8, -16); + this.o = new a.jbb; + this.o.parent = this; + this.o.setTransform(-10, -20); + this.text = new b.Text("?", "10px 'PixelMplus10'", "#ffffff"); + this.text.textAlign = "center"; + this.text.lineHeight = 11; + this.text.parent = this; + this.text.setTransform(1.1, -16); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g}]}, + 1).to({state: [{t: this.i}]}, 1).to({state: [{t: this.o}]}, 1).to({state: [{t: this.text}]}, 1).wait(1)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-10, -20, 18, 20); + (a.lN = function (d, e, f) { + this.initialize(d, e, f, {"0star": 0, "1star": 1, "2star": 2, "3star": 3}); + this.u = function () { + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(4)); + this.instance = new a.jUa; + this.instance.parent = this; + this.instance.setTransform(-9, -5); + this.g = new a.fVa; + this.g.parent = this; + this.g.setTransform(-10, -6); + this.i = new a.J8a; + this.i.parent = this; + this.i.setTransform(-10, -6); + this.o = new a.K5a; + this.o.parent = this; + this.o.setTransform(-10, -6); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g}]}, 1).to({state: [{t: this.i}]}, 1).to({state: [{t: this.o}]}, 1).wait(1)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-10, -6, 20, 6); + (a.Dm = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.eL; + this.instance.parent = this; + this.instance.setTransform(-7, -14); + this.g = new a.fL; + this.g.parent = this; + this.g.setTransform(-5, -14); + this.i = new a.gL; + this.i.parent = this; + this.i.setTransform(-3, -14); + this.o = new a.hL; + this.o.parent = this; + this.o.setTransform(-5, -14); + this.H = new a.iL; + this.H.parent = this; + this.H.setTransform(-7, -14); + this.O = new a.jL; + this.O.parent = this; + this.O.setTransform(-5, -14); + this.$ = new a.kL; + this.$.parent = this; + this.$.setTransform(-3.5, -14); + this.ka = new a.lL; + this.ka.parent = this; + this.ka.setTransform(-5.5, -14); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g}]}, + 5).to({state: [{t: this.i}]}, 5).to({state: [{t: this.o}]}, 5).to({state: [{t: this.H}]}, 5).to({state: [{t: this.O}]}, 5).to({state: [{t: this.$}]}, 5).to({state: [{t: this.ka}]}, 5).wait(5)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-7, -14, 14, 14); + (a.OM = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.OEa; + this.instance.parent = this; + this.timeline.addTween(b.Tween.get(this.instance).to({_off: ! 0}, 15).wait(16)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(0, 0, 9, 9); + (a.nIa = function (d, e, f) { + this.initialize(d, + e, f, {}); + this.instance = new a.Ep; + this.instance.parent = this; + this.instance.setTransform(-7, -8); + this.timeline.addTween(b.Tween.get(this.instance).wait(30)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-7, -8, 14, 13); + (a.JB = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.lM; + this.instance.parent = this; + this.instance.setTransform(-11, -20); + this.g = new a.ZJ; + this.g.parent = this; + this.g.setTransform(-11, -20); + this.i = new a.$J; + this.i.parent = this; + this.i.setTransform(-11, -20); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g}]}, + 27).to({state: [{t: this.i}]}, 1).to({state: [{t: this.instance}]}, 2).to({state: [{t: this.g}]}, 2).to({state: [{t: this.i}]}, 2).to({state: [{t: this.instance}]}, 4).wait(23)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-11, -20, 18, 22); + (a.Si = function (d, e, f) { + this.initialize(d, e, f, {}); + this.shape = new b.Shape; + this.shape.graphics.f("#ff0000").s().p("AwjH+IAAv7MAhHAAAIAAP7g"); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)) + }).prototype = k(a.Si, new b.Rectangle(-106, -51, 212, 102), null); + (a.wV = function (d, e, f) { + this.initialize(d, + e, f, {}); + this.instance = new a.dCa; + this.instance.parent = this; + this.instance.setTransform(0, -4); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)) + }).prototype = k(a.wV, new b.Rectangle(0, -4, 133, 8), null); + (a.mJ = function (d, e, f) { + this.initialize(d, e, f, {}); + this.Ze = new b.Shape; + this.Ze.graphics.f("#ff0000").s().p("AwjH+IAAv7MAhHAAAIAAP7g"); + this.timeline.addTween(b.Tween.get(this.Ze).wait(1)) + }).prototype = k(a.mJ, new b.Rectangle(-106, -51, 212, 102), null); + (a.lX = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = + new a.EK; + this.instance.parent = this; + this.instance.setTransform(-1.5, -2.5); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)) + }).prototype = k(a.lX, new b.Rectangle(-1.5, -2.5, 3, 5), null); + (a.Map = function (d, e, f) { + this.initialize(d, e, f, {}); + this.Gf = new a.nIa; + this.Gf.name = "player"; + this.Gf.parent = this; + this.Gf.setTransform(59, 70); + this.timeline.addTween(b.Tween.get(this.Gf).wait(1)); + this.instance = new a.X3a; + this.instance.parent = this; + this.timeline.addTween(b.Tween.get(this.instance).wait(1)) + }).prototype = k(a.Map, + new b.Rectangle(0, 0, 120, 96), null); + (a.mB = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "start"}, keyboardNav: {order: 2}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.label = new b.Text("OKAY", "20px 'PixelMplus10'", "#af824a"); + this.label.name = "label"; + this.label.textAlign = "center"; + this.label.lineHeight = 24; + this.label.lineWidth = 120; + this.label.parent = this; + this.label.setTransform(-2, -22.15, 1.9341, 1.9341); + this.timeline.addTween(b.Tween.get(this.label).wait(1).to({color: "#ffffff"}, + 0).wait(2)); + this.instance = new a.Ep; + this.instance.parent = this; + this.instance.setTransform(-189, -20, 3, 3); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.g = new a.Ecb; + this.g.parent = this; + this.g.setTransform(-141, -32, 3, 3); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, 0).wait(2)); + this.hitArea = new a.mJ; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(-.25, 0, 1.1284, .49, 0, 0, 0, -.2, 0); + this.hitArea.visible = + ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-189, -32, 324, 63); + (a.Doa = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {menu: {id: "tutArcheryMobile"}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.Bf = new a.mB; + this.Bf.name = "continueButton"; + this.Bf.parent = this; + this.Bf.setTransform(3, 194.1, 1, 1, 0, 0, 0, .2, .1); + this.timeline.addTween(b.Tween.get(this.Bf).wait(1)); + this.Bd = new b.Text("Action Button\nto Shoot", + "30px 'PixelMplus10'", "#ede4b5"); + this.Bd.name = "control2"; + this.Bd.textAlign = "center"; + this.Bd.lineHeight = 36; + this.Bd.lineWidth = 242; + this.Bd.parent = this; + this.Bd.setTransform(291, 51); + this.Ad = new b.Text("Joystick\nto Move", "30px 'PixelMplus10'", "#ede4b5"); + this.Ad.name = "control1"; + this.Ad.textAlign = "center"; + this.Ad.lineHeight = 36; + this.Ad.lineWidth = 244; + this.Ad.parent = this; + this.Ad.setTransform(1, 51); + this.Cd = new b.Text("Hit targets to outscore the champion before time runs out", "30px 'PixelMplus10'", "#af8147"); + this.Cd.name = "rulesContent"; + this.Cd.textAlign = "center"; + this.Cd.lineHeight = 36; + this.Cd.lineWidth = 241; + this.Cd.parent = this; + this.Cd.setTransform(-291.5, -57); + this.Dd = new b.Text("Rules", "30px 'PixelMplus10'", "#ede4b5"); + this.Dd.name = "rulesLabel"; + this.Dd.textAlign = "center"; + this.Dd.lineHeight = 36; + this.Dd.lineWidth = 241; + this.Dd.parent = this; + this.Dd.setTransform(-291.5, -111); + this.title = new b.Text("Archery", "60px 'PixelMplus10'", "#ede4b5"); + this.title.name = "title"; + this.title.textAlign = "center"; + this.title.lineHeight = + 68; + this.title.lineWidth = 853; + this.title.parent = this; + this.title.setTransform(-.5, -225); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.title}, {t: this.Dd}, {t: this.Cd}, {t: this.Ad}, {t: this.Bd}]}).wait(1)); + this.rT = new a.rT; + this.rT.name = "archerySpritesMobile"; + this.rT.parent = this; + this.rT.setTransform(-25.5, 16.5, 1, 1, 0, 0, 0, 16.5, 16.5); + this.timeline.addTween(b.Tween.get(this.rT).wait(1)); + this.instance = new a.vB; + this.instance.parent = this; + this.instance.setTransform(-462, -252, 3, 3); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(0,0,0,0.749)").s().p("EhK/AqMMAAAhUXMCV/AAAMAAABUXg"); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)) + }).prototype = k(a.Doa, new b.Rectangle(-480, -270, 960, 540), null); + (a.Coa = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {menu: {id: "tutArcheryDesktop"}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.Bf = new a.mB; + this.Bf.name = "continueButton"; + this.Bf.parent = this; + this.Bf.setTransform(3, 194.1, 1, 1, 0, 0, 0, .2, + .1); + this.timeline.addTween(b.Tween.get(this.Bf).wait(1)); + this.Bd = new b.Text("Spacebar\nto Shoot", "30px 'PixelMplus10'", "#ede4b5"); + this.Bd.name = "control2"; + this.Bd.textAlign = "center"; + this.Bd.lineHeight = 36; + this.Bd.lineWidth = 242; + this.Bd.parent = this; + this.Bd.setTransform(291, 51); + this.Ad = new b.Text("Left and Right\nto Move", "30px 'PixelMplus10'", "#ede4b5"); + this.Ad.name = "control1"; + this.Ad.textAlign = "center"; + this.Ad.lineHeight = 36; + this.Ad.lineWidth = 244; + this.Ad.parent = this; + this.Ad.setTransform(1, 51); + this.Cd = + new b.Text("Hit targets to outscore the champion before time runs out", "30px 'PixelMplus10'", "#af8147"); + this.Cd.name = "rulesContent"; + this.Cd.textAlign = "center"; + this.Cd.lineHeight = 36; + this.Cd.lineWidth = 241; + this.Cd.parent = this; + this.Cd.setTransform(-291.5, -57); + this.Dd = new b.Text("Rules", "30px 'PixelMplus10'", "#ede4b5"); + this.Dd.name = "rulesLabel"; + this.Dd.textAlign = "center"; + this.Dd.lineHeight = 36; + this.Dd.lineWidth = 241; + this.Dd.parent = this; + this.Dd.setTransform(-291.5, -111); + this.title = new b.Text("Archery", "60px 'PixelMplus10'", + "#ede4b5"); + this.title.name = "title"; + this.title.textAlign = "center"; + this.title.lineHeight = 68; + this.title.lineWidth = 853; + this.title.parent = this; + this.title.setTransform(-.5, -225); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.title}, {t: this.Dd}, {t: this.Cd}, {t: this.Ad}, {t: this.Bd}]}).wait(1)); + this.qT = new a.qT; + this.qT.name = "archerySpritesDesktop"; + this.qT.parent = this; + this.qT.setTransform(-25.5, 16.5, 1, 1, 0, 0, 0, 16.5, 16.5); + this.timeline.addTween(b.Tween.get(this.qT).wait(1)); + this.instance = new a.vB; + this.instance.parent = + this; + this.instance.setTransform(-462, -252, 3, 3); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(0,0,0,0.749)").s().p("EhK/AqMMAAAhUXMCV/AAAMAAABUXg"); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)) + }).prototype = k(a.Coa, new b.Rectangle(-480, -270, 960, 540), null); + (a.AU = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.T5; + this.instance.parent = this; + this.instance.setTransform(325, -68, 3, 3, 0, 0, 0, 0, -15.5); + this.timeline.addTween(b.Tween.get(this.instance).wait(48)); + this.g = new a.R5; + this.g.parent = this; + this.g.setTransform(40, -67, 3, 3, 0, 0, 0, 0, -14); + this.timeline.addTween(b.Tween.get(this.g).wait(48)); + this.i = new a.RT; + this.i.parent = this; + this.i.setTransform(316, 3, 2.9999, 2.9999); + this.o = new a.QT; + this.o.parent = this; + this.o.setTransform(316, 0, 3, 3); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.i}]}).to({state: [{t: this.o}]}, 6).to({state: [{t: this.i}]}, 18).to({state: [{t: this.o}]}, 6).wait(18)); + this.H = new a.UT; + this.H.parent = this; + this.H.setTransform(37, 9, 3, 3); + this.timeline.addTween(b.Tween.get(this.H).wait(3).to({x: 49}, + 0).wait(12).to({x: 46}, 0).wait(3).to({x: 34}, 0).wait(5).to({x: 31}, 0).wait(1).to({x: 22}, 0).wait(3).to({x: 19}, 0).wait(12).to({x: 22}, 0).wait(3).to({x: 34}, 0).wait(5).to({x: 37}, 0).wait(1)); + this.O = new a.VT; + this.O.parent = this; + this.O.setTransform(25, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.O).wait(48)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-19, -114.5, 389, 150.5); + (a.zU = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.T5; + this.instance.parent = this; + this.instance.setTransform(325, -68, + 3, 3, 0, 0, 0, 0, -15.5); + this.timeline.addTween(b.Tween.get(this.instance).wait(48)); + this.g = new a.R5; + this.g.parent = this; + this.g.setTransform(40, -67, 3, 3, 0, 0, 0, 0, -14); + this.timeline.addTween(b.Tween.get(this.g).wait(48)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(29,9,0,0.247)").s().p("AikClIAAlJIFJAAIAAFJg"); + this.shape.setTransform(332.5, 16.5); + this.shape._off = ! 0; + this.timeline.addTween(b.Tween.get(this.shape).wait(24).to({_off: ! 1}, 0).to({_off: ! 0}, 6).wait(18)); + this.i = new a.PT; + this.i.parent = this; + this.i.setTransform(316, + 0, 3, 3); + this.o = new a.ST; + this.o.parent = this; + this.o.setTransform(316, 3, 3, 3); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.i}]}).to({state: [{t: this.o}]}, 24).to({state: [{t: this.i}]}, 6).wait(18)); + this.Ze = new b.Shape; + this.Ze.graphics.f("rgba(29,9,0,0.247)").s().p("AikClIAAlJIFJAAIAAFJg"); + this.Ze.setTransform(-34.5, 19.5); + this.timeline.addTween(b.Tween.get(this.Ze).wait(48)); + this.H = new a.ZT; + this.H.parent = this; + this.H.setTransform(-51, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.H).wait(48)); + this.O = + new a.TT; + this.O.parent = this; + this.O.setTransform(0, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.O).wait(48)); + this.$ = new a.WT; + this.$.parent = this; + this.$.setTransform(51, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.$).wait(48)); + this.ka = new a.XT; + this.ka.parent = this; + this.ka.setTransform(102, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.ka).wait(48)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-51, -114.5, 421, 150.5); + (a.xU = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.z5; + this.instance.parent = + this; + this.instance.setTransform(332.5, -48, 3, 3, 0, 0, 0, 0, -13); + this.timeline.addTween(b.Tween.get(this.instance).wait(48)); + this.g = new a.y3; + this.g.parent = this; + this.g.setTransform(33, -57, 3, 3, 0, 0, 0, 0, -11.5); + this.timeline.addTween(b.Tween.get(this.g).wait(48)); + this.i = new a.RT; + this.i.parent = this; + this.i.setTransform(316, 3, 2.9999, 2.9999); + this.o = new a.QT; + this.o.parent = this; + this.o.setTransform(316, 0, 3, 3); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.i}]}).to({state: [{t: this.o}]}, 6).to({state: [{t: this.i}]}, + 18).to({state: [{t: this.o}]}, 6).wait(18)); + this.H = new a.UT; + this.H.parent = this; + this.H.setTransform(37, 9, 3, 3); + this.timeline.addTween(b.Tween.get(this.H).wait(3).to({x: 49}, 0).wait(12).to({x: 46}, 0).wait(3).to({x: 34}, 0).wait(5).to({x: 31}, 0).wait(1).to({x: 22}, 0).wait(3).to({x: 19}, 0).wait(12).to({x: 22}, 0).wait(3).to({x: 34}, 0).wait(5).to({x: 37}, 0).wait(1)); + this.O = new a.VT; + this.O.parent = this; + this.O.setTransform(25, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.O).wait(48)) + }).prototype = c = new b.MovieClip; + c.j = + new b.Rectangle(-19, -114, 462.5, 150); + (a.wU = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.z5; + this.instance.parent = this; + this.instance.setTransform(332.5, -48, 3, 3, 0, 0, 0, 0, -13); + this.timeline.addTween(b.Tween.get(this.instance).wait(48)); + this.g = new a.y3; + this.g.parent = this; + this.g.setTransform(33, -57, 3, 3, 0, 0, 0, 0, -11.5); + this.timeline.addTween(b.Tween.get(this.g).wait(48)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(29,9,0,0.247)").s().p("AikClIAAlJIFJAAIAAFJg"); + this.shape.setTransform(332.5, + 16.5); + this.shape._off = ! 0; + this.timeline.addTween(b.Tween.get(this.shape).wait(24).to({_off: ! 1}, 0).to({_off: ! 0}, 6).wait(18)); + this.i = new a.PT; + this.i.parent = this; + this.i.setTransform(316, 0, 3, 3); + this.o = new a.ST; + this.o.parent = this; + this.o.setTransform(316, 3, 3, 3); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.i}]}).to({state: [{t: this.o}]}, 24).to({state: [{t: this.i}]}, 6).wait(18)); + this.Ze = new b.Shape; + this.Ze.graphics.f("rgba(29,9,0,0.247)").s().p("AikClIAAlJIFJAAIAAFJg"); + this.Ze.setTransform(-34.5, + 19.5); + this.timeline.addTween(b.Tween.get(this.Ze).wait(48)); + this.H = new a.ZT; + this.H.parent = this; + this.H.setTransform(-51, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.H).wait(48)); + this.O = new a.TT; + this.O.parent = this; + this.O.setTransform(0, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.O).wait(48)); + this.$ = new a.WT; + this.$.parent = this; + this.$.setTransform(51, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.$).wait(48)); + this.ka = new a.XT; + this.ka.parent = this; + this.ka.setTransform(102, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.ka).wait(48)) + }).prototype = + c = new b.MovieClip; + c.j = new b.Rectangle(-51, -114, 494.5, 150); + (a.qU = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.pka; + this.instance.parent = this; + this.instance.setTransform(312, -76, 3, 3, 0, 0, 0, 0, -14.5); + this.timeline.addTween(b.Tween.get(this.instance).wait(48)); + this.g = new a.vka; + this.g.parent = this; + this.g.setTransform(17, -65, 3, 3, 0, 0, 0, 0, -14.5); + this.timeline.addTween(b.Tween.get(this.g).wait(48)); + this.i = new a.RT; + this.i.parent = this; + this.i.setTransform(316, 3, 2.9999, 2.9999); + this.o = new a.QT; + this.o.parent = + this; + this.o.setTransform(316, 0, 3, 3); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.i}]}).to({state: [{t: this.o}]}, 6).to({state: [{t: this.i}]}, 18).to({state: [{t: this.o}]}, 6).wait(18)); + this.H = new a.UT; + this.H.parent = this; + this.H.setTransform(37, 9, 3, 3); + this.timeline.addTween(b.Tween.get(this.H).wait(3).to({x: 49}, 0).wait(12).to({x: 46}, 0).wait(3).to({x: 34}, 0).wait(5).to({x: 31}, 0).wait(1).to({x: 22}, 0).wait(3).to({x: 19}, 0).wait(12).to({x: 22}, 0).wait(3).to({x: 34}, 0).wait(5).to({x: 37}, 0).wait(1)); + this.O = + new a.VT; + this.O.parent = this; + this.O.setTransform(25, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.O).wait(48)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-19, -119.5, 381, 155.5); + (a.pU = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.pka; + this.instance.parent = this; + this.instance.setTransform(312, -76, 3, 3, 0, 0, 0, 0, -14.5); + this.timeline.addTween(b.Tween.get(this.instance).wait(48)); + this.g = new a.vka; + this.g.parent = this; + this.g.setTransform(17, -65, 3, 3, 0, 0, 0, 0, -14.5); + this.timeline.addTween(b.Tween.get(this.g).wait(48)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(29,9,0,0.247)").s().p("AikClIAAlJIFJAAIAAFJg"); + this.shape.setTransform(332.5, 16.5); + this.shape._off = ! 0; + this.timeline.addTween(b.Tween.get(this.shape).wait(24).to({_off: ! 1}, 0).to({_off: ! 0}, 6).wait(18)); + this.i = new a.PT; + this.i.parent = this; + this.i.setTransform(316, 0, 3, 3); + this.o = new a.ST; + this.o.parent = this; + this.o.setTransform(316, 3, 3, 3); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.i}]}).to({state: [{t: this.o}]}, 24).to({state: [{t: this.i}]}, 6).wait(18)); + this.Ze = new b.Shape; + this.Ze.graphics.f("rgba(29,9,0,0.247)").s().p("AikClIAAlJIFJAAIAAFJg"); + this.Ze.setTransform(-34.5, 19.5); + this.timeline.addTween(b.Tween.get(this.Ze).wait(48)); + this.H = new a.ZT; + this.H.parent = this; + this.H.setTransform(-51, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.H).wait(48)); + this.O = new a.TT; + this.O.parent = this; + this.O.setTransform(0, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.O).wait(48)); + this.$ = new a.WT; + this.$.parent = this; + this.$.setTransform(51, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.$).wait(48)); + this.ka = new a.XT; + this.ka.parent = this; + this.ka.setTransform(102, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.ka).wait(48)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-51, -119.5, 413, 155.5); + (a.mU = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.AW; + this.instance.parent = this; + this.instance.setTransform(323, -58, 3, 3, 0, 0, 0, 0, -11.5); + this.timeline.addTween(b.Tween.get(this.instance).wait(24).to({alpha: .3008}, 0).wait(24)); + this.g = new a.AW; + this.g.parent = this; + this.g.setTransform(35, -56, 3, 3, + 0, 0, 0, 0, -11.5); + this.timeline.addTween(b.Tween.get(this.g).wait(48)); + this.i = new a.RT; + this.i.parent = this; + this.i.setTransform(316, 3, 2.9999, 2.9999); + this.o = new a.QT; + this.o.parent = this; + this.o.setTransform(316, 0, 3, 3); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.i}]}).to({state: [{t: this.o}]}, 6).to({state: [{t: this.i}]}, 18).to({state: [{t: this.o}]}, 6).wait(18)); + this.H = new a.UT; + this.H.parent = this; + this.H.setTransform(37, 9, 3, 3); + this.timeline.addTween(b.Tween.get(this.H).wait(3).to({x: 49}, 0).wait(12).to({x: 46}, + 0).wait(3).to({x: 34}, 0).wait(5).to({x: 31}, 0).wait(1).to({x: 22}, 0).wait(3).to({x: 19}, 0).wait(12).to({x: 22}, 0).wait(3).to({x: 34}, 0).wait(5).to({x: 37}, 0).wait(1)); + this.O = new a.VT; + this.O.parent = this; + this.O.setTransform(25, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.O).wait(48)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-19, -112, 381, 148); + (a.lU = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.AW; + this.instance.parent = this; + this.instance.setTransform(323, -58, 3, 3, 0, 0, 0, 0, -11.5); + this.timeline.addTween(b.Tween.get(this.instance).wait(24).to({alpha: .3008}, + 0).wait(24)); + this.g = new a.AW; + this.g.parent = this; + this.g.setTransform(35, -56, 3, 3, 0, 0, 0, 0, -11.5); + this.timeline.addTween(b.Tween.get(this.g).wait(48)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(29,9,0,0.247)").s().p("AikClIAAlJIFJAAIAAFJg"); + this.shape.setTransform(332.5, 16.5); + this.shape._off = ! 0; + this.timeline.addTween(b.Tween.get(this.shape).wait(24).to({_off: ! 1}, 0).to({_off: ! 0}, 6).wait(18)); + this.i = new a.PT; + this.i.parent = this; + this.i.setTransform(316, 0, 3, 3); + this.o = new a.ST; + this.o.parent = this; + this.o.setTransform(316, + 3, 3, 3); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.i}]}).to({state: [{t: this.o}]}, 24).to({state: [{t: this.i}]}, 6).wait(18)); + this.Ze = new b.Shape; + this.Ze.graphics.f("rgba(29,9,0,0.247)").s().p("AikClIAAlJIFJAAIAAFJg"); + this.Ze.setTransform(-34.5, 19.5); + this.timeline.addTween(b.Tween.get(this.Ze).wait(48)); + this.H = new a.ZT; + this.H.parent = this; + this.H.setTransform(-51, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.H).wait(48)); + this.O = new a.TT; + this.O.parent = this; + this.O.setTransform(0, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.O).wait(48)); + this.$ = new a.WT; + this.$.parent = this; + this.$.setTransform(51, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.$).wait(48)); + this.ka = new a.XT; + this.ka.parent = this; + this.ka.setTransform(102, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.ka).wait(48)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-51, -112, 413, 148); + (a.yT = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.uca; + this.instance.parent = this; + this.instance.setTransform(301, -82, 3, 3); + this.g = new a.vca; + this.g.parent = this; + this.g.setTransform(295, + -73, 3, 3); + this.i = new a.wca; + this.i.parent = this; + this.i.setTransform(301, -118, 3, 3); + this.o = new a.xca; + this.o.parent = this; + this.o.setTransform(307, -125, 3, 3); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g}]}, 24).to({state: [{t: this.i}]}, 4).to({ + state: [{ + t: this.o, + p: {y: -125} + }] + }, 3).to({state: [{t: this.o, p: {y: -128}}]}, 3).to({ + state: [{ + t: this.o, + p: {y: -125} + }] + }, 3).to({state: [{t: this.i}]}, 3).to({state: [{t: this.g}]}, 4).wait(4)); + this.H = new a.Bia; + this.H.parent = this; + this.H.setTransform(20.5, + -112, 3, 3, 0, 0, 0, 0, -33); + this.timeline.addTween(b.Tween.get(this.H).wait(48)); + this.O = new a.RT; + this.O.parent = this; + this.O.setTransform(316, 3, 2.9999, 2.9999); + this.$ = new a.QT; + this.$.parent = this; + this.$.setTransform(316, 0, 3, 3); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.O}]}).to({state: [{t: this.$}]}, 6).to({state: [{t: this.O}]}, 18).to({state: [{t: this.$}]}, 6).wait(18)); + this.ka = new a.UT; + this.ka.parent = this; + this.ka.setTransform(37, 9, 3, 3); + this.timeline.addTween(b.Tween.get(this.ka).wait(3).to({x: 49}, + 0).wait(12).to({x: 46}, 0).wait(3).to({x: 34}, 0).wait(5).to({x: 31}, 0).wait(1).to({x: 22}, 0).wait(3).to({x: 19}, 0).wait(12).to({x: 22}, 0).wait(3).to({x: 34}, 0).wait(5).to({x: 37}, 0).wait(1)); + this.ta = new a.VT; + this.ta.parent = this; + this.ta.setTransform(25, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.ta).wait(48)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-19, -128, 383, 164); + (a.xT = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.uca; + this.instance.parent = this; + this.instance.setTransform(301, + -82, 3, 3); + this.g = new a.vca; + this.g.parent = this; + this.g.setTransform(295, -73, 3, 3); + this.i = new a.wca; + this.i.parent = this; + this.i.setTransform(301, -118, 3, 3); + this.o = new a.xca; + this.o.parent = this; + this.o.setTransform(307, -125, 3, 3); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g}]}, 24).to({state: [{t: this.i}]}, 4).to({ + state: [{ + t: this.o, + p: {y: -125} + }] + }, 3).to({state: [{t: this.o, p: {y: -128}}]}, 3).to({ + state: [{ + t: this.o, + p: {y: -125} + }] + }, 3).to({state: [{t: this.i}]}, 3).to({state: [{t: this.g}]}, + 4).wait(4)); + this.H = new a.Bia; + this.H.parent = this; + this.H.setTransform(20.5, -112, 3, 3, 0, 0, 0, 0, -33); + this.timeline.addTween(b.Tween.get(this.H).wait(48)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(29,9,0,0.247)").s().p("AikClIAAlJIFJAAIAAFJg"); + this.shape.setTransform(332.5, 16.5); + this.shape._off = ! 0; + this.timeline.addTween(b.Tween.get(this.shape).wait(24).to({_off: ! 1}, 0).to({_off: ! 0}, 6).wait(18)); + this.O = new a.PT; + this.O.parent = this; + this.O.setTransform(316, 0, 3, 3); + this.$ = new a.ST; + this.$.parent = this; + this.$.setTransform(316, + 3, 3, 3); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.O}]}).to({state: [{t: this.$}]}, 24).to({state: [{t: this.O}]}, 6).wait(18)); + this.Ze = new b.Shape; + this.Ze.graphics.f("rgba(29,9,0,0.247)").s().p("AikClIAAlJIFJAAIAAFJg"); + this.Ze.setTransform(-34.5, 19.5); + this.timeline.addTween(b.Tween.get(this.Ze).wait(48)); + this.ka = new a.ZT; + this.ka.parent = this; + this.ka.setTransform(-51, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.ka).wait(48)); + this.ta = new a.TT; + this.ta.parent = this; + this.ta.setTransform(0, 0, 3, + 3); + this.timeline.addTween(b.Tween.get(this.ta).wait(48)); + this.va = new a.WT; + this.va.parent = this; + this.va.setTransform(51, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.va).wait(48)); + this.wa = new a.XT; + this.wa.parent = this; + this.wa.setTransform(102, 0, 3, 3); + this.timeline.addTween(b.Tween.get(this.wa).wait(48)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-51, -128, 415, 164); + (a.p4a = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "swim"}, keyboardNav: {order: 3}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.label = new a.cC; + this.label.name = "label"; + this.label.parent = this; + this.label.setTransform(75, 74); + this.label.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.label).wait(1).to({visible: ! 0}, 0).wait(2)); + this.instance = new a.OM; + this.instance.parent = this; + this.instance.setTransform(34, 10.5, 1, 1, 0, 0, 0, 0, -4.5); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.g = new a.jN; + this.g.parent = this; + this.g.setTransform(-13, -8); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, 0).wait(1).to({y: -7}, 0).wait(1)); + this.i = new a.rN; + this.i.parent = this; + this.i.setTransform(-12, -7); + this.timeline.addTween(b.Tween.get(this.i).wait(2).to({y: -6}, 0).wait(1)); + this.o = new a.w4a; + this.o.parent = this; + this.o.setTransform(-11, -6); + this.timeline.addTween(b.Tween.get(this.o).wait(2).to({y: -5}, 0).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = + this; + this.hitArea.setTransform(-1.95, 2.9, .104, .2155, 0, 0, 0, .5, -.5); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-13, -8, 150, 90); + (a.c2a = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "skate"}, keyboardNav: {order: 4}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.label = new a.cC; + this.label.name = "label"; + this.label.parent = this; + this.label.setTransform(75, + 46); + this.label.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.label).wait(1).to({visible: ! 0}, 0).wait(2)); + this.instance = new a.OM; + this.instance.parent = this; + this.instance.setTransform(48, 12.5, 1, 1, 0, 0, 0, 0, -4.5); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.g = new a.jN; + this.g.parent = this; + this.g.setTransform(-13, -10); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, 0).wait(1).to({y: -9}, 0).wait(1)); + this.i = new a.rN; + this.i.parent = this; + this.i.setTransform(-12, -9); + this.timeline.addTween(b.Tween.get(this.i).wait(2).to({y: -8}, 0).wait(1)); + this.o = new a.n2a; + this.o.parent = this; + this.o.setTransform(-11, -8); + this.timeline.addTween(b.Tween.get(this.o).wait(2).to({y: -7}, 0).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(-1.95, .9, .104, .2155, 0, 0, 0, .5, -.5); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-13, -10, 150, 64); + (a.M0a = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "rugby"}, keyboardNav: {order: 7}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.label = new a.cC; + this.label.name = "label"; + this.label.parent = this; + this.label.setTransform(-79, 45); + this.label.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.label).wait(1).to({visible: ! 0}, 0).wait(2)); + this.instance = new a.OM; + this.instance.parent = + this; + this.instance.setTransform(-52.1, -5.1, 1, 1, 0, 0, 0, -.1, -.1); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.g = new a.jN; + this.g.parent = this; + this.g.setTransform(-13, -11); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, 0).wait(1).to({y: -10}, 0).wait(1)); + this.i = new a.rN; + this.i.parent = this; + this.i.setTransform(-12, -10); + this.timeline.addTween(b.Tween.get(this.i).wait(2).to({y: -9}, 0).wait(1)); + this.o = new a.Z0a; + this.o.parent = + this; + this.o.setTransform(-11, -9); + this.timeline.addTween(b.Tween.get(this.o).wait(2).to({y: -8}, 0).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(-1.95, -.1, .104, .2155, 0, 0, 0, .5, -.5); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-141, -11, 151, 64); + (a.xWa = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = { + button: {eventId: "pingpong"}, + keyboardNav: {order: 6} + }; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.label = new a.cC; + this.label.name = "label"; + this.label.parent = this; + this.label.setTransform(-79, 72); + this.label.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.label).wait(1).to({visible: ! 0}, 0).wait(2)); + this.instance = new a.OM; + this.instance.parent = this; + this.instance.setTransform(-56.5, 4, 1, 1, 0, 0, 0, 4.5, 5); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.g = new a.jN; + this.g.parent = this; + this.g.setTransform(-13, -10); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, 0).wait(1).to({y: -9}, 0).wait(1)); + this.i = new a.rN; + this.i.parent = this; + this.i.setTransform(-12, -9); + this.timeline.addTween(b.Tween.get(this.i).wait(2).to({y: -8}, 0).wait(1)); + this.o = new a.TWa; + this.o.parent = this; + this.o.setTransform(-11, -8); + this.timeline.addTween(b.Tween.get(this.o).wait(2).to({y: -7}, 0).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = + this; + this.hitArea.setTransform(-1.95, .9, .104, .2155, 0, 0, 0, .5, -.5); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-141, -10, 151, 90); + (a.KOa = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "marathon"}, keyboardNav: {order: 8}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.label = new a.cC; + this.label.name = "label"; + this.label.parent = this; + this.label.setTransform(-79, 18); + this.label.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.label).wait(1).to({visible: ! 0}, 0).wait(2)); + this.instance = new a.OM; + this.instance.parent = this; + this.instance.setTransform(-61.5, -7.5, 1, 1, 0, 0, 0, 4.5, 4.5); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.g = new a.jN; + this.g.parent = this; + this.g.setTransform(-13, -12); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, 0).wait(1).to({y: -11}, + 0).wait(1)); + this.i = new a.rN; + this.i.parent = this; + this.i.setTransform(-12, -11); + this.timeline.addTween(b.Tween.get(this.i).wait(2).to({y: -10}, 0).wait(1)); + this.o = new a.POa; + this.o.parent = this; + this.o.setTransform(-11, -10); + this.timeline.addTween(b.Tween.get(this.o).wait(2).to({y: -9}, 0).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(-1.95, -1.1, .104, .2155, 0, 0, 0, .5, -.5); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = + c = new b.MovieClip; + c.j = new b.Rectangle(-141, -12, 151, 38); + (a.BAa = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "climbing"}, keyboardNav: {order: 5}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.label = new a.cC; + this.label.name = "label"; + this.label.parent = this; + this.label.setTransform(-79, 98); + this.label.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.label).wait(1).to({visible: ! 0}, 0).wait(2)); + this.instance = new a.OM; + this.instance.parent = this; + this.instance.setTransform(-84, 13.5, 1, 1, 0, 0, 0, 0, -4.5); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.g = new a.jN; + this.g.parent = this; + this.g.setTransform(-13, -10); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, 0).wait(1).to({y: -9}, 0).wait(1)); + this.i = new a.rN; + this.i.parent = this; + this.i.setTransform(-12, -9); + this.timeline.addTween(b.Tween.get(this.i).wait(2).to({y: -8}, 0).wait(1)); + this.o = + new a.xAa; + this.o.parent = this; + this.o.setTransform(-11, -8); + this.timeline.addTween(b.Tween.get(this.o).wait(2).to({y: -7}, 0).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(-1.95, .9, .104, .2155, 0, 0, 0, .5, -.5); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-141, -10, 151, 116); + (a.Gra = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = + {button: {eventId: "archery"}, keyboardNav: {order: 2}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.label = new a.cC; + this.label.name = "label"; + this.label.parent = this; + this.label.setTransform(75, 98); + this.label.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.label).wait(1).to({visible: ! 0}, 0).wait(2)); + this.instance = new a.OM; + this.instance.parent = this; + this.instance.setTransform(30, .5, 1, 1, 0, 0, 0, 0, -4.5); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, + 0).wait(2)); + this.g = new a.jN; + this.g.parent = this; + this.g.setTransform(-13, -10); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, 0).wait(1).to({y: -9}, 0).wait(1)); + this.i = new a.rN; + this.i.parent = this; + this.i.setTransform(-12, -9); + this.timeline.addTween(b.Tween.get(this.i).wait(2).to({y: -8}, 0).wait(1)); + this.o = new a.Mra; + this.o.parent = this; + this.o.setTransform(-11, -8); + this.timeline.addTween(b.Tween.get(this.o).wait(2).to({y: -7}, 0).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = + "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(-1.95, .9, .104, .2155, 0, 0, 0, .5, -.5); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-13, -10, 150, 116); + (a.y4a = function (d, e, f) { + this.initialize(d, e, f, {noScroll: 0, scroll: 1}); + this.u = function () { + this.T = { + storageSprite: { + condition1: "$swim_rating == 3", + frame1: "scroll", + condition2: "", + frame2: "noScroll", + condition3: "", + frame3: "", + condition4: "", + frame4: "", + condition5: "", + frame5: "" + } + }; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2)); + this.instance = new a.YL; + this.instance.parent = this; + this.instance.setTransform(-7, -14); + this.g = new a.Dm; + this.g.parent = this; + this.g.setTransform(0, -7, 1, 1, 0, 0, 0, 0, -7); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g}]}, 1).wait(1)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-7, -14, 14, 14); + (a.r2a = function (d, e, f) { + this.initialize(d, e, f, {noScroll: 0, scroll: 1}); + this.u = function () { + this.T = { + storageSprite: { + condition1: "$skate_rating == 3", + frame1: "scroll", + condition2: "", + frame2: "noScroll", + condition3: "", + frame3: "", + condition4: "", + frame4: "", + condition5: "", + frame5: "" + } + }; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2)); + this.instance = new a.YL; + this.instance.parent = this; + this.instance.setTransform(-7, -14); + this.g = new a.Dm; + this.g.parent = this; + this.g.setTransform(0, -7, 1, 1, 0, 0, 0, 0, -7); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g}]}, 1).wait(1)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-7, + -14, 14, 14); + (a.c1a = function (d, e, f) { + this.initialize(d, e, f, {noScroll: 0, scroll: 1}); + this.u = function () { + this.T = { + storageSprite: { + condition1: "$rugby_rating == 3", + frame1: "scroll", + condition2: "", + frame2: "noScroll", + condition3: "", + frame3: "", + condition4: "", + frame4: "", + condition5: "", + frame5: "" + } + }; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2)); + this.instance = new a.YL; + this.instance.parent = this; + this.instance.setTransform(-7, -14); + this.g = new a.Dm; + this.g.parent = this; + this.g.setTransform(0, -7, 1, 1, 0, 0, + 0, 0, -7); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g}]}, 1).wait(1)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-7, -14, 14, 14); + (a.dXa = function (d, e, f) { + this.initialize(d, e, f, {noScroll: 0, scroll: 1}); + this.u = function () { + this.T = { + storageSprite: { + condition1: "$pingpong_rating == 3", + frame1: "scroll", + condition2: "", + frame2: "noScroll", + condition3: "", + frame3: "", + condition4: "", + frame4: "", + condition5: "", + frame5: "" + } + }; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2)); + this.instance = new a.YL; + this.instance.parent = this; + this.instance.setTransform(-7, -14); + this.g = new a.Dm; + this.g.parent = this; + this.g.setTransform(0, -7, 1, 1, 0, 0, 0, 0, -7); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g}]}, 1).wait(1)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-7, -14, 14, 14); + (a.TOa = function (d, e, f) { + this.initialize(d, e, f, {noScroll: 0, scroll: 1}); + this.u = function () { + this.T = { + storageSprite: { + condition1: "$marathon_rating == 3", frame1: "scroll", condition2: "", + frame2: "noScroll", condition3: "", frame3: "", condition4: "", frame4: "", condition5: "", frame5: "" + } + }; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2)); + this.instance = new a.YL; + this.instance.parent = this; + this.instance.setTransform(-7, -14); + this.g = new a.Dm; + this.g.parent = this; + this.g.setTransform(0, -7, 1, 1, 0, 0, 0, 0, -7); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g}]}, 1).wait(1)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-7, -14, 14, 14); + (a.zAa = + function (d, e, f) { + this.initialize(d, e, f, {noScroll: 0, scroll: 1}); + this.u = function () { + this.T = { + storageSprite: { + condition1: "$climbing_rating == 3", + frame1: "scroll", + condition2: "", + frame2: "noScroll", + condition3: "", + frame3: "", + condition4: "", + frame4: "", + condition5: "", + frame5: "" + } + }; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2)); + this.instance = new a.YL; + this.instance.parent = this; + this.instance.setTransform(-7, -14); + this.g = new a.Dm; + this.g.parent = this; + this.g.setTransform(0, -7, 1, 1, 0, 0, 0, 0, -7); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g}]}, + 1).wait(1)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-7, -14, 14, 14); + (a.Sra = function (d, e, f) { + this.initialize(d, e, f, {noScroll: 0, scroll: 1}); + this.u = function () { + this.T = { + storageSprite: { + condition1: "$archery_rating == 3", + frame1: "scroll", + condition2: "", + frame2: "noScroll", + condition3: "", + frame3: "", + condition4: "", + frame4: "", + condition5: "", + frame5: "" + } + }; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2)); + this.instance = new a.YL; + this.instance.parent = this; + this.instance.setTransform(-7, -14); + this.g = new a.Dm; + this.g.parent = this; + this.g.setTransform(0, -7, 1, 1, 0, 0, 0, 0, -7); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g}]}, 1).wait(1)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-7, -14, 14, 14); + (a.v1a = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "srp"}, keyboardNav: {order: 6}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.qcb; + this.instance.parent = + this; + this.instance.setTransform(-10, -10); + this.g = new a.pcb; + this.g.parent = this; + this.g.setTransform(-11, -11); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({ + state: [{ + t: this.g, + p: {y: -11} + }] + }, 1).to({state: [{t: this.g, p: {y: -10}}]}, 1).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(2.1, 1.9, .113, .2353, 0, 0, 0, .9, -.4); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-11, -11, 26, 27); + (a.$la = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "share"}, keyboardNav: {order: 13}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.label = new a.cC; + this.label.name = "label"; + this.label.parent = this; + this.label.setTransform(-50, -29); + this.label.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.label).wait(1).to({visible: ! 0}, 0).wait(2)); + this.instance = new a.bma; + this.instance.parent = + this; + this.instance.setTransform(-12, -11); + this.g = new a.ama; + this.g.parent = this; + this.g.setTransform(-13, -12); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({ + state: [{ + t: this.g, + p: {y: -12} + }] + }, 1).to({state: [{t: this.g, p: {y: -11}}]}, 1).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(.05, 1, .1132, .2352, 0, 0, 0, .5, -.2); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-112, -37, 125, 52); + (a.Xla = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "settings"}, keyboardNav: {order: 10}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.label = new a.cC; + this.label.name = "label"; + this.label.parent = this; + this.label.setTransform(50, -29); + this.label.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.label).wait(1).to({visible: ! 0}, 0).wait(2)); + this.instance = new a.A1a; + this.instance.parent = + this; + this.instance.setTransform(-12, -11); + this.g = new a.z1a; + this.g.parent = this; + this.g.setTransform(-13, -12); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({ + state: [{ + t: this.g, + p: {y: -12} + }] + }, 1).to({state: [{t: this.g, p: {y: -11}}]}, 1).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(.05, 1, .1132, .2352, 0, 0, 0, .5, -.2); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-13, -37, 125, 52); + (a.Sfa = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "leader"}, keyboardNav: {order: 12}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.label = new a.cC; + this.label.name = "label"; + this.label.parent = this; + this.label.setTransform(-17, -29); + this.label.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.label).wait(1).to({visible: ! 0}, 0).wait(2)); + this.instance = new a.qGa; + this.instance.parent = + this; + this.instance.setTransform(-12, -11); + this.g = new a.pGa; + this.g.parent = this; + this.g.setTransform(-13, -12); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({ + state: [{ + t: this.g, + p: {y: -12} + }] + }, 1).to({state: [{t: this.g, p: {y: -11}}]}, 1).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(.05, 1, .1132, .2352, 0, 0, 0, .5, -.2); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-79, -37, 124, 52); + (a.Ida = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "controls"}, keyboardNav: {order: 11}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.label = new a.cC; + this.label.name = "label"; + this.label.parent = this; + this.label.setTransform(16, -29); + this.label.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.label).wait(1).to({visible: ! 0}, 0).wait(2)); + this.instance = new a.xBa; + this.instance.parent = + this; + this.instance.setTransform(-12, -11); + this.g = new a.wBa; + this.g.parent = this; + this.g.setTransform(-13, -12); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({ + state: [{ + t: this.g, + p: {y: -12} + }] + }, 1).to({state: [{t: this.g, p: {y: -11}}]}, 1).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(.05, .95, .1132, .2352, 0, 0, 0, .5, -.2); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-46, -37, 124, 52); + (a.HK = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "close"}, keyboardNav: {order: 1}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.Vt; + this.instance.parent = this; + this.instance.setTransform(-11, -12); + this.g = new a.Lpa; + this.g.parent = this; + this.g.setTransform(-11, -12); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g, p: {y: -12}}]}, + 1).to({state: [{t: this.g, p: {y: -10}}]}, 1).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(.05, -1, .1029, .2161, 0, 0, 0, 1, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-11, -12, 22, 24); + (a.e1 = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "back"}, keyboardNav: {order: 1}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.back; + this.instance.parent = this; + this.instance.setTransform(-11, -12); + this.g = new a.T$a; + this.g.parent = this; + this.g.setTransform(-11, -12); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({ + state: [{ + t: this.g, + p: {y: -12} + }] + }, 1).to({state: [{t: this.g, p: {y: -10}}]}, 1).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(.05, -1, .1029, .2161, 0, 0, 0, 1, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = + c = new b.MovieClip; + c.j = new b.Rectangle(-11, -12, 22, 24); + (a.I8a = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "twitter"}, keyboardNav: {order: 4}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.Scb; + this.instance.parent = this; + this.instance.setTransform(-9, -10); + this.g = new a.Rcb; + this.g.parent = this; + this.g.setTransform(-10, -11); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({ + state: [{ + t: this.g, + p: {y: -11} + }] + }, 1).to({state: [{t: this.g, p: {y: -10}}]}, 1).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(3.1, 1.95, .113, .2351, 0, 0, 0, .9, -.2); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-10, -11, 26, 27); + (a.HOa = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "mail"}, keyboardNav: {order: 2}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.Cab; + this.instance.parent = this; + this.instance.setTransform(-9, -10); + this.g = new a.Bab; + this.g.parent = this; + this.g.setTransform(-10, -11); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({ + state: [{ + t: this.g, + p: {y: -11} + }] + }, 1).to({state: [{t: this.g, p: {y: -10}}]}, 1).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(3.1, 1.95, .113, .2351, 0, 0, 0, .9, -.2); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = + c = new b.MovieClip; + c.j = new b.Rectangle(-10, -11, 26, 27); + (a.GDa = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "facebook"}, keyboardNav: {order: 3}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.Iab; + this.instance.parent = this; + this.instance.setTransform(-9, -10); + this.g = new a.Hab; + this.g.parent = this; + this.g.setTransform(-10, -11); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({ + state: [{ + t: this.g, + p: {y: -11} + }] + }, 1).to({state: [{t: this.g, p: {y: -10}}]}, 1).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(3.1, 1.95, .113, .2351, 0, 0, 0, .9, -.2); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-10, -11, 26, 27); + (a.DBa = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "copy"}, keyboardNav: {order: 5}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.nab; + this.instance.parent = this; + this.instance.setTransform(-9, -10); + this.g = new a.mab; + this.g.parent = this; + this.g.setTransform(-10, -11); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({ + state: [{ + t: this.g, + p: {y: -11} + }] + }, 1).to({state: [{t: this.g, p: {y: -10}}]}, 1).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(3.1, 1.95, .113, .2351, 0, 0, 0, .9, -.2); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = + c = new b.MovieClip; + c.j = new b.Rectangle(-10, -11, 26, 27); + (a.dBa = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "closeShare"}, keyboardNav: {order: 1}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.Vt; + this.instance.parent = this; + this.instance.setTransform(-11, -12); + this.g = new a.Lpa; + this.g.parent = this; + this.g.setTransform(-11, -12); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({ + state: [{ + t: this.g, + p: {y: -12} + }] + }, 1).to({state: [{t: this.g, p: {y: -10}}]}, 1).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(.05, -1, .1029, .2161, 0, 0, 0, 1, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-11, -12, 22, 24); + (a.B1a = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "share"}, keyboardNav: {order: 2}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.bma; + this.instance.parent = this; + this.instance.setTransform(-36, -36, 3, 3); + this.g = new a.ama; + this.g.parent = this; + this.g.setTransform(-39, -39, 3, 3); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({ + state: [{ + t: this.g, + p: {y: -39} + }] + }, 1).to({state: [{t: this.g, p: {y: -36}}]}, 1).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(.1, -.05, .3396, .7057, 0, 0, 0, .3, -.1); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = + c = new b.MovieClip; + c.j = new b.Rectangle(-39, -39, 78, 81); + (a.u0a = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "replay"}, keyboardNav: {order: 1}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.ocb; + this.instance.parent = this; + this.instance.setTransform(-36, -36, 3, 3); + this.g = new a.ncb; + this.g.parent = this; + this.g.setTransform(-39, -39, 3, 3); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({ + state: [{ + t: this.g, + p: {y: -39} + }] + }, 1).to({state: [{t: this.g, p: {y: -36}}]}, 1).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(.1, -.05, .3396, .7057, 0, 0, 0, .3, -.1); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-39, -39, 78, 81); + (a.E_a = function (d, e, f) { + this.initialize(d, e, f, {}); + this.Vab = function () { + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).wait(33).call(this.Vab).wait(1)); + this.instance = + new a.FWa; + this.instance.parent = this; + this.instance.setTransform(108, -16); + this.instance._off = ! 0; + this.g = new a.GWa; + this.g.parent = this; + this.g.setTransform(-7, -22); + this.i = new a.EWa; + this.i.parent = this; + this.i.setTransform(16, -15); + this.timeline.addTween(b.Tween.get({}).to({state: []}).to({state: [{t: this.instance}]}, 24).to({state: [{t: this.instance}]}, 1).to({state: [{t: this.instance}]}, 1).to({state: [{t: this.g}]}, 1).to({ + state: [{ + t: this.i, + p: {x: 16, y: -15} + }] + }, 2).to({state: [{t: this.instance}]}, 2).to({ + state: [{ + t: this.i, + p: {x: 21, y: -16} + }] + }, 2).wait(1)); + this.timeline.addTween(b.Tween.get(this.instance).wait(24).to({_off: ! 1}, 0).wait(1).to({ + x: 56, + y: -15 + }, 0).wait(1).to({x: 17}, 0).to({_off: ! 0}, 1).wait(4).to({ + _off: ! 1, + x: 19, + y: -14 + }, 0).to({_off: ! 0}, 2).wait(1)); + this.o = new a.wpa; + this.o.parent = this; + this.o.setTransform(136, -15); + this.o._off = ! 0; + this.H = new a.xpa; + this.H.parent = this; + this.H.setTransform(-31, -22); + this.O = new a.vpa; + this.O.parent = this; + this.O.setTransform(-19, -16); + this.timeline.addTween(b.Tween.get({}).to({state: []}).to({state: [{t: this.o}]}, + 18).to({state: [{t: this.o}]}, 1).to({state: [{t: this.o}]}, 1).to({ + state: [{ + t: this.H, + p: {x: -31} + }] + }, 1).to({state: [{t: this.O, p: {x: -19, y: -16}}]}, 2).to({state: [{t: this.o}]}, 1).to({ + state: [{ + t: this.O, + p: {x: -15, y: -16} + }] + }, 1).to({state: [{t: this.H, p: {x: -29}}]}, 2).to({ + state: [{ + t: this.O, + p: {x: -17, y: -15} + }] + }, 2).to({state: [{t: this.o}]}, 1).to({state: [{t: this.O, p: {x: -15, y: -16}}]}, 2).wait(2)); + this.timeline.addTween(b.Tween.get(this.o).wait(18).to({_off: ! 1}, 0).wait(1).to({x: 56}, 0).wait(1).to({x: -5}, 0).to({_off: ! 0}, 1).wait(3).to({ + _off: ! 1, + x: -17 + }, 0).to({_off: ! 0}, 1).wait(5).to({_off: ! 1, y: -14}, 0).to({_off: ! 0}, 2).wait(2)); + this.$ = new a.w2; + this.$.parent = this; + this.$.setTransform(136, -15); + this.$._off = ! 0; + this.ka = new a.v2; + this.ka.parent = this; + this.ka.setTransform(-53, -22); + this.ta = new a.u2; + this.ta.parent = this; + this.ta.setTransform(-51, -16); + this.timeline.addTween(b.Tween.get({}).to({state: []}).to({state: [{t: this.$}]}, 11).to({state: [{t: this.$}]}, 1).to({state: [{t: this.$}]}, 1).to({state: [{t: this.$}]}, 1).to({ + state: [{ + t: this.ka, + p: {x: -53} + }] + }, 1).to({state: [{t: this.$}]}, + 2).to({state: [{t: this.ta}]}, 2).to({ + state: [{ + t: this.ka, + p: {x: -53} + }] + }, 2).to({state: [{t: this.$}]}, 2).to({state: [{t: this.ta}]}, 1).to({ + state: [{ + t: this.ka, + p: {x: -51} + }] + }, 3).to({state: [{t: this.$}]}, 2).to({state: [{t: this.ta}]}, 2).wait(3)); + this.timeline.addTween(b.Tween.get(this.$).wait(11).to({_off: ! 1}, 0).wait(1).to({x: 89}, 0).wait(1).to({x: 42}, 0).wait(1).to({x: -14}, 0).to({_off: ! 0}, 1).wait(2).to({ + _off: ! 1, + x: -51 + }, 0).to({_off: ! 0}, 2).wait(4).to({_off: ! 1, x: -53}, 0).to({_off: ! 0}, 1).wait(5).to({ + _off: ! 1, + x: -51, + y: -14 + }, 0).to({_off: ! 0}, + 2).wait(3)); + this.va = new a.wV; + this.va.parent = this; + this.va.setTransform(-203.5, 0, 1, 1, 0, 0, 0, 66.5, 0); + this.va._off = ! 0; + this.timeline.addTween(b.Tween.get(this.va).wait(3).to({_off: ! 1}, 0).to({x: -9.35}, 8, b.Ease.backOut).wait(23)); + this.wa = new a.WB; + this.wa.parent = this; + this.wa.setTransform(26, -11); + this.ya = new a.WB; + this.ya.parent = this; + this.ya.setTransform(-10, -11); + this.Aa = new a.WB; + this.Aa.parent = this; + this.Aa.setTransform(-46, -11); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.Aa}, {t: this.ya}, {t: this.wa}]}).wait(34)) + }).prototype = + c = new b.MovieClip; + c.j = new b.Rectangle(-270, -22, 441, 43); + (a.D_a = function (d, e, f) { + this.initialize(d, e, f, {}); + this.Pab = function () { + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).wait(25).call(this.Pab).wait(1)); + this.instance = new a.wpa; + this.instance.parent = this; + this.instance.setTransform(136, -15); + this.instance._off = ! 0; + this.g = new a.xpa; + this.g.parent = this; + this.g.setTransform(-31, -22); + this.i = new a.vpa; + this.i.parent = this; + this.i.setTransform(-19, -16); + this.timeline.addTween(b.Tween.get({}).to({state: []}).to({state: [{t: this.instance}]}, + 17).to({state: [{t: this.instance}]}, 1).to({state: [{t: this.instance}]}, 1).to({state: [{t: this.g}]}, 1).to({ + state: [{ + t: this.i, + p: {x: -19} + }] + }, 2).to({state: [{t: this.instance}]}, 1).to({state: [{t: this.i, p: {x: -15}}]}, 2).wait(1)); + this.timeline.addTween(b.Tween.get(this.instance).wait(17).to({_off: ! 1}, 0).wait(1).to({x: 56}, 0).wait(1).to({x: -5}, 0).to({_off: ! 0}, 1).wait(3).to({ + _off: ! 1, + x: -17 + }, 0).to({_off: ! 0}, 2).wait(1)); + this.o = new a.w2; + this.o.parent = this; + this.o.setTransform(136, -15); + this.o._off = ! 0; + this.H = new a.v2; + this.H.parent = + this; + this.H.setTransform(-53, -22); + this.O = new a.u2; + this.O.parent = this; + this.O.setTransform(-51, -16); + this.timeline.addTween(b.Tween.get({}).to({state: []}).to({state: [{t: this.o}]}, 10).to({state: [{t: this.o}]}, 1).to({state: [{t: this.o}]}, 1).to({state: [{t: this.o}]}, 1).to({state: [{t: this.H}]}, 1).to({state: [{t: this.o}]}, 2).to({state: [{t: this.O}]}, 2).to({state: [{t: this.H}]}, 2).to({state: [{t: this.o}]}, 2).to({state: [{t: this.O}]}, 2).wait(2)); + this.timeline.addTween(b.Tween.get(this.o).wait(10).to({_off: ! 1}, 0).wait(1).to({x: 89}, + 0).wait(1).to({x: 42}, 0).wait(1).to({x: -14}, 0).to({_off: ! 0}, 1).wait(2).to({ + _off: ! 1, + x: -51 + }, 0).to({_off: ! 0}, 2).wait(4).to({_off: ! 1, x: -53}, 0).to({_off: ! 0}, 2).wait(2)); + this.$ = new a.wV; + this.$.parent = this; + this.$.setTransform(-210.5, 0, 1, 1, 0, 0, 0, 66.5, 0); + this.$._off = ! 0; + this.timeline.addTween(b.Tween.get(this.$).wait(3).to({_off: ! 1}, 0).to({x: -9.35}, 7, b.Ease.backOut).wait(16)); + this.ka = new a.WB; + this.ka.parent = this; + this.ka.setTransform(26, -11); + this.ta = new a.WB; + this.ta.parent = this; + this.ta.setTransform(-10, -11); + this.va = new a.WB; + this.va.parent = this; + this.va.setTransform(-46, -11); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.va}, {t: this.ta}, {t: this.ka}]}).wait(26)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-277, -22, 448, 43); + (a.C_a = function (d, e, f) { + this.initialize(d, e, f, {}); + this.Nab = function () { + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).wait(19).call(this.Nab).wait(1)); + this.instance = new a.w2; + this.instance.parent = this; + this.instance.setTransform(136, -15); + this.instance._off = ! 0; + this.g = + new a.v2; + this.g.parent = this; + this.g.setTransform(-53, -22); + this.i = new a.u2; + this.i.parent = this; + this.i.setTransform(-51, -16); + this.timeline.addTween(b.Tween.get({}).to({state: []}).to({state: [{t: this.instance}]}, 11).to({state: [{t: this.instance}]}, 1).to({state: [{t: this.instance}]}, 1).to({state: [{t: this.instance}]}, 1).to({state: [{t: this.g}]}, 1).to({state: [{t: this.instance}]}, 2).to({state: [{t: this.i}]}, 2).wait(1)); + this.timeline.addTween(b.Tween.get(this.instance).wait(11).to({_off: ! 1}, 0).wait(1).to({x: 89}, + 0).wait(1).to({x: 42}, 0).wait(1).to({x: -14}, 0).to({_off: ! 0}, 1).wait(2).to({ + _off: ! 1, + x: -51 + }, 0).to({_off: ! 0}, 2).wait(1)); + this.o = new a.wV; + this.o.parent = this; + this.o.setTransform(-170.5, 0, 1, 1, 0, 0, 0, 66.5, 0); + this.o._off = ! 0; + this.timeline.addTween(b.Tween.get(this.o).wait(3).to({_off: ! 1}, 0).to({x: -9.35}, 8, b.Ease.backOut).wait(9)); + this.H = new a.WB; + this.H.parent = this; + this.H.setTransform(26, -11); + this.O = new a.WB; + this.O.parent = this; + this.O.setTransform(-10, -11); + this.$ = new a.WB; + this.$.parent = this; + this.$.setTransform(-46, + -11); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.$}, {t: this.O}, {t: this.H}]}).wait(20)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-237, -22, 407, 43); + (a.B_a = function (d, e, f) { + this.initialize(d, e, f, {}); + this.Lab = function () { + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).wait(11).call(this.Lab).wait(1)); + this.instance = new a.wV; + this.instance.parent = this; + this.instance.setTransform(-168.5, 0, 1, 1, 0, 0, 0, 66.5, 0); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(3).to({_off: ! 1}, + 0).to({x: -9.35}, 6, b.Ease.backOut).wait(3)); + this.g = new a.WB; + this.g.parent = this; + this.g.setTransform(26, -11); + this.i = new a.WB; + this.i.parent = this; + this.i.setTransform(-10, -11); + this.o = new a.WB; + this.o.parent = this; + this.o.setTransform(-46, -11); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.o}, {t: this.i}, {t: this.g}]}).wait(12)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-235, -11, 306.3, 20); + (a.QVa = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = { + button: {eventId: "overworld"}, + keyboardNav: {order: 3} + }; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.Gab; + this.instance.parent = this; + this.instance.setTransform(-36, -36, 3, 3); + this.g = new a.Fab; + this.g.parent = this; + this.g.setTransform(-39, -39, 3, 3); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({ + state: [{ + t: this.g, + p: {y: -39} + }] + }, 1).to({state: [{t: this.g, p: {y: -36}}]}, 1).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(.1, + -.05, .3396, .7057, 0, 0, 0, .3, -.1); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-39, -39, 78, 81); + (a.zpa = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "yes"}, keyboardNav: {order: 2}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.Ep; + this.instance.parent = this; + this.instance.setTransform(-257, -17, 3, 3); + this.instance._off = + ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.label = new b.Text("YES", "20px 'PixelMplus10'", "#af824a"); + this.label.name = "label"; + this.label.textAlign = "center"; + this.label.lineHeight = 24; + this.label.lineWidth = 218; + this.label.parent = this; + this.label.setTransform(-.05, -19.15, 1.9341, 1.9341); + this.timeline.addTween(b.Tween.get(this.label).wait(1).to({color: "#ffffff"}, 0).wait(2)); + this.hitArea = new a.mJ; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(-2.85, + 0, 1.1284, .49, 0, 0, 0, -.2, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-257, -25, 472, 54); + (a.w0a = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "resume"}, keyboardNav: {order: 1}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.Ep; + this.instance.parent = this; + this.instance.setTransform(-257, -19, 3, 3); + this.instance._off = + ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.label = new b.Text("CONTINUE", "20px 'PixelMplus10'", "#af824a"); + this.label.name = "label"; + this.label.textAlign = "center"; + this.label.lineHeight = 24; + this.label.lineWidth = 218; + this.label.parent = this; + this.label.setTransform(-.05, -21.15, 1.9341, 1.9341); + this.timeline.addTween(b.Tween.get(this.label).wait(1).to({color: "#ffffff"}, 0).wait(2)); + this.hitArea = new a.mJ; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(-2.85, + 0, 1.1284, .49, 0, 0, 0, -.2, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-257, -25, 472, 52); + (a.v0a = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "restart"}, keyboardNav: {order: 3}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.Ep; + this.instance.parent = this; + this.instance.setTransform(-257, -19, 3, 3); + this.instance._off = + ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.label = new b.Text("RESTART", "20px 'PixelMplus10'", "#af824a"); + this.label.name = "label"; + this.label.textAlign = "center"; + this.label.lineHeight = 24; + this.label.lineWidth = 218; + this.label.parent = this; + this.label.setTransform(-.05, -21.15, 1.9341, 1.9341); + this.timeline.addTween(b.Tween.get(this.label).wait(1).to({color: "#ffffff"}, 0).wait(2)); + this.hitArea = new a.mJ; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(-3.35, + 0, 1.1332, .4912, 0, 0, 0, -.2, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-257, -25, 472, 52); + (a.ZZa = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "quit"}, keyboardNav: {order: 4}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.Ep; + this.instance.parent = this; + this.instance.setTransform(-257, -19, 3, 3); + this.instance._off = + ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.label = new b.Text("QUIT", "20px 'PixelMplus10'", "#af824a"); + this.label.name = "label"; + this.label.textAlign = "center"; + this.label.lineHeight = 24; + this.label.lineWidth = 218; + this.label.parent = this; + this.label.setTransform(-.05, -21.15, 1.9341, 1.9341); + this.timeline.addTween(b.Tween.get(this.label).wait(1).to({color: "#ffffff"}, 0).wait(2)); + this.hitArea = new a.mJ; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(-3.35, + 0, 1.1329, .4912, 0, 0, 0, -.2, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-257, -25, 472, 52); + (a.oja = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "no"}, keyboardNav: {order: 1}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.Ep; + this.instance.parent = this; + this.instance.setTransform(-257, -17, 3, 3); + this.instance._off = + ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.label = new b.Text("NO", "20px 'PixelMplus10'", "#af824a"); + this.label.name = "label"; + this.label.textAlign = "center"; + this.label.lineHeight = 24; + this.label.lineWidth = 218; + this.label.parent = this; + this.label.setTransform(-.05, -19.15, 1.9341, 1.9341); + this.timeline.addTween(b.Tween.get(this.label).wait(1).to({color: "#ffffff"}, 0).wait(2)); + this.hitArea = new a.mJ; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(-2.85, + 0, 1.1284, .49, 0, 0, 0, -.2, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-257, -25, 472, 54); + (a.nja = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {menu: {id: "newgame"}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.title = new b.Text(" Start a new game?", "60px 'PixelMplus10'", "#ede4b5"); + this.title.name = "title"; + this.title.textAlign = "center"; + this.title.lineHeight = 68; + this.title.lineWidth = + 924; + this.title.parent = this; + this.title.setTransform(0, -189); + this.timeline.addTween(b.Tween.get(this.title).wait(1)); + this.prompt = new b.Text("This will erase your progress permanetly and start you over from the beginning.", "40px 'PixelMplus10'", "#af824a"); + this.prompt.name = "prompt"; + this.prompt.textAlign = "center"; + this.prompt.lineHeight = 46; + this.prompt.lineWidth = 924; + this.prompt.parent = this; + this.prompt.setTransform(0, -109); + this.N_ = new a.oja; + this.N_.name = "no"; + this.N_.parent = this; + this.N_.setTransform(.1, 95.4, + 1, 1, 0, 0, 0, .1, .4); + this.H0 = new a.zpa; + this.H0.name = "yes"; + this.H0.parent = this; + this.H0.setTransform(.1, 177.4, 1, 1, 0, 0, 0, .1, .4); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.H0}, {t: this.N_}, {t: this.prompt}]}).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(0,0,0,0.749)").s().p("EhK/AqMMAAAhUXMCV/AAAMAAABUXg"); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)) + }).prototype = k(a.nja, new b.Rectangle(-480, -270, 960, 540), null); + (a.TEa = function (d, e, f) { + this.initialize(d, e, f, { + idle: 0, focus: 1, + down: 2 + }); + this.u = function () { + this.T = {button: {eventId: "how"}, keyboardNav: {order: 2}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.Ep; + this.instance.parent = this; + this.instance.setTransform(-257, -17, 3, 3); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.label = new b.Text("HOW TO PLAY", "20px 'PixelMplus10'", "#af824a"); + this.label.name = "label"; + this.label.textAlign = "center"; + this.label.lineHeight = 24; + this.label.lineWidth = + 218; + this.label.parent = this; + this.label.setTransform(-.05, -19.15, 1.9341, 1.9341); + this.timeline.addTween(b.Tween.get(this.label).wait(1).to({color: "#ffffff"}, 0).wait(2)); + this.hitArea = new a.mJ; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(-2.85, 0, 1.1284, .49, 0, 0, 0, -.2, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-257, -25, 472, 54); + (a.Ufa = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = + function () { + this.T = {menu: {id: "leaderboard"}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.back = new a.e1; + this.back.name = "back"; + this.back.parent = this; + this.back.setTransform(-148, -77.5, 1, 1, 0, 0, 0, 0, -.5); + this.timeline.addTween(b.Tween.get(this.back).wait(1)); + this.title = new b.Text("Leaderboard", "20px 'PixelMplus10'", "#ede4b5"); + this.title.name = "title"; + this.title.textAlign = "center"; + this.title.lineHeight = 24; + this.title.lineWidth = 282; + this.title.parent = this; + this.title.setTransform(0, -75); + this.timeline.addTween(b.Tween.get(this.title).wait(1)); + this.qS = new b.Text("***", "16px 'PixelMplus10'", "#ffffff"); + this.qS.name = "teamScore3"; + this.qS.textAlign = "right"; + this.qS.lineHeight = 18; + this.qS.lineWidth = 126; + this.qS.parent = this; + this.qS.setTransform(139.35, 46); + this.pS = new b.Text("***", "16px 'PixelMplus10'", "#ffffff"); + this.pS.name = "teamScore2"; + this.pS.textAlign = "right"; + this.pS.lineHeight = 18; + this.pS.lineWidth = 126; + this.pS.parent = this; + this.pS.setTransform(139.35, 18); + this.oS = new b.Text("***", "16px 'PixelMplus10'", + "#ffffff"); + this.oS.name = "teamScore1"; + this.oS.textAlign = "right"; + this.oS.lineHeight = 18; + this.oS.lineWidth = 126; + this.oS.parent = this; + this.oS.setTransform(139.35, -10); + this.nS = new b.Text("***", "16px 'PixelMplus10'", "#ffffff"); + this.nS.name = "teamScore0"; + this.nS.textAlign = "right"; + this.nS.lineHeight = 18; + this.nS.lineWidth = 126; + this.nS.parent = this; + this.nS.setTransform(139, -38); + this.HU = new b.Text("Team Name", "16px 'PixelMplus10'", "#ffffff"); + this.HU.name = "teamName3"; + this.HU.lineHeight = 18; + this.HU.lineWidth = 126; + this.HU.parent = + this; + this.HU.setTransform(-115.85, 46); + this.GU = new b.Text("Team Name", "16px 'PixelMplus10'", "#ffffff"); + this.GU.name = "teamName2"; + this.GU.lineHeight = 18; + this.GU.lineWidth = 126; + this.GU.parent = this; + this.GU.setTransform(-115.85, 18); + this.FU = new b.Text("Team Name", "16px 'PixelMplus10'", "#ffffff"); + this.FU.name = "teamName1"; + this.FU.lineHeight = 18; + this.FU.lineWidth = 126; + this.FU.parent = this; + this.FU.setTransform(-115.85, -10); + this.EU = new b.Text("Team Name", "16px 'PixelMplus10'", "#ffffff"); + this.EU.name = "teamName0"; + this.EU.lineHeight = + 18; + this.EU.lineWidth = 126; + this.EU.parent = this; + this.EU.setTransform(-116, -38); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.EU}, {t: this.FU}, {t: this.GU}, {t: this.HU}, {t: this.nS}, {t: this.oS}, {t: this.pS}, {t: this.qS}]}).wait(1)); + this.instance = new a.Mw; + this.instance.parent = this; + this.instance.setTransform(-130, 26, 1, 1, 0, 0, 0, 0, -8); + this.g = new a.Xt; + this.g.parent = this; + this.g.setTransform(-130, -2, 1, 1, 0, 0, 0, 0, -10); + this.i = new a.Uw; + this.i.parent = this; + this.i.setTransform(-132, 52, 1, 1, 0, 0, 0, 0, -10); + this.o = + new a.$t; + this.o.parent = this; + this.o.setTransform(-130, -30, 1, 1, 0, 0, 0, 0, -10); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.o}, {t: this.i}, {t: this.g}, {t: this.instance}]}).wait(1)); + this.CJ = new b.Text("Loading...", "12px 'PixelMplus10'", "#af824a"); + this.CJ.name = "loading"; + this.CJ.textAlign = "center"; + this.CJ.lineHeight = 13; + this.CJ.lineWidth = 291; + this.CJ.parent = this; + this.CJ.setTransform(0, -2); + this.timeline.addTween(b.Tween.get(this.CJ).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(0,0,0,0.498)").s().p("A3lJYIAAyvMAvLAAAIAASvg"); + this.shape.setTransform(0, 12); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)); + this.H = new a.K_; + this.H.parent = this; + this.H.setTransform(-154, -84); + this.timeline.addTween(b.Tween.get(this.H).wait(1)); + this.Ze = new b.Shape; + this.Ze.graphics.f("rgba(0,0,0,0.749)").s().p("A4/OEIAA8HMAx/AAAIAAcHg"); + this.timeline.addTween(b.Tween.get(this.Ze).wait(1)) + }).prototype = k(a.Ufa, new b.Rectangle(-160, -90, 320, 180), null); + (a.ct = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.lX; + this.instance.parent = + this; + this.instance.setTransform(-1.5, 0); + this.timeline.addTween(b.Tween.get(this.instance).wait(5).to({alpha: .5898}, 0).wait(5)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-3, -2.5, 3, 5); + (a.xbb = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: ""}, keyboardNav: {order: 0}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.gU; + this.instance.parent = this; + this.instance.setTransform(-9, -35); + this.instance._off = + ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.g = new a.ct; + this.g.parent = this; + this.g.setTransform(-38.5, -.5, 1, 1, 180, 0, 0, -1.5, 0); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, 0).wait(2)); + this.i = new a.Ep; + this.i.parent = this; + this.i.setTransform(-166, -7); + this.i._off = ! 0; + this.timeline.addTween(b.Tween.get(this.i).wait(1).to({_off: ! 1}, 0).wait(2)); + this.text = new b.Text("Space", "10px 'PixelMplus10'", "#af824a"); + this.text.name = "text"; + this.text.textAlign = "center"; + this.text.lineHeight = 11; + this.text.lineWidth = 66; + this.text.parent = this; + this.text.setTransform(1, -6); + this.timeline.addTween(b.Tween.get(this.text).wait(1).to({color: "#ffffff"}, 0).wait(1).to({ + text: "Selecting", + color: "#483218" + }, 0).wait(1)); + this.o = new a.Cx; + this.o.parent = this; + this.o.setTransform(-34, -7); + this.o._off = ! 0; + this.timeline.addTween(b.Tween.get(this.o).wait(1).to({_off: ! 1}, 0).wait(2)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(1.45, + -.5, .3301, .1467, 0, 0, 0, 1.4, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-166, -35, 202, 42); + (a.wbb = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: ""}, keyboardNav: {order: 0}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.gU; + this.instance.parent = this; + this.instance.setTransform(-9, -77); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, + 0).wait(2)); + this.g = new a.ct; + this.g.parent = this; + this.g.setTransform(-38.5, -.5, 1, 1, 180, 0, 0, -1.5, 0); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, 0).wait(2)); + this.i = new a.Ep; + this.i.parent = this; + this.i.setTransform(-166, -7); + this.i._off = ! 0; + this.timeline.addTween(b.Tween.get(this.i).wait(1).to({_off: ! 1}, 0).wait(2)); + this.text = new b.Text("Space", "10px 'PixelMplus10'", "#af824a"); + this.text.name = "text"; + this.text.textAlign = "center"; + this.text.lineHeight = 11; + this.text.lineWidth = 66; + this.text.parent = this; + this.text.setTransform(1, -6); + this.timeline.addTween(b.Tween.get(this.text).wait(1).to({color: "#ffffff"}, 0).wait(1).to({ + text: "Selecting", + color: "#483218" + }, 0).wait(1)); + this.o = new a.Cx; + this.o.parent = this; + this.o.setTransform(-34, -7); + this.o._off = ! 0; + this.timeline.addTween(b.Tween.get(this.o).wait(1).to({_off: ! 1}, 0).wait(2)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(1.45, -.5, .3301, .1467, 0, 0, 0, 1.4, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = + c = new b.MovieClip; + c.j = new b.Rectangle(-166, -77, 202, 84); + (a.vbb = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: ""}, keyboardNav: {order: 0}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.gU; + this.instance.parent = this; + this.instance.setTransform(-9, -63); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.g = new a.ct; + this.g.parent = this; + this.g.setTransform(-38.5, + -.5, 1, 1, 180, 0, 0, -1.5, 0); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, 0).wait(2)); + this.i = new a.Ep; + this.i.parent = this; + this.i.setTransform(-166, -7); + this.i._off = ! 0; + this.timeline.addTween(b.Tween.get(this.i).wait(1).to({_off: ! 1}, 0).wait(2)); + this.text = new b.Text("Space", "10px 'PixelMplus10'", "#af824a"); + this.text.name = "text"; + this.text.textAlign = "center"; + this.text.lineHeight = 11; + this.text.lineWidth = 66; + this.text.parent = this; + this.text.setTransform(1, -6); + this.timeline.addTween(b.Tween.get(this.text).wait(1).to({color: "#ffffff"}, + 0).wait(1).to({text: "Selecting", color: "#483218"}, 0).wait(1)); + this.o = new a.Cx; + this.o.parent = this; + this.o.setTransform(-34, -7); + this.o._off = ! 0; + this.timeline.addTween(b.Tween.get(this.o).wait(1).to({_off: ! 1}, 0).wait(2)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(1.45, -.5, .3301, .1467, 0, 0, 0, 1.4, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-166, -63, 202, 70); + (a.tbb = + function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: ""}, keyboardNav: {order: 0}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.gU; + this.instance.parent = this; + this.instance.setTransform(-9, -49); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.g = new a.ct; + this.g.parent = this; + this.g.setTransform(-38.5, -.5, 1, 1, 180, 0, 0, -1.5, 0); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, + 0).wait(2)); + this.i = new a.Ep; + this.i.parent = this; + this.i.setTransform(-166, -7); + this.i._off = ! 0; + this.timeline.addTween(b.Tween.get(this.i).wait(1).to({_off: ! 1}, 0).wait(2)); + this.text = new b.Text("Space", "10px 'PixelMplus10'", "#af824a"); + this.text.name = "text"; + this.text.textAlign = "center"; + this.text.lineHeight = 11; + this.text.lineWidth = 66; + this.text.parent = this; + this.text.setTransform(1, -6); + this.timeline.addTween(b.Tween.get(this.text).wait(1).to({color: "#ffffff"}, 0).wait(1).to({ + text: "Selecting", + color: "#483218" + }, + 0).wait(1)); + this.o = new a.Cx; + this.o.parent = this; + this.o.setTransform(-34, -7); + this.o._off = ! 0; + this.timeline.addTween(b.Tween.get(this.o).wait(1).to({_off: ! 1}, 0).wait(2)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(1.45, -.5, .3301, .1467, 0, 0, 0, 1.4, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-166, -49, 202, 56); + (a.sbb = function (d, e, f) { + this.initialize(d, e, f, { + idle: 0, + focus: 1, down: 2 + }); + this.u = function () { + this.T = {button: {eventId: ""}, keyboardNav: {order: 0}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.gU; + this.instance.parent = this; + this.instance.setTransform(-9, -105); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.g = new a.ct; + this.g.parent = this; + this.g.setTransform(-38.5, -.5, 1, 1, 180, 0, 0, -1.5, 0); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, + 0).wait(2)); + this.i = new a.Ep; + this.i.parent = this; + this.i.setTransform(-166, -7); + this.i._off = ! 0; + this.timeline.addTween(b.Tween.get(this.i).wait(1).to({_off: ! 1}, 0).wait(2)); + this.text = new b.Text("Space", "10px 'PixelMplus10'", "#af824a"); + this.text.name = "text"; + this.text.textAlign = "center"; + this.text.lineHeight = 11; + this.text.lineWidth = 66; + this.text.parent = this; + this.text.setTransform(1, -6); + this.timeline.addTween(b.Tween.get(this.text).wait(1).to({color: "#ffffff"}, 0).wait(1).to({ + text: "Selecting", + color: "#483218" + }, + 0).wait(1)); + this.o = new a.Cx; + this.o.parent = this; + this.o.setTransform(-34, -7); + this.o._off = ! 0; + this.timeline.addTween(b.Tween.get(this.o).wait(1).to({_off: ! 1}, 0).wait(2)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(1.45, -.5, .3301, .1467, 0, 0, 0, 1.4, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-166, -105, 202, 112); + (a.rbb = function (d, e, f) { + this.initialize(d, e, f, { + idle: 0, + focus: 1, down: 2 + }); + this.u = function () { + this.T = {button: {eventId: ""}, keyboardNav: {order: 0}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.gU; + this.instance.parent = this; + this.instance.setTransform(-9, -91); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.g = new a.ct; + this.g.parent = this; + this.g.setTransform(-38.5, -.5, 1, 1, 180, 0, 0, -1.5, 0); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, + 0).wait(2)); + this.i = new a.Ep; + this.i.parent = this; + this.i.setTransform(-166, -7); + this.i._off = ! 0; + this.timeline.addTween(b.Tween.get(this.i).wait(1).to({_off: ! 1}, 0).wait(2)); + this.text = new b.Text("Space", "10px 'PixelMplus10'", "#af824a"); + this.text.name = "text"; + this.text.textAlign = "center"; + this.text.lineHeight = 11; + this.text.lineWidth = 66; + this.text.parent = this; + this.text.setTransform(1, -6); + this.timeline.addTween(b.Tween.get(this.text).wait(1).to({color: "#ffffff"}, 0).wait(1).to({ + text: "Selecting", + color: "#483218" + }, + 0).wait(1)); + this.o = new a.Cx; + this.o.parent = this; + this.o.setTransform(-34, -7); + this.o._off = ! 0; + this.timeline.addTween(b.Tween.get(this.o).wait(1).to({_off: ! 1}, 0).wait(2)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(1.45, -.5, .3301, .1467, 0, 0, 0, 1.4, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-166, -91, 202, 98); + (a.hbb = function (d, e, f) { + this.initialize(d, e, f, { + idle: 0, + focus: 1, down: 2 + }); + this.u = function () { + this.T = {button: {eventId: ""}, keyboardNav: {order: 0}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.AT; + this.instance.parent = this; + this.instance.setTransform(-9, -35); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.g = new a.ct; + this.g.parent = this; + this.g.setTransform(-38.5, -.5, 1, 1, 180, 0, 0, -1.5, 0); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, + 0).wait(2)); + this.i = new a.Ep; + this.i.parent = this; + this.i.setTransform(-250, -7); + this.i._off = ! 0; + this.timeline.addTween(b.Tween.get(this.i).wait(1).to({_off: ! 1}, 0).wait(2)); + this.text = new b.Text("Space", "10px 'PixelMplus10'", "#af824a"); + this.text.name = "text"; + this.text.textAlign = "center"; + this.text.lineHeight = 11; + this.text.lineWidth = 66; + this.text.parent = this; + this.text.setTransform(1, -6); + this.timeline.addTween(b.Tween.get(this.text).wait(1).to({color: "#ffffff"}, 0).wait(1).to({ + text: "Selecting", + color: "#483218" + }, + 0).wait(1)); + this.o = new a.Cx; + this.o.parent = this; + this.o.setTransform(-34, -7); + this.o._off = ! 0; + this.timeline.addTween(b.Tween.get(this.o).wait(1).to({_off: ! 1}, 0).wait(2)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(1.45, -.5, .3301, .1467, 0, 0, 0, 1.4, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-250, -35, 286, 42); + (a.gbb = function (d, e, f) { + this.initialize(d, e, f, { + idle: 0, + focus: 1, down: 2 + }); + this.u = function () { + this.T = {button: {eventId: ""}, keyboardNav: {order: 0}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.AT; + this.instance.parent = this; + this.instance.setTransform(-9, -77); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.g = new a.ct; + this.g.parent = this; + this.g.setTransform(-38.5, -.5, 1, 1, 180, 0, 0, -1.5, 0); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, + 0).wait(2)); + this.i = new a.Ep; + this.i.parent = this; + this.i.setTransform(-250, -7); + this.i._off = ! 0; + this.timeline.addTween(b.Tween.get(this.i).wait(1).to({_off: ! 1}, 0).wait(2)); + this.text = new b.Text("Space", "10px 'PixelMplus10'", "#af824a"); + this.text.name = "text"; + this.text.textAlign = "center"; + this.text.lineHeight = 11; + this.text.lineWidth = 66; + this.text.parent = this; + this.text.setTransform(1, -6); + this.timeline.addTween(b.Tween.get(this.text).wait(1).to({color: "#ffffff"}, 0).wait(1).to({ + text: "Selecting", + color: "#483218" + }, + 0).wait(1)); + this.o = new a.Cx; + this.o.parent = this; + this.o.setTransform(-34, -7); + this.o._off = ! 0; + this.timeline.addTween(b.Tween.get(this.o).wait(1).to({_off: ! 1}, 0).wait(2)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(1.45, -.5, .3301, .1467, 0, 0, 0, 1.4, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-250, -77, 286, 84); + (a.fbb = function (d, e, f) { + this.initialize(d, e, f, { + idle: 0, + focus: 1, down: 2 + }); + this.u = function () { + this.T = {button: {eventId: ""}, keyboardNav: {order: 0}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.AT; + this.instance.parent = this; + this.instance.setTransform(-9, -63); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.g = new a.ct; + this.g.parent = this; + this.g.setTransform(-38.5, -.5, 1, 1, 180, 0, 0, -1.5, 0); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, + 0).wait(2)); + this.i = new a.Ep; + this.i.parent = this; + this.i.setTransform(-250, -7); + this.i._off = ! 0; + this.timeline.addTween(b.Tween.get(this.i).wait(1).to({_off: ! 1}, 0).wait(2)); + this.text = new b.Text("Space", "10px 'PixelMplus10'", "#af824a"); + this.text.name = "text"; + this.text.textAlign = "center"; + this.text.lineHeight = 11; + this.text.lineWidth = 66; + this.text.parent = this; + this.text.setTransform(1, -6); + this.timeline.addTween(b.Tween.get(this.text).wait(1).to({color: "#ffffff"}, 0).wait(1).to({ + text: "Selecting", + color: "#483218" + }, + 0).wait(1)); + this.o = new a.Cx; + this.o.parent = this; + this.o.setTransform(-34, -7); + this.o._off = ! 0; + this.timeline.addTween(b.Tween.get(this.o).wait(1).to({_off: ! 1}, 0).wait(2)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(1.45, -.5, .3301, .1467, 0, 0, 0, 1.4, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-250, -63, 286, 70); + (a.ebb = function (d, e, f) { + this.initialize(d, e, f, { + idle: 0, + focus: 1, down: 2 + }); + this.u = function () { + this.T = {button: {eventId: ""}, keyboardNav: {order: 0}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.AT; + this.instance.parent = this; + this.instance.setTransform(-9, -49); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.g = new a.ct; + this.g.parent = this; + this.g.setTransform(-38.5, -.5, 1, 1, 180, 0, 0, -1.5, 0); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, + 0).wait(2)); + this.i = new a.Ep; + this.i.parent = this; + this.i.setTransform(-250, -7); + this.i._off = ! 0; + this.timeline.addTween(b.Tween.get(this.i).wait(1).to({_off: ! 1}, 0).wait(2)); + this.text = new b.Text("Space", "10px 'PixelMplus10'", "#af824a"); + this.text.name = "text"; + this.text.textAlign = "center"; + this.text.lineHeight = 11; + this.text.lineWidth = 66; + this.text.parent = this; + this.text.setTransform(1, -6); + this.timeline.addTween(b.Tween.get(this.text).wait(1).to({color: "#ffffff"}, 0).wait(1).to({ + text: "Selecting", + color: "#483218" + }, + 0).wait(1)); + this.o = new a.Cx; + this.o.parent = this; + this.o.setTransform(-34, -7); + this.o._off = ! 0; + this.timeline.addTween(b.Tween.get(this.o).wait(1).to({_off: ! 1}, 0).wait(2)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(1.45, -.5, .3301, .1467, 0, 0, 0, 1.4, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-250, -49, 286, 56); + (a.dbb = function (d, e, f) { + this.initialize(d, e, f, { + idle: 0, + focus: 1, down: 2 + }); + this.u = function () { + this.T = {button: {eventId: ""}, keyboardNav: {order: 0}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.AT; + this.instance.parent = this; + this.instance.setTransform(-9, -105); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.g = new a.ct; + this.g.parent = this; + this.g.setTransform(-38.5, -.5, 1, 1, 180, 0, 0, -1.5, 0); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, + 0).wait(2)); + this.i = new a.Ep; + this.i.parent = this; + this.i.setTransform(-250, -7); + this.i._off = ! 0; + this.timeline.addTween(b.Tween.get(this.i).wait(1).to({_off: ! 1}, 0).wait(2)); + this.text = new b.Text("Space", "10px 'PixelMplus10'", "#af824a"); + this.text.name = "text"; + this.text.textAlign = "center"; + this.text.lineHeight = 11; + this.text.lineWidth = 66; + this.text.parent = this; + this.text.setTransform(1, -6); + this.timeline.addTween(b.Tween.get(this.text).wait(1).to({color: "#ffffff"}, 0).wait(1).to({ + text: "Selecting", + color: "#483218" + }, + 0).wait(1)); + this.o = new a.Cx; + this.o.parent = this; + this.o.setTransform(-34, -7); + this.o._off = ! 0; + this.timeline.addTween(b.Tween.get(this.o).wait(1).to({_off: ! 1}, 0).wait(2)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(1.45, -.5, .3301, .1467, 0, 0, 0, 1.4, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-250, -105, 286, 112); + (a.cbb = function (d, e, f) { + this.initialize(d, e, f, { + idle: 0, + focus: 1, down: 2 + }); + this.u = function () { + this.T = {button: {eventId: ""}, keyboardNav: {order: 0}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.AT; + this.instance.parent = this; + this.instance.setTransform(-9, -91); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.g = new a.ct; + this.g.parent = this; + this.g.setTransform(-38.5, -.5, 1, 1, 180, 0, 0, -1.5, 0); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, + 0).wait(2)); + this.i = new a.Ep; + this.i.parent = this; + this.i.setTransform(-250, -7); + this.i._off = ! 0; + this.timeline.addTween(b.Tween.get(this.i).wait(1).to({_off: ! 1}, 0).wait(2)); + this.text = new b.Text("Space", "10px 'PixelMplus10'", "#af824a"); + this.text.name = "text"; + this.text.textAlign = "center"; + this.text.lineHeight = 11; + this.text.lineWidth = 66; + this.text.parent = this; + this.text.setTransform(1, -6); + this.timeline.addTween(b.Tween.get(this.text).wait(1).to({color: "#ffffff"}, 0).wait(1).to({ + text: "Selecting", + color: "#483218" + }, + 0).wait(1)); + this.o = new a.Cx; + this.o.parent = this; + this.o.setTransform(-34, -7); + this.o._off = ! 0; + this.timeline.addTween(b.Tween.get(this.o).wait(1).to({_off: ! 1}, 0).wait(2)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(1.45, -.5, .3301, .1467, 0, 0, 0, 1.4, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-250, -91, 286, 98); + (a.lab = function (d, e, f) { + this.initialize(d, e, f, { + idle: 0, + focus: 1, down: 2 + }); + this.u = function () { + this.T = {button: {eventId: "defaults"}, keyboardNav: {order: 7}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.label = new b.Text("DEFAULTS", "20px 'PixelMplus10'", "#af824a"); + this.label.name = "label"; + this.label.textAlign = "center"; + this.label.lineHeight = 24; + this.label.lineWidth = 180; + this.label.parent = this; + this.label.setTransform(-3.1, -22.15, 1.9341, 1.9341); + this.timeline.addTween(b.Tween.get(this.label).wait(1).to({color: "#ffffff"}, 0).wait(1).to({x: -2.989}, + 0).wait(1)); + this.instance = new a.Ep; + this.instance.parent = this; + this.instance.setTransform(-227, -20, 3, 3); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.g = new a.Jda; + this.g.parent = this; + this.g.setTransform(-180, -33, 3, 3); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, 0).wait(2)); + this.hitArea = new a.mJ; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(-.1, 0, 1.6501, .49, 0, 0, 0, -.1, 0); + this.hitArea.visible = + ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-227, -33, 404, 63); + (a.kab = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "okay"}, keyboardNav: {order: 6}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.label = new b.Text("OKAY", "20px 'PixelMplus10'", "#af824a"); + this.label.name = "label"; + this.label.textAlign = "center"; + this.label.lineHeight = 24; + this.label.lineWidth = + 180; + this.label.parent = this; + this.label.setTransform(2.45, -22.15, 1.9341, 1.9341); + this.timeline.addTween(b.Tween.get(this.label).wait(1).to({ + x: 2.4626, + color: "#ffffff" + }, 0).wait(1).to({x: 2.45}, 0).wait(1)); + this.instance = new a.Ep; + this.instance.parent = this; + this.instance.setTransform(-221, -20, 3, 3); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).wait(2)); + this.g = new a.Jda; + this.g.parent = this; + this.g.setTransform(-175, -32, 3, 3); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, + 0).wait(2)); + this.hitArea = new a.mJ; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(-.1, 0, 1.5555, .49, 0, 0, 0, -.1, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-221, -32, 403, 63); + (a.yma = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {menu: {id: "skip"}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.AK = new a.Xla; + this.AK.name = "settings"; + this.AK.parent = + this; + this.AK.setTransform(-151.45, 192.55, 2.9998, 2.9998); + this.share = new a.$la; + this.share.name = "share"; + this.share.parent = this; + this.share.setTransform(148.85, 192.85, 2.9998, 2.9998, 0, 0, 0, .1, .1); + this.wK = new a.Sfa; + this.wK.name = "leader"; + this.wK.parent = this; + this.wK.setTransform(49.55, 192.55, 2.9998, 2.9998); + this.controls = new a.Ida; + this.controls.name = "controls"; + this.controls.parent = this; + this.controls.setTransform(-49.75, 192.85, 2.9998, 2.9998, 0, 0, 0, -.1, .1); + this.timeline.addTween(b.Tween.get({}).to({ + state: [{t: this.controls}, + {t: this.wK}, {t: this.share}, {t: this.AK}] + }).wait(1)); + this.instance = new a.oja; + this.instance.parent = this; + this.instance.setTransform(.15, -16, 1, 1, 0, 0, 0, 0, 2); + this.g = new a.zpa; + this.g.parent = this; + this.g.setTransform(0, 50, 1, 1, 0, 0, 0, 0, 2); + this.label = new b.Text("SKIP TUTORIAL?", "40px 'PixelMplus10'", "#af824a"); + this.label.name = "label"; + this.label.textAlign = "center"; + this.label.lineHeight = 46; + this.label.lineWidth = 924; + this.label.parent = this; + this.label.setTransform(0, -155); + this.timeline.addTween(b.Tween.get({}).to({ + state: [{t: this.label}, + {t: this.g}, {t: this.instance}] + }).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(0,0,0,0.749)").s().p("EhK/AqMMAAAhUXMCV/AAAMAAABUXg"); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)) + }).prototype = k(a.yma, new b.Rectangle(-480, -270, 960, 540), null); + (a.Toa = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {menu: {id: "tutSwimMobile"}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.Bf = new a.mB; + this.Bf.name = "continueButton"; + this.Bf.parent = this; + this.Bf.setTransform(3, + 194.1, 1, 1, 0, 0, 0, .2, .1); + this.timeline.addTween(b.Tween.get(this.Bf).wait(1)); + this.Bd = new b.Text("Avoid hitting wrong Beats", "30px 'PixelMplus10'", "#ede4b5"); + this.Bd.name = "control2"; + this.Bd.textAlign = "center"; + this.Bd.lineHeight = 36; + this.Bd.lineWidth = 241; + this.Bd.parent = this; + this.Bd.setTransform(291, -30.5); + this.Ad = new b.Text("Tap Arrow Buttons", "30px 'PixelMplus10'", "#ede4b5"); + this.Ad.name = "control1"; + this.Ad.textAlign = "center"; + this.Ad.lineHeight = 36; + this.Ad.lineWidth = 241; + this.Ad.parent = this; + this.Ad.setTransform(-.5, + 51); + this.Cd = new b.Text("Hit the matching beats in time with the music for a high score", "30px 'PixelMplus10'", "#af8147"); + this.Cd.name = "rulesContent"; + this.Cd.textAlign = "center"; + this.Cd.lineHeight = 36; + this.Cd.lineWidth = 241; + this.Cd.parent = this; + this.Cd.setTransform(-291.5, -57); + this.Dd = new b.Text("Rules", "30px 'PixelMplus10'", "#ede4b5"); + this.Dd.name = "rulesLabel"; + this.Dd.textAlign = "center"; + this.Dd.lineHeight = 36; + this.Dd.lineWidth = 241; + this.Dd.parent = this; + this.Dd.setTransform(-291.5, -111); + this.title = new b.Text("Synchronized Swimming", + "60px 'PixelMplus10'", "#ede4b5"); + this.title.name = "title"; + this.title.textAlign = "center"; + this.title.lineHeight = 68; + this.title.lineWidth = 853; + this.title.parent = this; + this.title.setTransform(-.5, -225); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.title}, {t: this.Dd}, {t: this.Cd}, {t: this.Ad}, {t: this.Bd}]}).wait(1)); + this.oC = new a.oC; + this.oC.name = "swimSpritesDesktop"; + this.oC.parent = this; + this.oC.setTransform(-25.5, 16.5, 1, 1, 0, 0, 0, 16.5, 16.5); + this.timeline.addTween(b.Tween.get(this.oC).wait(1)); + this.instance = + new a.vB; + this.instance.parent = this; + this.instance.setTransform(-462, -252, 3, 3); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(0,0,0,0.749)").s().p("EhK/AqMMAAAhUXMCV/AAAMAAABUXg"); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)) + }).prototype = k(a.Toa, new b.Rectangle(-480, -270, 960, 540), null); + (a.Soa = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {menu: {id: "tutSwimDesktop"}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.Bf = new a.mB; + this.Bf.name = "continueButton"; + this.Bf.parent = this; + this.Bf.setTransform(3, 194.1, 1, 1, 0, 0, 0, .2, .1); + this.timeline.addTween(b.Tween.get(this.Bf).wait(1)); + this.Bd = new b.Text("Avoid hitting wrong Beats", "30px 'PixelMplus10'", "#ede4b5"); + this.Bd.name = "control2"; + this.Bd.textAlign = "center"; + this.Bd.lineHeight = 36; + this.Bd.lineWidth = 241; + this.Bd.parent = this; + this.Bd.setTransform(291, -30.5); + this.Ad = new b.Text("Direction Keys\nfor Arrow Beats", "30px 'PixelMplus10'", "#ede4b5"); + this.Ad.name = "control1"; + this.Ad.textAlign = "center"; + this.Ad.lineHeight = 36; + this.Ad.lineWidth = 241; + this.Ad.parent = this; + this.Ad.setTransform(-.5, 51); + this.Cd = new b.Text("Hit the matching beats in time with the music for a high score", "30px 'PixelMplus10'", "#af8147"); + this.Cd.name = "rulesContent"; + this.Cd.textAlign = "center"; + this.Cd.lineHeight = 36; + this.Cd.lineWidth = 241; + this.Cd.parent = this; + this.Cd.setTransform(-291.5, -57); + this.Dd = new b.Text("Rules", "30px 'PixelMplus10'", "#ede4b5"); + this.Dd.name = "rulesLabel"; + this.Dd.textAlign = "center"; + this.Dd.lineHeight = 36; + this.Dd.lineWidth = 241; + this.Dd.parent = this; + this.Dd.setTransform(-291.5, -111); + this.title = new b.Text("Synchronized Swimming", "60px 'PixelMplus10'", "#ede4b5"); + this.title.name = "title"; + this.title.textAlign = "center"; + this.title.lineHeight = 68; + this.title.lineWidth = 853; + this.title.parent = this; + this.title.setTransform(-.5, -225); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.title}, {t: this.Dd}, {t: this.Cd}, {t: this.Ad}, {t: this.Bd}]}).wait(1)); + this.oC = new a.oC; + this.oC.name = "swimSpritesDesktop"; + this.oC.parent = this; + this.oC.setTransform(-25.5, 16.5, 1, 1, 0, 0, 0, 16.5, 16.5); + this.timeline.addTween(b.Tween.get(this.oC).wait(1)); + this.instance = new a.vB; + this.instance.parent = this; + this.instance.setTransform(-462, -252, 3, 3); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(0,0,0,0.749)").s().p("EhK/AqMMAAAhUXMCV/AAAMAAABUXg"); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)) + }).prototype = k(a.Soa, new b.Rectangle(-480, -270, 960, 540), null); + (a.Roa = + function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {menu: {id: "tutSkateMobile"}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.Bf = new a.mB; + this.Bf.name = "continueButton"; + this.Bf.parent = this; + this.Bf.setTransform(3, 194.1, 1, 1, 0, 0, 0, .2, .1); + this.timeline.addTween(b.Tween.get(this.Bf).wait(1)); + this.Bd = new b.Text("Action Button\nto Jump / Tricks", "30px 'PixelMplus10'", "#ede4b5"); + this.Bd.name = "control2"; + this.Bd.textAlign = "center"; + this.Bd.lineHeight = 36; + this.Bd.lineWidth = + 241; + this.Bd.parent = this; + this.Bd.setTransform(290.5, 51); + this.Ad = new b.Text("Joystick\nto Move / Tricks", "30px 'PixelMplus10'", "#ede4b5"); + this.Ad.name = "control1"; + this.Ad.textAlign = "center"; + this.Ad.lineHeight = 36; + this.Ad.lineWidth = 241; + this.Ad.parent = this; + this.Ad.setTransform(-.5, 51); + this.Cd = new b.Text("Do tricks for a high score before time runs out", "30px 'PixelMplus10'", "#af8147"); + this.Cd.name = "rulesContent"; + this.Cd.textAlign = "center"; + this.Cd.lineHeight = 36; + this.Cd.lineWidth = 241; + this.Cd.parent = this; + this.Cd.setTransform(-291.5, -57); + this.Dd = new b.Text("Rules", "30px 'PixelMplus10'", "#ede4b5"); + this.Dd.name = "rulesLabel"; + this.Dd.textAlign = "center"; + this.Dd.lineHeight = 36; + this.Dd.lineWidth = 241; + this.Dd.parent = this; + this.Dd.setTransform(-291.5, -111); + this.title = new b.Text("Skating", "60px 'PixelMplus10'", "#ede4b5"); + this.title.name = "title"; + this.title.textAlign = "center"; + this.title.lineHeight = 68; + this.title.lineWidth = 853; + this.title.parent = this; + this.title.setTransform(-.5, -225); + this.timeline.addTween(b.Tween.get({}).to({ + state: [{t: this.title}, + {t: this.Dd}, {t: this.Cd}, {t: this.Ad}, {t: this.Bd}] + }).wait(1)); + this.AU = new a.AU; + this.AU.name = "skateSpritesMobile"; + this.AU.parent = this; + this.AU.setTransform(-25.5, 16.5, 1, 1, 0, 0, 0, 16.5, 16.5); + this.timeline.addTween(b.Tween.get(this.AU).wait(1)); + this.instance = new a.vB; + this.instance.parent = this; + this.instance.setTransform(-462, -252, 3, 3); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(0,0,0,0.749)").s().p("EhK/AqMMAAAhUXMCV/AAAMAAABUXg"); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)) + }).prototype = + k(a.Roa, new b.Rectangle(-480, -270, 960, 540), null); + (a.Qoa = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {menu: {id: "tutSkateDesktop"}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.j0 = new a.mB; + this.j0.name = "startButton"; + this.j0.parent = this; + this.j0.setTransform(3, 194.1, 1, 1, 0, 0, 0, .2, .1); + this.timeline.addTween(b.Tween.get(this.j0).wait(1)); + this.Bd = new b.Text("Spacebar\nto Jump / Tricks", "30px 'PixelMplus10'", "#ede4b5"); + this.Bd.name = "control2"; + this.Bd.textAlign = + "center"; + this.Bd.lineHeight = 36; + this.Bd.lineWidth = 241; + this.Bd.parent = this; + this.Bd.setTransform(290.5, 51); + this.Ad = new b.Text("Direction Keys\nto Move / Tricks", "30px 'PixelMplus10'", "#ede4b5"); + this.Ad.name = "control1"; + this.Ad.textAlign = "center"; + this.Ad.lineHeight = 36; + this.Ad.lineWidth = 241; + this.Ad.parent = this; + this.Ad.setTransform(-.5, 51); + this.Cd = new b.Text("Do tricks for a high score before time runs out", "30px 'PixelMplus10'", "#af8147"); + this.Cd.name = "rulesContent"; + this.Cd.textAlign = "center"; + this.Cd.lineHeight = + 36; + this.Cd.lineWidth = 241; + this.Cd.parent = this; + this.Cd.setTransform(-291.5, -57); + this.Dd = new b.Text("Rules", "30px 'PixelMplus10'", "#ede4b5"); + this.Dd.name = "rulesLabel"; + this.Dd.textAlign = "center"; + this.Dd.lineHeight = 36; + this.Dd.lineWidth = 241; + this.Dd.parent = this; + this.Dd.setTransform(-291.5, -111); + this.title = new b.Text("Skating", "60px 'PixelMplus10'", "#ede4b5"); + this.title.name = "title"; + this.title.textAlign = "center"; + this.title.lineHeight = 68; + this.title.lineWidth = 853; + this.title.parent = this; + this.title.setTransform(-.5, + -225); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.title}, {t: this.Dd}, {t: this.Cd}, {t: this.Ad}, {t: this.Bd}]}).wait(1)); + this.zU = new a.zU; + this.zU.name = "skateSpritesDesktop"; + this.zU.parent = this; + this.zU.setTransform(-25.5, 16.5, 1, 1, 0, 0, 0, 16.5, 16.5); + this.timeline.addTween(b.Tween.get(this.zU).wait(1)); + this.instance = new a.vB; + this.instance.parent = this; + this.instance.setTransform(-462, -252, 3, 3); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(0,0,0,0.749)").s().p("EhK/AqMMAAAhUXMCV/AAAMAAABUXg"); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)) + }).prototype = k(a.Qoa, new b.Rectangle(-480, -270, 960, 540), null); + (a.Poa = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {menu: {id: "tutRugbyMobile"}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.Bf = new a.mB; + this.Bf.name = "continueButton"; + this.Bf.parent = this; + this.Bf.setTransform(3, 194.1, 1, 1, 0, 0, 0, .2, .1); + this.timeline.addTween(b.Tween.get(this.Bf).wait(1)); + this.Bd = new b.Text("Action Button\nto Pass", "30px 'PixelMplus10'", + "#ede4b5"); + this.Bd.name = "control2"; + this.Bd.textAlign = "center"; + this.Bd.lineHeight = 36; + this.Bd.lineWidth = 241; + this.Bd.parent = this; + this.Bd.setTransform(290.5, 51); + this.Ad = new b.Text("Joystick\nto Move", "30px 'PixelMplus10'", "#ede4b5"); + this.Ad.name = "control1"; + this.Ad.textAlign = "center"; + this.Ad.lineHeight = 36; + this.Ad.lineWidth = 241; + this.Ad.parent = this; + this.Ad.setTransform(-.5, 51); + this.Cd = new b.Text("Avoid obstacles and enemies to get the ball across the field", "30px 'PixelMplus10'", "#af8147"); + this.Cd.name = + "rulesContent"; + this.Cd.textAlign = "center"; + this.Cd.lineHeight = 36; + this.Cd.lineWidth = 241; + this.Cd.parent = this; + this.Cd.setTransform(-291.5, -57); + this.Dd = new b.Text("Rules", "30px 'PixelMplus10'", "#ede4b5"); + this.Dd.name = "rulesLabel"; + this.Dd.textAlign = "center"; + this.Dd.lineHeight = 36; + this.Dd.lineWidth = 241; + this.Dd.parent = this; + this.Dd.setTransform(-291.5, -111); + this.title = new b.Text("Rugby", "60px 'PixelMplus10'", "#ede4b5"); + this.title.name = "title"; + this.title.textAlign = "center"; + this.title.lineHeight = 68; + this.title.lineWidth = + 853; + this.title.parent = this; + this.title.setTransform(-.5, -225); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.title}, {t: this.Dd}, {t: this.Cd}, {t: this.Ad}, {t: this.Bd}]}).wait(1)); + this.xU = new a.xU; + this.xU.name = "rugbySpritesMobile"; + this.xU.parent = this; + this.xU.setTransform(-25.5, 16.5, 1, 1, 0, 0, 0, 16.5, 16.5); + this.timeline.addTween(b.Tween.get(this.xU).wait(1)); + this.instance = new a.vB; + this.instance.parent = this; + this.instance.setTransform(-462, -252, 3, 3); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(0,0,0,0.749)").s().p("EhK/AqMMAAAhUXMCV/AAAMAAABUXg"); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)) + }).prototype = k(a.Poa, new b.Rectangle(-480, -270, 960, 540), null); + (a.Ooa = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {menu: {id: "tutRugbyDesktop"}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.Bf = new a.mB; + this.Bf.name = "continueButton"; + this.Bf.parent = this; + this.Bf.setTransform(3, 194.1, 1, 1, 0, 0, 0, .2, .1); + this.timeline.addTween(b.Tween.get(this.Bf).wait(1)); + this.Bd = new b.Text("Spacebar\nto Pass", "30px 'PixelMplus10'", "#ede4b5"); + this.Bd.name = "control2"; + this.Bd.textAlign = "center"; + this.Bd.lineHeight = 36; + this.Bd.lineWidth = 241; + this.Bd.parent = this; + this.Bd.setTransform(290.5, 51); + this.Ad = new b.Text("Direction Keys\nto Move", "30px 'PixelMplus10'", "#ede4b5"); + this.Ad.name = "control1"; + this.Ad.textAlign = "center"; + this.Ad.lineHeight = 36; + this.Ad.lineWidth = 241; + this.Ad.parent = this; + this.Ad.setTransform(-.5, 51); + this.Cd = + new b.Text("Avoid obstacles and enemies to get the ball across the field", "30px 'PixelMplus10'", "#af8147"); + this.Cd.name = "rulesContent"; + this.Cd.textAlign = "center"; + this.Cd.lineHeight = 36; + this.Cd.lineWidth = 241; + this.Cd.parent = this; + this.Cd.setTransform(-291.5, -57); + this.Dd = new b.Text("Rules", "30px 'PixelMplus10'", "#ede4b5"); + this.Dd.name = "rulesLabel"; + this.Dd.textAlign = "center"; + this.Dd.lineHeight = 36; + this.Dd.lineWidth = 241; + this.Dd.parent = this; + this.Dd.setTransform(-291.5, -111); + this.title = new b.Text("Rugby", "60px 'PixelMplus10'", + "#ede4b5"); + this.title.name = "title"; + this.title.textAlign = "center"; + this.title.lineHeight = 68; + this.title.lineWidth = 853; + this.title.parent = this; + this.title.setTransform(-.5, -225); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.title}, {t: this.Dd}, {t: this.Cd}, {t: this.Ad}, {t: this.Bd}]}).wait(1)); + this.wU = new a.wU; + this.wU.name = "rugbySpritesDesktop"; + this.wU.parent = this; + this.wU.setTransform(-25.5, 16.5, 1, 1, 0, 0, 0, 16.5, 16.5); + this.timeline.addTween(b.Tween.get(this.wU).wait(1)); + this.instance = new a.vB; + this.instance.parent = + this; + this.instance.setTransform(-462, -252, 3, 3); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(0,0,0,0.749)").s().p("EhK/AqMMAAAhUXMCV/AAAMAAABUXg"); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)) + }).prototype = k(a.Ooa, new b.Rectangle(-480, -270, 960, 540), null); + (a.Loa = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {menu: {id: "tutPingpongMobile"}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.Bf = + new a.mB; + this.Bf.name = "continueButton"; + this.Bf.parent = this; + this.Bf.setTransform(3, 194.1, 1, 1, 0, 0, 0, .2, .1); + this.timeline.addTween(b.Tween.get(this.Bf).wait(1)); + this.Bd = new b.Text("Action Button\nfor Power Shot", "30px 'PixelMplus10'", "#ede4b5"); + this.Bd.name = "control2"; + this.Bd.textAlign = "center"; + this.Bd.lineHeight = 36; + this.Bd.lineWidth = 241; + this.Bd.parent = this; + this.Bd.setTransform(290.5, 51); + this.Ad = new b.Text("Joystick\nto Move", "30px 'PixelMplus10'", "#ede4b5"); + this.Ad.name = "control1"; + this.Ad.textAlign = + "center"; + this.Ad.lineHeight = 36; + this.Ad.lineWidth = 241; + this.Ad.parent = this; + this.Ad.setTransform(-.5, 51); + this.Cd = new b.Text("Move to the ball to return shots, first to 30 wins the match ", "30px 'PixelMplus10'", "#af8147"); + this.Cd.name = "rulesContent"; + this.Cd.textAlign = "center"; + this.Cd.lineHeight = 36; + this.Cd.lineWidth = 241; + this.Cd.parent = this; + this.Cd.setTransform(-291.5, -57); + this.Dd = new b.Text("Rules", "30px 'PixelMplus10'", "#ede4b5"); + this.Dd.name = "rulesLabel"; + this.Dd.textAlign = "center"; + this.Dd.lineHeight = + 36; + this.Dd.lineWidth = 241; + this.Dd.parent = this; + this.Dd.setTransform(-291.5, -111); + this.title = new b.Text("Table Tennis", "60px 'PixelMplus10'", "#ede4b5"); + this.title.name = "title"; + this.title.textAlign = "center"; + this.title.lineHeight = 68; + this.title.lineWidth = 853; + this.title.parent = this; + this.title.setTransform(-.5, -225); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.title}, {t: this.Dd}, {t: this.Cd}, {t: this.Ad}, {t: this.Bd}]}).wait(1)); + this.qU = new a.qU; + this.qU.name = "pingpongSpritesMobile"; + this.qU.parent = + this; + this.qU.setTransform(-25.5, 16.5, 1, 1, 0, 0, 0, 16.5, 16.5); + this.timeline.addTween(b.Tween.get(this.qU).wait(1)); + this.instance = new a.vB; + this.instance.parent = this; + this.instance.setTransform(-462, -252, 3, 3); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(0,0,0,0.749)").s().p("EhK/AqMMAAAhUXMCV/AAAMAAABUXg"); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)) + }).prototype = k(a.Loa, new b.Rectangle(-480, -270, 960, 540), null); + (a.Koa = function (d, + e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {menu: {id: "tutPingpongDesktop"}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.Bf = new a.mB; + this.Bf.name = "continueButton"; + this.Bf.parent = this; + this.Bf.setTransform(3, 194.1, 1, 1, 0, 0, 0, .2, .1); + this.timeline.addTween(b.Tween.get(this.Bf).wait(1)); + this.Bd = new b.Text("Spacebar\nfor Power Shot", "30px 'PixelMplus10'", "#ede4b5"); + this.Bd.name = "control2"; + this.Bd.textAlign = "center"; + this.Bd.lineHeight = 36; + this.Bd.lineWidth = 241; + this.Bd.parent = + this; + this.Bd.setTransform(290.5, 51); + this.Ad = new b.Text("Direction Keys\nto Move", "30px 'PixelMplus10'", "#ede4b5"); + this.Ad.name = "control1"; + this.Ad.textAlign = "center"; + this.Ad.lineHeight = 36; + this.Ad.lineWidth = 241; + this.Ad.parent = this; + this.Ad.setTransform(-.5, 51); + this.Cd = new b.Text("Move to the ball to return shots, first to 30 wins the match ", "30px 'PixelMplus10'", "#af8147"); + this.Cd.name = "rulesContent"; + this.Cd.textAlign = "center"; + this.Cd.lineHeight = 36; + this.Cd.lineWidth = 241; + this.Cd.parent = this; + this.Cd.setTransform(-291.5, + -57); + this.Dd = new b.Text("Rules", "30px 'PixelMplus10'", "#ede4b5"); + this.Dd.name = "rulesLabel"; + this.Dd.textAlign = "center"; + this.Dd.lineHeight = 36; + this.Dd.lineWidth = 241; + this.Dd.parent = this; + this.Dd.setTransform(-291.5, -111); + this.title = new b.Text("Table Tennis", "60px 'PixelMplus10'", "#ede4b5"); + this.title.name = "title"; + this.title.textAlign = "center"; + this.title.lineHeight = 68; + this.title.lineWidth = 853; + this.title.parent = this; + this.title.setTransform(-.5, -225); + this.timeline.addTween(b.Tween.get({}).to({ + state: [{t: this.title}, + {t: this.Dd}, {t: this.Cd}, {t: this.Ad}, {t: this.Bd}] + }).wait(1)); + this.pU = new a.pU; + this.pU.name = "pingpongSpritesDesktop"; + this.pU.parent = this; + this.pU.setTransform(-25.5, 16.5, 1, 1, 0, 0, 0, 16.5, 16.5); + this.timeline.addTween(b.Tween.get(this.pU).wait(1)); + this.instance = new a.vB; + this.instance.parent = this; + this.instance.setTransform(-462, -252, 3, 3); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(0,0,0,0.749)").s().p("EhK/AqMMAAAhUXMCV/AAAMAAABUXg"); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)) + }).prototype = + k(a.Koa, new b.Rectangle(-480, -270, 960, 540), null); + (a.Ioa = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {menu: {id: "tutMarathonMobile"}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.Bf = new a.mB; + this.Bf.name = "continueButton"; + this.Bf.parent = this; + this.Bf.setTransform(3, 194.1, 1, 1, 0, 0, 0, .2, .1); + this.timeline.addTween(b.Tween.get(this.Bf).wait(1)); + this.Bd = new b.Text("Action Button\nto Dodge", "30px 'PixelMplus10'", "#ede4b5"); + this.Bd.name = "control2"; + this.Bd.textAlign = + "center"; + this.Bd.lineHeight = 36; + this.Bd.lineWidth = 241; + this.Bd.parent = this; + this.Bd.setTransform(290.5, 51); + this.Ad = new b.Text("Joystick\nto Move", "30px 'PixelMplus10'", "#ede4b5"); + this.Ad.name = "control1"; + this.Ad.textAlign = "center"; + this.Ad.lineHeight = 36; + this.Ad.lineWidth = 241; + this.Ad.parent = this; + this.Ad.setTransform(-.5, 51); + this.Cd = new b.Text("Avoid obstacles to go faster and win the race", "30px 'PixelMplus10'", "#af8147"); + this.Cd.name = "rulesContent"; + this.Cd.textAlign = "center"; + this.Cd.lineHeight = 36; + this.Cd.lineWidth = + 241; + this.Cd.parent = this; + this.Cd.setTransform(-291.5, -57); + this.Dd = new b.Text("Rules", "30px 'PixelMplus10'", "#ede4b5"); + this.Dd.name = "rulesLabel"; + this.Dd.textAlign = "center"; + this.Dd.lineHeight = 36; + this.Dd.lineWidth = 241; + this.Dd.parent = this; + this.Dd.setTransform(-291.5, -111); + this.title = new b.Text("Marathon", "60px 'PixelMplus10'", "#ede4b5"); + this.title.name = "title"; + this.title.textAlign = "center"; + this.title.lineHeight = 68; + this.title.lineWidth = 853; + this.title.parent = this; + this.title.setTransform(-.5, -225); + this.timeline.addTween(b.Tween.get({}).to({ + state: [{t: this.title}, + {t: this.Dd}, {t: this.Cd}, {t: this.Ad}, {t: this.Bd}] + }).wait(1)); + this.mU = new a.mU; + this.mU.name = "marathonSpritesMobile"; + this.mU.parent = this; + this.mU.setTransform(-25.5, 16.5, 1, 1, 0, 0, 0, 16.5, 16.5); + this.timeline.addTween(b.Tween.get(this.mU).wait(1)); + this.instance = new a.vB; + this.instance.parent = this; + this.instance.setTransform(-462, -252, 3, 3); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(0,0,0,0.749)").s().p("EhK/AqMMAAAhUXMCV/AAAMAAABUXg"); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)) + }).prototype = + k(a.Ioa, new b.Rectangle(-480, -270, 960, 540), null); + (a.Hoa = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {menu: {id: "tutMarathonDesktop"}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.Bf = new a.mB; + this.Bf.name = "continueButton"; + this.Bf.parent = this; + this.Bf.setTransform(3, 194.1, 1, 1, 0, 0, 0, .2, .1); + this.timeline.addTween(b.Tween.get(this.Bf).wait(1)); + this.Bd = new b.Text("Spacebar\nto Dodge", "30px 'PixelMplus10'", "#ede4b5"); + this.Bd.name = "control2"; + this.Bd.textAlign = + "center"; + this.Bd.lineHeight = 36; + this.Bd.lineWidth = 241; + this.Bd.parent = this; + this.Bd.setTransform(290.5, 51); + this.Ad = new b.Text("Direction Keys\nto Move", "30px 'PixelMplus10'", "#ede4b5"); + this.Ad.name = "control1"; + this.Ad.textAlign = "center"; + this.Ad.lineHeight = 36; + this.Ad.lineWidth = 241; + this.Ad.parent = this; + this.Ad.setTransform(-.5, 51); + this.Cd = new b.Text("Avoid obstacles to go faster and win the race", "30px 'PixelMplus10'", "#af8147"); + this.Cd.name = "rulesContent"; + this.Cd.textAlign = "center"; + this.Cd.lineHeight = 36; + this.Cd.lineWidth = 241; + this.Cd.parent = this; + this.Cd.setTransform(-291.5, -57); + this.Dd = new b.Text("Rules", "30px 'PixelMplus10'", "#ede4b5"); + this.Dd.name = "rulesLabel"; + this.Dd.textAlign = "center"; + this.Dd.lineHeight = 36; + this.Dd.lineWidth = 241; + this.Dd.parent = this; + this.Dd.setTransform(-291.5, -111); + this.title = new b.Text("Marathon", "60px 'PixelMplus10'", "#ede4b5"); + this.title.name = "title"; + this.title.textAlign = "center"; + this.title.lineHeight = 68; + this.title.lineWidth = 853; + this.title.parent = this; + this.title.setTransform(-.5, + -225); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.title}, {t: this.Dd}, {t: this.Cd}, {t: this.Ad}, {t: this.Bd}]}).wait(1)); + this.lU = new a.lU; + this.lU.name = "marathonSpritesDesktop"; + this.lU.parent = this; + this.lU.setTransform(-25.5, 16.5, 1, 1, 0, 0, 0, 16.5, 16.5); + this.timeline.addTween(b.Tween.get(this.lU).wait(1)); + this.instance = new a.vB; + this.instance.parent = this; + this.instance.setTransform(-462, -252, 3, 3); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(0,0,0,0.749)").s().p("EhK/AqMMAAAhUXMCV/AAAMAAABUXg"); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)) + }).prototype = k(a.Hoa, new b.Rectangle(-480, -270, 960, 540), null); + (a.Foa = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {menu: {id: "tutClimbingMobile"}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.Bf = new a.mB; + this.Bf.name = "continueButton"; + this.Bf.parent = this; + this.Bf.setTransform(3, 194.1, 1, 1, 0, 0, 0, .2, .1); + this.timeline.addTween(b.Tween.get(this.Bf).wait(1)); + this.Bd = new b.Text("Action Button\nto Jump", "30px 'PixelMplus10'", + "#ede4b5"); + this.Bd.name = "control2"; + this.Bd.textAlign = "center"; + this.Bd.lineHeight = 36; + this.Bd.lineWidth = 241; + this.Bd.parent = this; + this.Bd.setTransform(290.5, 51); + this.Ad = new b.Text("Joystick\nto Move", "30px 'PixelMplus10'", "#ede4b5"); + this.Ad.name = "control1"; + this.Ad.textAlign = "center"; + this.Ad.lineHeight = 36; + this.Ad.lineWidth = 241; + this.Ad.parent = this; + this.Ad.setTransform(-.5, 51); + this.Cd = new b.Text("Climb to the top as fast as you can and avoid obstacles", "30px 'PixelMplus10'", "#af8147"); + this.Cd.name = "rulesContent"; + this.Cd.textAlign = "center"; + this.Cd.lineHeight = 36; + this.Cd.lineWidth = 241; + this.Cd.parent = this; + this.Cd.setTransform(-291.5, -57); + this.Dd = new b.Text("Rules", "30px 'PixelMplus10'", "#ede4b5"); + this.Dd.name = "rulesLabel"; + this.Dd.textAlign = "center"; + this.Dd.lineHeight = 36; + this.Dd.lineWidth = 241; + this.Dd.parent = this; + this.Dd.setTransform(-291.5, -111); + this.title = new b.Text("Climbing", "60px 'PixelMplus10'", "#ede4b5"); + this.title.name = "title"; + this.title.textAlign = "center"; + this.title.lineHeight = 68; + this.title.lineWidth = + 853; + this.title.parent = this; + this.title.setTransform(-.5, -225); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.title}, {t: this.Dd}, {t: this.Cd}, {t: this.Ad}, {t: this.Bd}]}).wait(1)); + this.yT = new a.yT; + this.yT.name = "climbingSpritesMobile"; + this.yT.parent = this; + this.yT.setTransform(-25.5, 16.5, 1, 1, 0, 0, 0, 16.5, 16.5); + this.timeline.addTween(b.Tween.get(this.yT).wait(1)); + this.instance = new a.vB; + this.instance.parent = this; + this.instance.setTransform(-462, -252, 3, 3); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(0,0,0,0.749)").s().p("EhK/AqMMAAAhUXMCV/AAAMAAABUXg"); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)) + }).prototype = k(a.Foa, new b.Rectangle(-480, -270, 960, 540), null); + (a.Eoa = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {menu: {id: "tutClimbingDesktop"}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.Bf = new a.mB; + this.Bf.name = "continueButton"; + this.Bf.parent = this; + this.Bf.setTransform(3, 194.1, 1, 1, 0, 0, 0, .2, + .1); + this.timeline.addTween(b.Tween.get(this.Bf).wait(1)); + this.Bd = new b.Text("Spacebar\nto Jump", "30px 'PixelMplus10'", "#ede4b5"); + this.Bd.name = "control2"; + this.Bd.textAlign = "center"; + this.Bd.lineHeight = 36; + this.Bd.lineWidth = 241; + this.Bd.parent = this; + this.Bd.setTransform(290.5, 51); + this.Ad = new b.Text("Direction Keys\nto Move", "30px 'PixelMplus10'", "#ede4b5"); + this.Ad.name = "control1"; + this.Ad.textAlign = "center"; + this.Ad.lineHeight = 36; + this.Ad.lineWidth = 241; + this.Ad.parent = this; + this.Ad.setTransform(-.5, 51); + this.Cd = + new b.Text("Climb to the top as fast as you can and avoid obstacles", "30px 'PixelMplus10'", "#af8147"); + this.Cd.name = "rulesContent"; + this.Cd.textAlign = "center"; + this.Cd.lineHeight = 36; + this.Cd.lineWidth = 241; + this.Cd.parent = this; + this.Cd.setTransform(-291.5, -57); + this.Dd = new b.Text("Rules", "30px 'PixelMplus10'", "#ede4b5"); + this.Dd.name = "rulesLabel"; + this.Dd.textAlign = "center"; + this.Dd.lineHeight = 36; + this.Dd.lineWidth = 241; + this.Dd.parent = this; + this.Dd.setTransform(-291.5, -111); + this.title = new b.Text("Climbing", "60px 'PixelMplus10'", + "#ede4b5"); + this.title.name = "title"; + this.title.textAlign = "center"; + this.title.lineHeight = 68; + this.title.lineWidth = 853; + this.title.parent = this; + this.title.setTransform(-.5, -225); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.title}, {t: this.Dd}, {t: this.Cd}, {t: this.Ad}, {t: this.Bd}]}).wait(1)); + this.xT = new a.xT; + this.xT.name = "climbingSpritesDesktop"; + this.xT.parent = this; + this.xT.setTransform(-25.5, 16.5, 1, 1, 0, 0, 0, 16.5, 16.5); + this.timeline.addTween(b.Tween.get(this.xT).wait(1)); + this.instance = new a.vB; + this.instance.parent = this; + this.instance.setTransform(-462, -252, 3, 3); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(0,0,0,0.749)").s().p("EhK/AqMMAAAhUXMCV/AAAMAAABUXg"); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)) + }).prototype = k(a.Eoa, new b.Rectangle(-480, -270, 960, 540), null); + (a.Ina = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {menu: {id: "stats"}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.AK = new a.Xla; + this.AK.name = "settings"; + this.AK.parent = this; + this.AK.setTransform(-50, 62, .9999, .9999); + this.share = new a.$la; + this.share.name = "share"; + this.share.parent = this; + this.share.setTransform(50.1, 62.1, .9999, .9999, 0, 0, 0, .1, .1); + this.wK = new a.Sfa; + this.wK.name = "leader"; + this.wK.parent = this; + this.wK.setTransform(17, 62, .9999, .9999); + this.controls = new a.Ida; + this.controls.name = "controls"; + this.controls.parent = this; + this.controls.setTransform(-16.1, 62.1, .9999, .9999, 0, 0, 0, -.1, .1); + this.close = new a.HK; + this.close.name = + "close"; + this.close.parent = this; + this.close.setTransform(-148, -77.5, 1, 1, 0, 0, 0, 0, -.5); + this.c0 = new a.c2a; + this.c0.name = "skating"; + this.c0.parent = this; + this.c0.setTransform(-75, -14, 1, 1, 0, 0, 0, 0, -1); + this.o0 = new a.xWa; + this.o0.name = "tennis"; + this.o0.parent = this; + this.o0.setTransform(79, -40, 1, 1, 0, 0, 0, 0, -1); + this.l0 = new a.p4a; + this.l0.name = "swimming"; + this.l0.parent = this; + this.l0.setTransform(-75.05, -41); + this.vU = new a.M0a; + this.vU.name = "rugby"; + this.vU.parent = this; + this.vU.setTransform(79, -12); + this.pT = new a.Gra; + this.pT.name = + "archery"; + this.pT.parent = this; + this.pT.setTransform(-75, -66, 1, 1, 0, 0, 0, 0, -1); + this.kU = new a.KOa; + this.kU.name = "marathon"; + this.kU.parent = this; + this.kU.setTransform(79, 14, 1, 1, 0, 0, 0, 0, -1); + this.wT = new a.BAa; + this.wT.name = "climbing"; + this.wT.parent = this; + this.wT.setTransform(79, -66, 1, 1, 0, 0, 0, 0, -1); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.wT}, {t: this.kU}, {t: this.pT}, {t: this.vU}, {t: this.l0}, {t: this.o0}, {t: this.c0}, {t: this.close}, {t: this.controls}, {t: this.wK}, {t: this.share}, {t: this.AK}]}).wait(1)); + this.label = new b.Text("Champion Island", "10px 'PixelMplus10'", "#ae8046"); + this.label.name = "label"; + this.label.textAlign = "center"; + this.label.lineHeight = 11; + this.label.lineWidth = 118; + this.label.parent = this; + this.label.setTransform(0, 28); + this.GL = new b.Text("???", "10px 'PixelMplus10'", "#ffffff"); + this.GL.name = "marathonScore"; + this.GL.textAlign = "center"; + this.GL.lineHeight = 11; + this.GL.lineWidth = 40; + this.GL.parent = this; + this.GL.setTransform(112, 4); + this.QL = new b.Text("???", "10px 'PixelMplus10'", "#ffffff"); + this.QL.name = + "syncswimScore"; + this.QL.textAlign = "center"; + this.QL.lineHeight = 11; + this.QL.lineWidth = 40; + this.QL.parent = this; + this.QL.setTransform(-111, -48); + this.JL = new b.Text("???", "10px 'PixelMplus10'", "#ffffff"); + this.JL.name = "rugbyScore"; + this.JL.textAlign = "center"; + this.JL.lineHeight = 11; + this.JL.lineWidth = 40; + this.JL.parent = this; + this.JL.setTransform(112, -22); + this.wL = new b.Text("???", "10px 'PixelMplus10'", "#ffffff"); + this.wL.name = "archeryScore"; + this.wL.textAlign = "center"; + this.wL.lineHeight = 11; + this.wL.lineWidth = 40; + this.wL.parent = + this; + this.wL.setTransform(-111, -74); + this.HL = new b.Text("???", "10px 'PixelMplus10'", "#ffffff"); + this.HL.name = "pingpongScore"; + this.HL.textAlign = "center"; + this.HL.lineHeight = 11; + this.HL.lineWidth = 40; + this.HL.parent = this; + this.HL.setTransform(112, -48); + this.NL = new b.Text("???", "10px 'PixelMplus10'", "#ffffff"); + this.NL.name = "skateScore"; + this.NL.textAlign = "center"; + this.NL.lineHeight = 11; + this.NL.lineWidth = 40; + this.NL.parent = this; + this.NL.setTransform(-111, -22); + this.yL = new b.Text("???", "10px 'PixelMplus10'", "#ffffff"); + this.yL.name = "climbingScore"; + this.yL.textAlign = "center"; + this.yL.lineHeight = 11; + this.yL.lineWidth = 40; + this.yL.parent = this; + this.yL.setTransform(112, -74); + this.BK = new b.Text("???", "10px 'PixelMplus10'", "#ede4b5"); + this.BK.name = "teamName"; + this.BK.textAlign = "center"; + this.BK.lineHeight = 11; + this.BK.lineWidth = 64; + this.BK.parent = this; + this.BK.setTransform(102, 58); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.BK}, {t: this.yL}, {t: this.NL}, {t: this.HL}, {t: this.wL}, {t: this.JL}, {t: this.QL}, {t: this.GL}, {t: this.label}]}).wait(1)); + this.J_ = new a.TOa; + this.J_.name = "marathonScroll"; + this.J_.parent = this; + this.J_.setTransform(-93, 65, 1, 1, 0, 0, 0, 0, -7); + this.r_ = new a.zAa; + this.r_.name = "climbingScroll"; + this.r_.parent = this; + this.r_.setTransform(-103, 21, 1, 1, 0, 0, 0, 0, -7); + this.i_ = new a.Sra; + this.i_.name = "archeryScroll"; + this.i_.parent = this; + this.i_.setTransform(-120, 30, 1, 1, 0, 0, 0, 0, -7); + this.k0 = new a.y4a; + this.k0.name = "swimScroll"; + this.k0.parent = this; + this.k0.setTransform(-124, 50, 1, 1, 0, 0, 0, 0, -7); + this.b0 = new a.r2a; + this.b0.name = "skateScroll"; + this.b0.parent = + this; + this.b0.setTransform(-114, 65, 1, 1, 0, 0, 0, 0, -7); + this.Z_ = new a.c1a; + this.Z_.name = "rubgyScroll"; + this.Z_.parent = this; + this.Z_.setTransform(-82, 50, 1, 1, 0, 0, 0, 0, -7); + this.T_ = new a.dXa; + this.T_.name = "pingpongScroll"; + this.T_.parent = this; + this.T_.setTransform(-86, 30, 1, 1, 0, 0, 0, 0, -7); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.T_}, {t: this.Z_}, {t: this.b0}, {t: this.k0}, {t: this.i_}, {t: this.r_}, {t: this.J_}]}).wait(1)); + this.instance = new a.$4a; + this.instance.parent = this; + this.instance.setTransform(101, 46, + 1, 1, 0, 0, 0, 0, -10); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)); + this.g = new a.JB; + this.g.parent = this; + this.g.setTransform(-105, 42.9, 1, 1, 0, 0, 0, -2, -9); + this.timeline.addTween(b.Tween.get(this.g).wait(1)); + this.BY = new a.lN; + this.BY.name = "marathonStars"; + this.BY.parent = this; + this.BY.setTransform(110.8, 19, 1, 1, 0, 0, 0, 0, -3); + this.JY = new a.lN; + this.JY.name = "rugbyStars"; + this.JY.parent = this; + this.JY.setTransform(110.8, -7, 1, 1, 0, 0, 0, 0, -3); + this.EY = new a.lN; + this.EY.name = "pingpongStars"; + this.EY.parent = this; + this.EY.setTransform(110.8, + -33, 1, 1, 0, 0, 0, 0, -3); + this.qY = new a.lN; + this.qY.name = "climbingStars"; + this.qY.parent = this; + this.qY.setTransform(110.8, -59, 1, 1, 0, 0, 0, 0, -3); + this.LY = new a.lN; + this.LY.name = "skateStars"; + this.LY.parent = this; + this.LY.setTransform(-112, -7, 1, 1, 0, 0, 0, 0, -3); + this.NY = new a.lN; + this.NY.name = "syncswimStars"; + this.NY.parent = this; + this.NY.setTransform(-112, -33, 1, 1, 0, 0, 0, 0, -3); + this.nY = new a.lN; + this.nY.name = "archeryStars"; + this.nY.parent = this; + this.nY.setTransform(-112, -59, 1, 1, 0, 0, 0, 0, -3); + this.timeline.addTween(b.Tween.get({}).to({ + state: [{t: this.nY}, + {t: this.NY}, {t: this.LY}, {t: this.qY}, {t: this.EY}, {t: this.JY}, {t: this.BY}] + }).wait(1)); + this.map = new a.Map; + this.map.name = "map"; + this.map.parent = this; + this.map.setTransform(-60, -73); + this.timeline.addTween(b.Tween.get(this.map).wait(1)); + this.i = new a.Nbb; + this.i.parent = this; + this.i.setTransform(-154, -84); + this.timeline.addTween(b.Tween.get(this.i).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(0,0,0,0.749)").s().p("A4/OEIAA8HMAx/AAAIAAcHg"); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)) + }).prototype = + k(a.Ina, new b.Rectangle(-160, -90, 320, 180), null); + (a.cma = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {menu: {id: "share"}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.s_ = new a.dBa; + this.s_.name = "closeShareButton"; + this.s_.parent = this; + this.s_.setTransform(-98, -46, 1, 1, 0, 0, 0, 0, -1); + this.instance = new a.v1a; + this.instance.parent = this; + this.instance.setTransform(68.5, -9, 1, 1, 0, 0, 0, 3.5, 2); + this.g = new a.DBa; + this.g.parent = this; + this.g.setTransform(35.5, -7.5, 1, 1, 0, 0, 0, 3.5, + 3.5); + this.i = new a.HOa; + this.i.parent = this; + this.i.setTransform(-60.5, -7.5, 1, 1, 0, 0, 0, 3.5, 3.5); + this.o = new a.I8a; + this.o.parent = this; + this.o.setTransform(3.5, -7.5, 1, 1, 0, 0, 0, 3.5, 3.5); + this.H = new a.GDa; + this.H.parent = this; + this.H.setTransform(-28.5, -7.5, 1, 1, 0, 0, 0, 3.5, 3.5); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.H}, {t: this.o}, {t: this.i}, {t: this.g}, {t: this.instance}, {t: this.s_}]}).wait(1)); + this.label = new b.Text("Share", "12px 'PixelMplus10'", "#ede4b5"); + this.label.name = "label"; + this.label.textAlign = + "center"; + this.label.lineHeight = 13; + this.label.lineWidth = 201; + this.label.parent = this; + this.label.setTransform(2.8, -43); + this.timeline.addTween(b.Tween.get(this.label).wait(1)); + this.O = new a.C1a; + this.O.parent = this; + this.O.setTransform(-104, -52); + this.timeline.addTween(b.Tween.get(this.O).wait(1)) + }).prototype = k(a.cma, new b.Rectangle(-109, -57, 219, 71), null); + (a.Ncb = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "textRetro"}, keyboardNav: {order: 5}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.ct; + this.instance.parent = this; + this.instance.setTransform(-38.5, -.5, 1, 1, 180, 0, 0, -1.5, 0); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).to({_off: ! 0}, 1).wait(1)); + this.g = new a.Ep; + this.g.parent = this; + this.g.setTransform(-149, -7); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, 0).to({_off: ! 0}, 1).wait(1)); + this.text = new b.Text("Retro", "10px 'PixelMplus10'", + "#af824a"); + this.text.name = "text"; + this.text.textAlign = "center"; + this.text.lineHeight = 11; + this.text.lineWidth = 66; + this.text.parent = this; + this.text.setTransform(1, -6); + this.timeline.addTween(b.Tween.get(this.text).wait(1).to({color: "#ffffff"}, 0).wait(2)); + this.i = new a.Cx; + this.i.parent = this; + this.i.setTransform(-34, -7); + this.i._off = ! 0; + this.timeline.addTween(b.Tween.get(this.i).wait(1).to({_off: ! 1}, 0).to({_off: ! 0}, 1).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(1.45, + -.5, .3301, .1467, 0, 0, 0, 1.4, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-149, -8, 185, 15); + (a.Mcb = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "textModern"}, keyboardNav: {order: 6}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.ct; + this.instance.parent = this; + this.instance.setTransform(-38.5, -.5, 1, 1, 180, 0, 0, -1.5, + 0); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).to({_off: ! 0}, 1).wait(1)); + this.g = new a.Ep; + this.g.parent = this; + this.g.setTransform(-233, -7); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, 0).to({_off: ! 0}, 1).wait(1)); + this.text = new b.Text("Modern", "10px 'PixelMplus10'", "#af824a"); + this.text.name = "text"; + this.text.textAlign = "center"; + this.text.lineHeight = 11; + this.text.lineWidth = 66; + this.text.parent = this; + this.text.setTransform(1, + -6); + this.timeline.addTween(b.Tween.get(this.text).wait(1).to({color: "#ffffff"}, 0).wait(2)); + this.i = new a.Cx; + this.i.parent = this; + this.i.setTransform(-34, -7); + this.i._off = ! 0; + this.timeline.addTween(b.Tween.get(this.i).wait(1).to({_off: ! 1}, 0).to({_off: ! 0}, 1).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(1.45, -.5, .3301, .1467, 0, 0, 0, 1.4, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-233, -8, 269, 15); + (a.Acb = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "soundOn"}, keyboardNav: {order: 3}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.ct; + this.instance.parent = this; + this.instance.setTransform(-38.5, -.5, 1, 1, 180, 0, 0, -1.5, 0); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).to({_off: ! 0}, 1).wait(1)); + this.g = new a.Ep; + this.g.parent = this; + this.g.setTransform(-149, -7); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, 0).to({_off: ! 0}, 1).wait(1)); + this.text = new b.Text("On", "10px 'PixelMplus10'", "#af824a"); + this.text.name = "text"; + this.text.textAlign = "center"; + this.text.lineHeight = 11; + this.text.lineWidth = 66; + this.text.parent = this; + this.text.setTransform(1, -6); + this.timeline.addTween(b.Tween.get(this.text).wait(1).to({color: "#ffffff"}, 0).wait(2)); + this.i = new a.Cx; + this.i.parent = this; + this.i.setTransform(-34, + -7); + this.i._off = ! 0; + this.timeline.addTween(b.Tween.get(this.i).wait(1).to({_off: ! 1}, 0).to({_off: ! 0}, 1).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(1.45, -.5, .3301, .1467, 0, 0, 0, 1.4, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-149, -8, 185, 15); + (a.zcb = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = { + button: {eventId: "soundOff"}, + keyboardNav: {order: 4} + }; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.ct; + this.instance.parent = this; + this.instance.setTransform(-38.5, -.5, 1, 1, 180, 0, 0, -1.5, 0); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).to({_off: ! 0}, 1).wait(1)); + this.g = new a.Ep; + this.g.parent = this; + this.g.setTransform(-233, -7); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, 0).to({_off: ! 0}, 1).wait(1)); + this.text = + new b.Text("Off", "10px 'PixelMplus10'", "#af824a"); + this.text.name = "text"; + this.text.textAlign = "center"; + this.text.lineHeight = 11; + this.text.lineWidth = 66; + this.text.parent = this; + this.text.setTransform(1, -6); + this.timeline.addTween(b.Tween.get(this.text).wait(1).to({color: "#ffffff"}, 0).wait(2)); + this.i = new a.Cx; + this.i.parent = this; + this.i.setTransform(-34, -7); + this.i._off = ! 0; + this.timeline.addTween(b.Tween.get(this.i).wait(1).to({_off: ! 1}, 0).to({_off: ! 0}, 1).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(1.45, -.5, .3301, .1467, 0, 0, 0, 1.4, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-233, -8, 269, 15); + (a.Sbb = function (d, e, f) { + this.initialize(d, e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "newGame"}, keyboardNav: {order: 2}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); + this.instance = new a.ct; + this.instance.parent = this; + this.instance.setTransform(-128.5, -.5, 1, 1, 180, 0, 0, -1.5, 0); + this.instance._off = ! 0; + this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off: ! 1}, 0).to({_off: ! 0}, 1).wait(1)); + this.g = new a.Ep; + this.g.parent = this; + this.g.setTransform(-149, -7); + this.g._off = ! 0; + this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off: ! 1}, 0).to({_off: ! 0}, 1).wait(1)); + this.text = new b.Text("Start a new game", "10px 'PixelMplus10'", "#ede4b5"); + this.text.name = "text"; + this.text.lineHeight = 11; + this.text.lineWidth = 228; + this.text.parent = + this; + this.text.setTransform(-114.45, -6); + this.timeline.addTween(b.Tween.get(this.text).wait(1).to({color: "#ffffff"}, 0).wait(2)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(-73, -.5, .4009, .1467, 0, 0, 0, 1.2, 0); + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-149, -8, 265, 16.1); + (a.F_a = function (d, e, f) { + this.initialize(d, e, f, {zero: 0, rating1: 1, rating2: 2, rating3: 3}); + this.u = + function () { + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(4)); + this.LQ = new a.B_a; + this.LQ.name = "rating0"; + this.LQ.parent = this; + this.LQ.setTransform(-66, -1, 1, 1, 0, 0, 0, -66, -1); + this.MQ = new a.C_a; + this.MQ.name = "rating1"; + this.MQ.parent = this; + this.MQ.setTransform(-66, -1, 1, 1, 0, 0, 0, -66, -1); + this.NQ = new a.D_a; + this.NQ.name = "rating2"; + this.NQ.parent = this; + this.NQ.setTransform(-66, -1, 1, 1, 0, 0, 0, -66, -1); + this.OQ = new a.E_a; + this.OQ.name = "rating3"; + this.OQ.parent = this; + this.OQ.setTransform(-66, -1, 1, 1, + 0, 0, 0, -66, -1); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.LQ}]}).to({state: [{t: this.MQ}]}, 1).to({state: [{t: this.NQ}]}, 1).to({state: [{t: this.OQ}]}, 1).wait(1)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-46, -11, 92, 20); + (a.lka = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {menu: {id: "pause"}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.title = new b.Text("Paused", "60px 'PixelMplus10'", "#ede4b5"); + this.title.name = "title"; + this.title.textAlign = + "center"; + this.title.lineHeight = 68; + this.title.lineWidth = 924; + this.title.parent = this; + this.title.setTransform(0, -189); + this.timeline.addTween(b.Tween.get(this.title).wait(1)); + this.B_ = new a.TEa; + this.B_.name = "how"; + this.B_.parent = this; + this.B_.setTransform(.1, -5.6, 1, 1, 0, 0, 0, .1, .4); + this.Y_ = new a.v0a; + this.Y_.name = "restart"; + this.Y_.parent = this; + this.Y_.setTransform(-3.1, 68, 1, 1, 0, 0, 0, -3.1, 0); + this.resume = new a.w0a; + this.resume.name = "resume"; + this.resume.parent = this; + this.resume.setTransform(-3.1, -76, 1, 1, 0, 0, 0, -3.1, + 0); + this.BL = new a.ZZa; + this.BL.name = "exit"; + this.BL.parent = this; + this.BL.setTransform(0, 140); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.BL}, {t: this.resume}, {t: this.Y_}, {t: this.B_}]}).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(0,0,0,0.749)").s().p("EhK/AqMMAAAhUXMCV/AAAMAAABUXg"); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)) + }).prototype = k(a.lka, new b.Rectangle(-480, -270, 960, 540), null); + (a.Kda = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {menu: {id: "controls"}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.zT = new a.kab; + this.zT.name = "confirmButton"; + this.zT.parent = this; + this.zT.setTransform(-76.4, 65.05, .3332, .3327, 0, 0, 0, -1.2, .1); + this.BT = new a.lab; + this.BT.name = "defaultsButton"; + this.BT.parent = this; + this.BT.setTransform(77.05, 65, .3332, .3327, 0, 0, 0, .1, 0); + this.back = new a.e1; + this.back.name = "back"; + this.back.parent = this; + this.back.setTransform(-148, -77.5, 1, 1, 0, 0, 0, 0, -.5); + this.timeline.addTween(b.Tween.get({}).to({ + state: [{t: this.back}, {t: this.BT}, + {t: this.zT}] + }).wait(1)); + this.sT = new b.Text("Cancel", "10px 'PixelMplus10'", "#ede4b5"); + this.sT.name = "cancelLabel"; + this.sT.lineHeight = 11; + this.sT.lineWidth = 76; + this.sT.parent = this; + this.sT.setTransform(-115, 31.05, 1, 1.0225); + this.oT = new b.Text("Action", "10px 'PixelMplus10'", "#ede4b5"); + this.oT.name = "actionLabel"; + this.oT.lineHeight = 11; + this.oT.lineWidth = 76; + this.oT.parent = this; + this.oT.setTransform(-115, 17.05, 1, 1.0225); + this.uU = new b.Text("Right", "10px 'PixelMplus10'", "#ede4b5"); + this.uU.name = "rightLabel"; + this.uU.lineHeight = + 11; + this.uU.lineWidth = 76; + this.uU.parent = this; + this.uU.setTransform(-115, 3.05, 1, 1.0225); + this.iU = new b.Text("Left", "10px 'PixelMplus10'", "#ede4b5"); + this.iU.name = "leftLabel"; + this.iU.lineHeight = 11; + this.iU.lineWidth = 76; + this.iU.parent = this; + this.iU.setTransform(-115, -10.95, 1, 1.0225); + this.downLabel = new b.Text("Down", "10px 'PixelMplus10'", "#ede4b5"); + this.downLabel.name = "downLabel"; + this.downLabel.lineHeight = 11; + this.downLabel.lineWidth = 76; + this.downLabel.parent = this; + this.downLabel.setTransform(-115, -24.95, 1, 1.0225); + this.PU = new b.Text("Up", "10px 'PixelMplus10'", "#ede4b5"); + this.PU.name = "upLabel"; + this.PU.lineHeight = 11; + this.PU.lineWidth = 76; + this.PU.parent = this; + this.PU.setTransform(-115, -38.95, 1, 1.0225); + this.yN = new b.Text("Controls", "20px 'PixelMplus10'", "#ede4b5"); + this.yN.name = "controlsLabel"; + this.yN.lineHeight = 24; + this.yN.lineWidth = 116; + this.yN.parent = this; + this.yN.setTransform(-115, -75); + this.timeline.addTween(b.Tween.get({}).to({ + state: [{t: this.yN}, {t: this.PU}, {t: this.downLabel}, {t: this.iU}, {t: this.uU}, {t: this.oT}, + {t: this.sT}] + }).wait(1)); + this.FT = new a.dbb; + this.FT.name = "gpCancel"; + this.FT.parent = this; + this.FT.setTransform(112, 36.5, 1, 1, 0, 0, 0, 1, -.5); + this.ET = new a.cbb; + this.ET.name = "gpAction"; + this.ET.parent = this; + this.ET.setTransform(112, 22.5, 1, 1, 0, 0, 0, 1, -.5); + this.IT = new a.gbb; + this.IT.name = "gpRight"; + this.IT.parent = this; + this.IT.setTransform(112, 8.5, 1, 1, 0, 0, 0, 1, -.5); + this.HT = new a.fbb; + this.HT.name = "gpLeft"; + this.HT.parent = this; + this.HT.setTransform(112, -5.5, 1, 1, 0, 0, 0, 1, -.5); + this.GT = new a.ebb; + this.GT.name = "gpDown"; + this.GT.parent = + this; + this.GT.setTransform(112, -19.5, 1, 1, 0, 0, 0, 1, -.5); + this.JT = new a.hbb; + this.JT.name = "gpUp"; + this.JT.parent = this; + this.JT.setTransform(112, -33.5, 1, 1, 0, 0, 0, 1, -.5); + this.bU = new a.sbb; + this.bU.name = "kbCancel"; + this.bU.parent = this; + this.bU.setTransform(28, 36.5, 1, 1, 0, 0, 0, 1, -.5); + this.aU = new a.rbb; + this.aU.name = "kbAction"; + this.aU.parent = this; + this.aU.setTransform(28, 22.5, 1, 1, 0, 0, 0, 1, -.5); + this.eU = new a.wbb; + this.eU.name = "kbRight"; + this.eU.parent = this; + this.eU.setTransform(28, 8.5, 1, 1, 0, 0, 0, 1, -.5); + this.dU = new a.vbb; + this.dU.name = + "kbLeft"; + this.dU.parent = this; + this.dU.setTransform(28, -5.5, 1, 1, 0, 0, 0, 1, -.5); + this.cU = new a.tbb; + this.cU.name = "kbDown"; + this.cU.parent = this; + this.cU.setTransform(28, -19.5, 1, 1, 0, 0, 0, 1, -.5); + this.fU = new a.xbb; + this.fU.name = "kbUp"; + this.fU.parent = this; + this.fU.setTransform(30.5, -31.1, 1, 1, 0, 0, 0, 3.5, 1.9); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.fU}, {t: this.cU}, {t: this.dU}, {t: this.eU}, {t: this.aU}, {t: this.bU}, {t: this.JT}, {t: this.GT}, {t: this.HT}, {t: this.IT}, {t: this.ET}, {t: this.FT}]}).wait(1)); + this.instance = + new a.jab; + this.instance.parent = this; + this.instance.setTransform(102, -68); + this.g = new a.ubb; + this.g.parent = this; + this.g.setTransform(18, -68); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.g}, {t: this.instance}]}).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("#582e11").s().dr(-.5, -10.5, 1, 21); + this.shape.setTransform(-.5, 64.5); + this.Ze = new b.Shape; + this.Ze.graphics.f("#1d0900").s().dr(-14.5, -14.5, 29, 29); + this.Ze.setTransform(.0025, 1.5051, 10.4307, 3.2078); + this.i = new a.K_; + this.i.parent = this; + this.i.setTransform(-154, -84); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.i}, {t: this.Ze}, {t: this.shape}]}).wait(1)); + this.Zs = new b.Shape; + this.Zs.graphics.f("rgba(0,0,0,0.749)").s().p("A4/OEIAA8HMAx/AAAIAAcHg"); + this.timeline.addTween(b.Tween.get(this.Zs).wait(1)) + }).prototype = k(a.Kda, new b.Rectangle(-160, -90, 320, 180), null); + (a.dma = function (d, e, f) { + this.initialize(d, e, f, {}); + this.share = new a.cma; + this.share.name = "share"; + this.share.parent = this; + this.share.setTransform(466, 348.5, 3, 3, 0, 0, 0, 0, -23.5); + this.timeline.addTween(b.Tween.get(this.share).wait(1)) + }).prototype = k(a.dma, new b.Rectangle(139, 248, 657, 213), null); + (a.Yla = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {menu: {id: "settings"}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.rS = new b.Text("Text Style", "10px 'PixelMplus10'", "#ede4b5"); + this.rS.name = "textStyleLabel"; + this.rS.lineHeight = 11; + this.rS.lineWidth = 76; + this.rS.parent = this; + this.rS.setTransform(-115, 25.05, 1, 1.0225); + this.hS = new b.Text("Sound", + "10px 'PixelMplus10'", "#ede4b5"); + this.hS.name = "soundLabel"; + this.hS.lineHeight = 11; + this.hS.lineWidth = 76; + this.hS.parent = this; + this.hS.setTransform(-115, 4.05, 1, 1.0225); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.hS}, {t: this.rS}]}).wait(1)); + this.p0 = new a.Mcb; + this.p0.name = "textStyleModern"; + this.p0.parent = this; + this.p0.setTransform(95, 30.5, 1, 1, 0, 0, 0, 1, -.5); + this.d0 = new a.zcb; + this.d0.name = "soundOff"; + this.d0.parent = this; + this.d0.setTransform(95, 9.5, 1, 1, 0, 0, 0, 1, -.5); + this.L_ = new a.Sbb; + this.L_.name = + "newGame"; + this.L_.parent = this; + this.L_.setTransform(.45, -26.5, 1, 1, 0, 0, 0, 1, -.5); + this.q0 = new a.Ncb; + this.q0.name = "textStyleRetro"; + this.q0.parent = this; + this.q0.setTransform(11, 30.5, 1, 1, 0, 0, 0, 1, -.5); + this.e0 = new a.Acb; + this.e0.name = "soundOn"; + this.e0.parent = this; + this.e0.setTransform(13.5, 11.9, 1, 1, 0, 0, 0, 3.5, 1.9); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.e0}, {t: this.q0}, {t: this.L_}, {t: this.d0}, {t: this.p0}]}).wait(1)); + this.back = new a.e1; + this.back.name = "back"; + this.back.parent = this; + this.back.setTransform(-148, + -77.5, 1, 1, 0, 0, 0, 0, -.5); + this.timeline.addTween(b.Tween.get(this.back).wait(1)); + this.ML = new b.Text("Settings", "20px 'PixelMplus10'", "#ede4b5"); + this.ML.name = "settingsLabel"; + this.ML.textAlign = "center"; + this.ML.lineHeight = 24; + this.ML.lineWidth = 282; + this.ML.parent = this; + this.ML.setTransform(0, -75); + this.timeline.addTween(b.Tween.get(this.ML).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("#582e11").s().p("AiFABIAAgCIELAAIAAACg"); + this.shape.setTransform(.0085, -7.5035, 10.4291, 3.3682); + this.Ze = new b.Shape; + this.Ze.graphics.f("#1d0900").s().p("AiQCRIAAkhIEhAAIAAEhg"); + this.Ze.setTransform(.0025, 1.5051, 10.4307, 3.2078); + this.instance = new a.K_; + this.instance.parent = this; + this.instance.setTransform(-154, -84); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}, {t: this.Ze}, {t: this.shape}]}).wait(1)); + this.Zs = new b.Shape; + this.Zs.graphics.f("rgba(0,0,0,0.749)").s().p("A4/OEIAA8HMAx/AAAIAAcHg"); + this.timeline.addTween(b.Tween.get(this.Zs).wait(1)) + }).prototype = k(a.Yla, new b.Rectangle(-160, -90, 320, 180), + null); + (a.nla = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {menu: {id: "results"}} + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.share = new a.B1a; + this.share.name = "share"; + this.share.parent = this; + this.share.setTransform(144.05, 145.05, .3333, .3333, 0, 0, 0, .1, .1); + this.oU = new a.QVa; + this.oU.name = "overworld"; + this.oU.parent = this; + this.oU.setTransform(175.95, 145.05, .3333, .3333, 0, 0, 0, -.1, .1); + this.X_ = new a.u0a; + this.X_.name = "replay"; + this.X_.parent = this; + this.X_.setTransform(111.95, + 145.05, .3333, .3333, 0, 0, 0, -.1, .1); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.X_}, {t: this.oU}, {t: this.share}]}).wait(1)); + this.title = new b.Text("Results", "20px 'PixelMplus10'", "#ede4b5"); + this.title.name = "title"; + this.title.textAlign = "center"; + this.title.lineHeight = 24; + this.title.lineWidth = 282; + this.title.parent = this; + this.title.setTransform(144.05, 7.05); + this.timeline.addTween(b.Tween.get(this.title).wait(1)); + this.CL = new b.Text("Your High Score", "10px 'PixelMplus10'", "#af824a"); + this.CL.name = + "highScoreLabel"; + this.CL.textAlign = "center"; + this.CL.lineHeight = 13; + this.CL.lineWidth = 156; + this.CL.parent = this; + this.CL.setTransform(143.95, 35.95); + this.mC = new b.Text("???", "12px 'PixelMplus10'", "#af824a"); + this.mC.name = "highScore"; + this.mC.textAlign = "center"; + this.mC.lineHeight = 15; + this.mC.lineWidth = 156; + this.mC.parent = this; + this.mC.setTransform(144, 51); + this.Hf = new b.Text("???", "20px 'PixelMplus10'", "#f4fff0"); + this.Hf.name = "score"; + this.Hf.textAlign = "center"; + this.Hf.lineHeight = 24; + this.Hf.lineWidth = 156; + this.Hf.parent = + this; + this.Hf.setTransform(144, 69); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.Hf}, {t: this.mC}, {t: this.CL}]}).wait(1)); + this.zK = new a.F_a; + this.zK.name = "ratings"; + this.zK.parent = this; + this.zK.setTransform(144.2, 113.1, 1, 1, 0, 0, 0, .2, .1); + this.instance = new a.yFa; + this.instance.parent = this; + this.instance.setTransform(215, 13); + this.g = new a.AFa; + this.g.parent = this; + this.g.setTransform(-17, 11); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.g}, {t: this.instance}, {t: this.zK}]}).wait(1)); + this.i = + new a.K_; + this.i.parent = this; + this.i.setTransform(-10, -2); + this.timeline.addTween(b.Tween.get(this.i).wait(1)); + this.shape = new b.Shape; + this.shape.graphics.f("rgba(0,0,0,0.749)").s().p("A4/OEIAA8HMAx/AAAIAAcHg"); + this.shape.setTransform(144, 82); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)) + }).prototype = k(a.nla, new b.Rectangle(-17, -8, 331, 180), null); + (a.Obb = function (d, e, f) { + this.initialize(d, e, f, { + stats: 0, + skip: 1, + results: 2, + pause: 3, + newgame: 4, + leaderboard: 5, + controls: 6, + settings: 7, + tutArcheryDesktop: 8, + tutArcheryMobile: 9, + tutClimbingDesktop: 10, + tutClimbingMobile: 11, + tutMarathonDesktop: 12, + tutMarathonMobile: 13, + tutRugbyDesktop: 14, + tutRugbyMobile: 15, + tutSkateDesktop: 16, + tutSkateMobile: 17, + tutSwimDesktop: 18, + tutSwimMobile: 19, + tutPingpongDesktop: 20, + tutPingpongMobile: 21 + }); + this.u = function () { + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(22)); + this.kS = new a.Ina; + this.kS.name = "statsMenu"; + this.kS.parent = this; + this.kS.setTransform(480, 270, 3, 3); + this.instance = new a.yma; + this.instance.parent = this; + this.instance.setTransform(479.85, + 270); + this.Jw = new a.nla; + this.Jw.name = "resultsMenu"; + this.Jw.parent = this; + this.Jw.setTransform(480, 270, 3, 3, 0, 0, 0, 144, 82); + this.S_ = new a.lka; + this.S_.name = "pauseMenu"; + this.S_.parent = this; + this.S_.setTransform(480, 270); + this.M_ = new a.nja; + this.M_.name = "newGameMenu"; + this.M_.parent = this; + this.M_.setTransform(480, 270); + this.AY = new a.Ufa; + this.AY.name = "leaderboardMenu"; + this.AY.parent = this; + this.AY.setTransform(480.1, 270.1, 3, 3); + this.t_ = new a.Kda; + this.t_.name = "controlsMenu"; + this.t_.parent = this; + this.t_.setTransform(479.7, + 267.6, 3, 3, 0, 0, 0, -.1, -.8); + this.a0 = new a.Yla; + this.a0.name = "settingsMenu"; + this.a0.parent = this; + this.a0.setTransform(480, 270, 3, 3); + this.s0 = new a.Coa; + this.s0.name = "tutArcheryDesktopPause"; + this.s0.parent = this; + this.s0.setTransform(480, 270); + this.t0 = new a.Doa; + this.t0.name = "tutArcheryMobilePause"; + this.t0.parent = this; + this.t0.setTransform(480, 270); + this.u0 = new a.Eoa; + this.u0.name = "tutClimbingDesktopPause"; + this.u0.parent = this; + this.u0.setTransform(480, 270); + this.v0 = new a.Foa; + this.v0.name = "tutClimbingMobilePause"; + this.v0.parent = + this; + this.v0.setTransform(480, 270); + this.w0 = new a.Hoa; + this.w0.name = "tutMarathonDesktopPause"; + this.w0.parent = this; + this.w0.setTransform(480, 270); + this.x0 = new a.Ioa; + this.x0.name = "tutMarathonMobilePause"; + this.x0.parent = this; + this.x0.setTransform(480, 270); + this.A0 = new a.Ooa; + this.A0.name = "tutRugbyDesktopPause"; + this.A0.parent = this; + this.A0.setTransform(480, 270); + this.text = new b.Text("", "20px 'PixelMplus10-Regular'", "#af824a"); + this.text.textAlign = "center"; + this.text.lineHeight = 24; + this.text.lineWidth = 100; + this.text.parent = + this; + this.text.setTransform(517, 456); + this.B0 = new a.Poa; + this.B0.name = "tutRugbyMobilePause"; + this.B0.parent = this; + this.B0.setTransform(480, 270); + this.C0 = new a.Qoa; + this.C0.name = "tutSkateDesktopPause"; + this.C0.parent = this; + this.C0.setTransform(480, 270); + this.D0 = new a.Roa; + this.D0.name = "tutSkateMobilePause"; + this.D0.parent = this; + this.D0.setTransform(480, 270); + this.E0 = new a.Soa; + this.E0.name = "tutSwimDesktopPause"; + this.E0.parent = this; + this.E0.setTransform(480, 270); + this.F0 = new a.Toa; + this.F0.name = "tutSwimMobilePause"; + this.F0.parent = this; + this.F0.setTransform(480, 270); + this.y0 = new a.Koa; + this.y0.name = "tutPingpongDesktopPause"; + this.y0.parent = this; + this.y0.setTransform(480, 270); + this.z0 = new a.Loa; + this.z0.name = "tutPingpongMobilePause"; + this.z0.parent = this; + this.z0.setTransform(480, 270); + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.kS}]}).to({state: [{t: this.instance}]}, 1).to({state: [{t: this.Jw}]}, 1).to({state: [{t: this.S_}]}, 1).to({state: [{t: this.M_}]}, 1).to({state: [{t: this.AY}]}, 1).to({state: [{t: this.t_}]}, 1).to({state: [{t: this.a0}]}, + 1).to({state: [{t: this.s0}]}, 1).to({state: [{t: this.t0}]}, 1).to({state: [{t: this.u0}]}, 1).to({state: [{t: this.v0}]}, 1).to({state: [{t: this.w0}]}, 1).to({state: [{t: this.x0}]}, 1).to({state: [{t: this.A0}]}, 1).to({state: [{t: this.B0}, {t: this.text}]}, 1).to({state: [{t: this.C0}]}, 1).to({state: [{t: this.D0}]}, 1).to({state: [{t: this.E0}]}, 1).to({state: [{t: this.F0}]}, 1).to({state: [{t: this.y0}]}, 1).to({state: [{t: this.z0}]}, 1).wait(1)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(477, 270, 513, 270.1); + a.properties = { + id: "1754741A4A3841C2AB73BD915D793487", + width: 960, + height: 540, + fps: 31, + color: "#666666", + opacity: 1, + aB: [{src: "images_menus/ArcheryIcon.png", id: "ArcheryIcon"}, { + src: "images_menus/ArrowArt.png", + id: "ArrowArt" + }, {src: "images_menus/back.png", id: "back"}, { + src: "images_menus/backfocus.png", + id: "backfocus" + }, {src: "images_menus/Bitmap129.png", id: "Bitmap129"}, { + src: "images_menus/Bitmap129_1.png", + id: "Bitmap129_1" + }, {src: "images_menus/Bitmap131.png", id: "Bitmap131"}, { + src: "images_menus/Bitmap131_1.png", + id: "Bitmap131_1" + }, {src: "images_menus/Bitmap132.png", id: "Bitmap132"}, + {src: "images_menus/Bitmap132_1.png", id: "Bitmap132_1"}, { + src: "images_menus/Bitmap133.png", + id: "Bitmap133" + }, {src: "images_menus/Bitmap133_1.png", id: "Bitmap133_1"}, { + src: "images_menus/Bitmap134.png", + id: "Bitmap134" + }, {src: "images_menus/Bitmap134_1.png", id: "Bitmap134_1"}, { + src: "images_menus/Bitmap135.png", + id: "Bitmap135" + }, {src: "images_menus/Bitmap135_1.png", id: "Bitmap135_1"}, { + src: "images_menus/Bitmap136.png", + id: "Bitmap136" + }, {src: "images_menus/Bitmap136_1.png", id: "Bitmap136_1"}, { + src: "images_menus/Bitmap137.png", + id: "Bitmap137" + }, {src: "images_menus/Bitmap137_1.png", id: "Bitmap137_1"}, { + src: "images_menus/Bitmap138.png", + id: "Bitmap138" + }, {src: "images_menus/Bitmap138_1.png", id: "Bitmap138_1"}, { + src: "images_menus/Bitmap139.png", + id: "Bitmap139" + }, {src: "images_menus/Bitmap139_1.png", id: "Bitmap139_1"}, { + src: "images_menus/Bitmap140.png", + id: "Bitmap140" + }, {src: "images_menus/Bitmap140_1.png", id: "Bitmap140_1"}, { + src: "images_menus/Bitmap141.png", + id: "Bitmap141" + }, {src: "images_menus/Bitmap141_1.png", id: "Bitmap141_1"}, { + src: "images_menus/Bitmap142.png", + id: "Bitmap142" + }, {src: "images_menus/Bitmap142_1.png", id: "Bitmap142_1"}, { + src: "images_menus/Bitmap143.png", + id: "Bitmap143" + }, {src: "images_menus/Bitmap143_1.png", id: "Bitmap143_1"}, { + src: "images_menus/Bitmap147.png", + id: "Bitmap147" + }, {src: "images_menus/Bitmap148.png", id: "Bitmap148"}, { + src: "images_menus/Bitmap149.png", + id: "Bitmap149" + }, {src: "images_menus/Bitmap150.png", id: "Bitmap150"}, { + src: "images_menus/Bitmap151.png", + id: "Bitmap151" + }, {src: "images_menus/Bitmap152.png", id: "Bitmap152"}, { + src: "images_menus/Bitmap153.png", + id: "Bitmap153" + }, {src: "images_menus/Bitmap178.png", id: "Bitmap178"}, { + src: "images_menus/Bitmap180.png", + id: "Bitmap180" + }, {src: "images_menus/Bitmap181.png", id: "Bitmap181"}, { + src: "images_menus/Bitmap182.png", + id: "Bitmap182" + }, {src: "images_menus/Bitmap183.png", id: "Bitmap183"}, { + src: "images_menus/Bitmap186.png", + id: "Bitmap186" + }, {src: "images_menus/Bitmap187.png", id: "Bitmap187"}, { + src: "images_menus/Bitmap188.png", + id: "Bitmap188" + }, {src: "images_menus/Bitmap189.png", id: "Bitmap189"}, {src: "images_menus/Bitmap191.png", id: "Bitmap191"}, + {src: "images_menus/Bitmap192.png", id: "Bitmap192"}, { + src: "images_menus/Bitmap196.png", + id: "Bitmap196" + }, {src: "images_menus/Bitmap197.png", id: "Bitmap197"}, { + src: "images_menus/Bitmap198.png", + id: "Bitmap198" + }, {src: "images_menus/Bitmap235.png", id: "Bitmap235"}, { + src: "images_menus/Bitmap236.png", + id: "Bitmap236" + }, {src: "images_menus/Bitmap237.png", id: "Bitmap237"}, { + src: "images_menus/Bitmap238.png", + id: "Bitmap238" + }, {src: "images_menus/Bitmap239.png", id: "Bitmap239"}, {src: "images_menus/Bitmap240.png", id: "Bitmap240"}, { + src: "images_menus/Bitmap241.png", + id: "Bitmap241" + }, {src: "images_menus/Bitmap242.png", id: "Bitmap242"}, { + src: "images_menus/Bitmap243.png", + id: "Bitmap243" + }, {src: "images_menus/Bitmap244.png", id: "Bitmap244"}, { + src: "images_menus/Bitmap245.png", + id: "Bitmap245" + }, {src: "images_menus/Bitmap247.png", id: "Bitmap247"}, { + src: "images_menus/Bitmap248.png", + id: "Bitmap248" + }, {src: "images_menus/Bitmap249.png", id: "Bitmap249"}, { + src: "images_menus/Bitmap250.png", + id: "Bitmap250" + }, {src: "images_menus/Bitmap251.png", id: "Bitmap251"}, {src: "images_menus/Bitmap252.png", id: "Bitmap252"}, + {src: "images_menus/Bitmap253.png", id: "Bitmap253"}, { + src: "images_menus/Bitmap254.png", + id: "Bitmap254" + }, {src: "images_menus/Bitmap255.png", id: "Bitmap255"}, { + src: "images_menus/Bitmap256.png", + id: "Bitmap256" + }, {src: "images_menus/Bitmap257.png", id: "Bitmap257"}, { + src: "images_menus/Bitmap258.png", + id: "Bitmap258" + }, {src: "images_menus/Bitmap259.png", id: "Bitmap259"}, { + src: "images_menus/Bitmap81.png", + id: "Bitmap81" + }, {src: "images_menus/BlackDotArt.png", id: "BlackDotArt"}, { + src: "images_menus/ClimbIcon1.png", + id: "ClimbIcon1" + }, + {src: "images_menus/closeButton.png", id: "closeButton"}, { + src: "images_menus/closeButtonFocus.png", + id: "closeButtonFocus" + }, {src: "images_menus/controllerFocus.png", id: "controllerFocus"}, { + src: "images_menus/controllerIdle.png", + id: "controllerIdle" + }, {src: "images_menus/ControlsButtonBG.png", id: "ControlsButtonBG"}, { + src: "images_menus/ControlsFocus.png", + id: "ControlsFocus" + }, {src: "images_menus/ControlsIdle.png", id: "ControlsIdle"}, { + src: "images_menus/copyFocus.png", + id: "copyFocus" + }, { + src: "images_menus/copyIdle.png", + id: "copyIdle" + }, {src: "images_menus/DangoStickArt.png", id: "DangoStickArt"}, { + src: "images_menus/emailFocus.png", + id: "emailFocus" + }, {src: "images_menus/emailIdle.png", id: "emailIdle"}, { + src: "images_menus/exitFocus.png", + id: "exitFocus" + }, {src: "images_menus/exitIdle.png", id: "exitIdle"}, { + src: "images_menus/facebookFocus.png", + id: "facebookFocus" + }, {src: "images_menus/facebookIdle.png", id: "facebookIdle"}, { + src: "images_menus/GreenDangoArt1.png", + id: "GreenDangoArt1" + }, {src: "images_menus/GreenDangoArt2.png", id: "GreenDangoArt2"}, + {src: "images_menus/GreenDangoArt3.png", id: "GreenDangoArt3"}, { + src: "images_menus/HighlightDotArt.png", + id: "HighlightDotArt" + }, {src: "images_menus/inariArt.png", id: "inariArt"}, { + src: "images_menus/inariArt_1.png", + id: "inariArt_1" + }, {src: "images_menus/InariArt2.png", id: "InariArt2"}, { + src: "images_menus/indicatorAction.png", + id: "indicatorAction" + }, { + src: "images_menus/indicatorActionMobile.png", + id: "indicatorActionMobile" + }, {src: "images_menus/indicatorActionMobilePressed.png", id: "indicatorActionMobilePressed"}, { + src: "images_menus/indicatorActionPressed.png", + id: "indicatorActionPressed" + }, {src: "images_menus/indicatorDown.png", id: "indicatorDown"}, { + src: "images_menus/indicatorJoystick.png", + id: "indicatorJoystick" + }, { + src: "images_menus/indicatorJoystickBase.png", + id: "indicatorJoystickBase" + }, {src: "images_menus/indicatorLeft.png", id: "indicatorLeft"}, { + src: "images_menus/indicatorLeft_1.png", + id: "indicatorLeft_1" + }, {src: "images_menus/indicatorRight.png", id: "indicatorRight"}, { + src: "images_menus/indicatorRight_1.png", + id: "indicatorRight_1" + }, { + src: "images_menus/indicatorUp.png", + id: "indicatorUp" + }, {src: "images_menus/KappaArt.png", id: "KappaArt"}, { + src: "images_menus/KappaArt_1.png", + id: "KappaArt_1" + }, {src: "images_menus/KappaArt2.png", id: "KappaArt2"}, { + src: "images_menus/KarasuArt.png", + id: "KarasuArt" + }, {src: "images_menus/KarasuArt_1.png", id: "KarasuArt_1"}, { + src: "images_menus/KarasuArt2.png", + id: "KarasuArt2" + }, {src: "images_menus/keyboardFocus.png", id: "keyboardFocus"}, { + src: "images_menus/keyboardIdle.png", + id: "keyboardIdle" + }, {src: "images_menus/Koma1Art.png", id: "Koma1Art"}, { + src: "images_menus/Koma2Art.png", + id: "Koma2Art" + }, {src: "images_menus/LeaderFocus.png", id: "LeaderFocus"}, { + src: "images_menus/LeaderIdle.png", + id: "LeaderIdle" + }, {src: "images_menus/LuckyIdleS.png", id: "LuckyIdleS"}, { + src: "images_menus/LuckyIdleSArt2.png", + id: "LuckyIdleSArt2" + }, {src: "images_menus/LuckyIdleSArt3.png", id: "LuckyIdleSArt3"}, { + src: "images_menus/LuckyLocationIconArt.png", + id: "LuckyLocationIconArt" + }, {src: "images_menus/MarathonIcon.png", id: "MarathonIcon"}, {src: "images_menus/menuBG.png", id: "menuBG"}, { + src: "images_menus/menuBGMapBG.png", + id: "menuBGMapBG" + }, {src: "images_menus/NoStarsArt.png", id: "NoStarsArt"}, { + src: "images_menus/OneStarArt.png", + id: "OneStarArt" + }, {src: "images_menus/PinkDangoArt1.png", id: "PinkDangoArt1"}, { + src: "images_menus/PinkDangoArt2.png", + id: "PinkDangoArt2" + }, {src: "images_menus/PinkDangoArt3.png", id: "PinkDangoArt3"}, { + src: "images_menus/PongIcon1.png", + id: "PongIcon1" + }, {src: "images_menus/replayFocus.png", id: "replayFocus"}, { + src: "images_menus/replayIdle.png", + id: "replayIdle" + }, {src: "images_menus/RugbyIcon11.png", id: "RugbyIcon11"}, + {src: "images_menus/ScrollRotateArt0.png", id: "ScrollRotateArt0"}, { + src: "images_menus/ScrollRotateArt1.png", + id: "ScrollRotateArt1" + }, {src: "images_menus/ScrollRotateArt2.png", id: "ScrollRotateArt2"}, { + src: "images_menus/ScrollRotateArt3.png", + id: "ScrollRotateArt3" + }, {src: "images_menus/ScrollRotateArt4.png", id: "ScrollRotateArt4"}, { + src: "images_menus/ScrollRotateArt5.png", + id: "ScrollRotateArt5" + }, {src: "images_menus/ScrollRotateArt6.png", id: "ScrollRotateArt6"}, { + src: "images_menus/ScrollRotateArt7.png", + id: "ScrollRotateArt7" + }, + {src: "images_menus/searchFocus.png", id: "searchFocus"}, { + src: "images_menus/searchIdle.png", + id: "searchIdle" + }, { + src: "images_menus/SelectedIconCircleArt.png", + id: "SelectedIconCircleArt" + }, {src: "images_menus/SettingsFocus.png", id: "SettingsFocus"}, { + src: "images_menus/SettingsIdle.png", + id: "SettingsIdle" + }, {src: "images_menus/ShareFocus.png", id: "ShareFocus"}, { + src: "images_menus/ShareIdle.png", + id: "ShareIdle" + }, {src: "images_menus/ShareWindow.png", id: "ShareWindow"}, { + src: "images_menus/SkateIcon1.png", + id: "SkateIcon1" + }, + {src: "images_menus/startBG1.png", id: "startBG1"}, { + src: "images_menus/StatsMenuBGArt.png", + id: "StatsMenuBGArt" + }, {src: "images_menus/SwimIcon1.png", id: "SwimIcon1"}, { + src: "images_menus/ThreeStarArt.png", + id: "ThreeStarArt" + }, {src: "images_menus/tutBG.png", id: "tutBG"}, { + src: "images_menus/twitterFocus.png", + id: "twitterFocus" + }, {src: "images_menus/twitterIdle.png", id: "twitterIdle"}, { + src: "images_menus/TwoStarsArt.png", + id: "TwoStarsArt" + }, {src: "images_menus/UshiArt.png", id: "UshiArt"}, {src: "images_menus/UshiArt_1.png", id: "UshiArt_1"}, + {src: "images_menus/UshiArt2.png", id: "UshiArt2"}, { + src: "images_menus/valueBG.png", + id: "valueBG" + }, { + src: "images_menus/WhiteCircleFrameArt11.png", + id: "WhiteCircleFrameArt11" + }, {src: "images_menus/YellowDangoArt1.png", id: "YellowDangoArt1"}, { + src: "images_menus/YellowDangoArt2.png", + id: "YellowDangoArt2" + }, {src: "images_menus/YellowDangoArt3.png", id: "YellowDangoArt3"}], + tB: [] + }; + (a.Stage = function (d) { + createjs.Stage.call(this, d) + }).prototype = c = new createjs.Stage; + c.Ca = function (d) { + this.tickEnabled = d + }; + c.play = function () { + this.tickEnabled = + ! 0; + this.getChildAt(0).gotoAndPlay(this.vp()) + }; + c.stop = function (d) { + d && this.seek(d); + this.tickEnabled = ! 1 + }; + c.seek = function (d) { + this.tickEnabled = ! 0; + this.getChildAt(0).gotoAndStop(a.properties.fps * d / 1E3) + }; + c.getDuration = function () { + return this.getChildAt(0).totalFrames / a.properties.fps * 1E3 + }; + c.vp = function () { + return this.getChildAt(0).currentFrame / a.properties.fps * 1E3 + }; + g.Zd = g.Zd || []; + g.Ve || (g.Ve = []); + g.oB = function (d) { + g.Ve.push(d); + if (0 < g.Zd.length) for (var e = 0; e < g.Zd.length; ++e) d(g.Zd[e]) + }; + g.Kf = g.Kf || {}; + g.Kf["1754741A4A3841C2AB73BD915D793487"] = + { + getStage: function () { + return (void 0).getStage() + }, getLibrary: function () { + return a + }, pB: function () { + return n + }, Sx: function () { + return h + } + }; + g.Px = function (d) { + g.Zd.push(d); + for (var e = 0; e < g.Ve.length; e++) g.Ve[e](d) + }; + g.kp = function (d) { + return g.Kf[d] + }; + g.rB = function (d, e, f, v, u) { + function E() { + var F = a.properties.width, H = a.properties.height, I = window.innerWidth, J = window.innerHeight, + U = window.devicePixelRatio || 1, O = I / F, R = J / H, w = 1; + if (d) if ("width" == e && P == I || "height" == e && K == J) w = T; else if (f) 1 == v ? w = Math.min(O, R) : 2 == v && (w = Math.max(O, + R)); else if (I < F || J < H) w = Math.min(O, R); + u[0].width = F * U * w; + u[0].height = H * U * w; + u.forEach(function (W) { + W.style.width = F * w + "px"; + W.style.height = H * w + "px" + }); + P = I; + K = J; + T = w; + (void 0).update() + } + + var P, K, T = 1; + window.addEventListener("resize", E); + E() + } +})(createjs = createjs || {}, Wk = Wk || {}); +var Xk = Sk; +(function (b, g) { + function m() { + var d = this._cloneProps(new this.constructor(this.mode, this.startPosition, this.loop)); + d.gotoAndStop(this.currentFrame); + d.paused = this.paused; + d.framerate = this.framerate; + return d + } + + function k(d, e, f) { + d = b.extend(d, b.MovieClip); + d.clone = m; + d.j = e; + d.frameBounds = f; + return d + } + + var c, a = {}, n = {}, h = {}; + a.uB = []; + (a.pV = function () { + this.initialize(h.CloseIcon) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, 0, 9, 7); + (a.cba = function () { + this.initialize(h.videoframe) + }).prototype = c = new b.Bitmap; + c.j = new b.Rectangle(0, + 0, 320, 180); + (a.qV = function (d, e, f) { + this.initialize(d, e, f, {}); + this.instance = new a.pV; + this.instance.parent = this; + this.timeline.addTween(b.Tween.get(this.instance).wait(1)) + }).prototype = k(a.qV, new b.Rectangle(0, 0, 9, 7), null); + (a.Si = function (d, e, f) { + this.initialize(d, e, f, {}); + this.shape = new b.Shape; + this.shape.graphics.f("#ff0000").s().p("AwjH+IAAv7MAhHAAAIAAP7g"); + this.timeline.addTween(b.Tween.get(this.shape).wait(1)) + }).prototype = k(a.Si, new b.Rectangle(-106, -51, 212, 102), null); + (a.HK = function (d, e, f) { + this.initialize(d, + e, f, {idle: 0, focus: 1, down: 2}); + this.u = function () { + this.T = {button: {eventId: "close"}, keyboardNav: {order: 1}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(4)); + this.instance = new a.pV; + this.instance.parent = this; + this.instance.setTransform(-4, -4); + this.g = new a.qV; + this.g.parent = this; + this.g.setTransform(0, -.5, 1, 1, 0, 0, 0, 4, 3.5); + this.g.alpha = .5; + this.timeline.addTween(b.Tween.get({}).to({state: [{t: this.instance}]}).to({state: [{t: this.g}]}, 1).to({state: [{t: this.instance}]}, 1).to({state: []}, + 1).wait(1)); + this.hitArea = new a.Si; + this.hitArea.name = "hitArea"; + this.hitArea.parent = this; + this.hitArea.setTransform(0, -.5, .1183, .1866, 0, 0, 0, .4, 0); + this.hitArea._off = ! 0; + this.hitArea.visible = ! 1; + this.timeline.addTween(b.Tween.get(this.hitArea).wait(3).to({_off: ! 1}, 0).wait(1)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(-12.6, -10, 25.1, 19); + (a.hY = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + this.T = {menu: {}}; + this.stop() + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.instance = + new a.HK; + this.instance.parent = this; + this.instance.setTransform(7.25, 7.95, 1, 1, 0, 0, 0, 0, -.5); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)); + this.g = new a.cba; + this.g.parent = this; + this.g.setTransform(-300, -161); + this.timeline.addTween(b.Tween.get(this.g).wait(1)) + }).prototype = k(a.hY, new b.Rectangle(-300, -161, 320, 180), null); + (a.video = function (d, e, f) { + this.initialize(d, e, f, {}); + this.u = function () { + }; + this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); + this.instance = new a.hY; + this.instance.parent = + this; + this.instance.setTransform(901.9, 485.7, 3, 3, 0, 0, 0, .5, .5); + this.timeline.addTween(b.Tween.get(this.instance).wait(1)) + }).prototype = c = new b.MovieClip; + c.j = new b.Rectangle(480.4, 271.2, 480, 270.00000000000006); + a.properties = { + id: "462CEA9764EE4C8D86AB0BDFEAEB1BF9", + width: 960, + height: 540, + fps: 30, + color: "#999999", + opacity: 1, + aB: [{src: "images_video/CloseIcon.png", id: "CloseIcon"}, {src: "images_video/videoframe.png", id: "videoframe"}], + tB: [] + }; + (a.Stage = function (d) { + createjs.Stage.call(this, d) + }).prototype = c = new createjs.Stage; + c.Ca = function (d) { + this.tickEnabled = d + }; + c.play = function () { + this.tickEnabled = ! 0; + this.getChildAt(0).gotoAndPlay(this.vp()) + }; + c.stop = function (d) { + d && this.seek(d); + this.tickEnabled = ! 1 + }; + c.seek = function (d) { + this.tickEnabled = ! 0; + this.getChildAt(0).gotoAndStop(a.properties.fps * d / 1E3) + }; + c.getDuration = function () { + return this.getChildAt(0).totalFrames / a.properties.fps * 1E3 + }; + c.vp = function () { + return this.getChildAt(0).currentFrame / a.properties.fps * 1E3 + }; + g.Zd = g.Zd || []; + g.Ve || (g.Ve = []); + g.oB = function (d) { + g.Ve.push(d); + if (0 < g.Zd.length) for (var e = + 0; e < g.Zd.length; ++e) d(g.Zd[e]) + }; + g.Kf = g.Kf || {}; + g.Kf["462CEA9764EE4C8D86AB0BDFEAEB1BF9"] = { + getStage: function () { + return (void 0).getStage() + }, getLibrary: function () { + return a + }, pB: function () { + return n + }, Sx: function () { + return h + } + }; + g.Px = function (d) { + g.Zd.push(d); + for (var e = 0; e < g.Ve.length; e++) g.Ve[e](d) + }; + g.kp = function (d) { + return g.Kf[d] + }; + g.rB = function (d, e, f, v, u) { + function E() { + var F = a.properties.width, H = a.properties.height, I = window.innerWidth, J = window.innerHeight, + U = window.devicePixelRatio || 1, O = I / F, R = J / H, w = 1; + if (d) if ("width" == + e && P == I || "height" == e && K == J) w = T; else if (f) 1 == v ? w = Math.min(O, R) : 2 == v && (w = Math.max(O, R)); else if (I < F || J < H) w = Math.min(O, R); + u[0].width = F * U * w; + u[0].height = H * U * w; + u.forEach(function (W) { + W.style.width = F * w + "px"; + W.style.height = H * w + "px" + }); + P = I; + K = J; + T = w; + (void 0).update() + } + + var P, K, T = 1; + window.addEventListener("resize", E); + E() + } +})(createjs = createjs || {}, Xk = Xk || {}); +var Yk = new Map, Zk = new Map, $k = function (b, g, m, k) { + this.Spa = b; + this.next = g; + this.text = m; + this.ha = L(b.V + b.nodeName + "opt" + k, m || "") || null +}, al = function (b, g, m, k, c) { + this.V = b; + this.nodeName = g; + this.text = m; + this.ha = L(b + g, m); + this.U = []; + for (b = 0; b < k.length; b++) this.U.push(new $k(this, k[b].next, k[b].text, b)); + this.tags = c +}, bl = function (b) { + return 1 == b.U.length && ! b.U[0].text +}, cl = function () { + for (var b = p(Ok), g = b.next(); ! g.done; g = b.next()) a:{ + var m = g.value; + if (m) { + g = m[0]; + m = p(m); + for (var k = m.next(); ! k.done; k = m.next()) { + var c = k.value; + k = c.V + c.nodeName; + if (Yk.has(k)) break a; + c = new al(c.V, c.nodeName, c.text, c.U, c.tags); + Yk.set(k, c) + } + Zk.has(g.V) || Zk.set(g.V, []); + Zk.get(g.V).push(g.nodeName) + } + } +}; +var S = function (b) { + this.ha = b +}; +l = S.prototype; +l.enable = function () { +}; +l.disable = function () { +}; +l.gu = function () { +}; +l.fu = function () { +}; +l.gqa = function () { +}; +l.P_ = function () { +}; +var dl = function () { + if (pf()) throw""; + return qf() || nf() +}, el = function () { + if (pf()) throw""; + return of() || lf() || kf() && ! ff() +}, fl = function () { + if (pf()) throw""; + return gf() ? ! 1 : of() && ! (jf() || hf() && ! gf()) || lf() && kf() +}, gl = function () { + return pf() ? "1" == df.ha.get("ccta") : of() && ! nf() || lf() && kf() && ! qf() +}, hl = function () { + var b = ! kf() && qf() && 600 >= window.innerHeight; + return qf() || b +}; +var il = function (b) { + Qa.call(this, b); + this.ha = new Image +}; +q(il, Qa); +il.prototype.Bb = function () { + var b = this; + if (this.ha.src) return Promise.resolve(this.ha); + var g, m = new Promise(function (c) { + return g = c + }), k = function () { + Ra(b); + g(b.ha) + }; + this.ha.crossOrigin = "Anonymous"; + this.ha.decode ? (this.ha.src = this.oc, this.ha.decode().then(k, function () { + b.ha.removeAttribute("crossOrigin"); + b.ha.src = b.oc; + b.ha.decode().then(k, function (c) { + console.error(c); + k() + }) + })) : (this.ha.onload = k, this.ha.onerror = function () { + b.ha.removeAttribute("crossOrigin"); + b.ha.removeAttribute("onerror"); + b.ha.src = b.ha.src + }, + this.ha.src = this.oc); + (this.ha.complete || "complete" == this.ha.readyState) && k(); + return m +}; +var jl = function (b, g, m) { + m = void 0 === m ? ! 1 : m; + this.xY = []; + this.ha = []; + if (m) { + var k = document.createElement("canvas"); + k.width = 1; + k.height = 1; + k = -1 < k.toDataURL("image/webp").indexOf("image/webp") + } else k = ! 1; + g = p(g); + for (var c = g.next(); ! c.done; c = g.next()) { + c = c.value; + var a = b + c.filename; + m && k && (a = a.replace(/(\.jpg|\.png)/, ".webp")); + a = new il(a); + c = c.size; + this.xY.push(a); + this.ha.push(c) + } +}, Rk = function (b) { + return "number" === typeof b ? b : b[0] +}, kl = function (b, g) { + var m = b.xY[Rk(g)]; + return (new Promise(function (k) { + m.Ca ? k() : m.kb.push(k); + m.Bb() + })).then(function () { + }) +}; +var ml = function () { + jl.call(this, window.root, ll, ! 1) +}; +q(ml, jl); +Ga(ml); +var ll = [{filename: "preload-sprite.png", size: [320, 197]}, { + filename: "shared-sprite.png", + size: [728, 844] + }, {filename: "cutscene-sprite.png", size: [704, 593]}, { + filename: "overworld-sprite.png", + size: [3243, 3455] + }, {filename: "archery-sprite.png", size: [499, 233]}, { + filename: "climbing-sprite.png", + size: [892, 1007] + }, {filename: "marathon-sprite.png", size: [601, 374]}, { + filename: "pingpong-sprite.png", + size: [403, 490] + }, {filename: "rugby-sprite.png", size: [459, 641]}, {filename: "skate-sprite.png", size: [803, 649]}, { + filename: "swim-sprite.png", + size: [746, 686] + }], nl = [1, 724, 0, 3, 5], ol = [3, 3108, 3359, 16, 26], pl = [3, 441, 3360, 16, 26], ql = [3, 941, 3365, 16, 16], + rl = [3, 3186, 56, 54, 62], sl = [3, 1996, 3097, 18, 19], tl = [3, 3137, 478, 103, 38], ul = [3, 2620, 1406, 103, 38], + vl = [3, 2620, 1447, 103, 38], wl = [3, 1389, 1707, 103, 38], xl = [3, 2058, 3206, 48, 48], + yl = [3, 1199, 3213, 48, 48], zl = [3, 1569, 3365, 16, 16], Al = [3, 2139, 3365, 16, 16], + Bl = [3, 2158, 3365, 16, 16], Cl = [3, 1346, 721, 14, 7], Dl = [3, 3229, 1576, 13, 7], El = [3, 736, 293, 14, 6], + Fl = [3, 2499, 1787, 14, 9], Gl = [3, 2177, 3366, 16, 16], Hl = [3, 714, 293, 19, 5], Il = [3, 2469, 874, 19, + 7], Jl = [3, 2278, 1315, 17, 7], Kl = [3, 2619, 511, 19, 8], Ll = [3, 988, 3362, 16, 22], + Ml = [3, 2654, 3362, 16, 22], Nl = [3, 2726, 3356, 18, 20], Ol = [3, 1085, 3340, 20, 21], + Pl = [3, 1098, 3169, 21, 21], Ql = [3, 2849, 3356, 18, 19], Rl = [3, 171, 3341, 20, 21], Sl = [3, 2726, 3332, 21, 21], + Tl = [3, 811, 3331, 17, 21], Ul = [3, 1080, 3364, 16, 20], Vl = [3, 1223, 3364, 16, 20], Wl = [3, 3230, 2458, 12, 20], + Xl = [3, 784, 3379, 14, 21], Yl = [3, 3227, 3341, 15, 20], Zl = [3, 1099, 3377, 15, 20], $l = [3, 1374, 3377, 15, 20], + am = [3, 2055, 3377, 15, 20], bm = [3, 76, 3378, 15, 19], cm = [3, 386, 3363, 16, 21], dm = [3, 3230, 2481, 12, 20], + em = + [3, 2747, 3356, 18, 20], fm = [3, 194, 3341, 20, 21], gm = [3, 1254, 3333, 21, 21], hm = [3, 783, 3357, 18, 19], + im = [3, 217, 3341, 20, 21], jm = [3, 2328, 3335, 21, 21], km = [3, 3230, 2504, 12, 17], lm = [3, 1599, 2536, 12, 17], + mm = [3, 1301, 3213, 12, 17], nm = [3, 767, 3379, 14, 22], om = [3, 801, 3379, 14, 21], pm = [3, 804, 3357, 18, 19], + qm = [3, 1840, 3357, 18, 18], rm = [3, 1902, 3346, 18, 30], sm = [3, 1923, 3346, 18, 30], tm = [3, 344, 3336, 20, 25], + um = [3, 1446, 3337, 20, 25], vm = [3, 304, 2727, 15, 21], wm = [3, 1421, 3364, 16, 20], xm = [3, 990, 3169, 72, 72], + ym = [3, 506, 294, 12, 3], zm = [3, 1979, 3363, 16, 20], Am = [3, 2096, + 3358, 17, 18], Bm = [3, 1007, 3365, 16, 16], Cm = [3, 3195, 3364, 16, 17], Dm = [3, 1061, 3364, 16, 20], + Em = [3, 2969, 3331, 20, 27], Fm = [3, 2619, 424, 22, 26], Gm = [3, 3214, 3364, 16, 17], Hm = [3, 2558, 2741, 18, 19], + Im = [3, 253, 3293, 43, 42], Jm = [3, 3196, 2646, 45, 41], Km = [3, 1250, 3213, 48, 48], Lm = [3, 2750, 3332, 16, 21], + Mm = [3, 726, 3352, 18, 22], Nm = [3, 2427, 3353, 18, 22], Om = [3, 1944, 3377, 15, 20], Pm = [3, 2481, 3217, 48, 48], + Qm = [3, 745, 1301, 17, 9], Rm = [3, 747, 3358, 17, 24], Sm = [3, 1572, 2804, 23, 23], Tm = [3, 2799, 3358, 17, 17], + Um = [3, 1278, 3333, 17, 21], Vm = [3, 2196, 3366, 16, 16], Wm = [3, 2215, 3365, + 16, 16], Xm = [3, 2346, 3365, 16, 16], Ym = [3, 2630, 3365, 16, 16], Zm = [3, 934, 2835, 20, 19], + $m = [3, 2177, 3009, 90, 101], an = [3, 1916, 3379, 14, 19], bn = [3, 2096, 3379, 14, 19], + cn = [3, 2113, 3379, 14, 19], dn = [3, 2394, 3379, 14, 19], en = [3, 547, 294, 3, 3], fn = [3, 541, 294, 3, 5], + gn = [3, 586, 3379, 14, 28], hn = [3, 725, 3204, 59, 66], jn = [3, 1756, 3330, 25, 26], kn = [3, 1784, 3330, 25, 26], + ln = [3, 1810, 3296, 21, 30], mn = [3, 2630, 3332, 21, 30], nn = [3, 2258, 3339, 20, 22], + on = [3, 2281, 3339, 20, 22], pn = [3, 1469, 3337, 20, 24], qn = [3, 245, 3338, 20, 24], rn = [3, 3242, 159, 1, 1], + sn = [3, 2491, 874, 19, 7], tn = [3, + 2298, 1315, 17, 7], un = [3, 461, 570, 19, 8], vn = [3, 1324, 721, 19, 5], wn = [3, 1688, 731, 67, 20], V = new Map; +V.set("animate_exports/images_loading/ScrollRotateArt0.png", [0, 0, 183, 14, 14]); +V.set("animate_exports/images_loading/ScrollRotateArt1.png", [0, 48, 183, 10, 14]); +V.set("animate_exports/images_loading/ScrollRotateArt2.png", [0, 109, 183, 6, 14]); +V.set("animate_exports/images_loading/ScrollRotateArt3.png", [0, 61, 183, 10, 14]); +V.set("animate_exports/images_loading/ScrollRotateArt4.png", [0, 17, 183, 14, 14]); +V.set("animate_exports/images_loading/ScrollRotateArt5.png", [0, 74, 183, 10, 14]); +V.set("animate_exports/images_loading/ScrollRotateArt6.png", [0, 99, 183, 7, 14]); +V.set("animate_exports/images_loading/ScrollRotateArt7.png", [0, 34, 183, 11, 14]); +V.set("animate_exports/images_video/CloseIcon.png", [0, 87, 183, 9, 7]); +V.set("animate_exports/images_video/videoframe.png", [0, 0, 0, 320, 180]); +V.set("animate_exports/images_dialog/ArrowArt.png", nl); +V.set("animate_exports/images_dialog/ArrowCollectorNeutralArt.png", [1, 447, 359, 56, 68]); +V.set("animate_exports/images_dialog/Baker_Portrait_001.png", [1, 160, 550, 48, 59]); +V.set("animate_exports/images_dialog/Baker_Retired_Portait_001.png", [1, 331, 460, 50, 66]); +V.set("animate_exports/images_dialog/BigCatNeutralArt.png", [1, 554, 701, 44, 44]); +V.set("animate_exports/images_dialog/Bitmap12311.png", [1, 546, 460, 12, 8]); +V.set("animate_exports/images_dialog/BlueOniNeutralArt.png", [1, 422, 580, 46, 54]); +V.set("animate_exports/images_dialog/CoachNeutralArt.png", [1, 667, 330, 58, 52]); +V.set("animate_exports/images_dialog/ConviniNeutralArt.png", [1, 471, 460, 50, 63]); +V.set("animate_exports/images_dialog/DialogueFillArt1.png", [1, 311, 171, 228, 68]); +V.set("animate_exports/images_dialog/InariNeutralArt.png", [1, 266, 506, 49, 52]); +V.set("animate_exports/images_dialog/InvisibleOctopusNeutral.png", [1, 277, 458, 51, 45]); +V.set("animate_exports/images_dialog/KappaNeutralArt.png", [1, 301, 411, 54, 44]); +V.set("animate_exports/images_dialog/KarasuNeutralArt.png", [1, 415, 430, 53, 49]); +V.set("animate_exports/images_dialog/Koma1NeutralArt.png", [1, 563, 432, 53, 47]); +V.set("animate_exports/images_dialog/Koma2NeutralArt.png", [1, 223, 449, 51, 49]); +V.set("animate_exports/images_dialog/LittleMonkeyNeutral.png", [1, 506, 360, 56, 50]); +V.set("animate_exports/images_dialog/LuckyAnnoyedArt11.png", [1, 101, 611, 44, 51]); +V.set("animate_exports/images_dialog/LuckyGrinArt.png", [1, 148, 612, 44, 51]); +V.set("animate_exports/images_dialog/LuckyHappyArt.png", [1, 413, 637, 44, 51]); +V.set("animate_exports/images_dialog/LuckyHideArt.png", [1, 601, 711, 44, 44]); +V.set("animate_exports/images_dialog/LuckyNeutralArt11111.png", [1, 305, 639, 44, 51]); +V.set("animate_exports/images_dialog/LuckyRawrArt.png", [1, 460, 639, 44, 51]); +V.set("animate_exports/images_dialog/LuckyShockedArt.png", [1, 352, 645, 44, 51]); +V.set("animate_exports/images_dialog/LuckySmileSweatArt.png", [1, 47, 646, 44, 51]); +V.set("animate_exports/images_dialog/LuckyWideEyedSweatArt.png", [1, 567, 647, 44, 51]); +V.set("animate_exports/images_dialog/LuckyWorriedArt.png", [1, 614, 657, 44, 51]); +V.set("animate_exports/images_dialog/MomoNeutralArt.png", [1, 289, 693, 44, 46]); +V.set("animate_exports/images_dialog/MonkeyNeutralArt.png", [1, 169, 448, 51, 51]); +V.set("animate_exports/images_dialog/NoodleCookArt.png", [1, 680, 551, 47, 48]); +V.set("animate_exports/images_dialog/OniBakerArt.png", [1, 524, 482, 50, 51]); +V.set("animate_exports/images_dialog/OniPortraitArt.png", [1, 437, 526, 49, 51]); +V.set("animate_exports/images_dialog/OverworldMenuButtonBrown.png", [1, 565, 360, 22, 22]); +V.set("animate_exports/images_dialog/OwlNeutralArt.png", [1, 0, 342, 61, 46]); +V.set("animate_exports/images_dialog/PortraitBlackWolfie.png", [1, 446, 693, 44, 46]); +V.set("animate_exports/images_dialog/PortraitCrab.png", [1, 565, 385, 56, 44]); +V.set("animate_exports/images_dialog/PortraitDustyScroll.png", [1, 648, 711, 44, 44]); +V.set("animate_exports/images_dialog/PortraitFroggy.png", [1, 52, 552, 48, 44]); +V.set("animate_exports/images_dialog/PortraitKijiDad1.png", [1, 311, 311, 65, 49]); +V.set("animate_exports/images_dialog/PortraitKijiKid.png", [1, 447, 311, 65, 45]); +V.set("animate_exports/images_dialog/PortraitMomoDog.png", [1, 661, 657, 44, 51]); +V.set("animate_exports/images_dialog/PortraitMomoMonkey.png", [1, 52, 599, 46, 44]); +V.set("animate_exports/images_dialog/PortraitMomobird.png", [1, 195, 658, 44, 51]); +V.set("animate_exports/images_dialog/PortraitMomodadneutral.png", [1, 0, 659, 44, 50]); +V.set("animate_exports/images_dialog/PortraitMomomomneutral.png", [1, 0, 712, 44, 44]); +V.set("animate_exports/images_dialog/PortraitMomotaro.png", [1, 213, 549, 49, 49]); +V.set("animate_exports/images_dialog/PortraitOtohimeNeutral.png", [1, 641, 602, 44, 52]); +V.set("animate_exports/images_dialog/PortraitRacerAmad.png", [1, 115, 445, 51, 53]); +V.set("animate_exports/images_dialog/PortraitRacerAneutral.png", [1, 0, 447, 51, 53]); +V.set("animate_exports/images_dialog/PortraitSupermountaingirl.png", [1, 54, 449, 51, 48]); +V.set("animate_exports/images_dialog/PortraitWolfie.png", [1, 471, 589, 46, 47]); +V.set("animate_exports/images_dialog/Portraitbirthdaykidhappy.png", [1, 624, 385, 55, 53]); +V.set("animate_exports/images_dialog/Portraitbirthdaykidsad.png", [1, 0, 391, 55, 53]); +V.set("animate_exports/images_dialog/Portraitbirthdaymom.png", [1, 592, 600, 46, 44]); +V.set("animate_exports/images_dialog/Portraitblueleader.png", [1, 379, 360, 56, 50]); +V.set("animate_exports/images_dialog/Portraitgreenleader.png", [1, 306, 363, 56, 45]); +V.set("animate_exports/images_dialog/Portraitkijimunastatue1.png", [1, 379, 311, 65, 46]); +V.set("animate_exports/images_dialog/Portraitotohimestatue.png", [1, 520, 606, 44, 52]); +V.set("animate_exports/images_dialog/Portraitowlstatue.png", [1, 650, 281, 72, 46]); +V.set("animate_exports/images_dialog/PortraitracerBmad.png", [1, 318, 529, 49, 50]); +V.set("animate_exports/images_dialog/PortraitracerBneutral.png", [1, 489, 536, 49, 50]); +V.set("animate_exports/images_dialog/Portraitredleader.png", [1, 399, 691, 44, 47]); +V.set("animate_exports/images_dialog/Portraitrugbystatue.png", [1, 186, 392, 55, 53]); +V.set("animate_exports/images_dialog/Portraittanukistatue.png", [1, 213, 502, 50, 44]); +V.set("animate_exports/images_dialog/Portraittengustatue.png", [1, 186, 342, 57, 47]); +V.set("animate_exports/images_dialog/Portraityoichistatue.png", [1, 358, 413, 54, 44]); +V.set("animate_exports/images_dialog/RainBoyNeutralArt.png", [1, 0, 601, 44, 55]); +V.set("animate_exports/images_dialog/RedOniNeutralArt.png", [1, 577, 503, 49, 53]); +V.set("animate_exports/images_dialog/SleepyCatNeutral.png", [1, 336, 699, 44, 46]); +V.set("animate_exports/images_dialog/SnowOwlAvatarArt.png", [1, 188, 712, 44, 44]); +V.set("animate_exports/images_dialog/TanookiNeutralArt.png", [1, 0, 503, 50, 44]); +V.set("animate_exports/images_dialog/TenguNeutralArt.png", [1, 246, 342, 57, 47]); +V.set("animate_exports/images_dialog/Town_people_bat_portrait.png", [1, 315, 582, 46, 54]); +V.set("animate_exports/images_dialog/Town_people_fish_handicap_portrait.png", [1, 629, 551, 48, 46]); +V.set("animate_exports/images_dialog/Town_people_fish_portrait.png", [1, 160, 502, 50, 45]); +V.set("animate_exports/images_dialog/Town_people_grandpa_portrait.png", [1, 107, 551, 48, 57]); +V.set("animate_exports/images_dialog/Town_people_hare_portrait.png", [1, 265, 561, 47, 44]); +V.set("animate_exports/images_dialog/Town_people_kid_portrait.png", [1, 244, 392, 54, 54]); +V.set("animate_exports/images_dialog/Town_people_nova_portrait.png", [1, 674, 441, 52, 54]); +V.set("animate_exports/images_dialog/Town_people_pango_portrait.png", [1, 541, 559, 48, 44]); +V.set("animate_exports/images_dialog/Town_people_seahorse_portrait.png", [1, 54, 500, 50, 49]); +V.set("animate_exports/images_dialog/Town_people_shiba_portrait.png", [1, 364, 595, 46, 47]); +V.set("animate_exports/images_dialog/TrainWorkerArt.png", [1, 674, 498, 50, 50]); +V.set("animate_exports/images_dialog/TraineeNoodlesArt1.png", [1, 64, 342, 58, 52]); +V.set("animate_exports/images_dialog/TraineeRunArt1.png", [1, 602, 330, 62, 52]); +V.set("animate_exports/images_dialog/TrophyMasterArt.png", [1, 370, 542, 49, 50]); +V.set("animate_exports/images_dialog/UrashimaANeutralrt1.png", [1, 258, 608, 44, 52]); +V.set("animate_exports/images_dialog/UrashimaMomNeutral.png", [1, 94, 665, 44, 48]); +V.set("animate_exports/images_dialog/UshiNeutralArt1.png", [1, 125, 393, 54, 49]); +V.set("animate_exports/images_dialog/WhiteOniAvatarArt.png", [1, 619, 441, 52, 59]); +V.set("animate_exports/images_dialog/YouichiNeutralArt.png", [1, 506, 413, 54, 44]); +V.set("animate_exports/images_dialog/YoungArcherNeutralArt.png", [1, 125, 342, 58, 48]); +V.set("animate_exports/images_dialog/deer_portrait.png", [1, 665, 182, 62, 56]); +V.set("animate_exports/images_dialog/gatekeeper_portrait.png", [1, 141, 666, 44, 48]); +V.set("animate_exports/images_dialog/kijimunaNeutralArt.png", [1, 58, 397, 54, 49]); +V.set("animate_exports/images_dialog/locksmith_portrait.png", [1, 0, 550, 49, 48]); +V.set("animate_exports/images_dialog/luckyCuriousArt.png", [1, 507, 661, 44, 50]); +V.set("animate_exports/images_dialog/momoBlueArt.png", [1, 47, 700, 44, 46]); +V.set("animate_exports/images_dialog/otter_portrait.png", [1, 211, 601, 44, 54]); +V.set("animate_exports/images_dialog/porcupine_portrait.png", [1, 528, 305, 71, 52]); +V.set("animate_exports/images_dialog/sister1_portrait.png", [1, 682, 385, 45, 48]); +V.set("animate_exports/images_dialog/sister2_portrait.png", [1, 242, 663, 44, 49]); +V.set("animate_exports/images_dialog/sister3_portrait.png", [1, 107, 501, 50, 47]); +V.set("animate_exports/images_dialog/yellowleader.png", [1, 384, 482, 50, 57]); +V.set("animate_exports/images_hud/Bitmap4.png", [1, 101, 777, 18, 18]); +V.set("animate_exports/images_hud/Bitmap5.png", [1, 695, 130, 32, 32]); +V.set("animate_exports/images_hud/Bitmap6.png", [1, 156, 717, 26, 26]); +V.set("animate_exports/images_hud/CloseButtonBrown.png", [1, 512, 775, 22, 22]); +V.set("animate_exports/images_hud/OverworldMenuButtonBrown.png", [1, 537, 775, 22, 22]); +V.set("animate_exports/images_hud/PauseButtonBrown.png", [1, 27, 776, 22, 22]); +V.set("animate_exports/images_menus/ArcheryIcon.png", [1, 524, 460, 19, 18]); +V.set("animate_exports/images_menus/ArrowArt.png", nl); +V.set("animate_exports/images_menus/Bitmap129.png", [1, 0, 786, 20, 27]); +V.set("animate_exports/images_menus/Bitmap129_1.png", [1, 0, 786, 20, 27]); +V.set("animate_exports/images_menus/Bitmap131.png", [1, 174, 786, 20, 27]); +V.set("animate_exports/images_menus/Bitmap131_1.png", [1, 174, 786, 20, 27]); +V.set("animate_exports/images_menus/Bitmap132.png", [1, 408, 796, 20, 27]); +V.set("animate_exports/images_menus/Bitmap132_1.png", [1, 408, 796, 20, 27]); +V.set("animate_exports/images_menus/Bitmap133.png", [1, 379, 797, 20, 27]); +V.set("animate_exports/images_menus/Bitmap133_1.png", [1, 379, 797, 20, 27]); +V.set("animate_exports/images_menus/Bitmap134.png", [1, 101, 799, 20, 27]); +V.set("animate_exports/images_menus/Bitmap134_1.png", [1, 101, 799, 20, 27]); +V.set("animate_exports/images_menus/Bitmap135.png", [1, 124, 799, 20, 27]); +V.set("animate_exports/images_menus/Bitmap135_1.png", [1, 124, 799, 20, 27]); +V.set("animate_exports/images_menus/Bitmap136.png", [1, 261, 799, 20, 27]); +V.set("animate_exports/images_menus/Bitmap136_1.png", [1, 261, 799, 20, 27]); +V.set("animate_exports/images_menus/Bitmap137.png", [1, 0, 786, 20, 27]); +V.set("animate_exports/images_menus/Bitmap137_1.png", [1, 0, 786, 20, 27]); +V.set("animate_exports/images_menus/Bitmap138.png", [1, 218, 801, 18, 27]); +V.set("animate_exports/images_menus/Bitmap138_1.png", [1, 218, 801, 18, 27]); +V.set("animate_exports/images_menus/Bitmap139.png", [1, 239, 801, 18, 27]); +V.set("animate_exports/images_menus/Bitmap139_1.png", [1, 239, 801, 18, 27]); +V.set("animate_exports/images_menus/Bitmap140.png", [1, 66, 805, 18, 27]); +V.set("animate_exports/images_menus/Bitmap140_1.png", [1, 66, 805, 18, 27]); +V.set("animate_exports/images_menus/Bitmap141.png", [1, 340, 807, 18, 27]); +V.set("animate_exports/images_menus/Bitmap141_1.png", [1, 340, 807, 18, 27]); +V.set("animate_exports/images_menus/Bitmap142.png", [1, 307, 809, 18, 27]); +V.set("animate_exports/images_menus/Bitmap142_1.png", [1, 307, 809, 18, 27]); +V.set("animate_exports/images_menus/Bitmap143.png", [1, 0, 816, 18, 27]); +V.set("animate_exports/images_menus/Bitmap143_1.png", [1, 0, 816, 18, 27]); +V.set("animate_exports/images_menus/Bitmap147.png", [1, 284, 799, 20, 26]); +V.set("animate_exports/images_menus/Bitmap148.png", [1, 530, 714, 20, 30]); +V.set("animate_exports/images_menus/Bitmap149.png", [1, 585, 785, 20, 30]); +V.set("animate_exports/images_menus/Bitmap150.png", [1, 431, 799, 20, 26]); +V.set("animate_exports/images_menus/Bitmap151.png", [1, 174, 816, 18, 26]); +V.set("animate_exports/images_menus/Bitmap152.png", [1, 608, 817, 18, 26]); +V.set("animate_exports/images_menus/Bitmap153.png", [1, 629, 817, 18, 26]); +V.set("animate_exports/images_menus/Bitmap178.png", [1, 562, 785, 20, 32]); +V.set("animate_exports/images_menus/Bitmap180.png", [1, 608, 785, 20, 29]); +V.set("animate_exports/images_menus/Bitmap181.png", [1, 631, 785, 20, 29]); +V.set("animate_exports/images_menus/Bitmap182.png", [1, 197, 801, 18, 29]); +V.set("animate_exports/images_menus/Bitmap183.png", [1, 21, 822, 16, 16]); +V.set("animate_exports/images_menus/Bitmap186.png", [1, 402, 826, 16, 16]); +V.set("animate_exports/images_menus/Bitmap187.png", [1, 361, 827, 16, 16]); +V.set("animate_exports/images_menus/Bitmap188.png", [1, 380, 827, 16, 16]); +V.set("animate_exports/images_menus/Bitmap189.png", [1, 654, 785, 20, 29]); +V.set("animate_exports/images_menus/Bitmap191.png", [1, 650, 817, 18, 24]); +V.set("animate_exports/images_menus/Bitmap192.png", [1, 435, 771, 23, 25]); +V.set("animate_exports/images_menus/Bitmap196.png", [1, 77, 777, 21, 25]); +V.set("animate_exports/images_menus/Bitmap197.png", [1, 264, 771, 23, 25]); +V.set("animate_exports/images_menus/Bitmap198.png", [1, 316, 781, 21, 25]); +V.set("animate_exports/images_menus/Bitmap235.png", [1, 708, 661, 19, 23]); +V.set("animate_exports/images_menus/Bitmap236.png", [1, 622, 146, 22, 20]); +V.set("animate_exports/images_menus/Bitmap237.png", [1, 567, 606, 21, 29]); +V.set("animate_exports/images_menus/Bitmap238.png", [1, 45, 801, 18, 30]); +V.set("animate_exports/images_menus/Bitmap239.png", [1, 268, 715, 17, 22]); +V.set("animate_exports/images_menus/Bitmap240.png", [1, 688, 632, 17, 21]); +V.set("animate_exports/images_menus/Bitmap241.png", [1, 628, 305, 18, 22]); +V.set("animate_exports/images_menus/Bitmap242.png", [1, 713, 819, 14, 22]); +V.set("animate_exports/images_menus/Bitmap243.png", [1, 556, 820, 17, 22]); +V.set("animate_exports/images_menus/Bitmap244.png", [1, 147, 821, 17, 22]); +V.set("animate_exports/images_menus/Bitmap245.png", [1, 408, 770, 24, 23]); +V.set("animate_exports/images_menus/Bitmap247.png", [1, 461, 773, 23, 23]); +V.set("animate_exports/images_menus/Bitmap248.png", [1, 708, 632, 19, 26]); +V.set("animate_exports/images_menus/Bitmap249.png", [1, 123, 772, 23, 24]); +V.set("animate_exports/images_menus/Bitmap250.png", [1, 290, 771, 23, 25]); +V.set("animate_exports/images_menus/Bitmap251.png", [1, 703, 241, 24, 28]); +V.set("animate_exports/images_menus/Bitmap252.png", [1, 437, 482, 30, 31]); +V.set("animate_exports/images_menus/Bitmap253.png", [1, 94, 716, 29, 29]); +V.set("animate_exports/images_menus/Bitmap254.png", [1, 126, 717, 27, 23]); +V.set("animate_exports/images_menus/Bitmap255.png", [1, 471, 430, 28, 23]); +V.set("animate_exports/images_menus/Bitmap256.png", [1, 235, 748, 26, 25]); +V.set("animate_exports/images_menus/Bitmap257.png", [1, 354, 775, 22, 29]); +V.set("animate_exports/images_menus/Bitmap258.png", [1, 629, 503, 37, 40]); +V.set("animate_exports/images_menus/Bitmap259.png", [1, 326, 748, 25, 30]); +V.set("animate_exports/images_menus/Bitmap81.png", [1, 671, 146, 20, 20]); +V.set("animate_exports/images_menus/BlackDotArt.png", [1, 520, 589, 14, 14]); +V.set("animate_exports/images_menus/ClimbIcon1.png", [1, 577, 482, 19, 18]); +V.set("animate_exports/images_menus/ControlsButtonBG.png", [1, 528, 281, 119, 21]); +V.set("animate_exports/images_menus/ControlsFocus.png", [1, 383, 741, 26, 26]); +V.set("animate_exports/images_menus/ControlsIdle.png", [1, 354, 748, 24, 24]); +V.set("animate_exports/images_menus/DangoStickArt.png", [1, 542, 171, 133, 8]); +V.set("animate_exports/images_menus/GreenDangoArt1.png", [1, 592, 559, 30, 30]); +V.set("animate_exports/images_menus/GreenDangoArt2.png", [1, 487, 773, 22, 43]); +V.set("animate_exports/images_menus/GreenDangoArt3.png", [1, 688, 602, 34, 27]); +V.set("animate_exports/images_menus/HighlightDotArt.png", [1, 515, 311, 9, 9]); +V.set("animate_exports/images_menus/InariArt2.png", [1, 497, 821, 17, 18]); +V.set("animate_exports/images_menus/KappaArt.png", [1, 284, 828, 16, 16]); +V.set("animate_exports/images_menus/KappaArt2.png", [1, 599, 482, 16, 17]); +V.set("animate_exports/images_menus/KappaArt_1.png", [1, 284, 828, 16, 16]); +V.set("animate_exports/images_menus/KarasuArt.png", [1, 74, 749, 16, 20]); +V.set("animate_exports/images_menus/KarasuArt2.png", [1, 541, 536, 20, 20]); +V.set("animate_exports/images_menus/KarasuArt_1.png", [1, 74, 749, 16, 20]); +V.set("animate_exports/images_menus/Koma1Art.png", [1, 622, 0, 99, 49]); +V.set("animate_exports/images_menus/Koma2Art.png", [1, 622, 76, 91, 51]); +V.set("animate_exports/images_menus/LeaderFocus.png", [1, 412, 741, 26, 26]); +V.set("animate_exports/images_menus/LeaderIdle.png", [1, 528, 748, 24, 24]); +V.set("animate_exports/images_menus/LuckyIdleS.png", [1, 585, 818, 18, 22]); +V.set("animate_exports/images_menus/LuckyIdleSArt2.png", [1, 476, 819, 18, 22]); +V.set("animate_exports/images_menus/LuckyIdleSArt3.png", [1, 671, 819, 18, 22]); +V.set("animate_exports/images_menus/LuckyLocationIconArt.png", [1, 421, 828, 14, 13]); +V.set("animate_exports/images_menus/MarathonIcon.png", [1, 708, 687, 19, 18]); +V.set("animate_exports/images_menus/NoStarsArt.png", [1, 678, 174, 18, 4]); +V.set("animate_exports/images_menus/OneStarArt.png", [1, 665, 271, 19, 6]); +V.set("animate_exports/images_menus/PinkDangoArt1.png", [1, 695, 711, 30, 30]); +V.set("animate_exports/images_menus/PinkDangoArt2.png", [1, 493, 714, 34, 27]); +V.set("animate_exports/images_menus/PinkDangoArt3.png", [1, 690, 773, 22, 43]); +V.set("animate_exports/images_menus/PongIcon1.png", [1, 454, 799, 19, 18]); +V.set("animate_exports/images_menus/RugbyIcon11.png", [1, 512, 800, 19, 18]); +V.set("animate_exports/images_menus/ScrollRotateArt0.png", [1, 27, 759, 14, 14]); +V.set("animate_exports/images_menus/ScrollRotateArt1.png", [1, 717, 165, 10, 14]); +V.set("animate_exports/images_menus/ScrollRotateArt2.png", [1, 515, 340, 6, 14]); +V.set("animate_exports/images_menus/ScrollRotateArt3.png", [1, 528, 242, 10, 14]); +V.set("animate_exports/images_menus/ScrollRotateArt4.png", [1, 361, 807, 14, 14]); +V.set("animate_exports/images_menus/ScrollRotateArt5.png", [1, 528, 259, 10, 14]); +V.set("animate_exports/images_menus/ScrollRotateArt6.png", [1, 515, 323, 7, 14]); +V.set("animate_exports/images_menus/ScrollRotateArt7.png", [1, 717, 52, 11, 14]); +V.set("animate_exports/images_menus/SelectedIconCircleArt.png", [1, 602, 305, 23, 22]); +V.set("animate_exports/images_menus/SettingsFocus.png", [1, 441, 742, 26, 26]); +V.set("animate_exports/images_menus/SettingsIdle.png", [1, 555, 748, 24, 24]); +V.set("animate_exports/images_menus/ShareFocus.png", [1, 268, 742, 26, 26]); +V.set("animate_exports/images_menus/ShareIdle.png", [1, 47, 749, 24, 24]); +V.set("animate_exports/images_menus/ShareWindow.png", [1, 311, 242, 214, 66]); +V.set("animate_exports/images_menus/SkateIcon1.png", [1, 534, 800, 19, 18]); +V.set("animate_exports/images_menus/StatsMenuBGArt.png", [1, 542, 182, 120, 96]); +V.set("animate_exports/images_menus/SwimIcon1.png", [1, 23, 801, 19, 18]); +V.set("animate_exports/images_menus/ThreeStarArt.png", [1, 694, 165, 20, 6]); +V.set("animate_exports/images_menus/TwoStarsArt.png", [1, 687, 272, 19, 6]); +V.set("animate_exports/images_menus/UshiArt.png", [1, 517, 821, 16, 20]); +V.set("animate_exports/images_menus/UshiArt2.png", [1, 384, 460, 20, 19]); +V.set("animate_exports/images_menus/UshiArt_1.png", [1, 517, 821, 16, 20]); +V.set("animate_exports/images_menus/WhiteCircleFrameArt11.png", [1, 647, 146, 21, 20]); +V.set("animate_exports/images_menus/YellowDangoArt1.png", [1, 235, 715, 30, 30]); +V.set("animate_exports/images_menus/YellowDangoArt2.png", [1, 665, 241, 35, 27]); +V.set("animate_exports/images_menus/YellowDangoArt3.png", [1, 149, 775, 22, 43]); +V.set("animate_exports/images_menus/back.png", [1, 52, 776, 22, 22]); +V.set("animate_exports/images_menus/backfocus.png", [1, 211, 776, 22, 22]); +V.set("animate_exports/images_menus/closeButton.png", [1, 512, 775, 22, 22]); +V.set("animate_exports/images_menus/closeButtonFocus.png", [1, 236, 776, 22, 22]); +V.set("animate_exports/images_menus/controllerFocus.png", [1, 692, 819, 18, 11]); +V.set("animate_exports/images_menus/controllerIdle.png", [1, 454, 820, 18, 11]); +V.set("animate_exports/images_menus/copyFocus.png", [1, 297, 742, 26, 26]); +V.set("animate_exports/images_menus/copyIdle.png", [1, 582, 758, 24, 24]); +V.set("animate_exports/images_menus/emailFocus.png", [1, 126, 743, 26, 26]); +V.set("animate_exports/images_menus/emailIdle.png", [1, 609, 758, 24, 24]); +V.set("animate_exports/images_menus/exitFocus.png", [1, 470, 744, 26, 26]); +V.set("animate_exports/images_menus/exitIdle.png", [1, 636, 758, 24, 24]); +V.set("animate_exports/images_menus/facebookFocus.png", [1, 499, 744, 26, 26]); +V.set("animate_exports/images_menus/facebookIdle.png", [1, 663, 758, 24, 24]); +V.set("animate_exports/images_menus/inariArt.png", [1, 536, 821, 16, 20]); +V.set("animate_exports/images_menus/inariArt_1.png", [1, 536, 821, 16, 20]); +V.set("animate_exports/images_menus/indicatorAction.png", [1, 717, 69, 11, 11]); +V.set("animate_exports/images_menus/indicatorActionMobile.png", [1, 716, 83, 11, 11]); +V.set("animate_exports/images_menus/indicatorActionMobilePressed.png", [1, 716, 97, 11, 11]); +V.set("animate_exports/images_menus/indicatorActionPressed.png", [1, 195, 640, 11, 10]); +V.set("animate_exports/images_menus/indicatorDown.png", [1, 716, 111, 11, 11]); +V.set("animate_exports/images_menus/indicatorJoystick.png", [1, 699, 174, 5, 5]); +V.set("animate_exports/images_menus/indicatorJoystickBase.png", [1, 422, 542, 11, 11]); +V.set("animate_exports/images_menus/indicatorLeft.png", [1, 422, 556, 11, 11]); +V.set("animate_exports/images_menus/indicatorLeft_1.png", [1, 422, 556, 11, 11]); +V.set("animate_exports/images_menus/indicatorRight.png", [1, 195, 612, 11, 11]); +V.set("animate_exports/images_menus/indicatorRight_1.png", [1, 195, 612, 11, 11]); +V.set("animate_exports/images_menus/indicatorUp.png", [1, 195, 626, 11, 11]); +V.set("animate_exports/images_menus/keyboardFocus.png", [1, 415, 413, 19, 11]); +V.set("animate_exports/images_menus/keyboardIdle.png", [1, 211, 759, 19, 11]); +V.set("animate_exports/images_menus/menuBG.png", [1, 0, 0, 308, 168]); +V.set("animate_exports/images_menus/menuBGMapBG.png", [1, 311, 0, 308, 168]); +V.set("animate_exports/images_menus/replayFocus.png", [1, 695, 744, 26, 26]); +V.set("animate_exports/images_menus/replayIdle.png", [1, 0, 759, 24, 24]); +V.set("animate_exports/images_menus/searchFocus.png", [1, 155, 746, 26, 26]); +V.set("animate_exports/images_menus/searchIdle.png", [1, 184, 759, 24, 24]); +V.set("animate_exports/images_menus/startBG.png", [1, 622, 52, 92, 21]); +V.set("animate_exports/images_menus/startBG1.png", [1, 622, 52, 92, 21]); +V.set("animate_exports/images_menus/tutBG.png", [1, 0, 171, 308, 168]); +V.set("animate_exports/images_menus/twitterFocus.png", [1, 94, 748, 26, 26]); +V.set("animate_exports/images_menus/twitterIdle.png", [1, 381, 770, 24, 24]); +V.set("animate_exports/images_menus/valueBG.png", [1, 622, 130, 70, 13]); +V.set("animate_exports/images_cutscene/ARcheryGravel1Edge1Art.png", [2, 19, 523, 16, 16]); +V.set("animate_exports/images_cutscene/ArcheryArrowBoulder1Art.png", [2, 0, 472, 42, 48]); +V.set("animate_exports/images_cutscene/ArcheryBoulder3Art.png", [2, 153, 376, 28, 31]); +V.set("animate_exports/images_cutscene/ArcheryBoulder4Art.png", [2, 667, 109, 37, 39]); +V.set("animate_exports/images_cutscene/ArcheryDock1Art.png", [2, 388, 523, 16, 16]); +V.set("animate_exports/images_cutscene/ArcheryLargeGravel1Art.png", [2, 655, 301, 48, 48]); +V.set("animate_exports/images_cutscene/ArcherySignArt.png", [2, 298, 213, 19, 18]); +V.set("animate_exports/images_cutscene/ArcheryTree1Art.png", [2, 388, 468, 42, 52]); +V.set("animate_exports/images_cutscene/ArcheryTree2Art.png", [2, 300, 325, 52, 60]); +V.set("animate_exports/images_cutscene/BambooTree1Art.png", [2, 588, 246, 64, 108]); +V.set("animate_exports/images_cutscene/BambooTree2Art.png", [2, 0, 183, 103, 76]); +V.set("animate_exports/images_cutscene/BambooTree3Art.png", [2, 245, 325, 52, 84]); +V.set("animate_exports/images_cutscene/BigCatNeutralArt.png", [2, 551, 459, 44, 44]); +V.set("animate_exports/images_cutscene/BirdgeShadowArt.png", [2, 407, 523, 16, 16]); +V.set("animate_exports/images_cutscene/Bitmap473.png", [2, 323, 36, 227, 29]); +V.set("animate_exports/images_cutscene/Bitmap478.png", [2, 323, 0, 231, 33]); +V.set("animate_exports/images_cutscene/Bitmap479.png", [2, 486, 319, 29, 13]); +V.set("animate_exports/images_cutscene/Bitmap722.png", [2, 287, 524, 16, 16]); +V.set("animate_exports/images_cutscene/Bitmap7241.png", [2, 185, 545, 14, 48]); +V.set("animate_exports/images_cutscene/Bitmap727.png", [2, 245, 319, 48, 3]); +V.set("animate_exports/images_cutscene/BoundBitmap.png", [2, 444, 244, 72, 72]); +V.set("animate_exports/images_cutscene/BoundBitmap_1.png", [2, 444, 244, 72, 72]); +V.set("animate_exports/images_cutscene/Bridgefloor.png", [2, 306, 524, 16, 16]); +V.set("animate_exports/images_cutscene/BuildingShadowArt.png", [2, 519, 246, 66, 53]); +V.set("animate_exports/images_cutscene/Bush.png", [2, 256, 287, 33, 21]); +V.set("animate_exports/images_cutscene/ChampionFacingPlayer_011.png", [2, 150, 473, 40, 50]); +V.set("animate_exports/images_cutscene/ChampionFacingPlayer_1.png", [2, 45, 474, 40, 50]); +V.set("animate_exports/images_cutscene/ChampionStandin.png", [2, 88, 495, 39, 46]); +V.set("animate_exports/images_cutscene/CharacterShadowArt.png", [2, 667, 178, 12, 3]); +V.set("animate_exports/images_cutscene/CloseIcon.png", [2, 192, 270, 9, 7]); +V.set("animate_exports/images_cutscene/DarkBeachWaveArt1.png", [2, 306, 543, 16, 14]); +V.set("animate_exports/images_cutscene/DarkBeachWaveArt2.png", [2, 344, 543, 16, 12]); +V.set("animate_exports/images_cutscene/DarkBeachWaveArt3.png", [2, 688, 99, 16, 5]); +V.set("animate_exports/images_cutscene/DarkBeachWaveArt4.png", [2, 64, 262, 16, 4]); +V.set("animate_exports/images_cutscene/DarkBeachWaveArt5.png", [2, 682, 231, 16, 10]); +V.set("animate_exports/images_cutscene/DarkBeachWaveArt6.png", [2, 325, 543, 16, 13]); +V.set("animate_exports/images_cutscene/DarkBeachWaveArt7.png", [2, 76, 544, 16, 7]); +V.set("animate_exports/images_cutscene/DarkSandWaveArt1.png", [2, 130, 495, 16, 17]); +V.set("animate_exports/images_cutscene/DarkSandWaveArt2.png", [2, 666, 514, 16, 17]); +V.set("animate_exports/images_cutscene/DarkSandWaveArt3.png", [2, 325, 524, 16, 16]); +V.set("animate_exports/images_cutscene/DarkSandWaveArt4.png", [2, 344, 524, 16, 16]); +V.set("animate_exports/images_cutscene/DarkSandWaveArt5.png", [2, 363, 524, 16, 16]); +V.set("animate_exports/images_cutscene/DarkSandWaveArt6.png", [2, 167, 545, 15, 15]); +V.set("animate_exports/images_cutscene/DialogueFillArt.png", [2, 323, 68, 210, 49]); +V.set("animate_exports/images_cutscene/DialogueFrameArt.png", [2, 323, 120, 210, 49]); +V.set("animate_exports/images_cutscene/FanArt1.png", [2, 55, 546, 14, 17]); +V.set("animate_exports/images_cutscene/FanArt2.png", [2, 233, 537, 14, 17]); +V.set("animate_exports/images_cutscene/Field1Art.png", [2, 149, 526, 16, 16]); +V.set("animate_exports/images_cutscene/Field1Art_1.png", [2, 149, 526, 16, 16]); +V.set("animate_exports/images_cutscene/Field1SideEdgeArt.png", [2, 642, 357, 9, 16]); +V.set("animate_exports/images_cutscene/Field2Art.png", [2, 168, 526, 16, 16]); +V.set("animate_exports/images_cutscene/Field2SideEdgeArt.png", [2, 524, 172, 8, 16]); +V.set("animate_exports/images_cutscene/FukuroBodyArt1.png", [2, 323, 172, 118, 84]); +V.set("animate_exports/images_cutscene/FukuroBodyArt2.png", [2, 536, 109, 128, 79]); +V.set("animate_exports/images_cutscene/FukuroHeadArt1.png", [2, 365, 289, 61, 28]); +V.set("animate_exports/images_cutscene/FukuroHeadArt2.png", [2, 128, 270, 61, 30]); +V.set("animate_exports/images_cutscene/FukuroHeadArt3.png", [2, 365, 259, 64, 27]); +V.set("animate_exports/images_cutscene/FukuroHeadArt4.png", [2, 519, 302, 58, 38]); +V.set("animate_exports/images_cutscene/FukuroHeadArt5.png", [2, 0, 314, 55, 53]); +V.set("animate_exports/images_cutscene/FukuroHeadArt6.png", [2, 192, 287, 61, 29]); +V.set("animate_exports/images_cutscene/Grass1DiagonalCornerEdge1Art.png", [2, 287, 543, 16, 15]); +V.set("animate_exports/images_cutscene/Grass1TopEdge1.png", [2, 83, 262, 16, 3]); +V.set("animate_exports/images_cutscene/Grass2SideEdgeArt.png", [2, 580, 302, 4, 16]); +V.set("animate_exports/images_cutscene/Grass2TopEdgeArt.png", [2, 256, 311, 16, 3]); +V.set("animate_exports/images_cutscene/HalfPavement1Art.png", [2, 153, 410, 16, 8]); +V.set("animate_exports/images_cutscene/InariNeutralArt.png", [2, 655, 246, 49, 52]); +V.set("animate_exports/images_cutscene/KappaArt.png", [2, 38, 527, 16, 16]); +V.set("animate_exports/images_cutscene/KappaArt2.png", [2, 685, 514, 16, 17]); +V.set("animate_exports/images_cutscene/KappaNeutralArt.png", [2, 429, 319, 54, 44]); +V.set("animate_exports/images_cutscene/KarasuNeutralArt.png", [2, 365, 320, 53, 49]); +V.set("animate_exports/images_cutscene/KijimunaIdleArt1.png", [2, 298, 183, 20, 27]); +V.set("animate_exports/images_cutscene/KijimunaIdleArt2.png", [2, 682, 178, 22, 26]); +V.set("animate_exports/images_cutscene/Koma1Art11.png", [2, 688, 57, 16, 18]); +V.set("animate_exports/images_cutscene/Koma1Art2.png", [2, 130, 515, 16, 17]); +V.set("animate_exports/images_cutscene/Koma1NeutralArt.png", [2, 58, 322, 53, 47]); +V.set("animate_exports/images_cutscene/Koma2Art1.png", [2, 598, 483, 18, 19]); +V.set("animate_exports/images_cutscene/Koma2Art211.png", [2, 475, 511, 18, 19]); +V.set("animate_exports/images_cutscene/Koma2NeutralArt.png", [2, 486, 343, 51, 49]); +V.set("animate_exports/images_cutscene/LArgeMountainBottomEdgeWaterArt1.png", [2, 341, 440, 48, 8]); +V.set("animate_exports/images_cutscene/LArgeMountainSideEdgeArt1.png", [2, 123, 544, 3, 48]); +V.set("animate_exports/images_cutscene/LArgeWater2Art3.png", [2, 655, 352, 48, 48]); +V.set("animate_exports/images_cutscene/LargeCobblestone1Art.png", [2, 540, 357, 48, 48]); +V.set("animate_exports/images_cutscene/LargeDarkGrass1Art.png", [2, 591, 357, 48, 48]); +V.set("animate_exports/images_cutscene/LargeField1Art.png", [2, 421, 366, 48, 48]); +V.set("animate_exports/images_cutscene/LargeField1Art1.png", [2, 421, 366, 48, 48]); +V.set("animate_exports/images_cutscene/LargeField1SideEdge1Art.png", [2, 693, 403, 9, 48]); +V.set("animate_exports/images_cutscene/LargeField1SideEdge1Art11.png", [2, 114, 322, 10, 48]); +V.set("animate_exports/images_cutscene/LargeField2Art.png", [2, 0, 370, 48, 48]); +V.set("animate_exports/images_cutscene/LargeField2SideEdgeArt.png", [2, 536, 513, 9, 48]); +V.set("animate_exports/images_cutscene/LargeGardenGrassBottomEdgeArt.png", [2, 102, 440, 48, 8]); +V.set("animate_exports/images_cutscene/LargeGrass1Art.png", [2, 188, 371, 48, 48]); +V.set("animate_exports/images_cutscene/LargeGrass1Art_1.png", [2, 188, 371, 48, 48]); +V.set("animate_exports/images_cutscene/LargeGrass1Side1Art.png", [2, 433, 489, 18, 48]); +V.set("animate_exports/images_cutscene/LargeGrass1SideEdge2Art.png", [2, 445, 540, 4, 48]); +V.set("animate_exports/images_cutscene/LargeGrass1TopEdge1Art.png", [2, 102, 427, 48, 10]); +V.set("animate_exports/images_cutscene/LargeGrass1TopEdge1Art_1.png", [2, 102, 427, 48, 10]); +V.set("animate_exports/images_cutscene/LargeGrass2TopEdgeArt.png", [2, 290, 439, 48, 10]); +V.set("animate_exports/images_cutscene/LargeHotSpringArt2.png", [2, 204, 463, 43, 42]); +V.set("animate_exports/images_cutscene/LargeHotSpringArt3.png", [2, 102, 451, 45, 41]); +V.set("animate_exports/images_cutscene/LargeMountain2Art2.png", [2, 51, 372, 48, 48]); +V.set("animate_exports/images_cutscene/LargeMountain2TopEdgeShadowArt.png", [2, 351, 423, 48, 14]); +V.set("animate_exports/images_cutscene/LargeMountainBottomEdgeWaterArt2.png", [2, 457, 446, 48, 8]); +V.set("animate_exports/images_cutscene/LargeWa.png", [2, 355, 372, 48, 48]); +V.set("animate_exports/images_cutscene/LargeWater1Art2.png", [2, 102, 376, 48, 48]); +V.set("animate_exports/images_cutscene/LargeWater1Art3.png", [2, 300, 388, 48, 48]); +V.set("animate_exports/images_cutscene/LargeWater1Art4.png", [2, 102, 376, 48, 48]); +V.set("animate_exports/images_cutscene/LargeWater1Art5.png", [2, 472, 395, 48, 48]); +V.set("animate_exports/images_cutscene/LargeWater2Art1.png", [2, 642, 403, 48, 48]); +V.set("animate_exports/images_cutscene/LargeWater3Art1.png", [2, 355, 372, 48, 48]); +V.set("animate_exports/images_cutscene/LargeWater3Art2.png", [2, 523, 408, 48, 48]); +V.set("animate_exports/images_cutscene/LuckyAnnoyedArt1.png", [2, 625, 454, 44, 51]); +V.set("animate_exports/images_cutscene/LuckyIdleNArt.png", [2, 688, 33, 16, 21]); +V.set("animate_exports/images_cutscene/LuckyIdleS.png", [2, 645, 508, 18, 22]); +V.set("animate_exports/images_cutscene/LuckyNeutralArt.png", [2, 457, 457, 44, 51]); +V.set("animate_exports/images_cutscene/LuckyWalkSArt4.png", [2, 149, 545, 15, 20]); +V.set("animate_exports/images_cutscene/LuckyWinArt.png", [2, 454, 511, 18, 21]); +V.set("animate_exports/images_cutscene/LuckyWorriedArt.png", [2, 504, 459, 44, 51]); +V.set("animate_exports/images_cutscene/MapArt.png", [2, 557, 0, 128, 106]); +V.set("animate_exports/images_cutscene/MapDotsArt.png", [2, 444, 172, 77, 69]); +V.set("animate_exports/images_cutscene/MapleTree.png", [2, 106, 183, 96, 84]); +V.set("animate_exports/images_cutscene/MapleTree2.png", [2, 128, 303, 57, 70]); +V.set("animate_exports/images_cutscene/MossyRockArt.png", [2, 540, 343, 24, 11]); +V.set("animate_exports/images_cutscene/Mountain2Art.png", [2, 57, 527, 16, 16]); +V.set("animate_exports/images_cutscene/Mountain2SideEdge2Art.png", [2, 292, 287, 2, 16]); +V.set("animate_exports/images_cutscene/Mountain2TopEdgeShadow1Art.png", [2, 363, 543, 16, 12]); +V.set("animate_exports/images_cutscene/MountainBottomEdgeWaterArt1.png", [2, 567, 343, 16, 10]); +V.set("animate_exports/images_cutscene/MountainBottomEdgeWaterArt2.png", [2, 204, 448, 16, 10]); +V.set("animate_exports/images_cutscene/NewLArgeWater1Art1.png", [2, 574, 408, 48, 48]); +V.set("animate_exports/images_cutscene/NewLargeWater1Art2.png", [2, 239, 412, 48, 48]); +V.set("animate_exports/images_cutscene/NewLargeWater2Art.png", [2, 406, 417, 48, 48]); +V.set("animate_exports/images_cutscene/NewWater1Art1.png", [2, 475, 533, 16, 16]); +V.set("animate_exports/images_cutscene/NewWater1Art2.png", [2, 516, 533, 16, 16]); +V.set("animate_exports/images_cutscene/OtohimeArt1.png", [2, 341, 451, 44, 70]); +V.set("animate_exports/images_cutscene/OtohimeArt2.png", [2, 290, 452, 44, 69]); +V.set("animate_exports/images_cutscene/PavementArt1.png", [2, 645, 533, 16, 16]); +V.set("animate_exports/images_cutscene/PavementArt1111.png", [2, 645, 533, 16, 16]); +V.set("animate_exports/images_cutscene/PineTree2Art11.png", [2, 688, 0, 16, 30]); +V.set("animate_exports/images_cutscene/PineTree3Art11.png", [2, 593, 506, 28, 51]); +V.set("animate_exports/images_cutscene/PineTreeArt111.png", [2, 672, 454, 30, 57]); +V.set("animate_exports/images_cutscene/PingPongBall.png", [2, 432, 276, 4, 4]); +V.set("animate_exports/images_cutscene/PingPongTable1Art.png", [2, 298, 259, 64, 63]); +V.set("animate_exports/images_cutscene/PlayButtonArt1.png", [2, 682, 207, 22, 21]); +V.set("animate_exports/images_cutscene/PortalCircle.png", [2, 536, 95, 17, 9]); +V.set("animate_exports/images_cutscene/PortalGlowArt.png", [2, 536, 68, 17, 24]); +V.set("animate_exports/images_cutscene/PortalSparklesArt1.png", [2, 204, 422, 23, 23]); +V.set("animate_exports/images_cutscene/PortalSparklesArt2.png", [2, 516, 513, 17, 17]); +V.set("animate_exports/images_cutscene/PortalSparklesArt3.png", [2, 496, 513, 17, 21]); +V.set("animate_exports/images_cutscene/RedBridgeRail1Art.png", [2, 688, 78, 16, 18]); +V.set("animate_exports/images_cutscene/RedCircleArt.png", [2, 598, 459, 22, 21]); +V.set("animate_exports/images_cutscene/RedGate1Art.png", [2, 0, 262, 61, 49]); +V.set("animate_exports/images_cutscene/RedOniIdleArt1.png", [2, 250, 504, 34, 39]); +V.set("animate_exports/images_cutscene/RedOniIdleArt2.png", [2, 250, 463, 36, 38]); +V.set("animate_exports/images_cutscene/Rock1SideShadowSmallArt.png", [2, 95, 544, 15, 48]); +V.set("animate_exports/images_cutscene/RockPeak1Art.png", [2, 551, 506, 39, 44]); +V.set("animate_exports/images_cutscene/RockSideEdge1Art.png", [2, 113, 544, 7, 48]); +V.set("animate_exports/images_cutscene/Sand2WaveArt.png", [2, 0, 523, 16, 17]); +V.set("animate_exports/images_cutscene/Sand2WaveArt2.png", [2, 625, 408, 13, 13]); +V.set("animate_exports/images_cutscene/Sand2WaveArt3.png", [2, 664, 534, 16, 16]); +V.set("animate_exports/images_cutscene/Sand2WaveArt4.png", [2, 683, 534, 16, 16]); +V.set("animate_exports/images_cutscene/ScrollRotateArt0.png", [2, 388, 451, 14, 14]); +V.set("animate_exports/images_cutscene/ScrollRotateArt1.png", [2, 472, 366, 10, 14]); +V.set("animate_exports/images_cutscene/ScrollRotateArt2.png", [2, 355, 325, 6, 14]); +V.set("animate_exports/images_cutscene/ScrollRotateArt3.png", [2, 406, 372, 10, 14]); +V.set("animate_exports/images_cutscene/ScrollRotateArt4.png", [2, 250, 546, 14, 14]); +V.set("animate_exports/images_cutscene/ScrollRotateArt5.png", [2, 406, 389, 10, 14]); +V.set("animate_exports/images_cutscene/ScrollRotateArt6.png", [2, 432, 259, 7, 14]); +V.set("animate_exports/images_cutscene/ScrollRotateArt7.png", [2, 429, 289, 11, 14]); +V.set("animate_exports/images_cutscene/SpeechBubbleArt1.png", [2, 130, 535, 16, 16]); +V.set("animate_exports/images_cutscene/SpeechBubbleArt2.png", [2, 454, 535, 16, 16]); +V.set("animate_exports/images_cutscene/SpeechBubbleArt3.png", [2, 624, 536, 16, 16]); +V.set("animate_exports/images_cutscene/SpeechBubbleArt4.png", [2, 214, 537, 16, 16]); +V.set("animate_exports/images_cutscene/Stone3Art.png", [2, 667, 151, 37, 24]); +V.set("animate_exports/images_cutscene/StoneGateArt11.png", [2, 64, 270, 61, 49]); +V.set("animate_exports/images_cutscene/StoneLantern1Art.png", [2, 193, 508, 18, 34]); +V.set("animate_exports/images_cutscene/StoneLantern1Art11.png", [2, 193, 508, 18, 34]); +V.set("animate_exports/images_cutscene/StoneStairs2Art.png", [2, 494, 537, 16, 16]); +V.set("animate_exports/images_cutscene/SwimSignArt.png", [2, 298, 234, 19, 18]); +V.set("animate_exports/images_cutscene/TableTennisSignArt.png", [2, 433, 468, 19, 18]); +V.set("animate_exports/images_cutscene/TargetArt2.png", [2, 624, 508, 18, 25]); +V.set("animate_exports/images_cutscene/TargetArt2copy.png", [2, 214, 508, 18, 26]); +V.set("animate_exports/images_cutscene/Tengu1.png", [2, 604, 191, 75, 52]); +V.set("animate_exports/images_cutscene/Tengu2.png", [2, 524, 191, 77, 52]); +V.set("animate_exports/images_cutscene/UshiNeutralArt.png", [2, 188, 319, 54, 49]); +V.set("animate_exports/images_cutscene/Water1Art2.png", [2, 426, 540, 16, 16]); +V.set("animate_exports/images_cutscene/Water1Art4.png", [2, 19, 542, 16, 16]); +V.set("animate_exports/images_cutscene/Water1Art5.png", [2, 382, 542, 16, 16]); +V.set("animate_exports/images_cutscene/WillowTree1Art.png", [2, 205, 183, 90, 101]); +V.set("animate_exports/images_cutscene/WoodLanternPoleArt.png", [2, 38, 546, 14, 38]); +V.set("animate_exports/images_cutscene/WoodLanternPoleArt_1.png", [2, 38, 546, 14, 38]); +V.set("animate_exports/images_cutscene/_1x1DarkSand1.png", [2, 401, 542, 16, 16]); +V.set("animate_exports/images_cutscene/_3x3GardenGrass.png", [2, 0, 421, 48, 48]); +V.set("animate_exports/images_cutscene/_3x3Syncwater.png", [2, 153, 422, 48, 48]); +V.set("animate_exports/images_cutscene/_3x3water.png", [2, 51, 423, 48, 48]); +V.set("animate_exports/images_cutscene/grass1art.png", [2, 0, 543, 16, 16]); +V.set("animate_exports/images_cutscene/videoframe.png", [2, 0, 0, 320, 180]); +V.set("animate_exports/images_interior/ARcadeBGArt.png", [3, 1123, 2962, 193, 157]); +V.set("animate_exports/images_interior/ARcadeBackCabinetARt.png", [3, 1223, 3315, 28, 46]); +V.set("animate_exports/images_interior/ARcadeDomeArt.png", [3, 1084, 1402, 51, 40]); +V.set("animate_exports/images_interior/ARcadeYarnGlowArt.png", [3, 2994, 1779, 29, 17]); +V.set("animate_exports/images_interior/AaprtmentKitchenArt.png", [3, 3140, 2310, 50, 35]); +V.set("animate_exports/images_interior/AbandonedHouseBGArt.png", [3, 2707, 2862, 200, 117]); +V.set("animate_exports/images_interior/ApartmentBGArt.png", [3, 1066, 1529, 320, 180]); +V.set("animate_exports/images_interior/ApartmentBookshelfArt.png", [3, 3096, 873, 24, 11]); +V.set("animate_exports/images_interior/ApartmentFrameArt.png", [3, 1962, 765, 157, 83]); +V.set("animate_exports/images_interior/AquaWaterfallArt1.png", [3, 490, 3005, 16, 16]); +V.set("animate_exports/images_interior/AquaWaterfallArt2.png", [3, 222, 3365, 16, 16]); +V.set("animate_exports/images_interior/AquaWaterfallArt3.png", [3, 241, 3365, 16, 16]); +V.set("animate_exports/images_interior/AquaWaterfallArt4.png", [3, 260, 3365, 16, 16]); +V.set("animate_exports/images_interior/Ar.png", [3, 1399, 3290, 44, 45]); +V.set("animate_exports/images_interior/ArcadeCabinetArt.png", [3, 637, 3317, 28, 39]); +V.set("animate_exports/images_interior/ArcadeCabinetGlowArt.png", [3, 1065, 3169, 30, 20]); +V.set("animate_exports/images_interior/ArcadeChangeMachineArt.png", [3, 1374, 3351, 18, 23]); +V.set("animate_exports/images_interior/ArcadeFrameArt.png", [3, 2176, 1638, 320, 180]); +V.set("animate_exports/images_interior/ArcadeSideCabinetArt.png", [3, 2577, 3319, 26, 46]); +V.set("animate_exports/images_interior/ArcadeSideCabinetGlowArt.png", [3, 3232, 620, 9, 27]); +V.set("animate_exports/images_interior/ArcheryBoat1FrameArt.png", [3, 2961, 1490, 265, 123]); +V.set("animate_exports/images_interior/ArcheryBoatBGArt.png", [3, 1066, 1712, 320, 180]); +V.set("animate_exports/images_interior/ArcheryShipWindowLightArt.png", [3, 2707, 2763, 149, 43]); +V.set("animate_exports/images_interior/ArrowDisplayArt.png", [3, 2462, 2120, 33, 24]); +V.set("animate_exports/images_interior/BackBigCatArt1.png", [3, 1727, 3325, 26, 20]); +V.set("animate_exports/images_interior/BackBigCatArt2.png", [3, 1144, 1246, 24, 20]); +V.set("animate_exports/images_interior/BackeryBGArt.png", [3, 2069, 2890, 199, 116]); +V.set("animate_exports/images_interior/BackeryShelf1Art.png", [3, 3131, 2723, 101, 36]); +V.set("animate_exports/images_interior/Baker_Retired_Small_001.png", [3, 1835, 3245, 16, 31]); +V.set("animate_exports/images_interior/Baker_Retired_Small_002.png", [3, 1786, 3359, 16, 31]); +V.set("animate_exports/images_interior/Baker_Small_001.png", [3, 342, 1454, 17, 31]); +V.set("animate_exports/images_interior/Baker_Small_002.png", [3, 3046, 3345, 17, 31]); +V.set("animate_exports/images_interior/BakeryCounterArt.png", [3, 510, 2751, 99, 51]); +V.set("animate_exports/images_interior/BakeryShelf2Art.png", [3, 1938, 2114, 83, 45]); +V.set("animate_exports/images_interior/BakeryShelf3Art.png", [3, 1123, 3122, 95, 68]); +V.set("animate_exports/images_interior/BambooTree1Art1.png", [3, 68, 3184, 64, 108]); +V.set("animate_exports/images_interior/BambooTree3Art1.png", [3, 1084, 1315, 52, 84]); +V.set("animate_exports/images_interior/BanyanTreeFrameArt.png", [3, 0, 1727, 320, 180]); +V.set("animate_exports/images_interior/BanyanTreeLeavesArt.png", [3, 2122, 826, 29, 20]); +V.set("animate_exports/images_interior/BanyanTreeMapArt.png", [3, 323, 1737, 320, 180]); +V.set("animate_exports/images_interior/BanyanTreeRootsArt.png", [3, 2961, 1616, 251, 84]); +V.set("animate_exports/images_interior/BanyanTreeSunArt.png", [3, 2943, 709, 291, 161]); +V.set("animate_exports/images_interior/BeachHouseLArgeBGArt2.png", [3, 2910, 2862, 200, 117]); +V.set("animate_exports/images_interior/BeachLargeRoomBGArt.png", [3, 622, 2724, 240, 135]); +V.set("animate_exports/images_interior/BigBlueFrameArt.png", [3, 646, 1741, 320, 180]); +V.set("animate_exports/images_interior/BigBlueLanternArt.png", [3, 1639, 3089, 20, 28]); +V.set("animate_exports/images_interior/BigBlueRoomBGArt.png", [3, 2499, 1800, 320, 180]); +V.set("animate_exports/images_interior/BigBlueRoomDoorBGArt.png", [3, 2822, 1800, 320, 180]); +V.set("animate_exports/images_interior/BigCatArt1.png", [3, 2118, 3332, 25, 20]); +V.set("animate_exports/images_interior/BigInari.png", [3, 1979, 3326, 25, 34]); +V.set("animate_exports/images_interior/BigInariArt2.png", [3, 413, 3327, 25, 32]); +V.set("animate_exports/images_interior/BigKappaArt.png", [3, 312, 3348, 18, 25]); +V.set("animate_exports/images_interior/BigKappaArt2.png", [3, 469, 3351, 18, 24]); +V.set("animate_exports/images_interior/BigKarasuArt2.png", [3, 475, 3315, 30, 33]); +V.set("animate_exports/images_interior/BigKarasuImage.png", [3, 3032, 3308, 32, 34]); +V.set("animate_exports/images_interior/BigRedRoom2TatamiArt.png", [3, 1389, 1804, 320, 180]); +V.set("animate_exports/images_interior/BigRoomBGArt2.png", [3, 2176, 1821, 320, 180]); +V.set("animate_exports/images_interior/BigRoomCenterTatamiBGArt.png", [3, 1712, 1835, 320, 180]); +V.set("animate_exports/images_interior/BigTable.png", [3, 1399, 3010, 32, 28]); +V.set("animate_exports/images_interior/BigUshiArt.png", [3, 541, 3315, 30, 32]); +V.set("animate_exports/images_interior/BirthdayBallonsArt.png", [3, 622, 2679, 20, 35]); +V.set("animate_exports/images_interior/BirthdayCakeTableArt.png", [3, 3181, 2816, 44, 32]); +V.set("animate_exports/images_interior/BlueBannerArt.png", [3, 2469, 854, 74, 17]); +V.set("animate_exports/images_interior/BlueBookArt.png", [3, 1557, 1141, 7, 11]); +V.set("animate_exports/images_interior/BlueCushionsArt.png", [3, 394, 570, 64, 12]); +V.set("animate_exports/images_interior/BlueHallwayFrameArt.png", [3, 969, 1895, 320, 180]); +V.set("animate_exports/images_interior/BlueOniIdleArt1.png", [3, 1951, 3326, 25, 48]); +V.set("animate_exports/images_interior/BlueOniIdleArt2.png", [3, 865, 3311, 29, 47]); +V.set("animate_exports/images_interior/BlueTableArt.png", [3, 1957, 3244, 32, 25]); +V.set("animate_exports/images_interior/BlueWeight1Art.png", [3, 1979, 2162, 36, 19]); +V.set("animate_exports/images_interior/BlueWeight2Art.png", [3, 3232, 1051, 8, 19]); +V.set("animate_exports/images_interior/BoatBGArt.png", [3, 0, 1910, 320, 180]); +V.set("animate_exports/images_interior/BonsaiArt.png", [3, 269, 3212, 21, 22]); +V.set("animate_exports/images_interior/BookshelfImage111.png", [3, 171, 3306, 34, 32]); +V.set("animate_exports/images_interior/BookstoreBG1.png", [3, 1866, 2727, 240, 135]); +V.set("animate_exports/images_interior/BoundBitmap.png", xm); +V.set("animate_exports/images_interior/BoundBitmap_1.png", [3, 990, 3169, 72, 72]); +V.set("animate_exports/images_interior/BullStatue1Art.png", [3, 2224, 2626, 33, 58]); +V.set("animate_exports/images_interior/BullStatue2Art.png", [3, 1299, 3312, 30, 57]); +V.set("animate_exports/images_interior/BullStatue3Art.png", [3, 3202, 2964, 40, 56]); +V.set("animate_exports/images_interior/BuoyArt.png", [3, 2055, 3346, 18, 28]); +V.set("animate_exports/images_interior/CashRegisterImage.png", [3, 3229, 1551, 13, 11]); +V.set("animate_exports/images_interior/CaveBGArt.png", [3, 323, 1920, 320, 180]); +V.set("animate_exports/images_interior/CaveFrameArt.png", [3, 646, 1924, 320, 180]); +V.set("animate_exports/images_interior/CaveRock1Art.png", [3, 2303, 2330, 18, 12]); +V.set("animate_exports/images_interior/ChampionFacingPlayer_011.png", [3, 3202, 3023, 40, 50]); +V.set("animate_exports/images_interior/ChampionFacingPlayer_1.png", [3, 3202, 3076, 40, 50]); +V.set("animate_exports/images_interior/ChampionStandin.png", [3, 681, 1493, 39, 46]); +V.set("animate_exports/images_interior/CharacterShadowArt.png", ym); +V.set("animate_exports/images_interior/CherryBlossomVaseArt.png", [3, 1557, 1067, 8, 20]); +V.set("animate_exports/images_interior/ClimbingGymArt.png", [3, 2176, 1525, 97, 88]); +V.set("animate_exports/images_interior/ClimbingGymBGArt.png", [3, 2499, 1983, 320, 180]); +V.set("animate_exports/images_interior/ClimbingGymFrameArt.png", [3, 3004, 2166, 213, 141]); +V.set("animate_exports/images_interior/ComputerArt1.png", [3, 2906, 3377, 15, 19]); +V.set("animate_exports/images_interior/ConveneineceStore1BGArt.png", [3, 1663, 2967, 193, 157]); +V.set("animate_exports/images_interior/ConvenienceCounter1Art.png", [3, 2261, 2283, 80, 44]); +V.set("animate_exports/images_interior/ConvenienceStore1BorderArt.png", [3, 721, 2862, 202, 162]); +V.set("animate_exports/images_interior/CounterImage.png", [3, 969, 1837, 88, 48]); +V.set("animate_exports/images_interior/DarknessOLArt.png", [3, 1663, 2847, 200, 117]); +V.set("animate_exports/images_interior/DarumaArt.png", [3, 847, 3207, 57, 50]); +V.set("animate_exports/images_interior/DebrisArt1.png", [3, 3132, 873, 110, 49]); +V.set("animate_exports/images_interior/DumbassCat1.png", [3, 934, 2811, 27, 21]); +V.set("animate_exports/images_interior/DumbbellArt.png", [3, 2176, 1616, 41, 16]); +V.set("animate_exports/images_interior/ExclaimationMarkBubbleArt1.png", ql); +V.set("animate_exports/images_interior/Freezer1Art.png", [3, 3130, 676, 111, 24]); +V.set("animate_exports/images_interior/Frond.png", rl); +V.set("animate_exports/images_interior/GhostMomArt1.png", [3, 2981, 3378, 14, 22]); +V.set("animate_exports/images_interior/GhostMomArt2.png", [3, 2787, 3378, 14, 23]); +V.set("animate_exports/images_interior/GoBoard.png", [3, 3057, 1779, 25, 17]); +V.set("animate_exports/images_interior/GondolaBGArt.png", [3, 2822, 1983, 320, 180]); +V.set("animate_exports/images_interior/GreenBookImage.png", [3, 2727, 1154, 7, 11]); +V.set("animate_exports/images_interior/HotFood1Art.png", [3, 3230, 2434, 12, 21]); +V.set("animate_exports/images_interior/InariArt2.png", Am); +V.set("animate_exports/images_interior/InariBladRunArt.png", [3, 562, 3356, 18, 20]); +V.set("animate_exports/images_interior/InariBladeRunArt2.png", [3, 583, 3356, 18, 20]); +V.set("animate_exports/images_interior/InariImage.png", [3, 1979, 3363, 16, 20]); +V.set("animate_exports/images_interior/InariSideFrame1.png", [3, 333, 3364, 16, 20]); +V.set("animate_exports/images_interior/InariSideFrame2.png", [3, 2076, 3358, 17, 19]); +V.set("animate_exports/images_interior/InariStatueArt.png", [3, 1636, 3313, 30, 50]); +V.set("animate_exports/images_interior/KappaArt.png", Bm); +V.set("animate_exports/images_interior/KappaArt2.png", Cm); +V.set("animate_exports/images_interior/KappaRunArt.png", [3, 3013, 3364, 16, 18]); +V.set("animate_exports/images_interior/KappaSideFrame1.png", [3, 478, 3378, 15, 16]); +V.set("animate_exports/images_interior/KappaSideFrame2.png", [3, 88, 3359, 17, 16]); +V.set("animate_exports/images_interior/KarasuArt.png", Dm); +V.set("animate_exports/images_interior/KarasuArt2.png", [3, 3204, 3341, 20, 20]); +V.set("animate_exports/images_interior/KarasuSideFrame1.png", [3, 2090, 3308, 15, 20]); +V.set("animate_exports/images_interior/KarasuSideFrame2.png", [3, 1532, 3379, 14, 20]); +V.set("animate_exports/images_interior/KijimunaIdleArt1.png", Em); +V.set("animate_exports/images_interior/KijimunaIdleArt2.png", Fm); +V.set("animate_exports/images_interior/Koma1Art1.png", [3, 3066, 3364, 16, 18]); +V.set("animate_exports/images_interior/Koma1Art2.png", Gm); +V.set("animate_exports/images_interior/Koma2Art1.png", Hm); +V.set("animate_exports/images_interior/Koma2Art2.png", sl); +V.set("animate_exports/images_interior/KomaHouseBGArt11.png", [3, 1866, 2865, 200, 117]); +V.set("animate_exports/images_interior/KotatsuArt.png", [3, 1062, 3340, 20, 21]); +V.set("animate_exports/images_interior/LArgeRoomBGArt11.png", [3, 1292, 1987, 320, 180]); +V.set("animate_exports/images_interior/LanternStringBlueArt.png", tl); +V.set("animate_exports/images_interior/LanternStringGreenArt.png", ul); +V.set("animate_exports/images_interior/LanternStringRedArt.png", vl); +V.set("animate_exports/images_interior/LanternStringYellowArt.png", wl); +V.set("animate_exports/images_interior/LanternsArt.png", [3, 323, 2469, 320, 76]); +V.set("animate_exports/images_interior/LargeBallPileArt.png", [3, 267, 2727, 34, 19]); +V.set("animate_exports/images_interior/LargeHotSpringArt2.png", Im); +V.set("animate_exports/images_interior/LargeHotSpringArt3.png", Jm); +V.set("animate_exports/images_interior/LargeLava1Art1.png", [3, 724, 1250, 48, 48]); +V.set("animate_exports/images_interior/LargeLava1Art2.png", [3, 1232, 2714, 48, 48]); +V.set("animate_exports/images_interior/LargeLava1Art3.png", [3, 2831, 2809, 48, 48]); +V.set("animate_exports/images_interior/LargeLava1Art4.png", [3, 1232, 2714, 48, 48]); +V.set("animate_exports/images_interior/LargeLavaArt.png", xl); +V.set("animate_exports/images_interior/LargeLavaArt2.png", yl); +V.set("animate_exports/images_interior/LargeWallArt.png", [3, 2035, 2004, 320, 180]); +V.set("animate_exports/images_interior/LargeWater1Art5.png", Km); +V.set("animate_exports/images_interior/LargeWater1RippleArt1.png", [3, 633, 293, 47, 3]); +V.set("animate_exports/images_interior/LargeWater1RippleArt2.png", [3, 582, 293, 48, 4]); +V.set("animate_exports/images_interior/LargeWeightArt.png", [3, 2018, 2985, 33, 20]); +V.set("animate_exports/images_interior/Lava1Waterfall1Art2.png", zl); +V.set("animate_exports/images_interior/Lava1Waterfall1Art3.png", Al); +V.set("animate_exports/images_interior/Lava1Waterfall1Art4.png", Bl); +V.set("animate_exports/images_interior/Lava1Waterfall1HighlightArt1.png", Cl); +V.set("animate_exports/images_interior/Lava1Waterfall1HighlightArt2.png", Dl); +V.set("animate_exports/images_interior/Lava1Waterfall1HighlightArt3.png", El); +V.set("animate_exports/images_interior/Lava1Waterfall1HighlightArt4.png", Fl); +V.set("animate_exports/images_interior/Lava1WaterfallArt1.png", Gl); +V.set("animate_exports/images_interior/LavafallBottomArt1.png", Hl); +V.set("animate_exports/images_interior/LavafallBottomArt2.png", Il); +V.set("animate_exports/images_interior/LavafallBottomArt3.png", Jl); +V.set("animate_exports/images_interior/LavafallBottomArt4.png", Kl); +V.set("animate_exports/images_interior/LittleTable.png", [3, 413, 3362, 16, 22]); +V.set("animate_exports/images_interior/LocksmithBGArt1.png", [3, 3079, 1379, 156, 107]); +V.set("animate_exports/images_interior/LocksmithCounterArt.png", [3, 3131, 2762, 99, 51]); +V.set("animate_exports/images_interior/LocksmithShelvesArt.png", [3, 3131, 2816, 47, 27]); +V.set("animate_exports/images_interior/LocksmithSmallTableArt.png", [3, 2155, 652, 50, 19]); +V.set("animate_exports/images_interior/LocksmithTable2Art.png", [3, 582, 275, 31, 13]); +V.set("animate_exports/images_interior/LocksmithTableArt.png", [3, 3087, 2310, 50, 36]); +V.set("animate_exports/images_interior/LocksmithTree2Art.png", [3, 1572, 2767, 23, 34]); +V.set("animate_exports/images_interior/LocksmithTreeArt.png", [3, 783, 3331, 25, 23]); +V.set("animate_exports/images_interior/LocksmithWallArt.png", [3, 2018, 3009, 156, 107]); +V.set("animate_exports/images_interior/LongFrameArt1.png", [3, 1615, 2018, 320, 180]); +V.set("animate_exports/images_interior/LongTredmillArt.png", [3, 1712, 1804, 58, 25]); +V.set("animate_exports/images_interior/LostBookArt.png", [3, 3232, 570, 10, 10]); +V.set("animate_exports/images_interior/LuckyIdleEArt.png", Ll); +V.set("animate_exports/images_interior/LuckyIdleNArt.png", Lm); +V.set("animate_exports/images_interior/LuckyIdleS1111.png", [3, 1669, 3351, 18, 22]); +V.set("animate_exports/images_interior/LuckyIdleSArt2.png", Mm); +V.set("animate_exports/images_interior/LuckyIdleSArt3.png", Nm); +V.set("animate_exports/images_interior/LuckyIdleWArt.png", Ml); +V.set("animate_exports/images_interior/LuckySculptureArt1.png", [3, 1324, 547, 37, 50]); +V.set("animate_exports/images_interior/LuckyWalkEArt1.png", Nl); +V.set("animate_exports/images_interior/LuckyWalkEArt2.png", Ol); +V.set("animate_exports/images_interior/LuckyWalkEArt3.png", Pl); +V.set("animate_exports/images_interior/LuckyWalkEArt4.png", Ql); +V.set("animate_exports/images_interior/LuckyWalkEArt5.png", Rl); +V.set("animate_exports/images_interior/LuckyWalkEArt6.png", Sl); +V.set("animate_exports/images_interior/LuckyWalkNArt1.png", Tl); +V.set("animate_exports/images_interior/LuckyWalkNArt2.png", Ul); +V.set("animate_exports/images_interior/LuckyWalkNArt3.png", Vl); +V.set("animate_exports/images_interior/LuckyWalkNArt4.png", Wl); +V.set("animate_exports/images_interior/LuckyWalkSArt1.png", Yl); +V.set("animate_exports/images_interior/LuckyWalkSArt2.png", Zl); +V.set("animate_exports/images_interior/LuckyWalkSArt3.png", $l); +V.set("animate_exports/images_interior/LuckyWalkSArt4.png", Om); +V.set("animate_exports/images_interior/LuckyWalkSArt5.png", am); +V.set("animate_exports/images_interior/LuckyWalkSArt6.png", bm); +V.set("animate_exports/images_interior/LuckyWalkSArt7.png", cm); +V.set("animate_exports/images_interior/LuckyWalkSArt8.png", dm); +V.set("animate_exports/images_interior/LuckyWalkWArt1.png", em); +V.set("animate_exports/images_interior/LuckyWalkWArt2.png", fm); +V.set("animate_exports/images_interior/LuckyWalkWArt3.png", gm); +V.set("animate_exports/images_interior/LuckyWalkWArt4.png", hm); +V.set("animate_exports/images_interior/LuckyWalkWArt5.png", im); +V.set("animate_exports/images_interior/LuckyWalkWArt6.png", jm); +V.set("animate_exports/images_interior/LuckyWalknArt5.png", Xl); +V.set("animate_exports/images_interior/MediumLanternBlueArt.png", km); +V.set("animate_exports/images_interior/MediumLanternGreenArt.png", lm); +V.set("animate_exports/images_interior/MediumLanternYellowArt.png", mm); +V.set("animate_exports/images_interior/MediumWeightRackArt.png", [3, 2961, 1779, 30, 16]); +V.set("animate_exports/images_interior/MomoBGArt1.png", [3, 969, 2078, 320, 180]); +V.set("animate_exports/images_interior/MomoBGArt2.png", [3, 0, 2093, 320, 180]); +V.set("animate_exports/images_interior/MomoBlueIdleArt1.png", [3, 1548, 3355, 18, 21]); +V.set("animate_exports/images_interior/MomoBlueIdleArt2.png", [3, 1492, 3358, 17, 20]); +V.set("animate_exports/images_interior/MomoIdleArt1.png", [3, 2118, 3355, 18, 21]); +V.set("animate_exports/images_interior/MomoIdleArt2.png", [3, 1512, 3358, 17, 20]); +V.set("animate_exports/images_interior/NPCRacerAframe1.png", rm); +V.set("animate_exports/images_interior/NPCRacerAframe2.png", sm); +V.set("animate_exports/images_interior/NPCRacerBframe1.png", tm); +V.set("animate_exports/images_interior/NPCRacerBframe2.png", um); +V.set("animate_exports/images_interior/NPCWolfieFrame1.png", vm); +V.set("animate_exports/images_interior/NPCWolfieFrame2.png", wm); +V.set("animate_exports/images_interior/NPCmomotarodadframe1.png", nm); +V.set("animate_exports/images_interior/NPCmomotarodadframe2.png", om); +V.set("animate_exports/images_interior/NPCmomotaromomframe1.png", pm); +V.set("animate_exports/images_interior/NPCmomotaromomframe2.png", qm); +V.set("animate_exports/images_interior/NewLArgeWater1Art11.png", [3, 2430, 3217, 48, 48]); +V.set("animate_exports/images_interior/NewLargeWater1Art2.png", Pm); +V.set("animate_exports/images_interior/NiceTableArt.png", [3, 3023, 3108, 15, 34]); +V.set("animate_exports/images_interior/NoodleBarArt.png", [3, 1476, 3166, 73, 117]); +V.set("animate_exports/images_interior/NoodleChefArt1.png", [3, 726, 3324, 26, 25]); +V.set("animate_exports/images_interior/NoodleChefArt2.png", [3, 1840, 3330, 25, 24]); +V.set("animate_exports/images_interior/NoodleKitchenArt.png", [3, 2069, 2865, 35, 21]); +V.set("animate_exports/images_interior/NoodlePotArt1.png", [3, 897, 3342, 19, 23]); +V.set("animate_exports/images_interior/NoodleShopMapArt.png", [3, 323, 2103, 320, 180]); +V.set("animate_exports/images_interior/NoodleShopWallArt.png", [3, 3042, 2982, 157, 163]); +V.set("animate_exports/images_interior/NoodleStoolArt.png", [3, 728, 3377, 15, 23]); +V.set("animate_exports/images_interior/Ogre_Baker_Small_001.png", [3, 1332, 3314, 30, 34]); +V.set("animate_exports/images_interior/Ogre_Baker_Small_002.png", [3, 1365, 3314, 30, 34]); +V.set("animate_exports/images_interior/Ogre_small_001.png", [3, 2993, 3317, 28, 33]); +V.set("animate_exports/images_interior/Ogre_small_002.png", [3, 2396, 3319, 28, 33]); +V.set("animate_exports/images_interior/OldTrophiesArt.png", [3, 297, 3121, 29, 19]); +V.set("animate_exports/images_interior/OniBakerArt2.png", [3, 1859, 2985, 156, 109]); +V.set("animate_exports/images_interior/OniBakerBedArt.png", [3, 1324, 600, 37, 39]); +V.set("animate_exports/images_interior/OniBakerBreadTableArt.png", [3, 1938, 2162, 38, 21]); +V.set("animate_exports/images_interior/OniBakerJarsArt.png", [3, 2220, 1616, 39, 19]); +V.set("animate_exports/images_interior/OniBakerPotArt.png", [3, 622, 2548, 20, 68]); +V.set("animate_exports/images_interior/OniBakerWeightsArt.png", [3, 2055, 3308, 32, 35]); +V.set("animate_exports/images_interior/OniBrotherHouseBGArt.png", [3, 198, 3009, 156, 109]); +V.set("animate_exports/images_interior/OniRunArt.png", [3, 490, 3351, 18, 24]); +V.set("animate_exports/images_interior/Opponenet2Art5.png", [3, 1552, 3166, 36, 31]); +V.set("animate_exports/images_interior/Opponenet2Art6.png", [3, 470, 2968, 36, 34]); +V.set("animate_exports/images_interior/Opponenet3Art1.png", [3, 1504, 1410, 49, 29]); +V.set("animate_exports/images_interior/Opponenet3Art2.png", [3, 1773, 1804, 50, 28]); +V.set("animate_exports/images_interior/Opponenet3Art3.png", [3, 267, 2695, 50, 29]); +V.set("animate_exports/images_interior/Opponenet3Art4.png", [3, 1504, 1344, 49, 30]); +V.set("animate_exports/images_interior/Opponenet3Art5.png", [3, 1504, 1377, 49, 30]); +V.set("animate_exports/images_interior/Opponenet3Art6.png", [3, 1504, 1442, 49, 29]); +V.set("animate_exports/images_interior/Opponenet4Art1.png", [3, 2993, 3280, 36, 34]); +V.set("animate_exports/images_interior/Opponenet4Art2.png", [3, 1874, 3295, 36, 31]); +V.set("animate_exports/images_interior/Opponenet4Art3.png", [3, 1324, 684, 37, 34]); +V.set("animate_exports/images_interior/Opponenet4Art4.png", [3, 989, 3295, 36, 32]); +V.set("animate_exports/images_interior/Opponenet4Art5.png", [3, 1772, 3296, 35, 31]); +V.set("animate_exports/images_interior/Opponenet4Art6.png", [3, 1761, 546, 35, 32]); +V.set("animate_exports/images_interior/Opponent2Art1.png", [3, 2430, 3170, 35, 32]); +V.set("animate_exports/images_interior/Opponent2Art2.png", [3, 2109, 3298, 35, 31]); +V.set("animate_exports/images_interior/Opponent2Art3.png", [3, 1835, 3295, 36, 32]); +V.set("animate_exports/images_interior/Opponent2Art4.png", [3, 3205, 1703, 37, 34]); +V.set("animate_exports/images_interior/OtohimeArt1.png", [3, 2008, 3275, 44, 70]); +V.set("animate_exports/images_interior/OtohimeArt2.png", [3, 1501, 3286, 44, 69]); +V.set("animate_exports/images_interior/OtohimeBenchArt.png", [3, 1084, 1445, 50, 37]); +V.set("animate_exports/images_interior/OtohimeFrame.png", [3, 646, 2107, 320, 180]); +V.set("animate_exports/images_interior/OtohimeMapArt.png", [3, 2358, 2166, 320, 180]); +V.set("animate_exports/images_interior/PingPongBall.png", [3, 3237, 250, 4, 4]); +V.set("animate_exports/images_interior/PingPongTableBlueArt.png", [3, 2155, 586, 64, 63]); +V.set("animate_exports/images_interior/PingPongTableRedArt.png", [3, 202, 3189, 64, 63]); +V.set("animate_exports/images_interior/PinkTeasetArt.png", [3, 1440, 3365, 16, 20]); +V.set("animate_exports/images_interior/PointyRockArt.png", [3, 2606, 3332, 21, 47]); +V.set("animate_exports/images_interior/PortalCircle.png", Qm); +V.set("animate_exports/images_interior/PortalGlowArt.png", Rm); +V.set("animate_exports/images_interior/PortalSparklesArt1.png", Sm); +V.set("animate_exports/images_interior/PortalSparklesArt2.png", Tm); +V.set("animate_exports/images_interior/PortalSparklesArt3.png", Um); +V.set("animate_exports/images_interior/QuestCoachBGMapArt1.png", [3, 2681, 2166, 320, 180]); +V.set("animate_exports/images_interior/QuestCoachCoachArt1.png", [3, 1918, 1250, 36, 29]); +V.set("animate_exports/images_interior/QuestCoachTraineeRunArt1.png", [3, 2941, 3331, 25, 23]); +V.set("animate_exports/images_interior/QuestCoachTraineeSitArt1.png", [3, 1812, 3330, 25, 25]); +V.set("animate_exports/images_interior/QuestCoachTraineeSitArt2.png", [3, 591, 2805, 27, 23]); +V.set("animate_exports/images_interior/QuestionMArkBubbleArt1.png", [3, 941, 3365, 16, 16]); +V.set("animate_exports/images_interior/Rabbit1Art1.png", [3, 367, 3336, 14, 24]); +V.set("animate_exports/images_interior/Rabbit1Art2.png", [3, 1693, 3378, 14, 24]); +V.set("animate_exports/images_interior/Rabbit1Art3.png", [3, 1242, 3379, 14, 21]); +V.set("animate_exports/images_interior/RabbitRunArt.png", [3, 2258, 3304, 15, 24]); +V.set("animate_exports/images_interior/RamenBowl1Art.png", [3, 3232, 609, 10, 8]); +V.set("animate_exports/images_interior/RampArt1111.png", [3, 3145, 2041, 96, 86]); +V.set("animate_exports/images_interior/RedBigRoomBGArt.png", [3, 1292, 2170, 320, 180]); +V.set("animate_exports/images_interior/RedBookArt.png", [3, 1557, 1155, 7, 11]); +V.set("animate_exports/images_interior/RedBookshelfArt.png", [3, 208, 3306, 34, 32]); +V.set("animate_exports/images_interior/RedLanternTableArt.png", [3, 3089, 3359, 16, 26]); +V.set("animate_exports/images_interior/RedOniIdleArt1.png", [3, 134, 3300, 34, 39]); +V.set("animate_exports/images_interior/RedOniIdleArt2.png", [3, 470, 2889, 36, 38]); +V.set("animate_exports/images_interior/RockinWater2.png", [3, 1669, 3325, 26, 23]); +V.set("animate_exports/images_interior/RockinWater3.png", [3, 470, 2930, 36, 35]); +V.set("animate_exports/images_interior/Rockinwater1.png", [3, 681, 1589, 39, 36]); +V.set("animate_exports/images_interior/RubgyDojoMainRoomBGArt2.png", [3, 1938, 2187, 320, 180]); +V.set("animate_exports/images_interior/RugbyDojoHallwayBNG.png", [3, 1615, 2201, 320, 180]); +V.set("animate_exports/images_interior/RugbyDojoHallwayFrameArt.png", [3, 969, 2261, 320, 180]); +V.set("animate_exports/images_interior/RugbyDojoMainRoomFrameArt.png", [3, 0, 2276, 320, 180]); +V.set("animate_exports/images_interior/Seat.png", [3, 3229, 1489, 13, 13]); +V.set("animate_exports/images_interior/Shelf1Art.png", [3, 3215, 1616, 27, 71]); +V.set("animate_exports/images_interior/Shelf2Art.png", [3, 1130, 3310, 28, 71]); +V.set("animate_exports/images_interior/Shelf3Art.png", [3, 2458, 3319, 27, 71]); +V.set("animate_exports/images_interior/ShoeRackArt.png", [3, 2109, 2727, 100, 95]); +V.set("animate_exports/images_interior/SignBubbleFrame1.png", [3, 2324, 2330, 18, 12]); +V.set("animate_exports/images_interior/SignBubbleFrame2.png", [3, 1572, 2830, 18, 12]); +V.set("animate_exports/images_interior/SignBubbleImage3.png", [3, 3131, 2846, 18, 12]); +V.set("animate_exports/images_interior/SignBubbleImage4.png", [3, 3152, 2846, 18, 12]); +V.set("animate_exports/images_interior/SkateDojoBGArt.png", [3, 323, 2286, 320, 180]); +V.set("animate_exports/images_interior/SkateDojoHallwayBGArt.png", [3, 646, 2290, 320, 180]); +V.set("animate_exports/images_interior/SkateDojoHallwayFrameArt.png", [3, 2261, 2349, 320, 180]); +V.set("animate_exports/images_interior/SkateWallArt.png", [3, 2584, 2349, 320, 180]); +V.set("animate_exports/images_interior/SkaterNArt.png", [3, 2654, 3332, 21, 27]); +V.set("animate_exports/images_interior/SkaterSArt.png", [3, 2593, 1764, 23, 26]); +V.set("animate_exports/images_interior/SmalWindowLightArt.png", [3, 510, 2805, 78, 43]); +V.set("animate_exports/images_interior/SmallBallPileArt.png", [3, 1389, 1789, 16, 10]); +V.set("animate_exports/images_interior/SmallBoatBGArt.png", [3, 2907, 2349, 320, 180]); +V.set("animate_exports/images_interior/SmallBoatFrameArt.png", [3, 2854, 2982, 185, 123]); +V.set("animate_exports/images_interior/SmallFrameArt.png", [3, 267, 2889, 200, 117]); +V.set("animate_exports/images_interior/SmallPointyRockArt.png", [3, 2727, 1088, 8, 14]); +V.set("animate_exports/images_interior/SmallTredmillArt.png", [3, 2982, 3108, 38, 31]); +V.set("animate_exports/images_interior/SmallWeightRackArt.png", [3, 3026, 1779, 28, 16]); +V.set("animate_exports/images_interior/SnowOwldleArt1.png", [3, 616, 275, 11, 14]); +V.set("animate_exports/images_interior/SnowOwldleArt2.png", [3, 2469, 2941, 15, 13]); +V.set("animate_exports/images_interior/Sparkle1.png", en); +V.set("animate_exports/images_interior/Sparkle2.png", fn); +V.set("animate_exports/images_interior/SpeechBubbleArt1.png", Vm); +V.set("animate_exports/images_interior/SpeechBubbleArt2.png", Wm); +V.set("animate_exports/images_interior/SpeechBubbleArt3.png", Xm); +V.set("animate_exports/images_interior/SpeechBubbleArt4.png", Ym); +V.set("animate_exports/images_interior/SquareBlueLanternArt.png", [3, 2018, 2162, 12, 22]); +V.set("animate_exports/images_interior/SquareGreenLanternArt.png", [3, 363, 1202, 22, 22]); +V.set("animate_exports/images_interior/SquareLanternARt.png", [3, 3230, 2409, 12, 22]); +V.set("animate_exports/images_interior/SquareRedLanternArt.png", [3, 508, 3315, 30, 33]); +V.set("animate_exports/images_interior/StoneTableArt.png", [3, 574, 3315, 29, 38]); +V.set("animate_exports/images_interior/StoneTeaSetArt.png", [3, 681, 1628, 38, 48]); +V.set("animate_exports/images_interior/SwimGazeboBGArt.png", [3, 1292, 2353, 320, 180]); +V.set("animate_exports/images_interior/SwimGazeboFrame.png", [3, 3015, 524, 214, 149]); +V.set("animate_exports/images_interior/TableTennisDojoBGArt.png", [3, 1938, 2370, 320, 180]); +V.set("animate_exports/images_interior/TableTennisDojoStatueArt.png", hn); +V.set("animate_exports/images_interior/TallPlantArt.png", [3, 967, 3339, 18, 41]); +V.set("animate_exports/images_interior/TeaSet.png", [3, 2375, 3359, 16, 29]); +V.set("animate_exports/images_interior/TeaSteamImage1.png", [3, 3237, 240, 4, 7]); +V.set("animate_exports/images_interior/TeaSteamImage2.png", [3, 1557, 1198, 6, 7]); +V.set("animate_exports/images_interior/TeahouseBG.png", [3, 267, 2751, 240, 135]); +V.set("animate_exports/images_interior/TeahouseWall.png", [3, 2888, 2723, 240, 136]); +V.set("animate_exports/images_interior/Tengu1.png", [3, 1123, 2906, 75, 52]); +V.set("animate_exports/images_interior/Tengu2.png", [3, 2109, 2825, 77, 52]); +V.set("animate_exports/images_interior/TenguAsleepArt1.png", [3, 1352, 3261, 44, 50]); +V.set("animate_exports/images_interior/TenguAsleepArt2.png", [3, 267, 2642, 50, 50]); +V.set("animate_exports/images_interior/TenguFanArt.png", [3, 2221, 3304, 34, 34]); +V.set("animate_exports/images_interior/TicketCounterArt.png", [3, 2491, 2694, 80, 44]); +V.set("animate_exports/images_interior/Town_people_bat_small_01.png", [3, 1062, 3310, 31, 27]); +V.set("animate_exports/images_interior/Town_people_bat_small_02.png", [3, 1096, 3310, 31, 27]); +V.set("animate_exports/images_interior/Town_people_fish_handicap_small_01.png", jn); +V.set("animate_exports/images_interior/Town_people_fish_handicap_small_02.png", kn); +V.set("animate_exports/images_interior/Town_people_fish_small_01.png", [3, 2619, 453, 22, 26]); +V.set("animate_exports/images_interior/Town_people_fish_small_02.png", [3, 2619, 482, 22, 26]); +V.set("animate_exports/images_interior/Town_people_hare_small_01.png", ln); +V.set("animate_exports/images_interior/Town_people_hare_small_02.png", mn); +V.set("animate_exports/images_interior/Town_people_kid_small_001.png", nn); +V.set("animate_exports/images_interior/Town_people_kid_small_002.png", on); +V.set("animate_exports/images_interior/Town_people_nova_small_001.png", pn); +V.set("animate_exports/images_interior/Town_people_nova_small_002.png", qn); +V.set("animate_exports/images_interior/Town_people_seahorse_small_01.png", [3, 1727, 3348, 18, 25]); +V.set("animate_exports/images_interior/Town_people_seahorse_small_02.png", [3, 2007, 3348, 18, 25]); +V.set("animate_exports/images_interior/Town_people_shiba_small_01.png", [3, 2619, 334, 22, 27]); +V.set("animate_exports/images_interior/Town_people_shiba_small_02.png", [3, 2619, 364, 22, 27]); +V.set("animate_exports/images_interior/TrainStationMapArt.png", [3, 1615, 2384, 320, 180]); +V.set("animate_exports/images_interior/TrainWorkerArt1.png", [3, 2992, 3353, 18, 22]); +V.set("animate_exports/images_interior/TrainWorkerArt2.png", [3, 2375, 3335, 18, 21]); +V.set("animate_exports/images_interior/TriggerBitmap.png", rn); +V.set("animate_exports/images_interior/TrophyCase1.png", [3, 1017, 3341, 20, 21]); +V.set("animate_exports/images_interior/TrophyImage.png", [3, 1698, 3325, 26, 22]); +V.set("animate_exports/images_interior/TrophyMasterIdleArt1.png", [3, 342, 1417, 17, 34]); +V.set("animate_exports/images_interior/TrophyMasterIdleArt2.png", [3, 710, 3377, 15, 33]); +V.set("animate_exports/images_interior/TrophyRailsArt.png", [3, 487, 263, 141, 9]); +V.set("animate_exports/images_interior/TrophyRoomBGArt.png", [3, 969, 2444, 320, 180]); +V.set("animate_exports/images_interior/TrophyRoomFrameArt.png", [3, 2035, 2004, 320, 180]); +V.set("animate_exports/images_interior/UFOArt.png", [3, 606, 3317, 28, 43]); +V.set("animate_exports/images_interior/UrashimaArt1.png", [3, 367, 3363, 16, 22]); +V.set("animate_exports/images_interior/UrashimaArt2.png", [3, 2396, 3355, 18, 21]); +V.set("animate_exports/images_interior/UshiArt11.png", [3, 1395, 3365, 16, 20]); +V.set("animate_exports/images_interior/UshiArt2.png", Zm); +V.set("animate_exports/images_interior/UshiRunArt.png", [3, 1812, 3358, 17, 20]); +V.set("animate_exports/images_interior/UshiSideFrame1.png", [3, 1549, 3379, 14, 20]); +V.set("animate_exports/images_interior/UshiSideFrame2.png", [3, 2870, 3377, 15, 20]); +V.set("animate_exports/images_interior/WaitingChairsArt.png", [3, 2358, 2120, 101, 38]); +V.set("animate_exports/images_interior/Waterfall1Art11.png", [3, 0, 3366, 16, 16]); +V.set("animate_exports/images_interior/WaterfallBottomArt2.png", sn); +V.set("animate_exports/images_interior/WaterfallBottomArt3.png", tn); +V.set("animate_exports/images_interior/WaterfallBottomArt4.png", un); +V.set("animate_exports/images_interior/WaterfallBtoomArt1.png", vn); +V.set("animate_exports/images_interior/WhirlpoolArt1.png", [3, 2532, 3217, 48, 48]); +V.set("animate_exports/images_interior/WhitOniIdleArt1.png", [3, 2028, 3348, 18, 25]); +V.set("animate_exports/images_interior/WhitOniIdleArt2.png", [3, 511, 3351, 18, 24]); +V.set("animate_exports/images_interior/WightOnGroundArt.png", [3, 2513, 874, 18, 10]); +V.set("animate_exports/images_interior/WillowTree1Art.png", $m); +V.set("animate_exports/images_interior/_3TargetsArt.png", wn); +V.set("animate_exports/images_interior/_3x3water11.png", [3, 2583, 3217, 48, 48]); +V.set("animate_exports/images_interior/birthdayfriendframe1.png", [3, 1832, 3378, 14, 24]); +V.set("animate_exports/images_interior/birthdayfriendframe2.png", [3, 2804, 3378, 14, 23]); +V.set("animate_exports/images_interior/birthdaykidframe1.png", [3, 2619, 394, 22, 27]); +V.set("animate_exports/images_interior/birthdaykidframe2.png", [3, 2619, 303, 22, 28]); +V.set("animate_exports/images_interior/deer_sprite_idle_anim_pose1.png", ol); +V.set("animate_exports/images_interior/deer_sprite_idle_anim_pose2.png", pl); +V.set("animate_exports/images_interior/inariArt.png", zm); +V.set("animate_exports/images_interior/lilypad1.png", [3, 1619, 3200, 60, 59]); +V.set("animate_exports/images_interior/lilypad2.png", [3, 662, 3204, 60, 59]); +V.set("animate_exports/images_interior/locksmith_sprite_idle_anim_pose1.png", [3, 1874, 3329, 25, 29]); +V.set("animate_exports/images_interior/locksmith_sprite_idle_anim_pose2.png", [3, 989, 3330, 25, 29]); +V.set("animate_exports/images_interior/momframe1.png", [3, 1880, 3361, 16, 24]); +V.set("animate_exports/images_interior/momframe2.png", [3, 1861, 3361, 16, 25]); +V.set("animate_exports/images_interior/otter_sprite_idle_anim_pose1.png", [3, 1332, 3351, 18, 24]); +V.set("animate_exports/images_interior/otter_sprite_idle_anim_pose2.png", [3, 1353, 3351, 18, 24]); +V.set("animate_exports/images_interior/porcupine_sprite_idle_anim_pose1.png", [3, 1421, 3338, 20, 23]); +V.set("animate_exports/images_interior/porcupine_sprite_idle_anim_pose2.png", [3, 944, 3339, 20, 23]); +V.set("animate_exports/images_interior/shine1.png", [3, 559, 294, 2, 2]); +V.set("animate_exports/images_interior/shine2.png", [3, 553, 294, 3, 2]); +V.set("animate_exports/images_interior/shine3.png", [3, 534, 294, 4, 3]); +V.set("animate_exports/images_interior/sister1_sprite_idle_anim_pose1.png", an); +V.set("animate_exports/images_interior/sister1_sprite_idle_anim_pose2.png", bn); +V.set("animate_exports/images_interior/sister3_sprite_idle_anim_pose1.png", cn); +V.set("animate_exports/images_interior/sister3_sprite_idle_anim_pose2.png", dn); +V.set("animate_exports/images_interior/supermountaingirlframe1.png", gn); +V.set("animate_exports/images_interior/supermountaingirlframe2.png", [3, 3228, 2130, 14, 29]); +V.set("animate_exports/images_interior/woodScultupreArt1.png", [3, 2838, 3306, 32, 47]); +V.set("animate_exports/images_interior/woodScultupreArt2.png", [3, 3136, 3308, 31, 44]); +V.set("animate_exports/images_interior/woodScultupreArt3.png", [3, 1579, 3317, 20, 45]); +V.set("animate_exports/images_interior/woodScultupreArt4.png", [3, 622, 2619, 20, 57]); +V.set("animate_exports/images_interior/yellowBookImage.png", [3, 2727, 1168, 7, 11]); +V.set("animate_exports/images_overworld/AdanTree.png", [3, 1399, 3166, 74, 70]); +V.set("animate_exports/images_overworld/ArcadeArt.png", [3, 3137, 262, 105, 95]); +V.set("animate_exports/images_overworld/ArcheryArrowBoulder1Art.png", [3, 0, 3294, 42, 48]); +V.set("animate_exports/images_overworld/ArcheryBoatDojoArt.png", [3, 357, 3024, 154, 116]); +V.set("animate_exports/images_overworld/ArcheryBoatDoor2Art.png", [3, 2699, 3357, 18, 16]); +V.set("animate_exports/images_overworld/ArcheryBoatHouse1Art.png", [3, 1596, 3127, 93, 70]); +V.set("animate_exports/images_overworld/ArcheryBoulder1Art.png", [3, 3196, 2595, 46, 48]); +V.set("animate_exports/images_overworld/ArcheryBoulder2Art.png", [3, 1548, 3317, 28, 35]); +V.set("animate_exports/images_overworld/ArcheryBoulder3Art.png", [3, 2427, 3319, 28, 31]); +V.set("animate_exports/images_overworld/ArcheryBoulder4Art.png", [3, 1324, 642, 37, 39]); +V.set("animate_exports/images_overworld/ArcheryDock1Art.png", [3, 19, 3366, 16, 16]); +V.set("animate_exports/images_overworld/ArcheryDojoBalconyArt.png", [3, 3186, 159, 53, 15]); +V.set("animate_exports/images_overworld/ArcheryDojoRoofArt.png", [3, 2961, 1703, 241, 73]); +V.set("animate_exports/images_overworld/ArcheryE_01.png", [3, 0, 1174, 360, 240]); +V.set("animate_exports/images_overworld/ArcheryE_03.png", [3, 1918, 1282, 357, 240]); +V.set("animate_exports/images_overworld/ArcheryE_04.png", [3, 776, 1092, 365, 220]); +V.set("animate_exports/images_overworld/ArcheryIconArt.png", [3, 3229, 1521, 13, 12]); +V.set("animate_exports/images_overworld/ArcherySignArt.png", [3, 2536, 2741, 19, 18]); +V.set("animate_exports/images_overworld/ArcheryTree1Art.png", [3, 299, 3293, 42, 52]); +V.set("animate_exports/images_overworld/ArcheryTree2Art.png", [3, 3186, 177, 52, 60]); +V.set("animate_exports/images_overworld/ArcheryTree3Art.png", [3, 3196, 2532, 46, 60]); +V.set("animate_exports/images_overworld/ArcheryW_01.png", [3, 2491, 2763, 213, 192]); +V.set("animate_exports/images_overworld/ArcheryW_02.png", [3, 1448, 2847, 212, 192]); +V.set("animate_exports/images_overworld/ArcheryW_03.png", [3, 1859, 3097, 134, 144]); +V.set("animate_exports/images_overworld/ArcheryW_04.png", [3, 1232, 2767, 213, 192]); +V.set("animate_exports/images_overworld/ArcheyBoatDoor1Art.png", [3, 919, 3342, 19, 21]); +V.set("animate_exports/images_overworld/ArrowCollectorArt1.png", [3, 1259, 3379, 14, 21]); +V.set("animate_exports/images_overworld/ArrowCollectorArt2.png", [3, 2849, 3378, 14, 23]); +V.set("animate_exports/images_overworld/BakeryArt.png", [3, 1996, 3206, 59, 66]); +V.set("animate_exports/images_overworld/BambooTree1Art.png", [3, 135, 3189, 64, 108]); +V.set("animate_exports/images_overworld/BambooTree2Art.png", [3, 2620, 1327, 103, 76]); +V.set("animate_exports/images_overworld/BambooTree3Art.png", [3, 1232, 2627, 52, 84]); +V.set("animate_exports/images_overworld/BanyanTreeTop.png", [3, 2035, 1835, 137, 72]); +V.set("animate_exports/images_overworld/BanyanTreeTrunk.png", [3, 1319, 2962, 118, 45]); +V.set("animate_exports/images_overworld/BeachDoorArt.png", [3, 3202, 3129, 16, 15]); +V.set("animate_exports/images_overworld/BeachWaveArt2.png", [3, 38, 3367, 16, 16]); +V.set("animate_exports/images_overworld/BirdIdleSArt.png", [3, 2417, 3378, 14, 24]); +V.set("animate_exports/images_overworld/Bitmap724.png", [3, 1333, 3378, 14, 48]); +V.set("animate_exports/images_overworld/Bitmap7241.png", [3, 1333, 3378, 14, 48]); +V.set("animate_exports/images_overworld/Bitmap827.png", [3, 2789, 3221, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap828.png", [3, 1682, 3223, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap829.png", [3, 1733, 3223, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap830.png", [3, 2982, 3229, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap831.png", [3, 2634, 3230, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap832.png", [3, 2685, 3230, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap833.png", [3, 2736, 3230, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap834.png", [3, 2362, 3233, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap836.png", [3, 2294, 3237, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap837.png", [3, 1399, 3239, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap838.png", [3, 907, 3240, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap839.png", [3, 269, 3242, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap840.png", [3, 320, 3242, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap841.png", [3, 0, 3243, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap842.png", [3, 958, 3244, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap843.png", [3, 1009, 3244, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap844.png", [3, 1855, 3244, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap845.png", [3, 1906, 3244, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap846.png", [3, 1784, 3245, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap847.png", [3, 2226, 3253, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap848.png", [3, 202, 3255, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap849.png", [3, 2840, 3255, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap852.png", [3, 2891, 3255, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap853.png", [3, 2058, 3257, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap854.png", [3, 3033, 3257, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap855.png", [3, 3084, 3257, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap856.png", [3, 3135, 3257, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap857.png", [3, 3186, 3257, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap858.png", [3, 1060, 3259, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap859.png", [3, 1111, 3259, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap860.png", [3, 847, 3260, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap861.png", [3, 1301, 3261, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap862.png", [3, 1619, 3262, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap863.png", [3, 475, 3264, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap864.png", [3, 526, 3264, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap865.png", [3, 577, 3264, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap866.png", [3, 1162, 3264, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap867.png", [3, 1213, 3264, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap868.png", [3, 628, 3266, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap869.png", [3, 1552, 3266, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap870.png", [3, 2413, 3268, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap871.png", [3, 2464, 3268, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap872.png", [3, 2515, 3268, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap873.png", [3, 2566, 3268, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap874.png", [3, 2787, 3272, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap875.png", [3, 679, 3273, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap876.png", [3, 730, 3273, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap877.png", [3, 1670, 3274, 48, 48]); +V.set("animate_exports/images_overworld/Bitmap895copy.png", [3, 3067, 3308, 32, 32]); +V.set("animate_exports/images_overworld/Bitmap896copy.png", [3, 3205, 1740, 37, 32]); +V.set("animate_exports/images_overworld/Bitmap897copy.png", [3, 1319, 3010, 37, 28]); +V.set("animate_exports/images_overworld/Bitmap898copy.png", [3, 1596, 3089, 40, 31]); +V.set("animate_exports/images_overworld/Bitmap899.png", [3, 898, 3291, 43, 48]); +V.set("animate_exports/images_overworld/Bitmap900.png", [3, 2226, 3113, 40, 48]); +V.set("animate_exports/images_overworld/Bitmap901.png", [3, 475, 3143, 35, 48]); +V.set("animate_exports/images_overworld/Bitmap902.png", [3, 3170, 3308, 31, 34]); +V.set("animate_exports/images_overworld/Bitmap903.png", [3, 2799, 3323, 26, 32]); +V.set("animate_exports/images_overworld/Bitmap904.png", [3, 108, 3359, 16, 96]); +V.set("animate_exports/images_overworld/Bitmap904copy.png", [3, 2859, 2763, 25, 35]); +V.set("animate_exports/images_overworld/Bitmap905.png", [3, 2873, 3306, 32, 40]); +V.set("animate_exports/images_overworld/Bitmap906.png", [3, 637, 3359, 16, 96]); +V.set("animate_exports/images_overworld/Bitmap906copy.png", [3, 475, 3194, 35, 48]); +V.set("animate_exports/images_overworld/Bitmap907.png", [3, 637, 3359, 16, 96]); +V.set("animate_exports/images_overworld/Bitmap907copy.png", [3, 1913, 3295, 35, 48]); +V.set("animate_exports/images_overworld/Bitmap908.png", [3, 1748, 3359, 16, 96]); +V.set("animate_exports/images_overworld/Bitmap908copy.png", [3, 681, 1679, 38, 48]); +V.set("animate_exports/images_overworld/Bitmap909.png", [3, 344, 3293, 38, 40]); +V.set("animate_exports/images_overworld/Bitmap910.png", [3, 926, 2858, 35, 38]); +V.set("animate_exports/images_overworld/Bitmap911.png", [3, 3102, 3308, 31, 48]); +V.set("animate_exports/images_overworld/Bitmap912.png", [3, 1201, 2906, 26, 48]); +V.set("animate_exports/images_overworld/Bitmap913.png", [3, 1450, 3239, 21, 34]); +V.set("animate_exports/images_overworld/Bitmap914.png", [3, 441, 3327, 25, 30]); +V.set("animate_exports/images_overworld/BlueArrowArt.png", [3, 1739, 754, 18, 7]); +V.set("animate_exports/images_overworld/BlueDoorEntranceArt1.png", [3, 1446, 1789, 14, 11]); +V.set("animate_exports/images_overworld/BlueDoorEntranceArt2.png", [3, 1463, 1789, 14, 11]); +V.set("animate_exports/images_overworld/BlueHQDoorArt.png", [3, 57, 3367, 16, 16]); +V.set("animate_exports/images_overworld/BlueHQStatuesArt.png", [3, 487, 275, 92, 16]); +V.set("animate_exports/images_overworld/BlueTeamHQArt.png", [3, 2358, 2004, 136, 113]); +V.set("animate_exports/images_overworld/BookSignArt.png", [3, 2678, 3332, 21, 22]); +V.set("animate_exports/images_overworld/BottleLavaArt.png", [3, 2727, 1122, 7, 13]); +V.set("animate_exports/images_overworld/BottleWaterArt.png", [3, 2727, 1138, 7, 13]); +V.set("animate_exports/images_overworld/BoundBitmap.png", xm); +V.set("animate_exports/images_overworld/Branch1.png", [3, 329, 3121, 19, 18]); +V.set("animate_exports/images_overworld/Bridgefloor.png", [3, 919, 3366, 16, 16]); +V.set("animate_exports/images_overworld/BuildingARoofArt.png", [3, 2226, 3170, 65, 80]); +V.set("animate_exports/images_overworld/BuildingHouseDoorArt.png", [3, 1292, 1895, 93, 88]); +V.set("animate_exports/images_overworld/BuildingShadowArt.png", [3, 1787, 3127, 66, 53]); +V.set("animate_exports/images_overworld/Bush.png", [3, 2666, 2958, 33, 21]); +V.set("animate_exports/images_overworld/CatBoatArt1.png", [3, 944, 3295, 42, 41]); +V.set("animate_exports/images_overworld/CatBoatArt2.png", [3, 45, 3295, 42, 48]); +V.set("animate_exports/images_overworld/CaveEntranceArt.png", [3, 591, 2831, 26, 26]); +V.set("animate_exports/images_overworld/ChaletHouseArt.png", [3, 2982, 3148, 83, 78]); +V.set("animate_exports/images_overworld/CharacterShadowArt.png", ym); +V.set("animate_exports/images_overworld/CherryBlossomGlow.png", [3, 0, 2459, 320, 180]); +V.set("animate_exports/images_overworld/CityBuilding6Art.png", [3, 2469, 3134, 92, 80]); +V.set("animate_exports/images_overworld/CityBuilding7Art.png", [3, 2294, 3170, 65, 64]); +V.set("animate_exports/images_overworld/ClimbIconArt.png", [3, 2727, 1074, 11, 11]); +V.set("animate_exports/images_overworld/ClimbingDojoArt.png", [3, 2854, 3108, 125, 144]); +V.set("animate_exports/images_overworld/ClimbingDojoDoorArt.png", [3, 3221, 3129, 16, 15]); +V.set("animate_exports/images_overworld/ClimbingHouse1Art.png", [3, 1458, 3042, 135, 121]); +V.set("animate_exports/images_overworld/ClimbingN_01.png", [3, 391, 764, 388, 176]); +V.set("animate_exports/images_overworld/ClimbingN_02.png", [3, 2117, 3119, 106, 176]); +V.set("animate_exports/images_overworld/ClimbingN_03.png", [3, 0, 750, 388, 177]); +V.set("animate_exports/images_overworld/ClimbingN_04.png", [3, 805, 3027, 106, 177]); +V.set("animate_exports/images_overworld/ClimbingN_05.png", [3, 1571, 765, 388, 175]); +V.set("animate_exports/images_overworld/ClimbingN_06.png", [3, 788, 727, 389, 176]); +V.set("animate_exports/images_overworld/ClimbingS_01.png", [3, 394, 585, 391, 176]); +V.set("animate_exports/images_overworld/ClimbingS_02.png", [3, 2549, 709, 391, 175]); +V.set("animate_exports/images_overworld/ClimbingS_03.png", [3, 930, 547, 391, 177]); +V.set("animate_exports/images_overworld/ClimbingS_04.png", [3, 0, 570, 391, 177]); +V.set("animate_exports/images_overworld/ClimbingS_05.png", [3, 1761, 586, 391, 176]); +V.set("animate_exports/images_overworld/ClimbingS_06.png", [3, 2155, 675, 391, 176]); +V.set("animate_exports/images_overworld/ClimbingSignArt.png", [3, 3067, 3343, 19, 18]); +V.set("animate_exports/images_overworld/CrabArmsArt1.png", [3, 1571, 731, 114, 31]); +V.set("animate_exports/images_overworld/CrabArmsArt2.png", [3, 3126, 1189, 114, 32]); +V.set("animate_exports/images_overworld/CrabArmsArt3.png", [3, 2352, 854, 114, 30]); +V.set("animate_exports/images_overworld/CrabArmsArt4.png", [3, 3126, 1224, 114, 30]); +V.set("animate_exports/images_overworld/CrabBodyArt.png", [3, 3186, 121, 54, 35]); +V.set("animate_exports/images_overworld/CrabBuildingArt1.png", [3, 3126, 1073, 114, 113]); +V.set("animate_exports/images_overworld/CrabSpriteArt1.png", [3, 2962, 3361, 16, 23]); +V.set("animate_exports/images_overworld/CrabSpriteArt2.png", [3, 2262, 1616, 12, 18]); +V.set("animate_exports/images_overworld/DangoAntennaBuildingArt.png", [3, 3132, 925, 108, 123]); +V.set("animate_exports/images_overworld/DarkPeirArt.png", [3, 1636, 3366, 16, 16]); +V.set("animate_exports/images_overworld/DarkSandWaveArt1.png", [3, 127, 3365, 16, 17]); +V.set("animate_exports/images_overworld/DarkSandWaveArt2.png", [3, 146, 3365, 16, 17]); +V.set("animate_exports/images_overworld/DarkSandWaveArt3.png", [3, 884, 3368, 16, 16]); +V.set("animate_exports/images_overworld/DarkSandWaveArt4.png", [3, 2577, 3368, 16, 16]); +V.set("animate_exports/images_overworld/DarkSandWaveArt5.png", [3, 1192, 3369, 16, 16]); +V.set("animate_exports/images_overworld/DarkSandWaveArt6.png", [3, 532, 3378, 15, 15]); +V.set("animate_exports/images_overworld/DogIdleSArt.png", [3, 2434, 3378, 14, 24]); +V.set("animate_exports/images_overworld/DoorBubbleArt1.png", [3, 1899, 3379, 14, 20]); +V.set("animate_exports/images_overworld/DoorBubbleArt2.png", [3, 2673, 3378, 14, 24]); +V.set("animate_exports/images_overworld/ExclaimationMarkBubbleArt1.png", ql); +V.set("animate_exports/images_overworld/Exterior_Hut_002.png", [3, 2362, 3170, 65, 60]); +V.set("animate_exports/images_overworld/FanArt1.png", [3, 656, 3380, 14, 17]); +V.set("animate_exports/images_overworld/FanArt2.png", [3, 673, 3380, 14, 17]); +V.set("animate_exports/images_overworld/FicusTree.png", [3, 914, 3169, 73, 68]); +V.set("animate_exports/images_overworld/Frond.png", rl); +V.set("animate_exports/images_overworld/FukuroBodyArt1.png", [3, 1996, 3119, 118, 84]); +V.set("animate_exports/images_overworld/FukuroBodyArt2.png", [3, 2035, 1910, 128, 79]); +V.set("animate_exports/images_overworld/FukuroHeadArt1.png", [3, 1840, 1493, 61, 28]); +V.set("animate_exports/images_overworld/FukuroHeadArt2.png", [3, 2278, 1282, 61, 30]); +V.set("animate_exports/images_overworld/FukuroHeadArt3.png", [3, 2549, 675, 64, 27]); +V.set("animate_exports/images_overworld/FukuroHeadArt4.png", [3, 1866, 2681, 58, 38]); +V.set("animate_exports/images_overworld/FukuroHeadArt5.png", [3, 3186, 0, 55, 53]); +V.set("animate_exports/images_overworld/FukuroHeadArt6.png", [3, 1066, 1489, 61, 29]); +V.set("animate_exports/images_overworld/GlassDoorArt.png", [3, 550, 3379, 15, 15]); +V.set("animate_exports/images_overworld/GlassDoorArt2.png", [3, 496, 3378, 15, 16]); +V.set("animate_exports/images_overworld/Grass1DiagonalCornerEdge1Art.png", [3, 475, 3245, 16, 15]); +V.set("animate_exports/images_overworld/GreenTeamHWArt.png", [3, 3126, 1257, 112, 58]); +V.set("animate_exports/images_overworld/HalfPavement1Art.png", [3, 2318, 1315, 16, 8]); +V.set("animate_exports/images_overworld/HotSpringTowelArt1.png", [3, 521, 294, 10, 4]); +V.set("animate_exports/images_overworld/InariArt2.png", Am); +V.set("animate_exports/images_overworld/InstructionBuildingArt1.png", [3, 788, 585, 137, 133]); +V.set("animate_exports/images_overworld/KappaArt.png", Bm); +V.set("animate_exports/images_overworld/KappaArt2.png", Cm); +V.set("animate_exports/images_overworld/KarasuArt.png", Dm); +V.set("animate_exports/images_overworld/KarasuArt2.png", [3, 134, 3342, 20, 20]); +V.set("animate_exports/images_overworld/KijimunaIdleArt1.png", Em); +V.set("animate_exports/images_overworld/KijimunaIdleArt2.png", Fm); +V.set("animate_exports/images_overworld/Koma1Art11.png", [3, 3066, 3364, 16, 18]); +V.set("animate_exports/images_overworld/Koma1Art2.png", Gm); +V.set("animate_exports/images_overworld/Koma2Art1.png", Hm); +V.set("animate_exports/images_overworld/Koma2Art2.png", sl); +V.set("animate_exports/images_overworld/LArgeMountainBottomEdgeWaterArt1.png", [3, 2943, 873, 48, 8]); +V.set("animate_exports/images_overworld/LArgeWater2Art3.png", [3, 1721, 3274, 48, 48]); +V.set("animate_exports/images_overworld/LanternLightArt1.png", [3, 3232, 583, 10, 10]); +V.set("animate_exports/images_overworld/LanternLightArt2.png", [3, 3232, 664, 9, 8]); +V.set("animate_exports/images_overworld/LanternStringBlueArt.png", tl); +V.set("animate_exports/images_overworld/LanternStringGreenArt.png", ul); +V.set("animate_exports/images_overworld/LanternStringRedArt.png", vl); +V.set("animate_exports/images_overworld/LanternStringWhiteArt.png", [3, 1389, 1748, 103, 38]); +V.set("animate_exports/images_overworld/LanternStringYellowArt.png", wl); +V.set("animate_exports/images_overworld/LargeGardenGrassBottomEdgeArt.png", [3, 2994, 873, 48, 8]); +V.set("animate_exports/images_overworld/LargeGrass1Side1Art.png", [3, 2469, 2890, 18, 48]); +V.set("animate_exports/images_overworld/LargeHotSpringArt1.png", [3, 1957, 3275, 48, 48]); +V.set("animate_exports/images_overworld/LargeHotSpringArt2.png", Im); +V.set("animate_exports/images_overworld/LargeHotSpringArt3.png", Jm); +V.set("animate_exports/images_overworld/LargeLavaArt.png", xl); +V.set("animate_exports/images_overworld/LargeLavaArt2.png", yl); +V.set("animate_exports/images_overworld/LargeMountainBottomEdgeWaterArt2.png", [3, 3045, 873, 48, 8]); +V.set("animate_exports/images_overworld/LargeVolcanoFloorBottomEdgeArt.png", [3, 1688, 754, 48, 6]); +V.set("animate_exports/images_overworld/LargeWa.png", [3, 781, 3280, 48, 48]); +V.set("animate_exports/images_overworld/LargeWater1Art5.png", Km); +V.set("animate_exports/images_overworld/LargeWater2Art1.png", [3, 2942, 3280, 48, 48]); +V.set("animate_exports/images_overworld/LargeWater3Art1.png", [3, 781, 3280, 48, 48]); +V.set("animate_exports/images_overworld/LargeWater3Art2.png", [3, 2617, 3281, 48, 48]); +V.set("animate_exports/images_overworld/Lava1Waterfall1Art2.png", zl); +V.set("animate_exports/images_overworld/Lava1Waterfall1Art3.png", Al); +V.set("animate_exports/images_overworld/Lava1Waterfall1Art4.png", Bl); +V.set("animate_exports/images_overworld/Lava1Waterfall1HighlightArt1.png", Cl); +V.set("animate_exports/images_overworld/Lava1Waterfall1HighlightArt2.png", Dl); +V.set("animate_exports/images_overworld/Lava1Waterfall1HighlightArt3.png", El); +V.set("animate_exports/images_overworld/Lava1Waterfall1HighlightArt4.png", Fl); +V.set("animate_exports/images_overworld/Lava1WaterfallArt1.png", Gl); +V.set("animate_exports/images_overworld/LavafallBottomArt1.png", Hl); +V.set("animate_exports/images_overworld/LavafallBottomArt2.png", Il); +V.set("animate_exports/images_overworld/LavafallBottomArt3.png", Jl); +V.set("animate_exports/images_overworld/LavafallBottomArt4.png", Kl); +V.set("animate_exports/images_overworld/LeaderboardGlowArt.png", [3, 865, 2811, 66, 44]); +V.set("animate_exports/images_overworld/LeaderboardNoGlow2.png", [3, 1866, 2633, 68, 45]); +V.set("animate_exports/images_overworld/LightBeachWaveArt1.png", [3, 165, 3365, 16, 17]); +V.set("animate_exports/images_overworld/LightBeachWaveArt2.png", [3, 184, 3365, 16, 17]); +V.set("animate_exports/images_overworld/LightBeachWaveArt3.png", [3, 568, 3379, 15, 15]); +V.set("animate_exports/images_overworld/LightBeachWaveArt4.png", [3, 1296, 3372, 16, 16]); +V.set("animate_exports/images_overworld/LightBeachWaveArt5.png", [3, 1588, 3373, 16, 16]); +V.set("animate_exports/images_overworld/LightBeachWaveArt6.png", [3, 1607, 3373, 16, 16]); +V.set("animate_exports/images_overworld/LittleStoneHouseArt.png", [3, 690, 3380, 14, 16]); +V.set("animate_exports/images_overworld/LostPaddleArt.png", [3, 2073, 3380, 14, 16]); +V.set("animate_exports/images_overworld/LuckRollWArt3.png", [3, 2462, 2147, 18, 15]); +V.set("animate_exports/images_overworld/LuckyArrowArt.png", [3, 724, 1301, 18, 7]); +V.set("animate_exports/images_overworld/LuckyIdleEArt.png", Ll); +V.set("animate_exports/images_overworld/LuckyIdleNArt.png", Lm); +V.set("animate_exports/images_overworld/LuckyIdleS.png", [3, 1669, 3351, 18, 22]); +V.set("animate_exports/images_overworld/LuckyIdleSArt2.png", Mm); +V.set("animate_exports/images_overworld/LuckyIdleSArt3.png", Nm); +V.set("animate_exports/images_overworld/LuckyIdleWArt.png", Ml); +V.set("animate_exports/images_overworld/LuckyRoll1.png", [3, 460, 3378, 15, 19]); +V.set("animate_exports/images_overworld/LuckyRollE1.png", [3, 2261, 2330, 18, 15]); +V.set("animate_exports/images_overworld/LuckyRollE2.png", [3, 3220, 2236, 22, 20]); +V.set("animate_exports/images_overworld/LuckyRollEArt3.png", [3, 2282, 3364, 16, 19]); +V.set("animate_exports/images_overworld/LuckyRollEArt5.png", [3, 1528, 1474, 21, 13]); +V.set("animate_exports/images_overworld/LuckyRollNArt1.png", [3, 2888, 3377, 15, 20]); +V.set("animate_exports/images_overworld/LuckyRollNArt3.png", [3, 825, 3377, 15, 22]); +V.set("animate_exports/images_overworld/LuckyRollNArt4.png", [3, 514, 3378, 15, 16]); +V.set("animate_exports/images_overworld/LuckyRollS2.png", [3, 843, 3377, 15, 22]); +V.set("animate_exports/images_overworld/LuckyRollSArt2.png", [3, 3113, 2964, 14, 14]); +V.set("animate_exports/images_overworld/LuckyRollSArt3.png", [3, 2282, 2330, 18, 15]); +V.set("animate_exports/images_overworld/LuckyRollWArt1.png", [3, 3109, 1779, 21, 13]); +V.set("animate_exports/images_overworld/LuckyRollWArt2.png", [3, 2301, 3364, 16, 19]); +V.set("animate_exports/images_overworld/LuckyRollWArt4.png", [3, 3220, 2259, 22, 20]); +V.set("animate_exports/images_overworld/LuckyRollsNArt5.png", [3, 2941, 3357, 18, 16]); +V.set("animate_exports/images_overworld/LuckyStatueArt.png", [3, 2122, 765, 29, 58]); +V.set("animate_exports/images_overworld/LuckyWalkEArt1.png", Nl); +V.set("animate_exports/images_overworld/LuckyWalkEArt2.png", Ol); +V.set("animate_exports/images_overworld/LuckyWalkEArt3.png", Pl); +V.set("animate_exports/images_overworld/LuckyWalkEArt4.png", Ql); +V.set("animate_exports/images_overworld/LuckyWalkEArt5.png", Rl); +V.set("animate_exports/images_overworld/LuckyWalkEArt6.png", Sl); +V.set("animate_exports/images_overworld/LuckyWalkNArt1.png", Tl); +V.set("animate_exports/images_overworld/LuckyWalkNArt2.png", Ul); +V.set("animate_exports/images_overworld/LuckyWalkNArt3.png", Vl); +V.set("animate_exports/images_overworld/LuckyWalkNArt4.png", Wl); +V.set("animate_exports/images_overworld/LuckyWalkSArt1.png", Yl); +V.set("animate_exports/images_overworld/LuckyWalkSArt2.png", Zl); +V.set("animate_exports/images_overworld/LuckyWalkSArt3.png", $l); +V.set("animate_exports/images_overworld/LuckyWalkSArt4.png", Om); +V.set("animate_exports/images_overworld/LuckyWalkSArt5.png", am); +V.set("animate_exports/images_overworld/LuckyWalkSArt6.png", bm); +V.set("animate_exports/images_overworld/LuckyWalkSArt7.png", cm); +V.set("animate_exports/images_overworld/LuckyWalkSArt8.png", dm); +V.set("animate_exports/images_overworld/LuckyWalkWArt1.png", em); +V.set("animate_exports/images_overworld/LuckyWalkWArt2.png", fm); +V.set("animate_exports/images_overworld/LuckyWalkWArt3.png", gm); +V.set("animate_exports/images_overworld/LuckyWalkWArt4.png", hm); +V.set("animate_exports/images_overworld/LuckyWalkWArt5.png", im); +V.set("animate_exports/images_overworld/LuckyWalkWArt6.png", jm); +V.set("animate_exports/images_overworld/LuckyWalknArt5.png", Xl); +V.set("animate_exports/images_overworld/MapleTree.png", [3, 865, 2724, 96, 84]); +V.set("animate_exports/images_overworld/MapleTree2.png", [3, 787, 3207, 57, 70]); +V.set("animate_exports/images_overworld/MarathonE_01.png", [3, 2223, 303, 393, 183]); +V.set("animate_exports/images_overworld/MarathonE_02.png", [3, 2223, 489, 393, 183]); +V.set("animate_exports/images_overworld/MarathonE_03.png", [3, 2619, 524, 393, 182]); +V.set("animate_exports/images_overworld/MarathonE_04.png", [3, 1365, 546, 393, 182]); +V.set("animate_exports/images_overworld/MarathonIconArt.png", [3, 3232, 596, 10, 10]); +V.set("animate_exports/images_overworld/MarathonSignArt.png", [3, 0, 3345, 19, 18]); +V.set("animate_exports/images_overworld/MarathonW_01.png", [3, 1962, 854, 387, 184]); +V.set("animate_exports/images_overworld/MarathonW_02.png", [3, 2352, 887, 387, 184]); +V.set("animate_exports/images_overworld/MarathonW_03.png", [3, 2742, 887, 387, 183]); +V.set("animate_exports/images_overworld/MarathonW_04.png", [3, 782, 906, 387, 183]); +V.set("animate_exports/images_overworld/MediumDangoArt.png", [3, 2499, 1764, 91, 20]); +V.set("animate_exports/images_overworld/MediumLanternBlueArt.png", km); +V.set("animate_exports/images_overworld/MediumLanternGreenArt.png", lm); +V.set("animate_exports/images_overworld/MediumLanternRedArt.png", [3, 2413, 3233, 12, 17]); +V.set("animate_exports/images_overworld/MediumLanternWhiteArt.png", [3, 1301, 3233, 12, 17]); +V.set("animate_exports/images_overworld/MediumLanternYellowArt.png", mm); +V.set("animate_exports/images_overworld/ModernBuilding1Art.png", [3, 297, 3143, 87, 96]); +V.set("animate_exports/images_overworld/ModernBuilding2Art.png", [3, 3137, 360, 105, 81]); +V.set("animate_exports/images_overworld/ModernBuilding3Art.png", [3, 1389, 1529, 107, 124]); +V.set("animate_exports/images_overworld/ModernBuilding3Art111.png", [3, 1389, 1529, 107, 124]); +V.set("animate_exports/images_overworld/ModernCityBuildingCluster2Art1.png", [3, 514, 3024, 145, 237]); +V.set("animate_exports/images_overworld/ModernCityBuildingClusterArt1.png", [3, 387, 3143, 85, 181]); +V.set("animate_exports/images_overworld/MomotaroArt2.png", [3, 2873, 3349, 18, 25]); +V.set("animate_exports/images_overworld/MomotaroIdleSArt.png", [3, 865, 3361, 16, 26]); +V.set("animate_exports/images_overworld/MonkeyArt1.png", [3, 1199, 3193, 18, 17]); +V.set("animate_exports/images_overworld/MonkeyArt2.png", [3, 3024, 3345, 19, 16]); +V.set("animate_exports/images_overworld/MonkeyIsleSArt.png", [3, 2828, 3356, 18, 20]); +V.set("animate_exports/images_overworld/MonkeyWaterArt1.png", [3, 3170, 3345, 19, 16]); +V.set("animate_exports/images_overworld/MonkeyWaterArt2.png", [3, 2491, 2741, 20, 16]); +V.set("animate_exports/images_overworld/MossyRockArt.png", [3, 1144, 1269, 24, 11]); +V.set("animate_exports/images_overworld/MountainBottomEdgeWaterArt1.png", [3, 1408, 1789, 16, 10]); +V.set("animate_exports/images_overworld/MountainBottomEdgeWaterArt2.png", [3, 1427, 1789, 16, 10]); +V.set("animate_exports/images_overworld/NPCBlackWolfieFrame1.png", [3, 1276, 3379, 14, 21]); +V.set("animate_exports/images_overworld/NPCBlackWolfieFrame2.png", [3, 1459, 3365, 16, 20]); +V.set("animate_exports/images_overworld/NPCFroggyframe1.png", [3, 385, 3327, 25, 33]); +V.set("animate_exports/images_overworld/NPCFroggyframe2.png", [3, 2770, 3323, 26, 33]); +V.set("animate_exports/images_overworld/NPCKijiDad.png", [3, 2352, 3335, 20, 27]); +V.set("animate_exports/images_overworld/NPCKijiDadframe2.png", [3, 363, 1174, 22, 25]); +V.set("animate_exports/images_overworld/NPCKijiKid.png", [3, 3220, 2164, 22, 21]); +V.set("animate_exports/images_overworld/NPCKijiKidframe2.png", [3, 3220, 2282, 22, 20]); +V.set("animate_exports/images_overworld/NPCRacerAframe1.png", rm); +V.set("animate_exports/images_overworld/NPCRacerAframe2.png", sm); +V.set("animate_exports/images_overworld/NPCRacerBframe1.png", tm); +V.set("animate_exports/images_overworld/NPCRacerBframe2.png", um); +V.set("animate_exports/images_overworld/NPCWolfieFrame1.png", vm); +V.set("animate_exports/images_overworld/NPCWolfieFrame2.png", wm); +V.set("animate_exports/images_overworld/NPCmomotarodadframe1.png", nm); +V.set("animate_exports/images_overworld/NPCmomotarodadframe2.png", om); +V.set("animate_exports/images_overworld/NPCmomotaromomframe1.png", pm); +V.set("animate_exports/images_overworld/NPCmomotaromomframe2.png", qm); +V.set("animate_exports/images_overworld/NewLArgeWater1Art1.png", [3, 2430, 3217, 48, 48]); +V.set("animate_exports/images_overworld/NewLargeWater1Art2.png", Pm); +V.set("animate_exports/images_overworld/NewLargeWater2Art.png", [3, 2668, 3281, 48, 48]); +V.set("animate_exports/images_overworld/NoodleShopArt.png", [3, 3145, 1779, 96, 128]); +V.set("animate_exports/images_overworld/NoodleSignArt.png", [3, 2702, 3332, 21, 22]); +V.set("animate_exports/images_overworld/OctupusIdleArt1.png", [3, 1254, 3357, 18, 19]); +V.set("animate_exports/images_overworld/OctupusIdleArt2.png", [3, 2678, 3357, 18, 18]); +V.set("animate_exports/images_overworld/OldBuildingArt1.png", [3, 3145, 1910, 96, 128]); +V.set("animate_exports/images_overworld/OldBuildingArt2.png", [3, 2564, 3134, 92, 80]); +V.set("animate_exports/images_overworld/OldBuildingArt3.png", [3, 198, 2905, 65, 87]); +V.set("animate_exports/images_overworld/OldBuildingArt4.png", [3, 1221, 3122, 93, 88]); +V.set("animate_exports/images_overworld/OldBuildingArt5.png", [3, 1317, 3158, 79, 100]); +V.set("animate_exports/images_overworld/OldDoorArt.png", [3, 494, 3245, 16, 15]); +V.set("animate_exports/images_overworld/OldHouseRoofBackArt1.png", [3, 3113, 2913, 120, 48]); +V.set("animate_exports/images_overworld/OldHouseWallDoorOpenArt.png", [3, 3137, 444, 104, 31]); +V.set("animate_exports/images_overworld/OldHouseWallOpenDoorArt.png", [3, 3145, 2130, 80, 31]); +V.set("animate_exports/images_overworld/OldHouseWallWindowsArt1.png", [3, 3004, 2310, 80, 31]); +V.set("animate_exports/images_overworld/OldRoofFrontArt1.png", [3, 631, 263, 120, 27]); +V.set("animate_exports/images_overworld/OniIslandRock1Art.png", [3, 755, 3331, 25, 24]); +V.set("animate_exports/images_overworld/Pagoda.png", [3, 3068, 3148, 80, 106]); +V.set("animate_exports/images_overworld/PeachPowerupArt.png", [3, 269, 3189, 23, 20]); +V.set("animate_exports/images_overworld/PineTree2Art.png", [3, 2327, 3359, 16, 30]); +V.set("animate_exports/images_overworld/PineTree3Art.png", [3, 1192, 3315, 28, 51]); +V.set("animate_exports/images_overworld/PineTreeArt1.png", [3, 1603, 3313, 30, 57]); +V.set("animate_exports/images_overworld/PingPongIconArt.png", [3, 3232, 650, 9, 11]); +V.set("animate_exports/images_overworld/PingPongTable1Art.png", [3, 1065, 3193, 64, 63]); +V.set("animate_exports/images_overworld/Plant1.png", [3, 3033, 3229, 29, 20]); +V.set("animate_exports/images_overworld/PlayButtonArt1.png", [3, 3220, 2188, 22, 21]); +V.set("animate_exports/images_overworld/PongN_01.png", [3, 363, 1250, 358, 240]); +V.set("animate_exports/images_overworld/PongN_02.png", [3, 724, 1315, 357, 171]); +V.set("animate_exports/images_overworld/PongN_03.png", [3, 1557, 1250, 358, 240]); +V.set("animate_exports/images_overworld/PongN_04.png", [3, 1144, 1286, 357, 240]); +V.set("animate_exports/images_overworld/PongS_01.png", [3, 342, 1493, 336, 241]); +V.set("animate_exports/images_overworld/PongS_02.png", [3, 1172, 1033, 382, 250]); +V.set("animate_exports/images_overworld/PongS_03.png", [3, 2727, 1326, 349, 161]); +V.set("animate_exports/images_overworld/PongS_04.png", [3, 2742, 1073, 381, 250]); +V.set("animate_exports/images_overworld/PongS_05.png", [3, 1958, 1041, 382, 238]); +V.set("animate_exports/images_overworld/PongS_06.png", [3, 2343, 1074, 381, 250]); +V.set("animate_exports/images_overworld/PongTableBlackArt.png", [3, 1132, 3193, 64, 63]); +V.set("animate_exports/images_overworld/PongTableRedArt.png", [3, 1552, 3200, 64, 63]); +V.set("animate_exports/images_overworld/PortalCircle.png", Qm); +V.set("animate_exports/images_overworld/PortalGlowArt.png", Rm); +V.set("animate_exports/images_overworld/PortalSparklesArt1.png", Sm); +V.set("animate_exports/images_overworld/PortalSparklesArt2.png", Tm); +V.set("animate_exports/images_overworld/PortalSparklesArt3.png", Um); +V.set("animate_exports/images_overworld/Powerline1Art.png", [3, 3186, 240, 48, 17]); +V.set("animate_exports/images_overworld/Powerline2Art.png", [3, 3193, 2310, 48, 32]); +V.set("animate_exports/images_overworld/PowerlinePoleArt.png", [3, 2548, 3319, 26, 102]); +V.set("animate_exports/images_overworld/QuestCoachShoesArt.png", [3, 1504, 1474, 21, 15]); +V.set("animate_exports/images_overworld/QuestConstructionWorkerArt.png", [3, 2244, 3364, 16, 20]); +V.set("animate_exports/images_overworld/RailroadCrossingPoleArt.png", [3, 0, 3184, 65, 56]); +V.set("animate_exports/images_overworld/RailroadCrsssLightGlow1.png", [3, 683, 293, 28, 6]); +V.set("animate_exports/images_overworld/RainBoyIdleArt1.png", [3, 668, 3355, 18, 22]); +V.set("animate_exports/images_overworld/RainBoyIdleArt2.png", [3, 3136, 3355, 18, 21]); +V.set("animate_exports/images_overworld/RainLoopArt1.png", [3, 2719, 3281, 48, 48]); +V.set("animate_exports/images_overworld/RainLoopArt2.png", [3, 2345, 3284, 48, 48]); +V.set("animate_exports/images_overworld/RampRail1Art.png", [3, 1557, 1033, 8, 31]); +V.set("animate_exports/images_overworld/RedBridgeRail1Art.png", [3, 3157, 3364, 16, 18]); +V.set("animate_exports/images_overworld/RedCircleArt.png", [3, 3220, 2212, 22, 21]); +V.set("animate_exports/images_overworld/RedGate1Art.png", [3, 2789, 3117, 61, 49]); +V.set("animate_exports/images_overworld/RedLanternArt.png", [3, 3228, 2816, 14, 38]); +V.set("animate_exports/images_overworld/RedOniArt1.png", [3, 134, 3300, 34, 39]); +V.set("animate_exports/images_overworld/RedOniArt2.png", [3, 470, 2889, 36, 38]); +V.set("animate_exports/images_overworld/RedRoofBuilding.png", [3, 1448, 2767, 121, 76]); +V.set("animate_exports/images_overworld/RedTeamHQExterior.png", [3, 1319, 3042, 136, 113]); +V.set("animate_exports/images_overworld/RedTeamHQStatues.png", [3, 1615, 1987, 48, 20]); +V.set("animate_exports/images_overworld/RockPeak1Art.png", [3, 681, 1542, 39, 44]); +V.set("animate_exports/images_overworld/RockPeak2Art.png", [3, 2768, 3359, 16, 27]); +V.set("animate_exports/images_overworld/RockSideEdge1Art.png", [3, 1557, 1090, 7, 48]); +V.set("animate_exports/images_overworld/RockTop1NoShadowArt.png", [3, 2184, 3298, 34, 44]); +V.set("animate_exports/images_overworld/RockTopEdge1Art.png", [3, 3132, 1051, 48, 11]); +V.set("animate_exports/images_overworld/Roof1FullArt.png", [3, 2707, 2809, 121, 48]); +V.set("animate_exports/images_overworld/Roof2FullArt.png", [3, 1389, 1656, 106, 48]); +V.set("animate_exports/images_overworld/RugbyBirdArt2.png", [3, 689, 3355, 18, 22]); +V.set("animate_exports/images_overworld/RugbyDogArt2.png", [3, 604, 3363, 16, 21]); +V.set("animate_exports/images_overworld/RugbyDojoArt.png", [3, 2666, 3117, 120, 110]); +V.set("animate_exports/images_overworld/RugbyDojoDoorArt.png", [3, 279, 3377, 16, 15]); +V.set("animate_exports/images_overworld/RugbyE_01.png", [3, 2271, 2890, 195, 277]); +V.set("animate_exports/images_overworld/RugbyE_02.png", [3, 2469, 2958, 194, 173]); +V.set("animate_exports/images_overworld/RugbyE_03.png", [3, 0, 2905, 195, 276]); +V.set("animate_exports/images_overworld/RugbyE_04.png", [3, 926, 2906, 194, 260]); +V.set("animate_exports/images_overworld/RugbyIconArt.png", [3, 3229, 1565, 13, 8]); +V.set("animate_exports/images_overworld/RugbyMonkeyArt2.png", [3, 2514, 2741, 19, 19]); +V.set("animate_exports/images_overworld/RugbySignArt.png", [3, 22, 3345, 19, 18]); +V.set("animate_exports/images_overworld/RugbyW_01.png", [3, 2224, 2694, 264, 193]); +V.set("animate_exports/images_overworld/RugbyW_02.png", [3, 1599, 2567, 264, 277]); +V.set("animate_exports/images_overworld/RugbyW_03.png", [3, 0, 2642, 264, 260]); +V.set("animate_exports/images_overworld/RugbyW_04.png", [3, 965, 2627, 264, 276]); +V.set("animate_exports/images_overworld/RyugujoPart1.png", [3, 969, 1741, 93, 93]); +V.set("animate_exports/images_overworld/RyugujoPart2.png", [3, 1938, 2018, 93, 93]); +V.set("animate_exports/images_overworld/RyugujoPart3.png", [3, 1692, 3127, 92, 93]); +V.set("animate_exports/images_overworld/RyugujoPart4.png", [3, 2261, 2187, 93, 93]); +V.set("animate_exports/images_overworld/SakteDojoArt.png", [3, 662, 3027, 140, 174]); +V.set("animate_exports/images_overworld/Sand2WaveArt.png", [3, 203, 3365, 16, 17]); +V.set("animate_exports/images_overworld/Sand2WaveArt2.png", [3, 3229, 1505, 13, 13]); +V.set("animate_exports/images_overworld/Sand2WaveArt3.png", [3, 1026, 3375, 16, 16]); +V.set("animate_exports/images_overworld/Sand2WaveArt4.png", [3, 312, 3376, 16, 16]); +V.set("animate_exports/images_overworld/ScrollRotateArt0.png", [3, 3130, 2964, 14, 14]); +V.set("animate_exports/images_overworld/ScrollRotateArt1.png", [3, 3232, 519, 10, 14]); +V.set("animate_exports/images_overworld/ScrollRotateArt2.png", [3, 2727, 1182, 6, 14]); +V.set("animate_exports/images_overworld/ScrollRotateArt3.png", [3, 3232, 536, 10, 14]); +V.set("animate_exports/images_overworld/ScrollRotateArt4.png", [3, 3147, 2964, 14, 14]); +V.set("animate_exports/images_overworld/ScrollRotateArt5.png", [3, 3232, 553, 10, 14]); +V.set("animate_exports/images_overworld/ScrollRotateArt6.png", [3, 2727, 1105, 7, 14]); +V.set("animate_exports/images_overworld/ScrollRotateArt7.png", [3, 2208, 652, 11, 14]); +V.set("animate_exports/images_overworld/SignBubbleArt1.png", [3, 3152, 2846, 18, 12]); +V.set("animate_exports/images_overworld/SignBubbleArt2.png", [3, 3131, 2846, 18, 12]); +V.set("animate_exports/images_overworld/SignBubbleArt3.png", [3, 1572, 2830, 18, 12]); +V.set("animate_exports/images_overworld/SignBubbleArt4.png", [3, 2324, 2330, 18, 12]); +V.set("animate_exports/images_overworld/SignSideArt.png", [3, 2221, 3341, 20, 21]); +V.set("animate_exports/images_overworld/SignUpArt.png", [3, 2304, 3339, 20, 22]); +V.set("animate_exports/images_overworld/SkateDojoShadowArt.png", [3, 3015, 676, 112, 27]); +V.set("animate_exports/images_overworld/SkateDojoShadowArt2.png", [3, 3079, 1326, 157, 50]); +V.set("animate_exports/images_overworld/SkateE_01.png", [3, 0, 263, 484, 304]); +V.set("animate_exports/images_overworld/SkateE_02.png", [3, 389, 943, 384, 304]); +V.set("animate_exports/images_overworld/SkateE_03.png", [3, 1571, 943, 384, 304]); +V.set("animate_exports/images_overworld/SkateIconArt.png", [3, 3229, 1586, 13, 7]); +V.set("animate_exports/images_overworld/SkateSignArt.png", [3, 44, 3346, 19, 18]); +V.set("animate_exports/images_overworld/SkateW_01.png", [3, 724, 1489, 339, 249]); +V.set("animate_exports/images_overworld/SkateW_02.png", [3, 2620, 1490, 338, 307]); +V.set("animate_exports/images_overworld/SkateW_03.png", [3, 2278, 1327, 339, 308]); +V.set("animate_exports/images_overworld/SkateW_04.png", [3, 1504, 1493, 333, 308]); +V.set("animate_exports/images_overworld/SkateW_05.png", [3, 0, 1417, 339, 307]); +V.set("animate_exports/images_overworld/SkateW_06.png", [3, 1840, 1525, 333, 307]); +V.set("animate_exports/images_overworld/SleepyCatArt1.png", [3, 363, 1227, 22, 14]); +V.set("animate_exports/images_overworld/SleepyCatArt2.png", [3, 3085, 1779, 21, 16]); +V.set("animate_exports/images_overworld/SmallTree.png", [3, 1504, 1286, 49, 55]); +V.set("animate_exports/images_overworld/SmileSignArt.png", [3, 1557, 1169, 7, 7]); +V.set("animate_exports/images_overworld/SmokeEntranceArt1.png", [3, 3229, 1606, 12, 6]); +V.set("animate_exports/images_overworld/SmokeEntranceArt2.png", [3, 470, 3005, 17, 15]); +V.set("animate_exports/images_overworld/SmokeEntranceArt3.png", [3, 1040, 3341, 18, 31]); +V.set("animate_exports/images_overworld/SmokeEntranceArt4.png", [3, 1144, 1156, 24, 38]); +V.set("animate_exports/images_overworld/SmokeEntranceArt5.png", [3, 3204, 3308, 31, 30]); +V.set("animate_exports/images_overworld/SmokeEntranceArt6.png", [3, 2942, 3255, 28, 19]); +V.set("animate_exports/images_overworld/Snow1BottomEdge2Art.png", [3, 3215, 1690, 16, 7]); +V.set("animate_exports/images_overworld/SnowballArt.png", [3, 3196, 2690, 43, 27]); +V.set("animate_exports/images_overworld/Sparkle1.png", en); +V.set("animate_exports/images_overworld/Sparkle2.png", fn); +V.set("animate_exports/images_overworld/SpeechBubbleArt1.png", Vm); +V.set("animate_exports/images_overworld/SpeechBubbleArt2.png", Wm); +V.set("animate_exports/images_overworld/SpeechBubbleArt3.png", Xm); +V.set("animate_exports/images_overworld/SpeechBubbleArt4.png", Ym); +V.set("animate_exports/images_overworld/Stairs1Art.png", [3, 1655, 3376, 16, 16]); +V.set("animate_exports/images_overworld/StarSignArt.png", [3, 2534, 874, 9, 8]); +V.set("animate_exports/images_overworld/StatueArcheryArt.png", [3, 2518, 3319, 27, 66]); +V.set("animate_exports/images_overworld/StatueClimbingArt.png", [3, 1264, 3264, 32, 66]); +V.set("animate_exports/images_overworld/StatueMararthonArt.png", [3, 2488, 3319, 27, 69]); +V.set("animate_exports/images_overworld/StatuePingPongArt.png", [3, 2224, 2553, 33, 70]); +V.set("animate_exports/images_overworld/StatueRugbyArt.png", [3, 2147, 3298, 34, 64]); +V.set("animate_exports/images_overworld/StatueShadowArt.png", [3, 2908, 3306, 30, 68]); +V.set("animate_exports/images_overworld/StatueSkaeboardingArt.png", [3, 832, 3311, 30, 63]); +V.set("animate_exports/images_overworld/StatueSwimmingArt.png", [3, 1161, 3315, 28, 70]); +V.set("animate_exports/images_overworld/Stone3Art.png", [3, 1359, 3010, 37, 24]); +V.set("animate_exports/images_overworld/StoneGateArt.png", [3, 2789, 3169, 61, 49]); +V.set("animate_exports/images_overworld/StoneInariArt.png", [3, 2263, 3364, 16, 20]); +V.set("animate_exports/images_overworld/StoneLantern1Art.png", [3, 1108, 3340, 18, 34]); +V.set("animate_exports/images_overworld/SunkenGateArt.png", [3, 1596, 3042, 63, 44]); +V.set("animate_exports/images_overworld/SwimE_01.png", [3, 2580, 2532, 305, 228]); +V.set("animate_exports/images_overworld/SwimE_02.png", [3, 2666, 2982, 185, 132]); +V.set("animate_exports/images_overworld/SwimE_03.png", [3, 1292, 2536, 304, 228]); +V.set("animate_exports/images_overworld/SwimE_04.png", [3, 2888, 2532, 305, 188]); +V.set("animate_exports/images_overworld/SwimIconArt.png", [3, 3229, 1536, 13, 12]); +V.set("animate_exports/images_overworld/SwimSignArt.png", [3, 66, 3346, 19, 18]); +V.set("animate_exports/images_overworld/SwimW_01.png", [3, 2261, 2532, 316, 159]); +V.set("animate_exports/images_overworld/SwimW_02.png", [3, 646, 2473, 316, 248]); +V.set("animate_exports/images_overworld/SwimW_03.png", [3, 510, 2862, 208, 159]); +V.set("animate_exports/images_overworld/SwimW_04.png", [3, 323, 2548, 296, 200]); +V.set("animate_exports/images_overworld/TableTennisDojoStatueArt.png", hn); +V.set("animate_exports/images_overworld/TableTennisSignArt.png", [3, 2184, 3345, 19, 18]); +V.set("animate_exports/images_overworld/TargetArt2.png", [3, 541, 3350, 18, 25]); +V.set("animate_exports/images_overworld/TargetArt2copy.png", [3, 291, 3348, 18, 26]); +V.set("animate_exports/images_overworld/TennisRacketArt1.png", [3, 3230, 2345, 12, 61]); +V.set("animate_exports/images_overworld/TennisRacketArt2.png", [3, 1767, 3359, 16, 61]); +V.set("animate_exports/images_overworld/TennisRacketArt3.png", [3, 1144, 1092, 24, 61]); +V.set("animate_exports/images_overworld/TennisRacketArt4.png", [3, 2189, 2825, 31, 61]); +V.set("animate_exports/images_overworld/TennisRacketArt5.png", [3, 90, 3295, 41, 61]); +V.set("animate_exports/images_overworld/TennisRacketHandleArt.png", [3, 1666, 1987, 38, 24]); +V.set("animate_exports/images_overworld/ThreeScreenArt1.png", [3, 1144, 1197, 24, 22]); +V.set("animate_exports/images_overworld/ThreeScreenArt2.png", [3, 1028, 3310, 31, 28]); +V.set("animate_exports/images_overworld/ThreeScreenArt3.png", [3, 2090, 3332, 25, 23]); +V.set("animate_exports/images_overworld/ThreeScreenArt4.png", [3, 1315, 3378, 15, 15]); +V.set("animate_exports/images_overworld/ToichiCastleEntranceArt.png", [3, 1787, 3183, 65, 59]); +V.set("animate_exports/images_overworld/Town_people_fish_handicap_small_01.png", jn); +V.set("animate_exports/images_overworld/Town_people_fish_handicap_small_02.png", kn); +V.set("animate_exports/images_overworld/Town_people_grandpa_small_001.png", [3, 268, 3338, 20, 24]); +V.set("animate_exports/images_overworld/Town_people_grandpa_small_002.png", [3, 1398, 3338, 20, 24]); +V.set("animate_exports/images_overworld/Town_people_hare_small_01.png", ln); +V.set("animate_exports/images_overworld/Town_people_hare_small_02.png", mn); +V.set("animate_exports/images_overworld/Town_people_kid_small_001.png", nn); +V.set("animate_exports/images_overworld/Town_people_kid_small_002.png", on); +V.set("animate_exports/images_overworld/Town_people_nova_small_001.png", pn); +V.set("animate_exports/images_overworld/Town_people_nova_small_002.png", qn); +V.set("animate_exports/images_overworld/Town_people_pango_small_01.png", [3, 668, 3324, 26, 28]); +V.set("animate_exports/images_overworld/Town_people_pango_small_02.png", [3, 697, 3324, 26, 28]); +V.set("animate_exports/images_overworld/TrafficConeArt.png", [3, 1698, 3350, 18, 25]); +V.set("animate_exports/images_overworld/TrainCar1Art1.png", [3, 198, 3121, 96, 65]); +V.set("animate_exports/images_overworld/TrainStationArt.png", [3, 2499, 1638, 107, 123]); +V.set("animate_exports/images_overworld/TriggerBitmap.png", rn); +V.set("animate_exports/images_overworld/TrophyHouseArt.png", [3, 3151, 3148, 79, 106]); +V.set("animate_exports/images_overworld/TutorialPingPongTableArt1.png", [3, 1866, 2567, 68, 63]); +V.set("animate_exports/images_overworld/Tutorial_01.png", [3, 1800, 303, 420, 280]); +V.set("animate_exports/images_overworld/Tutorial_02.png", [3, 487, 302, 440, 280]); +V.set("animate_exports/images_overworld/UrashimaLetterArt1.png", [3, 2483, 2147, 12, 15]); +V.set("animate_exports/images_overworld/UshiArt.png", [3, 1395, 3365, 16, 20]); +V.set("animate_exports/images_overworld/UshiArt2.png", Zm); +V.set("animate_exports/images_overworld/VolcanoFloorBottomEdgeArt.png", [3, 681, 1730, 16, 6]); +V.set("animate_exports/images_overworld/VolcanoFloorSideEdgeArt.png", [3, 1557, 1179, 6, 16]); +V.set("animate_exports/images_overworld/VolcanoGround1Art.png", [3, 1674, 3376, 16, 16]); +V.set("animate_exports/images_overworld/Water.png", [3, 1719, 3376, 16, 16]); +V.set("animate_exports/images_overworld/Water1WaterfallHighlight1.png", [3, 323, 1727, 14, 7]); +V.set("animate_exports/images_overworld/Water1WaterfallHighlight3.png", [3, 700, 1730, 14, 6]); +V.set("animate_exports/images_overworld/Water1WaterfallHighlightArt1.png", [3, 3229, 1596, 13, 7]); +V.set("animate_exports/images_overworld/Water1WaterfallHighlightArt4.png", [3, 2516, 1787, 14, 9]); +V.set("animate_exports/images_overworld/Waterfall1Art1.png", [3, 0, 3366, 16, 16]); +V.set("animate_exports/images_overworld/Waterfall1Art2.png", [3, 1998, 3376, 16, 16]); +V.set("animate_exports/images_overworld/Waterfall1Art3.png", [3, 2017, 3376, 16, 16]); +V.set("animate_exports/images_overworld/WaterfallBottomArt2.png", sn); +V.set("animate_exports/images_overworld/WaterfallBottomArt3.png", tn); +V.set("animate_exports/images_overworld/WaterfallBottomArt4.png", un); +V.set("animate_exports/images_overworld/WaterfallBtoomArt1.png", vn); +V.set("animate_exports/images_overworld/WelcomeE_01.png", [3, 755, 0, 652, 299]); +V.set("animate_exports/images_overworld/WelcomeE_011.png", [3, 1410, 0, 652, 299]); +V.set("animate_exports/images_overworld/WelcomeE_02.png", [3, 2065, 0, 577, 300]); +V.set("animate_exports/images_overworld/WelcomeE_03.png", [3, 1180, 731, 388, 299]); +V.set("animate_exports/images_overworld/WelcomeW_01.png", [3, 2645, 0, 538, 259]); +V.set("animate_exports/images_overworld/WelcomeW_02.png", [3, 0, 0, 752, 260]); +V.set("animate_exports/images_overworld/WelcomeW_03.png", [3, 2645, 262, 489, 259]); +V.set("animate_exports/images_overworld/Welcome_01.png", [3, 0, 930, 386, 241]); +V.set("animate_exports/images_overworld/Welcome_02.png", [3, 930, 302, 432, 242]); +V.set("animate_exports/images_overworld/Welcome_03.png", [3, 1365, 302, 432, 241]); +V.set("animate_exports/images_overworld/WhiteDoorEntranceArt1.png", [3, 1480, 1789, 14, 11]); +V.set("animate_exports/images_overworld/WhiteDoorEntranceArt2.png", [3, 3164, 2964, 14, 11]); +V.set("animate_exports/images_overworld/WillowTree1Art.png", $m); +V.set("animate_exports/images_overworld/WoodLanternPoleArt.png", [3, 1350, 3378, 14, 38]); +V.set("animate_exports/images_overworld/YellowRoofArt.png", [3, 3113, 2862, 121, 48]); +V.set("animate_exports/images_overworld/YoichiShipCastleArt.png", [3, 1938, 2553, 283, 171]); +V.set("animate_exports/images_overworld/YoungArcherArt1.png", [3, 2718, 3379, 14, 19]); +V.set("animate_exports/images_overworld/YoungArcherArt2.png", [3, 3176, 3364, 16, 18]); +V.set("animate_exports/images_overworld/_1x1DarkSand.png", [3, 2036, 3376, 16, 16]); +V.set("animate_exports/images_overworld/_1x1DarkSand1.png", [3, 2036, 3376, 16, 16]); +V.set("animate_exports/images_overworld/_1x1waveedge.png", [3, 2699, 3376, 16, 16]); +V.set("animate_exports/images_overworld/_3TargetsArt.png", wn); +V.set("animate_exports/images_overworld/_3x3Syncwater.png", [3, 1450, 3286, 48, 48]); +V.set("animate_exports/images_overworld/_3x3water.png", [3, 2277, 3288, 48, 48]); +V.set("animate_exports/images_overworld/deer_sprite_idle_anim_pose1.png", ol); +V.set("animate_exports/images_overworld/deer_sprite_idle_anim_pose2.png", pl); +V.set("animate_exports/images_overworld/door.png", [3, 1144, 1222, 24, 21]); +V.set("animate_exports/images_overworld/gatekeeper_sprite_idle_anim_pose1.png", [3, 3032, 3379, 14, 18]); +V.set("animate_exports/images_overworld/gatekeeper_sprite_idle_anim_pose2.png", [3, 3127, 3379, 14, 18]); +V.set("animate_exports/images_overworld/grass1art.png", [3, 2941, 3376, 16, 16]); +V.set("animate_exports/images_overworld/greenteamdoor.png", [3, 1275, 3357, 18, 19]); +V.set("animate_exports/images_overworld/greenteamstatues.png", [3, 3183, 1051, 46, 16]); +V.set("animate_exports/images_overworld/inariArt.png", zm); +V.set("animate_exports/images_overworld/sister1_sprite_idle_anim_pose1.png", an); +V.set("animate_exports/images_overworld/sister1_sprite_idle_anim_pose2.png", bn); +V.set("animate_exports/images_overworld/sister2_sprite_idle_anim_pose1.png", [3, 2735, 3379, 14, 19]); +V.set("animate_exports/images_overworld/sister2_sprite_idle_anim_pose2.png", [3, 2821, 3379, 14, 19]); +V.set("animate_exports/images_overworld/sister3_sprite_idle_anim_pose1.png", cn); +V.set("animate_exports/images_overworld/sister3_sprite_idle_anim_pose2.png", dn); +V.set("animate_exports/images_overworld/supermountaingirlframe1.png", gn); +V.set("animate_exports/images_overworld/volcanoFloorTopEdgeArt.png", [3, 487, 294, 16, 4]); +V.set("animate_exports/images_archery/ArrowNormal.png", [4, 489, 62, 7, 18]); +V.set("animate_exports/images_archery/BeachTile.png", [4, 0, 130, 48, 48]); +V.set("animate_exports/images_archery/Bitmap101.png", [4, 51, 153, 48, 48]); +V.set("animate_exports/images_archery/Bitmap18.png", [4, 405, 157, 19, 21]); +V.set("animate_exports/images_archery/Bitmap19.png", [4, 21, 181, 18, 22]); +V.set("animate_exports/images_archery/Bitmap20.png", [4, 405, 181, 18, 22]); +V.set("animate_exports/images_archery/Bitmap21.png", [4, 427, 157, 19, 21]); +V.set("animate_exports/images_archery/Bitmap22.png", [4, 426, 181, 18, 22]); +V.set("animate_exports/images_archery/Bitmap23.png", [4, 329, 184, 18, 22]); +V.set("animate_exports/images_archery/Bitmap31.png", [4, 402, 206, 16, 21]); +V.set("animate_exports/images_archery/Bitmap32.png", [4, 80, 204, 16, 22]); +V.set("animate_exports/images_archery/Bitmap33.png", [4, 204, 205, 16, 22]); +V.set("animate_exports/images_archery/Bitmap34.png", [4, 421, 206, 16, 21]); +V.set("animate_exports/images_archery/Bitmap35.png", [4, 223, 205, 16, 22]); +V.set("animate_exports/images_archery/Bitmap36.png", [4, 21, 206, 16, 22]); +V.set("animate_exports/images_archery/Bitmap64111.png", [4, 156, 208, 16, 5]); +V.set("animate_exports/images_archery/Bitmap65.png", [4, 156, 216, 13, 3]); +V.set("animate_exports/images_archery/Bitmap91.png", [4, 447, 202, 16, 31]); +V.set("animate_exports/images_archery/Bitmap92.png", [4, 350, 198, 16, 32]); +V.set("animate_exports/images_archery/Bitmap93.png", [4, 466, 202, 16, 31]); +V.set("animate_exports/images_archery/Bitmap95.png", [4, 489, 126, 5, 18]); +V.set("animate_exports/images_archery/Bitmap96.png", [4, 489, 104, 5, 19]); +V.set("animate_exports/images_archery/Bitmap97.png", [4, 42, 204, 16, 26]); +V.set("animate_exports/images_archery/Bitmap98.png", [4, 61, 204, 16, 25]); +V.set("animate_exports/images_archery/BlackBoxArt.png", [4, 350, 189, 17, 6]); +V.set("animate_exports/images_archery/ChampionRollLeftbig00.png", [4, 67, 63, 52, 42]); +V.set("animate_exports/images_archery/ChampionRollLeftbig03.png", [4, 122, 67, 52, 42]); +V.set("animate_exports/images_archery/ChampionRollLeftbig05.png", [4, 177, 67, 52, 42]); +V.set("animate_exports/images_archery/ChampionRollLeftbig06.png", [4, 232, 67, 52, 42]); +V.set("animate_exports/images_archery/ChampionRollLeftbig07.png", [4, 287, 67, 52, 42]); +V.set("animate_exports/images_archery/ChampionRollLeftbig08.png", [4, 342, 67, 52, 42]); +V.set("animate_exports/images_archery/ChampionRollLeftbig09.png", [4, 397, 67, 52, 42]); +V.set("animate_exports/images_archery/ChampionRollRight00.png", [4, 67, 108, 52, 42]); +V.set("animate_exports/images_archery/ChampionRollRight03.png", [4, 122, 112, 52, 42]); +V.set("animate_exports/images_archery/ChampionRollRight05.png", [4, 177, 112, 52, 42]); +V.set("animate_exports/images_archery/ChampionRollRight06.png", [4, 232, 112, 52, 42]); +V.set("animate_exports/images_archery/ChampionRollRight07.png", [4, 287, 112, 52, 42]); +V.set("animate_exports/images_archery/ChampionRollRight08.png", [4, 342, 112, 52, 42]); +V.set("animate_exports/images_archery/ChampionRollRight09.png", [4, 397, 112, 52, 42]); +V.set("animate_exports/images_archery/ChampionShootingArrow_0.png", [4, 452, 67, 34, 50]); +V.set("animate_exports/images_archery/ChampionShootingArrow_1.png", [4, 452, 120, 34, 50]); +V.set("animate_exports/images_archery/ChampionShootingArrow_2.png", [4, 255, 157, 34, 50]); +V.set("animate_exports/images_archery/ChampionShootingArrow_3.png", [4, 292, 157, 34, 50]); +V.set("animate_exports/images_archery/ChampionUIArt1.png", [4, 175, 208, 15, 18]); +V.set("animate_exports/images_archery/ChampionUIEyesArt.png", [4, 386, 211, 11, 6]); +V.set("animate_exports/images_archery/ChampionUIHighlightArt.png", [4, 382, 188, 17, 20]); +V.set("animate_exports/images_archery/DarkSandWaveArt1.png", [4, 99, 208, 16, 17]); +V.set("animate_exports/images_archery/DarkSandWaveArt2.png", [4, 118, 208, 16, 17]); +V.set("animate_exports/images_archery/ExplosionAnim_0.png", [4, 143, 0, 64, 64]); +V.set("animate_exports/images_archery/ExplosionAnim_1.png", [4, 210, 0, 64, 64]); +V.set("animate_exports/images_archery/ExplosionAnim_2.png", [4, 277, 0, 64, 64]); +V.set("animate_exports/images_archery/ExplosionAnim_4.png", [4, 344, 0, 64, 64]); +V.set("animate_exports/images_archery/ExplosionAnim_6.png", [4, 411, 0, 64, 64]); +V.set("animate_exports/images_archery/ExplosionAnim_8.png", [4, 0, 63, 64, 64]); +V.set("animate_exports/images_archery/FanAppear0000.png", [4, 485, 202, 14, 17]); +V.set("animate_exports/images_archery/FanAppear0007.png", [4, 0, 209, 14, 17]); +V.set("animate_exports/images_archery/FanAppear0008.png", [4, 329, 209, 14, 17]); +V.set("animate_exports/images_archery/FanAppear0011.png", [4, 242, 210, 14, 17]); +V.set("animate_exports/images_archery/FanAppear0013.png", [4, 259, 210, 14, 17]); +V.set("animate_exports/images_archery/FanAppear0017.png", [4, 276, 210, 14, 17]); +V.set("animate_exports/images_archery/FanAppear0019.png", [4, 293, 210, 14, 17]); +V.set("animate_exports/images_archery/FanAppear0027.png", [4, 310, 210, 14, 17]); +V.set("animate_exports/images_archery/FrenzyTarget.png", [4, 204, 157, 48, 45]); +V.set("animate_exports/images_archery/Gradient1.png", [4, 329, 157, 24, 24]); +V.set("animate_exports/images_archery/GreenArrowArt.png", [4, 489, 83, 7, 18]); +V.set("animate_exports/images_archery/InfinitySignArt.png", [4, 51, 145, 11, 4]); +V.set("animate_exports/images_archery/LuckyUIArt1.png", [4, 51, 130, 12, 12]); +V.set("animate_exports/images_archery/LuckyUIHlighlightArt.png", [4, 369, 211, 14, 14]); +V.set("animate_exports/images_archery/NewLArgeWater1Art1.png", [4, 102, 157, 48, 48]); +V.set("animate_exports/images_archery/NewLargeWater1Art2.png", [4, 153, 157, 48, 48]); +V.set("animate_exports/images_archery/ObstacleBitmap.png", [4, 356, 157, 23, 29]); +V.set("animate_exports/images_archery/PierceArrowFloat.png", [4, 449, 173, 18, 26]); +V.set("animate_exports/images_archery/PlayerN.png", [4, 0, 181, 18, 25]); +V.set("animate_exports/images_archery/SushiBitmap.png", [4, 137, 208, 16, 17]); +V.set("animate_exports/images_archery/TargetBitmap.png", [4, 470, 173, 18, 26]); +V.set("animate_exports/images_archery/TargetHit1.png", [4, 478, 0, 20, 28]); +V.set("animate_exports/images_archery/TargetHit2.png", [4, 478, 31, 20, 28]); +V.set("animate_exports/images_archery/TargetHit3.png", [4, 382, 157, 20, 28]); +V.set("animate_exports/images_archery/UIBGArt1.png", [4, 0, 0, 140, 60]); +V.set("animate_exports/images_climbing/Bitmap97.png", [5, 877, 0, 15, 39]); +V.set("animate_exports/images_climbing/BlueHoldArt.png", [5, 877, 350, 11, 8]); +V.set("animate_exports/images_climbing/BoundBitmap.png", [5, 435, 730, 72, 72]); +V.set("animate_exports/images_climbing/ChampionArt1.png", [5, 435, 0, 218, 143]); +V.set("animate_exports/images_climbing/GateArt1.png", [5, 510, 730, 58, 41]); +V.set("animate_exports/images_climbing/GreenHoldArt.png", [5, 877, 412, 7, 9]); +V.set("animate_exports/images_climbing/LargeGrassArt.png", [5, 686, 730, 48, 48]); +V.set("animate_exports/images_climbing/LargeMountainTileArt.png", [5, 737, 730, 48, 48]); +V.set("animate_exports/images_climbing/LargeSnowArt.png", [5, 788, 730, 48, 48]); +V.set("animate_exports/images_climbing/LargeWater1Art2.png", [5, 839, 730, 48, 48]); +V.set("animate_exports/images_climbing/LargeWater1Art3.png", [5, 510, 774, 48, 48]); +V.set("animate_exports/images_climbing/LargeWater1Art4.png", [5, 839, 730, 48, 48]); +V.set("animate_exports/images_climbing/LargeWater1Art5.png", [5, 686, 781, 48, 48]); +V.set("animate_exports/images_climbing/LuckyFallArt1.png", [5, 830, 790, 24, 46]); +V.set("animate_exports/images_climbing/LuckyFallArt2.png", [5, 857, 790, 24, 46]); +V.set("animate_exports/images_climbing/LuckyHoldArt1.png", [5, 710, 832, 16, 28]); +V.set("animate_exports/images_climbing/LuckyHoldArt2.png", [5, 737, 819, 19, 27]); +V.set("animate_exports/images_climbing/LuckyHoldArt3.png", [5, 481, 805, 20, 18]); +V.set("animate_exports/images_climbing/LuckyHoldArt4.png", [5, 877, 203, 13, 32]); +V.set("animate_exports/images_climbing/LuckyHoldArt5.png", [5, 877, 238, 13, 32]); +V.set("animate_exports/images_climbing/LuckyHoldArt6.png", [5, 456, 829, 17, 30]); +V.set("animate_exports/images_climbing/LuckyHoldArt7.png", [5, 877, 273, 12, 28]); +V.set("animate_exports/images_climbing/LuckyIdleEArt.png", [5, 781, 837, 16, 22]); +V.set("animate_exports/images_climbing/LuckyIdleNArt.png", [5, 819, 839, 16, 21]); +V.set("animate_exports/images_climbing/LuckyIdleNArt2.png", [5, 670, 832, 17, 21]); +V.set("animate_exports/images_climbing/LuckyIdleS.png", [5, 649, 820, 18, 22]); +V.set("animate_exports/images_climbing/LuckyIdleSArt2.png", [5, 561, 821, 18, 22]); +V.set("animate_exports/images_climbing/LuckyIdleSArt3.png", [5, 582, 821, 18, 22]); +V.set("animate_exports/images_climbing/LuckyIdleWArt.png", [5, 800, 837, 16, 22]); +V.set("animate_exports/images_climbing/LuckyWalkEArt1.png", [5, 504, 825, 18, 20]); +V.set("animate_exports/images_climbing/LuckyWalkEArt2.png", [5, 561, 797, 20, 21]); +V.set("animate_exports/images_climbing/LuckyWalkEArt3.png", [5, 737, 795, 21, 21]); +V.set("animate_exports/images_climbing/LuckyWalkEArt4.png", [5, 481, 826, 18, 19]); +V.set("animate_exports/images_climbing/LuckyWalkEArt5.png", [5, 584, 797, 20, 21]); +V.set("animate_exports/images_climbing/LuckyWalkEArt6.png", [5, 761, 795, 21, 21]); +V.set("animate_exports/images_climbing/LuckyWalkNArt1.png", [5, 690, 832, 17, 21]); +V.set("animate_exports/images_climbing/LuckyWalkNArt2.png", [5, 857, 839, 16, 20]); +V.set("animate_exports/images_climbing/LuckyWalkNArt3.png", [5, 876, 839, 16, 20]); +V.set("animate_exports/images_climbing/LuckyWalkNArt4.png", [5, 877, 304, 12, 20]); +V.set("animate_exports/images_climbing/LuckyWalkSArt1.png", [5, 877, 42, 15, 20]); +V.set("animate_exports/images_climbing/LuckyWalkSArt2.png", [5, 877, 65, 15, 20]); +V.set("animate_exports/images_climbing/LuckyWalkSArt3.png", [5, 877, 88, 15, 20]); +V.set("animate_exports/images_climbing/LuckyWalkSArt4.png", [5, 877, 111, 15, 20]); +V.set("animate_exports/images_climbing/LuckyWalkSArt5.png", [5, 877, 134, 15, 20]); +V.set("animate_exports/images_climbing/LuckyWalkSArt6.png", [5, 877, 157, 15, 19]); +V.set("animate_exports/images_climbing/LuckyWalkSArt7.png", [5, 838, 839, 16, 21]); +V.set("animate_exports/images_climbing/LuckyWalkSArt8.png", [5, 877, 327, 12, 20]); +V.set("animate_exports/images_climbing/LuckyWalkWArt1.png", [5, 525, 825, 18, 20]); +V.set("animate_exports/images_climbing/LuckyWalkWArt2.png", [5, 435, 805, 20, 21]); +V.set("animate_exports/images_climbing/LuckyWalkWArt3.png", [5, 629, 796, 21, 21]); +V.set("animate_exports/images_climbing/LuckyWalkWArt4.png", [5, 435, 829, 18, 19]); +V.set("animate_exports/images_climbing/LuckyWalkWArt5.png", [5, 458, 805, 20, 21]); +V.set("animate_exports/images_climbing/LuckyWalkWArt6.png", [5, 653, 796, 21, 21]); +V.set("animate_exports/images_climbing/LuckyWalknArt5.png", [5, 877, 179, 14, 21]); +V.set("animate_exports/images_climbing/OwlAnim0004.png", [5, 656, 0, 218, 143]); +V.set("animate_exports/images_climbing/OwlAnim0007.png", [5, 435, 146, 218, 143]); +V.set("animate_exports/images_climbing/OwlAnim0011.png", [5, 656, 146, 218, 143]); +V.set("animate_exports/images_climbing/OwlAnim0014.png", [5, 435, 292, 218, 143]); +V.set("animate_exports/images_climbing/OwlAnim0017.png", [5, 656, 292, 218, 143]); +V.set("animate_exports/images_climbing/OwlAnim0018.png", [5, 435, 438, 218, 143]); +V.set("animate_exports/images_climbing/OwlAnim0019.png", [5, 656, 438, 218, 143]); +V.set("animate_exports/images_climbing/OwlAnim0022.png", [5, 435, 584, 218, 143]); +V.set("animate_exports/images_climbing/OwlAnim0024.png", [5, 656, 584, 218, 143]); +V.set("animate_exports/images_climbing/PinkHoldArt.png", [5, 877, 424, 7, 8]); +V.set("animate_exports/images_climbing/PlatformGrassArt.png", [5, 571, 730, 55, 64]); +V.set("animate_exports/images_climbing/PlatformSnowArt.png", [5, 629, 730, 54, 63]); +V.set("animate_exports/images_climbing/RockPeak1Art.png", [5, 788, 790, 39, 44]); +V.set("animate_exports/images_climbing/RockPeak2Art.png", [5, 603, 834, 16, 27]); +V.set("animate_exports/images_climbing/RockSideEdge1Art.png", [5, 877, 361, 7, 48]); +V.set("animate_exports/images_climbing/RockTopEdge1Art.png", [5, 737, 781, 48, 11]); +V.set("animate_exports/images_climbing/SnowTopEdge1Art.png", [5, 788, 781, 48, 6]); +V.set("animate_exports/images_climbing/SnowTopEdgeArt2.png", [5, 839, 781, 48, 6]); +V.set("animate_exports/images_climbing/SnowballArt.png", [5, 759, 819, 19, 19]); +V.set("animate_exports/images_climbing/StoneLantern1Art.png", [5, 607, 797, 18, 34]); +V.set("animate_exports/images_climbing/StoneLanternLit.png", [5, 628, 820, 18, 34]); +V.set("animate_exports/images_climbing/VistaBackgroundArt.png", [5, 0, 0, 432, 1007]); +V.set("animate_exports/images_marathon/AnimeDustArt1.png", [6, 348, 47, 76, 51]); +V.set("animate_exports/images_marathon/AnimeDustArt2.png", [6, 460, 311, 26, 19]); +V.set("animate_exports/images_marathon/AnimeDustArt3.png", [6, 348, 101, 76, 51]); +V.set("animate_exports/images_marathon/AnimeDustArt4.png", [6, 427, 110, 76, 46]); +V.set("animate_exports/images_marathon/AnimeDustArt5.png", [6, 267, 47, 78, 53]); +V.set("animate_exports/images_marathon/AnimeDustArt6.png", [6, 267, 103, 76, 47]); +V.set("animate_exports/images_marathon/BangArt1.png", [6, 484, 73, 11, 7]); +V.set("animate_exports/images_marathon/BangArt2.png", [6, 118, 322, 19, 12]); +V.set("animate_exports/images_marathon/BangArt3.png", [6, 418, 279, 22, 14]); +V.set("animate_exports/images_marathon/BigCrab.png", [6, 184, 47, 80, 92]); +V.set("animate_exports/images_marathon/BigCrabArt2.png", [6, 99, 47, 82, 95]); +V.set("animate_exports/images_marathon/BlackSquareArt.png", [6, 329, 355, 15, 15]); +V.set("animate_exports/images_marathon/BoundBitmap.png", [6, 0, 135, 72, 72]); +V.set("animate_exports/images_marathon/CrabBushArt1.png", [6, 222, 261, 36, 17]); +V.set("animate_exports/images_marathon/CrabBushArt2.png", [6, 74, 288, 31, 20]); +V.set("animate_exports/images_marathon/CrabBushArt3.png", [6, 91, 216, 32, 20]); +V.set("animate_exports/images_marathon/CrabBushArt4.png", [6, 475, 159, 27, 18]); +V.set("animate_exports/images_marathon/CrabSpriteArt1.png", [6, 484, 47, 16, 23]); +V.set("animate_exports/images_marathon/CrabSpriteArt2.png", [6, 320, 304, 12, 18]); +V.set("animate_exports/images_marathon/CrabWaterArt1.png", [6, 75, 135, 10, 5]); +V.set("animate_exports/images_marathon/CrabWaterArt2.png", [6, 91, 239, 18, 8]); +V.set("animate_exports/images_marathon/CrabWaterArt3.png", [6, 222, 210, 22, 10]); +V.set("animate_exports/images_marathon/CrabWaterArt4.png", [6, 489, 311, 26, 14]); +V.set("animate_exports/images_marathon/CursorBGArt.png", [6, 427, 85, 50, 18]); +V.set("animate_exports/images_marathon/CursorBGArt1.png", [6, 427, 85, 50, 18]); +V.set("animate_exports/images_marathon/DarkCircleArt.png", [6, 401, 300, 27, 23]); +V.set("animate_exports/images_marathon/DodgeCircleArt.png", [6, 483, 355, 15, 15]); +V.set("animate_exports/images_marathon/DodgeIconArt.png", [6, 405, 210, 13, 13]); +V.set("animate_exports/images_marathon/DodgeIconBlackArt.png", [6, 501, 359, 13, 13]); +V.set("animate_exports/images_marathon/DodgeInArt1.png", [6, 347, 359, 14, 14]); +V.set("animate_exports/images_marathon/DodgeInArt2.png", [6, 521, 302, 26, 27]); +V.set("animate_exports/images_marathon/DodgeInArt3.png", [6, 108, 288, 30, 31]); +V.set("animate_exports/images_marathon/DodgeInArt4.png", [6, 141, 288, 30, 30]); +V.set("animate_exports/images_marathon/DodgeInArt5.png", [6, 0, 295, 30, 30]); +V.set("animate_exports/images_marathon/DodgeOutArt1.png", [6, 371, 300, 27, 29]); +V.set("animate_exports/images_marathon/DodgeOutArt2.png", [6, 582, 110, 19, 26]); +V.set("animate_exports/images_marathon/DodgeOutArt3.png", [6, 21, 357, 14, 17]); +V.set("animate_exports/images_marathon/DodgeOutArt4.png", [6, 364, 359, 14, 14]); +V.set("animate_exports/images_marathon/DodgeOutArt5.png", [6, 307, 327, 24, 25]); +V.set("animate_exports/images_marathon/DodgeOutArt6.png", [6, 445, 242, 24, 28]); +V.set("animate_exports/images_marathon/DodgeOutArt7.png", [6, 550, 310, 25, 29]); +V.set("animate_exports/images_marathon/DodgeOutArt8.png", [6, 62, 311, 25, 27]); +V.set("animate_exports/images_marathon/FicusTree.png", [6, 506, 110, 73, 68]); +V.set("animate_exports/images_marathon/FinishLineArt.png", [6, 179, 210, 40, 130]); +V.set("animate_exports/images_marathon/KijimunaRun0001.png", [6, 127, 215, 37, 35]); +V.set("animate_exports/images_marathon/KijimunaRun0002.png", [6, 51, 216, 37, 35]); +V.set("animate_exports/images_marathon/KijimunaRun0003.png", [6, 222, 223, 37, 35]); +V.set("animate_exports/images_marathon/KijimunaRun0005.png", [6, 262, 223, 37, 35]); +V.set("animate_exports/images_marathon/KijimunaRun0007.png", [6, 473, 237, 37, 35]); +V.set("animate_exports/images_marathon/KijimunaRun0008.png", [6, 513, 239, 37, 35]); +V.set("animate_exports/images_marathon/Kijimunawheeledgrey0000.png", [6, 427, 47, 54, 35]); +V.set("animate_exports/images_marathon/Kijimunawheeledgrey0002.png", [6, 75, 145, 54, 35]); +V.set("animate_exports/images_marathon/Kijimunawheeledgrey0003.png", [6, 251, 153, 54, 35]); +V.set("animate_exports/images_marathon/Kijimunawheeledgrey0004.png", [6, 308, 155, 54, 35]); +V.set("animate_exports/images_marathon/Kijimunawheeledgrey0006.png", [6, 365, 155, 54, 35]); +V.set("animate_exports/images_marathon/LargeWater1Art5.png", [6, 422, 191, 48, 48]); +V.set("animate_exports/images_marathon/LuckyNarutoArt1.png", [6, 222, 281, 34, 20]); +V.set("animate_exports/images_marathon/LuckyNarutoArt2.png", [6, 336, 281, 32, 19]); +V.set("animate_exports/images_marathon/LuckyNarutoArt3.png", [6, 299, 281, 34, 20]); +V.set("animate_exports/images_marathon/LuckyNarutoArt4.png", [6, 39, 288, 32, 16]); +V.set("animate_exports/images_marathon/LuckyRunEArt1.png", [6, 279, 327, 25, 18]); +V.set("animate_exports/images_marathon/LuckyRunEArt2.png", [6, 291, 304, 26, 20]); +V.set("animate_exports/images_marathon/LuckyRunEArt3.png", [6, 90, 322, 25, 19]); +V.set("animate_exports/images_marathon/LuckyRunEArt4.png", [6, 81, 344, 24, 20]); +V.set("animate_exports/images_marathon/LuckyRunEArt5.png", [6, 196, 343, 22, 20]); +V.set("animate_exports/images_marathon/LuckyRunMarathonFast0000.png", [6, 0, 328, 24, 24]); +V.set("animate_exports/images_marathon/LuckyRunMarathonFast0001.png", [6, 222, 328, 24, 24]); +V.set("animate_exports/images_marathon/LuckyRunMarathonFast0002.png", [6, 334, 328, 24, 24]); +V.set("animate_exports/images_marathon/LuckyRunMarathonFast0003.png", [6, 489, 328, 24, 24]); +V.set("animate_exports/images_marathon/LuckyRunMarathonFast0005.png", [6, 27, 330, 24, 24]); +V.set("animate_exports/images_marathon/LuckyRunMarathonFast0006.png", [6, 361, 332, 24, 24]); +V.set("animate_exports/images_marathon/LuckyRunMarathonMed0001.png", [6, 0, 328, 24, 24]); +V.set("animate_exports/images_marathon/LuckyRunMarathonMed0002.png", [6, 222, 328, 24, 24]); +V.set("animate_exports/images_marathon/LuckyRunMarathonMed0003.png", [6, 334, 328, 24, 24]); +V.set("animate_exports/images_marathon/LuckyRunMarathonMed0005.png", [6, 489, 328, 24, 24]); +V.set("animate_exports/images_marathon/LuckyRunMarathonMed0007.png", [6, 27, 330, 24, 24]); +V.set("animate_exports/images_marathon/LuckyRunMarathonMed0008.png", [6, 361, 332, 24, 24]); +V.set("animate_exports/images_marathon/LuckySlowRun0002.png", [6, 516, 332, 24, 24]); +V.set("animate_exports/images_marathon/LuckySlowRun0004.png", [6, 429, 333, 24, 24]); +V.set("animate_exports/images_marathon/LuckySlowRun0005.png", [6, 456, 333, 24, 24]); +V.set("animate_exports/images_marathon/LuckySlowRun0006.png", [6, 456, 333, 24, 24]); +V.set("animate_exports/images_marathon/LuckySlowRun0009.png", [6, 54, 341, 24, 24]); +V.set("animate_exports/images_marathon/LuckySlowRun0011.png", [6, 543, 342, 24, 24]); +V.set("animate_exports/images_marathon/LuckySlowRun0013.png", [6, 570, 342, 24, 24]); +V.set("animate_exports/images_marathon/LuckyStartingArt.png", [6, 108, 344, 24, 17]); +V.set("animate_exports/images_marathon/LuckyStumbleArt1.png", [6, 521, 277, 28, 22]); +V.set("animate_exports/images_marathon/LuckyStumbleArt2.png", [6, 33, 307, 26, 20]); +V.set("animate_exports/images_marathon/LuckyStumbleArt3.png", [6, 222, 304, 26, 21]); +V.set("animate_exports/images_marathon/LuckyStumbleArt4.png", [6, 169, 343, 24, 21]); +V.set("animate_exports/images_marathon/LuckyStumbleArt5.png", [6, 251, 319, 25, 22]); +V.set("animate_exports/images_marathon/LuckyStumbleArt6.png", [6, 431, 310, 26, 20]); +V.set("animate_exports/images_marathon/LuckyStumbleArt7.png", [6, 336, 303, 26, 22]); +V.set("animate_exports/images_marathon/NeedleArt1.png", [6, 148, 176, 4, 4]); +V.set("animate_exports/images_marathon/NeedleArt10.png", [6, 498, 73, 2, 7]); +V.set("animate_exports/images_marathon/NeedleArt11.png", [6, 179, 176, 1, 8]); +V.set("animate_exports/images_marathon/NeedleArt2.png", [6, 155, 176, 4, 3]); +V.set("animate_exports/images_marathon/NeedleArt3.png", [6, 140, 176, 5, 2]); +V.set("animate_exports/images_marathon/NeedleArt4.png", [6, 88, 135, 6, 2]); +V.set("animate_exports/images_marathon/NeedleArt5.png", [6, 88, 140, 6, 1]); +V.set("animate_exports/images_marathon/NeedleArt6.png", [6, 132, 176, 5, 3]); +V.set("animate_exports/images_marathon/NeedleArt7.png", [6, 251, 142, 5, 5]); +V.set("animate_exports/images_marathon/NeedleArt8.png", [6, 259, 142, 4, 6]); +V.set("animate_exports/images_marathon/NeedleArt9.png", [6, 167, 215, 3, 7]); +V.set("animate_exports/images_marathon/OctopusSpriteArt1.png", [6, 578, 310, 23, 20]); +V.set("animate_exports/images_marathon/OctopusSpriteArt2.png", [6, 401, 326, 25, 19]); +V.set("animate_exports/images_marathon/OctopusSpriteArt3.png", [6, 580, 181, 21, 24]); +V.set("animate_exports/images_marathon/OctopusSpriteArt4.png", [6, 249, 344, 18, 25]); +V.set("animate_exports/images_marathon/Opponenet2Art5.png", [6, 51, 254, 36, 31]); +V.set("animate_exports/images_marathon/Opponenet2Art6.png", [6, 302, 244, 36, 34]); +V.set("animate_exports/images_marathon/Opponenet3Art1.png", [6, 127, 183, 49, 29]); +V.set("animate_exports/images_marathon/Opponenet3Art2.png", [6, 475, 181, 50, 28]); +V.set("animate_exports/images_marathon/Opponenet3Art3.png", [6, 422, 159, 50, 29]); +V.set("animate_exports/images_marathon/Opponenet3Art4.png", [6, 528, 181, 49, 30]); +V.set("animate_exports/images_marathon/Opponenet3Art5.png", [6, 75, 183, 49, 30]); +V.set("animate_exports/images_marathon/Opponenet3Art6.png", [6, 251, 191, 49, 29]); +V.set("animate_exports/images_marathon/Opponenet4Art1.png", [6, 341, 244, 36, 34]); +V.set("animate_exports/images_marathon/Opponenet4Art2.png", [6, 0, 261, 36, 31]); +V.set("animate_exports/images_marathon/Opponenet4Art3.png", [6, 553, 239, 37, 34]); +V.set("animate_exports/images_marathon/Opponenet4Art4.png", [6, 91, 253, 36, 32]); +V.set("animate_exports/images_marathon/Opponenet4Art5.png", [6, 553, 276, 35, 31]); +V.set("animate_exports/images_marathon/Opponenet4Art6.png", [6, 261, 261, 35, 32]); +V.set("animate_exports/images_marathon/Opponent1StartingArt.png", [6, 473, 212, 39, 22]); +V.set("animate_exports/images_marathon/Opponent2Art1.png", [6, 445, 275, 35, 32]); +V.set("animate_exports/images_marathon/Opponent2Art11.png", [6, 445, 275, 35, 32]); +V.set("animate_exports/images_marathon/Opponent2Art2.png", [6, 483, 277, 35, 31]); +V.set("animate_exports/images_marathon/Opponent2Art3.png", [6, 130, 253, 36, 32]); +V.set("animate_exports/images_marathon/Opponent2Art4.png", [6, 405, 242, 37, 34]); +V.set("animate_exports/images_marathon/Opponent2StartingArt.png", [6, 515, 214, 39, 22]); +V.set("animate_exports/images_marathon/Opponent3StartingArt.png", [6, 132, 145, 46, 28]); +V.set("animate_exports/images_marathon/Opponent4StartingArt.png", [6, 557, 214, 39, 22]); +V.set("animate_exports/images_marathon/PathArt.png", [6, 184, 142, 64, 65]); +V.set("animate_exports/images_marathon/PathBtoAArt.png", [6, 0, 47, 96, 85]); +V.set("animate_exports/images_marathon/PathBtoCArt.png", [6, 504, 0, 96, 107]); +V.set("animate_exports/images_marathon/PlacementBGArt.png", [6, 0, 0, 501, 44]); +V.set("animate_exports/images_marathon/Plant1.png", [6, 259, 296, 29, 20]); +V.set("animate_exports/images_marathon/PlayerCursorArt.png", [6, 405, 193, 13, 14]); +V.set("animate_exports/images_marathon/PlayerCursorBGArt.png", [6, 380, 279, 35, 18]); +V.set("animate_exports/images_marathon/RefArt1.png", [6, 582, 139, 19, 18]); +V.set("animate_exports/images_marathon/RefArt2.png", [6, 480, 85, 20, 18]); +V.set("animate_exports/images_marathon/RefArt3.png", [6, 582, 160, 19, 17]); +V.set("animate_exports/images_marathon/Sand3x31.png", [6, 303, 193, 48, 48]); +V.set("animate_exports/images_marathon/SpeedometerArt.png", [6, 141, 321, 25, 22]); +V.set("animate_exports/images_marathon/TrackOpponenet1CursorArt.png", [6, 135, 346, 18, 17]); +V.set("animate_exports/images_marathon/TrackOpponenet2CursorArt.png", [6, 270, 348, 18, 17]); +V.set("animate_exports/images_marathon/TrackOpponenet3CursorArt.png", [6, 388, 348, 18, 17]); +V.set("animate_exports/images_marathon/TrackOpponenet4CursorArt.png", [6, 0, 355, 18, 17]); +V.set("animate_exports/images_marathon/TrackOpponenet5CursorArt.png", [6, 380, 244, 19, 17]); +V.set("animate_exports/images_marathon/_1x1CliffGrass.png", [6, 221, 355, 16, 16]); +V.set("animate_exports/images_marathon/_1x1SandCliff.png", [6, 291, 355, 16, 16]); +V.set("animate_exports/images_marathon/_1x1waveedge.png", [6, 310, 355, 16, 16]); +V.set("animate_exports/images_marathon/_3x3Grass.png", [6, 354, 193, 48, 48]); +V.set("animate_exports/images_marathon/_3x3water.png", [6, 0, 210, 48, 48]); +V.set("animate_exports/images_marathon/inariArt1.png", [6, 409, 348, 16, 20]); +V.set("animate_exports/images_pingpong/BambooTree1Art.png", [7, 75, 331, 64, 108]); +V.set("animate_exports/images_pingpong/Bitmap29.png", [7, 93, 212, 6, 6]); +V.set("animate_exports/images_pingpong/Bitmap311.png", [7, 93, 221, 6, 6]); +V.set("animate_exports/images_pingpong/Bitmap34copy11.png", [7, 200, 379, 48, 48]); +V.set("animate_exports/images_pingpong/Bitmap35111.png", [7, 368, 437, 20, 27]); +V.set("animate_exports/images_pingpong/Bitmap3611.png", [7, 251, 437, 39, 53]); +V.set("animate_exports/images_pingpong/Bitmap37111.png", [7, 48, 432, 23, 28]); +V.set("animate_exports/images_pingpong/Bitmap38.png", [7, 301, 21, 49, 3]); +V.set("animate_exports/images_pingpong/Bitmap39.png", [7, 93, 165, 13, 18]); +V.set("animate_exports/images_pingpong/Bitmap41.png", [7, 93, 186, 11, 11]); +V.set("animate_exports/images_pingpong/Bitmap43.png", [7, 93, 200, 7, 9]); +V.set("animate_exports/images_pingpong/Bitmap44.png", [7, 399, 24, 3, 3]); +V.set("animate_exports/images_pingpong/Bitmap45.png", [7, 303, 0, 69, 9]); +V.set("animate_exports/images_pingpong/BlackTableArt.png", [7, 177, 29, 108, 109]); +V.set("animate_exports/images_pingpong/BlueBoardArt.png", [7, 288, 29, 108, 109]); +V.set("animate_exports/images_pingpong/BoundBitmap.png", [7, 225, 304, 72, 72]); +V.set("animate_exports/images_pingpong/LargeCobblestone1Art.png", [7, 251, 386, 48, 48]); +V.set("animate_exports/images_pingpong/LargeDarkGrass1Art.png", [7, 302, 386, 48, 48]); +V.set("animate_exports/images_pingpong/LargeField1Art.png", [7, 353, 386, 48, 48]); +V.set("animate_exports/images_pingpong/LargeField2Art.png", [7, 200, 430, 48, 48]); +V.set("animate_exports/images_pingpong/Lion1Art1.png", [7, 375, 0, 27, 21]); +V.set("animate_exports/images_pingpong/Lion1Art2.png", [7, 374, 336, 25, 20]); +V.set("animate_exports/images_pingpong/Lion1Art3.png", [7, 375, 286, 25, 22]); +V.set("animate_exports/images_pingpong/Lion1Art4.png", [7, 320, 437, 21, 28]); +V.set("animate_exports/images_pingpong/Lion1Art5.png", [7, 150, 253, 30, 30]); +V.set("animate_exports/images_pingpong/Lion2Art1.png", [7, 111, 112, 27, 21]); +V.set("animate_exports/images_pingpong/Lion2Art2.png", [7, 374, 359, 25, 20]); +V.set("animate_exports/images_pingpong/Lion2Art3.png", [7, 344, 437, 21, 28]); +V.set("animate_exports/images_pingpong/Lion2Art4.png", [7, 183, 253, 30, 30]); +V.set("animate_exports/images_pingpong/Lion2Art5.png", [7, 374, 311, 25, 22]); +V.set("animate_exports/images_pingpong/LuckyArt1.png", [7, 375, 230, 27, 27]); +V.set("animate_exports/images_pingpong/LuckyArt2.png", [7, 141, 112, 26, 22]); +V.set("animate_exports/images_pingpong/LuckyArt3.png", [7, 375, 260, 25, 23]); +V.set("animate_exports/images_pingpong/LuckyArt4.png", [7, 293, 437, 24, 28]); +V.set("animate_exports/images_pingpong/PavementArt1111.png", [7, 299, 208, 16, 16]); +V.set("animate_exports/images_pingpong/PowerShotBarFramArt.png", [7, 0, 0, 300, 8]); +V.set("animate_exports/images_pingpong/PowerShotBarMaskArt.png", [7, 0, 11, 298, 6]); +V.set("animate_exports/images_pingpong/PowerShotBarProgressArt.png", [7, 0, 20, 298, 6]); +V.set("animate_exports/images_pingpong/ProgressBarFrameArt1.png", [7, 301, 12, 69, 6]); +V.set("animate_exports/images_pingpong/RedTableArt.png", [7, 0, 53, 108, 109]); +V.set("animate_exports/images_pingpong/Shadow.png", [7, 353, 21, 17, 3]); +V.set("animate_exports/images_pingpong/StoneLantern1Art11.png", [7, 74, 442, 18, 34]); +V.set("animate_exports/images_pingpong/StoneTableArt.png", [7, 111, 141, 108, 109]); +V.set("animate_exports/images_pingpong/TenguArt1.png", [7, 300, 304, 71, 79]); +V.set("animate_exports/images_pingpong/TenguArt11.png", [7, 0, 165, 90, 77]); +V.set("animate_exports/images_pingpong/TenguArt12.png", [7, 0, 245, 72, 118]); +V.set("animate_exports/images_pingpong/TenguArt13.png", [7, 222, 141, 97, 64]); +V.set("animate_exports/images_pingpong/TenguArt2.png", [7, 111, 53, 56, 56]); +V.set("animate_exports/images_pingpong/TenguArt3.png", [7, 222, 208, 74, 83]); +V.set("animate_exports/images_pingpong/TenguArt4.png", [7, 299, 230, 73, 71]); +V.set("animate_exports/images_pingpong/TenguArt5.png", [7, 150, 294, 72, 73]); +V.set("animate_exports/images_pingpong/TenguArt6.png", [7, 75, 253, 72, 75]); +V.set("animate_exports/images_pingpong/TenguArt7.png", [7, 0, 366, 64, 63]); +V.set("animate_exports/images_pingpong/TenguArt8.png", [7, 142, 370, 55, 80]); +V.set("animate_exports/images_pingpong/TenguArt9.png", [7, 322, 141, 81, 86]); +V.set("animate_exports/images_pingpong/UIFrameArt.png", [7, 0, 29, 174, 21]); +V.set("animate_exports/images_pingpong/WooshArt.png", [7, 0, 432, 45, 43]); +V.set("animate_exports/images_rugby/ArrowArt.png", [8, 438, 490, 16, 31]); +V.set("animate_exports/images_rugby/BirdIdleEArt.png", [8, 0, 535, 15, 23]); +V.set("animate_exports/images_rugby/BirdIdleNArt.png", [8, 36, 560, 14, 24]); +V.set("animate_exports/images_rugby/BirdIdleSArt11.png", [8, 0, 561, 14, 24]); +V.set("animate_exports/images_rugby/BirdSadArt.png", [8, 429, 569, 14, 21]); +V.set("animate_exports/images_rugby/BirdWalkEArt1.png", [8, 273, 238, 16, 22]); +V.set("animate_exports/images_rugby/BirdWalkEArt2.png", [8, 36, 536, 15, 21]); +V.set("animate_exports/images_rugby/BirdWalkEArt3.png", [8, 300, 495, 16, 23]); +V.set("animate_exports/images_rugby/BirdWalkNArt1.png", [8, 0, 390, 20, 23]); +V.set("animate_exports/images_rugby/BirdWalkNArt2.png", [8, 0, 439, 18, 24]); +V.set("animate_exports/images_rugby/BirdWalkNArt3.png", [8, 301, 568, 14, 23]); +V.set("animate_exports/images_rugby/BirdWalkSArt1.png", [8, 247, 392, 20, 21]); +V.set("animate_exports/images_rugby/BirdWalkSArt2.png", [8, 206, 441, 18, 22]); +V.set("animate_exports/images_rugby/BirdWalkSArt3.png", [8, 318, 568, 14, 22]); +V.set("animate_exports/images_rugby/BirdWinArt.png", [8, 247, 568, 14, 23]); +V.set("animate_exports/images_rugby/BlueBallArt.png", [8, 153, 75, 11, 7]); +V.set("animate_exports/images_rugby/BlueOniAttackEArt1.png", [8, 232, 0, 58, 49]); +V.set("animate_exports/images_rugby/BlueOniAttackEArt2.png", [8, 304, 110, 45, 49]); +V.set("animate_exports/images_rugby/BlueOniAttackEArt3.png", [8, 204, 103, 47, 49]); +V.set("animate_exports/images_rugby/BlueOniAttackNArt1.png", [8, 345, 203, 40, 47]); +V.set("animate_exports/images_rugby/BlueOniAttackNArt2.png", [8, 388, 203, 40, 47]); +V.set("animate_exports/images_rugby/BlueOniAttackSArt1.png", [8, 40, 226, 37, 51]); +V.set("animate_exports/images_rugby/BlueOniAttackSArt2.png", [8, 0, 162, 41, 55]); +V.set("animate_exports/images_rugby/BlueOniBallArt.png", [8, 0, 220, 37, 60]); +V.set("animate_exports/images_rugby/BlueOniRunEArt11.png", [8, 341, 298, 28, 42]); +V.set("animate_exports/images_rugby/BlueOniRunEArt21.png", [8, 168, 0, 61, 48]); +V.set("animate_exports/images_rugby/BlueOniRunEArt3.png", [8, 351, 0, 51, 47]); +V.set("animate_exports/images_rugby/BlueOniRunEArt41.png", [8, 40, 280, 32, 42]); +V.set("animate_exports/images_rugby/BlueOniRunNArt11.png", [8, 190, 193, 40, 50]); +V.set("animate_exports/images_rugby/BlueOniRunNArt21.png", [8, 310, 298, 28, 49]); +V.set("animate_exports/images_rugby/BlueOniRunSArt11.png", [8, 0, 283, 31, 56]); +V.set("animate_exports/images_rugby/BlueOniRunSArt4111.png", [8, 80, 271, 33, 48]); +V.set("animate_exports/images_rugby/BoundBitmap.png", [8, 93, 0, 72, 72]); +V.set("animate_exports/images_rugby/BrownBallArt.png", [8, 190, 157, 7, 11]); +V.set("animate_exports/images_rugby/BrownBallHorizontalArt.png", [8, 153, 85, 11, 7]); +V.set("animate_exports/images_rugby/BrownBallVerticalArt.png", [8, 190, 157, 7, 11]); +V.set("animate_exports/images_rugby/BubbleFXArt1.png", [8, 372, 302, 28, 28]); +V.set("animate_exports/images_rugby/BubbleFXArt2.png", [8, 116, 296, 29, 27]); +V.set("animate_exports/images_rugby/BubbleFXArt3.png", [8, 256, 314, 28, 27]); +V.set("animate_exports/images_rugby/CharacterShadowArt.png", [8, 76, 63, 12, 3]); +V.set("animate_exports/images_rugby/CircleEmptyArt.png", [8, 51, 63, 22, 9]); +V.set("animate_exports/images_rugby/CircleFullArt.png", [8, 341, 343, 22, 9]); +V.set("animate_exports/images_rugby/DodgeInArt1.png", [8, 369, 589, 14, 14]); +V.set("animate_exports/images_rugby/DodgeInArt2.png", [8, 202, 321, 26, 27]); +V.set("animate_exports/images_rugby/DodgeInArt3.png", [8, 223, 287, 30, 31]); +V.set("animate_exports/images_rugby/DodgeInArt4.png", [8, 169, 293, 30, 30]); +V.set("animate_exports/images_rugby/DodgeInArt5.png", [8, 413, 295, 30, 30]); +V.set("animate_exports/images_rugby/DogHandArt.png", [8, 440, 102, 3, 5]); +V.set("animate_exports/images_rugby/DogIdleEArt.png", [8, 202, 293, 17, 24]); +V.set("animate_exports/images_rugby/DogIdleNArt.png", [8, 17, 561, 14, 24]); +V.set("animate_exports/images_rugby/DogIdleSArt111.png", [8, 111, 567, 14, 24]); +V.set("animate_exports/images_rugby/DogSadArt.png", [8, 398, 469, 14, 18]); +V.set("animate_exports/images_rugby/DogWalkEArt1.png", [8, 181, 326, 17, 21]); +V.set("animate_exports/images_rugby/DogWalkEArt2.png", [8, 117, 445, 18, 21]); +V.set("animate_exports/images_rugby/DogWalkEArt3.png", [8, 231, 321, 21, 22]); +V.set("animate_exports/images_rugby/DogWalkEArt4.png", [8, 153, 469, 17, 21]); +V.set("animate_exports/images_rugby/DogWalkEArt5.png", [8, 138, 445, 18, 21]); +V.set("animate_exports/images_rugby/DogWalkEArt6.png", [8, 416, 445, 18, 20]); +V.set("animate_exports/images_rugby/DogWalkSArt1.png", [8, 17, 588, 14, 20]); +V.set("animate_exports/images_rugby/DogWalkSArt2.png", [8, 72, 571, 14, 21]); +V.set("animate_exports/images_rugby/DogWalkSArt3.png", [8, 53, 575, 14, 21]); +V.set("animate_exports/images_rugby/DogWalkSArt4.png", [8, 214, 576, 14, 21]); +V.set("animate_exports/images_rugby/DogWalkSArt5.png", [8, 335, 568, 14, 22]); +V.set("animate_exports/images_rugby/DogWalkSArt6.png", [8, 187, 577, 14, 21]); +V.set("animate_exports/images_rugby/DogWalkSArt7.png", [8, 412, 569, 14, 22]); +V.set("animate_exports/images_rugby/DogWalkSArt8.png", [8, 34, 587, 14, 21]); +V.set("animate_exports/images_rugby/DogWalkWArt1.png", [8, 98, 536, 15, 20]); +V.set("animate_exports/images_rugby/DogWalkWArt2.png", [8, 178, 535, 15, 21]); +V.set("animate_exports/images_rugby/DogWalkWArt3.png", [8, 405, 535, 15, 21]); +V.set("animate_exports/images_rugby/DogWalkWArt4.png", [8, 162, 589, 14, 20]); +V.set("animate_exports/images_rugby/DogWalkWArt5.png", [8, 18, 536, 15, 22]); +V.set("animate_exports/images_rugby/DogWalkWArt6.png", [8, 395, 587, 14, 21]); +V.set("animate_exports/images_rugby/DogWinArt.png", [8, 264, 568, 14, 23]); +V.set("animate_exports/images_rugby/EndzoneEdgeArt.png", [8, 231, 576, 9, 48]); +V.set("animate_exports/images_rugby/EndzoneFieldArt.png", [8, 405, 0, 48, 48]); +V.set("animate_exports/images_rugby/FireFXArt1.png", [8, 321, 56, 26, 37]); +V.set("animate_exports/images_rugby/FireFXArt2.png", [8, 431, 203, 27, 37]); +V.set("animate_exports/images_rugby/FireFXArt3.png", [8, 75, 322, 25, 36]); +V.set("animate_exports/images_rugby/LargeField1SideEdge1Art11.png", [8, 446, 569, 10, 48]); +V.set("animate_exports/images_rugby/LargeField2Art.png", [8, 351, 50, 48, 48]); +V.set("animate_exports/images_rugby/LargeField2SideEdgeArt.png", [8, 334, 593, 9, 48]); +V.set("animate_exports/images_rugby/LargeLava1Art1.png", [8, 402, 51, 48, 48]); +V.set("animate_exports/images_rugby/LargeLava1Art2.png", [8, 168, 51, 48, 48]); +V.set("animate_exports/images_rugby/LargeLava1Art3.png", [8, 219, 52, 48, 48]); +V.set("animate_exports/images_rugby/LargeLava1Art4.png", [8, 168, 51, 48, 48]); +V.set("animate_exports/images_rugby/LargeLavaArt.png", [8, 270, 56, 48, 48]); +V.set("animate_exports/images_rugby/LargeLavaArt2.png", [8, 0, 63, 48, 48]); +V.set("animate_exports/images_rugby/LargeVolcanoFloorBottomEdgeArt.png", [8, 321, 101, 48, 6]); +V.set("animate_exports/images_rugby/LargeVolcanoFloorSideEdgeArt.png", [8, 453, 51, 5, 48]); +V.set("animate_exports/images_rugby/LargeVolcanoFloorToEdgeArt.png", [8, 153, 102, 48, 4]); +V.set("animate_exports/images_rugby/LargeVolcanoGround1Art.png", [8, 51, 75, 48, 48]); +V.set("animate_exports/images_rugby/LargeVolcanoWallBottomEdgeArt.png", [8, 372, 102, 48, 6]); +V.set("animate_exports/images_rugby/LightingFXArt1.png", [8, 335, 253, 37, 42]); +V.set("animate_exports/images_rugby/LightingFXArt2.png", [8, 352, 111, 45, 46]); +V.set("animate_exports/images_rugby/LightingFXArt3.png", [8, 0, 114, 45, 45]); +V.set("animate_exports/images_rugby/LightingFXArt4.png", [8, 140, 205, 40, 41]); +V.set("animate_exports/images_rugby/LightingFXArt5.png", [8, 400, 111, 45, 46]); +V.set("animate_exports/images_rugby/LightingFXArt6.png", [8, 48, 126, 45, 45]); +V.set("animate_exports/images_rugby/LuckyIdleEArt.png", [8, 83, 501, 16, 22]); +V.set("animate_exports/images_rugby/LuckyIdleNArt.png", [8, 213, 510, 16, 21]); +V.set("animate_exports/images_rugby/LuckyIdleS111.png", [8, 46, 443, 18, 22]); +V.set("animate_exports/images_rugby/LuckyIdleSArt2.png", [8, 21, 444, 18, 22]); +V.set("animate_exports/images_rugby/LuckyIdleSArt3.png", [8, 275, 444, 18, 22]); +V.set("animate_exports/images_rugby/LuckyIdleWArt.png", [8, 60, 506, 16, 22]); +V.set("animate_exports/images_rugby/LuckySadArt.png", [8, 112, 469, 18, 17]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallEArt1.png", [8, 48, 373, 21, 20]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallEArt2.png", [8, 270, 392, 20, 21]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallEArt3.png", [8, 255, 344, 21, 21]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallEArt4.png", [8, 227, 465, 18, 19]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallEArt5.png", [8, 279, 344, 21, 21]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallEArt6.png", [8, 34, 325, 23, 21]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallNArt1.png", [8, 287, 314, 19, 21]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallNArt2.png", [8, 98, 374, 21, 20]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallNArt3.png", [8, 375, 399, 20, 20]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallNArt4.png", [8, 159, 445, 18, 21]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallNArt5.png", [8, 173, 469, 17, 21]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallNArt6.png", [8, 19, 513, 16, 20]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallSArt1.png", [8, 376, 536, 15, 20]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallSArt2.png", [8, 270, 523, 16, 19]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallSArt3.png", [8, 232, 510, 16, 21]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallSArt4.png", [8, 116, 544, 15, 20]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallSArt5.png", [8, 184, 422, 19, 20]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallSArt6.png", [8, 309, 472, 17, 20]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallSArt7.png", [8, 287, 421, 19, 20]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallSArt8.png", [8, 88, 478, 17, 20]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallWArt1.png", [8, 316, 401, 20, 20]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallWArt2.png", [8, 231, 346, 21, 21]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallWArt3.png", [8, 103, 326, 23, 21]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallWArt4.png", [8, 399, 376, 21, 19]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallWArt5.png", [8, 218, 394, 20, 21]); +V.set("animate_exports/images_rugby/LuckyWalkBlueBallWArt6.png", [8, 26, 349, 21, 21]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallEArt1.png", [8, 122, 374, 21, 20]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallEArt2.png", [8, 48, 396, 20, 21]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallEArt3.png", [8, 50, 349, 21, 21]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallEArt4.png", [8, 248, 465, 18, 19]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallEArt5.png", [8, 103, 350, 21, 21]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallEArt6.png", [8, 129, 326, 23, 21]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallNArt1.png", [8, 118, 421, 19, 21]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallNArt2.png", [8, 146, 374, 21, 20]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallNArt3.png", [8, 339, 403, 20, 20]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallNArt4.png", [8, 180, 445, 18, 21]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallNArt5.png", [8, 269, 469, 17, 21]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallNArt6.png", [8, 38, 513, 16, 20]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallSArt1.png", [8, 134, 545, 15, 20]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallSArt2.png", [8, 437, 524, 16, 19]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallSArt3.png", [8, 0, 511, 16, 21]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallSArt4.png", [8, 152, 545, 15, 20]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallSArt5.png", [8, 362, 422, 19, 20]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallSArt6.png", [8, 63, 483, 17, 20]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallSArt7.png", [8, 384, 422, 19, 20]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallSArt8.png", [8, 222, 487, 17, 20]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallWArt1.png", [8, 0, 416, 20, 20]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallWArt2.png", [8, 127, 350, 21, 21]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallWArt3.png", [8, 155, 326, 23, 21]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallWArt4.png", [8, 423, 376, 21, 19]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallWArt5.png", [8, 23, 397, 20, 21]); +V.set("animate_exports/images_rugby/LuckyWalkBrownBallWArt6.png", [8, 151, 350, 21, 21]); +V.set("animate_exports/images_rugby/LuckyWalkEArt1.png", [8, 437, 445, 18, 20]); +V.set("animate_exports/images_rugby/LuckyWalkEArt2.png", [8, 95, 397, 20, 21]); +V.set("animate_exports/images_rugby/LuckyWalkEArt3.png", [8, 175, 350, 21, 21]); +V.set("animate_exports/images_rugby/LuckyWalkEArt4.png", [8, 0, 466, 18, 19]); +V.set("animate_exports/images_rugby/LuckyWalkEArt5.png", [8, 118, 397, 20, 21]); +V.set("animate_exports/images_rugby/LuckyWalkEArt6.png", [8, 303, 350, 21, 21]); +V.set("animate_exports/images_rugby/LuckyWalkNArt1.png", [8, 289, 470, 17, 21]); +V.set("animate_exports/images_rugby/LuckyWalkNArt2.png", [8, 386, 513, 16, 20]); +V.set("animate_exports/images_rugby/LuckyWalkNArt3.png", [8, 121, 521, 16, 20]); +V.set("animate_exports/images_rugby/LuckyWalkNArt4.png", [8, 446, 352, 12, 20]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallEArt1.png", [8, 170, 374, 21, 20]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallEArt2.png", [8, 141, 397, 20, 21]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallEArt3.png", [8, 199, 351, 21, 21]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallEArt4.png", [8, 201, 466, 18, 19]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallEArt5.png", [8, 398, 352, 21, 21]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallEArt6.png", [8, 403, 328, 23, 21]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallNArt1.png", [8, 140, 421, 19, 21]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallNArt2.png", [8, 303, 374, 21, 20]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallNArt3.png", [8, 241, 416, 20, 20]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallNArt4.png", [8, 353, 445, 18, 21]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallNArt5.png", [8, 338, 469, 17, 21]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallNArt6.png", [8, 140, 522, 16, 20]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallSArt1.png", [8, 289, 544, 15, 20]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallSArt2.png", [8, 79, 526, 16, 19]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallSArt3.png", [8, 191, 511, 16, 21]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallSArt4.png", [8, 248, 545, 15, 20]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallSArt5.png", [8, 406, 422, 19, 20]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallSArt6.png", [8, 242, 487, 17, 20]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallSArt7.png", [8, 428, 422, 19, 20]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallSArt8.png", [8, 0, 488, 17, 20]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallWArt1.png", [8, 264, 416, 20, 20]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallWArt2.png", [8, 422, 352, 21, 21]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallWArt3.png", [8, 429, 328, 23, 21]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallWArt4.png", [8, 327, 379, 21, 19]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallWArt5.png", [8, 164, 397, 20, 21]); +V.set("animate_exports/images_rugby/LuckyWalkRedBallWArt6.png", [8, 327, 355, 21, 21]); +V.set("animate_exports/images_rugby/LuckyWalkSArt1.png", [8, 266, 545, 15, 20]); +V.set("animate_exports/images_rugby/LuckyWalkSArt2.png", [8, 307, 545, 15, 20]); +V.set("animate_exports/images_rugby/LuckyWalkSArt3.png", [8, 325, 545, 15, 20]); +V.set("animate_exports/images_rugby/LuckyWalkSArt4.png", [8, 343, 545, 15, 20]); +V.set("animate_exports/images_rugby/LuckyWalkSArt5.png", [8, 423, 546, 15, 20]); +V.set("animate_exports/images_rugby/LuckyWalkSArt6.png", [8, 54, 553, 15, 19]); +V.set("animate_exports/images_rugby/LuckyWalkSArt7.png", [8, 418, 511, 16, 21]); +V.set("animate_exports/images_rugby/LuckyWalkSArt8.png", [8, 447, 375, 12, 20]); +V.set("animate_exports/images_rugby/LuckyWalkWArt111.png", [8, 296, 447, 18, 20]); +V.set("animate_exports/images_rugby/LuckyWalkWArt2.png", [8, 187, 398, 20, 21]); +V.set("animate_exports/images_rugby/LuckyWalkWArt3.png", [8, 351, 357, 21, 21]); +V.set("animate_exports/images_rugby/LuckyWalkWArt4.png", [8, 42, 468, 18, 19]); +V.set("animate_exports/images_rugby/LuckyWalkWArt5.png", [8, 293, 397, 20, 21]); +V.set("animate_exports/images_rugby/LuckyWalkWArt6.png", [8, 74, 361, 21, 21]); +V.set("animate_exports/images_rugby/LuckyWalkYellowEBallArt1.png", [8, 194, 375, 21, 20]); +V.set("animate_exports/images_rugby/LuckyWalkYellowEBallArt2.png", [8, 399, 398, 20, 21]); +V.set("animate_exports/images_rugby/LuckyWalkYellowEBallArt3.png", [8, 0, 366, 21, 21]); +V.set("animate_exports/images_rugby/LuckyWalkYellowEBallArt4.png", [8, 416, 468, 18, 19]); +V.set("animate_exports/images_rugby/LuckyWalkYellowEBallArt5.png", [8, 255, 368, 21, 21]); +V.set("animate_exports/images_rugby/LuckyWalkYellowEBallArt6.png", [8, 372, 333, 23, 21]); +V.set("animate_exports/images_rugby/LuckyWalkYellowNBallArt1.png", [8, 162, 421, 19, 21]); +V.set("animate_exports/images_rugby/LuckyWalkYellowNBallArt2.png", [8, 375, 376, 21, 20]); +V.set("animate_exports/images_rugby/LuckyWalkYellowNBallArt3.png", [8, 210, 418, 20, 20]); +V.set("animate_exports/images_rugby/LuckyWalkYellowNBallArt4.png", [8, 374, 445, 18, 21]); +V.set("animate_exports/images_rugby/LuckyWalkYellowNBallArt5.png", [8, 358, 469, 17, 21]); +V.set("animate_exports/images_rugby/LuckyWalkYellowNBallArt6.png", [8, 159, 522, 16, 20]); +V.set("animate_exports/images_rugby/LuckyWalkYellowSBallArt1.png", [8, 441, 546, 15, 20]); +V.set("animate_exports/images_rugby/LuckyWalkYellowSBallArt2.png", [8, 57, 531, 16, 19]); +V.set("animate_exports/images_rugby/LuckyWalkYellowSBallArt3.png", [8, 102, 512, 16, 21]); +V.set("animate_exports/images_rugby/LuckyWalkYellowSBallArt4.png", [8, 76, 548, 15, 20]); +V.set("animate_exports/images_rugby/LuckyWalkYellowSBallArt5.png", [8, 309, 424, 19, 20]); +V.set("animate_exports/images_rugby/LuckyWalkYellowSBallArt6.png", [8, 193, 488, 17, 20]); +V.set("animate_exports/images_rugby/LuckyWalkYellowSBallArt7.png", [8, 331, 426, 19, 20]); +V.set("animate_exports/images_rugby/LuckyWalkYellowSBallArt8.png", [8, 108, 489, 17, 20]); +V.set("animate_exports/images_rugby/LuckyWalkYellowWBallArt1.png", [8, 46, 420, 20, 20]); +V.set("animate_exports/images_rugby/LuckyWalkYellowWBallArt2.png", [8, 279, 368, 21, 21]); +V.set("animate_exports/images_rugby/LuckyWalkYellowWBallArt3.png", [8, 0, 342, 23, 21]); +V.set("animate_exports/images_rugby/LuckyWalkYellowWBallArt4.png", [8, 351, 381, 21, 19]); +V.set("animate_exports/images_rugby/LuckyWalkYellowWBallArt5.png", [8, 422, 398, 20, 21]); +V.set("animate_exports/images_rugby/LuckyWalkYellowWBallArt6.png", [8, 223, 370, 21, 21]); +V.set("animate_exports/images_rugby/LuckyWalknArt5.png", [8, 0, 588, 14, 21]); +V.set("animate_exports/images_rugby/LuckyWinArt.png", [8, 395, 445, 18, 21]); +V.set("animate_exports/images_rugby/MomoSadArt.png", [8, 128, 568, 14, 24]); +V.set("animate_exports/images_rugby/MomoWinArt.png", [8, 153, 493, 16, 26]); +V.set("animate_exports/images_rugby/MomotaroHandArt.png", [8, 144, 145, 3, 5]); +V.set("animate_exports/images_rugby/MomotaroIdleEArt.png", [8, 443, 160, 15, 25]); +V.set("animate_exports/images_rugby/MomotaroIdleNArt.png", [8, 172, 493, 16, 26]); +V.set("animate_exports/images_rugby/MomotaroIdleSArt11.png", [8, 262, 493, 16, 26]); +V.set("animate_exports/images_rugby/MomotaroWalkEArt1.png", [8, 89, 590, 13, 27]); +V.set("animate_exports/images_rugby/MomotaroWalkEArt2.png", [8, 128, 494, 16, 24]); +V.set("animate_exports/images_rugby/MomotaroWalkEArt3.png", [8, 148, 296, 17, 24]); +V.set("animate_exports/images_rugby/MomotaroWalkEArt4.png", [8, 318, 593, 13, 27]); +V.set("animate_exports/images_rugby/MomotaroWalkEArt5.png", [8, 233, 439, 18, 23]); +V.set("animate_exports/images_rugby/MomotaroWalkEArt6.png", [8, 133, 469, 17, 22]); +V.set("animate_exports/images_rugby/MomotaroWalkNArt1.png", [8, 233, 193, 12, 24]); +V.set("animate_exports/images_rugby/MomotaroWalkNArt2.png", [8, 145, 568, 14, 24]); +V.set("animate_exports/images_rugby/MomotaroWalkNArt3.png", [8, 94, 559, 14, 28]); +V.set("animate_exports/images_rugby/MomotaroWalkNArt4.png", [8, 446, 295, 12, 23]); +V.set("animate_exports/images_rugby/MomotaroWalkNArt5.png", [8, 395, 559, 14, 25]); +V.set("animate_exports/images_rugby/MomotaroWalkNArt6.png", [8, 284, 567, 14, 24]); +V.set("animate_exports/images_rugby/MomotaroWalkSArt.png", [8, 348, 493, 16, 25]); +V.set("animate_exports/images_rugby/MomotaroWalkSArt1.png", [8, 170, 559, 14, 27]); +V.set("animate_exports/images_rugby/MomotaroWalkSArt2.png", [8, 256, 287, 12, 24]); +V.set("animate_exports/images_rugby/MomotaroWalkSArt3.png", [8, 361, 559, 14, 27]); +V.set("animate_exports/images_rugby/MomotaroWalkSArt4.png", [8, 378, 559, 14, 27]); +V.set("animate_exports/images_rugby/MomotaroWalkSArt5.png", [8, 281, 494, 16, 26]); +V.set("animate_exports/images_rugby/MomotaroWalkSArt6.png", [8, 367, 493, 16, 25]); +V.set("animate_exports/images_rugby/MomotaroWalkSArt7.png", [8, 329, 493, 16, 26]); +V.set("animate_exports/images_rugby/MonkeyHandArt.png", [8, 448, 149, 3, 5]); +V.set("animate_exports/images_rugby/MonkeyIsleEArt.png", [8, 378, 469, 17, 21]); +V.set("animate_exports/images_rugby/MonkeyIsleNArt.png", [8, 20, 490, 17, 20]); +V.set("animate_exports/images_rugby/MonkeyIsleSArt111.png", [8, 317, 449, 18, 20]); +V.set("animate_exports/images_rugby/MonkeySadArt.png", [8, 21, 469, 18, 18]); +V.set("animate_exports/images_rugby/MonkeyWalkEArt1.png", [8, 95, 432, 19, 20]); +V.set("animate_exports/images_rugby/MonkeyWalkEArt10.png", [8, 69, 437, 19, 20]); +V.set("animate_exports/images_rugby/MonkeyWalkEArt11.png", [8, 23, 421, 20, 20]); +V.set("animate_exports/images_rugby/MonkeyWalkEArt12.png", [8, 24, 373, 21, 21]); +V.set("animate_exports/images_rugby/MonkeyWalkEArt2.png", [8, 91, 455, 18, 20]); +V.set("animate_exports/images_rugby/MonkeyWalkEArt3.png", [8, 310, 263, 21, 23]); +V.set("animate_exports/images_rugby/MonkeyWalkEArt4.png", [8, 69, 437, 19, 20]); +V.set("animate_exports/images_rugby/MonkeyWalkEArt5.png", [8, 23, 421, 20, 20]); +V.set("animate_exports/images_rugby/MonkeyWalkEArt6.png", [8, 24, 373, 21, 21]); +V.set("animate_exports/images_rugby/MonkeyWalkEArt7.png", [8, 95, 432, 19, 20]); +V.set("animate_exports/images_rugby/MonkeyWalkEArt8.png", [8, 91, 455, 18, 20]); +V.set("animate_exports/images_rugby/MonkeyWalkEArt9.png", [8, 310, 263, 21, 23]); +V.set("animate_exports/images_rugby/MonkeyWalkNArt1.png", [8, 40, 490, 17, 20]); +V.set("animate_exports/images_rugby/MonkeyWalkNArt2.png", [8, 437, 468, 18, 19]); +V.set("animate_exports/images_rugby/MonkeyWalkNArt3.png", [8, 418, 490, 17, 18]); +V.set("animate_exports/images_rugby/MonkeyWalkNArt4.png", [8, 300, 521, 16, 20]); +V.set("animate_exports/images_rugby/MonkeyWalkNArt5.png", [8, 251, 522, 16, 20]); +V.set("animate_exports/images_rugby/MonkeyWalkNArt6.png", [8, 352, 589, 14, 18]); +V.set("animate_exports/images_rugby/MonkeyWalkSArt1.png", [8, 398, 490, 17, 20]); +V.set("animate_exports/images_rugby/MonkeyWalkSArt2.png", [8, 210, 534, 16, 19]); +V.set("animate_exports/images_rugby/MonkeyWalkSArt3.png", [8, 229, 534, 16, 18]); +V.set("animate_exports/images_rugby/MonkeyWalkSArt4.png", [8, 319, 522, 16, 20]); +V.set("animate_exports/images_rugby/MonkeyWalkSArt5.png", [8, 338, 522, 16, 20]); +V.set("animate_exports/images_rugby/MonkeyWalkSArt6.png", [8, 229, 555, 15, 18]); +V.set("animate_exports/images_rugby/MonkeyWalkSArt7.png", [8, 357, 521, 16, 20]); +V.set("animate_exports/images_rugby/MonkeyWalkSArt8.png", [8, 196, 556, 15, 18]); +V.set("animate_exports/images_rugby/MonkeyWinArt.png", [8, 67, 460, 18, 20]); +V.set("animate_exports/images_rugby/NoclipPowerup.png", [8, 443, 188, 15, 11]); +V.set("animate_exports/images_rugby/OniShadowArt.png", [8, 95, 421, 20, 8]); +V.set("animate_exports/images_rugby/PacmanPowerup.png", [8, 233, 220, 12, 14]); +V.set("animate_exports/images_rugby/PassCursorArt.png", [8, 448, 102, 10, 11]); +V.set("animate_exports/images_rugby/RedBallArt.png", [8, 60, 325, 11, 7]); +V.set("animate_exports/images_rugby/RedOniAttackEArt1.png", [8, 88, 217, 38, 51]); +V.set("animate_exports/images_rugby/RedOniAttackEArt2.png", [8, 233, 238, 37, 46]); +V.set("animate_exports/images_rugby/RedOniAttackEArt3.png", [8, 254, 148, 44, 39]); +V.set("animate_exports/images_rugby/RedOniAttackNArt1.png", [8, 44, 174, 41, 49]); +V.set("animate_exports/images_rugby/RedOniAttackNArt2.png", [8, 352, 160, 43, 40]); +V.set("animate_exports/images_rugby/RedOniAttackSArt1.png", [8, 153, 109, 46, 45]); +V.set("animate_exports/images_rugby/RedOniAttackSArt2.png", [8, 249, 190, 41, 45]); +V.set("animate_exports/images_rugby/RedOniBallArt.png", [8, 301, 162, 41, 50]); +V.set("animate_exports/images_rugby/RedOniRunEArt11.png", [8, 293, 215, 39, 45]); +V.set("animate_exports/images_rugby/RedOniRunEArt2.png", [8, 96, 164, 41, 50]); +V.set("animate_exports/images_rugby/RedOniRunEArt3.png", [8, 183, 246, 37, 44]); +V.set("animate_exports/images_rugby/RedOniRunEArt4.png", [8, 202, 155, 44, 35]); +V.set("animate_exports/images_rugby/RedOniRunEArt5.png", [8, 96, 126, 45, 35]); +V.set("animate_exports/images_rugby/RedOniRunEArt6.png", [8, 129, 249, 37, 44]); +V.set("animate_exports/images_rugby/RedOniRunNArt11.png", [8, 144, 157, 43, 45]); +V.set("animate_exports/images_rugby/RedOniRunNArt2.png", [8, 254, 107, 47, 38]); +V.set("animate_exports/images_rugby/RedOniRunNArt4.png", [8, 398, 160, 42, 40]); +V.set("animate_exports/images_rugby/RedOniRunSArt1.png", [8, 375, 253, 35, 46]); +V.set("animate_exports/images_rugby/RedOniRunSArt2.png", [8, 273, 263, 34, 48]); +V.set("animate_exports/images_rugby/RedOniRunSArt3.png", [8, 293, 0, 55, 53]); +V.set("animate_exports/images_rugby/RockArt.png", [8, 254, 439, 18, 23]); +V.set("animate_exports/images_rugby/SpeedPowerupArt.png", [8, 448, 116, 9, 18]); +V.set("animate_exports/images_rugby/SweatdropArt1.png", [8, 448, 137, 8, 9]); +V.set("animate_exports/images_rugby/SweatdropArt2.png", [8, 423, 102, 7, 6]); +V.set("animate_exports/images_rugby/SweatdropArt3.png", [8, 433, 102, 4, 4]); +V.set("animate_exports/images_rugby/SweatdropArt4.png", [8, 153, 95, 3, 3]); +V.set("animate_exports/images_rugby/TileLightFieldArt.png", [8, 102, 75, 48, 48]); +V.set("animate_exports/images_rugby/TreeBitmap.png", [8, 72, 385, 20, 49]); +V.set("animate_exports/images_rugby/UIBGArt11.png", [8, 0, 0, 90, 60]); +V.set("animate_exports/images_rugby/VolcanoSide1Art.png", [8, 375, 357, 16, 16]); +V.set("animate_exports/images_rugby/VolcanoWallSideEdgeArt.png", [8, 144, 126, 3, 16]); +V.set("animate_exports/images_rugby/WideRockArt.png", [8, 413, 253, 35, 39]); +V.set("animate_exports/images_rugby/YellowBallArt1.png", [8, 60, 335, 11, 7]); +V.set("animate_exports/images_skate/ArrowArt.png", [9, 216, 548, 11, 11]); +V.set("animate_exports/images_skate/ArrowsArt.png", [9, 680, 396, 46, 24]); +V.set("animate_exports/images_skate/BarrierXArt.png", [9, 190, 443, 16, 6]); +V.set("animate_exports/images_skate/BarrierYArt.png", [9, 373, 364, 6, 16]); +V.set("animate_exports/images_skate/BoundBitmap.png", [9, 730, 274, 72, 72]); +V.set("animate_exports/images_skate/ButtonArt.png", [9, 259, 582, 11, 11]); +V.set("animate_exports/images_skate/ButtonBaseArt.png", [9, 204, 485, 32, 26]); +V.set("animate_exports/images_skate/CoinArt1.png", [9, 117, 500, 12, 12]); +V.set("animate_exports/images_skate/CoinArt2.png", [9, 798, 349, 4, 12]); +V.set("animate_exports/images_skate/CoinArt3.png", [9, 563, 481, 10, 12]); +V.set("animate_exports/images_skate/CoinShadow2Art.png", [9, 787, 265, 6, 5]); +V.set("animate_exports/images_skate/CoinShadow3Art.png", [9, 796, 265, 4, 5]); +V.set("animate_exports/images_skate/CrosswalkLineArt.png", [9, 390, 240, 44, 18]); +V.set("animate_exports/images_skate/CrowdAnimals0001.png", [9, 390, 267, 93, 58]); +V.set("animate_exports/images_skate/CrowdAnimals0004.png", [9, 634, 274, 93, 58]); +V.set("animate_exports/images_skate/CrowdAnimals0005.png", [9, 0, 291, 93, 58]); +V.set("animate_exports/images_skate/CrowdAnimals0006.png", [9, 96, 291, 93, 58]); +V.set("animate_exports/images_skate/CrowdAnimals0007.png", [9, 192, 291, 93, 58]); +V.set("animate_exports/images_skate/CrowdAnimals0008.png", [9, 288, 303, 93, 58]); +V.set("animate_exports/images_skate/CrowdAnimals0009.png", [9, 384, 328, 93, 58]); +V.set("animate_exports/images_skate/CrowdAnimals0010.png", [9, 634, 335, 93, 58]); +V.set("animate_exports/images_skate/CrowdStand1Art.png", [9, 538, 153, 96, 96]); +V.set("animate_exports/images_skate/DoorBubbleArt1.png", [9, 149, 620, 14, 20]); +V.set("animate_exports/images_skate/DoorBubbleArt2.png", [9, 132, 620, 14, 24]); +V.set("animate_exports/images_skate/Grafitti1Art.png", [9, 579, 0, 112, 48]); +V.set("animate_exports/images_skate/Grafitti2Art.png", [9, 579, 51, 112, 48]); +V.set("animate_exports/images_skate/Grafitti3Art.png", [9, 579, 102, 112, 48]); +V.set("animate_exports/images_skate/GrindSparksArt1.png", [9, 343, 466, 25, 10]); +V.set("animate_exports/images_skate/GrindSparksArt2.png", [9, 538, 136, 28, 14]); +V.set("animate_exports/images_skate/GrindSparksArt3.png", [9, 390, 489, 30, 17]); +V.set("animate_exports/images_skate/GrindSparksArt4.png", [9, 662, 558, 20, 13]); +V.set("animate_exports/images_skate/GrindSparksArt5.png", [9, 802, 127, 1, 1]); +V.set("animate_exports/images_skate/GrindSparksArt6.png", [9, 231, 514, 23, 15]); +V.set("animate_exports/images_skate/GrindSparksArt7.png", [9, 362, 608, 17, 9]); +V.set("animate_exports/images_skate/InstructionBuildingArt1.png", [9, 439, 0, 137, 133]); +V.set("animate_exports/images_skate/LargeMossyTilesArt.png", [9, 220, 352, 48, 48]); +V.set("animate_exports/images_skate/LargeRoad1Art.png", [9, 271, 364, 48, 48]); +V.set("animate_exports/images_skate/LargeSidewalkTile1Art.png", [9, 322, 364, 48, 48]); +V.set("animate_exports/images_skate/LatnernArt.png", [9, 793, 487, 9, 11]); +V.set("animate_exports/images_skate/LuckyCrashArt.png", [9, 526, 442, 32, 20]); +V.set("animate_exports/images_skate/LuckyGrindEArt1.png", [9, 699, 556, 20, 28]); +V.set("animate_exports/images_skate/LuckyGrindEArt2.png", [9, 74, 544, 21, 29]); +V.set("animate_exports/images_skate/LuckyGrindEArt3.png", [9, 50, 536, 21, 31]); +V.set("animate_exports/images_skate/LuckyGrindNArt1.png", [9, 142, 521, 22, 30]); +V.set("animate_exports/images_skate/LuckyGrindNArt2.png", [9, 167, 521, 22, 30]); +V.set("animate_exports/images_skate/LuckyGrindNArt3.png", [9, 731, 521, 22, 30]); +V.set("animate_exports/images_skate/LuckyGrindSArt1.png", [9, 700, 523, 22, 30]); +V.set("animate_exports/images_skate/LuckyGrindSArt2.png", [9, 651, 524, 22, 30]); +V.set("animate_exports/images_skate/LuckyGrindSArt3.png", [9, 565, 526, 22, 30]); +V.set("animate_exports/images_skate/LuckyGrindWArt1.png", [9, 98, 556, 20, 29]); +V.set("animate_exports/images_skate/LuckyGrindWArt2.png", [9, 192, 548, 21, 29]); +V.set("animate_exports/images_skate/LuckyGrindWArt3.png", [9, 368, 537, 21, 31]); +V.set("animate_exports/images_skate/LuckyKickFlipEArt1.png", [9, 190, 415, 25, 25]); +V.set("animate_exports/images_skate/LuckyKickFlipWArt1.png", [9, 390, 509, 25, 25]); +V.set("animate_exports/images_skate/LuckyMoveEArt2.png", [9, 343, 535, 22, 27]); +V.set("animate_exports/images_skate/LuckyMoveEArt3.png", [9, 590, 526, 22, 28]); +V.set("animate_exports/images_skate/LuckyMoveEArt4.png", [9, 418, 529, 22, 28]); +V.set("animate_exports/images_skate/LuckyMoveNArt1.png", [9, 264, 618, 12, 28]); +V.set("animate_exports/images_skate/LuckyMoveNArt2.png", [9, 790, 578, 13, 29]); +V.set("animate_exports/images_skate/LuckyMoveNArt3.png", [9, 362, 620, 13, 29]); +V.set("animate_exports/images_skate/LuckyMoveNArt4.png", [9, 362, 620, 13, 29]); +V.set("animate_exports/images_skate/LuckyMoveNEArt1.png", [9, 561, 559, 19, 30]); +V.set("animate_exports/images_skate/LuckyMoveNEArt2.png", [9, 748, 578, 18, 31]); +V.set("animate_exports/images_skate/LuckyMoveNEArt3.png", [9, 132, 588, 18, 29]); +V.set("animate_exports/images_skate/LuckyMoveNEArt4.png", [9, 416, 560, 19, 30]); +V.set("animate_exports/images_skate/LuckyMoveNWArt1.png", [9, 216, 563, 19, 30]); +V.set("animate_exports/images_skate/LuckyMoveNWArt2.png", [9, 769, 578, 18, 31]); +V.set("animate_exports/images_skate/LuckyMoveNWArt3.png", [9, 153, 588, 18, 29]); +V.set("animate_exports/images_skate/LuckyMoveNWArt4.png", [9, 279, 564, 19, 30]); +V.set("animate_exports/images_skate/LuckyMoveSEArt1.png", [9, 301, 579, 18, 30]); +V.set("animate_exports/images_skate/LuckyMoveSEArt2.png", [9, 188, 580, 18, 30]); +V.set("animate_exports/images_skate/LuckyMoveSEArt3.png", [9, 662, 574, 18, 32]); +V.set("animate_exports/images_skate/LuckyMoveSEArt4.png", [9, 438, 564, 19, 30]); +V.set("animate_exports/images_skate/LuckyMoveSWArt1.png", [9, 238, 582, 18, 30]); +V.set("animate_exports/images_skate/LuckyMoveSWArt2.png", [9, 69, 576, 18, 32]); +V.set("animate_exports/images_skate/LuckyMoveSWArt3.png", [9, 460, 564, 19, 30]); +V.set("animate_exports/images_skate/LuckyMoveSWArt4.png", [9, 583, 584, 18, 30]); +V.set("animate_exports/images_skate/LuckyMoveWArt1.png", [9, 25, 536, 22, 26]); +V.set("animate_exports/images_skate/LuckyMoveWArt2.png", [9, 0, 536, 22, 27]); +V.set("animate_exports/images_skate/LuckyMoveWArt3.png", [9, 231, 532, 22, 28]); +V.set("animate_exports/images_skate/LuckyMoveWArt4.png", [9, 443, 533, 22, 28]); +V.set("animate_exports/images_skate/LuckyNosegrabArt1.png", [9, 731, 490, 28, 28]); +V.set("animate_exports/images_skate/LuckyNosegrabArt2.png", [9, 623, 510, 25, 24]); +V.set("animate_exports/images_skate/LuckyRideEArt11.png", [9, 204, 514, 24, 31]); +V.set("animate_exports/images_skate/LuckyRideNArt111.png", [9, 468, 533, 14, 28]); +V.set("animate_exports/images_skate/LuckyRideSArt1.png", [9, 174, 613, 14, 28]); +V.set("animate_exports/images_skate/LuckySkateBarrelRollArt.png", [9, 88, 500, 26, 41]); +V.set("animate_exports/images_skate/LuckySkateBarrelRollArt1.png", [9, 700, 490, 28, 30]); +V.set("animate_exports/images_skate/LuckySkateBarrelRollArt2.png", [9, 526, 481, 34, 36]); +V.set("animate_exports/images_skate/LuckySkateBarrelRollArt31.png", [9, 133, 485, 33, 33]); +V.set("animate_exports/images_skate/LuckySkateBarrelRollArt5.png", [9, 423, 489, 29, 37]); +V.set("animate_exports/images_skate/LuckySkateBarrelRollArt6.png", [9, 782, 439, 21, 36]); +V.set("animate_exports/images_skate/LuckySkateBarrelRollArt7.png", [9, 669, 490, 28, 31]); +V.set("animate_exports/images_skate/LuckySkateBarrelRollArt8.png", [9, 356, 489, 31, 43]); +V.set("animate_exports/images_skate/LuckySkateIdkeNArt.png", [9, 191, 613, 14, 27]); +V.set("animate_exports/images_skate/LuckySkateJumpEArt1.png", [9, 756, 550, 21, 25]); +V.set("animate_exports/images_skate/LuckySkateJumpEArt2.png", [9, 590, 557, 20, 24]); +V.set("animate_exports/images_skate/LuckySkateJumpEArt3.png", [9, 515, 588, 18, 29]); +V.set("animate_exports/images_skate/LuckySkateJumpEArt4.png", [9, 0, 566, 19, 29]); +V.set("animate_exports/images_skate/LuckySkateJumpEArt5.png", [9, 676, 524, 20, 31]); +V.set("animate_exports/images_skate/LuckySkateJumpEArt6.png", [9, 257, 514, 20, 31]); +V.set("animate_exports/images_skate/LuckySkateJumpEArt7.png", [9, 256, 548, 20, 31]); +V.set("animate_exports/images_skate/LuckySkateJumpNArt1.png", [9, 230, 615, 14, 27]); +V.set("animate_exports/images_skate/LuckySkateJumpNArt2.png", [9, 765, 612, 15, 26]); +V.set("animate_exports/images_skate/LuckySkateJumpNArt3.png", [9, 635, 584, 18, 30]); +V.set("animate_exports/images_skate/LuckySkateJumpNArt4.png", [9, 635, 584, 18, 30]); +V.set("animate_exports/images_skate/LuckySkateJumpNArt5.png", [9, 20, 598, 17, 31]); +V.set("animate_exports/images_skate/LuckySkateJumpNArt6.png", [9, 322, 579, 17, 31]); +V.set("animate_exports/images_skate/LuckySkateJumpNArt7.png", [9, 385, 602, 17, 30]); +V.set("animate_exports/images_skate/LuckySkateJumpNEArt1.png", [9, 47, 570, 19, 29]); +V.set("animate_exports/images_skate/LuckySkateJumpNEArt2.png", [9, 414, 593, 18, 28]); +V.set("animate_exports/images_skate/LuckySkateJumpNEArt3.png", [9, 683, 587, 18, 30]); +V.set("animate_exports/images_skate/LuckySkateJumpNEArt4.png", [9, 25, 565, 19, 30]); +V.set("animate_exports/images_skate/LuckySkateJumpNEArt5.png", [9, 392, 537, 21, 30]); +V.set("animate_exports/images_skate/LuckySkateJumpNEArt6.png", [9, 515, 555, 20, 30]); +V.set("animate_exports/images_skate/LuckySkateJumpNEArt7.png", [9, 704, 587, 18, 30]); +V.set("animate_exports/images_skate/LuckySkateJumpNWArt1.png", [9, 392, 570, 19, 29]); +V.set("animate_exports/images_skate/LuckySkateJumpNWArt2.png", [9, 209, 596, 18, 28]); +V.set("animate_exports/images_skate/LuckySkateJumpNWArt3.png", [9, 90, 588, 18, 30]); +V.set("animate_exports/images_skate/LuckySkateJumpNWArt4.png", [9, 342, 565, 19, 30]); +V.set("animate_exports/images_skate/LuckySkateJumpNWArt5.png", [9, 615, 537, 21, 30]); +V.set("animate_exports/images_skate/LuckySkateJumpNWArt6.png", [9, 538, 555, 20, 30]); +V.set("animate_exports/images_skate/LuckySkateJumpNWArt7.png", [9, 111, 588, 18, 30]); +V.set("animate_exports/images_skate/LuckySkateJumpSArt1.png", [9, 578, 617, 14, 27]); +V.set("animate_exports/images_skate/LuckySkateJumpSArt2.png", [9, 783, 612, 15, 26]); +V.set("animate_exports/images_skate/LuckySkateJumpSArt3.png", [9, 318, 515, 22, 32]); +V.set("animate_exports/images_skate/LuckySkateJumpSArt4.png", [9, 762, 515, 22, 32]); +V.set("animate_exports/images_skate/LuckySkateJumpSArt5.png", [9, 515, 520, 22, 32]); +V.set("animate_exports/images_skate/LuckySkateJumpSArt6.png", [9, 540, 520, 22, 32]); +V.set("animate_exports/images_skate/LuckySkateJumpSArt7.png", [9, 117, 521, 22, 32]); +V.set("animate_exports/images_skate/LuckySkateJumpSEArt1.png", [9, 536, 588, 18, 29]); +V.set("animate_exports/images_skate/LuckySkateJumpSEArt2.png", [9, 121, 556, 17, 28]); +V.set("animate_exports/images_skate/LuckySkateJumpSEArt3.png", [9, 656, 609, 16, 31]); +V.set("animate_exports/images_skate/LuckySkateJumpSEArt4.png", [9, 787, 211, 16, 32]); +V.set("animate_exports/images_skate/LuckySkateJumpSEArt5.png", [9, 280, 597, 17, 32]); +V.set("animate_exports/images_skate/LuckySkateJumpSEArt6.png", [9, 435, 597, 17, 32]); +V.set("animate_exports/images_skate/LuckySkateJumpSEArt7.png", [9, 342, 598, 17, 31]); +V.set("animate_exports/images_skate/LuckySkateJumpSWArt1.png", [9, 725, 588, 18, 29]); +V.set("animate_exports/images_skate/LuckySkateJumpSWArt2.png", [9, 604, 602, 17, 28]); +V.set("animate_exports/images_skate/LuckySkateJumpSWArt3.png", [9, 60, 611, 16, 31]); +V.set("animate_exports/images_skate/LuckySkateJumpSWArt4.png", [9, 787, 515, 16, 32]); +V.set("animate_exports/images_skate/LuckySkateJumpSWArt5.png", [9, 455, 597, 17, 32]); +V.set("animate_exports/images_skate/LuckySkateJumpSWArt6.png", [9, 0, 598, 17, 32]); +V.set("animate_exports/images_skate/LuckySkateJumpSWArt7.png", [9, 40, 602, 17, 31]); +V.set("animate_exports/images_skate/LuckySkateJumpWArt1.png", [9, 780, 550, 21, 25]); +V.set("animate_exports/images_skate/LuckySkateJumpWArt2.png", [9, 639, 557, 20, 24]); +V.set("animate_exports/images_skate/LuckySkateJumpWArt3.png", [9, 557, 592, 18, 29]); +V.set("animate_exports/images_skate/LuckySkateJumpWArt4.png", [9, 613, 570, 19, 29]); +V.set("animate_exports/images_skate/LuckySkateJumpWArt5.png", [9, 142, 554, 20, 31]); +V.set("animate_exports/images_skate/LuckySkateJumpWArt6.png", [9, 165, 554, 20, 31]); +V.set("animate_exports/images_skate/LuckySkateJumpWArt7.png", [9, 725, 554, 20, 31]); +V.set("animate_exports/images_skate/LuckySkateMoveSArt2.png", [9, 503, 620, 13, 28]); +V.set("animate_exports/images_skate/LuckySkateMoveSArt3.png", [9, 519, 620, 12, 28]); +V.set("animate_exports/images_skate/LuckySkateStillArt2.png", [9, 534, 620, 12, 27]); +V.set("animate_exports/images_skate/LuckySkateStillArt3.png", [9, 675, 620, 12, 27]); +V.set("animate_exports/images_skate/LuckySkateStopEArt.png", [9, 318, 550, 21, 26]); +V.set("animate_exports/images_skate/LuckySkateStopNW1Art.png", [9, 624, 617, 14, 26]); +V.set("animate_exports/images_skate/LuckySkateStopSArt.png", [9, 690, 620, 12, 27]); +V.set("animate_exports/images_skate/LuckySkateStopSEArt.png", [9, 247, 618, 14, 25]); +V.set("animate_exports/images_skate/ModernBuilding1Art.png", [9, 480, 343, 87, 96]); +V.set("animate_exports/images_skate/ModernBuilding2Art.png", [9, 694, 127, 105, 81]); +V.set("animate_exports/images_skate/ModernBuilding3Art.png", [9, 694, 0, 107, 124]); +V.set("animate_exports/images_skate/ModernCityBuildingCluster2Art1.png", [9, 291, 0, 145, 237]); +V.set("animate_exports/images_skate/ModernCityBuildingClusterArt1.png", [9, 0, 352, 85, 181]); +V.set("animate_exports/images_skate/OldBuildingArt1.png", [9, 439, 136, 96, 128]); +V.set("animate_exports/images_skate/OldBuildingArt3.png", [9, 730, 349, 65, 87]); +V.set("animate_exports/images_skate/OldBuildingArt4.png", [9, 538, 252, 93, 88]); +V.set("animate_exports/images_skate/PainStarArt1.png", [9, 277, 352, 3, 3]); +V.set("animate_exports/images_skate/PixelShadowArt.png", [9, 677, 201, 8, 5]); +V.set("animate_exports/images_skate/PowerlinePoleArt1.png", [9, 486, 491, 26, 102]); +V.set("animate_exports/images_skate/RailHorizontal1Art.png", [9, 787, 246, 16, 16]); +V.set("animate_exports/images_skate/RailVerical1BottomEdge1Art.png", [9, 569, 136, 6, 12]); +V.set("animate_exports/images_skate/RailVertical1Art.png", [9, 515, 491, 6, 16]); +V.set("animate_exports/images_skate/RampArt.png", [9, 570, 343, 56, 69]); +V.set("animate_exports/images_skate/RampSteepArt.png", [9, 280, 481, 35, 80]); +V.set("animate_exports/images_skate/RedButtonArt.png", [9, 762, 490, 28, 22]); +V.set("animate_exports/images_skate/Road1Art.png", [9, 319, 613, 16, 16]); +V.set("animate_exports/images_skate/ScreenBGArt.png", [9, 637, 211, 96, 60]); +V.set("animate_exports/images_skate/SkateboardTrick1Art1.png", [9, 657, 201, 17, 4]); +V.set("animate_exports/images_skate/SkateboardTrick1Art2.png", [9, 637, 201, 17, 6]); +V.set("animate_exports/images_skate/SkateboardTrick1Art3.png", [9, 601, 466, 16, 6]); +V.set("animate_exports/images_skate/SkateboardTrick1Art4.png", [9, 711, 423, 15, 7]); +V.set("animate_exports/images_skate/SkateboardTrick1Art5.png", [9, 782, 478, 16, 6]); +V.set("animate_exports/images_skate/SkateboardTrick1Art6.png", [9, 98, 544, 15, 7]); +V.set("animate_exports/images_skate/SparksEArt1.png", [9, 241, 454, 25, 8]); +V.set("animate_exports/images_skate/SparksEArt2.png", [9, 139, 398, 26, 11]); +V.set("animate_exports/images_skate/SparksEArt3.png", [9, 455, 491, 28, 18]); +V.set("animate_exports/images_skate/SparksEArt4.png", [9, 259, 597, 18, 18]); +V.set("animate_exports/images_skate/SparksEArt5.png", [9, 577, 466, 21, 9]); +V.set("animate_exports/images_skate/SparksEArt6.png", [9, 798, 364, 3, 14]); +V.set("animate_exports/images_skate/SparksEArt7.png", [9, 455, 512, 25, 18]); +V.set("animate_exports/images_skate/SparksEArt8.png", [9, 802, 127, 1, 1]); +V.set("animate_exports/images_skate/SparksEArt9.png", [9, 802, 127, 1, 1]); +V.set("animate_exports/images_skate/SquareShadowArt.png", [9, 746, 612, 16, 16]); +V.set("animate_exports/images_skate/StoneLantern1Art.png", [9, 364, 571, 18, 34]); +V.set("animate_exports/images_skate/TVLinesArt.png", [9, 291, 240, 96, 60]); +V.set("animate_exports/images_skate/TanookiDisappearArt6.png", [9, 318, 481, 35, 31]); +V.set("animate_exports/images_skate/TanookiDisappearArt7.png", [9, 623, 478, 43, 29]); +V.set("animate_exports/images_skate/TanookiDisappearArt8.png", [9, 88, 480, 42, 17]); +V.set("animate_exports/images_skate/TanookiDisappearArt9.png", [9, 480, 330, 40, 7]); +V.set("animate_exports/images_skate/TrafficConeArt.png", [9, 482, 596, 18, 25]); +V.set("animate_exports/images_skate/TriggerBitmap.png", [9, 802, 131, 1, 1]); +V.set("animate_exports/images_skate/VendingMachine1Art.png", [9, 300, 612, 16, 25]); +V.set("animate_exports/images_skate/WireArt.png", [9, 637, 196, 48, 2]); +V.set("animate_exports/images_skate/_12Platform1Art.png", [9, 373, 389, 48, 48]); +V.set("animate_exports/images_skate/_12Platform2Art.png", [9, 424, 389, 48, 48]); +V.set("animate_exports/images_skate/_12Platform3Art.png", [9, 629, 396, 48, 48]); +V.set("animate_exports/images_skate/_12Wall2Art.png", [9, 241, 466, 48, 12]); +V.set("animate_exports/images_skate/_12Wall3Art.png", [9, 292, 466, 48, 12]); +V.set("animate_exports/images_skate/_18Wall1Art.png", [9, 526, 466, 48, 12]); +V.set("animate_exports/images_skate/_28Platform1Art.png", [9, 88, 398, 48, 48]); +V.set("animate_exports/images_skate/_28Platform2Art.png", [9, 220, 403, 48, 48]); +V.set("animate_exports/images_skate/_28Platform3Art.png", [9, 139, 415, 48, 48]); +V.set("animate_exports/images_skate/_28Wall1Art.png", [9, 621, 447, 48, 28]); +V.set("animate_exports/images_skate/_28Wall2Art.png", [9, 88, 449, 48, 28]); +V.set("animate_exports/images_skate/_28Wall3Art.png", [9, 190, 454, 48, 28]); +V.set("animate_exports/images_skate/_30DegreeDiagonalWireArt.png", [9, 139, 466, 48, 16]); +V.set("animate_exports/images_skate/_46Platform1Art.png", [9, 271, 415, 48, 48]); +V.set("animate_exports/images_skate/_46Platform2Art.png", [9, 322, 415, 48, 48]); +V.set("animate_exports/images_skate/_46Platform3Art.png", [9, 570, 415, 48, 48]); +V.set("animate_exports/images_skate/_46Wall1Art.png", [9, 373, 440, 48, 46]); +V.set("animate_exports/images_skate/_46Wall2Art.png", [9, 424, 440, 48, 46]); +V.set("animate_exports/images_skate/_46Wall3Art.png", [9, 475, 442, 48, 46]); +V.set("animate_exports/images_skate/_60Platform1Art.png", [9, 680, 439, 48, 48]); +V.set("animate_exports/images_skate/_60Platform3Art.png", [9, 731, 439, 48, 48]); +V.set("animate_exports/images_skate/_60Wall1Art.png", [9, 736, 211, 48, 60]); +V.set("animate_exports/images_skate/_60Wall2Art.png", [9, 486, 267, 48, 60]); +V.set("animate_exports/images_skate/_60Wall3Art.png", [9, 169, 352, 48, 60]); +V.set("animate_exports/images_skate/_6x6PavementArt.png", [9, 0, 0, 288, 288]); +V.set("animate_exports/images_skate/championart11.png", [9, 88, 352, 78, 43]); +V.set("animate_exports/images_skate/championart2.png", [9, 577, 478, 43, 45]); +V.set("animate_exports/images_skate/championart3.png", [9, 637, 153, 53, 40]); +V.set("animate_exports/images_skate/championskateboardart1.png", [9, 680, 423, 28, 7]); +V.set("animate_exports/images_skate/sparkle1.png", [9, 271, 352, 3, 5]); +V.set("animate_exports/images_skate/sparkleart2.png", [9, 523, 330, 7, 9]); +V.set("animate_exports/images_skate/sparkleart3.png", [9, 641, 617, 11, 17]); +V.set("animate_exports/images_skate/tailart1.png", [9, 238, 563, 13, 11]); +V.set("animate_exports/images_skate/tailart2.png", [9, 651, 510, 14, 8]); +V.set("animate_exports/images_skate/tailart3.png", [9, 301, 564, 12, 11]); +V.set("animate_exports/images_skate/teaketlleart2.png", [9, 241, 481, 36, 30]); +V.set("animate_exports/images_skate/teakettleart1.png", [9, 169, 485, 32, 33]); +V.set("animate_exports/images_syncswim/ArrowLeftMiss.png", [10, 286, 183, 23, 19]); +V.set("animate_exports/images_syncswim/ArrowLeftSucceed.png", [10, 702, 247, 23, 19]); +V.set("animate_exports/images_syncswim/ArrowTrackgradient.png", [10, 448, 506, 24, 180]); +V.set("animate_exports/images_syncswim/BoundBitmap.png", [10, 625, 94, 72, 72]); +V.set("animate_exports/images_syncswim/ButtonPress.png", [10, 608, 207, 12, 12]); +V.set("animate_exports/images_syncswim/ButtonPressmiss.png", [10, 608, 222, 12, 12]); +V.set("animate_exports/images_syncswim/ButtonPresssuccess.png", [10, 608, 237, 12, 12]); +V.set("animate_exports/images_syncswim/ButtonPresssuccess0001.png", [10, 728, 269, 12, 12]); +V.set("animate_exports/images_syncswim/CircleBorder.png", [10, 709, 49, 28, 28]); +V.set("animate_exports/images_syncswim/GrassFishies0000.png", [10, 495, 303, 60, 76]); +V.set("animate_exports/images_syncswim/GrassFishies0002.png", [10, 558, 309, 60, 76]); +V.set("animate_exports/images_syncswim/GrassFishies0007.png", [10, 621, 309, 60, 76]); +V.set("animate_exports/images_syncswim/GrassFishies0009.png", [10, 684, 309, 60, 76]); +V.set("animate_exports/images_syncswim/GrassFishies0011.png", [10, 419, 310, 60, 76]); +V.set("animate_exports/images_syncswim/GrassFishies0014.png", [10, 0, 318, 60, 76]); +V.set("animate_exports/images_syncswim/GrassFishies0016.png", [10, 268, 324, 60, 76]); +V.set("animate_exports/images_syncswim/LuckyDown0003_trim.png", [10, 528, 533, 34, 55]); +V.set("animate_exports/images_syncswim/LuckyDown0005_trim.png", [10, 361, 546, 33, 44]); +V.set("animate_exports/images_syncswim/LuckyDown0015_trim.png", [10, 528, 533, 34, 55]); +V.set("animate_exports/images_syncswim/LuckyIdle0000_trim.png", [10, 409, 506, 36, 54]); +V.set("animate_exports/images_syncswim/LuckyRight0001_trim.png", [10, 569, 507, 36, 53]); +V.set("animate_exports/images_syncswim/LuckyRight0003_trim.png", [10, 709, 0, 37, 46]); +V.set("animate_exports/images_syncswim/LuckyRight0004_trim.png", [10, 704, 505, 37, 46]); +V.set("animate_exports/images_syncswim/LuckyRight0005_trim.png", [10, 528, 482, 38, 48]); +V.set("animate_exports/images_syncswim/LuckyRight0012_trim.png", [10, 255, 488, 38, 48]); +V.set("animate_exports/images_syncswim/LuckyRight0014_trim.png", [10, 680, 554, 30, 53]); +V.set("animate_exports/images_syncswim/LuckyRight0015_trim.png", [10, 298, 556, 29, 51]); +V.set("animate_exports/images_syncswim/LuckyRight0016_trim.png", [10, 713, 554, 29, 56]); +V.set("animate_exports/images_syncswim/LuckyUp0003_trim.png", [10, 111, 531, 35, 55]); +V.set("animate_exports/images_syncswim/LuckyUp0005_trim.png", [10, 262, 539, 33, 56]); +V.set("animate_exports/images_syncswim/LuckyUp0015_trim.png", [10, 149, 531, 35, 55]); +V.set("animate_exports/images_syncswim/Luckyleft0002_trim.png", [10, 0, 507, 36, 54]); +V.set("animate_exports/images_syncswim/Luckyleft0003_trim.png", [10, 647, 554, 30, 57]); +V.set("animate_exports/images_syncswim/Luckyleft0004_trim.png", [10, 564, 207, 41, 48]); +V.set("animate_exports/images_syncswim/Luckyleft0005_trim.png", [10, 663, 505, 38, 46]); +V.set("animate_exports/images_syncswim/Luckyleft0007_trim.png", [10, 608, 507, 36, 46]); +V.set("animate_exports/images_syncswim/Luckyleft0012_trim.png", [10, 187, 532, 35, 46]); +V.set("animate_exports/images_syncswim/Luckyleft0015_trim.png", [10, 225, 539, 34, 54]); +V.set("animate_exports/images_syncswim/OldManIdle0000_trim.png", [10, 69, 275, 65, 92]); +V.set("animate_exports/images_syncswim/OldMandown0003_trim.png", [10, 356, 207, 67, 91]); +V.set("animate_exports/images_syncswim/OldMandown0005_trim.png", [10, 0, 183, 70, 87]); +V.set("animate_exports/images_syncswim/OldManleft0002_trim.png", [10, 63, 370, 58, 93]); +V.set("animate_exports/images_syncswim/OldManleft0004_trim.png", [10, 495, 207, 66, 93]); +V.set("animate_exports/images_syncswim/OldManleft0015_trim.png", [10, 356, 301, 60, 93]); +V.set("animate_exports/images_syncswim/OldManright0002_trim.png", [10, 482, 382, 58, 91]); +V.set("animate_exports/images_syncswim/OldManright0004_trim.png", [10, 137, 275, 63, 88]); +V.set("animate_exports/images_syncswim/OldManup0003_trim.png", [10, 137, 366, 59, 92]); +V.set("animate_exports/images_syncswim/OldManup0005_trim.png", [10, 625, 169, 70, 92]); +V.set("animate_exports/images_syncswim/OtoDown_0003_trim.png", [10, 426, 207, 66, 100]); +V.set("animate_exports/images_syncswim/OtoDown_0005_trim.png", [10, 625, 0, 81, 91]); +V.set("animate_exports/images_syncswim/OtoDown_0006_trim.png", [10, 543, 388, 58, 91]); +V.set("animate_exports/images_syncswim/OtoIdle0000_trim.png", [10, 0, 397, 54, 107]); +V.set("animate_exports/images_syncswim/OtoLeft0003_trim.png", [10, 57, 466, 51, 117]); +V.set("animate_exports/images_syncswim/OtoLeft0005_trim.png", [10, 663, 388, 56, 114]); +V.set("animate_exports/images_syncswim/OtoRight0003_trim.png", [10, 419, 389, 56, 114]); +V.set("animate_exports/images_syncswim/OtoRight0005_trim.png", [10, 286, 207, 67, 114]); +V.set("animate_exports/images_syncswim/OtoRight0015_trim.png", [10, 604, 388, 56, 116]); +V.set("animate_exports/images_syncswim/OtoUp0003_trim.png", [10, 203, 275, 62, 113]); +V.set("animate_exports/images_syncswim/OtoUp0005_trim.png", [10, 478, 476, 47, 129]); +V.set("animate_exports/images_syncswim/PortraitLucky.png", [10, 388, 397, 22, 22]); +V.set("animate_exports/images_syncswim/SyncSwimGameNewBG.png", [10, 0, 0, 320, 180]); +V.set("animate_exports/images_syncswim/Turtledown0003_trim.png", [10, 199, 391, 55, 66]); +V.set("animate_exports/images_syncswim/Turtledown0005_trim.png", [10, 361, 480, 45, 63]); +V.set("animate_exports/images_syncswim/Turtledown0015_trim.png", [10, 199, 391, 55, 66]); +V.set("animate_exports/images_syncswim/Turtleidle_trim.png", [10, 124, 461, 53, 67]); +V.set("animate_exports/images_syncswim/Turtleleft0003_trim.png", [10, 698, 169, 47, 75]); +V.set("animate_exports/images_syncswim/Turtleleft0005_trim.png", [10, 257, 403, 53, 82]); +V.set("animate_exports/images_syncswim/Turtleleft0015_trim.png", [10, 698, 169, 47, 75]); +V.set("animate_exports/images_syncswim/Turtleright0003_trim.png", [10, 700, 94, 46, 70]); +V.set("animate_exports/images_syncswim/Turtleright0005_trim.png", [10, 331, 397, 54, 80]); +V.set("animate_exports/images_syncswim/Turtleright0015_trim.png", [10, 700, 94, 46, 70]); +V.set("animate_exports/images_syncswim/Turtleup0003_trim.png", [10, 199, 460, 53, 69]); +V.set("animate_exports/images_syncswim/Turtleup0005_trim.png", [10, 313, 480, 45, 73]); +V.set("animate_exports/images_syncswim/Turtleup0015_trim.png", [10, 199, 460, 53, 69]); +V.set("animate_exports/images_syncswim/Uparrowbubbles0004.png", [10, 73, 230, 66, 42]); +V.set("animate_exports/images_syncswim/Uparrowbubbles0005.png", [10, 142, 230, 66, 42]); +V.set("animate_exports/images_syncswim/Uparrowbubbles0008.png", [10, 211, 230, 66, 42]); +V.set("animate_exports/images_syncswim/Uparrowbubbles0010.png", [10, 564, 264, 66, 42]); +V.set("animate_exports/images_syncswim/Uparrowbubbles0013.png", [10, 633, 264, 66, 42]); +V.set("animate_exports/images_syncswim/Uparrowbubbles0016.png", [10, 0, 273, 66, 42]); +V.set("animate_exports/images_syncswim/arrowdown.png", [10, 331, 324, 19, 23]); +V.set("animate_exports/images_syncswim/arrowleft.png", [10, 702, 269, 23, 19]); +V.set("animate_exports/images_syncswim/arrowright.png", [10, 722, 388, 23, 19]); +V.set("animate_exports/images_syncswim/arrowup.png", [10, 331, 350, 19, 23]); +V.set("animate_exports/images_syncswim/buttonlongleft.png", [10, 268, 275, 12, 12]); +V.set("animate_exports/images_syncswim/buttonlongleftmiss.png", [10, 728, 284, 12, 12]); +V.set("animate_exports/images_syncswim/buttonlongmid.png", [10, 268, 290, 12, 12]); +V.set("animate_exports/images_syncswim/buttonlongmidmiss.png", [10, 702, 291, 12, 12]); +V.set("animate_exports/images_syncswim/buttonlongright.png", [10, 268, 305, 12, 12]); +V.set("animate_exports/images_syncswim/buttonlongrightmiss.png", [10, 331, 376, 12, 12]); +V.set("animate_exports/images_syncswim/buttonlongrightsuccess.png", [10, 313, 403, 12, 12]); +V.set("animate_exports/images_syncswim/discoball0000.png", [10, 73, 183, 68, 44]); +V.set("animate_exports/images_syncswim/discoball0005.png", [10, 144, 183, 68, 44]); +V.set("animate_exports/images_syncswim/discoball0010.png", [10, 215, 183, 68, 44]); +V.set("animate_exports/images_syncswim/dotlarge.png", [10, 709, 80, 7, 7]); +V.set("animate_exports/images_syncswim/dotsmall.png", [10, 740, 49, 4, 4]); +V.set("animate_exports/images_syncswim/koifish0000.png", [10, 323, 0, 148, 66]); +V.set("animate_exports/images_syncswim/koifish0008.png", [10, 474, 0, 148, 66]); +V.set("animate_exports/images_syncswim/koifish0016.png", [10, 323, 69, 148, 66]); +V.set("animate_exports/images_syncswim/koifishspotted0000.png", [10, 474, 69, 148, 66]); +V.set("animate_exports/images_syncswim/koifishspotted0008.png", [10, 323, 138, 148, 66]); +V.set("animate_exports/images_syncswim/koifishspotted0016.png", [10, 474, 138, 148, 66]); +V.set("animate_exports/images_syncswim/spark.png", [10, 728, 247, 17, 19]); +var xn = function (b) { + if (void 0 === b) { + b = ! 0; + b = void 0 === b ? ! 1 : b; + var g = document.createElement("video"); + g.setAttribute("webkit-playsinline", ""); + g.setAttribute("playsinline", ""); + g.preload = "none"; + g.muted = ! 0; + g.controls = ! 1; + b && (g.style.position = "absolute", g.style.left = "0", g.style.top = "0", g.style.width = "100%", g.style.height = "100%"); + b = g + } + Qc.call(this); + this.ha = b; + this.loaded = this.Bb = ! 1; + this.oc = this.Sc = this.Xd = this.Af = null; + this.Jk = ! 1 +}; +q(xn, Qc); +l = xn.prototype; +l.load = function (b) { + var g = this; + if ( ! this.Xs) { + var m = function () { + }; + this.Xs = new Promise(function (n) { + m = n + }); + var k = null, c = function () { + null !== k && (clearInterval(k), k = null); + g.loaded = ! 0; + m(g) + }; + k = setInterval(function () { + g.ha.readyState === g.ha.HAVE_ENOUGH_DATA && c() + }, 32); + var a = function () { + g.ha.removeEventListener("error", a); + c() + }; + this.ha.addEventListener("canplaythrough", function () { + g.ha.removeEventListener("error", a); + c() + }); + this.ha.addEventListener("error", a); + this.ha.src = b; + this.ha.preload = "auto"; + this.ha.load() + } + return this.Xs +}; +l.play = function () { + var b = this; + this.Xd = new Promise(function (c) { + b.Af = function () { + c(); + b.Af = null; + b.Xd = null + } + }); + this.oc = new Promise(function (c) { + b.Sc = function () { + c(); + b.Sc = null; + b.oc = null + } + }); + var g = function () { + var c; + b.ha.removeEventListener("timeupdate", g); + Rc(b, "play", ! 1, {}); + null === (c = b.Af) || void 0 === c ? void 0 : c.call(b) + }; + this.ha.addEventListener("timeupdate", g); + var m = function () { + var c; + b.ha.removeEventListener("ended", m); + b.Bb = ! 1; + Rc(b, "ended", ! 1, {}); + null === (c = b.Sc) || void 0 === c ? void 0 : c.call(b) + }; + this.ha.addEventListener("ended", + m); + var k = function () { + var c, a; + b.ha.removeEventListener("error", k); + b.Bb = ! 1; + Rc(b, "play", ! 1, {}); + null === (c = b.Af) || void 0 === c ? void 0 : c.call(b); + Rc(b, "ended", ! 1, {}); + null === (a = b.Sc) || void 0 === a ? void 0 : a.call(b) + }; + this.ha.addEventListener("error", k); + this.Bb = ! 0; + this.ha.play().catch(function (c) { + console.error("playback failed", b.ha.src); + k(c) + }); + return {bcb: this.Xd, kqa: this.oc} +}; +l.bcb = function () { + return this.Xd +}; +l.kqa = function () { + return this.oc +}; +l.resume = function () { + return this.Bb ? this.ha.play() : Promise.resolve() +}; +var yn = function (b) { + b.Bb = ! 1; + b.ha.pause(); + Rc(b, "play", ! 1, {}); + Rc(b, "ended", ! 1, {}) +}, zn = function (b) { + var g = ! th("MUTED", ! 1); + b.ha.muted = ! g +}; +var An = function () { + this.kb = document.getElementById("hplogovideo"); + this.ha = this.Ca = null; + this.Bb = {} +}; +An.prototype.clear = function () { + for (; this.kb.firstChild;) this.kb.removeChild(this.kb.firstChild); + this.Ca = this.ha = null +}; +An.prototype.load = function (b) { + var g = this, m, k, c; + return ya(function (a) { + if (1 == a.ha) { + g.kb.style.background = "#000"; + m = window.root + b + ".mp4"; + if (m in g.Bb) return k = g.Bb[m], g.ha = k, a.return(k); + c = new xn; + g.ha = c; + g.Bb[m] = c; + return ra(a, c.load(m), 3) + } + return a.return(c) + }) +}; +var Bn = function (b) { + if ( ! b.Jk) { + b.Jk = ! 0; + var g = b.ha, m = g.muted; + g.muted = ! 0; + g.play().then(function () { + g.pause(); + g.currentTime = 0; + g.muted = m + }) + } +}, Cn = function (b) { + if ( ! b.Jk) { + var g = function () { + Bn(b); + document.body.removeEventListener("touchend", g, ! 1) + }; + document.body.addEventListener("touchend", g, ! 1) + } +}; +An.prototype.play = function (b) { + if (this.ha == b) { + var g = b.ha; + g.src in this.Bb && delete this.Bb[g.src]; + this.Ca = b; + this.kb.appendChild(g); + b.play() + } +}; +An.prototype.resume = function () { + this.Ca && this.Ca.resume() +};/* + Portions of this code are from MochiKit, received by + The Closure Authors under the MIT license. All other code is Copyright + 2005-2009 The Closure Authors. All Rights Reserved. +*/ +var En = function (b) { + var g = Dn; + this.oc = []; + this.Xs = g; + this.Jk = b || null; + this.Bb = this.kb = ! 1; + this.Ca = void 0; + this.Af = this.Wt = this.le = ! 1; + this.Sc = 0; + this.ha = null; + this.Xd = 0 +}; +En.prototype.cancel = function (b) { + if (this.kb) this.Ca instanceof En && this.Ca.cancel(); else { + if (this.ha) { + var g = this.ha; + delete this.ha; + b ? g.cancel(b) : (g.Xd--, 0 >= g.Xd && g.cancel()) + } + this.Xs ? this.Xs.call(this.Jk, this) : this.Af = ! 0; + this.kb || (b = new Fn(this), Gn(this), Hn(this, ! 1, b)) + } +}; +En.prototype.Pk = function (b, g) { + this.le = ! 1; + Hn(this, b, g) +}; +var Hn = function (b, g, m) { + b.kb = ! 0; + b.Ca = m; + b.Bb = ! g; + In(b) +}, Gn = function (b) { + if (b.kb) { + if ( ! b.Af) throw new Jn(b); + b.Af = ! 1 + } +}, Kn = function (b, g, m, k) { + b.oc.push([g, m, k]); + b.kb && In(b) +}; +En.prototype.then = function (b, g, m) { + var k, c, a = new Jd(function (n, h) { + c = n; + k = h + }); + Kn(this, c, function (n) { + n instanceof Fn ? a.cancel() : k(n) + }); + return a.then(b, g, m) +}; +En.prototype.$goog_Thenable = ! 0; +var Ln = function (b) { + return Va(b.oc, function (g) { + return "function" === typeof g[1] + }) +}, In = function (b) { + if (b.Sc && b.kb && Ln(b)) { + var g = b.Sc, m = Mn[g]; + m && (r.clearTimeout(m.ha), delete Mn[g]); + b.Sc = 0 + } + b.ha && (b.ha.Xd--, delete b.ha); + g = b.Ca; + for (var k = m = ! 1; b.oc.length && ! b.le;) { + var c = b.oc.shift(), a = c[0], n = c[1]; + c = c[2]; + if (a = b.Bb ? n : a) try { + var h = a.call(c || b.Jk, g); + void 0 !== h && (b.Bb = b.Bb && (h == g || h instanceof Error), b.Ca = g = h); + if (Hd(g) || "function" === typeof r.Promise && g instanceof r.Promise) k = ! 0, b.le = ! 0 + } catch (d) { + g = d, b.Bb = ! 0, Ln(b) || + (m = ! 0) + } + } + b.Ca = g; + k && (h = La(b.Pk, b, ! 0), k = La(b.Pk, b, ! 1), g instanceof En ? (Kn(g, h, k), g.Wt = ! 0) : g.then(h, k)); + m && (g = new Nn(g), Mn[g.ha] = g, b.Sc = g.ha) +}, Jn = function () { + Sa.call(this) +}; +Oa(Jn, Sa); +Jn.prototype.message = "Deferred has already fired"; +Jn.prototype.name = "AlreadyCalledError"; +var Fn = function () { + Sa.call(this) +}; +Oa(Fn, Sa); +Fn.prototype.message = "Deferred was canceled"; +Fn.prototype.name = "CanceledError"; +var Nn = function (b) { + this.ha = r.setTimeout(La(this.kb, this), 0); + this.Ca = b +}; +Nn.prototype.kb = function () { + delete Mn[this.ha]; + throw this.Ca; +}; +var Mn = {}; +var Rn = function () { + var b = Hb(), g = {}, m = g.document || document, k = Fb(b).toString(), c = td(new sd(m), "SCRIPT"), + a = {lqa: c, OY: void 0}, n = new En(a), h = null, d = null != g.timeout ? g.timeout : 5E3; + 0 < d && (h = window.setTimeout(function () { + On(c, ! 0); + var e = new Pn(1, "Timeout reached for loading script " + k); + Gn(n); + Hn(n, ! 1, e) + }, d), a.OY = h); + c.onload = c.onreadystatechange = function () { + c.readyState && "loaded" != c.readyState && "complete" != c.readyState || (On(c, g.vdb || ! 1, h), Gn(n), Hn(n, ! 0, null)) + }; + c.onerror = function () { + On(c, ! 0, h); + var e = new Pn(0, "Error while loading script " + + k); + Gn(n); + Hn(n, ! 1, e) + }; + a = g.attributes || {}; + qb(a, {type: "text/javascript", charset: "UTF-8"}); + qd(c, a); + c.src = Fb(b); + Ub(c); + Qn(m).appendChild(c); + return n +}, Qn = function (b) { + var g; + return (g = (b || document).getElementsByTagName("HEAD")) && 0 !== g.length ? g[0] : b.documentElement +}, Dn = function () { + if (this && this.lqa) { + var b = this.lqa; + b && "SCRIPT" == b.tagName && On(b, ! 0, this.OY) + } +}, On = function (b, g, m) { + null != m && r.clearTimeout(m); + b.onload = Fa; + b.onerror = Fa; + b.onreadystatechange = Fa; + g && window.setTimeout(function () { + b && b.parentNode && b.parentNode.removeChild(b) + }, + 0) +}, Pn = function (b, g) { + var m = "Jsloader error (code #" + b + ")"; + g && (m += ": " + g); + Sa.call(this, m); + this.code = b +}; +Oa(Pn, Sa); +var Sn = function (b) { + var g = (0, Sk.kp)(b), m = g.getLibrary().properties.aB, k = ml.AJ(); + if ( ! V) throw Error("L"); + g = g.Sx(); + m = p(m); + for (var c = m.next(); ! c.done; c = m.next()) { + var a = c.value; + c = a.id; + a = 0 < a.src.indexOf("?") ? a.src.substring(0, a.src.indexOf("?")) : a.src; + (a = V.get("animate_exports/" + a)) && (g[c] = {sheet: k, sprite: a}) + } + (0, Sk.Px)(b) +}, Tn = function (b) { + return function () { + return kl(ml.AJ(), b) + } +}, Un = function (b) { + return function () { + return b.le.Bb() + } +}, Vn = {}, Wn = function () { + return function () { + var b = Gb.toString(); + b in Vn || (Vn[b] = new Promise(function (g) { + var m = + Rn(); + Kn(m, g, null, void 0) + })); + return Vn[b] + } +}; +var X = function (b) { + this.ha = b; + this.le = ! 0 +}; +X.prototype.enable = function () { + this.le = ! 0 +}; +X.prototype.disable = function () { + this.le = ! 1 +}; +X.prototype.tick = function () { +}; +var Xn = function (b, g, m) { + this.name = b; + this.ha = void 0 === g ? null : g; + this.Ca = void 0 === m ? null : m +}; +Xn.prototype.toString = function () { + var b = this.name; + this.ha && (b += ":" + this.ha); + this.Ca && (b += "@" + this.Ca); + return b +}; +var Yn = function (b) { + var g = null, m = null, k = b.split("@"); + if (2 == k.length) { + b = k[0]; + if (k[1].includes(":")) throw Error("M`" + b); + m = k[1] + } else if (1 == k.length) b = k[0]; else throw Error("M`" + b); + k = b.split(":"); + if (2 == k.length) b = k[0], g = k[1]; else if (1 == k.length) b = k[0]; else throw Error("N`" + b); + return new Xn(b, g, m) +}, Zn = function (b, g, m) { + m = void 0 === m ? [] : m; + this.Cc = b; + this.Xw = void 0 === g ? "" : g; + this.Jk = m; + this.Wt = ! 1; + this.ha = null; + this.Ca = new createjs.MovieClip; + this.oc = []; + this.Sc = []; + this.kb = {}; + this.le = ! 0; + this.Xd = new Map; + this.Pk = 0 +}; +Zn.prototype.start = function () { +}; +Zn.prototype.end = function () { +}; +var $n = function (b) { + Promise.all([].concat(ha(b.Jk.map(function (g) { + return g() + })))).then(function () { + Sn(b.Xw); + b.Wt = ! 0 + }) +}, ao = function (b) { + return 0 === b.Jk.length || b.Wt +}; +Zn.prototype.tick = function (b) { + this.Pk = 0; + this.Xd.clear(); + Mj(this, this.Ca); + if (this.le && this.Ca.stage && this.Ca.stage.tickEnabled) for (var g = p(this.oc), m = g.next(); ! m.done; m = g.next()) if (m = m.value, this.le && m.le) try { + m.tick(b) + } catch (k) { + console.error(k) + } +}; +var Pj = function (b, g) { + g = new g; + Mj(b, g, ! 1, ! 0); + return g +}, Qj = function (b, g, m) { + m.addChild(g); + if (g.ec) { + m = p(b.Sc); + for (var k = m.next(); ! k.done; k = m.next()) k.value.gqa(g) + } + qi(g, function (c) { + bo(b, c) + }) +}, co = function (b) { + b.oc = b.parent; + b.parent.removeChild(b) +}, Mj = function (b, g, m, k) { + m = void 0 === m ? ! 0 : m; + k = void 0 === k ? ! 1 : k; + if (g instanceof createjs.Bitmap) g.tickEnabled = ! 1; else if (g instanceof createjs.Text) b = Bh[Of] || .66, g.size || (g.size = parseInt(g.font.split(" ")[0], 10)), m = Ch || "modern" == th("FONT", "retro"), g.font = Math.round(g.size * + b) + "px" + (m ? " Sans-Serif" : " PixelMplus10, Sans-Serif"), g.Ca || (g.Ca = g.lineHeight), g.lineHeight = g.Ca * b; else { + k && g.advance && g.advance(0); + if (g.T && ! g.ec) { + if (g.T && ! g.ec) for (e in g.ec = new Map, g.T) try { + var c = void 0, a = e, n = g.T[e]; + if ( ! (a in mg)) throw Error("D`" + a); + var h = {}; + for (c in n) h[c] = void 0 !== n[c].x && "number" == typeof n[c].x && void 0 !== n[c].y && "number" == typeof n[c].y ? B(n[c].x, n[c].y) : n[c]; + var d = new mg[a](h); + g.ec.set(d.constructor, d) + } catch (f) { + console.error(f) + } + var e = ! 0 + } else e = ! 1; + b.Pk++; + m && bo(b, g); + g.oc = g.parent; + if (e) for (a = p(b.Sc), c = a.next(); ! c.done; c = a.next()) c.value.gu(g); + eo(b, g); + if (g.children && ! pi(g, gi)) for (c = p(g.children), a = c.next(); ! a.done; a = c.next()) Mj(b, a.value, m, k); + if (e) for (b = p(b.Sc), c = b.next(); ! c.done; c = b.next()) c.value.fu(g) + } +}, eo = function (b, g) { + g.T && ! g.hasEventListener("removed") && g.addEventListener("removed", function () { + g.oc && (g.parent = g.oc); + for (var m = p(b.Sc), k = m.next(); ! k.done; k = m.next()) k.value.P_(g); + if (g.ec) for (m = p(g.ec.keys()), k = m.next(); ! k.done; k = m.next()) { + k = b.Xd.get(k.value); + var c = g; + if (k) for (var a = + 0; -1 < (a = k.indexOf(c, a));) k.splice(a, 1) + } + g.parent = null + }) +}, bo = function (b, g) { + if (g.ec) for (var m = p(g.ec.keys()), k = m.next(); ! k.done; k = m.next()) k = k.value, g.ec.get(k).IC && (b.Xd.get(k) || b.Xd.set(k, []), b.Xd.get(k).includes(g) || b.Xd.get(k).push(g)) +}; +Zn.prototype.Xs = function (b) { + this.Ca.gotoAndStop(b) +}; +var fo = function (b, g) { + return b.oc.find(function (m) { + return m instanceof g + }) +}; +l = Zn.prototype; +l.disable = function () { + this.le = ! 1 +}; +l.enable = function () { + this.le = ! 0 +}; +l.JS = function () { + this.Ca.tickEnabled = ! 1 +}; +l.OU = function () { + this.Ca.tickEnabled = ! 0 +}; +l.paused = function () { + return ! this.Ca.tickEnabled +}; +l.find = function (b) { + Array.isArray(b) || (b = [b]); + var g = b; + b = []; + for (var m = p(g), k = m.next(); ! k.done; k = m.next()) { + k = this.Xd.get(k.value); + if ( ! k) return []; + b.push(k) + } + b.sort(function (c, a) { + return c.length - a.length + }); + return b[0].filter(function (c) { + return pi(c, g) + }) +}; +var Y = function (b, g, m) { + b = b.find(g); + b = p(b); + for (g = b.next(); ! g.done; g = b.next()) m(g.value) +}, Q = function (b, g) { + return b.find(g)[0] +}; +var go = function (b) { + return b ? fg.includes(b) : ! 1 +}, ho = function (b) { + return "overworld" == b || "interior" == b +}, io = function (b) { + return !! th(b + "_VIDEO_SEEN", ! 1) +}, jo = function (b) { + return go(b) ? b + "intro" : "" +}, ko = function (b) { + return go(b) ? b + "outro" : "" +}, lo = function (b) { + if (kf()) switch (b) { + case "archery": + return "tutArcheryMobile"; + case "climbing": + return "tutClimbingMobile"; + case "marathon": + return "tutMarathonMobile"; + case "pingpong": + return "tutPingpongMobile"; + case "rugby": + return "tutRugbyMobile"; + case "skate": + return "tutSkateMobile"; + case "swim": + return "tutSwimMobile" + } else switch (b) { + case "archery": + return "tutArcheryDesktop"; + case "climbing": + return "tutClimbingDesktop"; + case "marathon": + return "tutMarathonDesktop"; + case "pingpong": + return "tutPingpongDesktop"; + case "rugby": + return "tutRugbyDesktop"; + case "skate": + return "tutSkateDesktop"; + case "swim": + return "tutSwimDesktop" + } + return null +}; +var mo = [5, 6, 7, 8, 9, 11, 12, 16], no = 0, oo = ! 1, po = {}, qo = [], ro = function (b, g, m) { + po[b] = g; + (void 0 === m ? 0 : m) && ! qo.includes(b) && qo.push(b) +}, so = function (b) { + var g = Date.now(); + 0 == b && (no = g); + po.e = b; + po.t = 0 == no ? -1 : Math.floor(g - no); + po.l = ef || lf() ? 0 : 1; + g = []; + for (var m in po) po.hasOwnProperty(m) && g.push(m + ":" + po[m]); + m = g.join(","); + g = 10 == b; + var k = 0 <= mo.indexOf(b); + nf() && (m += "&ntp=1"); + g ? (g = Xf()) && (m += "&ved=" + g) : k && (Uf || ((g = document.getElementById("hplogoshareved")) ? Uf = g.getAttribute("data-ved") : pf() && bf(df.ha, "sved") && (Uf = df.ha.get("sved"))), + (g = Uf) && (m += "&ved=" + g)); + -1 == m.search("&ei=") && (m += "&ei=", (g = Wf()) && (m += g)); + // for (window.google && window.google.log ? window.google.log("doodle", m) : Je(m); 0 < qo.length;) delete po[qo.pop()]; + oo || 0 != b || gl() || (oo = ! 0, so(10)) +}; +var to = function (b) { + b && (ro("d2", b, ! 0), so(101)) +}, uo = function (b, g, m) { + m = void 0 === m ? ! 1 : m; + ro("d6", b, ! 0); + ro("d7", g, ! 0); + so(109); + m && (ro("d6", b, ! 0), ro("d7", g, ! 0), so(110)) +}, vo = function (b, g) { + ro("d4", b, ! 0); + ro("d5", g, ! 0); + so(106) +}; +var wo = { + archery: {type: "points", Jt: -4E3, Kt: -2E3, It: 0}, + climbing: {type: "points", Jt: 100, Kt: 200, It: 300}, + "climbing:hard": {type: "points", Jt: 100, Kt: 200, It: 300}, + marathon: {type: "time", Jt: 100, Kt: 200, It: 300}, + "marathon:400m": {type: "time", Jt: 100, Kt: 200, It: 300}, + "marathon:800m": {type: "time", Jt: 100, Kt: 200, It: 300}, + "marathon:1500m": {type: "time", Jt: 100, Kt: 200, It: 300}, + "marathon:5000m": {type: "time", Jt: 100, Kt: 200, It: 300}, + pingpong: {type: "points", Jt: 25, Kt: 15, It: 1}, + "pingpong:game": {type: "points", Jt: 25, Kt: 15, It: 1}, + "pingpong:tutorial": { + type: "points", + Jt: 3, Kt: 2, It: 1 + }, + "pingpong:hard": {type: "points", Jt: 50, Kt: 40, It: 30}, + "pingpong:ultra": {type: "points", Jt: 100, Kt: 90, It: 60}, + rugby: {type: "points", Jt: 5E3, Kt: 1400, It: 800}, + skate: {type: "points", Jt: 3500, Kt: 2E3, It: 800}, + "skate:park1": {type: "points", Jt: 3500, Kt: 2E3, It: 800}, + "skate:park2": {type: "points", Jt: 2E4, Kt: 1E4, It: 5E3}, + "skate:park3": {type: "points", Jt: 3E4, Kt: 2E4, It: 1E4}, + swim: {type: "points", Jt: 5E3, Kt: 2E3, It: 1E3}, + "swim:ballad": {type: "points", Jt: 35E3, Kt: 2E4, It: 1E4}, + "swim:disco": {type: "points", Jt: 35E3, Kt: 2E4, It: 1E4}, + "swim:rock": {type: "points", Jt: 35E3, Kt: 2E4, It: 1E4} +}; + +function xo(b) { + return void 0 !== b && null !== b && Number.isFinite(b) && Number.isInteger(b) +} + +var yo = function (b) { + return th(b + "_score", null) +}, zo = function (b) { + return th(b + "_rating", 0) +}, Ao = function (b, g) { + b = wo[b]; + return "time" == b ? g < b.Jt ? 3 : g < b.Kt ? 2 : g < b.It ? 1 : 0 : g > b.Jt ? 3 : g > b.Kt ? 2 : g > b.It ? 1 : 0 +}, Bo = function () { + for (var b = p(fg), g = b.next(); ! g.done; g = b.next()) if (3 > zo(g.value)) return ! 1; + return ! 0 +}, Co = function () { + for (var b = 0, g = p(fg), m = g.next(); ! m.done; m = g.next()) 3 > zo(m.value) && b++; + return 1 >= b +}, Do = function (b, g, m) { + var k = ! 1; + if ("points" == wo[b].type && yo(b) < g || "time" == wo[b].type && (null == yo(b) || yo(b) > g)) uh(b + "_score", g), + k = ! 0; + if (0 >= m) return k; + zo(b) < m && uh(b + "_rating", m); + var c = Number.parseInt(th("SUBMITTED_SCORES", 0), 10); + uh("SUBMITTED_SCORES", c + m); + c = hg.get(th("PLAYER_TEAM", "")); + b = gg.get(b); + var a = Lf("submitScoreUrl", void 0); + a && xo(c) && xo(b) && xo(m) && 0 < m && 3 >= m && fe(a, function (n) { + ne(n.target) + }, "POST", JSON.stringify({team: c, event: b, score: Math.trunc(m)}), {"content-type": "application/json"}); + uo(g, m, k); + return k +}, Ho = function () { + var b = Eo(); + if (b) return Promise.resolve(b); + var g = Lf("leaderboardUrl", void 0); + if ( ! g) if (b = Lf("defaultLeaderboard", + void 0)) try { + var m = Fo(JSON.parse(b)); + return Promise.resolve(m) + } catch (k) { + return Promise.resolve(Go()) + } else return Promise.resolve(Go()); + return new Promise(function (k) { + fe(g, function (c) { + if (ne(c.target)) try { + var a = c.target; + if (a.ha) b:{ + var n = a.ha.responseText; + if (r.JSON) try { + var h = r.JSON.parse(n); + break b + } catch (f) { + } + h = Sc(n) + } else h = void 0; + var d = h; + if (d) { + var e = Fo(d.GlobalScoresTotal); + uh("CACHED_LEADERBOARD", JSON.stringify({timestamp: Date.now(), data: e})); + k(e) + } else k(Go()) + } catch (f) { + k(Go()) + } else k(Go()) + }, "GET") + }) +}; + +function Eo(b) { + b = void 0 === b ? ! 1 : b; + var g = th("CACHED_LEADERBOARD", void 0); + if (g) { + try { + g = JSON.parse(g) + } catch (a) { + return + } + var m = g.timestamp; + g = g.data; + if (m && g) { + var k = Date.now(), c = Io(Lf("leaderboardCacheIntervalMs", 1E4)); + return k < m + c || b ? g : void 0 + } + } +} + +function Go() { + var b = Eo( ! 0); + return b ? b : eg +} + +function Fo(b) { + if ( ! b || ! b.length || 4 !== b.length) return Go(); + for (var g = p(b), m = g.next(); ! m.done; m = g.next()) if (m = m.value, m.TeamId = Io(m.TeamId, 0, null, 3, null), m.GlobalScore = Io(m.GlobalScore, 0, Number.MAX_SAFE_INTEGER), null === m.TeamId || null === m.GlobalScore) return Go(); + return b +} + +function Io(b, g, m, k, c) { + g = void 0 === g ? 0 : g; + m = void 0 === m ? 0 : m; + k = void 0 === k ? Number.MAX_SAFE_INTEGER : k; + c = void 0 === c ? Number.MAX_SAFE_INTEGER : c; + if (void 0 === b || null === b) return null; + if ("number" !== typeof b) try { + b = Number.parseInt(b, 10) + } catch (a) { + return null + } + if ( ! Number.isInteger(b)) { + if ( ! Number.isFinite(b)) return null; + b = Math.trunc(b) + } + b < g && (b = m); + b > k && (b = c); + return b +};var Jo = function () { + return Jf("shortlink", "http://www.google.com/?doodle=" + Yf) +}; +var Ko = new Map([["archery", "ARCHERY_GAME"], ["climbing", "CLIMBING_GAME"], ["marathon", "MARATHON_GAME"], ["pingpong", "PINGPONG_GAME"], ["rugby", "RUGBY_GAME"], ["skate", "SKATEBOARDING_GAME"], ["swim", "SWIM_GAME"], ["overworld", "OVERWORLD_GAME"], ["interior", "INTERIOR_GAME"]]), + Lo = [], Mo = [], Oo = function () { + var b = No(Lo.join(".\n")), g = document.getElementById("hplogoaria"); + b && g && g.textContent != b && (g.textContent = b); + b = No(Mo.join(".\n")); + g = document.getElementById("hplogogamearia"); + b && g && g.textContent != b && (g.textContent = + b) + }, No = function (b) { + b = b.replaceAll("\u202a", ""); + b = b.replaceAll("\u202b", ""); + return b = b.replaceAll("\u202c", "") + }, Po = function (b, g) { + (void 0 === g ? 0 : g) ? Mo.push(b) : Lo.push(b) + }, Z = function (b, g) { + b && (pi(b, wi) ? b.ec.get(wi).pK = g : pi(b, yi) && (b.ec.get(yi).pK = g)) + }, Qo = function (b, g) { + g = void 0 === g ? ! 1 : g; + var m = b.ec.get(yi); + if (m.j_) { + g && (m.C_ = ! 0); + b = ti(b, wi).filter(function (a) { + return a.visible + }); + g = m.lC; + var k = m.pK; + if (0 < b.length && g.ec.get(wi).pK) { + var c = L("ARIA_BUTTON_SELECTED").replace("{{}}", g.ec.get(wi).pK); + m.C_ ? (Po(c), Po(k)) : + (Po(k), Po(c)); + g.ec.has(zi) && (m = g.ec.get(wi).pK, g = g.text.text, g == L("MAPPING_LABEL") ? Po(L("ARIA_PRESS_TO_MAP").replace("{{}}", m)) : Po(L("ARIA_CURRENT_MAPPING").replace("{{}}", m).replace("{{}}", g))); + 1 < b.length && Po(L("ARIA_OTHER_OPTIONS")); + Po(L("ARIA_SELECT_OPTION")) + } else k && (Po(k), Po(L("ARIA_NO_OPTIONS"))) + } + }; +var Ro = function (b) { + Zn.call(this, b); + this.Bb = null +}; +q(Ro, Zn); +var To = function (b, g, m, k) { + m = void 0 === m ? {} : m; + k = void 0 === k ? ! 0 : k; + b.Bb && (co(b.Bb), b.Bb = null); + var c = m.size || 60, a = m.scale || 2, n = m.Qw || B(480, 540 * .28), h = m.duration || 2E3; + b.Bb = new createjs.MovieClip; + b.Bb.mouseEnabled = ! 1; + if (m.shadow) { + var d = So(b, g, c, m.shadow); + d.alpha = .8; + d.y += c / 12 + } + m.outline && (So(b, g, c, m.outline).outline = 2 * m.Hw || 2); + So(b, g, c, m.color || "#fff"); + k && Po(g); + Qj(b, b.Bb, b.Ca); + b.Bb.cache(-g.length * c, 2 * -c, g.length * c * 2, 4 * c); + Dj(b.Bb, n); + "scale" == m.type ? (b.Bb.scaleX = a, b.Bb.scaleY = a, createjs.Tween.get(b.Bb).to({ + scaleX: 1, + scaleY: 1 + }, 500, createjs.Ease.quintOut).wait(h).to({alpha: 0}, 300)) : "scroll_right" == m.type ? (g = b.Bb.x, b.Bb.x -= 1E3, createjs.Tween.get(b.Bb).to({x: g}, 400, createjs.Ease.cubicOut).wait(h).to({x: g + 1E3}, 300, createjs.Ease.cubicIn)) : (g = b.Bb.x, b.Bb.x += 1E3, createjs.Tween.get(b.Bb).to({x: g}, 400, createjs.Ease.cubicOut).wait(h).to({x: g - 1E3}, 300, createjs.Ease.cubicIn)) +}, So = function (b, g, m, k) { + g = new createjs.Text(g, m + "px PixelMplus10", k); + g.textAlign = "center"; + g.y = -m / 2; + b.Bb.addChild(g); + return g +}; +var Uo = function () { + X.apply(this, arguments) +}; +q(Uo, X); +Uo.prototype.tick = function () { + var b = this.ha.Cc.Ca.name, g = lo(b); + b && ! th(b + "_TUTORIAL_SEEN", ! 1) && g && (uh(b + "_TUTORIAL_SEEN", ! 0), Vo(this.ha.Cc.ha, g)); + this.disable() +}; +var Wo = function (b, g) { + X.call(this, b); + this.Ca = 105; + this.kb = g +}; +q(Wo, X); +Wo.prototype.tick = function () { + for (var b = p(this.kb), g = b.next(); ! g.done; g = b.next()) fo(this.ha, g.value).disable(); + if (90 == this.Ca) To(this.ha.Cc.kb, "3", { + size: 100, + shadow: "#222", + outline: "#aaa", + Hw: 2, + type: "scroll_left" + }), A.d1.play(); else if (60 == this.Ca) To(this.ha.Cc.kb, "2", { + size: 100, + shadow: "#222", + outline: "#aaa", + Hw: 2, + type: "scroll_left" + }), A.d1.play(); else if (30 == this.Ca) To(this.ha.Cc.kb, "1", { + size: 100, + shadow: "#222", + outline: "#aaa", + Hw: 2, + type: "scroll_left" + }), A.d1.play(); else if (0 == this.Ca) { + To(this.ha.Cc.kb, L("GO"), + {size: 100, shadow: "#222", outline: "#aaa", Hw: 2, type: "scroll_left"}); + A.Asa.play(); + b = p(this.kb); + for (g = b.next(); ! g.done; g = b.next()) fo(this.ha, g.value).enable(); + this.disable() + } + 0 < this.Ca && this.Ca-- +}; +var Yo = function (b, g, m) { + m = void 0 === m ? null : m; + X.call(this, b); + var k = this; + this.Sc = g; + this.oc = 80; + this.Ca = ! 1; + this.kb = this.Bb = 0; + this.Xd = m || function () { + return Xo(k.ha.Cc.ha, k.Bb, k.kb) + } +}; +q(Yo, X); +var Zo = function (b, g, m) { + if ( ! b.Ca) for (b.Bb = g, b.kb = void 0 === m ? null : m, b.Ca = ! 0, A.$Za.play(), g = p(b.Sc), m = g.next(); ! m.done; m = g.next()) fo(b.ha, m.value).disable() +}; +Yo.prototype.update = function (b, g) { + this.Bb = b; + this.kb = void 0 === g ? null : g +}; +Yo.prototype.tick = function () { + this.Ca && this.oc--; + 0 >= this.oc && this.Xd() +}; +var $o = function (b, g, m, k) { + k = void 0 === k ? "none" : k; + var c = Q(b, Vh); + if (c) { + var a = Pj(b, b.ha.f5); + Qj(b, a, c); + Fj(a, g); + a.Tx.text.text = m; + a.Tx.text.color = "#ffffff"; + "player" == k ? a.Tx.text.color = "#33ff33" : "champ" == k && (a.Tx.text.color = "#ff3333") + } +}, ap = function (b, g, m, k) { + switch (m) { + case "bomb": + m = b.ha.sya; + break; + case "pierce": + m = b.ha.Y4; + break; + default: + m = b.ha.VL + } + m = Pj(b, m); + var c = Q(b, Vh); + c && (Qj(b, m, c), b = m.ec.get(og), c = m.ec.get(M), b.Bx = k, c.velocity = "champ" == k ? B(0, -13) : B(0, -10), Fj(m, g)) +}, bp = function (b, g, m, k) { + this.kb = b; + this.oc = g; + this.Bb = m; + this.RL = k; + this.Pw = 0; + this.Ca = ! 0; + this.ha = 100 +}, cp = function (b) { + X.call(this, b); + this.Ca = []; + this.oc = new bp("both", 35, 57, ["normal"]); + this.Ca.push(this.oc); + this.kb = new bp("both", 45, 60, ["explosive"]); + this.Ca.push(this.kb); + this.Bb = new bp("random", 60, 125, ["fan"]); + this.Ca.push(this.Bb) +}; +q(cp, X); +cp.prototype.tick = function () { + var b = Q(this.ha, pg).ec.get(pg); + b.zx = 2 - b.tick / 1799; + b.zx *= 1.2; + b.zx -= .2; + b.zx = ch(1, b.zx, 2); + this.oc.ha = Math.floor(100 - 38 * b.zx); + this.kb.ha = Math.floor(450 - 90 * b.zx); + this.kb.Ca = 1.05 < b.zx; + this.Bb.ha = Math.floor(60 - 25 * b.zx); + this.Bb.Ca = 1 < b.zx; + b = p(this.Ca); + for (var g = b.next(); ! g.done; g = b.next()) if (g = g.value, g.Ca) { + if (0 == g.Pw) { + var m = Q(this.ha, [Vh, pg]); + m.ec.get(pg); + var k = Pj(this.ha, dp(this, rh(g.RL))); + if (k && m) { + Qj(this.ha, k, m); + m = k.ec.get(tg); + var c = Gj(k), a = N(k); + a = B(a.x - c.x, a.y - c.y); + c = a.x - + c.width; + a = 320 + a.x; + var n = ph(30, 290); + switch (g.kb) { + case "both": + n = .5 < Math.random() ? c : a; + break; + case "left": + n = c; + break; + case "right": + n = a + } + m.left = 160 > n; + Fj(k, B(n, ph(g.oc, g.Bb))) + } + g.Pw = g.ha + } + g.Pw = Math.max(0, g.Pw - 1) + } +}; +var dp = function (b, g) { + switch (g) { + case "obstacle": + return b.ha.ha.wja; + case "addBomb": + return b.ha.ha.Nqa; + case "addPierce": + return b.ha.ha.jba; + case "fan": + return b.ha.ha.a2; + case "explosive": + return b.ha.ha.FDa + } + return b.ha.ha.a_ +}, ep = function () { + X.apply(this, arguments) +}; +q(ep, X); +ep.prototype.tick = function () { + var b = Q(this.ha, pg).ec.get(pg); + Y(this.ha, [tg, M], function (g) { + var m = g.ec.get(M), k = g.ec.get(tg), c = N(g); + c = (8 + c.y) / 80 * Math.pow(b.zx, .8) * .8; + m.velocity = B(k.left ? c : -c, 0); + "fan" == k.type && (m.velocity = kg(m.velocity, .5)); + k = Gj(g); + (k.x < -k.width - 5 && 0 > m.velocity.x || 325 < k.x && 0 < m.velocity.x) && co(g) + }) +}; +var fp = function () { + X.apply(this, arguments) +}; +q(fp, X); +fp.prototype.tick = function () { + var b = this, g = this.ha.find(tg).sort(function (m, k) { + return N(k).y - N(m).y + }); + Y(this.ha, og, function (m) { + m.ec.get(og); + if (-13 > m.y) { + var k = m.ec.get(og), c = Q(b.ha, Vh); + 0 == k.RL.length && "player" == k.Bx && 0 == c.vT.alpha && (k = N(m), k.y = 40, $o(b.ha, k, L("MISS"))); + co(m) + } + k = p(g); + for (c = k.next(); ! c.done; c = k.next()) if (c = c.value, Ej(m) && Ej(c) && Sj(c, m)) { + gp(b, m, c); + break + } + }) +}; +var gp = function (b, g, m) { + var k = g.ec.get(og), c = m.ec.get(tg), a = N(m), n = Q(b.ha, qg).ec.get(qg), h = Q(b.ha, pg).ec.get(pg), + d = Q(b.ha, rg).ec.get(rg); + if ("bomb" == k.type) hp(b, N(m), k.Bx), co(g); else { + var e = ""; + "player" == k.Bx ? n.ut = Math.min(n.ut + 1, 45) : "champ" == k.Bx && (d.ut = Math.min(d.ut + 1, 30)); + k.RL.push(c.type); + d = 0; + switch (c.type) { + case "obstacle": + if ("pierce" == k.type || "explosive" == k.type) d = 50 * k.RL.length, e = "" + d, co(m); else { + A.Bqa.play(); + m = N(m); + "player" == k.Bx && m && $o(b.ha, m, "BLOCKED", k.Bx); + k.RL = []; + co(g); + return + } + break; + case "normal": + d = + 100 * k.RL.length; + e = "" + d; + "pierce" != k.type && "explosive" != k.type && co(g); + co(m); + break; + case "fan": + d = 50 * k.RL.length; + e = "" + d; + co(m); + break; + case "addBomb": + "player" == k.Bx ? (n.u_ = "bomb", e = "+BOMB") : "champ" == k.Bx && (d = 50, e = "" + d); + co(m); + break; + case "addPierce": + "player" == k.Bx ? (n.u_ = "pierce", e = "+PIERCE") : "champ" == k.Bx && (d = 50, e = "" + d); + co(m); + break; + case "explosive": + c = N(m), co(m), hp(b, c, k.Bx), "pierce" != k.type && "explosive" != k.type && co(g) + } + A.zqa.play(); + "player" == k.Bx ? h.bB += d : "champ" == k.Bx && (h.jC += d); + a && $o(b.ha, a, e, k.Bx) + } +}, hp = function (b, + g, m) { + var k = Q(b.ha, Vh), c = Pj(b.ha, b.ha.ha.Y4); + if (k && g) { + A.yqa.play(); + Qj(b.ha, c, k); + var a = c.ec.get(og); + a.Bx = m; + a.type = "explosive"; + Fj(c, g); + m = b.ha.find(tg); + m = p(m); + for (a = m.next(); ! a.done; a = m.next()) a = a.value, Ej(a) && g && 35 > C(N(a).sub(g)) && gp(b, c, a); + m = Pj(b.ha, b.ha.ha.yDa); + k && g && (Qj(b.ha, m, k), Fj(m, g)); + co(c) + } +}, ip = function () { + X.apply(this, arguments) +}; +q(ip, X); +ip.prototype.tick = function () { + var b = Q(this.ha, sg), g = Q(this.ha, pg).ec.get(pg), m = Q(this.ha, qg).ec.get(qg), k = Q(this.ha, rg).ec.get(rg); + b.time.text = Math.ceil(g.tick / 30).toString().padStart(2, "0"); + b.Bp.text = b.time.text; + b.bB.text = "" + g.bB; + b.jC.text = "" + g.jC; + b.sU.gotoAndStop(Math.floor((b.sU.totalFrames - 1) * Math.min(1, m.ut / 45))); + b.uT.gotoAndStop(Math.floor((b.uT.totalFrames - 1) * Math.min(1, k.ut / 30))); + b.IQ.visible = ! 0; + b.rU.visible = ! 1; + b.IQ.gotoAndStop((b.IQ.totalFrames - 1) * (1 - m.Pw / m.zN)); + b.tT.gotoAndStop((b.tT.totalFrames - + 1) * (1 - k.Pw / k.zN)) +}; +var jp = function () { + X.apply(this, arguments) +}; +q(jp, X); +jp.prototype.tick = function () { + var b = Q(this.ha, pg).ec.get(pg), g = Q(this.ha, [rg, M]); + if (g) { + var m = N(g), k = g.ec.get(rg), c = g.ec.get(M); + k.Pw = Math.max(0, k.Pw - 1); + if (0 >= k.Pw) { + var a = this.ha.find(tg); + a = p(a); + for (var n = a.next(); ! n.done; n = a.next()) { + n = n.value; + var h = N(n), d = (m.y - h.y) / 13; + h = h.x + n.ec.get(M).velocity.x * d; + if (n && 5 > Math.abs(h - m.x)) { + ap(this.ha, m, "pierce", "champ"); + g.yU.gotoAndPlay(0); + k.zN = 20 / Math.pow(b.zx, 1.5); + k.Pw = k.zN; + break + } + } + } + 0 == C(c.velocity) && (c = g.ec.get(mi), c || (c = new mi, g.ec.set(mi, c)), 0 >= k.Caa ? (a = B(Math.round(ph(40, + 280)), 169.2), 20 < C(a.sub(m)) && (c.n0 = a, c.speed = 2.5 * Math.pow(b.zx, .5), g.gotoAndStop(c.n0.x < m.x ? "w" : "e"), k.Caa = 90 / Math.pow(b.zx, 1.5))) : (k.Caa--, Nj(g, "shoot", this.ha), g.yU.gotoAndStop(0))) + } +}; +var kp = function () { + X.apply(this, arguments) +}; +q(kp, X); +kp.prototype.tick = function () { + var b = Q(this.ha, qg), g = b.ec.get(M), m = b.ec.get(qg), k = this.ha.Cc.ak.ha, c = 2; + c += c * m.ut / 45; + g.velocity = kg(B(k.x, 0), c); + 0 == k.x ? Nj(b, "idle", this.ha) : 0 < k.x ? Nj(b, "right", this.ha) : Nj(b, "left", this.ha); + m.Pw = Math.max(0, m.Pw - 1); + this.ha.Cc.ak.kb[4] && 0 == m.Pw && (m.zN = Math.ceil(30 * (1 - m.ut / 45 * .77)), m.Pw = m.zN, b = N(b)) && (A.Aqa.play(), ap(this.ha, b, m.u_, "player"), m.u_ = "normal") +}; +var lp = function (b) { + Yo.call(this, b, [cp]) +}; +q(lp, Yo); +lp.prototype.tick = function () { + Yo.prototype.tick.call(this); + var b = Q(this.ha, pg).ec.get(pg); + b.tick = Math.max(0, b.tick - 1); + if (0 == b.tick) { + var g = b.bB - b.jC, m = 0 < g ? 3 : -2E3 < g ? 2 : -4E3 < g ? 1 : 0; + if (this.Ca) this.update(b.bB, m); else { + var k = Q(this.ha, qg).ec.get(qg), c = Q(this.ha, rg).ec.get(rg); + k.Pw = 9999999; + c.Pw = 9999999; + Zo(this, b.bB, m); + To(this.ha.Cc.kb, L(0 < g ? "YOU_WIN" : "YOICHI_WINS"), {size: 80, shadow: "#111", outline: "#555", Hw: 2}) + } + } +}; +var mp = function (b, g) { + X.call(this, b); + this.Ca = g +}; +q(mp, X); +mp.prototype.tick = function () { + var b = this.Ca; + var g = void 0 === g ? 0 : g; + Ae(b); + b.kb && b.kb.gain.setValueAtTime(.2, b.ha.currentTime + g); + this.Ca.play(0, ! 0); + this.disable() +}; +var np = function () { + X.apply(this, arguments) +}; +q(np, X); +np.prototype.tick = function () { + var b = this.ha.find([M, ei, Ui]), g = this.ha.find(Ui); + b = p(b); + for (var m = b.next(); ! m.done; m = b.next()) { + m = m.value; + var k = B(m.ec.get(M).velocity); + if (k && ! (0 >= C(k))) { + for (var c = p(g), a = c.next(); ! a.done; a = c.next()) { + var n = a.value; + if (n != m) { + a = N(m); + var h = a.add(k), d = Gj(n); + if (null != d) { + if (n = Gj(m)) d.x += a.x - n.width - n.x, d.y += a.y - n.height - n.y, d.width += n.width, d.height += n.height; + if (d.contains(h.x, h.y)) { + n = d.x; + var e = d.x + d.width, f = d.y; + d = d.y + d.height; + var v = 1, u = 1; + 0 > k.x ? v = fh(a.x, e, h.x) : 0 < k.x && (v = fh(a.x, + n, h.x)); + 0 > k.y ? u = fh(a.y, d, h.y) : 0 < k.y && (u = fh(a.y, f, h.y)); + (0 > v || 1 < v ? 1 : v) < (0 > u || 1 < u ? 1 : u) ? k.x = 0 : k.y = 0 + } + } + } + } + m.ec.get(M).velocity = k + } + } +}; +var op = function (b) { + pc.call(this); + this.kb = b; + this.ha = {} +}; +Oa(op, pc); +var pp = [], qp = function (b, g) { + var m = document, + k = "mousedown mouseout touchstart mouseup mousemove touchend touchmove contextmenu keypress keydown keyup".split(" "); + Array.isArray(k) || (k && (pp[0] = k.toString()), k = pp); + for (var c = 0; c < k.length; c++) { + var a = Fc(m, k[c], g || b.handleEvent, ! 0, b.kb || b); + if ( ! a) break; + b.ha[a.key] = a + } +}, rp = function (b) { + ob(b.ha, function (g, m) { + this.ha.hasOwnProperty(m) && Oc(g) + }, b); + b.ha = {} +}; +op.prototype.Ca = function () { + op.lS.Ca.call(this); + rp(this) +}; +op.prototype.handleEvent = function () { + throw Error("O"); +}; +var sp = gf() && cf.includes("OS 12_"), tp = function () { + this.Wt = this.Xw = this.Jk = this.ha = this.le = null; + this.qB = ! 1; + this.Xd = null; + this.oc = this.Af = this.kb = this.Bb = ! 1; + this.Sc = ! 0; + this.Pk = this.Xs = ! 1; + this.Ca = null +}; +tp.prototype.reset = function () { + this.Wt = this.Xw = this.Jk = this.ha = this.le = null; + this.qB = ! 1; + this.Xd = null; + this.oc = this.Af = this.kb = this.Bb = ! 1; + this.Sc = ! 0; + this.Pk = this.Xs = ! 1; + this.Ca = null +}; +var wp = function () { + var b = xh(tp); + b.Ca = "landscape"; + document[up] && vp(b) +}, vp = function (b) { + b.Ca && (window.screen.lockOrientation && window.screen.lockOrientation(b.Ca), window.screen.orientation && window.screen.orientation.lock && window.screen.orientation.lock(b.Ca).catch(Fa)) +}, yp = function (b) { + b.Bb && (b.Pk ? (xp.call(document), b.Pk = ! 1) : (b.Xd.call(b.ha), vp(b))) +}, Ap = function (b, g, m) { + var k = void 0 === k ? ! 0 : k; + b.ha = g; + b.le = m; + b.Jk = function () { + }; + b.oc = ! 1; + b.Xd = g[Gf(g, "requestFullscreen")]; + g = !! (document[Gf(document, "fullscreenEnabled")] && + b.Xd && xp); + b.Bb = fl() && g; + b.kb = k && el(); + b.Af = ! k && el(); + b.Sc = ! 0; + if (b.Bb || b.kb) Af(document.body, "margin", "0"), Af(b.ha, "overflow", "visible", "width", "100%", "height", "100%"), document.body.scrollLeft = 0, Fc(window, "scroll", zp, ! 0) +}; +tp.prototype.close = function () { + this.Pk = ! 0; + yp(this) +}; +tp.prototype.update = function () { + if (this.Bb || this.kb || this.Af) { + var b = !! document[up], g = window.innerWidth, m = window.innerHeight; + 0 == window.scrollX && 0 == window.scrollY || window.scrollTo(0, 0); + if (g != this.Xw || m != this.Wt || b != this.qB || this.Sc) { + this.Xs = g < m; + for (var k = ! 1, c = 0; c < this.le.length; ++c) { + var a = this.le[c], n = a.width || parseInt(a.dataset.width, 10), + h = a.height || parseInt(a.dataset.height, 10); + if (this.kb) { + if (pf()) throw""; + el() && kf() && ! qf() && ! jf() && 0 == c && (k = n < h != this.Xs); + var d = k ? Math.min(g / h, m / n) : Math.min(g / n, m / h), + e = d * n, f = d * h, v = this.oc ? "scale(" + d + ") " : ""; + if (k) { + d = (g - f) / 2 + f; + var u = (m - e) / 2; + v += "rotate(90deg)" + } else d = (g - e) / 2, u = (m - f) / 2; + n = this.oc ? n : e; + h = this.oc ? h : f; + Ef(a, "TransformOrigin", "0 0"); + Ef(a, "Transform", v); + Af(a, "position", "absolute", "width", n + "px", "height", h + "px", "left", d + "px", "top", u + "px") + } else gf() && Af(a, "height", m + "px") + } + sp && (c = document.documentElement, a = c.getBoundingClientRect(), a.width == g && a.height == m || Af(c, "width", g + "px", "height", m + "px")); + ! this.Af && ! cf.includes("CriOS") && 0 < g && document.body.clientWidth !== + g && (document.body.clientWidth < document.body.scrollWidth && Af(document.body, "width", Math.min(document.body.scrollWidth, g) + "px"), document.body.clientWidth > g && Af(document.body, "width", g + "px")); + Af(this.ha, "height", "100%", "width", "100%"); + this.Jk(k); + this.Xw = g; + this.Wt = m; + this.qB = b; + this.Sc = ! 1 + } + } +}; +var Bp = function (b, g, m) { + b = document.createElement("div"); + b.style.pointerEvents = "none"; + b.style.position = "absolute"; + b.style.top = "0"; + b.style.left = "0"; + b.style.width = "100%"; + b.style.height = "100%"; + b.style.direction = "ltr"; + b.dataset.width = g.toString(); + b.dataset.height = m.toString(); + return b +}, up = Gf(document, "fullscreenElement"), xp = document[Gf(document, "exitFullscreen")], zp = function (b) { + b.preventDefault(); + b.stopPropagation(); + return ! 1 +}; +var Cp = function (b) { + return go(b) || ho(b) +}, Dp = function (b) { + return 0 == b.ha.Ca.alpha && 0 == b.Sc.Ca.alpha && !! b.Bb && ao(b.Bb) +}, Ep = function () { + X.apply(this, arguments) +}; +q(Ep, X); +Ep.prototype.tick = function () { + var b = this.ha.Cc.ak; + b.Ca[5] && (b.Ca[5] = ! 1, Vo(this.ha.Cc.ha, "pause")) +}; +var Fp = function () { + X.apply(this, arguments) +}; +q(Fp, X); +Fp.prototype.tick = function () { + var b = this.ha.Cc.ak; + b.Ca[5] && (b.Ca[5] = ! 1, th("TUTORIAL_DONE", ! 1) ? Gp(this.ha.Cc.ha) : Vo(this.ha.Cc.ha, "skip")) +}; +var Hp = function () { + X.apply(this, arguments) +}; +q(Hp, X); +Hp.prototype.tick = function () { + var b = this, g = Q(this.ha, Lg); + g && (Dp(this.ha.Cc) && "swim" != this.ha.Cc.Ca.name && kf() && Cp(this.ha.Cc.Ca.name) ? (g.visible = ! 0, si(g, function (m) { + var k = m.ec.get(Mg).fcb, c = b.ha.Cc.ak; + Aj(m, kg(c.ha, k)); + Aj(g, c.le.le) + })) : g.visible = ! 1) +}; +var Ip = function () { + X.apply(this, arguments) +}; +q(Ip, X); +Ip.prototype.tick = function () { + var b = Q(this.ha, Ng); + b && (b.visible = Dp(this.ha.Cc) && "swim" != this.ha.Cc.Ca.name && kf() && Cp(this.ha.Cc.Ca.name)) +}; +var Jp = function () { + X.apply(this, arguments) +}; +q(Jp, X); +Jp.prototype.tick = function () { + var b = Q(this.ha, Og); + b && (b.visible = Dp(this.ha.Cc) && go(this.ha.Cc.Ca.name) && "tutorial" != this.ha.Cc.Ca.ha) +}; +var Kp = function () { + X.apply(this, arguments) +}; +q(Kp, X); +Kp.prototype.tick = function () { + var b = Q(this.ha, Pg); + b && (b.visible = Dp(this.ha.Cc) && ho(this.ha.Cc.Ca.name)) +}; +var Lp = function () { + X.apply(this, arguments) +}; +q(Lp, X); +Lp.prototype.tick = function () { + var b = Q(this.ha, Qg); + if (b) { + var g = tp ? xh(tp) : null; + b.visible = !! g && !! document[up] + } +}; +var Mp = function () { + S.apply(this, arguments) +}; +q(Mp, S); +Mp.prototype.gu = function (b) { + var g = this; + if (b.ec.get(Og)) b.button.on("click", function () { + Vo(g.ha.Cc.ha, "pause") + }); + if (b.ec.get(Pg)) b.button.on("click", function () { + th("TUTORIAL_DONE", ! 1) ? Gp(g.ha.Cc.ha) : Vo(g.ha.Cc.ha, "skip") + }); + if (b.ec.get(Qg)) b.button.on("click", function () { + xh(tp).close() + }) +}; +var Np = function (b) { + return b.ec && b.ec.has(Wh) ? b.ec.get(Wh).Tpa : b.visible ? N(b).y : -999999999999999 +}, Op = function (b) { + if ( ! b.ec) return N(b).y; + var g = b.ec.get(Wh); + if (g) return g.Tpa; + var m = b.ec.get(ei); + g = b.ec.get(aj); + var k = b.ec.get(bj), c = b.ec.get(M); + return g && m && k ? (b = Gj(b), c ? b.y + k.height + g.KT : b.y + k.height + g.z) : N(b).y +}, Pp = function () { + X.apply(this, arguments) +}; +q(Pp, X); +Pp.prototype.tick = function () { + Q(this.ha, Vh).sortChildren(function (b, g) { + return Np(b) - Np(g) + }) +}; +var Qp = function () { + X.apply(this, arguments) +}; +q(Qp, X); +Qp.prototype.tick = function () { + Q(this.ha, Vh).sortChildren(function (b, g) { + return Op(b) - Op(g) + }) +}; +var Rp = function () { + X.apply(this, arguments) +}; +q(Rp, X); +Rp.prototype.tick = function () { + var b = this; + Y(this.ha, [li, M], function (g) { + var m = g.ec.get(li); + g = g.ec.get(M); + var k = b.ha.Cc.ak.ha; + g.velocity = lg(k, m.speed * C(k)) + }) +}; +var Sp = function () { + X.apply(this, arguments) +}; +q(Sp, X); +Sp.prototype.tick = function () { + Y(this.ha, [mi, M], function (b) { + var g = N(b), m = b.ec.get(mi); + b = b.ec.get(M); + g && m.n0 && m.speed && (g = m.n0.sub(g), b.velocity = C(g) > m.speed ? lg(g, m.speed) : g, .01 > C(b.velocity) && (b.velocity = B(0, 0))) + }) +}; +var Tp = function () { + X.apply(this, arguments) +}; +q(Tp, X); +Tp.prototype.tick = function () { + var b = this; + Y(this.ha, [li, M], function (g) { + g = g.ec.get(bi); + var m = b.ha.Cc.ak.ha; + 0 < C(m) && (g.direction = mh(m)) + }) +}; +var Up = function () { + X.apply(this, arguments) +}; +q(Up, X); +Up.prototype.tick = function () { + Y(this.ha, Zh, function (b) { + var g = 1440; + g = void 0 === g ? 0 : g; + var m = b.localToGlobal(0, 0); + m = null != m ? B(m) : B(NaN, NaN); + g = Hj(bg, g).contains(m.x, m.y); + g || co(b) + }) +}; +var Vp = function () { + X.apply(this, arguments) +}; +q(Vp, X); +Vp.prototype.tick = function () { + Y(this.ha, ii, function (b) { + var g = b.ec.get(ii); + b.currentFrame == (0 <= g.Qpa ? g.Qpa : b.totalFrames - 1) && co(b) + }) +}; +var Wp = function () { + X.apply(this, arguments) +}; +q(Wp, X); +Wp.prototype.tick = function () { + var b = this; + Y(this.ha, $h, function (g) { + var m = g.ec.get($h), k = m.hJ; + k.O_ || (k.O_ = function () { + var c = Pj(b.ha, m.aba), a = g.ec.get(aj); + a ? Aj(c, B(g.x, g.y - a.z)) : Aj(c, B(g.x, g.y)); + g.parent && Qj(b.ha, c, g.parent) + }); + k.tick() + }) +}; +var Xp = function () { + S.apply(this, arguments) +}; +q(Xp, S); +Xp.prototype.gqa = function (b) { + var g = b.ec.get(ji); + if (g && g.CY) { + var m = b.parent, k = Cj(b); + g = Pj(this.ha, g.CY); + m && k && (Qj(this.ha, g, m), Dj(g, k), b = b.ec.get(aj), m = g.ec.get(aj), b && m && (m.z = b.z)) + } +}; +var Yp = function () { + S.apply(this, arguments) +}; +q(Yp, S); +Yp.prototype.P_ = function (b) { + var g = b.ec.get(ki); + if (g && g.CY) { + var m = b.parent, k = Cj(b); + g = Pj(this.ha, g.CY); + m && k && (Qj(this.ha, g, m), Dj(g, k), b = b.ec.get(aj), m = g.ec.get(aj), b && m && (m.z = b.z)) + } +}; +var Zp = function (b) { + return b.find(di).concat(b.find(ci)) +}, $p = function (b, g) { + return pi(b, g) ? b : vi(b, g, 3) +}, aq = function () { + X.apply(this, arguments) +}; +q(aq, X); +aq.prototype.tick = function () { + var b = Zp(this.ha); + b = p(b); + for (var g = b.next(); ! g.done; g = b.next()) if (g = g.value, g.visible) { + var m = $p(g, [ci, bi]), k; + if (k = m) k = Jj(g), k = k.includes("n") && k.includes("s") && k.includes("e") && k.includes("w"); + k && (m = m.ec.get(bi).direction, Lj(g, m)) + } +}; +var bq = function () { + X.apply(this, arguments) +}; +q(bq, X); +bq.prototype.tick = function () { + var b = this.ha.find(Ik); + b = p(b); + for (var g = b.next(); ! g.done; g = b.next()) if (g = g.value, g.visible) { + var m = $p(g, Gk).ec.get(Gk), k = g.ec.get(Ik); + 0 < m.ex.length ? Nj(g, k.Qcb, this.ha) : Nj(g, k.Tcb, this.ha) + } +}; +var cq = function () { + X.apply(this, arguments) +}; +q(cq, X); +cq.prototype.tick = function () { + var b = Zp(this.ha); + b = p(b); + for (var g = b.next(); ! g.done; g = b.next()) if (g = g.value, g.visible) { + var m; + if (m = $p(g, [ci, bi])) m = Jj(g), m = m.includes("walk") && m.includes("idle"); + m && (0 < C(this.ha.Cc.ak.ha) ? Nj(g, "walk", this.ha) : Nj(g, "idle", this.ha)) + } +}; +var dq = function () { + X.apply(this, arguments) +}; +q(dq, X); +dq.prototype.tick = function () { + var b = this.ha.find(Zi); + b = p(b); + for (var g = b.next(); ! g.done; g = b.next()) if (g = g.value, g.visible) { + var m = vi(g, aj, 3); + m && (m = m.ec.get(aj), Dj(g, B(0, -m.z))) + } +}; +var fq = function () { + X.apply(this, arguments) +}; +q(fq, X); +fq.prototype.tick = function () { + Y(this.ha, M, function (b) { + var g = b.ec.get(M), m = Cj(b); + Dj(b, B(m.x + g.velocity.x, m.y + g.velocity.y)) + }) +}; +var gq = function (b) { + Zn.call(this, b, "1F5F819ABC834FD88AEB5AFCEFF8263B", [Tn(4), Un(A.dba), Wn()]) +}; +q(gq, Zn); +gq.prototype.start = function () { + this.ha = (0, Sk.kp)("1F5F819ABC834FD88AEB5AFCEFF8263B").getLibrary(); + this.Ca = new this.ha.pT; + this.oc = [new Ep(this), new Uo(this), new mp(this, A.dba), new Wo(this, [Sp, lp, Vp, kp, fp, jp, np, aq]), new Sp(this), new Vp(this), new kp(this), new cp(this), new fp(this), new ep(this), new ip(this), new jp(this), new np(this), new aq(this), new fq(this), new lp(this), new Pp(this)]; + this.Sc = [new Xp(this), new Yp(this)]; + if (gf) { + var b = this.Cc.oc; + b.load("archeryoutro").then(function (g) { + return Cn(g) + }); + Co() && + b.load("outro").then(function (g) { + return Cn(g) + }) + } +}; +var hq = function (b) { + Zn.call(this, b); + this.Af = document.getElementById("hpcanvas"); + this.Bb = new createjs.MovieClip; + this.Bb.mouseEnabled = ! 1; + this.Ca.addChild(this.Bb) +}; +q(hq, Zn); +var iq = function (b) { + b.Bb.alpha = 1; + b.Af.style.opacity = "0%"; + createjs.Tween.removeTweens(b.Bb); + createjs.Tween.get(b.Bb, { + useTicks: ! 0, + override: ! 0 + }).wait(2).to({alpha: 0}, 8).addEventListener("change", function () { + b.Af.style.opacity = 1 - b.Bb.alpha + }) +}; +var jq = B(0, -27), kq = function (b, g) { + b = ch(g.v_, b, g.PL); + return -Math.floor((b - g.PL) / 16) +}, lq = function (b) { + Q(b, ug).visible = ! 1; + Q(b, Fg).visible = ! 1 +}, mq = function (b, g, m) { + m.push(ei); + g = ri(g, m).find(function (k) { + return Oj(k, k.parent, ! 1).contains(b.x, b.y) + }); + return void 0 === g ? null : g +}, nq = function () { + this.Ca = new createjs.DisplayObject; + this.kb = ! 1; + this.ha = ! 0 +}, oq = function () { + X.apply(this, arguments) +}; +q(oq, X); +oq.prototype.tick = function () { + var b = Q(this.ha, Fg), g = b.ec.get(Fg); + g.KY -= $f; + var m = Math.max(0, Math.floor(g.KY / 60)); + g = Math.max(0, Math.floor(g.KY) - 60 * m); + b.ax.text = m + ":" + (10 > g ? 0 : "") + g +}; +var pq = function () { + X.apply(this, arguments) +}; +q(pq, X); +pq.prototype.tick = function () { + var b = this; + Y(this.ha, Dg, function (g) { + var m = Q(b.ha, ug), k = m.ec.get(ug); + if (isNaN(k.v_)) { + var c = Q(b.ha, wg); + c = Oj(c, c.parent, ! 1); + k.v_ = c.y + c.height; + k.PL = N(g).y - k.acb + } + k.altitude = kq(N(g).y, k); + m.ax.text = k.altitude + " m / " + kq(k.v_, k) + " m" + }) +}; +var qq = function () { + X.apply(this, arguments) +}; +q(qq, X); +var sq = function (b, g) { + var m = g.ec.get(Dg); + m.zY = 0; + m.zaa = ! 0; + m.mode = "jump"; + rq(b, g, "jumpHold", ! 0); + A.nza.play() +}, rq = function (b, g, m, k) { + k = void 0 === k ? ! 1 : k; + Nj(g, m, b.ha); + b = ti(g, [di])[0]; + k && b.gotoAndPlay(0) +}; +qq.prototype.tick = function () { + var b = this; + Y(this.ha, Dg, function (g) { + var m = tq(b, g), k = g.ec.get(Dg); + if ("grab_cooldown" == k.mode) m = g.ec.get(Dg), g.ec.get(M).velocity = B(0, 0), uq(g, m.DY), m.d7--, 0 >= m.d7 && (m.mode = "hang_on_hold"), m.EL = Number.MAX_SAFE_INTEGER; else if ("hang_on_hold" == k.mode) { + m = g.ec.get(Dg); + var c = g.ec.get(M), a = b.ha.Cc.ak.ha; + c.velocity = B(0, 0); + uq(g, m.DY); + b.ha.Cc.ak.Ca[4] && (c.velocity = B(1.5 * a.x, -7), sq(b, g)); + .84 < a.y && sq(b, g) + } else if ("jump" == k.mode) { + c = g.ec.get(Dg); + a = g.ec.get(M); + c.zY++; + if (c.zaa) { + if (a.velocity.y = + -7 * (1 - fh(0, c.zY, 35)), ! b.ha.Cc.ak.kb[4] || 10 < c.zY) c.zaa = ! 1 + } else a.velocity.y = Math.min(13.3, a.velocity.y - -.5); + var n = b.ha.Cc.ak.ha; + if (0 != n.x) { + var h = (1 + Math.abs(n.x)) / (1 + Math.sqrt(.5)); + a.velocity.x = ch(-2.8 * h, a.velocity.x + n.x * h * 1.5, 2.8 * h) + } else a.velocity.x *= .5; + (16 < c.zY || m.Ca !== c.DY) && m.kb && m.ha && (c.mode = "grab_cooldown", A.lza.play(), c.d7 = 3, rq(b, g, "hold", ! 0), uq(g, m.Ca)) + } else "ground" == k.mode ? (m = g.ec.get(Dg), n = g.ec.get(bi), c = g.ec.get(M), c.velocity = B(0, 0), a = b.ha.Cc.ak.ha, 0 < C(a) ? (c.velocity = kg(a, 2), n.direction = + mh(a), 0 > a.y && (n = zj(g).add(c.velocity), mq(n, b.ha.Ca, [vg]) || (c.velocity.y = 0)), rq(b, g, "walk")) : rq(b, g, "idle"), m.Y6 = 0 < C(a), m.DY = null, b.ha.Cc.ak.Ca[4] && (c.velocity = B(1.5 * a.x, -7), sq(b, g), m.EL = g.y, m.D_ = mq(zj(g), b.ha.Ca, [vg]))) : "fall" == k.mode && (m = g.ec.get(M), m.velocity.x = 0, m.velocity.y = Math.min(6.7, m.velocity.y - -.5), rq(b, g, "fall")); + m = g.ec.get(Dg); + c = g.ec.get(M); + "jump" === m.mode && 0 > c.velocity.y || "fall" === m.mode || ((a = mq(zj(g), b.ha.Ca, [vg])) ? "ground" !== m.mode && (m.EL === Number.MAX_SAFE_INTEGER || g.y > m.EL - c.velocity.y || + a !== m.D_) && (m.mode = "ground", c.velocity.y = 0, a === m.D_ && m.EL !== Number.MAX_SAFE_INTEGER && m.EL + c.velocity.y >= g.y && Aj(g, B(zj(g).x, m.EL)), m.D_ = null, m.EL = Number.MAX_SAFE_INTEGER) : "ground" === m.mode && (m.mode = "jump")); + (m = mq(N(g), b.ha.Ca, [Cg])) && k.kC !== m && (m.hU && (A.kza.play(), m.hU.gotoAndStop("on")), ! k.kC || N(m).y < N(k.kC).y) && (k.kC = m); + k.kC && (m = k.kC.ec.get(Cg), m.mY ? (m.delay -= $f, 0 >= m.delay && (m.mY = ! 1, k.mode = "ground", Fj(g, N(k.kC)))) : N(g).y > N(k.kC).y + m.Jab && (m.mY = ! 0, m.delay = m.Rpa, k.mode = "fall", A.jda.play())) + }) +}; +var uq = function (b, g) { + var m = b.ec.get(Dg); + if (g.ec.has(Bg)) { + var k = g.ec.get(Bg); + if (k.$T && 0 >= k.CT) { + m.mode = "jump"; + return + } + k.$T || (k.CT = k.Kab, k.$T = ! 0) + } + Fj(b, zj(g).sub(jq)); + m.DY = g +}, tq = function (b, g) { + var m = new nq, k = 9999999999999, c = N(g).add(jq); + Y(b.ha, yg, function (a) { + var n = N(a); + n && c && (n = dh(n, c), n < k && (k = n, m.Ca = a), 15 > n && (m.kb = ! 0), a.ec.has(Bg) ? (a = a.ec.get(Bg), m.ha = ! (a.$T && 0 >= a.CT)) : m.ha = ! 0) + }); + return m +}, vq = function () { + X.apply(this, arguments) +}; +q(vq, X); +vq.prototype.tick = function () { + wq(this); + xq(this); + var b = Q(this.ha, Dg), g = b.ec.get(Dg); + if ("ground" != g.mode && mq(zj(b), this.ha.Ca, [xg])) { + if (g.kC) { + var m = g.kC.ec.get(Cg); + m.mY = ! 0; + m.delay = m.Rpa + } + b.ec.get(M).velocity = B(0, -4); + g.mode = "fall"; + A.mza.play(); + A.jda.play() + } + b = Q(this.ha, Dg).ec.get(Dg); + b.b7--; + if (0 >= b.b7) { + m = Q(this.ha, ug).ec.get(ug); + g = 0; + 43 < m.altitude ? g = 3 : 25 < m.altitude ? g = 2 : 15 < m.altitude && (g = 1); + m = Pj(this.ha, this.ha.ha.sx); + var k = Q(this.ha, Dg), c = Q(this.ha, Vh); + Qj(this.ha, m, c); + c = (Math.random() - .5) * [300, 300, 300, 300][g]; + c += (0 > c ? -1 : 1) * [60, 30, 0, 0][g]; + Fj(m, N(k).sub(B(c, 300))); + b.b7 = [60, 50, 40, 30][g] + } +}; +var wq = function (b) { + Y(b.ha, Bg, function (g) { + var m = g.ec.get(Bg); + m.$T && (0 < m.CT ? (--m.CT, 0 === m.CT && (m.PL = g.y, createjs.Tween.get(g, { + override: ! 0, + useTicks: ! 0 + }).to({ + alpha: 0, + y: m.PL + 180 + }, 30, createjs.Ease.getPowIn(2.2)), m.W_ = m.mcb)) : 0 < m.W_ && (--m.W_, 0 === m.W_ && (g.alpha = 1, g.y = m.PL, m.$T = ! 1))) + }) +}, xq = function (b) { + Y(b.ha, zg, function (g) { + var m = g.ec.get(zg); + null === m.jS && (m.jS = N(g)); + m.hJ = (m.hJ + m.speed * $f) % 1; + Fj(g, m.jS.add(lg(m.sab, (Math.sin(m.hJ * Math.PI * 2) + 1) / 2 * m.distance))) + }); + Y(b.ha, Ag, function (g) { + var m = g.ec.get(Ag); + null === + m.jS && (m.jS = N(g)); + m.hJ = (m.hJ + m.speed * $f) % 1; + var k = m.gab ? 1 - m.hJ : m.hJ; + k = B(Math.sin(k * Math.PI * 2), Math.cos(k * Math.PI * 2)); + k = lg(k, m.radius); + Fj(g, m.jS.add(k)) + }) +}, yq = function () { + X.apply(this, arguments) +}; +q(yq, X); +yq.prototype.tick = function () { + var b = this, g = Q(this.ha, Yh), m = g.ec.get(Eg), k = Q(this.ha, Dg); + if (0 == m.state) { + lq(this.ha); + fo(this.ha, qq).disable(); + fo(this.ha, oq).disable(); + m.state = 1; + var c = Q(this.ha, Xh), a = c.ec.get(Xh), n = a.Upa; + a.Upa = 1; + Fj(g, Bj(g, c)); + N(g); + k = N(k); + createjs.Tween.get(g.kb).wait(1200).to({x: k.x, y: k.y}, 1600, createjs.Ease.quadInOut).call(function () { + a.Upa = n; + m.state = 2; + b.ha.oc.push(new Wo(b.ha, [qq, oq])); + var h = b.ha; + Q(h, ug).visible = ! 0; + Q(h, Fg).visible = ! 0 + }) + } else 2 == m.state && (c = k.ec.get(Dg), c.kC && c.kC.ec.get(Cg).mY || + Fj(g, N(k))) +}; +var zq = function (b) { + Yo.call(this, b, [pq, qq, yq, vq]) +}; +q(zq, Yo); +zq.prototype.tick = function () { + Yo.prototype.tick.call(this); + if ( ! this.Ca) { + var b = Q(this.ha, Fg).ec.get(Fg), g = Q(this.ha, Dg); + if (mq(zj(g), this.ha.Ca, [wg])) To(this.ha.Cc.kb, L("YOU_WIN"), { + size: 80, + shadow: "#222", + Hw: 2 + }), b = kq(N(g).y, Q(this.ha, ug).ec.get(ug)), Zo(this, b, 3), g.ec.get(Dg).Y6 = ! 1, g.ec.get(M).velocity = B(0, 0); else if (0 > b.KY) { + To(this.ha.Cc.kb, L("TIMES_UP"), {size: 80, shadow: "#222", Hw: 2}); + b = kq(N(g).y, Q(this.ha, ug).ec.get(ug)); + var m = 0; + 60 < b ? m = 2 : 30 < b && (m = 1); + Zo(this, b, m); + g.ec.get(Dg).Y6 = ! 1; + g.ec.get(M).velocity = + B(0, 0) + } + } +}; +var Aq = function () { + X.apply(this, arguments) +}; +q(Aq, X); +Aq.prototype.tick = function () { + for (var b = Q(this.ha, Xh), g = p(this.ha.find(Gg)), m = g.next(); ! m.done; m = g.next()) { + m = m.value; + var k = m.ec.get(Gg); + k.yY || (k.yY = ! 0, k.Daa = zj(m), k.Hpa = zj(b)); + var c = k.Hpa.sub(zj(b)); + m.x = k.Daa.x - k.Vpa.x * c.x; + m.y = k.Daa.y - k.Vpa.y * c.y + } +}; +var Bq = function (b, g, m) { + var k = N(g), c = m.localToLocal(480, 270, b); + c = B(k.x - c.x, k.y - c.y); + k = b.localToLocal(0, 0, m); + m = b.localToLocal(c.x, c.y, m); + g = g.ec.get(aj); + g = B(m.x - k.x, m.y - k.y - (g ? .6 * g.z * 3 : 0)); + .1 > Math.abs(g.x) && (g.x = 0); + .1 > Math.abs(g.y) && (g.y = 0); + return B(b.x - g.x, b.y - g.y) +}, Cq = function () { + X.apply(this, arguments) +}; +q(Cq, X); +Cq.prototype.tick = function () { + var b = Q(this.ha, Xh), g = b.ec.get(Xh), m = Q(this.ha, Yh), k = m.ec.get(Yh); + b = Bq(b, m, this.ha.Ca); + g.Qw = b.sub(k.offset) +}; +var Dq = function () { + X.apply(this, arguments) +}; +q(Dq, X); +Dq.prototype.tick = function () { + var b = Q(this.ha, Xh), g = b.ec.get(Xh), m = C(g.Qw.sub(zj(b))); + (m = Math.min(g.Aab * m, g.speed) / m) && g.Baa && (m = gh(zj(b), m, g.Qw), Aj(b, m)); + m = b.globalToLocal(0, 0); + b = b.globalToLocal(960, 540); + b = new createjs.Rectangle(m.x, m.y, b.x - m.x, b.y - m.y); + g.viewport = b +}; +var Eq = function () { + S.apply(this, arguments) +}; +q(Eq, S); +Eq.prototype.fu = function (b) { + if (b.ec.has(Xh)) { + var g = Q(this.ha, Yh), m = this.ha.Ca; + g && (g = Bq(b, g, m), Aj(b, g)) + } +}; +var Fq = function (b) { + Zn.call(this, b, "7B2C344CB74B48B4AFAEBCF1D033F55A", [Tn(5), Un(A.kda), Wn()]) +}; +q(Fq, Zn); +Fq.prototype.start = function () { + this.ha = (0, Sk.kp)("7B2C344CB74B48B4AFAEBCF1D033F55A").getLibrary(); + this.Ca = new this.ha.wT; + this.oc = [new Ep(this), new Uo(this), new mp(this, A.kda), new Wp(this), new Pp(this), new pq(this), new oq(this), new vq(this), new yq(this), new qq(this), new aq(this), new fq(this), new Cq(this), new Dq(this), new Up(this), new Aq(this), new zq(this)]; + if (gf) { + var b = this.Cc.oc; + b.load("climbingoutro").then(function (g) { + return Cn(g) + }); + Co() && b.load("outro").then(function (g) { + return Cn(g) + }) + } +}; +var Gq = function () { + S.apply(this, arguments) +}; +q(Gq, S); +Gq.prototype.gu = function (b) { + var g = this; + b.ec.has(oi) && b.addEventListener("tick", function () { + b.currentFrame + 1 >= b.totalFrames && Hq(g.ha.Cc, new Xn("overworld")) + }) +}; +var Iq = function () { + S.apply(this, arguments) +}; +q(Iq, S); +Iq.prototype.gu = function (b) { + var g = this; + b.ec.has(yi) && (b.addEventListener("close", function () { + return Hq(g.ha.Cc, new Xn("overworld")) + }), b.addEventListener("skip", function () { + return Hq(g.ha.Cc, new Xn("overworld")) + })) +}; +var Jq = function (b, g, m) { + b = Cj(b); + m = kh(m); + return b && null != m ? (b = Cj(g).sub(b), g = C(b), b = kh(b), 0 == g || null == b ? -1 : g * Math.pow(1 + Math.abs(ih(m, b)) / 45, 3)) : -1 +}, Kq = function (b, g, m) { + var k = Cj(b); + return g.filter(function (c) { + if (b == c) return ! 1; + if (k) switch (c = Cj(c).sub(k), m) { + case "e": + return 0 < c.x; + case "w": + return 0 > c.x; + case "n": + return 0 > c.y; + case "s": + return 0 < c.y + } + return ! 1 + }) +}, Lq = function () { + X.apply(this, arguments) +}; +q(Lq, X); +Lq.prototype.tick = function () { + var b = this.ha.Cc.ak; + Y(this.ha, yi, function (g) { + var m = g.ec.get(yi); + if (g.mouseEnabled) { + var k = ti(g, wi).filter(function (e) { + return e.visible + }); + g.stop(); + for (var c = {}, a = p(k), n = a.next(); ! n.done; c = { + dB: c.dB, + QU: c.QU + }, n = a.next()) c.dB = n.value, c.dB.cursor = "pointer", c.QU = c.dB.ec.get(wi), c.dB.stop(), c.dB.hasEventListener("mouseover") || c.dB.addEventListener("mouseover", function (e) { + return function () { + return m.lC = e.dB + } + }(c)), c.dB.hasEventListener("mousedown") || c.dB.addEventListener("mousedown", + function (e) { + return function () { + return e.QU.HC = ! 0 + } + }(c)), c.dB.hasEventListener("pressup") || c.dB.addEventListener("pressup", function (e) { + return function () { + return e.QU.HC = ! 1 + } + }(c)), c.dB.hasEventListener("click") || c.dB.addEventListener("click", function (e) { + return function () { + g.dispatchEvent(e.QU.eventId); + A.H3.play() + } + }(c)); + m.lC && m.lC.visible || (m.lC = Mq(g)[0]); + Qo(g); + k = p(k); + for (n = k.next(); ! n.done; n = k.next()) n = n.value, n.ec.get(wi).HC ? n.gotoAndStop("down") : m.lC == n ? n.gotoAndStop("focus") : n.gotoAndStop("idle"); + if (b.Ca[4] && + m.lC) { + if (n = m.lC.ec.get(wi)) b.Ca[4] = ! 1, g.dispatchEvent(n.eventId), A.H3.play() + } else if (k = b.ha, n = b.Sc, 0 < C(k) && (1 == n || 15 < n && 0 == n % 3)) { + A.H3.play(); + n = Mq(g); + var h = m.lC, d = mh(k, ! 0); + if ("n" == d || "s" == d) for (k = 0; k < n.length; k++) { + if (n[k] == m.lC && (c = 0, "n" == d ? c = k - 1 : "s" == d && (c = k + 1), 0 <= c && c < n.length)) { + m.lC = n[c]; + break + } + } else Cj(h), k = n.filter(function (e) { + return e != h + }), n = k.sort(function (e, f) { + return Jq(h, f, d) - Jq(h, e, d) + }), n = Kq(h, n, d), 0 < n.length && (m.lC = n[n.length - 1]); + Qo(g, ! 0) + } + } + }) +}; +var Mq = function (b) { + b = ti(b, Ai); + b = b.filter(function (g) { + return g.visible + }); + b.sort(function (g, m) { + return g.ec.get(Ai).order - m.ec.get(Ai).order + }); + return b +}, Nq = function () { + X.apply(this, arguments) +}; +q(Nq, X); +Nq.prototype.tick = function () { + var b = this, g = this.ha.Cc.ak; + Y(this.ha, yi, function (m) { + g.Ca[5] && "results" != b.ha.Ca.currentLabel && (g.Ca[5] = ! 1, m.ec.get(yi).C_ = ! 1, b.ha.Cc.ha.close()) + }) +}; +var Oq = function () { + S.apply(this, arguments) +}; +q(Oq, S); +Oq.prototype.fu = function (b) { + if (b.ec.has(ni)) { + var g = b.ec.get(ni).id; + g = L(g); + b.text.text = g; + "cutscene" == this.ha.Cc.Ca.name && Po(g) + } +}; +var Pq = function () { + X.apply(this, arguments) +}; +q(Pq, X); +Pq.prototype.tick = function () { + this.ha.Cc.ak.Ca[5] && Y(this.ha, yi, function (b) { + b.dispatchEvent("skip") + }) +}; +var Qq = function (b) { + Zn.call(this, b, "641FECB93B7041208934B77EA1084BE4", [Tn(2), Wn()]) +}; +q(Qq, Zn); +Qq.prototype.start = function () { + this.ha = (0, Sk.kp)("641FECB93B7041208934B77EA1084BE4").getLibrary(); + this.Ca = new this.ha.pab; + this.oc = [new Lq(this), new Pq(this)]; + this.Sc = [new Gq(this), new Iq(this), new Oq(this)] +}; +var Rq = function (b) { + return (b.ha ? b.ha : b.text) || "" + }, Sq = "karasu ushi tengu trophyMaster coach oni racer momoDad locksmith grandpa blueOni redOni leader".split(" "), + Tq = "lucky inari otohime littleMonkey rainBoy convini TaroMom sleepyCat kijiKid gatekeeper birthdayKid crab momoMom momo dangoKid shiba otter snowOwl".split(" "), + Uq = "TaroMom Urashima arrowCollector bat bigCat birthdayKid birthdayMom blueOni coach convini crab dangoKid darkWolfie deer fish1 fish2 froggy gatekeeper grandpa hare inari invisibleOctopus kappa karasu kijiDad kijiKid kijimuna koma1 koma2 leaderBlue leaderGreen leaderRed leaderYellow littleMonkey locksmith lucky momoBird momoBlue momoDad momoDog momoMom momoMonkey momo momotaro monkeyBaker monkeyRetired noodleCook nova oniBaker oniDreamer otohime otter pango porcupine racerA racerB rainBoy redOni scroll seahorse shiba sister1 sister2 sister3 sleepingCat sleepyCat snowOwl statueArchery statueClimbing statueMarathon statueRugby statueSkate statueSwim statueTableTennis superMountainGirl tanooki tengu trainWorker traineeNoodle traineeRun trophyMaster ushi whiteOni wolfie yoichi youngArcher".split(" "), + Vq = function (b) { + var g = A.Dia; + b && b.tags.W && b.tags.W[0] && (Sq.forEach(function (m) { + b.tags.W[0].startsWith(m) && (g = A.bCa) + }), Tq.forEach(function (m) { + b.tags.W[0].startsWith(m) && (g = A.A2) + })); + return g + }, Wq = function (b) { + X.call(this, b); + this.V = this.node = null; + this.Ca = 0; + this.text = ""; + this.kb = [0, 0, 0]; + this.Bb = ["", "", ""] + }; +q(Wq, X); +Wq.prototype.tick = function () { + if (this.Ca < this.text.length - 1) { + var b = Math.min(2, this.text.length - this.Ca - 1); + this.Ca += b; + 0 < b && Vq(this.node).play() + } + b = Q(this.ha, Hg); + b.text.text = this.text.substring(0, this.Ca); + var g = b.qK.getBounds(), m = Math.max(b.text.getMeasuredHeight() + 20, 68), k = Q(this.ha, Jg); + k.visible = ! 0; + if (this.Ca >= this.text.length - 1) if (0 == this.node.U.length || bl(this.node)) b.JQ.y = m - 5, b.JQ.visible = ! 0; else { + k.visible = ! 1; + k = this.getOptions(); + for (var c = 0, a = 0; a < this.node.U.length; a++) { + var n = k[a]; + n.y = m - 8 + 12 * a; + c = + n.y; + if (n.visible) this.kb[a] < this.Bb[a].length && (this.kb[a]++, n.text.text = this.Bb[a].substring(0, this.kb[a])); else { + if (void 0 == this.kb[a - 1] || this.kb[a - 1] == this.Bb[a - 1].length) n.visible = ! 0, this.kb[a] = 0; + break + } + } + m = c + 8 + } + b.qK.scaleY = eh(b.qK.scaleY, .8, m / g.height); + b = Q(this.ha, [Hg, yi]).ec.get(yi); + b.j_ || 0 !== this.node.U.length && ! bl(this.node) && this.kb[this.node.U.length - 1] !== this.Bb[this.node.U.length - 1].length || (b.j_ = ! 0) +}; +Wq.prototype.getOptions = function () { + return this.ha.find([Ig, wi]).sort(function (b, g) { + return b.ec.get(wi).eventId.localeCompare(g.ec.get(wi).eventId) + }) +}; +var Xq = function (b) { + for (var g = b.tags.W ? b.tags.W[0] : "", m = p("Curious Happy Mad Neutral Sad Shocked Worried".split(" ")), k = m.next(); ! k.done; k = m.next()) if (k = g.replace(k.value, ""), k != g) { + g = k; + break + } + return Uq.includes(g) ? L(g) : Uq.includes(b.V) ? L(b.V) : "" +}, Yq = function (b, g, m) { + b.V = g; + b.node = Yk.get(g + m); + if (b.node) { + var k = Q(b.ha, [Hg, yi]), c = Q(b.ha, Kg); + c && b.node.tags.W && void 0 != c.labels.find(function (n) { + return n.label == b.node.tags.W[0] + }) ? (c.visible = ! 0, Kj(c, b.node.tags.W[0]), k.text.x = 60, k.text.lineWidth = 167) : (c.visible = + ! 1, k.text.x = 10, k.text.lineWidth = 217); + Mj(b.ha, k, ! 0, ! 0); + k.text.text = Dh(Rq(b.node)); + Qf && (k.text.x = 225, k.text.textAlign = "right"); + k.qK.scaleY = 1; + c = k.text.getMetrics().lines; + b.text = ""; + c = p(c); + for (var a = c.next(); ! a.done; a = c.next()) b.text += a.value + "\n"; + c = Xq(b.node); + a = k.ec.get(yi); + a.pK = c + ": " + Rq(b.node); + a.j_ = ! 1; + a.C_ = ! 1; + b.Ca = 0; + k.text.text = ""; + Q(b.ha, Jg).visible = ! 1; + k.JQ.visible = ! 1; + k = b.getOptions(); + b.kb = [0, 0, 0]; + for (c = 0; c < k.length; c++) a = k[c], b.node.U[c] && (b.Bb[c] = Rq(b.node.U[c]), a.text.text = "", a.ec.get(wi).pK = Rq(b.node.U[c])), + a.visible = ! 1; + b.node.tags.zd && uh(b.node.tags.zd[0], b.node.tags.zd[1]); + vo(g, m) + } else console.error("Dialog for NPC: " + g + " and Node: " + m + " not found.") +}, Zq = function (b, g) { + b.Ca < b.text.length - 1 ? b.Ca = b.text.length - 1 : (g = b.node.U[g]) ? Yq(b, b.node.V, g.next) : (b = b.ha.Cc.Sc, b.Cc.Bb.enable(), b.Cc.Bb.OU(), b.disable(), b.Ca.alpha = 0) +}, $q = function () { + S.apply(this, arguments) +}; +q($q, S); +$q.prototype.gu = function (b) { + if (pi(b, [yi, Hg])) { + var g = fo(this.ha.Cc.Sc, Wq); + b.addEventListener("next", function () { + return Zq(g, 0) + }); + b.addEventListener("option1", function () { + return Zq(g, 0) + }); + b.addEventListener("option2", function () { + return Zq(g, 1) + }); + b.addEventListener("option3", function () { + return Zq(g, 2) + }) + } +}; +var ar = function () { + Zn.apply(this, arguments) +}; +q(ar, Zn); +ar.prototype.start = function () { + this.ha = (0, Sk.kp)("B6B0DC09A20D455BAB815F8FE24BCF08").getLibrary(); + this.Ca = new this.ha.Spa; + this.oc = [new Wq(this), new Lq(this)]; + this.Sc = [new $q(this)] +}; +var br = function (b, g, m) { + Yk.get(g + m) ? (b.enable(), b.Ca.alpha = 1, b.Ca.advance(0), Mj(b, b.Ca), b.Cc.Bb.disable(), b.Cc.Bb.JS(), Yq(fo(b, Wq), g, m)) : console.error("Dialog for NPC: " + g + " and Node: " + m + " not found.") +}; +var cr = function () { + Zn.apply(this, arguments) +}; +q(cr, Zn); +cr.prototype.start = function () { + this.ha = (0, Sk.kp)("0E30EA04F8F04E9B8B08CAC42EEA149E").getLibrary(); + this.Ca = new this.ha.Ap; + this.oc = [new Hp(this), new Ip(this), new Jp(this), new Kp(this), new Lp(this)]; + this.Sc = [new Mp(this)] +}; +var er = function (b) { + var g = dr(b); + b = Q(b, Bi); + b = N(b); + uh("PLAYER_LOC", g.ec.get(Ki).name); + uh("PLAYER_POS", b.toJSON()) +}, dr = function (b) { + var g = Q(b, Bi), m = N(g); + return b.find(Ki).sort(function (k, c) { + return C(N(k).sub(m)) - C(N(c).sub(m)) + })[0] +}, fr = function (b, g) { + var m = Q(b, Bi); + if (b = b.find(Ki).filter(function (c) { + return c.ec.get(Ki).name == g + })[0]) { + var k = Gj(b); + b = k ? B(k.x + k.width / 2, k.y + k.height) : N(b); + Fj(m, b) + } +}, hr = function (b, g) { + var m = Q(b, [Bi, M]), k = b.find(Ki).filter(function (d) { + return d.ec.get(Ki).name == g + })[0], c = Q(b, Xh); + if (k && + ! createjs.Tween.hasActiveTweens(c)) { + var a = Gj(k), n = N(m), h = a ? B(a.x + a.width / 2, a.y + a.height) : N(k); + Rj(b.ha.X5, b, n).ec.set(ii, new ii); + Fj(m, h); + m.alpha = 0; + k = Bq(c, m, b.Ca); + m.ec.get(M).velocity = B(0, 0); + Nj(m, "idle", b); + fo(b, gr).disable(); + c.ec.get(Xh).Baa = ! 1; + createjs.Tween.get(c, {useTicks: ! 0}).wait(18).to({x: k.x, y: k.y}, 30, createjs.Ease.quadInOut).call(function () { + m.alpha = 1; + var d = Rj(b.ha.X5, b, h.add(B(0, .1))); + d.gotoAndPlay(2); + d.ec.set(ii, new ii); + fo(b, gr).enable(); + c.ec.get(Xh).Baa = ! 0; + A.uja.play() + }) + } +}, jr = function (b) { + X.call(this, + b); + var g = this; + Lh(b.Cc.ak, function () { + return ir(g) + }) +}; +q(jr, X); +jr.prototype.tick = function () { + Y(this.ha, [Ci, Gk], function (b) { + var g = 0 < b.ec.get(Gk).ex.length; + b.ec.has(Hi) && (b.ec.get(Hi).IC = g) + }) +}; +var ir = function (b) { + Y(b.ha, [Ci, Gk], function (g) { + var m = 0 < g.ec.get(Gk).ex.length; + g = g.ec.get(Ci); + m && (m = Yn(g.name), go(m.name) && null == m.ha && (g = jo(m.name), io(g) || (m = new Xn("video", g))), er(b.ha), Hq(b.ha.Cc, m)) + }) +}, kr = function () { + X.apply(this, arguments) +}; +q(kr, X); +kr.prototype.tick = function () { + var b = this; + Y(this.ha, [Di, Gk], function (g) { + var m = g.ec.get(Gk); + g.ec.get(Di); + 0 < m.ex.length && b.ha.Cc.ak.Ca[4] && lr(b.ha.Cc.ha) + }) +}; +var mr = function (b) { + X.call(this, b); + this.Ca = 0 +}; +q(mr, X); +mr.prototype.tick = function () { + this.Ca++; + 0 == this.Ca % 60 && er(this.ha) +}; +var gr = function () { + X.apply(this, arguments) +}; +q(gr, X); +gr.prototype.tick = function () { + var b = this; + Y(this.ha, [Bi, M, bi], function (g) { + var m = g.ec.get(Bi), k = g.ec.get(M), c = g.ec.get(bi), a = b.ha.Cc.ak, n = a.ha, h = Math.round(8 * C(n)) / 8, + d = mh(n); + 0 < m.Jaa ? m.Jaa-- : 0 < C(n) ? a.Ca[4] ? (Nj(g, "roll", b.ha), m.Jaa = 9, k.velocity = lg(n, 5), c.direction = d, A.uja.play()) : (Nj(g, "walk", b.ha), k.velocity = lg(n, 3 * h), c.direction = d) : (Nj(g, "idle", b.ha), k.velocity = B(0, 0)) + }) +}; +var nr = function () { + X.apply(this, arguments) +}; +q(nr, X); +nr.prototype.tick = function () { + var b = Q(this.ha, Vh); + b && (b = b.ec.get(Vh), 0 === b.currentFrame % 5400 && Ho().then(function (g) { + g.sort(function (m, k) { + return k.GlobalScore - m.GlobalScore + }); + uh("FIRST_PLACE", ig[g[0].TeamId]) + }), b.currentFrame = Math.max(b.currentFrame + 1, 0)) +}; +var or = function () { + X.apply(this, arguments) +}; +q(or, X); +or.prototype.tick = function () { + var b = this; + Y(this.ha, [Gi, Gk], function (g) { + var m = g.ec.get(Gi), k = g.ec.get(Gk), c = b.ha.Cc.ak; + 0 < k.ex.length && ! m.R_ && 3 > m.R6 && (A.Dia.play(), m.R6++); + if ( ! (0 < C(c.ha))) if (c.kb[4] || (m.R_ = ! 1), m.R_ || 0 >= k.ex.length || ! c.Ca[4]) 0 >= k.ex.length && (m.R6 = 0); else { + a:{ + k = g.ec.get(Gi); + if (c = g.ec.get(qk)) for (var a = 0; a < c.conditions.length; a++) if (c.conditions[a] && pk(c.conditions[a])) { + g.ec.get(Gi).node = c.nodes[a]; + break a + } + k.fqa ? k.node = k.fqa : (g = Zk.get(k.name)) && 0 < g.length && (k.node = g[0]) + } + m.node ? (g = b.ha.Cc.Sc, + m.R_ = ! 0, br(g, m.name, m.node)) : console.error("No dialog available for NPC: " + m.name) + } + }) +}; +var pr = function () { + X.apply(this, arguments) +}; +q(pr, X); +pr.prototype.tick = function () { + var b = Q(this.ha, Bi); + b = N(b); + var g = this.ha.find(Hi); + if (0 < g.length) { + var m = g[0], k = dh(b, N(m)); + g = p(g); + for (var c = g.next(); ! c.done; c = g.next()) { + c = c.value; + var a = dh(b, N(c)); + a < k && (m = c, k = a) + } + 50 > k && Po(L(m.ec.get(Hi).label)) + } +}; +var qr = function () { + X.apply(this, arguments) +}; +q(qr, X); +qr.prototype.tick = function () { + var b = Q(this.ha, Vh), g = zj(b); + Y(this.ha, [Li], function (m) { + var k = m.ec.get(Li), c = Math.round(k.Pcb * b.scaleX); + k = Math.round(k.Ocb * b.scaleY); + m.x = (g.x % c + c) % c - c; + m.y = (g.y % k + k) % k - k + }) +}; +var rr = function () { + X.apply(this, arguments) +}; +q(rr, X); +rr.prototype.tick = function () { + var b = this, g = Q(this.ha, Bi), m = N(g); + g = this.ha.find(Li).filter(function (c) { + return c instanceof b.ha.ha.bca + })[0]; + var k = this.ha.find(Ei).filter(function (c) { + return c instanceof b.ha.ha.bT + })[0]; + g && k && (k = Gj(k, ! 0), k = B(k.x, k.y + k.height), m = Math.min(ch(0, (m.x - k.x - 250) / 300, 1), ch(0, (k.y - m.y) / 400, 1)), g.alpha *= .8, g.alpha += .2 * m) +}; +var sr = function () { + S.apply(this, arguments) +}; +q(sr, S); +sr.prototype.fu = function (b) { + if (b.ec.has(Vh)) { + b = this.ha.find(Ki); + b = p(b); + for (var g = b.next(); ! g.done; g = b.next()) g = g.value, g.ec.get(ei) || (g.alpha = 0); + (b = this.ha.Cc.Ca.Ca || th("PLAYER_LOC", null)) && fr(this.ha, b) + } +}; +var tr = function () { + S.apply(this, arguments) +}; +q(tr, S); +tr.prototype.gu = function (b) { + var g = this; + if (pi(b, [Gk, Ii])) { + var m = b.ec.get(Ii); + b.on("trigger", function () { + br(g.ha.Cc.Sc, m.Tbb, m.node) + }) + } +}; +var ur = function () { + S.apply(this, arguments) +}; +q(ur, S); +ur.prototype.gu = function (b) { + var g = this; + if (pi(b, [Gk, Ji])) { + var m = b.ec.get(Ji); + b.on("trigger", function () { + Hq(g.ha.Cc, Yn(m.name)) + }) + } +}; +var vr = function () { + S.apply(this, arguments) +}; +q(vr, S); +vr.prototype.gu = function (b) { + var g = this; + if (pi(b, [Ci, Gk])) { + var m = b.ec.get(Gk), k = b.ec.get(Ci); + b.on("click", function () { + if (0 < m.ex.length) { + var c = Yn(k.name); + if (go(c.name) && null == c.ha) { + var a = jo(c.name); + io(a) || (c = new Xn("video", a)) + } + er(g.ha); + Hq(g.ha.Cc, c) + } + }) + } +}; +var wr = function () { + S.apply(this, arguments) +}; +q(wr, S); +wr.prototype.gu = function (b) { + b.ec.has(Xi) && (b = b.ec.get(Xi), b.Yaa = 1, b.world.solver.iterations = 20) +}; +var xr = function (b) { + var g = Gj(b), m = b.ec.get(aj); + b = b.ec.get(bj); + var k = !! m && !! b; + return new CANNON.Vec3(g.x + g.width / 2, g.y + g.height / 2, (k ? m.z : 0) + (k ? b.height : 100) / 2) +}, yr = function () { + X.apply(this, arguments) +}; +q(yr, X); +yr.prototype.tick = function () { + var b = Q(this.ha, [Vh, Xi]).ec.get(Xi), g = b.world, m = new Map; + Y(this.ha, [ei, Ui], function (f) { + var v = f.ec.get(M), u = Gj(f), E = f.ec.get(Ui), P = !! v; + if (u && ! E.Gp) { + var K = f.ec.get(aj), T = f.ec.get(bj); + K = !! K && !! T; + u = new CANNON.Vec3(u.width, u.height, K ? T.height : 100); + T = K ? T.shape : "box"; + K = E.Gp; + if ( ! K) { + K = E.l_ ? E.l_ : P ? "character" : "prop"; + var F = b.Ffa.get(K); + if ( ! F) throw Error("P`" + K); + F = K = new CANNON.Body(F); + var H = F.addShape; + if ("leftRamp" == T || "rightRamp" == T) { + var I = new CANNON.Vec3(-u.x / 2, -u.y / 2, -u.z / 2), J = + new CANNON.Vec3(-u.x / 2, -u.y / 2, u.z / 2), U = new CANNON.Vec3(-u.x / 2, u.y / 2, -u.z / 2), + O = new CANNON.Vec3(-u.x / 2, u.y / 2, u.z / 2), R = new CANNON.Vec3(u.x / 2, -u.y / 2, -u.z / 2), + w = new CANNON.Vec3(u.x / 2, -u.y / 2, u.z / 2), W = new CANNON.Vec3(u.x / 2, u.y / 2, -u.z / 2); + u = new CANNON.Vec3(u.x / 2, u.y / 2, u.z / 2); + u = new CANNON.ConvexPolyhedron("leftRamp" == T ? [I, U, R, W, w, u] : [I, U, R, W, J, O], [[0, 1, 3, 2], [5, 3, 1], [2, 4, 0], [3, 5, 4, 2], [4, 5, 1, 0]], null) + } else u = new CANNON.Box(u.clone().scale(.5)); + H.call(F, u) + } + u = xr(f); + K.position = u; + K.fixedRotation = ! 0; + K.updateMassProperties(); + E.Gp = K + } else ! u && E.Gp && (g.removeBody(E.Gp), E.NT = ! 1, E.Gp = null); + E.Gp && (f.visible ? (E.NT || (g.addBody(E.Gp), E.NT = ! 0), m.set(E.Gp.id, f), P && (E.Gp.position = xr(f), E.Gp.velocity.set(30 * v.velocity.x, 30 * v.velocity.y, 30 * v.pC))) : E.NT && (g.removeBody(E.Gp), E.NT = ! 1)) + }); + for (var k = 0; k < b.Yaa; k++) g.step($f / b.Yaa); + k = new Map; + for (var c = p(g.contacts), a = c.next(); ! a.done; a = c.next()) { + var n = a.value; + k.has(n.bi.id) || k.set(n.bi.id, []); + k.get(n.bi.id).push(n); + k.has(n.bj.id) || k.set(n.bj.id, []); + k.get(n.bj.id).push(n) + } + Y(this.ha, [ei, Ui, + M], function (f) { + var v = f.ec.get(Ui).Gp; + if (v) { + var u = f.ec.get(M); + u.velocity = B(v.velocity.x / 30, v.velocity.y / 30); + u.pC = v.velocity.z / 30; + u = Gj(f); + var E = N(f); + u = B(v.position.x, v.position.y).add(E.sub(B(u.x + u.width / 2, u.y + u.height / 2))); + Fj(f, u); + u = f.ec.get(aj); + f = f.ec.get(bj); + u && (u.z = v.position.z - f.height / 2) + } + }); + c = p(m.keys()); + for (n = c.next(); ! n.done; n = c.next()) { + var h = n.value; + n = m.get(h).ec.get(Ui); + n.contacts.clear(); + if (k.has(h)) for (h = k.get(h), h = p(h), a = h.next(); ! a.done; a = h.next()) { + var d = a.value; + a = n.Gp.id == d.bi.id ? d.bj.id : + d.bi.id; + var e = m.get(a); + d = new CANNON.Vec3(d.bi.position.x + d.ri.x, d.bi.position.y + d.ri.y, d.bi.position.z + d.ri.z); + n.contacts.has(a) || n.contacts.set(a, new Yi(e)); + n.contacts.get(a).Iaa.push(d) + } + } +}; +var zr = function () { + X.apply(this, arguments) +}; +q(zr, X); +zr.prototype.tick = function () { + Y(this.ha, M, function (b) { + if ( ! b.ec.has(Ui) || ! b.ec.has(ei)) { + var g = b.ec.get(M).velocity, m = N(b); + m && Fj(b, B(m.x + g.x, m.y + g.y)) + } + }) +}; +var Ar = function () { + X.apply(this, arguments) +}; +q(Ar, X); +Ar.prototype.tick = function () { + var b = Q(this.ha, Xi).ec.get(Xi).world; + Y(this.ha, [aj], function (g) { + var m = g.ec.get(aj); + if (g.ec.get(M) || null == m.KT) { + var k = Gj(g); + k = k ? [B(k.x, k.y), B(k.x + k.width, k.y), B(k.x, k.y + k.height), B(k.x + k.width, k.y + k.height)] : [N(g)]; + g = 0; + k = p(k); + for (var c = k.next(); ! c.done; c = k.next()) { + var a = c.value; + c = new CANNON.Vec3(a.x, a.y, m.z + 9); + a = new CANNON.Vec3(a.x, a.y, m.z - 1E3); + var n = new CANNON.RaycastResult; + b.raycastClosest(c, a, {collisionFilterMask: 3}, n); + g = ch(g, n.hitPointWorld.z, m.z) + } + m.KT = g + } + }) +}; +var Br = function () { + S.apply(this, arguments) +}; +q(Br, S); +Br.prototype.P_ = function (b) { + b.ec.has(fi) && b.parent && b.parent.ec.has(ei) && xj(b.parent) +}; +var Cr = function () { + S.apply(this, arguments) +}; +q(Cr, S); +Cr.prototype.P_ = function (b) { + (b = b.ec.get(Ui)) && b.Gp && b.Gp.world && (b.Gp.world.removeBody(b.Gp), b.NT = ! 1, b.Gp = null) +}; +var Dr = function () { + X.apply(this, arguments) +}; +q(Dr, X); +Dr.prototype.tick = function () { + Y(this.ha, [uk], function (b) { + var g = b.ec.get(uk); + g.Mpa && (g.visible = pk(g.Mpa), wj(b, g.visible)) + }) +}; +var Er = function (b) { + X.call(this, b); + this.Ca = 0 +}; +q(Er, X); +Er.prototype.tick = function () { + var b = this.ha.find(rk); + b = p(b); + for (var g = b.next(); ! g.done; g = b.next()) if (g = g.value, 0 == this.Ca || g.id % 4 == this.Ca % 4) for (var m = g.ec.get(rk), k = 0; k < m.conditions.length; k++) if (m.conditions[k] && pk(m.conditions[k])) { + Kj(g, m.frames[k]) && Mj(this.ha, g, ! 0, ! 0); + break + } + this.Ca++ +}; +var Fr = function () { + S.apply(this, arguments) +}; +q(Fr, S); +Fr.prototype.gu = function (b) { + if (pi(b, [Gk, sk])) { + var g = b.ec.get(sk); + b.on("trigger", function () { + uh(g.key, g.value) + }) + } +}; +var Gr = function () { + X.apply(this, arguments) +}; +q(Gr, X); +Gr.prototype.tick = function () { + var b = this; + Y(this.ha, [tk, Gk], function (g) { + var m = g.ec.get(Gk); + g = g.ec.get(tk); + 0 < m.ex.length && b.ha.Cc.ak.Ca[4] && uh(g.key, g.value) + }) +}; +var Hr = function () { + X.apply(this, arguments) +}; +q(Hr, X); +Hr.prototype.tick = function () { + var b = this; + Y(this.ha, Gk, function (g) { + var m = g.ec.get(Gk); + if ( ! (0 >= m.tqa.length)) { + for (var k = p(m.ex), c = k.next(); ! c.done; c = k.next()) if (c = c.value, ! c.parent || ! b.Tc(g, c)) { + Wa(m.ex, c); + var a = new createjs.Event("untrigger", ! 1, ! 1); + a.NU = c; + g.dispatchEvent(a) + } + k = p(m.tqa); + for (c = k.next(); ! c.done; c = k.next()) for (c = b.ha.find(c.value), c = p(c), a = c.next(); ! a.done; a = c.next()) if (a = a.value, b.Tc(g, a) && ! (0 <= Ua(m.ex, a))) { + m.ex.push(a); + c = new createjs.Event("trigger", ! 1, ! 1); + c.NU = a; + g.dispatchEvent(c); + break + } + } + }) +}; +Hr.prototype.Tc = function (b, g) { + var m = b.ec.get(Gk); + if ( ! b.visible) return ! 1; + a:{ + b = ti(b, Hk); + b = p(b); + for (var k = b.next(); ! k.done; k = b.next()) { + k = k.value; + k.visible = ! 0; + var c = g.localToLocal(0, 0, k); + if (k.hitTest(c.x, c.y)) { + k.visible = ! 1; + b = ! 0; + break a + } + k.visible = ! 1 + } + b = ! 1 + } + if (b) if (g.ec && g.ec.has(aj)) { + if ((g = g.ec.get(aj)) && bh(m.bdb, g.z, m.adb)) return ! 0 + } else return ! 0; + return ! 1 +}; +var Ir = function (b) { + Zn.call(this, b, "61DFBEFE7BBA42719310DD5484391B9B", [Tn(3), Un(A.zfa), Un(A.A2), Wn()]) +}; +q(Ir, Zn); +Ir.prototype.start = function () { + this.ha = (0, Sk.kp)("61DFBEFE7BBA42719310DD5484391B9B").getLibrary(); + this.Ca = new this.ha.mbb; + this.oc = [new Fp(this), new mp(this, A.zfa), new Gr(this), new Pp(this), new Hr(this), new Rp(this), new Tp(this), new bq(this), new cq(this), new Er(this), new aq(this), new yr(this), new Ar(this), new jr(this), new kr(this), new or(this)]; + this.Sc = [new Br(this), new Cr(this), new sr(this), new tr(this), new ur(this), new Fr(this), new Oq(this)] +}; +var Jr = function (b, g, m) { + X.call(this, b); + this.Ca = g; + this.kb = m +}; +q(Jr, X); +Jr.prototype.tick = function () { + ao(this.Ca) && Kr(this.ha.Cc, this.Ca, this.kb) +}; +var Lr = function (b, g, m) { + Zn.call(this, b); + this.Af = g; + this.Bb = m +}; +q(Lr, Zn); +Lr.prototype.start = function () { + this.ha = (0, Sk.kp)("348D233EE4ED48398F13A42B3BD73D9C").getLibrary(); + this.Ca = new this.ha.CJ; + this.oc = [new Jr(this, this.Af, this.Bb), new Ep(this)] +}; +var Mr = 180 * .55, Nr = [A.EOa, A.DOa, A.BOa, A.zOa, A.AOa], Or = [65, 30, 9, 5, 0], Pr = function (b) { + return 0 == b ? 0 : 5 > b ? 1 : 6 > b ? 2 : 7.5 > b ? 3 : 4 +}, Qr = function (b, g) { + g = Q(g, Ug).ec.get(Ug); + return N(b).x + g.$_ - 27 +}, Rr = function () { + X.apply(this, arguments) +}; +q(Rr, X); +Rr.prototype.tick = function () { + var b = Q(this.ha, [Sg, Ui]), g = b.ec.get(Sg), m = N(b), k = Q(this.ha, Ug).ec.get(Ug), c = this.ha.Cc.ak; + g.Q_ = ! 1; + Y(this.ha, ah, function (h) { + 0 < h.ec.get(Gk).ex.length && (g.Q_ = ! 0) + }); + Y(this.ha, $g, function (h) { + 0 < h.ec.get(Gk).ex.length && 0 == g.vK && 0 == g.KQ && (A.COa.play(), g.vK = 30, k.LL = .25 * k.LL) + }); + 0 < g.vK ? (g.vK--, Vi(b, 3)) : 0 < g.KQ ? (g.KQ--, Vi(b, 3), 4 == g.KQ && Qj(this.ha, Pj(this.ha, this.ha.ha.kXa), b)) : (Vi(b, 19), g.Q_ ? k.LL++ : k.LL = .9 * k.LL); + 0 < g.U_ ? g.U_-- : 0 == g.vK && 0 == g.KQ && c.Ca[4] && (g.KQ = 40, g.U_ = 150, Qj(this.ha, + Pj(this.ha, this.ha.ha.iXa), b)); + k.UB = Math.sqrt(111 + k.LL) / 3; + g.eqa = Math.min(2.5, .45 * k.UB); + var a = ti(b, di); + a = p(a); + for (var n = a.next(); ! n.done; n = a.next()) n.value.alpha = 4 > g.vK % 8 && 0 == g.KQ ? 1 : .3; + k.$_ += k.UB; + c = c.ha; + 0 < C(c) ? (b.ec.get(M).velocity = lg(c, g.eqa * C(c)), a = ch(0, (m.x / 320 - .2) / .2, 1), n = 0 == g.vK ? Math.pow(1 - a, 2) : 0, 0 < b.ec.get(M).velocity.x && (b.ec.get(M).velocity.x *= n, k.LL += a * a * .4)) : b.ec.get(M).velocity = B(0, 0); + if (0 == C(c) || 0 < g.vK) m = 5 * ch(0, m.x / 320 - .1, .4), b.ec.get(M).velocity.x -= m; + m = Pr(k.UB); + 0 < g.vK ? Kj(b, "stumble") : + Kj(b, ["idle", "walk", "run", "naruto", "supernaruto"][m]); + Sr(m); + k.tick++ +}; +var Sr = function (b) { + b--; + for (var g = 0; g < Nr.length; g++) { + var m = Nr[g], k = Or[g]; + b == g ? Be(m) || m.play(k) : m.stop() + } +}, Tr = function () { + X.apply(this, arguments) +}; +q(Tr, X); +Tr.prototype.tick = function () { + var b = this, g = Q(this.ha, Sg), m = g.ec.get(Sg), k = N(g), c = this.ha.find(Yg), a = Q(this.ha, Ug).ec.get(Ug); + Y(this.ha, Xg, function (n) { + var h = N(n), d = n.ec.get(Xg); + n.gotoAndStop("idle"); + d.nC || (d.nC = h); + var e = .85 * (d.nC.y - Mr), f = n.ec.get(M), v = kg(N(n).sub(k), 1 / 24), u = 1; + 4 > v.x && (u = Math.pow(1 + ch(0, Math.abs(v.x - 4), 12) / 100, 1.5)); + switch (d.name) { + case 3: + u *= 1.02; + break; + case 4: + u *= 1.04 + } + var E = Qr(n, b.ha) / 24; + n = b.ha.kb.TOTAL_METER - Qr(n, b.ha) / 24; + 100 > n && 0 < n && (u += .1 * Math.sqrt(1 - n / 100)); + 100 > E && (u += E / 100 * .05); + 3 > + E && (u *= .4 + .6 * E / 3); + d = d.speed; + 20 < E && 5 > v.x && (n = Math.pow((6 - Math.abs(ch(-5, v.x + 1, 6))) / 9, 1.5), d = d * (1 - n) + a.UB * n); + n = B(d * u, 0); + (n = c.filter(function (P) { + return !! Ej(P) && N(P).x > h.x + }).sort(function (P, K) { + return N(P).x - N(K).x + })[0]) ? (e = N(n).add(B(0, e)).sub(h), u += .15 * lg(e, 1).y, n = lg(e, Math.min(d * u, C(e)))) : n = lg(B(1, 0), .7 * d * u); + m.Q_ && 20 < E && 1.5 > Math.abs(v.y) && 5 > v.x && 0 < v.x && (n.y = eh(n.y, Math.pow(.25 - v.x / 5 * .22, 1.4), k.y - h.y)); + f.velocity = gh(f.velocity, .2, n) + }) +}; +var Ur = function () { + X.apply(this, arguments) +}; +q(Ur, X); +Ur.prototype.tick = function () { + var b = Q(this.ha, Ug).ec.get(Ug); + Y(this.ha, Vg, function (g) { + var m = N(g); + m.x -= b.UB; + Fj(g, m) + }); + Y(this.ha, hi, function (g) { + var m = N(g); + m.x %= 32; + Fj(g, m) + }) +}; +var Vr = function (b) { + X.call(this, b); + this.Ca = this.kb = 200 +}; +q(Vr, X); +Vr.prototype.tick = function () { + var b = Q(this.ha, Ug), g = b.ec.get(Ug), m = 5 / Math.pow(g.UB, 1.5); + if ( ! (g.$_ / 24 + 30 > this.ha.kb.TOTAL_METER)) { + this.kb--; + if (4.5 < g.UB && 0 >= this.kb) { + this.kb = qh(80, 140) * m; + var k = Pj(this.ha, rh(this.ha.kb.SPAWNERS)); + Qj(this.ha, k, b); + var c = k.ec.get(Zg); + "s" == c.direction ? Fj(k, B(340, 20)) : "n" == c.direction && Fj(k, B(340, 160)) + } + this.Ca--; + 4.5 < g.UB && 0 >= this.Ca && (this.Ca = qh(170, 200) * m, g = Pj(this.ha, rh(this.ha.kb.OBSTACLES)), Qj(this.ha, g, b), Fj(g, B(340, qh(40, 140)))) + } +}; +var Wr = function () { + X.apply(this, arguments) +}; +q(Wr, X); +Wr.prototype.tick = function () { + var b = Q(this.ha, Ug), g = Pr(b.ec.get(Ug).UB), m = [0, 0, .3, .4, .5], k = [0, 0, 1, 1.5, 2], + c = [0, 0, -20, -25, -30], a = [0, 0, 1, 2, 4][g]; + a = Math.random() > a % 1 ? Math.ceil(a) : Math.floor(a); + for (var n = 0; n < a; n++) { + var h = Pj(this.ha, this.ha.ha.Cna); + Qj(this.ha, h, b); + Fj(h, B(340 - qh(1, 10), qh(5, 175))); + h.alpha = m[g]; + h.scaleX = k[g]; + h.ec.get(M).velocity.x = c[g] + } +}; +var Xr = function () { + X.apply(this, arguments) +}; +q(Xr, X); +Xr.prototype.tick = function () { + var b = this; + Y(this.ha, Zg, function (g) { + var m = N(g), k = g.ec.get(Zg); + g.currentFrame == k.Dcb && m && (g = Q(b.ha, Ug), k = Pj(b.ha, k.aba), Qj(b.ha, k, g), Fj(k, m)) + }) +}; +var Yr = function (b) { + X.call(this, b); + this.Iw = []; + this.Ca = new Map; + this.Ca.set("a", [this.ha.ha.aL, this.ha.ha.Zja, this.ha.ha.$ja]); + this.Ca.set("b", [this.ha.ha.aka, this.ha.ha.bka, this.ha.ha.cka]); + this.Ca.set("c", [this.ha.ha.eka, this.ha.ha.fka, this.ha.ha.gka]) +}; +q(Yr, X); +Yr.prototype.tick = function () { + this.Iw = this.ha.find(ah).sort(function (k, c) { + return N(k).x - N(c).x + }); + var b = this.Iw.filter(function (k) { + return N(k).x < -k.ec.get(ah).width + }); + b = p(b); + for (var g = b.next(); ! g.done; g = b.next()) g = g.value, co(g), Wa(this.Iw, g); + g = this.Iw[this.Iw.length - 1]; + var m = g.ec.get(ah).width; + b = N(g).x + m; + 800 > b && ((Qr(g, this.ha) + m) / 24 > this.ha.kb.TOTAL_METER ? Zr(this, this.ha.ha.hka, B(b, 0)) : (g = g.ec.get(ah).end, g = rh(this.Ca.get(g)), Zr(this, g, B(b, 0)))) +}; +var Zr = function (b, g, m) { + var k = Q(b.ha, Ug); + g = Pj(b.ha, g); + Qj(b.ha, g, k); + Fj(g, m); + b.Iw.push(g) +}, as = function (b) { + Yo.call(this, b, [Rr, Tr, Vr, Yr, $r]) +}; +q(as, Yo); +as.prototype.tick = function () { + Yo.prototype.tick.call(this); + var b = Q(this.ha, Sg), g = Q(this.ha, Ug).ec.get(Ug); + if (Qr(b, this.ha) / 24 > this.ha.kb.TOTAL_METER && ! this.Ca) { + Vi(b, 1); + b.ec.get(M).velocity = lg(B(1, 0), C(b.ec.get(M).velocity) + g.UB); + g.UB = 0; + for (var m = this.ha.find(Xg), k = p(m), c = k.next(); ! c.done; c = k.next()) c = c.value, c.ec.get(M).velocity = lg(B(1, 0), C(c.ec.get(M).velocity)); + m = m.filter(function (a) { + return N(a).x > N(b).x + }).length; + 0 == m ? To(this.ha.Cc.kb, L("FIRST_PLACE"), { + size: 80, shadow: "#111", color: "#ffde38", outline: "#a18722", + Hw: 2 + }) : 1 == m ? To(this.ha.Cc.kb, L("SECOND_PLACE"), { + size: 80, + shadow: "#111", + color: "#a1a4a6", + outline: "#5f6263", + Hw: 2 + }) : 2 == m ? To(this.ha.Cc.kb, L("THIRD_PLACE"), { + size: 80, + shadow: "#111", + color: "#b58657", + outline: "#6b4a29", + Hw: 2 + }) : To(this.ha.Cc.kb, L("FINISH"), {size: 80, shadow: "#111", outline: "#555", Hw: 2}); + Zo(this, g.tick, Math.max(0, 3 - m)) + } +}; +var $r = function () { + X.apply(this, arguments) +}; +q($r, X); +$r.prototype.tick = function () { + var b = Q(this.ha, Sg), g = b.ec.get(Sg), m = Q(this.ha, Ug), k = m.ec.get(Ug), c = Q(this.ha, Tg), + a = this.ha.find(Xg), n = k.UB / 24 * 108, h = n.toFixed(1) + "km/h"; + c.speed.text = h; + c.OL.text = h; + h = Qr(b, this.ha) / 24; + var d = Math.round(h) + "m/" + this.ha.kb.TOTAL_METER + "m"; + c.AL.text = d; + c.rK.text = d; + n = Math.floor(22 * ch(0, (n - 18) / 20, 1)); + n = Math.round(eh(c.DU.nU.currentFrame, .3, n)); + 22 == n && .5 > Math.random() && n--; + c.DU.nU.gotoAndStop(n); + c.GY.gotoAndStop(Math.round(10 * (1 - g.U_ / 150))); + g = lk(k.tick); + c.time.text = g; + c.Bp.text = + g; + a = [b].concat(ha(a)).sort(function (E, P) { + return E.x - P.x + }); + g = a.indexOf(b); + n = Math.max(0, g - (a.length - 5)); + m.tU && 1 == k.tick && m.tU.play(); + m = p(a); + for (d = m.next(); ! d.done; d = m.next()) { + var e = d.value; + d = null; + e == b ? d = c.IL.Gf : (d = e.ec.get(Xg), d.cursor || (d.cursor = Pj(this.ha, this.ha.ha.JWa), Qj(this.ha, d.cursor, c.IL), d.cursor.gotoAndStop(d.oab)), d = d.cursor); + var f = a.indexOf(e), v = n + (f - g), u = 6 + 105 * ch(0, v, 4); + v == n ? d.Ot.text = "" + (a.length - f) : (d.Ot.text = Math.min(99, Math.abs(Math.round(Qr(e, this.ha) / 24 - h))) + "m", v > n ? (u -= 30, d.Ot.text = + "+" + d.Ot.text, d.Ot.color = "#1c1") : (d.Ot.text = "-" + d.Ot.text, d.Ot.color = "#c11")); + e = 0 <= v && 5 > v ? 1 : 0; + f = Cj(d); + Dj(d, gh(f, .5, B(u, 0))); + d.alpha = eh(d.alpha, .5, e) + } + c.IL.alpha = ch(0, (k.tick - 45) / 30, 1) +}; +var bs = function () { + S.apply(this, arguments) +}; +q(bs, S); +bs.prototype.gu = function (b) { + if (pi(b, [Ug])) { + var g = Pj(this.ha, this.ha.ha.dfa); + Qj(this.ha, g, b); + Fj(g, B(24 * this.ha.kb.TOTAL_METER + 20, 34)) + } +}; +var cs = function () { + S.apply(this, arguments) +}; +q(cs, S); +cs.prototype.fu = function (b) { + if (b.ec.has(Ug)) { + var g = this.ha.kb.OPPONENT_COUNT; + b = this.ha.find(Xg).sort(function (c, a) { + return c.x - a.x + }); + g = b.splice(g); + g = p(g); + for (var m = g.next(); ! m.done; m = g.next()) co(m.value); + bb(b); + g = this.ha.kb.OPPONENT_MIN_SPEED; + m = this.ha.kb.OPPONENT_MAX_SPEED; + for (var k = 0; k < b.length; k++) b[k].ec.get(Xg).speed = eh(g, Math.pow(k / b.length, .85), m) + } +}; +var ds = function () { + S.apply(this, arguments) +}; +q(ds, S); +ds.prototype.gu = function (b) { + b.ec.has(Xi) ? (b = b.ec.get(Xi), Wi(b, "character", "bodyMaterial", { + mass: 40, + collisionFilterGroup: 4, + collisionFilterMask: 19, + linearDamping: 0 + }), Wi(b, "prop", "bodyMaterial", { + mass: 0, + collisionFilterGroup: 2, + collisionFilterMask: 4, + linearDamping: 0 + }), Wi(b, "opponent", "bodyMaterial", { + mass: 10, + collisionFilterGroup: 16, + collisionFilterMask: 5, + linearDamping: 0 + })) : b.ec.has(Xg) && (b.ec.get(Ui).l_ = "opponent") +}; +var es = function (b) { + Zn.call(this, b, "6A005E6C90D74E9A971A793C2ECC526F", [Tn(6), Un(A.Cia), Wn()]) +}; +q(es, Zn); +es.prototype.start = function () { + this.ha = (0, Sk.kp)("6A005E6C90D74E9A971A793C2ECC526F").getLibrary(); + switch (this.Cc.Ca.ha) { + case "800m": + this.kb = { + TOTAL_METER: 800, + OPPONENT_COUNT: 6, + OPPONENT_MAX_SPEED: 7.6, + OPPONENT_MIN_SPEED: 4.2, + SPAWNERS: [this.ha.dL, this.ha.ZK], + OBSTACLES: [this.ha.kY, this.ha.lY] + }; + break; + case "1500m": + this.kb = { + TOTAL_METER: 1500, + OPPONENT_COUNT: 8, + OPPONENT_MAX_SPEED: 7.8, + OPPONENT_MIN_SPEED: 4.5, + SPAWNERS: [this.ha.dL, this.ha.ZK, this.ha.dL, this.ha.ZK, this.ha.dL, this.ha.ZK, this.ha.mja], + OBSTACLES: [this.ha.kY, + this.ha.lY] + }; + break; + case "5000m": + this.kb = { + TOTAL_METER: 5E3, + OPPONENT_COUNT: 12, + OPPONENT_MAX_SPEED: 8.4, + OPPONENT_MIN_SPEED: 4.7, + SPAWNERS: [this.ha.dL, this.ha.ZK, this.ha.dL, this.ha.ZK, this.ha.dL, this.ha.ZK, this.ha.mja], + OBSTACLES: [this.ha.kY, this.ha.lY] + }; + break; + default: + this.kb = { + TOTAL_METER: 400, + OPPONENT_COUNT: 6, + OPPONENT_MAX_SPEED: 7, + OPPONENT_MIN_SPEED: 4, + SPAWNERS: [this.ha.dL, this.ha.ZK], + OBSTACLES: [this.ha.kY, this.ha.lY] + } + } + this.Ca = new this.ha.kU; + this.oc = [new Ep(this), new Uo(this), new mp(this, A.Cia), new Wo(this, [Hr, + Ur, Yr, Rr, Vr, Wr, Xr, Tr, as, Tp, aq, zr, yr, Ar, Up]), new Hr(this), new Ur(this), new Yr(this), new Rr(this), new Vr(this), new Wr(this), new Xr(this), new Tr(this), new Tp(this), new aq(this), new zr(this), new yr(this), new Ar(this), new $r(this), new as(this), new Up(this), new Vp(this), new Pp(this)]; + this.Sc = [new Br(this), new Cr(this), new bs(this), new cs(this), new ds(this)]; + if (gf) { + var b = this.Cc.oc; + b.load("marathonoutro").then(function (g) { + return Cn(g) + }); + Co() && b.load("outro").then(function (g) { + return Cn(g) + }) + } +}; +var fs = function () { + X.apply(this, arguments) +}; +q(fs, X); +fs.prototype.tick = function () { + var b = this.ha.find(yi).filter(function (g) { + return "controls" == g.ec.get(yi).id + }); + b[0] && gs(this, b[0]) +}; +var gs = function (b, g) { + var m = b.ha.Cc.ak; + b = function (k, c) { + var a = k.ec.get(zi).button; + k = k.text; + c ? (c = m.oc, a == c.ha ? a = L("MAPPING_LABEL") : (a = c.Ca[a], 0 == a.length ? a = "" : (a = c.Sc[a[0]], " " == a && (a = "Spacebar")))) : (c = m.Bb, a == c.ha ? a = L("MAPPING_LABEL") : (a = c.Ca[a], 0 == a.length ? a = "" : (a = a[0], a = 0 == a.type ? (0 > a.eJ ? "-" : "+") + " Axis " + Math.abs(a.eJ) : "Button " + a.eJ))); + k.text = a + }; + b(g.fU, ! 0); + b(g.cU, ! 0); + b(g.dU, ! 0); + b(g.eU, ! 0); + b(g.aU, ! 0); + b(g.bU, ! 0); + b(g.JT, ! 1); + b(g.GT, ! 1); + b(g.HT, ! 1); + b(g.IT, ! 1); + b(g.ET, ! 1); + b(g.FT, ! 1) +}, hs = function () { + S.apply(this, + arguments) +}; +q(hs, S); +hs.prototype.fu = function (b) { + var g = this; + if (b.ec.has(yi) && "controls" == b.ec.get(yi).id) { + Z(b, L("CONTROLS_MENU")); + b.yN.text = L("CONTROLS"); + b.addEventListener("click", function (c) { + if (null != m.oc.ha || null != m.Bb.ha) c.stopImmediatePropagation(), m.oc.ha = null, m.Bb.ha = null + }, ! 0); + var m = this.ha.Cc.ak, k = function (c, a, n, h) { + c.ec.get(wi).eventId = a; + var d = new zi; + d.button = n; + c.ec.set(zi, d); + b.addEventListener(a, function () { + if (null == m.oc.ha && null == m.Bb.ha) if (h) { + var e = m.oc; + null == e.ha && (e.ha = n) + } else e = m.Bb, null == e.ha && (e.ha = n) + }); + Z(c, L(a)) + }; + b.addEventListener("back", function () { + g.ha.Cc.ha.close() + }); + Z(b.back, L("BACK")); + b.addEventListener("okay", function () { + g.ha.Cc.ha.close() + }); + Z(b.zT, L("CONFIRM")); + b.zT.label.text = L("CONFIRM"); + b.addEventListener("defaults", function () { + Ph(m.oc); + Th(m.Bb) + }); + Z(b.BT, L("DEFAULTS")); + b.BT.label.text = L("DEFAULTS"); + k(b.fU, "KEYBOARD_UP", 2, ! 0); + k(b.cU, "KEYBOARD_DOWN", 3, ! 0); + k(b.dU, "KEYBOARD_LEFT", 0, ! 0); + k(b.eU, "KEYBOARD_RIGHT", 1, ! 0); + k(b.aU, "KEYBOARD_ACTION", 4, ! 0); + k(b.bU, "KEYBOARD_CANCEL", 5, ! 0); + k(b.JT, "GAMEPAD_UP", + 2, ! 1); + k(b.GT, "GAMEPAD_DOWN", 3, ! 1); + k(b.HT, "GAMEPAD_LEFT", 0, ! 1); + k(b.IT, "GAMEPAD_RIGHT", 1, ! 1); + k(b.ET, "GAMEPAD_ACTION", 4, ! 1); + k(b.FT, "GAMEPAD_CANCEL", 5, ! 1) + } +}; +var is = function () { + S.apply(this, arguments) +}; +q(is, S); +is.prototype.fu = function (b) { + var g = this; + if (b.ec.has(yi) && "leaderboard" == b.ec.get(yi).id) { + b.addEventListener("back", function () { + g.ha.Cc.ha.close() + }); + var m = xi(b, "back"); + Z(m, L("CLOSE")); + b.title.text = L("LEADERBOARD"); + b.CJ.text = L("LOADING") + } +}; +var js = function () { + S.apply(this, arguments) +}; +q(js, S); +js.prototype.fu = function (b) { + var g = this; + if (b.ec.has(yi) && "newgame" == b.ec.get(yi).id) { + Z(b, L("NEW_GAME")); + b.title.text = L("NEW_GAME"); + b.prompt.text = Dh(L("NEW_GAME_PROMPT")); + b.addEventListener("no", function () { + g.ha.Cc.ha.close() + }); + var m = xi(b, "no"); + m.label.text = L("NO"); + Z(m, L("NO")); + b.addEventListener("yes", function () { + vh(); + ks(); + Hq(g.ha.Cc, new Xn("overworld")); + var k = g.ha.Cc.ha; + k.Bb.splice(0, k.Bb.length); + ls(k) + }); + b = xi(b, "yes"); + b.label.text = L("YES"); + Z(b, L("YES")) + } +}; +var ms = function () { + S.apply(this, arguments) +}; +q(ms, S); +ms.prototype.fu = function (b) { + var g = this; + if (b.ec.has(yi) && "pause" == b.ec.get(yi).id) { + Z(b, L("PAUSE_MENU")); + b.title.text = L("PAUSED"); + var m = xi(b, "resume"); + m.label.text = L("CONTINUE"); + Z(m, m.label.text); + m = xi(b, "how"); + m.label.text = L("HOW_TO_PLAY"); + Z(m, m.label.text); + m = xi(b, "restart"); + m.label.text = L("RESTART"); + Z(m, m.label.text); + m = xi(b, "quit"); + m.label.text = L("QUIT"); + Z(m, m.label.text); + b.addEventListener("quit", function () { + Hq(g.ha.Cc, new Xn("overworld")); + g.ha.Cc.ha.close() + }); + b.addEventListener("how", function () { + var k = + g.ha.Cc.Ca.name, c = lo(k); + c && k && Vo(g.ha.Cc.ha, c) + }); + b.addEventListener("restart", function () { + Hq(g.ha.Cc, g.ha.Cc.Ca); + g.ha.Cc.ha.close() + }); + b.addEventListener("resume", function () { + g.ha.Cc.ha.close() + }) + } +}; +var qs = function (b) { + var g = void 0 === g ? ! 0 : g; + var m, k, c, a; + return ya(function (n) { + switch (n.ha) { + case 1: + return m = "string" === typeof b ? b : b.value, ra(n, ns(m), 2); + case 2: + var h; + if ( ! (h = n.kb)) if (document.execCommand) { + "string" === typeof b ? (os || (os = document.createElement("input"), os.readOnly = ! 0, Af(os, "position", "absolute", "opacity", 0, "left", 0, "top", 0, "pointerEvents", "none"), document.body.appendChild(os)), os.value = b, h = os) : h = b; + h !== document.activeElement && h.focus(); + var d = h.contentEditable, e = h.readOnly; + h.contentEditable = + ! 0; + h.readOnly = ! 1; + var f = document.createRange(); + f.selectNodeContents(h); + var v = window.getSelection(); + v.removeAllRanges(); + v.addRange(f); + try { + h.select(), h.setSelectionRange(0, h.value.length) + } catch (E) { + } + h.contentEditable = d; + h.readOnly = e; + try { + var u = document.execCommand("copy") + } catch (E) { + u = ! 1 + } + window.getSelection().removeAllRanges(); + h.blur(); + os && os.remove(); + h = u + } else h = ! 1; + if (k = h) { + n.ha = 3; + break + } + if ( ! (c = g)) { + n.ha = 4; + break + } + return ra(n, ps(), 5); + case 5: + c = n.kb; + case 4: + if ( ! (a = c)) { + n.ha = 6; + break + } + return ra(n, ns(m), 7); + case 7: + a = n.kb; + case 6: + k = a; + case 3: + return k ? n.return(Promise.resolve()) : n.return(Promise.reject()) + } + }) +}, ns = function (b) { + return ya(function (g) { + return navigator.clipboard && navigator.clipboard.writeText ? g.return(navigator.clipboard.writeText(b).then(function () { + return ! 0 + }, function () { + return ! 1 + })) : g.return( ! 1) + }) +}, rs = function (b) { + return ya(function (g) { + switch (b.state) { + case "granted": + return g.return( ! 0); + case "denied": + return g.return( ! 1) + } + return g.return(new Promise(function (m) { + b.onchange = function () { + return m(rs(b)) + } + })) + }) +}, ps = function () { + var b; + return ya(function (g) { + if (1 == g.ha) { + if ( ! navigator.permissions || ! navigator.permissions.query) return g.return( ! 1); + b = rs; + return ra(g, navigator.permissions.query({name: "clipboard-write"}), 2) + } + return g.return(b(g.kb)) + }) +}, os = null; +rb(); +Wb() || x("iPod"); +x("iPad"); +! x("Android") || sb() || rb() || x("Opera") || x("Silk"); +sb(); +! x("Safari") || sb() || x("Coast") || x("Opera") || x("Edge") || x("Edg/") || x("OPR") || rb() || x("Silk") || x("Android") || Xb(); +var ss = {}, ts = null; +var us = function (b) { + return 0 == b.indexOf("//") ? "https:" + b : b + }, vs = function () { + var b = Jo(), g = Jf("share", ""); + Mf() || (so(9), b = us(b), window.location = "http://www.google.com/doodles/_SHARE?description=" + encodeURIComponent(g) + "&url=" + encodeURIComponent(b)) + }, ws = function () { + return null != window.agsa_ext && null != window.agsa_ext.share + }, xs = function () { + var b = Jo(), g = Jf("share", ""); + ! Mf() && ws() && (so(15), window.agsa_ext.share(g + " " + b, null)) + }, ys = function (b, g) { + var m = new Pe, k; + for (k in g) m.add(k, g[k]); + b = new Ke(b); + Ne(b, m); + return b.toString() + }, + zs = function (b) { + ya(function (g) { + if (Mf()) return g.return(Promise.reject()); + so(16); + return g.return(qs(b)) + }) + }; +var As = function () { + S.apply(this, arguments) +}; +q(As, S); +As.prototype.fu = function (b) { + var g = this; + if (b.ec.has(yi) && "results" == b.ec.get(yi).id) { + var m = xi(b, "overworld"); + Z(m, L("OVERWORLD")); + m = xi(b, "replay"); + Z(m, L("REPLAY")); + m = xi(b, "share"); + Z(m, L("SHARE")); + b.title.text = L("RESULTS"); + b.CL.text = L("HIGH_SCORE"); + var k = function () { + return 5 < b.zK.LQ.currentFrame || 5 < b.zK.MQ.currentFrame || 5 < b.zK.NQ.currentFrame || 5 < b.zK.OQ.currentFrame + }; + b.addEventListener("overworld", function () { + k() && (Hq(g.ha.Cc, new Xn("overworld")), g.ha.Cc.ha.close()) + }); + b.addEventListener("replay", function () { + k() && + (Hq(g.ha.Cc, g.ha.Cc.Ca), g.ha.Cc.ha.close()) + }); + b.addEventListener("share", function () { + k() && (jf() && ! lf() ? vs() : ws() ? xs() : Bs(g.ha.Cc.ha)) + }) + } +}; +var Cs = function () { + S.apply(this, arguments) +}; +q(Cs, S); +Cs.prototype.fu = function (b) { + var g = this; + if (b.ec.has(yi) && "settings" == b.ec.get(yi).id) { + Z(b, L("SETTINGS")); + b.ML.text = L("SETTINGS"); + b.addEventListener("back", function () { + g.ha.Cc.ha.close() + }); + var m = xi(b, "back"); + Z(m, L("CLOSE")); + b.addEventListener("newGame", function () { + Vo(g.ha.Cc.ha, "newgame") + }); + m = xi(b, "newGame"); + Z(m, L("NEW_GAME")); + m.text.text = L("NEW_GAME"); + b.addEventListener("soundOn", function () { + uh("MUTED", ! 1); + ks() + }); + m = xi(b, "soundOn"); + m.text.text = L("SOUND_ON"); + Z(m, L("SOUND_ON")); + b.hS.text = L("SOUND"); + b.addEventListener("soundOff", + function () { + uh("MUTED", ! 0); + ks() + }); + m = xi(b, "soundOff"); + m.text.text = L("SOUND_OFF"); + Z(m, L("SOUND_OFF")); + b.rS.text = L("TEXT_STYLE"); + b.addEventListener("textRetro", function () { + uh("FONT", "retro") + }); + m = xi(b, "textRetro"); + m.text.text = L("TEXT_STYLE_RETRO"); + Z(m, L("TEXT_STYLE_RETRO")); + b.addEventListener("textModern", function () { + uh("FONT", "modern") + }); + b = xi(b, "textModern"); + b.text.text = L("TEXT_STYLE_MODERN"); + Z(b, L("TEXT_STYLE_MODERN")) + } +}; +var Ds = new Map([["archery", "ARCHERY_SHARE_MSG"], ["climbing", "CLIMBING_SHARE_MSG"], ["marathon", "MARATHON_SHARE_MSG"], ["pingpong", "PINGPONG_SHARE_MSG"], ["rugby", "RUGBY_SHARE_MSG"], ["skate", "SKATEBOARDING_SHARE_MSG"], ["swim", "SWIM_SHARE_MSG"]]), + Es = function () { + S.apply(this, arguments) + }; +q(Es, S); +Es.prototype.fu = function (b) { + var g = this; + b.ec.has(yi) && "share" == b.ec.get(yi).id && (Z(b, L("SHARE_YOUR_SCORE")), b.label.text = L("SHARE_YOUR_SCORE"), b.addEventListener("closeShare", function () { + var m = g.ha.Cc.ha; + m.Af && (co(m.Af), m.Af = null, m.Ca.kS.mouseEnabled = ! 0, m.Ca.Jw.mouseEnabled = ! 0) + }), Z(xi(b, "closeShare"), L("CLOSE")), b.addEventListener("facebook", function () { + var m = Jo(); + Mf() || (m = us(m), m = ys("https://www.facebook.com/dialog/share", { + app_id: "738026486351791", + href: m, + hashtag: "#GoogleDoodle" + }), Vb(m), so(5)) + }), Z(xi(b, + "facebook"), L("SHARE_FB")), b.addEventListener("twitter", function () { + var m = Jo(), k = Fs(g); + Mf() || (m = us(m), m = "text=" + encodeURIComponent(k + "\n" + m), Vb("http://twitter.com/intent/tweet?" + m), so(6)) + }), Z(xi(b, "twitter"), L("SHARE_TW")), b.addEventListener("mail", function () { + var m = Jo(), k = Fs(g); + if ( ! Mf()) { + so(8); + var c = window.top.location, a = void 0; + a = void 0 === a ? Nf : a; + m = us(m); + k = ys("mailto:", {subject: a, body: k + "\n" + m}); + c.href = k + } + }), Z(xi(b, "mail"), L("SHARE_EM")), b.addEventListener("srp", function () { + var m = google.doodle ? google.doodle.url : + ""; + m && Hf(m, ! 0) + }), Z(xi(b, "srp"), L("SEARCH")), b.addEventListener("copy", function () { + var m = Jo(); + m = us(m); + zs(m); + To(g.ha.Cc.kb, L("LINK_COPIED"), {size: 30, outline: "#1b0a01", color: "#ece3ba", Hw: 4}) + }), Z(xi(b, "copy"), L("SHARE_CP"))) +}; +var Fs = function (b) { + var g = Ds.get(b.ha.Cc.Ca.name); + return g && 0 != b.ha.Ca.Jw.Hf.eJ ? L(g).replace("{{}}", b.ha.Ca.Jw.Hf.text) : L("SHARE_MSG") +}; +var Gs = function () { + S.apply(this, arguments) +}; +q(Gs, S); +Gs.prototype.fu = function (b) { + var g = this; + if (b.ec.has(yi) && "skip" == b.ec.get(yi).id) { + Z(b, L("SKIP_TUTORIAL")); + b.label.text = L("SKIP_TUTORIAL"); + b.addEventListener("no", function () { + g.ha.Cc.ha.close() + }); + var m = xi(b, "no"); + m.label.text = L("NO"); + Z(m, L("NO")); + b.addEventListener("yes", function () { + uh("TUTORIAL_BEGIN", ! 0); + uh("TUTORIAL_DONE", ! 0); + g.ha.Cc.ha.close(); + var k = g.ha.Cc.Bb; + k && hr(k, "hub") + }); + m = xi(b, "yes"); + m.label.text = L("YES"); + Z(m, L("YES")); + b.addEventListener("share", function () { + jf() && ! lf() ? vs() : ws() ? xs() : Bs(g.ha.Cc.ha) + }); + m = xi(b, "share"); + m.label.label.text = L("SHARE"); + Z(m, L("SHARE")); + b.addEventListener("controls", function () { + Vo(g.ha.Cc.ha, "controls") + }); + m = xi(b, "controls"); + m.label.label.text = L("CONTROLS"); + Z(m, L("CONTROLS")); + b.addEventListener("leader", function () { + lr(g.ha.Cc.ha) + }); + m = xi(b, "leader"); + m.label.label.text = L("LEADERBOARD"); + Z(m, L("LEADERBOARD")); + b.addEventListener("settings", function () { + Vo(g.ha.Cc.ha, "settings") + }); + b = xi(b, "settings"); + b.label.label.text = L("SETTINGS"); + Z(b, L("SETTINGS")) + } +}; +var Hs = function () { + S.apply(this, arguments) +}; +q(Hs, S); +Hs.prototype.fu = function (b) { + var g = this; + if (b.ec.has(yi) && "stats" == b.ec.get(yi).id) { + Z(b, L("STATS_MENU")); + b.label.text = L("CHAMPION_ISLAND"); + b.addEventListener("close", function () { + g.ha.Cc.ha.close() + }); + var m = xi(b, "close"); + Z(m, L("CLOSE")); + b.addEventListener("share", function () { + jf() && ! lf() ? vs() : ws() ? xs() : Bs(g.ha.Cc.ha) + }); + m = xi(b, "share"); + m.label.label.text = L("SHARE"); + Z(m, L("SHARE")); + b.addEventListener("controls", function () { + Vo(g.ha.Cc.ha, "controls") + }); + m = xi(b, "controls"); + m.label.label.text = L("CONTROLS"); + Z(m, + L("CONTROLS")); + b.addEventListener("leader", function () { + lr(g.ha.Cc.ha) + }); + m = xi(b, "leader"); + m.label.label.text = L("LEADERBOARD"); + Z(m, L("LEADERBOARD")); + b.addEventListener("settings", function () { + Vo(g.ha.Cc.ha, "settings") + }); + m = xi(b, "settings"); + m.label.label.text = L("SETTINGS"); + Z(m, L("SETTINGS")); + m = {}; + for (var k = p([["climbing", "climbing"], ["skate", "skate"], ["rugby", "rugby"], ["archery", "archery"], ["pingpong", "pingpong"], ["swim", "swim"], ["marathon", "marathon"]]), c = k.next(); ! c.done; m = {PY: m.PY}, c = k.next()) { + var a = + p(c.value); + c = a.next().value; + m.PY = a.next().value; + b.addEventListener(c, function (n) { + return function () { + g.ha.Cc.ha.close(); + var h = g.ha.Cc.Bb; + "overworld" == g.ha.Cc.Ca.name && h ? hr(h, n.PY) : Hq(g.ha.Cc, new Xn("overworld", null, n.PY)) + } + }(m)); + a = xi(b, c); + a.label.label.text = L(c.toUpperCase()); + Z(a, L(c.toUpperCase())) + } + } +}; +var Is = function () { + S.apply(this, arguments) +}; +q(Is, S); +Is.prototype.fu = function (b) { + var g = this; + if (b.ec.has(yi) && this.ha.Ca.currentLabel.startsWith("tut")) { + b.addEventListener("start", function () { + g.ha.Cc.ha.close() + }); + var m = xi(b, "start"); + Z(m, L("OK")); + m.label.text = L("OK"); + var k = m = "", c = "", a = ""; + switch (this.ha.Ca.currentLabel) { + case "tutArcheryDesktop": + m = "archery"; + k = "TUT_ARCHERY"; + c = "TUT_ARCHERY_DESKTOP_MOVE"; + a = "TUT_ARCHERY_DESKTOP_ACTION"; + break; + case "tutArcheryMobile": + m = "archery"; + k = "TUT_ARCHERY"; + c = "TUT_JOYSTICK_TO_MOVE"; + a = "TUT_ARCHERY_MOBILE_ACTION"; + break; + case "tutClimbingDesktop": + m = + "climbing"; + k = "TUT_CLIMBING"; + c = "TUT_DIR_TO_MOVE"; + a = "TUT_CLIMBING_DESKTOP_ACTION"; + break; + case "tutClimbingMobile": + m = "climbing"; + k = "TUT_CLIMBING"; + c = "TUT_JOYSTICK_TO_MOVE"; + a = "TUT_CLIMBING_MOBILE_ACTION"; + break; + case "tutMarathonDesktop": + m = "marathon"; + k = "TUT_MARATHON"; + c = "TUT_DIR_TO_MOVE"; + a = "TUT_MARATHON_DESKTOP_ACTION"; + break; + case "tutMarathonMobile": + m = "marathon"; + k = "TUT_MARATHON"; + c = "TUT_JOYSTICK_TO_MOVE"; + a = "TUT_MARATHON_MOBILE_ACTION"; + break; + case "tutPingpongDesktop": + m = "pingpong"; + k = "TUT_PINGPONG"; + c = "TUT_DIR_TO_MOVE"; + a = "TUT_PINGPONG_DESKTOP_ACTION"; + break; + case "tutPingpongMobile": + m = "pingpong"; + k = "TUT_PINGPONG"; + c = "TUT_JOYSTICK_TO_MOVE"; + a = "TUT_PINGPONG_MOBILE_ACTION"; + break; + case "tutRugbyDesktop": + m = "rugby"; + k = "TUT_RUGBY"; + c = "TUT_DIR_TO_MOVE"; + a = "TUT_RUGBY_DESKTOP_ACTION"; + break; + case "tutRugbyMobile": + m = "rugby"; + k = "TUT_RUGBY"; + c = "TUT_JOYSTICK_TO_MOVE"; + a = "TUT_RUGBY_MOBILE_ACTION"; + break; + case "tutSkateDesktop": + m = "skate"; + k = "TUT_SKATE"; + c = "TUT_SKATE_DESKTOP_MOVE"; + a = "TUT_SKATE_DESKTOP_ACTION"; + break; + case "tutSkateMobile": + m = "skate"; + k = "TUT_SKATE"; + c = "TUT_SKATE_MOBILE_MOVE"; + a = "TUT_SKATE_MOBILE_ACTION"; + break; + case "tutSwimDesktop": + m = "swim"; + k = "TUT_SWIM"; + c = "TUT_SWIM_DESKTOP_MOVE"; + a = "TUT_SWIM_ACTION"; + break; + case "tutSwimMobile": + m = "swim", k = "TUT_SWIM", c = "TUT_SWIM_MOBILE_MOVE", a = "TUT_SWIM_ACTION" + } + b.title.text = L(m.toUpperCase()); + b.Dd.text = L("RULES"); + b.Cd.text = Dh(L(k)); + b.Ad.text = Dh(L(c)); + b.Bd.text = Dh(L(a)); + Z(b, [b.title.text, b.Cd.text, b.Ad.text, b.Bd.text].join(". ")) + } +}; +var Js = {left: 240, right: 240, top: 216, bottom: 432}, Ks = function () { + X.apply(this, arguments) +}; +q(Ks, X); +Ks.prototype.tick = function () { + if (dg) { + var b = Q(this.ha, Vh), g = this.ha.find(Ei), m = this.ha.find(hi); + this.ha.Ca.Ca || (this.ha.Ca.Ca = new createjs.Text("", "30px Arial", "#f00"), this.ha.Ca.addChild(this.ha.Ca.Ca), this.ha.Ca.Ca.x = 200); + g = g.filter(function (k) { + return ! k.ec.get(Ei).Eaa + }).length; + m = m.filter(function (k) { + return k.visible && k.parent == b + }).length; + this.ha.Ca.Ca.text = "Entity: " + this.ha.Pk + " Children: " + b.children.length + " BGs: " + (m + " Regions: " + g) + } +}; +var Ls = function (b) { + X.call(this, b); + this.Ca = 0 +}; +q(Ls, X); +Ls.prototype.tick = function () { + var b = this, g = Q(this.ha, [Vh, Xh]); + qi(g, function (m) { + if (m == g) return ! 1; + if ( ! m.ec || m.parent != g) return ! 0; + if (m.ec.has(hi)) return wj(m, Ij(g, m, 0, ! 0, ! 0)), ! 0; + if (m.ec.has(Ei) || m.ec.has(Bi) || m.id % 4 != b.Ca % 4 || m.ec.has(uk) && ! m.ec.get(uk).visible) return ! 0; + wj(m, Ij(g, m, Js)); + return ! 0 + }); + this.Ca++ +}; +var Ms = function (b) { + X.call(this, b); + this.Ca = new Map +}; +q(Ms, X); +var Ns = function (b, g) { + var m = Ej(g), k = [].concat(ha(g.children)); + b.Ca.set(g, []); + k = p(k); + for (var c = k.next(); ! c.done; c = k.next()) { + c = c.value; + var a = N(c); + co(c); + a && m && (Qj(b.ha, c, m), Fj(c, a), b.Ca.get(g).push(c)) + } + g.ec.get(Ei).Eaa = ! 1 +}; +Ms.prototype.tick = function () { + for (var b = Q(this.ha, [Vh, Xh]), g = this.ha.find(Ei), m = p(g), k = m.next(); ! k.done; k = m.next()) if (k = k.value, ! k.ec.has(gi)) { + var c = k.getBounds(); + k.setBounds(c.x, c.y, c.width, c.height); + k.ec.set(gi, new gi); + wj(k, ! 1); + Ns(this, k) + } + g = p(g); + for (k = g.next(); ! k.done; k = g.next()) if (m = k.value, (k = Ij(b, m, 0, ! 0, ! 0)) && ! this.Ca.has(m)) Ns(this, m); else if ( ! k && this.Ca.has(m)) { + k = this.Ca.get(m); + k = p(k); + for (c = k.next(); ! c.done; c = k.next()) { + c = c.value; + var a = N(c); + co(c); + m.addChild(c); + Fj(c, a) + } + m.ec.get(Ei).Eaa = ! 0; + this.Ca.delete(m) + } +}; +var Os = function () { + X.apply(this, arguments) +}; +q(Os, X); +Os.prototype.tick = function () { + Y(this.ha, hi, function (b) { + b = b.ec.get(hi); + if (0 < b.uY && b.frames && 0 < b.frames.length) { + b.tick++; + for (var g = Math.floor(b.tick / b.Wpa) % b.uY, m = 0; m < b.uY; m++) b.frames[m].visible = m == g + } + }) +}; +var Ps = function () { + S.apply(this, arguments) +}; +q(Ps, S); +Ps.prototype.fu = function (b) { + if (b.ec.has(hi)) { + var g = b.ec.get(hi), m = b.getBounds(); + if (0 < g.uY && 0 == g.frames.length && m) { + for (var k = new createjs.MovieClip, c = 0, a = [].concat(ha(b.children)), n = p(a), h = n.next(); ! h.done; h = n.next()) h = h.value, b.removeChild(h), k.addChild(h), c++; + for (c = 0; c < g.uY; c++) { + n = c * g.Wpa; + var d = new createjs.MovieClip; + d.addChild(k); + var e = p(a); + for (h = e.next(); ! h.done; h = e.next()) h = h.value, h.gotoAndStop && h.gotoAndStop(n); + d.cache(m.x, m.y, m.width, m.height); + d.removeChild(k); + d.tickEnabled = ! 1; + g.frames.push(d); + b.addChild(d) + } + } + } +}; +var Qs = function () { + S.apply(this, arguments) +}; +q(Qs, S); +Qs.prototype.gu = function (b) { + if ( ! b.ec.has(ci) && ! b.ec.has(hi)) { + b = b.children.filter(function (m) { + return 1 == m.totalFrames + }); + b = p(b); + for (var g = b.next(); ! g.done; g = b.next()) g.value.tickEnabled = ! 1 + } +}; +var Rs = ["0star", "1star", "2star", "3star"], Ss = ["ZERO_STARS", "ONE_STAR", "TWO_STARS", "THREE_STARS"], + Ts = new Map([["BLUE", "#60adf7"], ["GREEN", "#6bf368"], ["RED", "#ff5a5a"], ["YELLOW", "#f3e868"], ["NO_TEAM", "#ffffff"]]), + Us = new Map([["BLUE", "BLUE_SCORE"], ["GREEN", "GREEN_SCORE"], ["RED", "RED_SCORE"], ["YELLOW", "YELLOW_SCORE"]]), + Vs = new createjs.Rectangle(-1536, -833, 3088, 1600), Ws = new createjs.Rectangle(0, 0, 120, 96), Xs = function (b) { + var g = parseInt(b / 30 % 60, 10); + b = parseInt(b / 1800 % 60, 10); + return 0 < b ? L("TIME_IS_MIN_SEC").replace("{{}}", + b.toString()).replace("{{}}", g.toString()) : L("TIME_IS_SEC").replace("{{}}", g.toString()) + }, Ys = function (b) { + Zn.call(this, b); + this.Bb = [] + }; +q(Ys, Zn); +Ys.prototype.start = function () { + this.ha = (0, Sk.kp)("1754741A4A3841C2AB73BD915D793487").getLibrary(); + this.Ca = new this.ha.Obb; + this.oc = [new Lq(this), new Nq(this), new fs(this), new Er(this)]; + this.Sc = [new is(this), new Is(this), new ms(this), new Hs(this), new As(this), new Gs(this), new Es(this), new hs(this), new Cs(this), new js(this), new Qs(this)]; + this.Af = null +}; +var Vo = function (b, g) { + Zs(b, g) && b.Bb.push(g) +}, Zs = function (b, g) { + if ( ! yj(b.Ca, g)) return ! 1; + b.Cc.Bb.JS(); + b.Cc.Bb.disable(); + b.Ca.alpha = 1; + b.enable(); + b.OU(); + A.GOa.play(); + b.Ca.gotoAndStop(g); + ro("d3", g, ! 0); + so(107); + return ! 0 +}; +Ys.prototype.close = function () { + this.Bb.pop(); + 0 == this.Bb.length ? ls(this) : Zs(this, this.Bb[this.Bb.length - 1]) +}; +var ls = function (b) { + b.Ca.alpha = 0; + b.JS(); + b.disable(); + b.Cc.Bb.enable(); + b.Cc.Bb.OU(); + A.FOa.play(); + ro("d3", b.Ca.currentLabel, ! 0); + so(108) +}, Gp = function (b) { + Vo(b, "stats"); + b = b.Ca.kS; + for (var g = p([["archery", b.wL, b.nY], ["climbing", b.yL, b.qY], ["marathon", b.GL, b.BY], ["pingpong", b.HL, b.EY], ["rugby", b.JL, b.JY], ["skate", b.NL, b.LY], ["swim", b.QL, b.NY]]), m = g.next(); ! m.done; m = g.next()) { + var k = p(m.value); + m = k.next().value; + var c = k.next().value; + k = k.next().value; + var a = yo(m); + null != a ? c.text = "time" == wo[m].type ? lk(a) : a : c.text = + "???"; + k.gotoAndStop(Rs[zo(m)]) + } + g = th("PLAYER_TEAM", "NO_TEAM").toUpperCase(); + b.BK.text = L(g); + b.BK.color = Ts.get(g); + (g = th("PLAYER_POS", null)) && g instanceof Object && (g = B(g), g = B(fh(Vs.x, g.x, Vs.x + Vs.width), fh(Vs.y, g.y, Vs.y + Vs.height)), Aj(b.map.Gf, B(eh(Ws.x, ch(.1, g.x, .9), Ws.x + Ws.width), eh(Ws.y, ch(.1, g.y, .85), Ws.y + Ws.height)))) +}, Xo = function (b, g, m) { + m = void 0 === m ? null : m; + var k = (new Xn(b.Cc.Ca.name, b.Cc.Ca.ha)).toString(); + if (k) { + var c = ko(b.Cc.Ca.name); + null == m && (m = Ao(k, g)); + var a = Do(k, g, m); + if (3 == m) { + if ( ! io(c)) { + Hq(b.Cc, + new Xn("video", c)); + return + } + if ( ! io("outro") && Bo()) { + Hq(b.Cc, new Xn("video", "outro")); + return + } + } + Vo(b, "results"); + var n = wo[k].type; + c = L("GAME_OVER") + "\n"; + c += L(Ss[m]) + "\n"; + c += "time" == n ? Xs(g) : L("SCORE_IS").replace("{{}}", g.toString()); + Z(b.Ca.Jw, c); + var h = function (e) { + return "time" == n ? lk(e) : Math.ceil(e) + }; + k = yo(k); + var d = b.Ca.Jw.zK; + d.gotoAndStop(m); + d.LQ.gotoAndStop(0); + d.MQ.gotoAndStop(0); + d.NQ.gotoAndStop(0); + d.OQ.gotoAndStop(0); + b.Ca.Jw.Hf.eJ = 0; + createjs.Tween.get(b.Ca.Jw.Hf, {override: ! 0, useTicks: ! 0}).to({eJ: g}, 20).call(function () { + d.LQ.gotoAndPlay(1); + d.MQ.gotoAndPlay(1); + d.NQ.gotoAndPlay(1); + d.OQ.gotoAndPlay(1) + }).addEventListener("change", function () { + b.Ca.Jw.Hf.text = h(b.Ca.Jw.Hf.eJ) + }); + b.Ca.Jw.mC.eJ = k || 0; + b.Ca.Jw.mC.text = h(k); + a && createjs.Tween.get(b.Ca.Jw.mC, { + override: ! 0, + useTicks: ! 0 + }).to({eJ: g}, 20).addEventListener("change", function () { + b.Ca.Jw.mC.text = h(b.Ca.Jw.mC.eJ) + }) + } +}, Bs = function (b) { + b.Af || (b.Af = Pj(b, b.ha.dma), Qj(b, b.Af, b.Ca), b.Ca.kS.mouseEnabled = ! 1, b.Ca.Jw.mouseEnabled = ! 1) +}, lr = function (b) { + Vo(b, "leaderboard"); + var g = b.Ca.AY; + Vj(g, "loading").visible = + ! 0; + for (b = 0; 4 > b; b++) Vj(g, "teamName" + b).visible = ! 1, Vj(g, "teamScore" + b).visible = ! 1; + Ho().then(function (m) { + var k = L("LEADERBOARD_MENU"); + g.children.find(function (f) { + return "loading" === f.name + }).visible = ! 1; + for (var c = 0; 4 > c; c++) Vj(g, "teamName" + c).visible = ! 0, Vj(g, "teamScore" + c).visible = ! 0; + c = {}; + m = p(m); + for (var a = m.next(); ! a.done; c = {GJ: c.GJ, QY: c.QY}, a = m.next()) { + c.GJ = a.value; + a = c.GJ.GlobalScore; + c.QY = {Hf: 0}; + createjs.Tween.get(c.QY, {override: ! 0, useTicks: ! 0}).to({Hf: a}, 10).addEventListener("change", function (f) { + return function () { + Vj(g, + "teamScore" + f.GJ.TeamId).text = "" + Math.ceil(f.QY.Hf) + } + }(c)); + var n = L(ig[c.GJ.TeamId].toUpperCase()), h = Ts.get(ig[c.GJ.TeamId].toUpperCase()), + d = Vj(g, "teamName" + c.GJ.TeamId), e = Vj(g, "teamScore" + c.GJ.TeamId); + k += " " + L(Us.get(ig[c.GJ.TeamId].toUpperCase())).replace("{{}}", "" + a); + d.text = "" + n; + e.text = "" + a; + d.color = h; + e.color = h + } + Z(g, k) + }) +}; +Ys.prototype.JS = function () { + this.Ca.tickEnabled = ! 1 +}; +Ys.prototype.OU = function () { + this.Ca.tickEnabled = ! 0 +}; +var $s = function (b) { + Zn.call(this, b, "6B325686132B46298EE25D130F14A658", [Tn(3), Un(A.vja), Un(A.A2), Wn()]) +}; +q($s, Zn); +$s.prototype.start = function () { + this.ha = (0, Sk.kp)("6B325686132B46298EE25D130F14A658").getLibrary(); + this.Ca = new this.ha.oU; + this.oc = [new Fp(this), new mp(this, A.vja), new gr(this), new Cq(this), new Dq(this), new Ms(this), new Os(this), new nr(this), new Er(this), new Dr(this), new Gr(this), new Pp(this), new Ls(this), new Hr(this), new bq(this), new aq(this), new yr(this), new Ar(this), new jr(this), new pr(this), new kr(this), new mr(this), new or(this), new rr(this), new qr(this), new Ks(this)]; + this.Sc = [new Br(this), new Cr(this), + new sr(this), new vr(this), new Eq(this), new wr(this), new Yp(this), new Ps(this), new Qs(this), new tr(this), new ur(this), new Fr(this), new Oq(this)] +}; +var at = -135 * $f * $f, bt = new jg(22, 0), ct = new jg(-22, 0), dt = [0, 1, 5, 13, 16, 19, 22, 25], et = function () { + X.apply(this, arguments) +}; +q(et, X); +et.prototype.tick = function () { + ft(this) || (gt(this, gj), gt(this, hj)) +}; +var gt = function (b, g) { + var m = Q(b.ha, [dj, g]), k = m.ec.get(dj), c = Q(b.ha, ij).ec.get(ij), a = Q(b.ha, kj), n = b.ha.find(cj), + h = Gj(Q(b.ha, [g, fj])); + n = p(n); + for (var d = n.next(); ! d.done; d = n.next()) { + d = d.value; + var e = g, f = k.state, v = N(d); + v.y -= d.ec.get(aj).z; + var u = d.ec.get(cj); + if (u.jU && 3 != u.state && ! d.ec.has(e) && h && h.contains(v.x, v.y) && (e === gj || 3 > u.DL) && (0 === f || e === hj && 0 === u.DL)) { + f = b; + e = g; + d.ec.delete(gj); + d.ec.delete(hj); + d.ec.set(e, new e); + v = d.ec.get(cj); + u = 0; + e === gj && (v.DL++, v = d.ec.get(cj), 3 <= v.DL ? (v.Taa *= 6, v.state = 2, Kj(d, "flaming")) : + 2 <= v.DL && (v.state = 1, Kj(d, "smoking")), u = d.ec.get(cj).Taa); + v = C(d.ec.get(M).velocity) + u; + f = f.ha.Ca; + if (e === gj) e = hj; else if (e === hj) e = gj; else throw Error("S"); + f = ht(f, e); + e = d.ec.get(M); + if (u = N(d)) f = f.sub(u), e.velocity = lg(f, v), f = C(f) / v, v = d.ec.get(aj).z, u = a.ec.get(aj).z + a.ec.get(bj).height, e.pC = (u - .5 * at * f * f - v) / f; + m.gotoAndStop("swing"); + m.ec.get(dj).state = 1; + if (e = m.ec.get(li)) e.IC = ! 1, m.ec.get(M).velocity = new jg(0, 0); + if (g === gj) c.Haa++, c.MY = ch(0, c.MY + 1 / (6 + 1.2 * it(c)), 1), A.dWa.play(); else if (g === hj) { + c.Dab++; + A.cWa.play(); + e = m.parent; + f = N(m); + d = N(d); + if ( ! e || ! f || ! d) throw Error("Q"); + 15 < dh(f, d) && (m instanceof b.ha.ha.bga ? Rj(b.ha.ha.RGa, b.ha, f) : Rj(b.ha.ha.xDa, b.ha, f), Fj(m, d)) + } + } + } +}, ft = function (b) { + if ( ! b.ha.Cc.ak.Ca[4]) return ! 1; + var g = Q(b.ha, [dj, gj]), m = g.ec.get(dj), k = Q(b.ha, ij).ec.get(ij); + if (2 === m.state || 3 === m.state || 1 > k.MY) return ! 1; + A.gWa.play(); + m.state = 2; + m.DL = 0; + g.gotoAndPlay("super"); + var c = g.ec.get(li); + c.IC = ! 1; + g.ec.get(M).velocity = new jg(0, 0); + var a = Q(b.ha, [dj, hj]), n = a.ec.get(dj); + n.state = 3; + for (var h = b.ha.find(cj), d = p(h), e = d.next(); ! e.done; e = + d.next()) { + e = e.value; + var f = e.ec.get(Ui); + f.Gp && e.ec.get(cj).jU && (f.Gp.sleep(), e.ec.get(cj).sleep = ! 0) + } + k.Haa += h.length; + k.MY = 0; + k.tY = -1E6; + a.tickEnabled = ! 1; + var v = Q(b.ha, nj); + createjs.Tween.get(v, {override: ! 0, useTicks: ! 0}).to({alpha: 1}, 10); + g.on("super_swing", function () { + A.hWa.play(); + for (var u = p(h), E = u.next(); ! E.done; E = u.next()) { + E = E.value; + var P = E.ec.get(Ui), K = E.ec.get(cj); + K.state = 3; + E.GC.gotoAndPlay("flaming"); + K.DL = 3; + P.Gp && K.jU && (P.Gp.wakeUp(), K.sleep = ! 1, P = E.ec.get(M), P.velocity = new jg(20, 0), P.pC = 0, E.ec.delete(gj), + E.ec.delete(hj), E.ec.set(gj, new gj)) + } + }, null, ! 0); + g.on("super_end", function () { + m.state = 0; + c.IC = ! 0; + g.gotoAndStop("walk"); + k.tY = 0; + n.state = 0; + a.tickEnabled = ! 0; + v.alpha = 0 + }, null, ! 0); + return ! 0 +}, jt = function () { + X.apply(this, arguments) +}; +q(jt, X); +jt.prototype.tick = function () { + var b = Q(this.ha, ij).ec.get(ij), g = Q(this.ha, [dj, hj]); + b.tY++; + var m = this.ha.find(cj), k = it(b); + 20 < b.tY && m.length < k && (b.tY = 0, b = Rj(this.ha.ha.Qba, this.ha, N(g)), Mj(this.ha, b, ! 0, ! 0)) +}; +var kt = function () { + X.apply(this, arguments) +}; +q(kt, X); +kt.prototype.tick = function () { + var b = this.ha.find(cj); + b = p(b); + for (var g = b.next(); ! g.done; g = b.next()) { + var m = g.value; + g = m.ec.get(cj); + var k = m.ec.get(M); + g.sleep || (m = ti(m, di).filter(function (c) { + return ! pi(c, [$i]) + }), m = N(m[0]), g.iS && (2 == g.state ? (15 < C(k.velocity) ? (Rj(this.ha.ha.UV, this.ha, gh(m, .33, g.iS)), Rj(this.ha.ha.UV, this.ha, gh(m, .66, g.iS))) : Rj(this.ha.ha.UV, this.ha, gh(m, .5, g.iS)), Rj(this.ha.ha.UV, this.ha, g.iS)) : 1 != g.state && 3 != g.state || Rj(this.ha.ha.mna, this.ha, g.iS)), g.iS = m) + } +}; +var lt = function () { + X.apply(this, arguments) +}; +q(lt, X); +lt.prototype.tick = function () { + var b = Gj(Q(this.ha, jj)), g = Q(this.ha, ij).ec.get(ij), m = this.ha.Ca.G0, k = this.ha.find(cj); + k = p(k); + for (var c = k.next(); ! c.done; c = k.next()) { + var a = c.value; + c = a.ec.get(cj); + var n = N(a); + c.jU && b && ! b.contains(n.x, n.y) && (a.ec.has(gj) ? (A.fWa.play(), mt(this.ha, n.add(ct), "+100"), g.wp++) : a.ec.has(hj) && (A.eWa.play(), a = 40 - 10 * c.DL, mt(this.ha, n.add(bt), "-" + a, "#ff3333"), g.eu++), c.jU = ! 1) + } + 10 <= g.dJ ? (m.wp.text = g.wp.toString().padStart(2, "0") + " / " + g.dJ, m.eu.text = g.eu.toString().padStart(2, "0") + " / " + + g.dJ) : (m.wp.text = g.wp + " / " + g.dJ, m.eu.text = g.eu + " / " + g.dJ); + m.xK.text = "" + 100 * Math.max(0, g.wp - g.eu); + Uj(m.FY, g.wp / g.dJ); + Uj(m.sY, g.eu / g.dJ); + Uj(m.mS, g.MY); + m.mS.EJ && (m.mS.EJ.text = kf() ? L("TUT_PINGPONG_MOBILE_ACTION") : L("TUT_PINGPONG_DESKTOP_ACTION")) +}; +var nt = function () { + X.apply(this, arguments) +}; +q(nt, X); +nt.prototype.tick = function () { + var b = this.ha.find(cj); + b = p(b); + for (var g = b.next(); ! g.done; g = b.next()) { + var m = g.value; + g = !! m.ec.get(aj).KT; + var k = m.ec.get(M).pC; + m = m.ec.get(cj); + k = 0 > k; + g && ! k && m.vqa && A.bWa.play(); + m.vqa = k + } +}; +var ot = function () { + X.apply(this, arguments) +}; +q(ot, X); +ot.prototype.tick = function () { + var b = this.ha.find(cj); + b = p(b); + for (var g = b.next(); ! g.done; g = b.next()) g = g.value, g.ec.get(cj).jU || co(g) +}; +var pt = function (b) { + Yo.call(this, b, [et, jt, nt, lt]) +}; +q(pt, Yo); +pt.prototype.tick = function () { + Yo.prototype.tick.call(this); + var b = Q(this.ha, ij).ec.get(ij); + if (b.wp >= b.dJ || b.eu >= b.dJ) { + var g = 0; + 30 <= b.wp ? g = 3 : 20 <= b.wp ? g = 2 : 10 <= b.wp && (g = 1); + var m = 100 * (b.wp + Math.max(0, b.wp - b.eu)); + this.Ca || (To(this.ha.Cc.kb, L(b.wp > b.eu ? "YOU_WIN" : "TENGU_WINS"), { + size: 80, + shadow: "#111", + outline: "#555", + Hw: 2 + }), Zo(this, m, g)) + } +}; +var qt = function (b) { + Yo.call(this, b, [et, jt, nt], function () { + return Hq(g.ha.Cc, new Xn("cutscene", "intro")) + }); + var g = this +}; +q(qt, Yo); +qt.prototype.tick = function () { + Yo.prototype.tick.call(this); + var b = Q(this.ha, ij).ec.get(ij); + (b.wp >= b.dJ || b.eu >= b.dJ) && ! this.Ca && (To(this.ha.Cc.kb, L(b.wp > b.eu ? "YOU_WIN" : "YOU_LOSE"), { + size: 80, + shadow: "#111", + outline: "#555", + Hw: 2 + }), Zo(this, 1, 3), uh("TUTORIAL_DONE", ! 0)) +}; +var rt = function () { + S.apply(this, arguments) +}; +q(rt, S); +rt.prototype.gu = function (b) { + if (b.ec.has(Xi)) { + b = b.ec.get(Xi); + b.world.gravity.set(0, 0, -135); + Wi(b, "ball", "ballMaterial", {mass: 10, linearDamping: 0, collisionFilterGroup: 8, collisionFilterMask: 17}); + Wi(b, "table", "tableMaterial", {mass: 0, linearDamping: .4, collisionFilterGroup: 18, collisionFilterMask: 8}); + var g = {friction: 0, restitution: 1, contactEquationStiffness: 1E7, contactEquationRelaxation: 3}; + b.addContactMaterial("ballMaterial", "tableMaterial", g); + b.addContactMaterial("groundMaterial", "ballMaterial", g) + } +}; +var st = function () { + S.apply(this, arguments) +}; +q(st, S); +st.prototype.gu = function (b) { + b.ec.has(dj) && b.addEventListener("swing_finished", function () { + b.gotoAndStop("walk"); + b.ec.get(dj).state = 0; + var g = b.ec.get(li); + g && (g.IC = ! 0) + }) +}; +var ht = function (b, g) { + var m = ui(b, [g, ej]); + b = Gj(m); + if ( ! b) throw Error("R"); + if (g === hj) return Tj(b); + if (m.currentTarget) return m.currentTarget.add(new jg(0, 4 * Math.random() - 2)); + g = Tj(b); + m.currentTarget = g; + setTimeout(function () { + m.currentTarget = null + }, 500); + return g +}, it = function (b) { + for (var g = 1, m = 0; m < dt.length && ! (b.ha <= g); m++) if (dt[m] <= b.wp) g = m + 1; else break; + return g +}, mt = function (b, g, m, k) { + k = void 0 === k ? "#ffffff" : k; + b = Rj(b.ha.f5, b, g); + b.Tx.text.text = m; + b.Tx.text.color = k +}; +var tt = function () { + X.apply(this, arguments) +}; +q(tt, X); +tt.prototype.tick = function () { + Q(this.ha, Xi).ec.get(Xi); + Y(this.ha, [aj, ci], function (b) { + N(b); + var g = ti(b, [$i, di]); + b = b.ec.get(aj); + g = p(g); + for (var m = g.next(); ! m.done; m = g.next()) Dj(m.value, B(0, -b.KT)) + }) +}; +var ut = function (b) { + Zn.call(this, b, "53A3DF4EA6694858812E8CA9B4AB07DC", [Tn(7), Un(A.Sja), Wn()]) +}; +q(ut, Zn); +ut.prototype.start = function () { + this.ha = (0, Sk.kp)("53A3DF4EA6694858812E8CA9B4AB07DC").getLibrary(); + this.Ca = new this.ha.$bb; + this.oc = [new Ep(this), new Uo(this), new mp(this, A.Sja), new Wo(this, [et, nt, jt, kt, Ar, tt, dq, Up]), "tutorial" == this.Cc.Ca.ha ? new qt(this) : new pt(this), new ot(this), new jt(this), new Rp(this), new et(this), new nt(this), new yr(this), new Ar(this), new lt(this), new tt(this), new dq(this), new Qp(this), new Up(this), new Vp(this), new kt(this)]; + this.Sc = [new Br(this), new Cr(this), new rt(this), new st(this)]; + if (gf) { + var b = this.Cc.oc; + b.load("pingpongoutro").then(function (g) { + return Cn(g) + }); + Co() && b.load("outro").then(function (g) { + return Cn(g) + }) + } +}; +var vt = { + red: {speed: 2.2, pY: 200, vN: 50}, + blue: {speed: 3, pY: 200, vN: 3}, + charge: {speed: 6, pY: 200, vN: 100}, + heavy: {speed: 2.5, pY: 200, vN: 20} +}, wt = function () { + X.apply(this, arguments) +}; +q(wt, X); +wt.prototype.tick = function () { + var b = Q(this.ha, [oj, bi, M]), g = b.ec.get(oj), m = N(b), k = b.ec.get(M); + g.tick++; + b.ec.get(Ti).IC = ! 1; + 0 < g.V_ && (g.V_--, 0 == g.V_ && (g.sB = null)); + g.nC || (g.nC = m); + g.distance = Math.max(m.x - g.nC.x, g.distance); + var c = this.ha.Cc.ak.ha; + C(c) ? (k.velocity = lg(c, "speed" == g.sB ? 4 : 2.5), b.ec.get(bi).direction = mh(c)) : k.velocity = B(0, 0); + var a = kh(b.ec.get(bi).direction), n = "idle"; + 0 < C(k.velocity) && (n = "walk"); + g.LT && (n = "speed" == g.sB ? n + "Speed" : "pacman" == g.sB ? n + "Pacman" : "noclip" == g.sB ? n + "Noclip" : n + "Ball"); + Nj(b, n, + this.ha); + g.LT && "noclip" == g.sB ? Vi(b, 1) : Vi(b, 3); + b.Ss.DJ.visible = ! 1; + b.Ss.SL.visible = ! 0; + b.Ss.vL.visible = ! 1; + k = this.ha.find(pj); + n = p(k); + for (var h = n.next(); ! h.done; h = n.next()) h.value.Ss.DJ.visible = ! 1; + g.LT && (0 != c.y && (g.Aaa = c), k = k.filter(function (d) { + d = N(d).sub(m); + return 110 > C(d) && 0 >= d.x + }).sort(function (d, e) { + return C(N(d).sub(m)) - C(N(e).sub(m)) + }), n = k[0], g.Aaa && (k = k.filter(function (d) { + return 0 < g.Aaa.y ? N(d).y > m.y : N(d).y < m.y + }), k[0] && (n = k[0])), 0 > c.x && (k = k.filter(function (d) { + return 70 > Math.abs(ih(a, N(d).sub(m))) + }), + k[0] && (n = k[0])), n && (n.Ss.DJ.visible = ! 0, this.ha.Cc.ak.Ca[4] && this.DJ(b, n))) +}; +wt.prototype.DJ = function (b, g) { + var m = Q(this.ha, Vh), k = b.ec.get(oj), c = N(b); + g.ec.set(oj, k); + g.ec.set(Yh, b.ec.get(Yh)); + g.ec.delete(pj); + b.ec.delete(oj); + b.ec.delete(Yh); + b.ec.set(pj, new pj); + k.LT = ! 1; + Wa(k.FC, g); + Wa(k.iJ, g); + Mj(this.ha, b, ! 0, ! 1); + Mj(this.ha, g, ! 0, ! 1); + b = Pj(this.ha, this.ha.ha.H0a); + Qj(this.ha, b, m); + Fj(b, c); + A.d_a.play() +}; +var xt = function () { + X.apply(this, arguments) +}; +q(xt, X); +xt.prototype.tick = function () { + var b = Q(this.ha, rj); + if (b) { + var g = Q(this.ha, oj), m = g.ec.get(oj), k = N(g), c = N(b), a = b.ec.get(rj); + a.nC || (a.nC = c); + var n = k.sub(a.nC); + c = k.sub(c); + var h = C(n) - C(c) + 7; + b.ec.get(bi).direction = mh(c); + c = h / C(n); + h = "normal"; + "speed" == m.sB ? h = "speed" : "pacman" == m.sB ? h = "pacman" : "noclip" == m.sB && (h = "noclip"); + Nj(b, h, this.ha); + 1 < c ? (g.ec.get(oj).LT = ! 0, co(b), A.a_a.play()) : (g = gh(a.nC, c, k), Fj(b, g), n = 8 + Math.sin(c * Math.PI) * C(n) / 10, b.ec.get(aj).z = n) + } +}; +var yt = function () { + X.apply(this, arguments) +}; +q(yt, X); +yt.prototype.tick = function () { + var b = Q(this.ha, oj), g = b.ec.get(oj), m = N(b), k = Q(this.ha, Si).ec.get(Si), c = this.ha.find([pj, Ui, M]); + c = p(c); + for (var a = c.next(); ! a.done; a = c.next()) { + a = a.value; + var n = N(a), h = a.ec.get(M), d = a.ec.get(Ti); + a.Ss.SL.visible = ! 1; + a.Ss.vL.visible = ! 0; + if (n.x - 100 > m.x) d.IC = ! 1; else { + d.IC = ! 0; + if ( ! g.iJ.includes(a) && ! g.FC.includes(a)) { + var e = [a].concat(ha(g.iJ), ha(g.FC), [b]).sort(function (u, E) { + return N(u).y - N(E).y + }), f = e.indexOf(b); + g.iJ = e.slice(0, f).reverse(); + g.FC = e.slice(f + 1) + } + e = g.iJ.indexOf(a); + f = g.FC.indexOf(a); + if (0 <= e) d.target = m.add(kg(B(-20, -55), 1 + e)); else if (0 <= f) d.target = m.add(kg(B(-20, 55), 1 + f)); else continue; + d = d.path; + h.velocity = B(0, 0); + if (0 < d.length) { + e = "speed" == g.sB ? 4 : 2.5; + f = d[0]; + var v = f.sub(n); + C(v) < e && 1 < d.length && (f = d[1], v = f.sub(n)); + C(v) > e && (h.velocity = lg(f.sub(n), Math.min(e, C(v))), a.ec.get(bi).direction = mh(h.velocity)) + } + 0 < C(h.velocity) ? Nj(a, "walk", this.ha) : Nj(a, "idle", this.ha) + } + } + 1 < g.iJ.length && 2 > g.FC.length && g.iJ[g.iJ.length - 1].ec.get(Ti).target.y < k.Pa.y && g.FC.push(g.iJ.pop()); + 1 < g.FC.length && 2 > g.iJ.length && + g.FC[g.FC.length - 1].ec.get(Ti).target.y > k.Pa.y + k.Pa.height && g.iJ.push(g.FC.pop()) +}; +var zt = function () { + X.apply(this, arguments) +}; +q(zt, X); +zt.prototype.tick = function () { + var b = this, g = Q(this.ha, oj), m = N(g); + Y(this.ha, [sj, M], function (k) { + var c = k.ec.get(sj), a = vt[c.type], n = N(k), h = k.ec.get(M), d = g.ec.get(oj); + m && n && (n = m.sub(n), "charge" == c.type ? 0 == c.p_ ? (c.p_ = 60, C(n) < a.pY && (A.b_a.play(), h.velocity = lg(n, a.speed), Nj(k, "walk", b.ha))) : (c.p_--, 30 > c.p_ && (h.velocity = kg(h.velocity, .9), Nj(k, "idle", b.ha))) : (c = B(0, 0), C(n) < a.pY && (c = lg(n, a.speed), d && "pacman" == d.sB ? (c = kg(c, -1), Nj(k, "scared", b.ha)) : Nj(k, "walk", b.ha)), 0 < C(h.velocity) && 0 < C(c) && (c = ih(h.velocity, c), + d = kh(h.velocity), c > a.vN ? d += a.vN : c < -a.vN && (d -= a.vN), c = lg(oh(d % 360 || 0), eh(C(h.velocity), .2, a.speed))), h.velocity = c), k.ec.get(bi).direction = mh(h.velocity)) + }) +}; +var At = function () { + X.apply(this, arguments) +}; +q(At, X); +At.prototype.tick = function () { + Y(this.ha, [sj, Ui], function (b) { + var g = b.ec.get(sj); + b = b.ec.get(Ui).contacts.values(); + if ("heavy" == g.type || "charge" == g.type) for (g = p(b), b = g.next(); ! b.done; b = g.next()) b = b.value, b.U6 && b.U6.ec.has(qj) && co(b.U6) + }) +}; +var Bt = function () { + X.apply(this, arguments) +}; +q(Bt, X); +Bt.prototype.tick = function () { + var b = Q(this.ha, oj), g = this.ha.find(sj), m = b.ec.get(oj); + g = p(g); + for (var k = g.next(); ! k.done; k = g.next()) { + k = k.value; + var c = k.ec.get(sj); + Sj(k, b) ? "pacman" == m.sB ? (co(k), m.Zpa++) : "noclip" != m.sB && (c.S6++, Nj(k, "attack", this.ha, ! 0), 6 == c.S6 && m.LT && (m.Ppa = ! 0, b.ec.get(M).velocity = B(0, 0), Nj(b, "dead", this.ha), k.ec.get(M).velocity = B(0, 0), Nj(k, "ball", this.ha))) : c.S6 = 0 + } +}; +var Ct = function () { + X.apply(this, arguments) +}; +q(Ct, X); +Ct.prototype.tick = function () { + var b = Q(this.ha, oj).ec.get(oj), g = Q(this.ha, tj); + 1 == b.tick && (g.wN.visible = ! 0, g.wN.gotoAndPlay(0)); + b.Hf = 10 * Math.round(b.distance / 10) + 100 * b.Zpa; + g.text.text = b.Hf; + var m = 100 / b.r0; + g.distance.text = Math.round(b.distance * m) + "m/" + Math.round(b.r0 * m) + "m" +}; +var Dt = function () { + X.apply(this, arguments) +}; +q(Dt, X); +Dt.prototype.tick = function () { + var b = Q(this.ha, oj), g = b.ec.get(oj), m = N(b); + Y(this.ha, uj, function (k) { + var c = k.ec.get(uj), a = N(k); + a && m && 11 > C(a.sub(m)) && (g.sB = c.name, g.V_ = 150, co(k), A.c_a.play()) + }) +}; +var Et = function (b) { + Yo.call(this, b, [wt, zt, At, yt, Bt]) +}; +q(Et, Yo); +Et.prototype.tick = function () { + var b = this; + Yo.prototype.tick.call(this); + if ( ! this.Ca) { + var g = Q(this.ha, oj), m = g.ec.get(oj), k = this.ha.find(pj); + if (m.Ppa) To(this.ha.Cc.kb, L("ONIS_WIN"), { + size: 100, + shadow: "#222", + outline: "#aaa", + Hw: 2 + }), Zo(this, m.Hf), k.map(function (a) { + a.ec.get(M).velocity = B(0, 0); + Nj(a, "dead", b.ha) + }); else { + var c = Q(this.ha, [vj, Gk]); + m.r0 || (m.r0 = Gj(c).x - N(g).x); + 0 < c.ec.get(Gk).ex.length && (createjs.Tween.get(g, {useTicks: ! 0}).wait(5).call(function () { + return Nj(g, "win", b.ha) + }), k.map(function (a) { + return Nj(a, + "idle", b.ha) + }), Zo(this, m.Hf, 3), A.e_a.play(), To(this.ha.Cc.kb, L("YOU_WIN"), { + size: 100, + shadow: "#222", + outline: "#aaa", + Hw: 2 + })) + } + } +}; +var Ft = function () { + S.apply(this, arguments) +}; +q(Ft, S); +Ft.prototype.fu = function (b) { + b.ec.has(Xi) ? (b = b.ec.get(Xi), Wi(b, "character", "bodyMaterial", { + mass: 10, + collisionFilterGroup: 4, + collisionFilterMask: 3, + linearDamping: .97 + }), Wi(b, "prop", "bodyMaterial", { + mass: 0, + collisionFilterGroup: 2, + collisionFilterMask: 20, + linearDamping: 0 + }), Wi(b, "enemy", "bodyMaterial", { + mass: 40, + collisionFilterGroup: 16, + collisionFilterMask: 19, + linearDamping: .5 + })) : b.ec.has(sj) && (b.ec.get(Ui).l_ = "enemy") +}; +var Gt = function () { + X.apply(this, arguments) +}; +q(Gt, X); +Gt.prototype.tick = function () { + this.DN(); + Ht(this); + if (dg) { + var b = Q(this.ha, Si).ec.get(Si), g = Q(this.ha, Vh); + if ( ! g.ha) { + g.ha = new createjs.MovieClip; + g.ha.nodes = new createjs.Shape(new createjs.Graphics); + g.ha.Iw = new createjs.Shape(new createjs.Graphics); + g.addChild(g.ha); + g.ha.addChild(g.ha.nodes); + g.ha.addChild(g.ha.Iw); + for (var m = p(b.DN.rm), k = m.next(); ! k.done; k = m.next()) { + k = p(k.value); + for (var c = k.next(); ! c.done; c = k.next()) { + c = c.value; + var a = Ni(b, c.Qw); + g.ha.nodes.graphics.beginFill(1 == c.type ? "#0f0" : "#f00"); + g.ha.nodes.graphics.drawCircle(a.x, + a.y, 1) + } + } + g.ha.nodes.cache(b.Pa.x, b.Pa.y, b.Pa.width, b.Pa.height, 3) + } + g.ha.Iw.graphics.clear(); + m = this.ha.find(Ti); + m = p(m); + for (k = m.next(); ! k.done; k = m.next()) { + k = k.value.ec.get(Ti); + c = null; + a = p(k.path); + for (var n = a.next(); ! n.done; n = a.next()) n = n.value, c && (g.ha.Iw.graphics.setStrokeStyle(.5).beginStroke("#00f"), g.ha.Iw.graphics.moveTo(n.x, n.y), g.ha.Iw.graphics.lineTo(c.x, c.y), g.ha.Iw.graphics.endStroke()), g.ha.Iw.graphics.beginFill("#00f"), g.ha.Iw.graphics.drawCircle(n.x, n.y, 1), c = n; + k.start && (c = Ni(b, k.start.Qw), + g.ha.Iw.graphics.beginFill("#ff0"), g.ha.Iw.graphics.drawCircle(c.x, c.y, 1)); + k.end && (k = Ni(b, k.end.Qw), g.ha.Iw.graphics.beginFill("#f0f"), g.ha.Iw.graphics.drawCircle(k.x, k.y, 1)) + } + } +}; +Gt.prototype.DN = function () { + var b = this.ha.find(Ui), g = Q(this.ha, Si), m = g.ec.get(Si); + m.Pa = Gj(g); + m.width = Math.round(m.Pa.width / 10); + m.height = Math.round(m.Pa.height / 10); + if (0 == m.rm.length) { + m.rm = Array(m.width).fill([]).map(function () { + return Array(m.height).fill(1) + }); + b = p(b); + for (g = b.next(); ! g.done; g = b.next()) { + g = g.value; + var k = Gj(g); + if (k) { + k = Hj(k, 2); + var c = g.ec.get(Ui); + if (g && k && c.Gp && c.Gp.collisionFilterGroup & 2) for (g = Mi(m, B(k.x, k.y)), k = Mi(m, B(k.x + k.width, k.y + k.height)), c = g.x; c <= k.x; c++) for (var a = g.y; a <= k.y; a++) bh(0, + c, m.width - 1) && bh(0, a, m.height - 1) && (m.rm[c][a] = 0) + } + } + m.DN = new Ri(m.rm) + } +}; +var Ht = function (b) { + var g = Q(b.ha, Si).ec.get(Si); + b = b.ha.find(Ti); + b = p(b); + for (var m = b.next(); ! m.done; m = b.next()) { + var k = m.value, c = k.ec.get(Ti).target; + c && (m = k.ec.get(Ti), k = Mi(g, N(k)), c = Mi(g, c), c.x = ch(0, c.x, g.width - 1), c.y = ch(0, c.y, g.height - 1), m.start = g.DN.rm[k.x][k.y], m.end = g.DN.rm[c.x][c.y], m.start && m.end && (c = Pi(g.DN, m.start, m.end), m.nodes = c, m.path = c.map(function (a) { + return Ni(g, a.Qw) + }))) + } +}; +var It = function (b) { + Zn.call(this, b, "6CC3977E663B4BA1A079CF41822948DB", [Tn(8), Un(A.Rka), Wn()]) +}; +q(It, Zn); +It.prototype.start = function () { + this.ha = (0, Sk.kp)("6CC3977E663B4BA1A079CF41822948DB").getLibrary(); + this.Ca = new this.ha.vU; + this.oc = [new Ep(this), new Uo(this), new mp(this, A.Rka), new Wo(this, [Vp, Hr, wt, At, xt, Dt, zt, yt, Bt, aq, dq, Ls]), new Vp(this), new Hr(this), new Os(this), new Ls(this), new Pp(this), new At(this), new wt(this), new xt(this), new Dt(this), new zt(this), new yt(this), new Bt(this), new dq(this), new yr(this), new Ar(this), new Gt(this), new Cq(this), new Dq(this), new aq(this), new Ct(this), new Et(this)]; + this.Sc = + [new Ps(this), new Br(this), new Cr(this), new Yp(this), new Ft(this)]; + if (gf) { + var b = this.Cc.oc; + b.load("rugbyoutro").then(function (g) { + return Cn(g) + }); + Co() && b.load("outro").then(function (g) { + return Cn(g) + }) + } +}; +var Jt = ["n", "s", "e", "w", "action"], Kt = [Yj, { + name: "kickFlip", + Hf: 200, + multiplier: 1, + text: "Kick Flip", + frame: "kick_flip_e", + actions: ["e", "action"], + duration: 15 +}, { + name: "kickFlip", + Hf: 200, + multiplier: 1, + text: "Kick Flip", + frame: "kick_flip_w", + actions: ["w", "action"], + duration: 15 +}, { + name: "barrelRoll", + Hf: 300, + multiplier: 1, + text: "Barrel Roll", + frame: "barrel_roll_e", + actions: ["w", "n", "action"], + duration: 24 +}, { + name: "barrelRoll", + Hf: 300, + multiplier: 1, + text: "Barrel Roll", + frame: "barrel_roll_w", + actions: ["e", "n", "action"], + duration: 24 +}, + { + name: "bsOneEighty", + Hf: 300, + multiplier: 1, + text: "BS 180", + frame: null, + actions: ["e", "n", "w"], + duration: 1 + }, { + name: "bsOneEighty", + Hf: 300, + multiplier: 1, + text: "BS 180", + frame: null, + actions: ["w", "n", "e"], + duration: 1 + }, { + name: "fsOneEighty", + Hf: 300, + multiplier: 1, + text: "FS 180", + frame: null, + actions: ["e", "s", "w"], + duration: 1 + }, { + name: "fsOneEighty", + Hf: 300, + multiplier: 1, + text: "FS 180", + frame: null, + actions: ["w", "s", "e"], + duration: 1 + }, { + name: "headstandTrick", + Hf: 500, + multiplier: 1, + text: "Headstand", + frame: "super_trick", + actions: ["s", "w", "n", "action"], + duration: 35 + }, { + name: "headstandTrick", + Hf: 500, + multiplier: 1, + text: "Headstand", + frame: "super_trick", + actions: ["s", "e", "n", "action"], + duration: 35 + }, { + name: "helicopterTrick", + Hf: 500, + multiplier: 1, + text: "Helicopter", + frame: "helicopter", + actions: ["e", "w", "e", "action"], + duration: 35 + }, { + name: "helicopterTrick", + Hf: 500, + multiplier: 1, + text: "Helicopter", + frame: "helicopter", + actions: ["w", "e", "w", "action"], + duration: 35 + }], Lt = function (b) { + for (var g = 0, m = p(b), k = m.next(); ! k.done; k = m.next()) g += k.value.ha.Hf; + m = p(b); + for (k = m.next(); ! k.done; k = + m.next()) g *= k.value.ha.multiplier; + return g *= b.length +}, Mt = function (b) { + return ti(b, fk).map(function (g) { + g.alpha = 0; + var m = g.ec.get(fk); + g = N(g); + return new CANNON.Vec3(g.x, g.y, m.z) + }) +}, Nt = function (b, g, m, k) { + k = void 0 === k ? ! 1 : k; + var c = g.vsub(b, null); + g = c.unit(null); + c = c.norm(); + m = m.vsub(b, null); + k = k ? m.dot(g) : ch(0, m.dot(g), c); + return b.vadd(g.scale(k, null), null) +}, Ot = function (b) { + X.call(this, b); + this.Ap = new createjs.MovieClip; + this.Gf = new createjs.MovieClip; + this.oc = this.Sc = this.kb = this.Xd = this.Ca = this.Bb = null +}; +q(Ot, X); +Ot.prototype.tick = function () { + this.Ap = Q(this.ha, ck); + this.Gf = Q(this.ha, [ak, Ui, M, bi]); + this.Bb = this.Ap.ec.get(ck); + this.Ca = this.Gf.ec.get(ak); + this.Xd = this.Gf.ec.get(Ui); + this.kb = this.Gf.ec.get(M); + this.Sc = this.Gf.ec.get(bi); + this.oc = this.Gf.ec.get(aj); + if ( ! this.Ca.ha) { + var b = this.Ca.TB; + this.Ca.TB = ! 1; + for (var g = p(this.Xd.contacts.values()), m = g.next(); ! m.done; m = g.next()) { + m = m.value; + for (var k = ! 0, c = p(m.Iaa), a = c.next(); ! a.done; a = c.next()) m.Iaa[0].z != a.value.z && (k = ! 1); + if (k) { + this.Ca.TB = ! 0; + this.Ca.Bb = 0; + this.Ca.Ca = 0; + break + } + } + ! b && this.Ca.TB ? (this.Ca.actions = [], 0 < this.Ca.kb ? (A.u1a.play(), this.Ca.sK = 30, this.Ca.ha = null, this.Ca.CK = [], this.Ap.bx.color = "#ff1111", this.Ap.cB.color = "#ff1111", createjs.Tween.get(this.Ap.bx, { + override: ! 0, + useTicks: ! 0 + }).to({alpha: 0}, 30), createjs.Tween.get(this.Ap.cB, { + override: ! 0, + useTicks: ! 0 + }).to({alpha: 0}, 30)) : (Pt(this, "land"), this.Ca.oc = 8)) : b && ! this.Ca.TB && (Qt(this), Pt(this, "air")) + } + if ( ! (0 < this.Ca.sK || 0 < this.Ca.kb)) { + b = N(this.Gf); + b = new CANNON.Vec3(b.x, b.y, this.oc.z); + g = this.kb.velocity; + m = this.ha.find(ek); + m = p(m); + for (k = m.next(); ! k.done; k = m.next()) { + k = k.value; + c = Mt(k); + a = c[1].vsub(c[0], null); + a = B(a.x, a.y); + var n = b.distanceTo(Nt(c[0], c[1], b, ! 1)), h = Nt(c[0], c[1], b); + this.Ca.ha ? (n = this.ha.Cc.ak.ha, this.Ca.ha != k && (5 > c[0].distanceTo(b) ? 30 > Math.abs(ih(a, g)) ? Rt(this, k) : 0 < C(n) && 30 > Math.abs(ih(a, n)) && 120 > Math.abs(ih(a, g)) && (this.kb.velocity = a, Rt(this, k)) : 5 > c[1].distanceTo(b) && (30 > Math.abs(ih(kg(a, -1), g)) ? Rt(this, k) : 0 < C(n) && 30 > Math.abs(ih(kg(a, -1), n)) && 120 > Math.abs(ih(kg(a, -1), g)) && (this.kb.velocity = kg(a, -1), Rt(this, + k))))) : ! this.Ca.TB && 0 >= this.kb.pC && 0 < C(g) && 14 > n && this.oc.z - 3 <= h.z && (60 > Math.abs(ih(a, g)) || 60 > Math.abs(ih(kg(a, -1), g))) && Rt(this, k) + } + this.Ca.ha && (g = Mt(this.Ca.ha), b = b.distanceTo(Nt(g[0], g[1], b, ! 1)), this.Ca.IY++, St(this), 14 < b && Qt(this)) + } + this.Ca.ha || (0 < this.Ca.sK ? (this.Ca.sK = Math.max(0, this.Ca.sK - 1), this.kb.velocity = kg(this.kb.velocity, .8)) : 0 < this.Ca.kb || (b = this.ha.Cc.ak, m = b.ha, 1 != b.Sc || this.Ca.TB || (b = mh(m)) && 1 == b.length && Pt(this, b), b = C(this.kb.velocity), c = kh(this.kb.velocity), g = lg(m, 5 * C(m)), k = C(g), 0 < + C(m) && (g = g.sub(this.kb.velocity), m = ih(c, m), k = Math.max(0, k - b), this.Ca.TB ? (c = Math.min(.75, k), k = (25 - Math.min(3 + b, 25)) / 25, a = 30 * k, a = kh(this.kb.velocity) + ch(-a, m, a), g = this.kb.velocity.add(lg(g, c)), b = lg(oh(a), b + Math.max(c, 0)), m = k * ch(0, fh(180, Math.abs(m), 100), 1), this.kb.velocity = isNaN(b.x) || isNaN(b.y) ? g : gh(g, m, b)) : (b = Math.min(.07 * 5, k), 0 < b && (b = this.kb.velocity.add(lg(g, b)), this.kb.velocity = b))))); + b = this.ha.Cc.ak; + g = Q(this.ha, Xi).ec.get(Xi); + g.world.gravity.set(0, 0, -300); + 0 < this.Ca.Bb && (this.Ca.Bb++, b.kb[4] && + g.world.gravity.set(0, 0, -210)); + 0 < this.Ca.Ca && this.Ca.Ca++; + ! b.Ca[4] || 0 < this.Ca.kb || 0 < this.Ca.sK || (Pt(this, "action"), this.Ca.TB && Pt(this, "air"), 0 != this.Ca.Bb && 0 != this.Ca.Ca) || (this.kb.pC = 6, this.oc.z += 1, b = b.ha, this.Ca.Ca && 0 < C(b) && (this.kb.velocity = kg(b, 4)), this.Ca.ha && Qt(this), 0 == this.Ca.Bb ? (this.Ca.Bb = 1, A.s1a.play()) : this.Ca.Ca || (this.Ca.Ca = 1, A.r1a.play())); + Tt(this); + g = this.kb.velocity; + m = this.ha.Cc.ak.ha; + b = mh(m) || this.Sc.direction; + this.Ca.TB && 1 < C(g) ? (g = mh(g), this.Sc.direction = g && g != Rg(b) && g != b ? g : b) : + 0 < C(m) && b && (this.Sc.direction = b); + g = this.ha.Cc.ak.ha; + b = ! 1; + if (0 < this.Ca.sK) b = Kj(this.Gf, "fall"); else if (0 < this.Ca.kb) g = this.Ca.CK[this.Ca.CK.length - 1], g.ha.frame && (b = Kj(this.Gf, g.ha.frame)); else if (this.Ca.ha) b = Kj(this.Gf, "grind"); else if (0 < this.Ca.Bb || 0 < this.Ca.Ca) { + if (1 == this.Ca.Bb || 1 == this.Ca.Ca) for (b = ti(this.Gf, di), b = p(b), g = b.next(); ! g.done; g = b.next()) for (g = p(g.value.children), m = g.next(); ! m.done; m = g.next()) m = m.value, void 0 != m.currentFrame && m.gotoAndPlay(0); + b = Kj(this.Gf, "jump") + } else b = 0 == C(g) && .3 > + C(this.kb.velocity) ? Kj(this.Gf, "stop") : 2 > C(this.kb.velocity) ? Kj(this.Gf, "slow") : Kj(this.Gf, "fast"); + b && Mj(this.ha, this.Gf, ! 0, ! 0); + b = ti(this.Gf, di); + b = p(b); + for (g = b.next(); ! g.done; g = b.next()) g = g.value, g.visible && Lj(g, this.Sc.direction); + this.Gf.ec.get(Yh).offset.y = -this.oc.z / 2 +}; +var St = function (b) { + var g = N(b.Gf), m = new CANNON.Vec3(g.x, g.y, b.oc.z); + if (g = b.Ca.ha) { + var k = Mt(g), c = k[1].vsub(k[0], null); + g = B(c.x, c.y); + m = Nt(k[0], k[1], m, ! 0); + Fj(b.Gf, B(m.x, m.y)); + b.oc.z = m.z + 2; + b.oc.KT = b.oc.z; + m = c.unit(null).scale(5, null); + 90 < Math.abs(ih(g, b.kb.velocity)) && (m = m.scale(-1)); + b.kb.velocity.x = m.x; + b.kb.velocity.y = m.y; + b.kb.pC = m.z + } + }, Rt = function (b, g) { + Be(A.F5) || A.F5.play(0, ! 0); + Ut(b); + b.Ca.ha = g; + b.Ca.Bb = 0; + b.Ca.Ca = 0; + b.Ca.IY++; + Pt(b, "grindStart"); + Vt(b); + St(b) + }, Qt = function (b) { + A.F5.stop(); + b.Ca.ha && (b.Ca.ha = null, + Pt(b, "grindEnd")) + }, Pt = function (b, g) { + b.Ca.actions.push(new bk(b.Gf, g)); + if (Jt.includes(g)) { + var m = Pj(b.ha, b.ha.ha.Lqa); + Qj(b.ha, m, b.Ap.prompt); + m.gotoAndStop(g); + b.Bb.ha.push(m); + g = b.Bb.ha.length; + for (var k = 4 < g, c = [].concat(ha(b.Bb.ha)), a = 0; a < g; a++) { + var n = c[a], h = k ? eh(-60, (a - 1) / 3, 60) : eh(20 * -(g - 1), a / (g - 1), 20 * (g - 1)) || 0; + n == m ? m.x = h : (createjs.Tween.removeTweens(n), createjs.Tween.get(n, { + override: ! 0, + useTicks: ! 0 + }).to({x: h}, 5, createjs.Ease.cubicOut), k && 0 == a && (createjs.Tween.get(n, {useTicks: ! 0}).to({alpha: 0}, 5), b.Bb.ha.shift())) + } + } + }, + Tt = function (b) { + 0 < b.Ca.kb && (b.Ca.kb = Math.max(0, b.Ca.kb - 1), 0 == b.Ca.kb && Ut(b)); + b.Ca.TB && 0 < b.Ca.oc && (b.Ca.oc = Math.max(0, b.Ca.oc - 1), 0 == b.Ca.oc && (Wt(b), Ut(b))); + var g = b.Ca.actions.length; + if (0 != g) { + var m = b.Ca.actions[g - 1], k = m.direction, c = mh(m.velocity); + "land" == m.type && k == Rg(c) && 1 < C(m.velocity) && Xt(b, Wj, [m]); + b.Ca.a7 && (b.Ca.a7 = ! 1, Xt(b, Xj, [])); + var a; + m = p(Kt); + for (k = m.next(); ! k.done; k = m.next()) k = k.value, c = k.actions.length, g < c || a && a.Hf >= k.Hf || (c = b.Ca.actions.slice(-c).map(function (n) { + return n.type + }), mk(k.actions, + c) && (a = k)); + a && (a === Yj && (a.frame = "e" == b.Sc.direction || "n" == b.Sc.direction ? "nose_grab_e" : "nose_grab_w"), Xt(b, a, b.Ca.actions.slice(-a.actions.length))) + } + }, Xt = function (b, g, m) { + b.Ca.CK.push(new Zj(g, m)); + 0 < g.duration && (b.Ca.kb = g.duration); + b.Ca.actions = []; + uh(g.name + "_COMPLETE", ! 0); + Vt(b); + if (0 != b.Bb.ha.length) { + m = b.Bb.ha.length; + g = g.actions.length; + for (var k = [].concat(ha(b.Bb.ha)), c = m - g, a = 0; a < m; a++) { + var n = eh(20 * -(g - 1), (a - c) / (g - 1), 20 * (g - 1)) || 0, h = k[a]; + createjs.Tween.removeTweens(h); + createjs.Tween.get(h, { + override: ! 0, + useTicks: ! 0 + }).to({x: n}, 5, createjs.Ease.cubicOut); + a < c ? createjs.Tween.get(h, {useTicks: ! 0}).to({alpha: 0}, 5) : (h.filters = [new createjs.ColorFilter(.2, 1, .2)], h.cache(-20, -20, 40, 40)) + } + b.Bb.ha = b.Bb.ha.slice(c) + } + }, Ut = function (b) { + if (0 != b.Bb.ha.length) { + var g = [].concat(ha(b.Bb.ha)); + g = p(g); + for (var m = g.next(); ! m.done; m = g.next()) createjs.Tween.get(m.value, {useTicks: ! 0}).to({alpha: 0}, 5); + b.Bb.ha = [] + } + }, Vt = function (b) { + b.Ap.BU.gotoAndPlay(1); + b.Ap.CU.gotoAndPlay(1); + createjs.Tween.removeTweens(b.Ap.bx); + createjs.Tween.removeTweens(b.Ap.cB); + b.Ap.bx.color = "#ffffff"; + b.Ap.cB.color = "#ffffff"; + b.Ap.bx.alpha = 1; + b.Ap.cB.alpha = 1 + }, Wt = function (b) { + var g = b.Ca.IY + Lt(b.Ca.CK); + b.Ca.Hf += g; + b.Ca.IY = 0; + b.Ap.Hf.text = b.Ca.Hf; + b.Ap.FJ.text = b.Ca.Hf; + createjs.Tween.get(b.Ap.bx, {override: ! 0, useTicks: ! 0}).to({alpha: 0}, 30); + createjs.Tween.get(b.Ap.cB, {override: ! 0, useTicks: ! 0}).to({alpha: 0}, 30); + 0 == b.Ca.sK && 0 < g && (createjs.Tween.get(b.Ap.Hf, {override: ! 0, useTicks: ! 0}).to({ + scaleX: 1.2, + scaleY: 1.2 + }, 2, createjs.Ease.cubicOut).to({scaleX: 1, scaleY: 1}, 20, createjs.Ease.cubicInOut), + createjs.Tween.get(b.Ap.FJ, {override: ! 0, useTicks: ! 0}).to({ + scaleX: 1.2, + scaleY: 1.2 + }, 2, createjs.Ease.cubicOut).to({scaleX: 1, scaleY: 1}, 20, createjs.Ease.cubicInOut)); + b.Ca.CK = [] + }, Yt = function (b) { + X.call(this, b); + this.Ca = null + }; +q(Yt, X); +Yt.prototype.tick = function () { + var b = this.ha.find([gk, Gk]); + if (this.Ca) 0 < this.Ca.ec.get(Gk).ex.length && (Q(this.ha, ak).ec.get(ak).a7 = ! 0, b = rh(b.filter(function (m) { + return ! m.active + })), this.Ca.active = ! 1, this.Ca.gotoAndStop("out"), this.Ca = null, b && (b.alpha = 1, b.ec.get(gk).active = ! 0, this.Ca = b)); else if (this.Ca = rh(b)) { + b = p(b); + for (var g = b.next(); ! g.done; g = b.next()) g = g.value, g.alpha = g == this.Ca ? 1 : 0, g.ec.get(gk).active = g == this.Ca + } +}; +var Zt = function () { + X.apply(this, arguments) +}; +q(Zt, X); +Zt.prototype.tick = function () { + var b = Q(this.ha, ak).ec.get(ak), g = Q(this.ha, ck); + g.time.text = lk(b.CN); + g.Bp.text = lk(b.CN); + g.Hf.text = b.Hf; + var m = b.IY + Lt(b.CK); + if (m) { + var k = b.CK.length; + g.bx.text = 1 < k ? "x" + k + "! " + m : "" + m; + m = g.cB; + k = new Map; + for (var c = p(b.CK), a = c.next(); ! a.done; a = c.next()) a = a.value, k.has(a.ha.text) ? k.set(a.ha.text, k.get(a.ha.text) + 1) : k.set(a.ha.text, 1); + c = ""; + a = k.keys(); + a = p(a); + for (var n = a.next(); ! n.done; n = a.next()) { + n = n.value; + c && (c += " + "); + var h = k.get(n); + c += n; + 1 < h && (c += " x " + h) + } + m.text = c; + m = g.bx.getTransformedBounds(); + g.BU.x = m.x - 45; + g.CU.x = m.x + m.width + 30 + } + m = "#ffffff"; + 450 > b.CN && 0 == Math.floor(b.CN / 15) % 2 && (m = "#ff3030"); + g.time.color = m +}; +var $t = function (b) { + Yo.call(this, b, [Yt, Zt]) +}; +q($t, Yo); +$t.prototype.tick = function () { + Yo.prototype.tick.call(this); + var b = Q(this.ha, ak).ec.get(ak), g = Q(this.ha, ck); + b.CN = Math.max(0, b.CN - 1); + this.Ca || 0 != b.CN || (g.time.text = lk(0), g.Bp.text = lk(0), To(this.ha.Cc.kb, L("TIMES_UP"), { + size: 80, + shadow: "#111", + outline: "#555", + Hw: 2 + }), Zo(this, b.Hf)) +}; +var au = function () { + S.apply(this, arguments) +}; +q(au, S); +au.prototype.fu = function (b) { + b.ec.has(Xi) && b.ec.get(Xi).world.gravity.set(0, 0, -300) +}; +var bu = function () { + S.apply(this, arguments) +}; +q(bu, S); +bu.prototype.gu = function (b) { + if (pi(b, [hk, Gk])) { + var g = b.ec.get(hk); + b.addEventListener("trigger", function (m) { + var k = m.NU.ec.get(bi); + m = m.NU.ec.get(M); + g.direction == k.direction && 2 < C(m.velocity) && (m.velocity = m.velocity.add(kg(oh(g.direction), g.speed / 3)), A.t1a.play()) + }) + } +}; +var cu = function () { + S.apply(this, arguments) +}; +q(cu, S); +cu.prototype.gu = function (b) { + if (pi(b, [ik, Gk])) { + var g = b.ec.get(ik); + b.addEventListener("trigger", function (m) { + var k = m.NU.ec.get(M); + 0 == m.NU.ec.get(ak).sK && (k.pC = Math.max(0, k.pC) + g.speed) + }) + } +}; +var du = function () { + S.apply(this, arguments) +}; +q(du, S); +du.prototype.gu = function (b) { + if (pi(b, [dk, Gk])) { + var g = b.ec.get(dk); + b.addEventListener("trigger", function (m) { + b.ec.get(Gk); + m.NU.ec.get(ak).Hf += g.points; + co(b) + }) + } +}; +var eu = function (b) { + Zn.call(this, b, "8AB206B0C8EC450BA137F5272C53C5F0", [Tn(9), Un(A.Kla), Wn()]) +}; +q(eu, Zn); +eu.prototype.start = function () { + this.ha = (0, Sk.kp)("8AB206B0C8EC450BA137F5272C53C5F0").getLibrary(); + this.Ca = new this.ha.ycb; + this.oc = [new Ep(this), new Uo(this), new mp(this, A.Kla), new Wo(this, [Ot, $t, Ar, tt, dq]), new Hr(this), new Yt(this), new Vp(this), new yr(this), new Ar(this), new Ot(this), new Zt(this), new Cq(this), new Dq(this), new bq(this), new dq(this), new tt(this), new Ls(this), new Qp(this), new Os(this), new $t(this)]; + this.Sc = [new Br(this), new Cr(this), new au(this), new Qs(this), new Ps(this), new bu(this), + new cu(this), new du(this), new Xp(this), new Yp(this)]; + if (gf) { + var b = this.Cc.oc; + b.load("skateoutro").then(function (g) { + return Cn(g) + }); + Co() && b.load("outro").then(function (g) { + return Cn(g) + }) + } +}; +var fu = Fe.AJ(), gu = new Map([[0, 2], [1, 1], [2, 3], [3, 0]]), + hu = new Map([[0, "up"], [1, "right"], [2, "down"], [3, "left"]]), iu = [0, 2, 1, 3], + ju = new Map([[-5, {text: "MISS", color: "#f01d1d", outline: "#6e0505", scale: 1.2}], [-50, { + text: "MISS", + color: "#f01d1d", + outline: "#6e0505", + scale: 1.2 + }], [50, {text: "GOOD", color: "#ffd500", outline: "#965000", scale: 1.4}], [100, { + text: "PERFECT", + color: "#0bd60b", + outline: "#055e05", + scale: 1.5 + }]]), ku = function (b) { + Yo.call(this, b, []) + }; +q(ku, Yo); +ku.prototype.tick = function () { + Yo.prototype.tick.call(this); + var b = Q(this.ha, Vh), g = b.ec.get(zk), m = b.ec.get(vk), k = this.ha.kb.MOVES; + if ( ! g.yY) { + g.yY = ! 0; + var c = void 0 === c ? 3500 : c; + fu.ha ? (m.FL = 1E3 * fu.ha.currentTime, m.T6 = m.FL + c) : self.performance && self.performance.now ? (m.FL = performance.now(), m.Faa = m.FL + c) : (m.FL = createjs.Ticker.getTime() + c, m.rqa = m.FL + c); + this.ha.kb.AUDIO.play(c) + } + b = b.ec.get(wk); + b.rY < k.length && (b = k[b.rY], 10 === b.type && m.RB >= b.time && (m = Math.round(g.sqa / (k.length - 1) * 3), this.Ca || (Zo(this, g.wp, m), To(this.ha.Cc.kb, + L("NICE_MOVES"), {size: 80, shadow: "#111", outline: "#555", Hw: 2})))) +}; +var lu = function () { + X.apply(this, arguments) +}; +q(lu, X); +lu.prototype.tick = function () { + var b = Q(this.ha, vk).ec.get(vk); + b.currentFrame++; + if (null !== b.T6 && fu.ha) b.zL = 1E3 * fu.ha.currentTime, b.RB = b.zL - b.T6; else if (b.Faa) b.zL = performance.now(), b.RB = b.zL - b.Faa; else if (b.zdb) b.zL = createjs.Ticker.getTime(), b.RB = b.zL - b.rqa; else throw Error("T"); + b.rab = b.zL - b.FL; + b.FL = b.zL +}; +var mu = function () { + X.apply(this, arguments) +}; +q(mu, X); +mu.prototype.tick = function () { + var b = Q(this.ha, Vh), g = b.ec.get(vk), m = b.ec.get(wk), k = this.ha.kb.MOVES; + for (b.snapToPixel = ! 0; m.rY < k.length;) { + var c = k[m.rY]; + if (c.time > g.RB + 2E3 || 10 === c.type) break; + if (10 !== c.type) switch (c.type) { + case 3: + nu(this, c.type, c.time, b.left); + break; + case 1: + nu(this, c.type, c.time, b.right); + break; + case 0: + nu(this, c.type, c.time, b.up); + break; + case 2: + nu(this, c.type, c.time, b.HC) + } + m.rY++ + } +}; +var nu = function (b, g, m, k) { + var c = Pj(b.ha, b.ha.ha.ysa); + Qj(b.ha, c, k); + var a = c.ec.get(xk); + a.type = g; + a.time = m; + b = b.ha; + m = c.ec.get(xk); + g = hu.get(g); + Kj(c, g); + Mj(b, c, ! 0, ! 0); + m.Ts = ui(c, di); + if ( ! m.Ts) throw Error("U"); + ou(m.Ts, "default"); + Kj(a.Ts, "default"); + a.track = k; + c.y = -1E3 +}, pu = function () { + X.apply(this, arguments) +}; +q(pu, X); +pu.prototype.tick = function () { + var b = Q(this.ha, Vh).ec.get(vk), g = Q(this.ha, zk).ec.get(zk), m = this.ha.kb.SPEED, k = this.ha.find(xk); + k = p(k); + for (var c = k.next(); ! c.done; c = k.next()) { + c = c.value; + var a = c.ec.get(xk); + if (2 != a.state) { + var n = b.RB - a.time; + c.y = n / 1E3 * m; + 130 < n && 0 == a.state && (a.state = 1, Kj(c, "miss"), qu(c, g, -5, this.ha)) + } + } +}; +var ru = function () { + X.apply(this, arguments) +}; +q(ru, X); +ru.prototype.tick = function () { + var b = Q(this.ha, Vh).ec.get(vk), g = Q(this.ha, zk).ec.get(zk), m = this.ha.find(Ek); + m.sort(function (d, e) { + return d.x - e.x + }); + for (var k = [1, 0, -2, 3], c = 0; c < m.length; c++) { + var a = m[c], n = a.ec.get(Ek), h = 0; + 0 >= g.GQ && ! a.ec.has(Ak) && (h = Math.abs(g.GQ) / 10 * k[c]); + Fj(a, n.Ypa.add(B(0, su(20 * Math.sin(Math.PI / 60 * b.currentFrame + h))))) + } + if (m = Q(this.ha, yk)) m.alpha = -5 > g.GQ ? (Math.sin(Math.PI / 60 * b.currentFrame) + 1) / 2 : 0 +}; +var tu = function () { + X.apply(this, arguments) +}; +q(tu, X); +tu.prototype.tick = function () { + var b = Q(this.ha, vk).ec.get(vk), g = this.ha.find(xk).filter(function (a) { + a = a.ec.get(xk); + return ! a.Opa && a.time > b.RB + }).sort(function (a, n) { + return a.ec.get(xk).time - n.ec.get(xk).time + }); + if (0 < g.length && (g = g[0].ec.get(xk), 150 > g.time - b.RB)) { + g.Opa = ! 0; + for (var m = p([Bk, Ck, Dk]), k = m.next(); ! k.done; k = m.next()) { + k = Q(this.ha, [Ek, k.value]); + var c = hu.get(g.type); + Kj(k, c, ! 1); + Mj(this.ha, k, ! 0, ! 0); + ui(k, di).gotoAndPlay(0) + } + } +}; +var uu = function () { + X.apply(this, arguments) +}; +q(uu, X); +uu.prototype.tick = function () { + for (var b = this.ha.Cc.ak, g = Q(this.ha, Vh), m = Q(this.ha, [Ak, Ek]), k = m.ec.get(Ak), c = Q(this.ha, zk).ec.get(zk), a = Q(this.ha, vk).ec.get(vk), n = null, h = function (v) { + switch (v) { + case 3: + return g.left; + case 1: + return g.right; + case 0: + return g.up; + case 2: + return g.HC + } + }, d = p(iu), e = d.next(); ! e.done; e = d.next()) { + var f = e.value; + e = gu.get(f); + f = h(f); + b.Ca[e] ? f.target.dispatchEvent("mousedown") : b.kb[e] || f.target.dispatchEvent("pressup") + } + b = p(iu); + for (e = b.next(); ! e.done; e = b.next()) if (h = e.value, 50 > Math.abs(a.RB - + c.xL[h])) { + n = hu.get(h); + break + } + n && n !== k.V6 && (k.V6 = n, Kj(m, n), Mj(this.ha, m, ! 0, ! 0), ui(m, di).gotoAndPlay(0)); + m = this.ha.find(xk); + vu(m); + m = p(m); + for (k = m.next(); ! k.done; k = m.next()) k = k.value, n = k.ec.get(xk), 0 == n.state && (a = n.type, n = Math.abs(n.time - c.xL[a]), 70 > n ? (qu(k, c, 100, this.ha), c.xL[a] = 0) : 130 > n && (qu(k, c, 50, this.ha), c.xL[a] = 0)) +}; +var qu = function (b, g, m, k) { + var c = b.ec.get(xk); + if (50 === m || 100 === m) { + c.state = 2; + b.ec.delete(M); + Kj(c.Ts, "success"); + var a = c.Ts; + ou(a, "success"); + a.addEventListener("animation_finished", function () { + co(b); + a.removeAllEventListeners("animation_finished") + }) + } else { + c.state = 1; + Kj(c.Ts, "miss"); + var n = c.Ts; + ou(n, "miss"); + n.addEventListener("animation_finished", function () { + n.removeAllEventListeners("animation_finished") + }) + } + wu(k, m); + xu(m, g) +}, xu = function (b, g) { + var m = 1, k = 50 === b || 100 === b; + k && 10 < g.ut && 20 >= g.ut ? m = 3 : k && 20 < g.ut && (m = 5); + g.wp = Math.max(0, g.wp + b * m); + k ? (g.sqa++, g.ut++, g.GQ = Math.min(5, g.GQ + 1)) : (g.ut = 0, g.GQ = Math.max(-10, g.GQ - 1)) +}, wu = function (b, g) { + g = ju.get(g); + To(b.Cc.kb, L(g.text), { + size: 40, + type: "scale", + scale: g.scale, + color: g.color, + outline: g.outline, + Hw: 2, + duration: 200 + }, ! 1) +}, yu = function () { + X.apply(this, arguments) +}; +q(yu, X); +yu.prototype.tick = function () { + var b = Q(this.ha, zk).ec.get(zk), g = this.ha.Ca.children.find(function (m) { + return "score" === m.name + }); + g.children.find(function (m) { + return "scoreText" === m.name + }).text = "" + b.wp; + g = g.children.find(function (m) { + return "combo" === m.name + }); + 3 <= b.ut ? (g.visible = ! 0, g.children.find(function (m) { + return "comboText" === m.name + }).text = "" + b.ut) : g.visible = ! 1 +}; +var zu = function () { + S.apply(this, arguments) +}; +q(zu, S); +zu.prototype.gu = function (b) { + var g = b.ec.get(Ek); + if (g) { + b.addEventListener("move_finished", function () { + Kj(b, "idle", ! 1); + ui(b, di).gotoAndPlay(0) + }); + var m = b.ec.get(Ak); + m && b.addEventListener("move_finished", function () { + m.V6 = null + }); + g.Ypa = N(b) + } +}; +var Au = function () { + S.apply(this, arguments) +}; +q(Au, S); +Au.prototype.gu = function (b) { + b.ec.has(Fk) && (b.addEventListener("beat_finished", function () { + b.gotoAndStop(0) + }), b.gotoAndStop(0)) +}; +var Bu = function () { + S.apply(this, arguments) +}; +q(Bu, S); +Bu.prototype.fu = function (b) { + if (b.ec.has(Vh)) { + var g = b.ec.get(zk); + b.left.target.on("mousedown", function () { + var m = b.ec.get(vk); + g.xL[3] = m.RB + }); + b.right.target.on("mousedown", function () { + var m = b.ec.get(vk); + g.xL[1] = m.RB + }); + b.up.target.on("mousedown", function () { + var m = b.ec.get(vk); + g.xL[0] = m.RB + }); + b.HC.target.on("mousedown", function () { + var m = b.ec.get(vk); + g.xL[2] = m.RB + }) + } +}; +var vu = function (b) { + b.sort(function (g, m) { + return g.y - m.y + }) +}, su = function (b) { + return 0 < b ? Math.floor(b) : Math.ceil(b) +}, ou = function (b, g) { + Kj(b, g); + b = p(b.children); + for (g = b.next(); ! g.done; g = b.next()) g = g.value, g.gotoAndPlay && g.gotoAndPlay(0) +}; +var Cu = Fe.AJ(), Du = function (b, g) { + b = p(b); + for (var m = b.next(); ! m.done; m = b.next()) m.value.time += g +}, Eu = [{type: 0, time: 100}, {type: 0, time: 3680}, {type: 0, time: 4383}, {type: 0, time: 5114}, { + type: 0, + time: 5846 +}, {type: 0, time: 6548}, {type: 3, time: 7616}, {type: 1, time: 8017}, {type: 1, time: 8185}, { + type: 1, + time: 8754 +}, {type: 1, time: 9468}, {type: 3, time: 9799}, {type: 3, time: 10600}, {type: 1, time: 11685}, { + type: 0, + time: 12399 +}, {type: 0, time: 12736}, {type: 3, time: 13299}, {type: 2, time: 13468}, {type: 2, time: 14582}, { + type: 2, + time: 15180 +}, {type: 2, time: 15348}, + {type: 1, time: 15482}, {type: 1, time: 15650}, {type: 1, time: 15819}, {type: 3, time: 16382}, { + type: 0, + time: 16747 + }, {type: 1, time: 17113}, {type: 3, time: 17450}, {type: 2, time: 18251}, {type: 1, time: 18953}, { + type: 3, + time: 19656 + }, {type: 0, time: 20364}, {type: 0, time: 21101}, {type: 3, time: 21444}, {type: 1, time: 22181}, { + type: 0, + time: 23284 + }, {type: 0, time: 24021}, {type: 1, time: 24358}, {type: 1, time: 24735}, {type: 3, time: 25101}, { + type: 0, + time: 26256 + }, {type: 2, time: 26970}, {type: 2, time: 27336}, {type: 0, time: 28050}, {type: 0, time: 28415}, { + type: 0, + time: 28752 + }, { + type: 3, + time: 29129 + }, {type: 1, time: 29797}, {type: 1, time: 30563}, {type: 0, time: 31231}, {type: 3, time: 31968}, { + type: 3, + time: 32729 + }, {type: 1, time: 33065}, {type: 0, time: 33733}, {type: 3, time: 34934}, {type: 3, time: 35683}, { + type: 3, + time: 35979 + }, {type: 1, time: 36612}, {type: 1, time: 36780}, {type: 0, time: 37866}, {type: 3, time: 38197}, { + type: 2, + time: 38580 + }, {type: 2, time: 38946}, {type: 2, time: 39323}, {type: 2, time: 40078}, {type: 3, time: 40728}, { + type: 2, + time: 41070 + }, {type: 1, time: 41442}, {type: 1, time: 41813}, {type: 2, time: 42150}, {type: 2, time: 42551}, { + type: 3, + time: 43265 + }, + {type: 2, time: 43636}, {type: 2, time: 44344}, {type: 3, time: 45128}, {type: 2, time: 45796}, { + type: 2, + time: 46533 + }, {type: 1, time: 46933}, {type: 1, time: 47299}, {type: 3, time: 47607}, {type: 3, time: 47949}, { + type: 0, + time: 48350 + }, {type: 1, time: 48721}, {type: 3, time: 49099}, {type: 2, time: 50434}, {type: 2, time: 50805}, { + type: 2, + time: 52053 + }, {type: 2, time: 52396}, {type: 2, time: 53441}, {type: 2, time: 53812}, {type: 10, time: 54E3}]; +Du(Eu, 50); +var Fu = [{type: 2, time: 100}, {type: 2, time: 2757}, {type: 2, time: 2926}, {type: 2, time: 3094}, { + type: 2, + time: 3262 +}, {type: 2, time: 3396}, {type: 2, time: 3558}, {type: 2, time: 3727}, {type: 2, time: 3895}, { + type: 1, + time: 4058 +}, {type: 1, time: 4226}, {type: 1, time: 4394}, {type: 1, time: 4557}, {type: 3, time: 4690}, { + type: 3, + time: 4894 +}, {type: 3, time: 5062}, {type: 3, time: 5224}, {type: 0, time: 5393}, {type: 0, time: 5590}, { + type: 0, + time: 5759 +}, {type: 0, time: 5892}, {type: 0, time: 6060}, {type: 0, time: 6223}, {type: 1, time: 6391}, { + type: 0, + time: 6560 +}, {type: 2, time: 8092}, + {type: 2, time: 8226}, {type: 2, time: 8394}, {type: 2, time: 8557}, {type: 2, time: 8725}, { + type: 2, + time: 8893 + }, {type: 2, time: 9062}, {type: 2, time: 9195}, {type: 3, time: 9398}, {type: 3, time: 9561}, { + type: 3, + time: 9700 + }, {type: 3, time: 9868}, {type: 1, time: 10106}, {type: 1, time: 10240}, {type: 1, time: 10408}, { + type: 2, + time: 10681 + }, {type: 1, time: 11012}, {type: 0, time: 11146}, {type: 3, time: 12655}, {type: 0, time: 13038}, { + type: 1, + time: 13380 + }, {type: 0, time: 13746}, {type: 3, time: 14083}, {type: 3, time: 14216}, {type: 1, time: 14524}, { + type: 0, + time: 14861 + }, {type: 3, time: 14994}, + {type: 1, time: 15464}, {type: 0, time: 16028}, {type: 0, time: 16393}, {type: 0, time: 16562}, { + type: 0, + time: 16997 + }, {type: 1, time: 17984}, {type: 0, time: 18361}, {type: 3, time: 18663}, {type: 0, time: 19029}, { + type: 1, + time: 19360 + }, {type: 0, time: 19528}, {type: 3, time: 19859}, {type: 0, time: 20660}, {type: 1, time: 21037}, { + type: 0, + time: 21415 + }, {type: 0, time: 21745}, {type: 0, time: 21914}, {type: 1, time: 23342}, {type: 0, time: 23713}, { + type: 3, + time: 24015 + }, {type: 0, time: 24381}, {type: 1, time: 24718}, {type: 0, time: 24886}, {type: 3, time: 25165}, { + type: 0, + time: 25530 + }, { + type: 1, + time: 25664 + }, {type: 0, time: 26070}, {type: 3, time: 26680}, {type: 0, time: 27011}, {type: 0, time: 27179}, { + type: 0, + time: 27678 + }, {type: 1, time: 28648}, {type: 0, time: 29013}, {type: 3, time: 29379}, {type: 0, time: 29710}, { + type: 1, + time: 30012 + }, {type: 2, time: 30244}, {type: 3, time: 30679}, {type: 2, time: 31376}, {type: 2, time: 32078}, { + type: 2, + time: 32247 + }, {type: 3, time: 32583}, {type: 2, time: 32885}, {type: 1, time: 33228}, {type: 2, time: 34029}, { + type: 3, + time: 34331 + }, {type: 2, time: 34696}, {type: 2, time: 35062}, {type: 2, time: 35230}, {type: 1, time: 35730}, { + type: 0, + time: 35927 + }, + {type: 0, time: 36293}, {type: 0, time: 36426}, {type: 0, time: 36595}, {type: 0, time: 36763}, { + type: 0, + time: 36897 + }, {type: 0, time: 37065}, {type: 0, time: 37227}, {type: 0, time: 37431}, {type: 0, time: 38063}, { + type: 1, + time: 38528 + }, {type: 3, time: 39329}, {type: 0, time: 39695}, {type: 1, time: 40031}, {type: 2, time: 40635}, { + type: 3, + time: 40844 + }, {type: 0, time: 41047}, {type: 1, time: 41244}, {type: 0, time: 42028}, {type: 0, time: 42742}, { + type: 3, + time: 43056 + }, {type: 0, time: 43224}, {type: 1, time: 43595}, {type: 0, time: 43926}, {type: 3, time: 44681}, { + type: 0, + time: 45047 + }, { + type: 1, + time: 45383 + }, {type: 0, time: 45755}, {type: 0, time: 45923}, {type: 3, time: 46695}, {type: 0, time: 47026}, { + type: 1, + time: 47398 + }, {type: 2, time: 47694}, {type: 2, time: 48060}, {type: 3, time: 48396}, {type: 2, time: 48570}, { + type: 1, + time: 48739 + }, {type: 0, time: 48878}, {type: 3, time: 49244}, {type: 0, time: 49580}, {type: 1, time: 49778}, { + type: 0, + time: 49946 + }, {type: 3, time: 50242}, {type: 0, time: 50445}, {type: 1, time: 50747}, {type: 1, time: 51078}, { + type: 1, + time: 51415 + }, {type: 2, time: 51746}, {type: 3, time: 51914}, {type: 0, time: 52680}, {type: 3, time: 53377}, { + type: 3, + time: 53743 + }, + {type: 1, time: 54079}, {type: 1, time: 54248}, {type: 1, time: 54579}, {type: 0, time: 55380}, { + type: 10, + time: 56E3 + }]; +Du(Fu, 120); +var Gu = [{type: 2, time: 3951}, {type: 2, time: 5320}, {type: 3, time: 6735}, {type: 2, time: 7470}, { + type: 1, + time: 8156 +}, {type: 0, time: 9580}, {type: 3, time: 11003}, {type: 0, time: 12749}, {type: 0, time: 13308}, { + type: 0, + time: 13683 +}, {type: 0, time: 14457}, {type: 0, time: 14883}, {type: 3, time: 15248}, {type: 3, time: 15579}, { + type: 1, + time: 15947 +}, {type: 1, time: 16216}, {type: 1, time: 16447}, {type: 2, time: 16846}, {type: 2, time: 17027}, { + type: 0, + time: 17371 +}, {type: 0, time: 17606}, {type: 0, time: 17856}, {type: 3, time: 18053}, {type: 3, time: 18384}, { + type: 0, + time: 18747 +}, + {type: 0, time: 18987}, {type: 0, time: 19272}, {type: 1, time: 19824}, {type: 2, time: 20206}, { + type: 2, + time: 20504 + }, {type: 3, time: 20871}, {type: 3, time: 21249}, {type: 1, time: 21572}, {type: 1, time: 21840}, { + type: 1, + time: 22085 + }, {type: 0, time: 22451}, {type: 0, time: 22638}, {type: 3, time: 22980}, {type: 3, time: 23246}, { + type: 3, + time: 23484 + }, {type: 2, time: 23716}, {type: 2, time: 24057}, {type: 0, time: 24422}, {type: 0, time: 24670}, { + type: 0, + time: 24922 + }, {type: 1, time: 26850}, {type: 1, time: 27216}, {type: 2, time: 27552}, {type: 2, time: 27757}, { + type: 0, + time: 28103 + }, { + type: 0, + time: 28276 + }, {type: 0, time: 28484}, {type: 0, time: 28821}, {type: 0, time: 29010}, {type: 1, time: 29350}, { + type: 3, + time: 30072 + }, {type: 3, time: 30423}, {type: 1, time: 30760}, {type: 1, time: 32140}, {type: 0, time: 32871}, { + type: 3, + time: 33384 + }, {type: 1, time: 33738}, {type: 1, time: 33912}, {type: 3, time: 34305}, {type: 3, time: 34623}, { + type: 1, + time: 35004 + }, {type: 1, time: 35350}, {type: 1, time: 35707}, {type: 1, time: 36058}, {type: 1, time: 36224}, { + type: 3, + time: 37800 + }, {type: 0, time: 38155}, {type: 1, time: 38517}, {type: 0, time: 38704}, {type: 0, time: 39044}, { + type: 3, + time: 39903 + }, + {type: 1, time: 40274}, {type: 0, time: 40614}, {type: 0, time: 40985}, {type: 0, time: 41172}, { + type: 0, + time: 41690 + }, {type: 0, time: 41885}, {type: 1, time: 42403}, {type: 3, time: 42780}, {type: 1, time: 43121}, { + type: 0, + time: 43472 + }, {type: 0, time: 43802}, {type: 3, time: 44171}, {type: 0, time: 44350}, {type: 0, time: 44647}, { + type: 3, + time: 45569 + }, {type: 3, time: 45958}, {type: 0, time: 46282}, {type: 0, time: 46454}, {type: 0, time: 46646}, { + type: 0, + time: 46839 + }, {type: 0, time: 47017}, {type: 0, time: 47204}, {type: 0, time: 47374}, {type: 0, time: 47527}, { + type: 0, + time: 47709 + }, { + type: 0, + time: 48412 + }, {type: 1, time: 49115}, {type: 3, time: 49453}, {type: 0, time: 49827}, {type: 1, time: 49999}, { + type: 0, + time: 50321 + }, {type: 0, time: 51221}, {type: 0, time: 51554}, {type: 3, time: 51938}, {type: 3, time: 52287}, { + type: 3, + time: 52475 + }, {type: 1, time: 52818}, {type: 1, time: 52990}, {type: 1, time: 53171}, {type: 0, time: 53546}, { + type: 0, + time: 53725 + }, {type: 0, time: 53905}, {type: 3, time: 54267}, {type: 3, time: 54442}, {type: 3, time: 54624}, { + type: 0, + time: 54808 + }, {type: 0, time: 55147}, {type: 1, time: 55503}, {type: 1, time: 55871}, {type: 0, time: 56204}, { + type: 0, + time: 56558 + }, + {type: 3, time: 56909}, {type: 3, time: 57246}, {type: 2, time: 57590}, {type: 1, time: 57956}, { + type: 0, + time: 58323 + }, {type: 3, time: 58679}, {type: 2, time: 59028}, {type: 1, time: 59701}, {type: 0, time: 60390}, { + type: 0, + time: 60971 + }, {type: 0, time: 61508}, {type: 0, time: 63259}, {type: 10, time: 64259}]; +Du(Gu, -3900); +var Hu = function (b) { + Zn.call(this, b, "81A4DDA62E6C4693B3A00E8A0484897E", [Tn(10), Wn()]); + switch (this.Cc.Ca.ha) { + case "rock": + this.kb.AUDIO = A.j5; + this.kb.MOVES = Fu; + this.kb.SPEED = 130; + break; + case "ballad": + this.kb.AUDIO = A.c1; + this.kb.MOVES = Eu; + this.kb.SPEED = 100; + break; + default: + this.kb.AUDIO = A.K1, this.kb.MOVES = Gu, this.kb.SPEED = 120 + } + this.Jk.push(Un(this.kb.AUDIO)); + gf && (b = this.Cc.oc, b.load("swimoutro").then(function (g) { + return Cn(g) + }), Co() && b.load("outro").then(function (g) { + return Cn(g) + })) +}; +q(Hu, Zn); +Hu.prototype.start = function () { + this.ha = (0, Sk.kp)("81A4DDA62E6C4693B3A00E8A0484897E").getLibrary(); + this.Ca = new this.ha.Gcb; + this.oc = [new Ep(this), new Wo(this, []), new Uo(this), new ku(this), new lu(this), new mu(this), new pu(this), new ru(this), new uu(this), new tu(this), new yu(this), new Vp(this), new Up(this)]; + this.Sc = [new zu(this), new Au(this), new Bu(this)] +}; +Hu.prototype.JS = function () { + Zn.prototype.JS.call(this); + Cu.Bb || (Cu.Bb || Cu.ha.suspend(), Cu.Bb = ! 0) +}; +Hu.prototype.OU = function () { + Zn.prototype.OU.call(this); + Cu.Bb && ye(Cu) +}; +var Iu = function (b) { + if ( ! b) return new Xn("overworld"); + if (fg.map(function (g) { + return ko(g) + }).includes(b) && Bo() && ! io("outro")) return new Xn("video", "outro"); + switch (b) { + case "archeryintro": + return new Xn("archery"); + case "climbingintro": + return new Xn("climbing"); + case "marathonintro": + return new Xn("marathon"); + case "pingpongintro": + return new Xn("pingpong"); + case "rugbyintro": + return new Xn("rugby"); + case "skateintro": + return new Xn("skate"); + case "swimintro": + return new Xn("swim"); + default: + return new Xn("overworld") + } + }, + Ju = function (b) { + return b ? b + "VideoDescription" : "" + }, Ku = function (b) { + Zn.call(this, b, "462CEA9764EE4C8D86AB0BDFEAEB1BF9", []); + this.Bb = "" + }; +q(Ku, Zn); +Ku.prototype.start = function () { + this.ha = (0, Sk.kp)("462CEA9764EE4C8D86AB0BDFEAEB1BF9").getLibrary(); + this.Ca = new this.ha.video; + this.oc = [new Lq(this), new Pq(this)]; + this.Sc = [new Lu(this)]; + this.video = null; + var b = this.Cc.Ca.ha; + if (b) { + var g = this.Cc; + if (b = Iu(b)) g.Pk = b, g.Xd = new (Mu(b.name))(g), $n(g.Xd) + } +}; +Ku.prototype.Xs = function (b) { + var g = this; + this.Bb = b; + this.Cc.oc.load(b).then(function (m) { + return Nu(g, m) + }) +}; +var Nu = function (b, g) { + b.video = g; + zn(b.video); + b.Cc.oc.play(g); + if (g = g.kqa()) g.then(function () { + return b.BL() + }), to(b.Cc.Ca.ha) +}; +Ku.prototype.BL = function (b) { + var g = this.Cc.Ca.ha; + g && ((void 0 === b ? 0 : b) || uh(g + "_VIDEO_SEEN", ! 0), this.Cc.oc.clear(), Hq(this.Cc, Iu(g)), g && (ro("d2", g, ! 0), so(102))) +}; +var Lu = function () { + S.apply(this, arguments) +}; +q(Lu, S); +Lu.prototype.fu = function (b) { + if (b.ec.has(yi)) if ("skippable" == this.ha.Cc.Ca.Ca) { + var g = this.ha.Cc.oc, m = this.ha; + if (m.Bb) { + var k = Ju(m.Bb); + k ? Z(b, L(k)) : console.error("Invalid video description key.") + } + b.addEventListener("close", function () { + g.ha && yn(g.ha); + g.Ca = null; + m.BL( ! 0) + }); + b.addEventListener("skip", function () { + g.ha && yn(g.ha); + g.Ca = null; + m.BL( ! 0) + }) + } else if (b = xi(b, "close")) b.visible = ! 1 +}; +var Ou = function () { + return createjs.Stage.apply(this, arguments) || this +}; +q(Ou, createjs.Stage); +Ou.prototype._updatePointerPosition = function (b, g) { + var m = this.canvas.getBoundingClientRect(), k; + var c; + k = (k = g || window.event) ? (c = c || k.targetTouches && k.targetTouches[0] || k.changedTouches && k.changedTouches[0]) && void 0 !== c.clientX ? [c.clientX, c.clientY] : void 0 !== k.clientX ? [k.clientX, k.clientY] : void 0 !== k.pageX ? [k.pageX, k.pageY] : [0, 0] : [0, 0]; + var a = k; + k = (a[0] - m.x) / (m.width / this.canvas.width); + c = (a[1] - m.y) / (m.height / this.canvas.height); + m.width < m.height && (k = (a[1] - m.y) / (m.height / this.canvas.width), c = (m.width - a[0] + + m.x) / (m.width / this.canvas.height)); + m = this._getPointerData(b); + m.inBounds = 0 <= k && 0 <= c && k <= this.canvas.width - 1 && c <= this.canvas.height - 1; + m.inBounds ? (m.x = k, m.y = c) : this.mouseMoveOutside && (m.x = 0 > k ? 0 : k > this.canvas.width - 1 ? this.canvas.width - 1 : k, m.y = 0 > c ? 0 : c > this.canvas.height - 1 ? this.canvas.height - 1 : c); + m.posEvtObj = g; + m.rawX = k; + m.rawY = c; + if (b == this._primaryPointerID || -1 === b) this.mouseX = m.x, this.mouseY = m.y, this.mouseInBounds = m.inBounds +}; +var Qu = function () { + pc.call(this); + this.Jk = ! 0; + this.Af = ! 1; + this.Sc = []; + this.Xd = ! 1; + this.ha = this.Bb = this.kb = 0; + this.oc = Pu +}; +q(Qu, pc); +var Tu = function (b, g) { + g = new Ru(g); + Su(b, g) +}, Su = function (b, g) { + b.Sc.push(g); + b.Xd = ! 0 +}, Wu = function (b) { + if (b.Jk) b.Af = ! 1; else { + b.Af = ! 0; + Uu(b); + b.Xd && (b.Sc.sort(function (c, a) { + return c.ha == a.ha ? a.Ca - c.Ca : c.ha - a.ha + }), b.Xd = ! 1); + for (var g = 0, m, k = 0; m = b.Sc[k]; k++) if (m.ha <= b.kb) Vu(m) && Su(b, m), g++; else break; + b.Sc.splice(0, g); + b.kb++; + requestAnimationFrame(function () { + Wu(b) + }) + } +}, Uu = function (b) { + var g = (new Date).getTime(); + 30 < b.kb && b.Bb && (g - b.Bb >= 1.05 * b.oc ? b.ha++ : b.ha >>= 1, 20 < b.ha && (b.oc = Math.min(50, 1.2 * b.oc), b.ha = 0)); + b.Bb = g +}; +Qu.prototype.start = function () { + this.Jk = ! 1; + this.Af || Wu(this) +}; +Qu.prototype.stop = function () { + this.Jk = ! 0; + this.Bb = this.ha = 0 +}; +Qu.prototype.Ca = function () { + this.reset(); + pc.prototype.Ca.call(this) +}; +Qu.prototype.reset = function () { + this.stop(); + this.Sc = []; + this.kb = 0; + this.Xd = ! 1; + this.oc = Pu; + this.Bb = this.ha = 0 +}; +var Pu = 1E3 / 60, Ru = function (b) { + var g = void 0; + g = void 0 === g ? null : g; + this.Ca = 1E3 / 60; + this.kb = b; + this.ha = xh(Qu).kb; + this.oc = 0; + this.Bb = g +}, Vu = function (b) { + var g = b.kb(b.oc); + b.oc++; + b.ha = xh(Qu).kb + b.Ca / xh(Qu).oc; + ! g && b.Bb && b.Bb(); + return g +}; +Ru.prototype.cancel = function () { + this.kb = function () { + return ! 1 + } +}; +var Xu = function (b, g, m, k, c, a, n, h) { + this.ha = b; + this.le = g; + this.kb = m; + this.oc = k; + this.Bb = c; + this.Sc = a; + this.Ca = n; + this.Xd = h +}; +Xu.prototype.clone = function () { + return new Xu(this.ha, this.le, this.kb, this.oc, this.Bb, this.Sc, this.Ca, this.Xd) +}; +var Yu = function (b, g) { + if (0 == g) return b.ha; + if (1 == g) return b.Ca; + var m = $c(b.ha, b.kb, g), k = $c(b.kb, b.Bb, g); + b = $c(b.Bb, b.Ca, g); + m = $c(m, k, g); + k = $c(k, b, g); + return $c(m, k, g) +}, Zu = function (b, g) { + var m = (g - b.ha) / (b.Ca - b.ha); + if (0 >= m) return 0; + if (1 <= m) return 1; + for (var k = 0, c = 1, a = 0, n = 0; 8 > n; n++) { + a = Yu(b, m); + var h = (Yu(b, m + 1E-6) - a) / 1E-6; + if (1E-6 > Math.abs(a - g)) return m; + if (1E-6 > Math.abs(h)) break; else a < g ? k = m : c = m, m -= (a - g) / h + } + for (n = 0; 1E-6 < Math.abs(a - g) && 8 > n; n++) a < g ? (k = m, m = (m + c) / 2) : (c = m, m = (m + k) / 2), a = Yu(b, m); + return m +}; +var $u = function (b, g, m, k) { + var c = new Xu(0, 0, b, g, m, k, 1, 1); + return function (a) { + a = Zu(c, a); + if (0 == a) a = c.le; else if (1 == a) a = c.Xd; else { + var n = $c(c.le, c.oc, a), h = $c(c.oc, c.Sc, a), d = $c(c.Sc, c.Xd, a); + n = $c(n, h, a); + h = $c(h, d, a); + a = $c(n, h, a) + } + return a + } +}(.25, .1, .25, 1); +var bv = function (b, g, m) { + var k = av; + k = void 0 === k ? $u : k; + m = void 0 === m ? Cf : m; + this.Bb = b; + this.oc = g; + this.Sc = {}; + this.duration = 400; + this.le = k; + this.kb = m; + this.ha = null; + this.Ca = ! 1 +}, dv = function (b) { + var g = Math.min(Math.max(cv(b) / b.duration, 0), 1); + b.Ca && (g = 1 - g); + for (var m in b.Bb) if (b.oc.hasOwnProperty(m)) { + var k = b.Sc, c = m; + var a = b.Bb[m]; + var n = b.oc[m], h = b.le; + h = void 0 === h ? $u : h; + a += h(g) * (n - a); + k[c] = a + } + return b.Sc +}, cv = function (b) { + return null === b.ha ? 0 : b.kb() - b.ha +}; +bv.prototype.start = function () { + this.ha = this.kb(); + this.Ca = ! 1 +}; +bv.prototype.resume = function () { + if (null !== this.ha) { + if (this.Ca) { + var b = Math.min(this.duration, cv(this)); + this.ha = this.kb() - (this.duration - b); + this.Ca = ! 1 + } + } else this.start() +}; +bv.prototype.reset = function () { + this.ha = null +}; +var av = function (b) { + return 3 * b * b - 2 * b * b * b +}; +var ev = function (b, g) { + g = void 0 === g ? function () { + } : g; + pc.call(this); + this.kb = ! 1; + this.Xd = g; + this.ha = b; + this.Sc = "1" === df.ha.get("ntp"); + this.oc = function () { + return ! 1 + }; + this.Bb = null; + dl() && (this.ha.style.willChange = "width,height") +}; +q(ev, pc); +var gv = function (b, g) { + var m = ! 0; + g = void 0 === g ? function () { + } : g; + m = void 0 === m ? ! 1 : m; + var k = void 0 === k ? 0 : k; + var c = void 0 === c ? ! 1 : c; + if (b.ha && dl() && ! b.kb) { + var a = b.ha; + if (mf()) fv(b, g); else { + document.getElementById("fkbx") && Af(a.parentElement, "width", "100%"); + var n = a.offsetHeight, h = a.offsetWidth; + k = Math.min(960, a.parentElement.clientWidth) - 2 * k; + c = c ? 540 : k / (960 / 540); + var d = xh(Qu), e = Cf(), f = new bv({height: n, width: h}, {height: c, width: k}, function () { + return e + }); + f.start(); + b.kb = ! 0; + b.oc = function (v) { + e = void 0 !== v ? e + v : Cf(); + v = dv(f); + Sf(a, + Math.round(v.width), Math.round(v.height)); + b.Xd(); + return cv(f) >= f.duration ? (g(), b.ha.style.willChange = "unset", b.oc = function () { + return ! 1 + }, ! 1) : ! 0 + }; + m || Tu(d, function () { + return b.oc() + }) + } + } +}, fv = function (b, g) { + var m, k, c; + ya(function (a) { + if (1 == a.ha) return ra(a, hv(b), 2); + m = {cmd: "resizeDoodle", width: "960px", height: "540px", duration: "400ms"}; + "1" === df.ha.get("ntp") ? window.parent.postMessage(m, "chrome-search://local-ntp") : window.top.postMessage(m, "chrome://new-tab-page"); + b.kb = ! 0; + k = ! 1; + c = function () { + b.Sc && b.ha.classList.remove("expanderHide"); + k = ! 0; + g() + }; + b.Bb = setTimeout(c, 500); + window.addEventListener("message", function (n) { + "resizeComplete" === n.data.wdb && (null !== b.Bb && (clearTimeout(b.Bb), b.Bb = null), k || c()) + }); + return a.return() + }) +}, hv = function (b) { + if ( ! b.Sc) return Promise.resolve(); + b.ha.classList.add("expanderHide"); + return new Promise(function (g) { + setTimeout(g, 200) + }) +}; +ev.prototype.Ca = function () { + pc.prototype.Ca.call(this); + this.reset(); + this.ha = null +}; +ev.prototype.reset = function () { + this.kb && (Af(this.ha, "width", "", "height", ""), Rf(0), this.ha.style.width = "", this.ha.style.height = ""); + this.kb = ! 1 +}; +ev.prototype.update = function (b) { + this.oc(b) +}; +var mv = function (b, g, m) { + pc.call(this); + this.Jk = b; + this.qB = g; + this.HQ = m; + this.oc = ! 1; + this.ha = function () { + }; + this.Af = Bf(); + this.Xs = Gf(document, "hidden"); + this.kb = (this.Xd = Gf(document, "visibilityState")) ? this.Xd.replace(/state$/i, "change").toLowerCase() : null; + this.Sc = this.Bb = iv(this); + this.Xw = new op; + jv(this); + kv(this); + lv(this) +}; +q(mv, pc); +var kv = function (b) { + qp(b.Xw, function () { + nv(b) + }) +}, jv = function (b) { + b.kb ? ov(b) : hf() && ! gf() && pv(b, function () { + ov(b) + }) +}, ov = function (b) { + b.ha = function () { + b.Bb = iv(b); + b.Bb ? qv(b) : nv(b) + }; + var g = window.agsa_ext; + b.kb ? document.addEventListener(b.kb, b.ha, ! 1) : g && g.registerPageVisibilityListener && (Kf(function () { + b.ha && b.ha() + }), g.registerPageVisibilityListener("google.doodle.pvc();")) +}, pv = function (b, g) { + window.agsa_ext ? g() : b.Wt = setTimeout(function () { + jv(b) + }, 100) +}; +mv.prototype.Ca = function () { + clearTimeout(this.timeout); + clearTimeout(this.Wt); + this.ha && (this.kb && document.removeEventListener ? document.removeEventListener(this.kb, this.ha, ! 1) : window.agsa_ext && window.agsa_ext.registerPageVisibilityListener && (this.ha = function () { + })); + pc.prototype.Ca.call(this) +}; +var iv = function (b) { + var g = window.agsa_ext; + if ( ! b.Xs && ! b.Xd && g && g.getPageVisibility) return "hidden" === g.getPageVisibility(); + g = document[b.Xd]; + return document[b.Xs] || "hidden" === g +}, qv = function (b) { + var g = b.Bb || b.oc; + b.Sc && ! g ? (b.Sc = ! 1, b.HQ(), lv(b)) : ! b.Sc && g && (b.Sc = ! 0, b.qB()) +}, lv = function (b) { + b.timeout && clearTimeout(b.timeout); + b.timeout = setTimeout(function () { + b.timeout = void 0; + b.oc = Bf() - b.Af >= b.Jk; + b.oc || lv(b); + qv(b) + }, Math.max(100, b.Jk - (Bf() - b.Af))) +}, nv = function (b) { + b.Af = Bf(); + b.oc = ! 1; + qv(b) +}; +var rv = function (b, g, m, k) { + this.ha = 0; + this.Ca = b; + this.Bb = void 0 === m ? 3 : m; + this.kb = g; + this.oc = void 0 === k ? 2E3 : k +}, tv = function (b, g, m, k) { + m = void 0 === m ? function () { + } : m; + k = (void 0 === k ? 0 : k) ? "//www.google.com" : ""; + k = new Ke(b.Ca.startsWith("/") ? "" + k + b.Ca : k + "/async/" + b.Ca); + Ne(k, g); + k = k.toString(); + b.ha++; + m(b.ha); + return sv(b, k).catch(function (c) { + return b.ha < b.Bb ? b.kb(b.oc * Math.pow(2, b.ha - 1)).then(function () { + return tv(b, g, m) + }) : Promise.reject(c) + }).finally(function () { + return b.ha = 0 + }) +}, sv = function (b, g) { + var m = new XMLHttpRequest; + m.open("GET", g); + return new Promise(function (k, c) { + m.send(); + m.onreadystatechange = function () { + if (4 == m.readyState) if (200 == m.status && m.responseText) a:{ + var a = m.responseText; + a.startsWith(")]}'\n") && (a = a.substring(5)); + var n = {}; + try { + n = JSON.parse(a) + } catch (h) { + c(a); + break a + } + n.hasOwnProperty(b.Ca) && (n = n[b.Ca]); + n.hasOwnProperty("__err__") ? c(n.__err__) : k(n) + } else c(m) + } + }) +}; +var uv = function (b, g, m) { + rv.call(this, b, function (k) { + return new Promise(function (c) { + return setTimeout(c, k) + }) + }, void 0 === g ? 3 : g, void 0 === m ? 2E3 : m) +}; +q(uv, rv); +var vv = "function" === typeof Uint8Array; + +function wv(b) { + return xv(b, function (g) { + return g + }, function (g) { + return new Uint8Array(g) + }) +} + +function yv(b, g, m) { + return "object" === typeof b ? vv && ! Array.isArray(b) && b instanceof Uint8Array ? m(b) : xv(b, g, m) : g(b) +} + +function xv(b, g, m) { + if (Array.isArray(b)) { + for (var k = Array(b.length), c = 0; c < b.length; c++) { + var a = b[c]; + null != a && (k[c] = yv(a, g, m)) + } + Array.isArray(b) && b.pbb && zv(k); + return k + } + k = {}; + for (c in b) a = b[c], null != a && (k[c] = yv(a, g, m)); + return k +} + +function Av(b) { + return xv(b, function (g) { + return "number" === typeof g ? isFinite(g) ? g : String(g) : g + }, function (g) { + var m; + void 0 === m && (m = 0); + if ( ! ts) { + ts = {}; + for (var k = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".split(""), c = ["+/=", "+/", "-_=", "-_.", "-_"], a = 0; 5 > a; a++) { + var n = k.concat(c[a].split("")); + ss[a] = n; + for (var h = 0; h < n.length; h++) { + var d = n[h]; + void 0 === ts[d] && (ts[d] = h) + } + } + } + m = ss[m]; + k = Array(Math.floor(g.length / 3)); + c = m[64] || ""; + for (a = n = 0; n < g.length - 2; n += 3) { + var e = g[n], f = g[n + 1]; + d = g[n + 2]; + h = m[e >> 2]; + e = m[(e & + 3) << 4 | f >> 4]; + f = m[(f & 15) << 2 | d >> 6]; + d = m[d & 63]; + k[a++] = "" + h + e + f + d + } + h = 0; + d = c; + switch (g.length - n) { + case 2: + h = g[n + 1], d = m[(h & 15) << 2] || c; + case 1: + g = g[n], k[a] = "" + m[g >> 2] + m[(g & 3) << 4 | h >> 4] + d + c + } + return k.join("") + }) +} + +var Bv = {pbb: {value: ! 0, configurable: ! 0}}, zv = function (b) { + Array.isArray(b) && ! Object.isFrozen(b) && Object.defineProperties(b, Bv); + return b +}; +var Cv; +var Hv = function (b, g, m, k) { + var c = Cv; + Cv = null; + b || (b = c); + c = this.constructor.xdb; + b || (b = c ? [c] : []); + this.kb = c ? 0 : -1; + this.ha = b; + a:{ + c = this.ha.length; + b = c - 1; + if (c && (c = this.ha[b], ! (null === c || "object" != typeof c || Array.isArray(c) || vv && c instanceof Uint8Array))) { + this.Bb = b - this.kb; + this.Ca = c; + break a + } + void 0 !== g && -1 < g ? (this.Bb = Math.max(g, b + 1 - this.kb), this.Ca = null) : this.Bb = Number.MAX_VALUE + } + if (m) for (g = 0; g < m.length; g++) b = m[g], b < this.Bb ? (b += this.kb, (c = this.ha[b]) ? zv(c) : this.ha[b] = Dv) : (Ev(this), (c = this.Ca[b]) ? zv(c) : this.Ca[b] = + Dv); + if (k && k.length) for (m = 0; m < k.length; m++) { + b = g = void 0; + c = k[m]; + for (var a = 0; a < c.length; a++) { + var n = c[a], h = Fv(this, n); + null != h && (b = n, g = h, Gv(this, n, void 0)) + } + b && Gv(this, b, g) + } +}, Dv = Object.freeze(zv([])), Ev = function (b) { + var g = b.Bb + b.kb; + b.ha[g] || (b.Ca = b.ha[g] = {}) +}, Fv = function (b, g) { + if (g < b.Bb) { + g += b.kb; + var m = b.ha[g]; + return m !== Dv ? m : b.ha[g] = zv([]) + } + if (b.Ca) return m = b.Ca[g], m !== Dv ? m : b.Ca[g] = zv([]) +}, Gv = function (b, g, m) { + g < b.Bb ? b.ha[g + b.kb] = m : (Ev(b), b.Ca[g] = m) +}; +Hv.prototype.toJSON = function () { + return Av(this.ha) +}; +Hv.prototype.toString = function () { + return this.ha.toString() +}; +Hv.prototype.clone = function () { + var b = this.constructor, g = wv(this.ha); + Cv = g; + b = new b(g); + Cv = null; + return b +}; +var Iv = function (b) { + Hv.call(this, b) +}; +q(Iv, Hv); +var Jv = function () { + var b = Yf; + var g = void 0 === g ? ! 1 : g; + if (Xf() && Wf()) return Promise.resolve(); + b = "_fmt:jspb,doodle:" + b + ",slot:0,type:3,cta:1"; + nf() && (b += ",ntp:1"); + if (Xf() || g) b += ",impr:0"; + g = new Pe; + g.add("async", b); + return tv(new uv("ddllog", 1), g, void 0, ! 1).then(function (m) { + m = new Iv(m); + if ( ! Xf() && Fv(m, 2)) { + var k = Fv(m, 2); + Tf = (new Ke(k)).ha.get("ved", "") + } + ! Wf() && Fv(m, 3) && (Vf = Fv(m, 3)) + }).catch(function () { + return Promise.resolve() + }) +}; +var Lv = function (b, g) { + var m = void 0 === m ? 52 : m; + this.Vt = Kv(m * (window.devicePixelRatio || 1)); + this.Vt.style.top = "10px"; + this.Vt.style.right = "10px"; + this.Vt.style.width = m + "px"; + this.Vt.style.height = m + "px"; + this.Vt.style.cursor = "pointer"; + this.Vt.style.position = "absolute"; + this.Vt.style.pointerEvents = "all"; + this.Vt.style.background = "transparent"; + this.Vt.style.display = "none"; + this.Vt.setAttribute("role", "button"); + this.Vt.setAttribute("aria-label", "Close"); + this.Vt.tabIndex = 0; + Fc(this.Vt, "click", g); + Fc(this.Vt, "keydown", + function (k) { + 32 !== k.keyCode && 13 !== k.keyCode || g() + }); + b.appendChild(this.Vt) +}, Kv = function (b) { + var g = document.createElement("canvas"); + g.width = b; + g.height = b; + var m = g.getContext("2d"); + m.fillStyle = "rgba(0,0,0,.3)"; + m.arc(b / 2, b / 2, b / 2, 0, 2 * Math.PI); + m.fill(); + m.strokeStyle = "#fff"; + m.lineWidth = b / 52 * 3.5; + var k = b / 52 * 2; + m.beginPath(); + m.moveTo(b / 4 + k, b / 4 + k); + m.lineTo(3 * b / 4 - k, 3 * b / 4 - k); + m.stroke(); + m.beginPath(); + m.moveTo(3 * b / 4 - k, b / 4 + k); + m.lineTo(b / 4 + k, 3 * b / 4 - k); + m.stroke(); + return g +}; +var Mv = function (b) { + if (gf()) { + b = p(b); + for (var g = b.next(); ! g.done; g = b.next()) Fc(g.value, "touchmove", function (m) { + 1 !== m.scale && m.preventDefault() + }, {passive: ! 1}) + } +}, Nv = function (b) { + var g = p(b); + for (b = g.next(); ! b.done; b = g.next()) Fc(b.value, "contextmenu", function (m) { + m.preventDefault() + }, {passive: ! 1}) +}; +var Ov = function (b) { + return new Promise(function (g) { + return setTimeout(g, b) + }) +}, Qv = function (b, g, m) { + this.Sc = b; + this.Bb = void 0 === g ? function () { + } : g; + this.oc = void 0 === m ? function () { + } : m; + b = Pv(this, b); + g = b.hab; + this.ha = b.Hbb; + this.kb = g; + this.Ca = null +}, Tv = function (b) { + return ya(function (g) { + if (1 == g.ha) return document.body.appendChild(b.ha), ra(g, Ov(0), 2); + Ef(b.ha, "Transition", "500ms"); + Rv(b); + b.ha.classList.add("ddl-lightboxEnabled_"); + b.Ca = Fc(document, "keydown", function (m) { + 27 == m.keyCode && Sv(b) + }); + return ra(g, Ov(500), 0) + }) +}, Sv = + function (b) { + return ya(function (g) { + if (1 == g.ha) return Oc(b.Ca), Ef(b.ha, "Transition", "0ms"), b.ha.classList.remove("ddl-lightboxEnabled_"), b.oc(), ra(g, Ov(0), 2); + document.body.removeChild(b.ha); + g.ha = 0 + }) + }, Pv = function (b, g) { + var m = document.createElement("div"); + m.classList.add("ddl-lightbox_"); + Nv([m]); + m.setAttribute("aria-modal", "true"); + var k = document.createElement("div"); + k.classList.add("ddl-lightboxContainer_"); + Af(k, "maxWidth", "960px", "maxHeight", "540px"); + m.appendChild(k); + g.classList.add("ddl-lightboxContent_"); + Af(g, "width", "960px", "height", "540px", "position", "relative", "left", "50%", "top", "50%"); + k.appendChild(g); + window.addEventListener("resize", function () { + return Rv(b) + }); + g = new Lv(g, function () { + return Sv(b) + }); + g.Vt.style.display = "block"; + m.appendChild(g.Vt); + return {Vt: g, Hbb: m, hab: k} +}, Rv = function (b) { + var g = b.Sc, m = b.kb; + Ef(g, "Transform", "scale(" + Math.min(m.clientHeight / g.clientHeight, m.clientWidth / g.clientWidth) + ") translate(-50%,-50%)"); + b.Bb() +}; +var Uv = function (b, g) { + g = void 0 === g ? 50 : g; + pc.call(this); + this.Xd = b; + this.Sc = g; + this.oc = 0; + this.Bb = this.kb = this.ha = ! 1; + this.Xd = b +}; +q(Uv, pc); +Uv.prototype.start = function () { + this.oc = Date.now(); + var b = ! this.kb && ! this.ha; + this.kb = ! 1; + this.ha = ! 0; + this.Bb = ! 1; + b && Vv(this) +}; +Uv.prototype.resume = function () { + this.Bb && this.start() +}; +var Vv = function (b) { + b.kb ? b.kb = ! 1 : (requestAnimationFrame(function () { + return Vv(b) + }), Wv(b)) +}, Wv = function (b) { + var g = Date.now(), m = g - b.oc; + 0 > m || (m = b.Sc ? Math.min(m, b.Sc) : m, b.oc = g, b.Xd(m)) +}; +Uv.prototype.Ca = function () { + this.ha && (this.kb = ! 0, this.ha = ! 1); + pc.prototype.Ca.call(this) +}; +var ve = Fe.AJ(), Xv = Xe("game"), Yv = Xe("newGame") || "", Zv = function (b) { + this.Ca = this.Bb = null; + this.le = b; + this.ak = new Kh; + this.oc = new An; + this.Af = new cr(this); + this.Sc = new ar(this); + this.ha = new Ys(this); + this.kb = new Ro(this); + this.Jk = new hq(this); + this.Xd = this.Pk = null +}; +Zv.prototype.tick = function (b) { + Lo = []; + Mo = []; + this.ak.tick(); + (0 != this.ak.ha.x || 0 != this.ak.ha.y || this.ak.kb[4] || this.ak.kb[5]) && nv($v.Sc); + this.Sc.le || this.ha.le || "swim" == this.Ca.name ? this.ak.le.disable() : this.ak.le.enable(); + this.Sc.tick(b); + this.ha.tick(b); + this.Af.tick(b); + if (this.Bb && this.Bb.le) { + var g = this.Ca.name; + g && (g = Ko.get(g)) && (g = L(g)) && Po(g, ! 0); + this.Bb.tick(b) + } + Oo() +}; +var Hq = function (b, g) { + if (g) { + b.Ca = g; + var m = ve.oc; + for (var k in m) m[k].stop(); + ve.Bb && ye(ve); + b.oc.clear(); + b.ak.Xd = []; + m = b.kb; + m.Bb && (co(m.Bb), m.Bb = null); + (go(g.name) || ho(g.name)) && aw(b); + b.Pk == g ? m = b.Xd : (m = new (Mu(g.name))(b), $n(m)); + b.Pk = null; + b.Xd = null; + ao(m) ? Kr(b, m, g) : Kr(b, new Lr(b, m, g), g) + } +}, aw = function (b) { + ml.AJ().xY[Rk(1)].Ca || kl(ml.AJ(), 1).then(function () { + cl(); + ["B6B0DC09A20D455BAB815F8FE24BCF08", "0E30EA04F8F04E9B8B08CAC42EEA149E", "1754741A4A3841C2AB73BD915D793487"].map(function (g) { + return Sn(g) + }); + b.Af.start(); + b.le.addChild(b.Af.Ca); + b.Sc.start(); + b.le.addChild(b.Sc.Ca); + b.Sc.Ca.alpha = 0; + b.Sc.disable(); + b.ha.start(); + b.le.addChild(b.ha.Ca); + b.ha.Ca.alpha = 0; + b.ha.disable(); + b.le.addChild(b.kb.Ca); + b.le.addChild(b.Jk.Ca) + }) +}, ks = function () { + th("MUTED", ! 1) ? we() : xe() +}, Kr = function (b, g, m) { + b.Bb && (b.Bb.end(), b.le.removeChild(b.Bb.Ca)); + var k = b.Ca; + "cta" != k.name && (ro("d1", k.toString()), so(105), go(k.name) && so(2)); + g.start(); + b.Bb = g; + m.ha && g.Xs(m.ha); + b.le.addChildAt(b.Bb.Ca, 0); + iq(b.Jk); + b = b.Ca; + "cta" != b.name && (ro("d1", b.toString()), + so(104), go(b.name) && so(0)) +}, Mu = function (b) { + switch (b) { + case "archery": + return gq; + case "climbing": + return Fq; + case "interior": + return Ir; + case "marathon": + return es; + case "menus": + return Ys; + case "pingpong": + return ut; + case "rugby": + return It; + case "skate": + return eu; + case "swim": + return Hu; + case "overworld": + return $s; + case "cutscene": + return Qq; + case "video": + return Ku; + default: + throw Error("V"); + } +}, hw = function (b, g) { + pc.call(this); + var m = this; + Yv && vh(); + uh("DEVICE", kf() ? "mobile" : "desktop"); + this.Bb = document.getElementById("hpcta"); + this.Jk = document.getElementById("hplogo2"); + this.kb = g; + b.appendChild(Nk()); + this.Xd = b; + this.Xw = document.getElementById("hplogovideo"); + this.Xw.dataset.width = 960; + this.Xw.dataset.height = 540; + this.HQ = g.getContext("2d"); + this.HQ.imageSmoothingEnabled = ! 1; + this.Sc = new mv(3E5, function () { + return bw(m) + }, function () { + return cw(m) + }); + qc(this, Ma(oc, this.Sc)); + dw(this); + this.Xs = new ev(b); + qc(this, Ma(oc, this.Xs)); + this.Wt = new Uv(function (k) { + m.Xs.update(k); + xh(tp).update() + }); + ew(this); + Eh(this.Xd); + te(Fe.AJ(), b); + this.ha = new Ou(this.kb); + this.oc = new Zv(this.ha); + this.Af = this.qB = ! 1; + fw(this); + Xv && Yn(Xv) && (Hq(this.oc, Yn(Xv)), gw(this)); + if (g = document.getElementById("hpctaplay")) g.style.visibility = "inherit"; + Mv([b]) +}; +q(hw, pc); +var bw = function (b) { + createjs.Ticker.removeEventListener("tick", b.ha); + var g = b.Wt; + g.ha && (g.Bb = ! 0, g.ha = ! 1, g.kb = ! 0); + b.ha.tickEnabled = ! 1; + Lo = []; + Mo = []; + Po(L("ARIA_HIBERNATOR")); + Oo(); + b = b.oc.oc; + b.Ca && b.Ca.ha.pause(); + we() + }, cw = function (b) { + b.Af && (b.qB && (b.qB = ! 0, createjs.Ticker.init()), ve.ha && ve.ha.resume(), createjs.Ticker.addEventListener("tick", b.ha), b.Wt.start(), b.ha.tickEnabled = ! 0, b.oc.oc.resume(), th("MUTED", ! 1) || xe()) + }, dw = function (b) { + b.kb.addEventListener("touchstart", function () { + return nv(b.Sc) + }); + b.kb.addEventListener("touchend", + function () { + return nv(b.Sc) + }); + b.kb.addEventListener("touchmove", function () { + return nv(b.Sc) + }); + document.addEventListener("keyup", function () { + return nv(b.Sc) + }); + document.addEventListener("keydown", function () { + return nv(b.Sc) + }) + }, iw = function (b) { + b.Bb.addEventListener("touchend", function () { + return gw(b) + }); + b.Bb.addEventListener("mousedown", function () { + return gw(b) + }); + b.Xd.addEventListener("keyup", function (g) { + "keyup" !== g.type || "Enter" !== g.key && " " !== g.key || gw(b) + }); + b.Xd.addEventListener("contextmenu", function (g) { + g.preventDefault() + }) + }, + ew = function (b) { + iw(b); + var g = Bp(xh(tp), b.kb.width, b.kb.height); + b.Xd.appendChild(g); + Ap(xh(tp), b.Xd, [b.Xw, b.kb, g]); + fl() && b.Xd.addEventListener("touchend", function () { + yp(xh(tp)) + }); + wp(); + b.Wt.start() + }, gw = function (b) { + if (rf) Zf(); else { + b.Jk.style.backgroundColor = "#000"; + var g = b.Bb.getAttribute("title"); + b.Bb.removeAttribute("title"); + if (hl()) { + if ( ! b.Af) { + var m = new Qv(b.Jk, function () { + }, function () { + bw(b); + b.Af = ! 1; + b.Bb.setAttribute("title", g) + }); + b.Af = ! 0; + Tv(m).then(function () { + b.Jk.focus(); + jw(b); + cw(b) + }) + } + } else dl() ? (b.Bb.style.visibility = + "hidden", gv(b.Xs, function () { + b.Af = ! 0; + jw(b); + cw(b) + })) : (b.Af = ! 0, b.Bb.style.visibility = "hidden", jw(b), cw(b)); + so(0); + po.c = 0; + so(1) + } + }, jw = function (b) { + b.oc.Bb || (ks(), io("intro") ? Hq(b.oc, new Xn("overworld")) : Hq(b.oc, new Xn("video", "intro", "skippable"))) + }, fw = function (b) { + b.ha.preventSelection = ! 1; + b.ha.snapToPixelEnabled = ! 0; + createjs.Touch.enable(b.ha); + createjs.Ticker.interval = ag; + b.ha.enableMouseOver(); + b.ha.addEventListener("drawstart", function (g) { + g.paused || b.oc.tick(g) + }) + }, $v = null, kw = function () { + var b = document.getElementById("hplogo"), + g = document.getElementById("hpcanvas"); + if (b && g) { + po.d = Yf; + ! oo && gl() && (oo = ! 0, so(10)); + var m = [Jv(), kl(ml.AJ(), 0), xh(yh).load(Of, Pf, Ge, window.root)]; + Promise.all(m).then(function () { + ["348D233EE4ED48398F13A42B3BD73D9C", "462CEA9764EE4C8D86AB0BDFEAEB1BF9"].map(function (k) { + return Sn(k) + }); + $v = new hw(b, g) + }) + } + }; +(function (b, g) { + window.google && google.doodle && (g && Na("google.doodle.cpDestroy", g), Na("google.doodle.cpInit", function () { + g && g(); + b() + })) +})(kw, function () { + var b = ml.AJ(); + b = p(b.xY); + for (var g = b.next(); ! g.done; g = b.next()) g.value.kb = []; + oc($v) +}); +kw(); diff --git a/games/champion-island/kitsune_compiled_deferred_module.js b/games/champion-island/kitsune_compiled_deferred_module.js new file mode 100644 index 0000000..91fc72e --- /dev/null +++ b/games/champion-island/kitsune_compiled_deferred_module.js @@ -0,0 +1,7095 @@ +var lw=Sk; +(function(b,g){function m(){var d=this._cloneProps(new this.constructor(this.mode,this.startPosition,this.loop));d.gotoAndStop(this.currentFrame);d.paused=this.paused;d.framerate=this.framerate;return d}function k(d,e,f){d=b.extend(d,b.MovieClip);d.clone=m;d.j=e;d.frameBounds=f;return d}var c,a={},n={},h={};a.uB=[];(a.a1=function(){this.initialize(h.ArrowNormal)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,7,18);(a.rta=function(){this.initialize(h.BeachTile)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0, +0,48,48);(a.lca=function(){this.initialize(h.Bitmap101)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,48,48);(a.Uua=function(){this.initialize(h.Bitmap18)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,19,21);(a.cva=function(){this.initialize(h.Bitmap19)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,18,22);(a.iva=function(){this.initialize(h.Bitmap20)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,18,22);(a.jva=function(){this.initialize(h.Bitmap21)}).prototype=c=new b.Bitmap;c.j= +new b.Rectangle(0,0,19,21);(a.kva=function(){this.initialize(h.Bitmap22)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,18,22);(a.lva=function(){this.initialize(h.Bitmap23)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,18,22);(a.Hva=function(){this.initialize(h.Bitmap31)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,16,21);(a.Jva=function(){this.initialize(h.Bitmap32)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,16,22);(a.Kva=function(){this.initialize(h.Bitmap33)}).prototype= +c=new b.Bitmap;c.j=new b.Rectangle(0,0,16,22);(a.Lva=function(){this.initialize(h.Bitmap34)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,16,21);(a.Nva=function(){this.initialize(h.Bitmap35)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,16,22);(a.Pva=function(){this.initialize(h.Bitmap36)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,16,22);(a.bwa=function(){this.initialize(h.Bitmap64111)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,16,5);(a.cwa=function(){this.initialize(h.Bitmap65)}).prototype= +c=new b.Bitmap;c.j=new b.Rectangle(0,0,13,3);(a.rxa=function(){this.initialize(h.Bitmap91)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,16,31);(a.xxa=function(){this.initialize(h.Bitmap92)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,16,32);(a.yxa=function(){this.initialize(h.Bitmap93)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,16,31);(a.zxa=function(){this.initialize(h.Bitmap95)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,5,18);(a.Axa=function(){this.initialize(h.Bitmap96)}).prototype= +c=new b.Bitmap;c.j=new b.Rectangle(0,0,5,19);(a.FK=function(){this.initialize(h.Bitmap97)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,16,26);(a.Bxa=function(){this.initialize(h.Bitmap98)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,16,25);(a.ddb=function(){this.initialize(h.BlackBoxArt)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,17,6);(a.Qza=function(){this.initialize(h.ChampionRollLeftbig00)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,52,42);(a.Rza=function(){this.initialize(h.ChampionRollLeftbig03)}).prototype= +c=new b.Bitmap;c.j=new b.Rectangle(0,0,52,42);(a.Sza=function(){this.initialize(h.ChampionRollLeftbig05)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,52,42);(a.Tza=function(){this.initialize(h.ChampionRollLeftbig06)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,52,42);(a.Uza=function(){this.initialize(h.ChampionRollLeftbig07)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,52,42);(a.Vza=function(){this.initialize(h.ChampionRollLeftbig08)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0, +0,52,42);(a.Wza=function(){this.initialize(h.ChampionRollLeftbig09)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,52,42);(a.Xza=function(){this.initialize(h.ChampionRollRight00)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,52,42);(a.Yza=function(){this.initialize(h.ChampionRollRight03)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,52,42);(a.Zza=function(){this.initialize(h.ChampionRollRight05)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,52,42);(a.$za=function(){this.initialize(h.ChampionRollRight06)}).prototype= +c=new b.Bitmap;c.j=new b.Rectangle(0,0,52,42);(a.aAa=function(){this.initialize(h.ChampionRollRight07)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,52,42);(a.bAa=function(){this.initialize(h.ChampionRollRight08)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,52,42);(a.cAa=function(){this.initialize(h.ChampionRollRight09)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,52,42);(a.dAa=function(){this.initialize(h.ChampionShootingArrow_0)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0, +0,34,50);(a.eAa=function(){this.initialize(h.ChampionShootingArrow_1)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,34,50);(a.fAa=function(){this.initialize(h.ChampionShootingArrow_2)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,34,50);(a.gAa=function(){this.initialize(h.ChampionShootingArrow_3)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,34,50);(a.iAa=function(){this.initialize(h.ChampionUIArt1)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,15,18);(a.jAa=function(){this.initialize(h.ChampionUIEyesArt)}).prototype= +c=new b.Bitmap;c.j=new b.Rectangle(0,0,11,6);(a.kAa=function(){this.initialize(h.ChampionUIHighlightArt)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,17,20);(a.xV=function(){this.initialize(h.DarkSandWaveArt1)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,16,17);(a.yV=function(){this.initialize(h.DarkSandWaveArt2)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,16,17);(a.zDa=function(){this.initialize(h.ExplosionAnim_0)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,64,64);(a.ADa= +function(){this.initialize(h.ExplosionAnim_1)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,64,64);(a.BDa=function(){this.initialize(h.ExplosionAnim_2)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,64,64);(a.CDa=function(){this.initialize(h.ExplosionAnim_4)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,64,64);(a.DDa=function(){this.initialize(h.ExplosionAnim_6)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,64,64);(a.EDa=function(){this.initialize(h.ExplosionAnim_8)}).prototype= +c=new b.Bitmap;c.j=new b.Rectangle(0,0,64,64);(a.HDa=function(){this.initialize(h.FanAppear0000)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,14,17);(a.IDa=function(){this.initialize(h.FanAppear0007)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,14,17);(a.JDa=function(){this.initialize(h.FanAppear0008)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,14,17);(a.KDa=function(){this.initialize(h.FanAppear0011)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,14,17);(a.LDa=function(){this.initialize(h.FanAppear0013)}).prototype= +c=new b.Bitmap;c.j=new b.Rectangle(0,0,14,17);(a.MDa=function(){this.initialize(h.FanAppear0017)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,14,17);(a.NDa=function(){this.initialize(h.FanAppear0019)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,14,17);(a.ODa=function(){this.initialize(h.FanAppear0027)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,14,17);(a.cEa=function(){this.initialize(h.FrenzyTarget)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,48,45);(a.nEa=function(){this.initialize(h.Gradient1)}).prototype= +c=new b.Bitmap;c.j=new b.Rectangle(0,0,24,24);(a.CEa=function(){this.initialize(h.GreenArrowArt)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,7,18);(a.ZEa=function(){this.initialize(h.InfinitySignArt)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,11,4);(a.SLa=function(){this.initialize(h.LuckyUIArt1)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,12,12);(a.TLa=function(){this.initialize(h.LuckyUIHlighlightArt)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,14,14);(a.Uf=function(){this.initialize(h.NewLArgeWater1Art1)}).prototype= +c=new b.Bitmap;c.j=new b.Rectangle(0,0,48,48);(a.Mf=function(){this.initialize(h.NewLargeWater1Art2)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,48,48);(a.yUa=function(){this.initialize(h.ObstacleBitmap)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,23,29);(a.qWa=function(){this.initialize(h.PierceArrowFloat)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,18,26);(a.PWa=function(){this.initialize(h.PlayerN)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,18,25);(a.n4a=function(){this.initialize(h.SushiBitmap)}).prototype= +c=new b.Bitmap;c.j=new b.Rectangle(0,0,16,17);(a.k6=function(){this.initialize(h.TargetBitmap)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,18,26);(a.Q4a=function(){this.initialize(h.TargetHit1)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,20,28);(a.R4a=function(){this.initialize(h.TargetHit2)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,20,28);(a.S4a=function(){this.initialize(h.TargetHit3)}).prototype=c=new b.Bitmap;c.j=new b.Rectangle(0,0,20,28);(a.L8a=function(){this.initialize(h.UIBGArt1)}).prototype= +c=new b.Bitmap;c.j=new b.Rectangle(0,0,140,60);(a.Hc=function(d,e,f){this.initialize(d,e,f,{});this.instance=new a.Uf;this.instance.parent=this;this.g=new a.Mf;this.g.parent=this;this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]},16).wait(16))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(0,0,48,48);(a.mL=function(d,e,f){this.initialize(d,e,f,{});this.instance=new a.lca;this.instance.parent=this;this.instance.setTransform(-24,-24);this.timeline.addTween(b.Tween.get(this.instance).wait(1))}).prototype= +k(a.mL,new b.Rectangle(-24,-24,48,48),null);(a.Rg=function(d,e,f){this.initialize(d,e,f,{});this.instance=new a.xV;this.instance.parent=this;this.instance.setTransform(-8,-9);this.g=new a.yV;this.g.parent=this;this.g.setTransform(-8,-9);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]},15).wait(17))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-8,-9,16,17);(a.eY=function(d,e,f){this.initialize(d,e,f,{});this.instance=new a.L8a;this.instance.parent= +this;this.instance.setTransform(-70,-53);this.timeline.addTween(b.Tween.get(this.instance).wait(1))}).prototype=k(a.eY,new b.Rectangle(-70,-53,140,60),null);(a.tX=function(d,e,f){this.initialize(d,e,f,{});this.text=new b.Text("TEXT","10px 'PixelMplus10'","#FFFFCC");this.text.name="text";this.text.textAlign="center";this.text.lineHeight=13;this.text.lineWidth=135;this.text.parent=this;this.text.setTransform(0,-5.5);this.timeline.addTween(b.Tween.get(this.text).wait(1))}).prototype=k(a.tX,new b.Rectangle(-69.6, +-7.5,139.2,15),null);(a.Sha=function(d,e,f){this.initialize(d,e,f,{});this.instance=new a.TLa;this.instance.parent=this;this.instance.setTransform(-7,-14);this.timeline.addTween(b.Tween.get(this.instance).wait(1))}).prototype=k(a.Sha,new b.Rectangle(-7,-14,14,14),null);(a.rda=function(d,e,f){this.initialize(d,e,f,{});this.instance=new a.kAa;this.instance.parent=this;this.instance.setTransform(-8.5,-20);this.timeline.addTween(b.Tween.get(this.instance).wait(1))}).prototype=k(a.rda,new b.Rectangle(-8.5, +-20,17,20),null);(a.$0=function(d,e,f){this.initialize(d,e,f,{});this.instance=new a.ZEa;this.instance.parent=this;this.instance.setTransform(-5,-2);this.timeline.addTween(b.Tween.get(this.instance).wait(1))}).prototype=k(a.$0,new b.Rectangle(-12.5,-6,25,12),null);(a.Eba=function(d,e,f){this.initialize(d,e,f,{});this.instance=new a.cwa;this.instance.parent=this;this.instance.setTransform(-6,-6);this.timeline.addTween(b.Tween.get(this.instance).wait(1))}).prototype=k(a.Eba,new b.Rectangle(-6,-6,13, +3),null);(a.Dba=function(d,e,f){this.initialize(d,e,f,{});this.instance=new a.bwa;this.instance.parent=this;this.instance.setTransform(-8,-7);this.timeline.addTween(b.Tween.get(this.instance).wait(1))}).prototype=k(a.Dba,new b.Rectangle(-8,-7,16,5),null);(a.Wna=function(d,e,f){this.initialize(d,e,f,{});this.instance=new a.k6;this.instance.parent=this;this.instance.setTransform(-9,-13);this.timeline.addTween(b.Tween.get(this.instance).wait(1))}).prototype=k(a.Wna,new b.Rectangle(-9,-13,18,26),null); +(a.Nk=function(d,e,f){this.initialize(d,e,f,{});this.instance=new a.rta;this.instance.parent=this;this.timeline.addTween(b.Tween.get(this.instance).wait(1))}).prototype=k(a.Nk,new b.Rectangle(0,0,48,48),null);(a.yDa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={ephemeral:{deathFrame:-1}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(13));this.instance=new a.zDa;this.instance.parent=this;this.instance.setTransform(-32,-32);this.g=new a.ADa;this.g.parent=this;this.g.setTransform(-32, +-32);this.i=new a.BDa;this.i.parent=this;this.i.setTransform(-32,-32);this.o=new a.CDa;this.o.parent=this;this.o.setTransform(-32,-32);this.H=new a.DDa;this.H.parent=this;this.H.setTransform(-32,-32);this.O=new a.EDa;this.O.parent=this;this.O.setTransform(-32,-32);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]},2).to({state:[{t:this.i}]},2).to({state:[{t:this.o}]},2).to({state:[{t:this.H}]},2).to({state:[{t:this.O}]},2).to({state:[]},2).wait(1))}).prototype= +c=new b.MovieClip;c.j=new b.Rectangle(-32,-32,64,64);(a.Ta=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={bounds:{}};this.setBounds(-36,-36,72,72)};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.shape=new b.Shape;this.shape.graphics.f("#66FF00").s().p("AlnFoIAArPILPAAIAALPg");this.timeline.addTween(b.Tween.get(this.shape).wait(1))}).prototype=k(a.Ta,new b.Rectangle(-36,-36,72,72),null);(a.Rra=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T= +{sprite:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(12));this.instance=new a.Uua;this.instance.parent=this;this.instance.setTransform(-10,-10);this.g=new a.cva;this.g.parent=this;this.g.setTransform(-10,-11);this.i=new a.iva;this.i.parent=this;this.i.setTransform(-10,-11);this.o=new a.jva;this.o.parent=this;this.o.setTransform(-10,-10);this.H=new a.kva;this.H.parent=this;this.H.setTransform(-10,-11);this.O=new a.lva;this.O.parent=this;this.O.setTransform(-10,-11);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]}, +2).to({state:[{t:this.i}]},2).to({state:[{t:this.o}]},2).to({state:[{t:this.H}]},2).to({state:[{t:this.O}]},2).wait(2));this.$=new a.a1;this.$.parent=this;this.$.setTransform(-3,-14);this.timeline.addTween(b.Tween.get(this.$).wait(12))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-10,-14,19,25);(a.Qra=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={sprite:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(12));this.instance=new a.Hva;this.instance.parent=this; +this.instance.setTransform(-6,-10);this.g=new a.Jva;this.g.parent=this;this.g.setTransform(-6,-11);this.i=new a.Kva;this.i.parent=this;this.i.setTransform(-6,-11);this.o=new a.Lva;this.o.parent=this;this.o.setTransform(-6,-10);this.H=new a.Nva;this.H.parent=this;this.H.setTransform(-6,-11);this.O=new a.Pva;this.O.parent=this;this.O.setTransform(-6,-11);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]},2).to({state:[{t:this.i}]},2).to({state:[{t:this.o}]}, +2).to({state:[{t:this.H}]},2).to({state:[{t:this.O}]},2).wait(2));this.$=new a.a1;this.$.parent=this;this.$.setTransform(-3,-14);this.timeline.addTween(b.Tween.get(this.$).wait(12))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-6,-14,16,25);(a.zba=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={sprite:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.PWa;this.instance.parent=this;this.instance.setTransform(-10,-14);this.timeline.addTween(b.Tween.get(this.instance).wait(1))}).prototype= +k(a.zba,new b.Rectangle(-10,-14,18,25),null);(a.Jza=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(10));this.instance=new a.Qza;this.instance.parent=this;this.instance.setTransform(-31,-40);this.g=new a.Rza;this.g.parent=this;this.g.setTransform(-31,-40);this.i=new a.Sza;this.i.parent=this;this.i.setTransform(-31,-40);this.o=new a.Tza;this.o.parent=this;this.o.setTransform(-31,-40);this.H=new a.Uza;this.H.parent=this; +this.H.setTransform(-31,-40);this.O=new a.Vza;this.O.parent=this;this.O.setTransform(-31,-40);this.$=new a.Wza;this.$.parent=this;this.$.setTransform(-31,-40);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]},3).to({state:[{t:this.i}]},2).to({state:[{t:this.o}]},1).to({state:[{t:this.H}]},1).to({state:[{t:this.O}]},1).to({state:[{t:this.$}]},1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-31,-40,52,42);(a.qda=function(d,e,f){this.initialize(d, +e,f,{});this.u=function(){this.T={drawOrderOverride:{drawOrder:-1E3}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.shape=new b.Shape;this.shape.graphics.f("#000000").s().p("A4/OEIAA8HMAx/AAAIAAcHg");this.shape.setTransform(160,90);this.timeline.addTween(b.Tween.get(this.shape).wait(1))}).prototype=k(a.qda,new b.Rectangle(0,0,320,180),null);(a.Iza=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(14)); +this.instance=new a.dAa;this.instance.parent=this;this.instance.setTransform(-20,-42);this.g=new a.eAa;this.g.parent=this;this.g.setTransform(-20,-42);this.i=new a.fAa;this.i.parent=this;this.i.setTransform(-20,-42);this.o=new a.gAa;this.o.parent=this;this.o.setTransform(-20,-42);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]},5).to({state:[{t:this.i}]},5).to({state:[{t:this.o}]},2).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-20,-42,34, +50);(a.Hza=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(10));this.instance=new a.Xza;this.instance.parent=this;this.instance.setTransform(-20,-40);this.g=new a.Yza;this.g.parent=this;this.g.setTransform(-20,-40);this.i=new a.Zza;this.i.parent=this;this.i.setTransform(-20,-40);this.o=new a.$za;this.o.parent=this;this.o.setTransform(-20,-40);this.H=new a.aAa;this.H.parent=this;this.H.setTransform(-20,-40);this.O=new a.bAa; +this.O.parent=this;this.O.setTransform(-20,-40);this.$=new a.cAa;this.$.parent=this;this.$.setTransform(-20,-40);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]},3).to({state:[{t:this.i}]},2).to({state:[{t:this.o}]},1).to({state:[{t:this.H}]},1).to({state:[{t:this.O}]},1).to({state:[{t:this.$}]},1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-20,-40,52,42);(a.f5=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={ephemeral:{deathFrame:-1}}}; +this.timeline.addTween(b.Tween.get(this).call(this.u).wait(17));this.Tx=new a.tX;this.Tx.name="hitAnim";this.Tx.parent=this;this.Tx.setTransform(0,-17);this.timeline.addTween(b.Tween.get(this.Tx).to({y:-32.5},10,b.Ease.quintOut).to({alpha:0},5).to({_off:!0},1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-69.6,-40,139.2,30.5);(a.Gza=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(6));this.instance=new a.jAa; +this.instance.parent=this;this.instance.setTransform(-6,2);this.instance._off=!0;this.timeline.addTween(b.Tween.get(this.instance).wait(5).to({_off:!1},0).wait(1));this.g=new a.iAa;this.g.parent=this;this.g.setTransform(-8,-9);this.timeline.addTween(b.Tween.get(this.g).wait(6));this.i=new a.rda;this.i.parent=this;this.i.setTransform(0,0,1,1,0,0,0,0,-10);this.i.alpha=0;this.i._off=!0;this.timeline.addTween(b.Tween.get(this.i).wait(1).to({_off:!1},0).to({alpha:1},4).wait(1))}).prototype=c=new b.MovieClip; +c.j=new b.Rectangle(-51.4,-46.2,104.69999999999999,104.5);(a.qza=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(6));this.instance=new a.SLa;this.instance.parent=this;this.instance.setTransform(-6,-7);this.timeline.addTween(b.Tween.get(this.instance).wait(6));this.g=new a.Sha;this.g.parent=this;this.g.setTransform(0,-1,1,1,0,0,0,0,-7);this.g.alpha=0;this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1}, +0).to({alpha:1},3).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-51.4,-46.2,104.69999999999999,104.5);(a.Cba=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(14));d=new b.Shape;d._off=!0;e=(new b.Graphics).p("AhygiICpAAIAAA7IipAAg");f=(new b.Graphics).p("AhtgiICpAAIAAA7IipAAg");var v=(new b.Graphics).p("AhogiICpAAIAAA7IipAAg"),u=(new b.Graphics).p("AhjgiICpAAIAAA7IipAAg"),E=(new b.Graphics).p("AhegiICpAAIAAA7IipAAg"), +P=(new b.Graphics).p("AhZgiICpAAIAAA7IipAAg"),K=(new b.Graphics).p("AhUgiICpAAIAAA7IipAAg"),T=(new b.Graphics).p("AhUgiICpAAIAAA7IipAAg"),F=(new b.Graphics).p("AhUgiICpAAIAAA7IipAAg"),H=(new b.Graphics).p("AhUgiICpAAIAAA7IipAAg"),I=(new b.Graphics).p("AhUgiICpAAIAAA7IipAAg"),J=(new b.Graphics).p("AhUgiICpAAIAAA7IipAAg"),U=(new b.Graphics).p("AhUgiICpAAIAAA7IipAAg"),O=(new b.Graphics).p("AhUgiICpAAIAAA7IipAAg");this.timeline.addTween(b.Tween.get(d).to({graphics:e,x:-11.5,y:-3.5}).wait(1).to({graphics:f, +x:-11,y:-3.5}).wait(1).to({graphics:v,x:-10.5,y:-3.5}).wait(1).to({graphics:u,x:-10,y:-3.5}).wait(1).to({graphics:E,x:-9.5,y:-3.5}).wait(1).to({graphics:P,x:-9,y:-3.5}).wait(1).to({graphics:K,x:-8.5,y:-3.5}).wait(1).to({graphics:T,x:-7.5,y:-3.5}).wait(1).to({graphics:F,x:-6.5,y:-3.5}).wait(1).to({graphics:H,x:-5.5,y:-3.5}).wait(1).to({graphics:I,x:-4.5,y:-3.5}).wait(1).to({graphics:J,x:-3.5,y:-3.5}).wait(1).to({graphics:U,x:-2.5,y:-3.5}).wait(1).to({graphics:O,x:-1.5,y:-3.5}).wait(1));this.instance= +new a.Eba;this.instance.parent=this;e=[this.instance];for(f=0;f= 6",frame1:"unlocked",condition2:"",frame2:"locked",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}}; +this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.qRa;this.instance.parent=this;this.instance.setTransform(0,1.6,1,1,0,0,0,0,-.6);this.g=new a.rRa;this.g.parent=this;this.g.setTransform(20,1.6,1,1,0,0,0,0,-.6);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]},1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-16.8,54,36.8);(a.f5a=function(d,e,f){this.initialize(d,e,f,{locked:0,unlocked:1});this.u=function(){this.T= +{storageSprite:{condition1:"(($climbing_rating == 3) + ($swim_rating == 3) + ($skate_rating == 3) + ($rugby_rating == 3) + ($pingpong_rating == 3) + ($marathon_rating == 3) + ($archery_rating == 3)) >= 3",frame1:"unlocked",condition2:"",frame2:"locked",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.oRa;this.instance.parent=this;this.instance.setTransform(0,1.6,1,1,0,0,0,0,-.6);this.g=new a.pRa; +this.g.parent=this;this.g.setTransform(20,1.6,1,1,0,0,0,0,-.6);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]},1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-16.8,54,36.8);(a.d5a=function(d,e,f){this.initialize(d,e,f,{locked:0,unlocked:1});this.u=function(){this.T={storageSprite:{condition1:"(($climbing_rating == 3) + ($swim_rating == 3) + ($skate_rating == 3) + ($rugby_rating == 3) + ($pingpong_rating == 3) + ($marathon_rating == 3) + ($archery_rating == 3)) >= 6", +frame1:"unlocked",condition2:"",frame2:"locked",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.iSa;this.instance.parent=this;this.instance.setTransform(0,1.6,1,1,0,0,0,0,-.6);this.g=new a.jSa;this.g.parent=this;this.g.setTransform(20,1.6,1,1,0,0,0,0,-.6);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]},1).wait(1))}).prototype=c=new b.MovieClip; +c.j=new b.Rectangle(-17,-17.8,54,37.8);(a.c5a=function(d,e,f){this.initialize(d,e,f,{locked:0,unlocked:1});this.u=function(){this.T={storageSprite:{condition1:"(($climbing_rating == 3) + ($swim_rating == 3) + ($skate_rating == 3) + ($rugby_rating == 3) + ($pingpong_rating == 3) + ($marathon_rating == 3) + ($archery_rating == 3)) >= 3",frame1:"unlocked",condition2:"",frame2:"locked",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2)); +this.instance=new a.hSa;this.instance.parent=this;this.instance.setTransform(0,1.6,1,1,0,0,0,0,-.6);this.g=new a.uRa;this.g.parent=this;this.g.setTransform(20,1.6,1,1,0,0,0,0,-.6);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]},1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-17.8,54,37.8);(a.b5a=function(d,e,f){this.initialize(d,e,f,{locked:0,unlocked:1});this.u=function(){this.T={storageSprite:{condition1:"(($climbing_rating == 3) + ($swim_rating == 3) + ($skate_rating == 3) + ($rugby_rating == 3) + ($pingpong_rating == 3) + ($marathon_rating == 3) + ($archery_rating == 3)) >= 6", +frame1:"unlocked",condition2:"",frame2:"locked",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.JRa;this.instance.parent=this;this.instance.setTransform(0,1.6,1,1,0,0,0,0,-.6);this.g=new a.KRa;this.g.parent=this;this.g.setTransform(20,1.6,1,1,0,0,0,0,-.6);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]},1).wait(1))}).prototype=c=new b.MovieClip; +c.j=new b.Rectangle(-17,-16.8,54,36.8);(a.a5a=function(d,e,f){this.initialize(d,e,f,{locked:0,unlocked:1});this.u=function(){this.T={storageSprite:{condition1:"(($climbing_rating == 3) + ($swim_rating == 3) + ($skate_rating == 3) + ($rugby_rating == 3) + ($pingpong_rating == 3) + ($marathon_rating == 3) + ($archery_rating == 3)) >= 3",frame1:"unlocked",condition2:"",frame2:"locked",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2)); +this.instance=new a.HRa;this.instance.parent=this;this.instance.setTransform(0,1.6,1,1,0,0,0,0,-.6);this.g=new a.IRa;this.g.parent=this;this.g.setTransform(20,1.6,1,1,0,0,0,0,-.6);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]},1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-16.8,54,36.8);(a.Z4a=function(d,e,f){this.initialize(d,e,f,{locked:0,unlocked:1});this.u=function(){this.T={storageSprite:{condition1:"(($climbing_rating == 3) + ($swim_rating == 3) + ($skate_rating == 3) + ($rugby_rating == 3) + ($pingpong_rating == 3) + ($marathon_rating == 3) + ($archery_rating == 3)) >= 6", +frame1:"unlocked",condition2:"",frame2:"locked",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.ITa;this.instance.parent=this;this.instance.setTransform(0,1.6,1,1,0,0,0,0,-.6);this.g=new a.JTa;this.g.parent=this;this.g.setTransform(20,1.6,1,1,0,0,0,0,-.6);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]},1).wait(1))}).prototype=c=new b.MovieClip; +c.j=new b.Rectangle(-17,-16.8,54,36.8);(a.Y4a=function(d,e,f){this.initialize(d,e,f,{locked:0,unlocked:1});this.u=function(){this.T={storageSprite:{condition1:"(($climbing_rating == 3) + ($swim_rating == 3) + ($skate_rating == 3) + ($rugby_rating == 3) + ($pingpong_rating == 3) + ($marathon_rating == 3) + ($archery_rating == 3)) >= 3",frame1:"unlocked",condition2:"",frame2:"locked",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2)); +this.instance=new a.GTa;this.instance.parent=this;this.instance.setTransform(0,1.6,1,1,0,0,0,0,-.6);this.g=new a.HTa;this.g.parent=this;this.g.setTransform(20,1.6,1,1,0,0,0,0,-.6);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]},1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-16.8,54,36.8);(a.WZa=function(d,e,f){this.initialize(d,e,f,{on:0,off:1});this.u=function(){this.T={storageSprite:{condition1:"!$WATER_GATE",frame1:"on",condition2:"$WATER_GATE == 'sister1'", +frame2:"on",condition3:"$WATER_GATE == 'sister2'",frame3:"on",condition4:"$WATER_GATE == 'sister3'",frame4:"on",condition5:"",frame5:"off"}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.i5;this.instance.parent=this;this.instance.setTransform(0,3,1,1,0,0,0,0,.8);this.timeline.addTween(b.Tween.get(this.instance).to({_off:!0},1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-13.8,34,35.8);(a.UZa=function(d,e,f){this.initialize(d,e,f,{on:0,off:1}); +this.u=function(){this.T={storageSprite:{condition1:"$WATER_GATE == 'sister1'",frame1:"on",condition2:"!$WATER_GATE",frame2:"on",condition3:"",frame3:"off",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.h5;this.instance.parent=this;this.instance.setTransform(0,0,1,1,0,0,0,0,.8);this.timeline.addTween(b.Tween.get(this.instance).to({_off:!0},1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-16.3, +34,35.3);(a.vYa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={trigger:{triggerComponent:"overworldPlayer"},npc:{name:"questBirthdayHero",node:""},storageNpc:{condition1:"$BIRTHDAY == null",node1:"inactive",condition2:"$BIRTHDAY == 'active'",node2:"active",condition3:"",node3:"",condition4:"",node4:"",condition5:"",node5:""},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2)); +this.instance=new a.Kb;this.instance.parent=this;this.instance.setTransform(-3,-36.05,1,1,0,0,0,7.7,8.3);this.instance._off=!0;this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off:!1},0).wait(1));this.g=new a.Ra;this.g.parent=this;this.g.setTransform(0,-1.9,3.4451,1.65,0,0,0,0,-7.8);this.g.visible=!1;this.timeline.addTween(b.Tween.get(this.g).wait(2));this.i=new a.jca;this.i.parent=this;this.i.setTransform(-29,12,1,1,0,0,0,0,-12);this.o=new a.ica;this.o.parent=this;this.o.setTransform(11, +-11.5,1,1,0,0,0,0,-13.5);this.H=new a.kca;this.H.parent=this;this.H.setTransform(-13,-11,1,1,0,0,0,0,-12);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.H},{t:this.o},{t:this.i}]}).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-36,-44.3,63.6,69.3);(a.tYa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={trigger:{triggerComponent:"overworldPlayer"},npc:{name:"questBirthdayHero",node:"complete"},jumpToFrameOnTrigger:{triggerFrame:"trigger", +untriggerFrame:"untrigger"}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.Kb;this.instance.parent=this;this.instance.setTransform(-12.7,-36.35,1,1,0,0,0,8,8);this.instance._off=!0;this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off:!1},0).wait(1));this.g=new a.Ra;this.g.parent=this;this.g.setTransform(-3.95,-16.1,5.0111,1.65,0,0,0,0,-7.9);this.g.visible=!1;this.timeline.addTween(b.Tween.get(this.g).wait(2));this.i=new a.jca;this.i.parent=this; +this.i.setTransform(-39,0,1,1,0,0,0,0,-12);this.o=new a.ica;this.o.parent=this;this.o.setTransform(1,-23.5,1,1,0,0,0,0,-13.5);this.H=new a.kca;this.H.parent=this;this.H.setTransform(-23,-22,1,1,0,0,0,0,-12);this.O=new a.m4a;this.O.parent=this;this.O.setTransform(21,-24,1,1,0,0,0,0,-14);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.O},{t:this.H},{t:this.o},{t:this.i}]}).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-46,-44.3,82.2,57.3);(a.wZa=function(d,e,f){this.initialize(d, +e,f,{oni:0,baker:1});this.u=function(){this.T={storageSprite:{condition1:"$ONI == 'complete'",frame1:"baker",condition2:"",frame2:"oni",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.uZa;this.instance.parent=this;this.instance.setTransform(0,3,1,1,0,0,0,0,.8);this.g=new a.vZa;this.g.parent=this;this.g.setTransform(0,3,1,1,0,0,0,0,.8);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]}, +1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-27.8,34,47.8);(a.rZa=function(d,e,f){this.initialize(d,e,f,{baker:0,oni:1});this.u=function(){this.T={storageSprite:{condition1:"$ONI =='complete'",frame1:"oni",condition2:"",frame2:"baker",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.tZa;this.instance.parent=this;this.instance.setTransform(0,5,1,1,0,0,0,0,.8);this.g=new a.sZa; +this.g.parent=this;this.g.setTransform(0,5,1,1,0,0,0,0,.8);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]},1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-24.8,34,60.8);(a.sPa=function(d,e,f){this.initialize(d,e,f,{on:0,off:1});this.u=function(){this.T={storageSprite:{condition1:"$TROPHY_MASTER == 'complete'",frame1:"off",condition2:"",frame2:"on",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2)); +this.instance=new a.fPa;this.instance.parent=this;this.instance.setTransform(-2,-10.5,1,1,0,0,0,0,-10.5);this.timeline.addTween(b.Tween.get(this.instance).to({_off:!0},1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-14,-19,28,31);(a.hC=function(d,e,f){this.initialize(d,e,f,{});this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(0,-67.65,1,8.5625,0,0,0,0,.1);this.timeline.addTween(b.Tween.get(this.instance).wait(1))}).prototype=k(a.hC,new b.Rectangle(-8,-137.1, +16,137.29999999999998),null);(a.LJa=function(d,e,f){this.initialize(d,e,f,{off:0,on:1});this.u=function(){this.T={storageSprite:{condition1:"$DRIFTWOOD == 'complete'",frame1:"on",condition2:"",frame2:"off",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.JJa;this.instance.parent=this;this.instance.setTransform(-2,-42.45,1,1,0,0,0,0,-28.5);this.instance._off=!0;this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off:!1}, +0).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-20.7,-56.1,39.2,64.5);(a.lHa=function(d,e,f){this.initialize(d,e,f,{off:0,on:1});this.u=function(){this.T={storageSprite:{condition1:"$LOST_BOOK == 'active'",frame1:"on",condition2:"",frame2:"off",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.jHa;this.instance.parent=this;this.instance.setTransform(-.35,-3.35,1,1,0,0,0,0,-5); +this.instance._off=!0;this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off:!1},0).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-15.6,-18.3,31.299999999999997,31.3);(a.PDa=function(d,e,f){this.initialize(d,e,f,{on:0,off:1});this.u=function(){this.T={storageSprite:{condition1:"$FAN == 'complete'",frame1:"off",condition2:"",frame2:"on",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2)); +this.instance=new a.a2;this.instance.parent=this;this.instance.setTransform(0,-32,1,1,0,0,0,0,-17);this.timeline.addTween(b.Tween.get(this.instance).to({_off:!0},1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-49,34,59.1);(a.Player=function(d,e,f){this.initialize(d,e,f,{idle:0,walk:1});this.u=function(){this.stop();this.T={playerMovement:{speed:2},velocity:{velocity:{x:0,y:0}},boundable:{},collidable:{},spritable:{},direction:{direction:"n"},overworldPlayer:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2)); +this.instance=new a.Ta;this.instance.parent=this;this.instance.setTransform(-.3,-3.85,.1666,.1666,0,0,0,-1.2,.6);this.instance.visible=!1;this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.kM;this.g.parent=this;this.i=new a.nM;this.i.parent=this;this.i.setTransform(0,0,1,1,0,0,0,-.5,0);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.g}]}).to({state:[{t:this.i}]},1).wait(1));this.o=new a.Mk;this.o.parent=this;this.o.setTransform(0,2.15,1,1,0,0,0,6,1.5);this.o.alpha=.5; +this.timeline.addTween(b.Tween.get(this.o).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-11,-20,18,23.7);(a.v5a=function(d,e,f){this.initialize(d,e,f,{asleep:0,awake:1});this.u=function(){this.T={storageSprite:{condition1:"$FAN == 'complete'",frame1:"awake",condition2:"",frame2:"asleep",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.Wbb;this.instance.parent=this; +this.instance.setTransform(-.2,-.3,1,1,0,0,0,-.2,-6.3);this.g=new a.Vbb;this.g.parent=this;this.g.setTransform(-.05,-.05,1,1,0,0,0,-.1,-10.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]},1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-52.4,-37.4,97.6,70.4);(a.i_a=function(d,e,f){this.initialize(d,e,f,{bow:0,idle:1});this.u=function(){this.T={storageSprite:{condition1:"$BOW_TRIGGER == true",frame1:"bow",condition2:"",frame2:"idle",condition3:"", +frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.h_a;this.instance.parent=this;this.instance.setTransform(0,-12,1,1,0,0,0,0,-12);this.g=new a.BBa;this.g.parent=this;this.g.setTransform(0,-11,1,1,0,0,0,0,-12);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]},1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-8.7,-24,16,60.4);(a.yTa=function(d,e,f){this.initialize(d, +e,f,{off:0,on:1});this.u=function(){this.T={storageSprite:{condition1:"$COACH == 'complete'",frame1:"off",condition2:"",frame2:"on",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.xTa;this.instance.parent=this;this.instance.setTransform(2.25,-16);this.instance._off=!0;this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off:!1},0).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-18.7, +-31,37.5,31);(a.wTa=function(d,e,f){this.initialize(d,e,f,{off:0,on:1});this.u=function(){this.T={storageSprite:{condition1:"$COACH == 'complete'",frame1:"on",condition2:"",frame2:"off",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.vTa;this.instance.parent=this;this.instance.setTransform(2.25,-6);this.instance._off=!0;this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off:!1}, +0).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-18.7,-23,37.5,33);(a.sSa=function(d,e,f){this.initialize(d,e,f,{off:0,on:1});this.u=function(){this.T={storageSprite:{condition1:"$RACE == 'complete'",frame1:"off",condition2:"",frame2:"on",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.a4;this.instance.parent=this;this.instance.setTransform(0,.6,1,1,0,0,0,0,-.6);this.instance._off= +!0;this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off:!1},0).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-25,-26.8,48,45.8);(a.cSa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamRed",node:"elite6"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.PK; +this.instance.parent=this;this.instance.setTransform(.2,-9.6,1,1,0,0,180,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-29,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17, +-37,34,54.8);(a.bSa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamRed",node:"elite5"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.PK;this.instance.parent=this;this.instance.setTransform(.2,-9.6,1,1,0,0,180,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2)); +this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-29,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-37,34,54.8);(a.aSa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamRed", +node:"elite4"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.PK;this.instance.parent=this;this.instance.setTransform(.2,-9.6,1,1,0,0,180,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-29,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1}, +0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-37,34,54.8);(a.$Ra=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamRed",node:"elite3"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()}; +this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.PK;this.instance.parent=this;this.instance.setTransform(.2,-9.6,1,1,0,0,180,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-29,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype= +c=new b.MovieClip;c.j=new b.Rectangle(-17,-37,34,54.8);(a.ZRa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamRed",node:"elite2"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.PK;this.instance.parent=this;this.instance.setTransform(.2,-9.6,1,1,0,0,180,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2)); +this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-29,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-37,34,54.8);(a.YRa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamRed", +node:"elite1"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.PK;this.instance.parent=this;this.instance.setTransform(.2,-9.6,1,1,0,0,180,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-29,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1}, +0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-37,34,54.8);(a.SRa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamRed",node:"advanced3"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()}; +this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.PK;this.instance.parent=this;this.instance.setTransform(.2,-9.6,1,1,0,0,180,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-29,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(-4.55,1,1.5605,2.125,0,0,0,0,-7.9);this.i.visible=!1; +this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-37,25.3,54.8);(a.QRa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamRed",node:"advanced1"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.PK;this.instance.parent=this; +this.instance.setTransform(.2,-9.6,1,1,0,0,180,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-29,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(-4.55,1,1.5605,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-37,25.3, +54.8);(a.GRa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamGreen",node:"elite6"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.OK;this.instance.parent=this;this.instance.setTransform(.2,-9.6,1,1,0,0,180,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2)); +this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-29,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-37,34,54.8);(a.FRa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamGreen", +node:"elite5"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.OK;this.instance.parent=this;this.instance.setTransform(.2,-9.6,1,1,0,0,180,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-29,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1}, +0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-37,34,54.8);(a.ERa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamGreen",node:"elite4"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()}; +this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.OK;this.instance.parent=this;this.instance.setTransform(.2,-9.6,1,1,0,0,180,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-29,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype= +c=new b.MovieClip;c.j=new b.Rectangle(-17,-37,34,54.8);(a.DRa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamGreen",node:"elite3"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.OK;this.instance.parent=this;this.instance.setTransform(.2,-9.6,1,1,0,0,180,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2)); +this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-29,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-37,34,54.8);(a.CRa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamGreen", +node:"elite2"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.OK;this.instance.parent=this;this.instance.setTransform(.2,-9.6,1,1,0,0,180,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-29,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1}, +0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-37,34,54.8);(a.BRa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamGreen",node:"elite1"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()}; +this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.OK;this.instance.parent=this;this.instance.setTransform(.2,-9.6,1,1,0,0,180,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-29,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype= +c=new b.MovieClip;c.j=new b.Rectangle(-17,-37,34,54.8);(a.xRa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamGreen",node:"advanced3"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.OK;this.instance.parent=this;this.instance.setTransform(.2,-9.6,1,1,0,0,180,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2)); +this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-29,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(-4,1,1.627,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-37,26.3,54.8);(a.vRa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamGreen", +node:"advanced1"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.OK;this.instance.parent=this;this.instance.setTransform(.2,-9.6,1,1,0,0,180,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-29,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1}, +0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(-11.55,1,.6906,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-37,26.3,54.8);(a.lRa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTrainTracksPassword",node:""},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}}; +this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.Uw;this.instance.parent=this;this.instance.setTransform(-2,-9,1,1,0,0,0,0,-10);this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-25,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible= +!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-33,34,50.8);(a.kRa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamYellow",node:"member3"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.Uw;this.instance.parent= +this;this.instance.setTransform(-1.9,-8.6,1,1,0,0,0,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-25,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-33,34, +50.8);(a.jRa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamYellow",node:"member2"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.Uw;this.instance.parent=this;this.instance.setTransform(-1.9,-8.6,1,1,0,0,0,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2)); +this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-25,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-33,34,50.8);(a.iRa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamYellow", +node:"member1"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.Uw;this.instance.parent=this;this.instance.setTransform(-1.9,-8.6,1,1,0,0,0,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-25,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1}, +0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-33,34,50.8);(a.hRa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamYellow",node:"elite6"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()}; +this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.NK;this.instance.parent=this;this.instance.setTransform(.2,-9.6,1,1,0,0,180,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-29,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype= +c=new b.MovieClip;c.j=new b.Rectangle(-17,-37,34,54.8);(a.gRa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamYellow",node:"elite5"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.NK;this.instance.parent=this;this.instance.setTransform(.2,-9.6,1,1,0,0,180,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2)); +this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-29,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-37,34,54.8);(a.fRa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamYellow", +node:"elite4"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.NK;this.instance.parent=this;this.instance.setTransform(.2,-9.6,1,1,0,0,180,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-29,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1}, +0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-37,34,54.8);(a.eRa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamYellow",node:"elite3"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()}; +this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.NK;this.instance.parent=this;this.instance.setTransform(.2,-9.6,1,1,0,0,180,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-29,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype= +c=new b.MovieClip;c.j=new b.Rectangle(-17,-37,34,54.8);(a.dRa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamYellow",node:"elite2"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.NK;this.instance.parent=this;this.instance.setTransform(.2,-9.6,1,1,0,0,180,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2)); +this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-29,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-37,34,54.8);(a.cRa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamYellow", +node:"elite1"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.NK;this.instance.parent=this;this.instance.setTransform(.2,-9.6,1,1,0,0,180,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-29,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1}, +0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-37,34,54.8);(a.bRa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamYellow",node:"advanced6"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()}; +this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.Uw;this.instance.parent=this;this.instance.setTransform(-1.9,-8.6,1,1,0,0,0,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-25,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype= +c=new b.MovieClip;c.j=new b.Rectangle(-17,-33,34,50.8);(a.aRa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamYellow",node:"advanced5"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.Uw;this.instance.parent=this;this.instance.setTransform(-1.9,-8.6,1,1,0,0,0,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2)); +this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-25,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-33,34,50.8);(a.$Qa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamYellow", +node:"advanced4"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.Uw;this.instance.parent=this;this.instance.setTransform(-1.9,-8.6,1,1,0,0,0,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-25,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1}, +0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-33,34,50.8);(a.ZQa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamYellow",node:"advanced3"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()}; +this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.NK;this.instance.parent=this;this.instance.setTransform(.2,-9.6,1,1,0,0,180,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-29,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(-4.55,1,1.5605,2.125,0,0,0,0,-7.9);this.i.visible=!1; +this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-37,25.3,54.8);(a.YQa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamYellow",node:"advanced2"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.Uw;this.instance.parent= +this;this.instance.setTransform(-1.9,-8.6,1,1,0,0,0,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-25,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,-11.4,2.125,1.6871,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17, +-33,34,35);(a.XQa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questTeamYellow",node:"advanced1"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.NK;this.instance.parent=this;this.instance.setTransform(.2,-9.6,1,1,0,0,180,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2)); +this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-29,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(-4.55,1,1.5605,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-37,25.3,54.8);(a.WQa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"inari", +node:"invisible"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.Uw;this.instance.parent=this;this.instance.setTransform(-1.9,-8.6,1,1,0,0,0,.1,-9.6);this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-25,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1}, +0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-33,34,50.8);(a.tpa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(187.9,157.5, +6.4688,3.6875,0,0,0,.1,0);this.g=new a.N;this.g.parent=this;this.g.setTransform(52.9,157.5,6.4688,3.6875,0,0,0,.1,0);this.i=new a.N;this.i.parent=this;this.i.setTransform(122.75,16.05,14.7419,2.0031,0,0,0,.3,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(240,67.05,1,8.5625,0,0,0,0,.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(.5,67.35,1,8.5625,0,0,0,0,.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1)); +this.O=new a.Player;this.O.parent=this;this.O.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.O).wait(1));this.$=new a.iY;this.$.parent=this;this.$.setTransform(120,67.5);this.timeline.addTween(b.Tween.get(this.$).wait(1));this.ka=new a.T9a;this.ka.parent=this;this.ka.setTransform(119.8,46.5,1,1,0,0,0,-2.2,-.5);this.timeline.addTween(b.Tween.get(this.ka).wait(1));this.ta=new a.LJa;this.ta.parent=this;this.ta.setTransform(123.65,88.45,1,1,0,0,0,0,-28.1);this.va=new a.Wda;this.va.parent= +this;this.va.setTransform(127.35,3.15,1,1,0,0,0,0,-24.5);this.wa=new a.V9a;this.wa.parent=this;this.wa.setTransform(213.65,28.15,1,1,0,0,0,0,-28.5);this.ya=new a.Y9a;this.ya.parent=this;this.ya.setTransform(212.65,78.15,1,1,0,0,0,0,-28.5);this.Aa=new a.X9a;this.Aa.parent=this;this.Aa.setTransform(30.65,76.15,1,1,0,0,0,0,-28.5);this.Ba=new a.W9a;this.Ba.parent=this;this.Ba.setTransform(30.65,25.15,1,1,0,0,0,0,-28.5);this.Da=new a.ym;this.Da.parent=this;this.Da.setTransform(119,42);this.Ea=new a.Bm; +this.Ea.parent=this;this.Ea.setTransform(120,152.75);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta}]}).wait(1));this.Ga=new a.Xba;this.Ga.parent=this;this.Ga.setTransform(120,68.5,1,1,0,0,0,120,67.5);this.timeline.addTween(b.Tween.get(this.Ga).wait(1))}).prototype=k(a.tpa,new b.Rectangle(-7.5,-2.4,255.5,189.5),null);(a.wqa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0}, +cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(204.05,57.1,.3122,.3122,.0084,0,0,.1,.3);this.g=new a.N;this.g.parent=this;this.g.setTransform(203.05,55.1,.3122,.3122,.0084,0,0,.1,.3);this.i=new a.N;this.i.parent=this;this.i.setTransform(202.05,53.1,.3122,.3122,.0084,0,0,.1,.3);this.o=new a.N;this.o.parent=this;this.o.setTransform(201.05,51.1,.3122,.3122,.0084,0,0,.1,.3);this.H=new a.N;this.H.parent= +this;this.H.setTransform(200.05,49.1,.3122,.3122,.0084,0,0,.1,.3);this.O=new a.N;this.O.parent=this;this.O.setTransform(199.05,47.1,.3122,.3122,.0084,0,0,.1,.3);this.$=new a.N;this.$.parent=this;this.$.setTransform(198.05,45.1,.3122,.3122,.0084,0,0,.1,.3);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(197.05,43.1,.3122,.3122,.0084,0,0,.1,.3);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(196.05,41.1,.3122,.3122,.0084,0,0,.1,.3);this.va=new a.N;this.va.parent=this;this.va.setTransform(195.05, +39.1,.3122,.3122,.0084,0,0,.1,.3);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(194.05,37.1,.3122,.3122,.0084,0,0,.1,.3);this.ya=new a.N;this.ya.parent=this;this.ya.setTransform(193.05,35.1,.3122,.3122,.0084,0,0,.1,.3);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(192.05,33.1,.3122,.3122,.0084,0,0,.1,.3);this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(191.05,31.1,.3122,.3122,.0084,0,0,.1,.3);this.Da=new a.N;this.Da.parent=this;this.Da.setTransform(190.05,29.1,.3122, +.3122,.0084,0,0,.1,.3);this.Ea=new a.N;this.Ea.parent=this;this.Ea.setTransform(189.05,27.1,.3122,.3122,.0084,0,0,.1,.3);this.Ga=new a.N;this.Ga.parent=this;this.Ga.setTransform(188.05,25.1,.3122,.3122,.0084,0,0,.1,.3);this.Ha=new a.N;this.Ha.parent=this;this.Ha.setTransform(187.05,23.1,.3122,.3122,.0084,0,0,.1,.3);this.Ia=new a.N;this.Ia.parent=this;this.Ia.setTransform(186.05,21.1,.3122,.3122,.0084,0,0,.1,.3);this.Ja=new a.N;this.Ja.parent=this;this.Ja.setTransform(185.05,19.1,.3122,.3122,.0084, +0,0,.1,.3);this.Ka=new a.N;this.Ka.parent=this;this.Ka.setTransform(184.05,17.1,.3122,.3122,.0084,0,0,.1,.3);this.La=new a.N;this.La.parent=this;this.La.setTransform(183.05,15.1,.3122,.3122,.0084,0,0,.1,.3);this.Ma=new a.N;this.Ma.parent=this;this.Ma.setTransform(182.05,13.1,.3122,.3122,.0084,0,0,.1,.3);this.Na=new a.N;this.Na.parent=this;this.Na.setTransform(181.05,11.1,.3122,.3122,.0084,0,0,.1,.3);this.Oa=new a.N;this.Oa.parent=this;this.Oa.setTransform(180.05,9.1,.3122,.3122,.0084,0,0,.1,.3);this.Qa= +new a.N;this.Qa.parent=this;this.Qa.setTransform(31.95,57.1,.3122,.3122,0,-.0084,180,.1,.3);this.Ua=new a.N;this.Ua.parent=this;this.Ua.setTransform(32.95,55.1,.3122,.3122,0,-.0084,180,.1,.3);this.Va=new a.N;this.Va.parent=this;this.Va.setTransform(33.95,53.1,.3122,.3122,0,-.0084,180,.1,.3);this.Wa=new a.N;this.Wa.parent=this;this.Wa.setTransform(34.95,51.1,.3122,.3122,0,-.0084,180,.1,.3);this.Xa=new a.N;this.Xa.parent=this;this.Xa.setTransform(35.95,49.1,.3122,.3122,0,-.0084,180,.1,.3);this.Ya=new a.N; +this.Ya.parent=this;this.Ya.setTransform(36.95,47.1,.3122,.3122,0,-.0084,180,.1,.3);this.Za=new a.N;this.Za.parent=this;this.Za.setTransform(37.95,45.1,.3122,.3122,0,-.0084,180,.1,.3);this.$a=new a.N;this.$a.parent=this;this.$a.setTransform(38.95,43.1,.3122,.3122,0,-.0084,180,.1,.3);this.ab=new a.N;this.ab.parent=this;this.ab.setTransform(39.95,41.1,.3122,.3122,0,-.0084,180,.1,.3);this.hb=new a.N;this.hb.parent=this;this.hb.setTransform(40.95,39.1,.3122,.3122,0,-.0084,180,.1,.3);this.mb=new a.N;this.mb.parent= +this;this.mb.setTransform(41.95,37.1,.3122,.3122,0,-.0084,180,.1,.3);this.nb=new a.N;this.nb.parent=this;this.nb.setTransform(42.95,35.1,.3122,.3122,0,-.0084,180,.1,.3);this.rb=new a.N;this.rb.parent=this;this.rb.setTransform(43.95,33.1,.3122,.3122,0,-.0084,180,.1,.3);this.tb=new a.N;this.tb.parent=this;this.tb.setTransform(44.95,31.1,.3122,.3122,0,-.0084,180,.1,.3);this.ub=new a.N;this.ub.parent=this;this.ub.setTransform(45.95,29.1,.3122,.3122,0,-.0084,180,.1,.3);this.wb=new a.N;this.wb.parent=this; +this.wb.setTransform(46.95,27.1,.3122,.3122,0,-.0084,180,.1,.3);this.yb=new a.N;this.yb.parent=this;this.yb.setTransform(47.95,25.1,.3122,.3122,0,-.0084,180,.1,.3);this.Ab=new a.N;this.Ab.parent=this;this.Ab.setTransform(48.95,23.1,.3122,.3122,0,-.0084,180,.1,.3);this.Cb=new a.N;this.Cb.parent=this;this.Cb.setTransform(49.95,21.1,.3122,.3122,0,-.0084,180,.1,.3);this.Db=new a.N;this.Db.parent=this;this.Db.setTransform(50.95,19.1,.3122,.3122,0,-.0084,180,.1,.3);this.Eb=new a.N;this.Eb.parent=this;this.Eb.setTransform(51.95, +17.1,.3122,.3122,0,-.0084,180,.1,.3);this.Fb=new a.N;this.Fb.parent=this;this.Fb.setTransform(52.95,15.1,.3122,.3122,0,-.0084,180,.1,.3);this.Gb=new a.N;this.Gb.parent=this;this.Gb.setTransform(53.95,13.1,.3122,.3122,0,-.0084,180,.1,.3);this.Hb=new a.N;this.Hb.parent=this;this.Hb.setTransform(54.95,11.1,.3122,.3122,0,-.0084,180,.1,.3);this.Jb=new a.N;this.Jb.parent=this;this.Jb.setTransform(55.95,9.1,.3122,.3122,0,-.0084,180,.1,.3);this.Lb=new a.N;this.Lb.parent=this;this.Lb.setTransform(31.95,76.9, +.3122,.3122,0,-179.9916,180,.1,.3);this.Mb=new a.N;this.Mb.parent=this;this.Mb.setTransform(32.95,78.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Pb=new a.N;this.Pb.parent=this;this.Pb.setTransform(33.95,80.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Nb=new a.N;this.Nb.parent=this;this.Nb.setTransform(34.95,82.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Qb=new a.N;this.Qb.parent=this;this.Qb.setTransform(35.95,84.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Ob=new a.N;this.Ob.parent=this;this.Ob.setTransform(36.95, +86.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Rb=new a.N;this.Rb.parent=this;this.Rb.setTransform(37.95,88.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Sb=new a.N;this.Sb.parent=this;this.Sb.setTransform(38.95,90.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Tb=new a.N;this.Tb.parent=this;this.Tb.setTransform(39.95,92.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Ub=new a.N;this.Ub.parent=this;this.Ub.setTransform(40.95,94.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Zb=new a.N;this.Zb.parent=this;this.Zb.setTransform(41.95, +96.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Wb=new a.N;this.Wb.parent=this;this.Wb.setTransform(42.95,98.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Xb=new a.N;this.Xb.parent=this;this.Xb.setTransform(43.95,100.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Yb=new a.N;this.Yb.parent=this;this.Yb.setTransform(44.95,102.9,.3122,.3122,0,-179.9916,180,.1,.3);this.$b=new a.N;this.$b.parent=this;this.$b.setTransform(45.95,104.9,.3122,.3122,0,-179.9916,180,.1,.3);this.ac=new a.N;this.ac.parent=this;this.ac.setTransform(46.95, +106.9,.3122,.3122,0,-179.9916,180,.1,.3);this.bc=new a.N;this.bc.parent=this;this.bc.setTransform(47.95,108.9,.3122,.3122,0,-179.9916,180,.1,.3);this.hc=new a.N;this.hc.parent=this;this.hc.setTransform(48.95,110.9,.3122,.3122,0,-179.9916,180,.1,.3);this.jc=new a.N;this.jc.parent=this;this.jc.setTransform(49.95,112.9,.3122,.3122,0,-179.9916,180,.1,.3);this.kc=new a.N;this.kc.parent=this;this.kc.setTransform(50.95,114.9,.3122,.3122,0,-179.9916,180,.1,.3);this.lc=new a.N;this.lc.parent=this;this.lc.setTransform(51.95, +116.9,.3122,.3122,0,-179.9916,180,.1,.3);this.nc=new a.N;this.nc.parent=this;this.nc.setTransform(52.95,118.9,.3122,.3122,0,-179.9916,180,.1,.3);this.tc=new a.N;this.tc.parent=this;this.tc.setTransform(53.95,120.9,.3122,.3122,0,-179.9916,180,.1,.3);this.uc=new a.N;this.uc.parent=this;this.uc.setTransform(54.95,122.9,.3122,.3122,0,-179.9916,180,.1,.3);this.xc=new a.N;this.xc.parent=this;this.xc.setTransform(55.95,124.9,.3122,.3122,0,-179.9916,180,.1,.3);this.zc=new a.N;this.zc.parent=this;this.zc.setTransform(205.05, +76.9,.3122,.3122,0,179.9916,0,.1,.3);this.Ac=new a.N;this.Ac.parent=this;this.Ac.setTransform(204.05,78.9,.3122,.3122,0,179.9916,0,.1,.3);this.Bc=new a.N;this.Bc.parent=this;this.Bc.setTransform(203.05,80.9,.3122,.3122,0,179.9916,0,.1,.3);this.yc=new a.N;this.yc.parent=this;this.yc.setTransform(202.05,82.9,.3122,.3122,0,179.9916,0,.1,.3);this.Dc=new a.N;this.Dc.parent=this;this.Dc.setTransform(201.05,84.9,.3122,.3122,0,179.9916,0,.1,.3);this.Ec=new a.N;this.Ec.parent=this;this.Ec.setTransform(200.05, +86.9,.3122,.3122,0,179.9916,0,.1,.3);this.Fc=new a.N;this.Fc.parent=this;this.Fc.setTransform(199.05,88.9,.3122,.3122,0,179.9916,0,.1,.3);this.Gc=new a.N;this.Gc.parent=this;this.Gc.setTransform(198.05,90.9,.3122,.3122,0,179.9916,0,.1,.3);this.Jc=new a.N;this.Jc.parent=this;this.Jc.setTransform(197.05,92.9,.3122,.3122,0,179.9916,0,.1,.3);this.Kc=new a.N;this.Kc.parent=this;this.Kc.setTransform(196.05,94.9,.3122,.3122,0,179.9916,0,.1,.3);this.Lc=new a.N;this.Lc.parent=this;this.Lc.setTransform(195.05, +96.9,.3122,.3122,0,179.9916,0,.1,.3);this.Ic=new a.N;this.Ic.parent=this;this.Ic.setTransform(194.05,98.9,.3122,.3122,0,179.9916,0,.1,.3);this.Nc=new a.N;this.Nc.parent=this;this.Nc.setTransform(193.05,100.9,.3122,.3122,0,179.9916,0,.1,.3);this.Oc=new a.N;this.Oc.parent=this;this.Oc.setTransform(192.05,102.9,.3122,.3122,0,179.9916,0,.1,.3);this.Rc=new a.N;this.Rc.parent=this;this.Rc.setTransform(191.05,104.9,.3122,.3122,0,179.9916,0,.1,.3);this.Uc=new a.N;this.Uc.parent=this;this.Uc.setTransform(190.05, +106.9,.3122,.3122,0,179.9916,0,.1,.3);this.Xc=new a.N;this.Xc.parent=this;this.Xc.setTransform(189.05,108.9,.3122,.3122,0,179.9916,0,.1,.3);this.jd=new a.N;this.jd.parent=this;this.jd.setTransform(188.05,110.9,.3122,.3122,0,179.9916,0,.1,.3);this.$c=new a.N;this.$c.parent=this;this.$c.setTransform(187.05,112.9,.3122,.3122,0,179.9916,0,.1,.3);this.kd=new a.N;this.kd.parent=this;this.kd.setTransform(186.05,114.9,.3122,.3122,0,179.9916,0,.1,.3);this.hd=new a.N;this.hd.parent=this;this.hd.setTransform(185.05, +116.9,.3122,.3122,0,179.9916,0,.1,.3);this.ld=new a.N;this.ld.parent=this;this.ld.setTransform(184.05,118.9,.3122,.3122,0,179.9916,0,.1,.3);this.nd=new a.N;this.nd.parent=this;this.nd.setTransform(183.05,120.9,.3122,.3122,0,179.9916,0,.1,.3);this.od=new a.N;this.od.parent=this;this.od.setTransform(182.05,122.9,.3122,.3122,0,179.9916,0,.1,.3);this.rd=new a.N;this.rd.parent=this;this.rd.setTransform(181.05,124.9,.3122,.3122,0,179.9916,0,.1,.3);this.vd=new a.N;this.vd.parent=this;this.vd.setTransform(26, +71.8,1,2.2174,0,0,0,0,.2);this.wd=new a.N;this.wd.parent=this;this.wd.setTransform(210.5,153.85,9.224,3.6875,0,0,0,.1,0);this.xd=new a.N;this.xd.parent=this;this.xd.setTransform(30.1,153.85,9.224,3.6875,0,0,0,.1,0);this.Gd=new a.N;this.Gd.parent=this;this.Gd.setTransform(118.75,11.65,14.7419,2.0031,0,0,0,.3,0);this.Hd=new a.N;this.Hd.parent=this;this.Hd.setTransform(212,71.8,1,2.2174,0,0,0,0,.2);this.Fd=new a.N;this.Fd.parent=this;this.Fd.setTransform(15.5,80.45,1,10.061,0,0,0,0,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Fd}, +{t:this.Hd},{t:this.Gd},{t:this.xd},{t:this.wd},{t:this.vd},{t:this.rd},{t:this.od},{t:this.nd},{t:this.ld},{t:this.hd},{t:this.kd},{t:this.$c},{t:this.jd},{t:this.Xc},{t:this.Uc},{t:this.Rc},{t:this.Oc},{t:this.Nc},{t:this.Ic},{t:this.Lc},{t:this.Kc},{t:this.Jc},{t:this.Gc},{t:this.Fc},{t:this.Ec},{t:this.Dc},{t:this.yc},{t:this.Bc},{t:this.Ac},{t:this.zc},{t:this.xc},{t:this.uc},{t:this.tc},{t:this.nc},{t:this.lc},{t:this.kc},{t:this.jc},{t:this.hc},{t:this.bc},{t:this.ac},{t:this.$b},{t:this.Yb}, +{t:this.Xb},{t:this.Wb},{t:this.Zb},{t:this.Ub},{t:this.Tb},{t:this.Sb},{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb},{t:this.Pb},{t:this.Mb},{t:this.Lb},{t:this.Jb},{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La}, +{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.Jd=new a.M9a;this.Jd.parent=this;this.Jd.setTransform(120.1,-27.85,1,1,0,0,0,0,-73.3);this.timeline.addTween(b.Tween.get(this.Jd).wait(1));this.Kd=new a.L6;this.Kd.parent=this;this.Kd.setTransform(118,59.5,1,1,0,0,0,0,-21.5);this.Id= +new a.Player;this.Id.parent=this;this.Id.setTransform(119,118.85);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Id},{t:this.Kd}]}).wait(1));this.Ld=new a.W5;this.Ld.parent=this;this.Ld.setTransform(118.5,68.5);this.timeline.addTween(b.Tween.get(this.Ld).wait(1));this.Md=new a.Bm;this.Md.parent=this;this.Md.setTransform(120.95,142.15,1.472,1,0,0,0,.1,0);this.Nd=new a.Ex;this.Nd.parent=this;this.Nd.setTransform(182,51.15,1,1,0,0,0,0,-14);this.Od=new a.Ex;this.Od.parent=this;this.Od.setTransform(52, +49.15,1,1,0,0,180,0,-14);this.Pd=new a.Ex;this.Pd.parent=this;this.Pd.setTransform(42,69.15,1,1,0,0,180,0,-14);this.Qd=new a.Ex;this.Qd.parent=this;this.Qd.setTransform(192,71.15,1,1,0,0,0,0,-14);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Qd},{t:this.Pd},{t:this.Od},{t:this.Nd},{t:this.Md}]}).wait(1));this.Rd=new a.rpa;this.Rd.parent=this;this.Rd.setTransform(119,68,1,1,0,0,0,0,-90);this.timeline.addTween(b.Tween.get(this.Rd).wait(1))}).prototype=k(a.wqa,new b.Rectangle(-44.4,-22,327.59999999999997, +205.4),null);(a.Aoa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(126.65,-1.1,20.6949,2.6849,0,0,0,.2,.1);this.g=new a.hC;this.g.parent=this;this.g.setTransform(280,70.85,1,1.3701,0,0,0,0,-68.5);this.i=new a.N;this.i.parent=this;this.i.setTransform(217.1,179.85,9.9871,3.6875,0,0,0,.2,.1);this.o= +new a.N;this.o.parent=this;this.o.setTransform(31.45,179.85,9.1978,3.6875,0,0,0,.1,.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(-40.5,67.6,1,11.8842,0,0,0,0,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.O=new a.jK;this.O.parent=this;this.O.setTransform(256,23,1,1,0,0,0,0,-9.5);this.$=new a.jK;this.$.parent=this;this.$.setTransform(235,17,1,1,0,0,180,0,-9.5);this.ka=new a.jK;this.ka.parent=this;this.ka.setTransform(206, +23,1,1,0,0,0,0,-9.5);this.ta=new a.jK;this.ta.parent=this;this.ta.setTransform(175,19,1,1,0,0,180,0,-9.5);this.va=new a.jK;this.va.parent=this;this.va.setTransform(-16,23,1,1,0,0,180,0,-9.5);this.wa=new a.jK;this.wa.parent=this;this.wa.setTransform(5,17,1,1,0,0,0,0,-9.5);this.ya=new a.jK;this.ya.parent=this;this.ya.setTransform(34,23,1,1,0,0,180,0,-9.5);this.Aa=new a.jK;this.Aa.parent=this;this.Aa.setTransform(65,19,1,1,0,0,0,0,-9.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Aa},{t:this.ya}, +{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O}]}).wait(1));this.Ba=new a.Player;this.Ba.parent=this;this.Ba.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.Ba).wait(1));this.Da=new a.Boa;this.Da.parent=this;this.Da.setTransform(120,67,1,1,0,0,0,0,-90);this.timeline.addTween(b.Tween.get(this.Da).wait(1));this.Ea=new a.w7a;this.Ea.parent=this;this.Ea.setTransform(120.25,16.5,1,1,0,0,0,0,-21.6);this.timeline.addTween(b.Tween.get(this.Ea).wait(1));this.Ga=new a.s7a; +this.Ga.parent=this;this.Ga.setTransform(82.35,126.15);this.Ha=new a.M6a;this.Ha.parent=this;this.Ha.setTransform(82.35,91.15);this.Ia=new a.a8a;this.Ia.parent=this;this.Ia.setTransform(82.25,56.15);this.Ja=new a.z7a;this.Ja.parent=this;this.Ja.setTransform(48.95,126.15);this.Ka=new a.b7a;this.Ka.parent=this;this.Ka.setTransform(48.95,91.15);this.La=new a.e7a;this.La.parent=this;this.La.setTransform(48.95,56.15);this.Ma=new a.J6a;this.Ma.parent=this;this.Ma.setTransform(15.65,91.15);this.Na=new a.S7a; +this.Na.parent=this;this.Na.setTransform(15.65,56.15);this.Oa=new a.Y7a;this.Oa.parent=this;this.Oa.setTransform(15.65,126.15);this.Qa=new a.I7a;this.Qa.parent=this;this.Qa.setTransform(-17.65,91.15);this.Ua=new a.V7a;this.Ua.parent=this;this.Ua.setTransform(-17.65,56.15);this.Va=new a.F7a;this.Va.parent=this;this.Va.setTransform(259.35,91.15);this.Wa=new a.Y6a;this.Wa.parent=this;this.Wa.setTransform(259.25,56.15);this.Xa=new a.p7a;this.Xa.parent=this;this.Xa.setTransform(225.95,126.15);this.Ya= +new a.Z6a;this.Ya.parent=this;this.Ya.setTransform(225.95,91.15);this.Za=new a.V6a;this.Za.parent=this;this.Za.setTransform(225.95,56.15);this.$a=new a.j7a;this.$a.parent=this;this.$a.setTransform(192.65,126.15);this.ab=new a.d8a;this.ab.parent=this;this.ab.setTransform(192.65,91.15);this.hb=new a.M7a;this.hb.parent=this;this.hb.setTransform(192.65,56.15);this.mb=new a.C7a;this.mb.parent=this;this.mb.setTransform(159.35,126.15);this.nb=new a.S6a;this.nb.parent=this;this.nb.setTransform(159.35,91.15); +this.rb=new a.m7a;this.rb.parent=this;this.rb.setTransform(159.35,56.15);this.tb=new a.r5;this.tb.parent=this;this.tb.setTransform(210,41,1,1,0,0,180);this.ub=new a.r5;this.ub.parent=this;this.ub.setTransform(30,41);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka}, +{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga}]}).wait(1));this.wb=new a.P7a;this.wb.parent=this;this.wb.setTransform(-40,-23);this.yb=new a.Bm;this.yb.parent=this;this.yb.setTransform(120.5,168.85,1.25,1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.yb},{t:this.wb}]}).wait(1))}).prototype=k(a.Aoa,new b.Rectangle(-48.5,-30,343.3,239.1),null);(a.toa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); +this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(126.65,23.9,20.6949,2.6849,0,0,0,.2,.1);this.g=new a.hC;this.g.parent=this;this.g.setTransform(230,70.85,1,1.3701,0,0,0,0,-68.5);this.i=new a.N;this.i.parent=this;this.i.setTransform(217.1,162.85,9.9871,3.6875,0,0,0,.2,.1);this.o=new a.N;this.o.parent=this;this.o.setTransform(31.45,162.85,9.1978,3.6875,0,0,0,.1,.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(9.5,67.6,1,11.8842,0,0,0,0,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.H}, +{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.O=new a.Player;this.O.parent=this;this.O.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.O).wait(1));this.$=new a.dZ;this.$.parent=this;this.$.setTransform(120,67,1,1,0,0,0,0,-90);this.timeline.addTween(b.Tween.get(this.$).wait(1));this.ka=new a.q6a;this.ka.parent=this;this.ka.setTransform(53.75,64.7,1,1,0,0,0,-.7,5.7);this.ta=new a.ooa;this.ta.parent=this;this.ta.setTransform(57.1,54.7,1,1,0,0,180,0,-13.9);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ta}, +{t:this.ka}]}).wait(1));this.va=new a.i6;this.va.parent=this;this.va.setTransform(213,64,1,1,0,0,0,0,-20.5);this.wa=new a.C6;this.wa.parent=this;this.wa.setTransform(155,66,1,1,0,0,0,0,-19);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.wa},{t:this.va}]}).wait(1));this.ya=new a.t6a;this.ya.parent=this;this.ya.setTransform(-40,-23);this.Aa=new a.Bm;this.Aa.parent=this;this.Aa.setTransform(118.5,155.85,1.25,1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Aa},{t:this.ya}]}).wait(1))}).prototype= +k(a.toa,new b.Rectangle(-42.8,-30,337.6,222.1),null);(a.noa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(138,13.65,21.7401,1.3029,0,0,0,.6,.1);this.g=new a.N;this.g.parent=this;this.g.setTransform(221.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.i=new a.N;this.i.parent=this;this.i.setTransform(212.45, +181.5,9.5212,3.6875,0,0,0,.1,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(34.05,181.5,8.8743,3.6875,0,0,0,.1,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(28.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.O=new a.N;this.O.parent=this;this.O.setTransform(281.85,66.9,1.1293,11.5265,0,0,0,.4,.1);this.$=new a.N;this.$.parent=this;this.$.setTransform(-39.6,69.5,.97,11.5076,0,0,0,.1,.3);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i}, +{t:this.g},{t:this.instance}]}).wait(1));this.ka=new a.Eha;this.ka.parent=this;this.ka.setTransform(120,137.5,1,1,0,0,0,0,-10);this.ka.alpha=0;this.timeline.addTween(b.Tween.get(this.ka).wait(1));this.ta=new a.Player;this.ta.parent=this;this.ta.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.ta).wait(1));this.va=new a.HJ;this.va.parent=this;this.va.setTransform(120,67);this.timeline.addTween(b.Tween.get(this.va).wait(1));this.wa=new a.YV;this.wa.parent=this;this.wa.setTransform(16.5, +73.5,1,1,0,0,0,-.5,-16.5);this.ya=new a.YV;this.ya.parent=this;this.ya.setTransform(227.5,73.5,1,1,0,0,180,-.5,-16.5);this.Aa=new a.xp;this.Aa.parent=this;this.Aa.setTransform(45,100,1,1,0,0,180,0,-33);this.Ba=new a.xp;this.Ba.parent=this;this.Ba.setTransform(199,100,1,1,0,0,0,0,-33);this.Da=new a.Us;this.Da.parent=this;this.Da.setTransform(208,30,1,1,0,0,180,-1,-42);this.Ea=new a.Us;this.Ea.parent=this;this.Ea.setTransform(35,30,1,1,0,0,0,-1,-42);this.Ga=new a.Us;this.Ga.parent=this;this.Ga.setTransform(18, +-30,1,1,0,0,0,-1,-42);this.Ha=new a.qp;this.Ha.parent=this;this.Ha.setTransform(96.35,22.5,1,1,0,0,0,-.1,-11);this.Ia=new a.Us;this.Ia.parent=this;this.Ia.setTransform(85,-30,1,1,0,0,0,-1,-42);this.Ja=new a.qp;this.Ja.parent=this;this.Ja.setTransform(144.35,22.5,1,1,0,0,0,-.1,-11);this.Ka=new a.cRa;this.Ka.parent=this;this.Ka.setTransform(83.7,52.35,1,1,0,0,0,0,-.6);this.La=new a.dRa;this.La.parent=this;this.La.setTransform(83.7,89.35,1,1,0,0,0,0,-.6);this.Ma=new a.eRa;this.Ma.parent=this;this.Ma.setTransform(83.7, +126.35,1,1,0,0,0,0,-.6);this.Na=new a.fRa;this.Na.parent=this;this.Na.setTransform(158.7,52.35,1,1,0,0,180,0,-.6);this.Oa=new a.gRa;this.Oa.parent=this;this.Oa.setTransform(158.7,89.35,1,1,0,0,180,0,-.6);this.Qa=new a.hRa;this.Qa.parent=this;this.Qa.setTransform(158.7,126.35,1,1,0,0,180,0,-.6);this.Ua=new a.STa;this.Ua.parent=this;this.Ua.setTransform(121.35,41.35,1,1,0,0,0,0,-.6);this.Va=new a.Us;this.Va.parent=this;this.Va.setTransform(226,-30,1,1,0,0,180,-1,-42);this.Wa=new a.Us;this.Wa.parent= +this;this.Wa.setTransform(159,-30,1,1,0,0,180,-1,-42);this.Xa=new a.afa;this.Xa.parent=this;this.Xa.setTransform(119.55,168.6,.8606,1.032);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa}]}).wait(1));this.Ya=new a.Tw;this.Ya.parent=this;this.Ya.setTransform(-12.25, +124.7,1,1,0,0,0,1,-1);this.Za=new a.Tw;this.Za.parent=this;this.Za.setTransform(-12.25,84.7,1,1,0,0,0,1,-1);this.$a=new a.Tw;this.$a.parent=this;this.$a.setTransform(-12.25,44.7,1,1,0,0,0,1,-1);this.ab=new a.Tw;this.ab.parent=this;this.ab.setTransform(253.75,124.7,1,1,0,0,0,1,-1);this.hb=new a.Tw;this.hb.parent=this;this.hb.setTransform(253.75,84.7,1,1,0,0,0,1,-1);this.mb=new a.Tw;this.mb.parent=this;this.mb.setTransform(253.75,44.7,1,1,0,0,0,1,-1);this.nb=new a.Jta;this.nb.parent=this;this.nb.setTransform(-40, +-23);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya}]}).wait(1))}).prototype=k(a.noa,new b.Rectangle(-56.2,-84,354.9,295.1),null);(a.moa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(138,-13.35,21.7401,1.3029, +0,0,0,.6,.1);this.g=new a.N;this.g.parent=this;this.g.setTransform(221.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.i=new a.N;this.i.parent=this;this.i.setTransform(212.45,181.5,9.5212,3.6875,0,0,0,.1,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(34.05,181.5,8.8743,3.6875,0,0,0,.1,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(28.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.O=new a.N;this.O.parent=this;this.O.setTransform(281.85,66.9,1.1293,11.5265,0,0,0,.4,.1);this.$=new a.N;this.$.parent= +this;this.$.setTransform(-39.6,69.5,.97,11.5076,0,0,0,.1,.3);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.ka=new a.N6;this.ka.parent=this;this.ka.setTransform(120.65,23.5,1,1,0,0,0,0,-10);this.ka.alpha=0;this.ta=new a.Dha;this.ta.parent=this;this.ta.setTransform(120,137.5,1,1,0,0,0,0,-10);this.ta.alpha=0;this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ta},{t:this.ka}]}).wait(1));this.va= +new a.Player;this.va.parent=this;this.va.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.va).wait(1));this.wa=new a.HJ;this.wa.parent=this;this.wa.setTransform(120,67);this.timeline.addTween(b.Tween.get(this.wa).wait(1));this.ya=new a.ZQa;this.ya.parent=this;this.ya.setTransform(48.65,101.15,1,1,0,0,180,0,-.6);this.Aa=new a.aRa;this.Aa.parent=this;this.Aa.setTransform(226.35,38.15,1,1,0,0,0,0,-.6);this.Ba=new a.bRa;this.Ba.parent=this;this.Ba.setTransform(227.35,83.15,1,1,0,0,0,0,-.6); +this.Da=new a.XQa;this.Da.parent=this;this.Da.setTransform(12,101.15,1,1,0,0,0,0,-.6);this.Ea=new a.YQa;this.Ea.parent=this;this.Ea.setTransform(32,80.85,1,1,0,0,0,0,-.6);this.Ga=new a.$Qa;this.Ga.parent=this;this.Ga.setTransform(190.7,52.35,1,1,0,0,0,0,-.6);this.Ha=new a.g5a;this.Ha.parent=this;this.Ha.setTransform(121,1,1,1,0,0,0,0,-18.4);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya}]}).wait(1));this.Ia=new a.sJ; +this.Ia.parent=this;this.Ia.setTransform(7.05,139.75,1,1,0,0,0,0,-28.5);this.Ja=new a.sJ;this.Ja.parent=this;this.Ja.setTransform(234.05,139.75,1,1,0,0,0,0,-28.5);this.Ka=new a.sJ;this.Ka.parent=this;this.Ka.setTransform(265.05,139.75,1,1,0,0,0,0,-28.5);this.La=new a.sJ;this.La.parent=this;this.La.setTransform(249.05,139.75,1,1,0,0,0,0,-28.5);this.Ma=new a.sJ;this.Ma.parent=this;this.Ma.setTransform(-7.95,139.75,1,1,0,0,0,0,-28.5);this.Na=new a.sJ;this.Na.parent=this;this.Na.setTransform(-23.95,139.75, +1,1,0,0,0,0,-28.5);this.Oa=new a.PS;this.Oa.parent=this;this.Oa.setTransform(210.05,-2.95,1,1,0,0,0,-.5,-39);this.Qa=new a.PS;this.Qa.parent=this;this.Qa.setTransform(30.05,-2.95,1,1,0,0,0,-.5,-39);this.Ua=new a.MK;this.Ua.parent=this;this.Ua.setTransform(225.7,96.2,1,1,0,0,0,2.1,.6);this.Va=new a.MK;this.Va.parent=this;this.Va.setTransform(189.7,66.2,1,1,0,0,0,2.1,.6);this.Wa=new a.ym;this.Wa.parent=this;this.Wa.setTransform(227.85,105.3,1,1,0,0,0,.5,0);this.Xa=new a.ym;this.Xa.parent=this;this.Xa.setTransform(227.85, +75.3,1,1,0,0,0,.5,0);this.Ya=new a.ym;this.Ya.parent=this;this.Ya.setTransform(190.85,75.3,1,1,0,0,0,.5,0);this.Za=new a.ym;this.Za.parent=this;this.Za.setTransform(190.85,45.3,1,1,0,0,0,.5,0);this.$a=new a.ym;this.$a.parent=this;this.$a.setTransform(30.85,75.3,1,1,0,0,0,.5,0);this.ab=new a.ym;this.ab.parent=this;this.ab.setTransform(48.85,95.3,1,1,0,0,0,.5,0);this.hb=new a.ym;this.hb.parent=this;this.hb.setTransform(11.85,95.3,1,1,0,0,0,.5,0);this.mb=new a.T4a;this.mb.parent=this;this.mb.setTransform(31.7, +102.9,1,1,0,0,0,-1,2.2);this.nb=new a.Zea;this.nb.parent=this;this.nb.setTransform(120.6,5.6,1.1404,.6986,0,0,0,.1,0);this.rb=new a.$ea;this.rb.parent=this;this.rb.setTransform(119.55,168.6,.8606,1.032);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia}]}).wait(1)); +this.tb=new a.qp;this.tb.parent=this;this.tb.setTransform(160.7,126.85,1,1,0,0,0,-.1,-11);this.ub=new a.qp;this.ub.parent=this;this.ub.setTransform(160.7,96.85,1,1,0,0,0,-.1,-11);this.wb=new a.qp;this.wb.parent=this;this.wb.setTransform(160.7,66.85,1,1,0,0,0,-.1,-11);this.yb=new a.qp;this.yb.parent=this;this.yb.setTransform(160.7,36.85,1,1,0,0,0,-.1,-11);this.Ab=new a.qp;this.Ab.parent=this;this.Ab.setTransform(77.7,126.85,1,1,0,0,0,-.1,-11);this.Cb=new a.qp;this.Cb.parent=this;this.Cb.setTransform(77.7, +96.85,1,1,0,0,0,-.1,-11);this.Db=new a.qp;this.Db.parent=this;this.Db.setTransform(77.7,66.85,1,1,0,0,0,-.1,-11);this.Eb=new a.qp;this.Eb.parent=this;this.Eb.setTransform(77.7,36.85,1,1,0,0,0,-.1,-11);this.Fb=new a.ym;this.Fb.parent=this;this.Fb.setTransform(217,122.15,1,1,0,0,0,.5,0);this.Gb=new a.ym;this.Gb.parent=this;this.Gb.setTransform(181,122.15,1,1,0,0,0,.5,0);this.Hb=new a.rW;this.Hb.parent=this;this.Hb.setTransform(199,128.15);this.Jb=new a.ym;this.Jb.parent=this;this.Jb.setTransform(8.9, +20.5,1,1,0,0,0,.5,0);this.Lb=new a.ym;this.Lb.parent=this;this.Lb.setTransform(52.9,20.5,1,1,0,0,0,.5,0);this.Mb=new a.rW;this.Mb.parent=this;this.Mb.setTransform(53,46.15);this.Pb=new a.rW;this.Pb.parent=this;this.Pb.setTransform(9.7,46.2);this.Nb=new a.Tw;this.Nb.parent=this;this.Nb.setTransform(256,40.85);this.Qb=new a.Tw;this.Qb.parent=this;this.Qb.setTransform(256,119.15);this.Ob=new a.Tw;this.Ob.parent=this;this.Ob.setTransform(-16,119.15);this.Rb=new a.Tw;this.Rb.parent=this;this.Rb.setTransform(-16, +38.85);this.Sb=new a.Tw;this.Sb.parent=this;this.Sb.setTransform(-16,80.15);this.Tb=new a.Tw;this.Tb.parent=this;this.Tb.setTransform(256,80.15);this.Ub=new a.n1;this.Ub.parent=this;this.Ub.setTransform(-40,-21.85);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ub},{t:this.Tb},{t:this.Sb},{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb},{t:this.Pb},{t:this.Mb},{t:this.Lb},{t:this.Jb},{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb}, +{t:this.ub},{t:this.tb}]}).wait(1))}).prototype=k(a.moa,new b.Rectangle(-56.2,-26.6,354.9,237.7),null);(a.loa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(138,-13.35,21.7401,1.3029,0,0,0,.6,.1);this.g=new a.N;this.g.parent=this;this.g.setTransform(221.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.i=new a.N; +this.i.parent=this;this.i.setTransform(212.45,181.5,9.5212,3.6875,0,0,0,.1,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(34.05,181.5,8.8743,3.6875,0,0,0,.1,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(28.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.O=new a.N;this.O.parent=this;this.O.setTransform(243.45,66.9,6.125,11.5265,0,0,0,.4,.1);this.$=new a.N;this.$.parent=this;this.$.setTransform(.85,68.35,5.9688,11.5076,0,0,0,.1,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$}, +{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.ka=new a.Bha;this.ka.parent=this;this.ka.setTransform(120.65,23.5,1,1,0,0,0,0,-10);this.ka.alpha=0;this.ta=new a.Cha;this.ta.parent=this;this.ta.setTransform(120,137.5,1,1,0,0,0,0,-10);this.ta.alpha=0;this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ta},{t:this.ka}]}).wait(1));this.va=new a.Player;this.va.parent=this;this.va.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.va).wait(1)); +this.wa=new a.aT;this.wa.parent=this;this.wa.setTransform(120,67);this.timeline.addTween(b.Tween.get(this.wa).wait(1));this.ya=new a.YV;this.ya.parent=this;this.ya.setTransform(175,6,1,1,0,0,180,0,-23);this.Aa=new a.YV;this.Aa.parent=this;this.Aa.setTransform(67,6,1,1,0,0,0,0,-23);this.Ba=new a.gB;this.Ba.parent=this;this.Ba.setTransform(179.65,138.5,1,1,0,0,0,0,-8);this.Da=new a.gB;this.Da.parent=this;this.Da.setTransform(57.35,138.4,1,1,0,0,0,0,-8);this.Ea=new a.f5a;this.Ea.parent=this;this.Ea.setTransform(121.65, +-1.5,1,1,0,0,0,0,-18.4);this.Ga=new a.kRa;this.Ga.parent=this;this.Ga.setTransform(178,83.15,1,1,0,0,0,0,-.6);this.Ha=new a.iRa;this.Ha.parent=this;this.Ha.setTransform(119.65,96.15,1,1,0,0,0,0,-.6);this.Ia=new a.jRa;this.Ia.parent=this;this.Ia.setTransform(68,52.85,1,1,0,0,0,0,-.6);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya}]}).wait(1));this.Ja=new a.MK;this.Ja.parent=this;this.Ja.setTransform(172.45, +97);this.Ka=new a.ym;this.Ka.parent=this;this.Ka.setTransform(178,106.65,1,1,0,0,0,.5,0);this.La=new a.ym;this.La.parent=this;this.La.setTransform(178,76.65,1,1,0,0,0,.5,0);this.Ma=new a.qp;this.Ma.parent=this;this.Ma.setTransform(99,39,1,1,0,0,0,-.1,-11);this.Na=new a.qp;this.Na.parent=this;this.Na.setTransform(99,79,1,1,0,0,0,-.1,-11);this.Oa=new a.qp;this.Oa.parent=this;this.Oa.setTransform(99,119,1,1,0,0,0,-.1,-11);this.Qa=new a.qp;this.Qa.parent=this;this.Qa.setTransform(141,39,1,1,0,0,0,-.1, +-11);this.Ua=new a.qp;this.Ua.parent=this;this.Ua.setTransform(141,79,1,1,0,0,0,-.1,-11);this.Va=new a.qp;this.Va.parent=this;this.Va.setTransform(141,119,1,1,0,0,0,-.1,-11);this.Wa=new a.Xea;this.Wa.parent=this;this.Wa.setTransform(121.95,5.6,.8336,.6986);this.Xa=new a.Yea;this.Xa.parent=this;this.Xa.setTransform(119.55,168.6,.8606,1.032);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka}, +{t:this.Ja}]}).wait(1));this.Ya=new a.LS;this.Ya.parent=this;this.Ya.setTransform(-40,-23);this.timeline.addTween(b.Tween.get(this.Ya).wait(1))}).prototype=k(a.loa,new b.Rectangle(-56.2,-26.6,354.9,237.7),null);(a.koa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(138,13.65,21.7401,1.3029,0,0,0, +.6,.1);this.g=new a.N;this.g.parent=this;this.g.setTransform(221.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.i=new a.N;this.i.parent=this;this.i.setTransform(212.45,181.5,9.5212,3.6875,0,0,0,.1,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(34.05,181.5,8.8743,3.6875,0,0,0,.1,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(28.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.O=new a.N;this.O.parent=this;this.O.setTransform(281.85,66.9,1.1293,11.5265,0,0,0,.4,.1);this.$=new a.N;this.$.parent=this; +this.$.setTransform(-39.6,69.5,.97,11.5076,0,0,0,.1,.3);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.ka=new a.iha;this.ka.parent=this;this.ka.setTransform(120,137.5,1,1,0,0,0,0,-10);this.ka.alpha=0;this.timeline.addTween(b.Tween.get(this.ka).wait(1));this.ta=new a.Player;this.ta.parent=this;this.ta.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.ta).wait(1));this.va=new a.SZ;this.va.parent= +this;this.va.setTransform(120,67);this.timeline.addTween(b.Tween.get(this.va).wait(1));this.wa=new a.HB;this.wa.parent=this;this.wa.setTransform(43.7,17.05);this.ya=new a.HB;this.ya.parent=this;this.ya.setTransform(43.7,53.35);this.Aa=new a.HB;this.Aa.parent=this;this.Aa.setTransform(43.7,89.65);this.Ba=new a.HB;this.Ba.parent=this;this.Ba.setTransform(43.7,125.95);this.Da=new a.HB;this.Da.parent=this;this.Da.setTransform(197.7,17.05);this.Ea=new a.HB;this.Ea.parent=this;this.Ea.setTransform(197.7, +53.35);this.Ga=new a.HB;this.Ga.parent=this;this.Ga.setTransform(197.7,89.65);this.Ha=new a.HB;this.Ha.parent=this;this.Ha.setTransform(197.7,125.95);this.Ia=new a.vm;this.Ia.parent=this;this.Ia.setTransform(17,122.3,1,1,0,0,0,-.1,-16);this.Ja=new a.vm;this.Ja.parent=this;this.Ja.setTransform(-17,122.3,1,1,0,0,0,-.1,-16);this.Ka=new a.vm;this.Ka.parent=this;this.Ka.setTransform(17,85.65,1,1,0,0,0,-.1,-16);this.La=new a.vm;this.La.parent=this;this.La.setTransform(-17,85.65,1,1,0,0,0,-.1,-16);this.Ma= +new a.vm;this.Ma.parent=this;this.Ma.setTransform(17,49,1,1,0,0,0,-.1,-16);this.Na=new a.vm;this.Na.parent=this;this.Na.setTransform(-17,49,1,1,0,0,0,-.1,-16);this.Oa=new a.vm;this.Oa.parent=this;this.Oa.setTransform(17,12.35,1,1,0,0,0,-.1,-16);this.Qa=new a.vm;this.Qa.parent=this;this.Qa.setTransform(-17,12.35,1,1,0,0,0,-.1,-16);this.Ua=new a.vm;this.Ua.parent=this;this.Ua.setTransform(257,122.3,1,1,0,0,0,-.1,-16);this.Va=new a.vm;this.Va.parent=this;this.Va.setTransform(223,122.3,1,1,0,0,0,-.1, +-16);this.Wa=new a.vm;this.Wa.parent=this;this.Wa.setTransform(257,85.65,1,1,0,0,0,-.1,-16);this.Xa=new a.vm;this.Xa.parent=this;this.Xa.setTransform(223,85.65,1,1,0,0,0,-.1,-16);this.Ya=new a.vm;this.Ya.parent=this;this.Ya.setTransform(257,49,1,1,0,0,0,-.1,-16);this.Za=new a.vm;this.Za.parent=this;this.Za.setTransform(223,49,1,1,0,0,0,-.1,-16);this.$a=new a.vm;this.$a.parent=this;this.$a.setTransform(257,12.35,1,1,0,0,0,-.1,-16);this.ab=new a.vm;this.ab.parent=this;this.ab.setTransform(223,12.35, +1,1,0,0,0,-.1,-16);this.hb=new a.Z5;this.hb.parent=this;this.hb.setTransform(86.35,15.5,1,1,0,0,0,-.1,-11);this.mb=new a.Z5;this.mb.parent=this;this.mb.setTransform(152.35,15.5,1,1,0,0,0,-.1,-11);this.nb=new a.YRa;this.nb.parent=this;this.nb.setTransform(79.7,52.35,1,1,0,0,0,0,-.6);this.rb=new a.ZRa;this.rb.parent=this;this.rb.setTransform(79.7,89.35,1,1,0,0,0,0,-.6);this.tb=new a.$Ra;this.tb.parent=this;this.tb.setTransform(79.7,126.35,1,1,0,0,0,0,-.6);this.ub=new a.aSa;this.ub.parent=this;this.ub.setTransform(157.7, +52.35,1,1,0,0,180,0,-.6);this.wb=new a.bSa;this.wb.parent=this;this.wb.setTransform(157.7,89.35,1,1,0,0,180,0,-.6);this.yb=new a.cSa;this.yb.parent=this;this.yb.setTransform(157.7,126.35,1,1,0,0,180,0,-.6);this.Ab=new a.HSa;this.Ab.parent=this;this.Ab.setTransform(119.3,36.35,1,1,0,0,0,0,-.6);this.Cb=new a.Lea;this.Cb.parent=this;this.Cb.setTransform(119.55,168.6,.8606,1.032);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub},{t:this.tb}, +{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa}]}).wait(1));this.Db=new a.G_a;this.Db.parent=this;this.Db.setTransform(-40,-23);this.timeline.addTween(b.Tween.get(this.Db).wait(1))}).prototype=k(a.koa,new b.Rectangle(-56.2, +-26.6,354.9,237.7),null);(a.joa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(138,-13.35,21.7401,1.3029,0,0,0,.6,.1);this.g=new a.N;this.g.parent=this;this.g.setTransform(221.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.i=new a.N;this.i.parent=this;this.i.setTransform(212.45,181.5,9.5212,3.6875,0,0,0, +.1,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(34.05,181.5,8.8743,3.6875,0,0,0,.1,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(28.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.O=new a.N;this.O.parent=this;this.O.setTransform(281.85,66.9,1.1293,11.5265,0,0,0,.4,.1);this.$=new a.N;this.$.parent=this;this.$.setTransform(-39.6,69.5,.97,11.5076,0,0,0,.1,.3);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1)); +this.ka=new a.kla;this.ka.parent=this;this.ka.setTransform(120.65,23.5,1,1,0,0,0,0,-10);this.ka.alpha=0;this.ta=new a.hha;this.ta.parent=this;this.ta.setTransform(120,137.5,1,1,0,0,0,0,-10);this.ta.alpha=0;this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ta},{t:this.ka}]}).wait(1));this.va=new a.Player;this.va.parent=this;this.va.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.va).wait(1));this.wa=new a.SZ;this.wa.parent=this;this.wa.setTransform(117,67);this.timeline.addTween(b.Tween.get(this.wa).wait(1)); +this.ya=new a.SRa;this.ya.parent=this;this.ya.setTransform(56,84.75,1,1,0,0,180);this.Aa=new a.URa;this.Aa.parent=this;this.Aa.setTransform(226.35,50.15,1,1,0,0,0,0,-.6);this.Ba=new a.VRa;this.Ba.parent=this;this.Ba.setTransform(258,93.85,1,1,0,0,0,0,-.6);this.Da=new a.QRa;this.Da.parent=this;this.Da.setTransform(11,84.15,1,1,0,0,0,0,-.6);this.Ea=new a.RRa;this.Ea.parent=this;this.Ea.setTransform(33.35,63.15,1,1,0,0,0,0,-.6);this.Ga=new a.TRa;this.Ga.parent=this;this.Ga.setTransform(-8,131.15,1,1, +0,0,0,0,-.6);this.Ha=new a.d5a;this.Ha.parent=this;this.Ha.setTransform(121,1,1,1,0,0,0,0,-18.4);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya}]}).wait(1));this.Ia=new a.HB;this.Ia.parent=this;this.Ia.setTransform(210.75,72.4);this.Ja=new a.HB;this.Ja.parent=this;this.Ja.setTransform(32.75,72.4);this.Ka=new a.vm;this.Ka.parent=this;this.Ka.setTransform(49.95,113.85,1,1,0,0,0,-.1,-12);this.La=new a.vm;this.La.parent= +this;this.La.setTransform(257.95,113.85,1,1,0,0,0,-.1,-12);this.Ma=new a.vm;this.Ma.parent=this;this.Ma.setTransform(190.3,114.05,1,1,0,0,0,-.1,-12);this.Na=new a.vm;this.Na.parent=this;this.Na.setTransform(223.95,113.85,1,1,0,0,0,-.1,-12);this.Oa=new a.vm;this.Oa.parent=this;this.Oa.setTransform(-17.7,114.05,1,1,0,0,0,-.1,-12);this.Qa=new a.vm;this.Qa.parent=this;this.Qa.setTransform(15.95,113.85,1,1,0,0,0,-.1,-12);this.Ua=new a.vm;this.Ua.parent=this;this.Ua.setTransform(257.95,73.85,1,1,0,0,0, +-.1,-12);this.Va=new a.vm;this.Va.parent=this;this.Va.setTransform(120.3,74.05,1,1,0,0,0,-.1,-12);this.Wa=new a.vm;this.Wa.parent=this;this.Wa.setTransform(153.95,73.85,1,1,0,0,0,-.1,-12);this.Xa=new a.vm;this.Xa.parent=this;this.Xa.setTransform(-17.7,74.05,1,1,0,0,0,-.1,-12);this.Ya=new a.vm;this.Ya.parent=this;this.Ya.setTransform(85.95,73.85,1,1,0,0,0,-.1,-12);this.Za=new a.vm;this.Za.parent=this;this.Za.setTransform(257.95,33.85,1,1,0,0,0,-.1,-12);this.$a=new a.vm;this.$a.parent=this;this.$a.setTransform(190.3, +34.05,1,1,0,0,0,-.1,-12);this.ab=new a.vm;this.ab.parent=this;this.ab.setTransform(223.95,33.85,1,1,0,0,0,-.1,-12);this.hb=new a.vm;this.hb.parent=this;this.hb.setTransform(49.95,33.85,1,1,0,0,0,-.1,-12);this.mb=new a.vm;this.mb.parent=this;this.mb.setTransform(-17.7,34.05,1,1,0,0,0,-.1,-12);this.nb=new a.vm;this.nb.parent=this;this.nb.setTransform(15.95,33.85,1,1,0,0,0,-.1,-12);this.rb=new a.OS;this.rb.parent=this;this.rb.setTransform(210.05,-8.95,1,1,0,0,0,-.5,-39);this.tb=new a.OS;this.tb.parent= +this;this.tb.setTransform(30.05,-8.95,1,1,0,0,0,-.5,-39);this.ub=new a.MK;this.ub.parent=this;this.ub.setTransform(223.7,108.2,1,1,0,0,0,2.1,.6);this.wb=new a.Jea;this.wb.parent=this;this.wb.setTransform(120.6,5.6,1.1404,.6986,0,0,0,.1,0);this.yb=new a.Kea;this.yb.parent=this;this.yb.setTransform(119.55,168.6,.8606,1.032);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.yb},{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za}, +{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia}]}).wait(1));this.Ab=new a.cca;this.Ab.parent=this;this.Ab.setTransform(-43,-23);this.timeline.addTween(b.Tween.get(this.Ab).wait(1))}).prototype=k(a.joa,new b.Rectangle(-56.2,-27.9,354.9,239),null);(a.ioa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); +this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(138,-13.35,21.7401,1.3029,0,0,0,.6,.1);this.g=new a.N;this.g.parent=this;this.g.setTransform(221.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.i=new a.N;this.i.parent=this;this.i.setTransform(212.45,181.5,9.5212,3.6875,0,0,0,.1,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(34.05,181.5,8.8743,3.6875,0,0,0,.1,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(28.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.O=new a.N;this.O.parent= +this;this.O.setTransform(243.45,66.9,6.125,11.5265,0,0,0,.4,.1);this.$=new a.N;this.$.parent=this;this.$.setTransform(.85,68.35,5.9688,11.5076,0,0,0,.1,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.ka=new a.fha;this.ka.parent=this;this.ka.setTransform(120.65,23.5,1,1,0,0,0,0,-10);this.ka.alpha=0;this.ta=new a.gha;this.ta.parent=this;this.ta.setTransform(120,137.5,1,1,0,0,0,0,-10);this.ta.alpha= +0;this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ta},{t:this.ka}]}).wait(1));this.va=new a.Player;this.va.parent=this;this.va.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.va).wait(1));this.wa=new a.B5;this.wa.parent=this;this.wa.setTransform(120,67);this.timeline.addTween(b.Tween.get(this.wa).wait(1));this.ya=new a.Gya;this.ya.parent=this;this.ya.setTransform(175.35,130.4,1,1,0,0,0,-.1,-12);this.Aa=new a.Cya;this.Aa.parent=this;this.Aa.setTransform(175.35,37.4,1,1,0,0, +0,-.1,-12);this.Ba=new a.Aya;this.Ba.parent=this;this.Ba.setTransform(65.35,130.4,1,1,0,0,0,-.1,-12);this.Da=new a.yya;this.Da.parent=this;this.Da.setTransform(65.35,83.9,1,1,0,0,0,-.1,-12);this.Ea=new a.wya;this.Ea.parent=this;this.Ea.setTransform(65.35,37.4,1,1,0,0,0,-.1,-12);this.Ga=new a.c5a;this.Ga.parent=this;this.Ga.setTransform(121.65,-1.5,1,1,0,0,0,0,-18.4);this.Ha=new a.dSa;this.Ha.parent=this;this.Ha.setTransform(121,102.5,1,1,0,0,0,0,-.6);this.Ia=new a.eSa;this.Ia.parent=this;this.Ia.setTransform(93, +64.15,1,1,0,0,0,0,-.6);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya}]}).wait(1));this.Ja=new a.HB;this.Ja.parent=this;this.Ja.setTransform(90.05,84.7,1,1,0,0,0,0,-4);this.Ka=new a.HB;this.Ka.parent=this;this.Ka.setTransform(150.05,84.7,1,1,0,0,0,0,-4);this.La=new a.fSa;this.La.parent=this;this.La.setTransform(149,43.15,1,1,0,0,0,0,-.6);this.Ma=new a.Eya;this.Ma.parent=this;this.Ma.setTransform(175.35, +83.9,1,1,0,0,0,-.1,-12);this.Na=new a.Hea;this.Na.parent=this;this.Na.setTransform(121.95,5.6,.8336,.6986);this.Oa=new a.Iea;this.Oa.parent=this;this.Oa.setTransform(119.55,168.6,.8606,1.032);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja}]}).wait(1));this.Qa=new a.cca;this.Qa.parent=this;this.Qa.setTransform(-40,-23);this.timeline.addTween(b.Tween.get(this.Qa).wait(1))}).prototype=k(a.ioa,new b.Rectangle(-56.2,-26.6,354.9, +237.7),null);(a.hoa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(138,13.65,21.7401,1.3029,0,0,0,.6,.1);this.g=new a.N;this.g.parent=this;this.g.setTransform(221.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.i=new a.N;this.i.parent=this;this.i.setTransform(212.45,181.5,9.5212,3.6875,0,0,0,.1,0);this.o= +new a.N;this.o.parent=this;this.o.setTransform(34.05,181.5,8.8743,3.6875,0,0,0,.1,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(28.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.O=new a.N;this.O.parent=this;this.O.setTransform(281.85,66.9,1.1293,11.5265,0,0,0,.4,.1);this.$=new a.N;this.$.parent=this;this.$.setTransform(-39.6,69.5,.97,11.5076,0,0,0,.1,.3);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1)); +this.ka=new a.Iga;this.ka.parent=this;this.ka.setTransform(120,137.5,1,1,0,0,0,0,-10);this.ka.alpha=0;this.timeline.addTween(b.Tween.get(this.ka).wait(1));this.ta=new a.Player;this.ta.parent=this;this.ta.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.ta).wait(1));this.va=new a.HJ;this.va.parent=this;this.va.setTransform(120,67);this.timeline.addTween(b.Tween.get(this.va).wait(1));this.wa=new a.tu;this.wa.parent=this;this.wa.setTransform(94.35,25.5,1,1,0,0,0,-.1,-11);this.ya=new a.tu; +this.ya.parent=this;this.ya.setTransform(139.35,25.5,1,1,0,0,0,-.1,-11);this.Aa=new a.Ut;this.Aa.parent=this;this.Aa.setTransform(1,32.6,1,1,0,0,180,0,-50.5);this.Ba=new a.Ut;this.Ba.parent=this;this.Ba.setTransform(237,32.6,1,1,0,0,0,0,-50.5);this.Da=new a.Ut;this.Da.parent=this;this.Da.setTransform(19,-3.2,1,1,0,0,180,0,-50.5);this.Ea=new a.Ut;this.Ea.parent=this;this.Ea.setTransform(221,-3.2,1,1,0,0,0,0,-50.5);this.Ga=new a.tu;this.Ga.parent=this;this.Ga.setTransform(94.35,25.5,1,1,0,0,0,-.1,-11); +this.Ha=new a.tu;this.Ha.parent=this;this.Ha.setTransform(139.35,25.5,1,1,0,0,0,-.1,-11);this.Ia=new a.BRa;this.Ia.parent=this;this.Ia.setTransform(78.7,52.35,1,1,0,0,0,0,-.6);this.Ja=new a.CRa;this.Ja.parent=this;this.Ja.setTransform(78.7,89.35,1,1,0,0,0,0,-.6);this.Ka=new a.DRa;this.Ka.parent=this;this.Ka.setTransform(78.7,126.35,1,1,0,0,0,0,-.6);this.La=new a.ERa;this.La.parent=this;this.La.setTransform(161.7,52.35,1,1,0,0,180,0,-.6);this.Ma=new a.FRa;this.Ma.parent=this;this.Ma.setTransform(161.7, +89.35,1,1,0,0,180,0,-.6);this.Na=new a.GRa;this.Na.parent=this;this.Na.setTransform(161.7,126.35,1,1,0,0,180,0,-.6);this.Oa=new a.VQa;this.Oa.parent=this;this.Oa.setTransform(121.75,26.35,1,1,0,0,0,0,-.6);this.Qa=new a.Dea;this.Qa.parent=this;this.Qa.setTransform(119.55,168.6,.8606,1.032);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa}, +{t:this.ya},{t:this.wa}]}).wait(1));this.Ua=new a.goa;this.Ua.parent=this;this.Ua.setTransform(117,69.5,1,1,0,0,0,0,-93.5);this.timeline.addTween(b.Tween.get(this.Ua).wait(1))}).prototype=k(a.hoa,new b.Rectangle(-56.2,-50.7,354.9,261.8),null);(a.foa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(138, +-13.35,21.7401,1.3029,0,0,0,.6,.1);this.g=new a.N;this.g.parent=this;this.g.setTransform(221.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.i=new a.N;this.i.parent=this;this.i.setTransform(212.45,181.5,9.5212,3.6875,0,0,0,.1,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(34.05,181.5,8.8743,3.6875,0,0,0,.1,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(28.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.O=new a.N;this.O.parent=this;this.O.setTransform(281.85,66.9,1.1293,11.5265,0,0,0,.4,.1);this.$= +new a.N;this.$.parent=this;this.$.setTransform(-39.6,69.5,.97,11.5076,0,0,0,.1,.3);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.ka=new a.nfa;this.ka.parent=this;this.ka.setTransform(120.65,23.5,1,1,0,0,0,0,-10);this.ka.alpha=0;this.ta=new a.Hga;this.ta.parent=this;this.ta.setTransform(120,137.5,1,1,0,0,0,0,-10);this.ta.alpha=0;this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ta},{t:this.ka}]}).wait(1)); +this.va=new a.Player;this.va.parent=this;this.va.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.va).wait(1));this.wa=new a.HJ;this.wa.parent=this;this.wa.setTransform(120,67);this.timeline.addTween(b.Tween.get(this.wa).wait(1));this.ya=new a.xRa;this.ya.parent=this;this.ya.setTransform(41.65,94.15,1,1,0,0,180,0,-.6);this.Aa=new a.zRa;this.Aa.parent=this;this.Aa.setTransform(226.35,38.15,1,1,0,0,0,0,-.6);this.Ba=new a.ARa;this.Ba.parent=this;this.Ba.setTransform(227.35,83.15,1,1,0,0, +0,0,-.6);this.Da=new a.vRa;this.Da.parent=this;this.Da.setTransform(5,94.75);this.Ea=new a.wRa;this.Ea.parent=this;this.Ea.setTransform(24,73.85,1,1,0,0,0,0,-.6);this.Ga=new a.yRa;this.Ga.parent=this;this.Ga.setTransform(190.7,52.35,1,1,0,0,0,0,-.6);this.Ha=new a.b5a;this.Ha.parent=this;this.Ha.setTransform(121,1,1,1,0,0,0,0,-18.4);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya}]}).wait(1));this.Ia=new a.tu;this.Ia.parent= +this;this.Ia.setTransform(157.7,126.85,1,1,0,0,0,-.1,-11);this.Ja=new a.tu;this.Ja.parent=this;this.Ja.setTransform(157.7,96.85,1,1,0,0,0,-.1,-11);this.Ka=new a.tu;this.Ka.parent=this;this.Ka.setTransform(157.7,66.85,1,1,0,0,0,-.1,-11);this.La=new a.tu;this.La.parent=this;this.La.setTransform(157.7,36.85,1,1,0,0,0,-.1,-11);this.Ma=new a.tu;this.Ma.parent=this;this.Ma.setTransform(74.7,126.85,1,1,0,0,0,-.1,-11);this.Na=new a.tu;this.Na.parent=this;this.Na.setTransform(74.7,96.85,1,1,0,0,0,-.1,-11); +this.Oa=new a.tu;this.Oa.parent=this;this.Oa.setTransform(74.7,66.85,1,1,0,0,0,-.1,-11);this.Qa=new a.tu;this.Qa.parent=this;this.Qa.setTransform(74.7,36.85,1,1,0,0,0,-.1,-11);this.Ua=new a.ox;this.Ua.parent=this;this.Ua.setTransform(7.05,139.75,1,1,0,0,0,0,-28.5);this.Va=new a.ox;this.Va.parent=this;this.Va.setTransform(234.05,139.75,1,1,0,0,0,0,-28.5);this.Wa=new a.ox;this.Wa.parent=this;this.Wa.setTransform(265.05,139.75,1,1,0,0,0,0,-28.5);this.Xa=new a.ox;this.Xa.parent=this;this.Xa.setTransform(249.05, +139.75,1,1,0,0,0,0,-28.5);this.Ya=new a.ox;this.Ya.parent=this;this.Ya.setTransform(-7.95,139.75,1,1,0,0,0,0,-28.5);this.Za=new a.ox;this.Za.parent=this;this.Za.setTransform(-23.95,139.75,1,1,0,0,0,0,-28.5);this.$a=new a.NS;this.$a.parent=this;this.$a.setTransform(210.05,-2.95,1,1,0,0,0,-.5,-39);this.ab=new a.NS;this.ab.parent=this;this.ab.setTransform(30.05,-2.95,1,1,0,0,0,-.5,-39);this.hb=new a.Bea;this.hb.parent=this;this.hb.setTransform(120.6,5.6,1.1404,.6986,0,0,0,.1,0);this.mb=new a.Cea;this.mb.parent= +this;this.mb.setTransform(119.55,168.6,.8606,1.032);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia}]}).wait(1));this.nb=new a.ZS;this.nb.parent=this;this.nb.setTransform(248,113.15,1,1,0,0,0,0,-11.5);this.rb=new a.ZS;this.rb.parent=this;this.rb.setTransform(44.35,129.15,1,1,0,0,0,0, +-11.5);this.tb=new a.DZ;this.tb.parent=this;this.tb.setTransform(39,37.15,1,1,0,0,0,0,-18);this.ub=new a.ZS;this.ub.parent=this;this.ub.setTransform(-6.65,36.15,1,1,0,0,0,0,-11.5);this.wb=new a.DZ;this.wb.parent=this;this.wb.setTransform(199.65,123.5,1,1,0,0,0,0,-18);this.yb=new a.K3;this.yb.parent=this;this.yb.setTransform(252,49.15,1,1,0,0,0,0,-17.5);this.Ab=new a.doa;this.Ab.parent=this;this.Ab.setTransform(130,69,1,1,0,0,0,0,-92);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ab},{t:this.yb}, +{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb}]}).wait(1))}).prototype=k(a.foa,new b.Rectangle(-56.2,-26.6,356.2,237.7),null);(a.eoa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(138,-13.35,21.7401,1.3029,0,0,0,.6,.1);this.g=new a.N;this.g.parent=this;this.g.setTransform(221.8,1.1, +10.1391,2.8846,0,0,0,.4,.1);this.i=new a.N;this.i.parent=this;this.i.setTransform(212.45,181.5,9.5212,3.6875,0,0,0,.1,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(34.05,181.5,8.8743,3.6875,0,0,0,.1,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(28.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.O=new a.N;this.O.parent=this;this.O.setTransform(243.45,66.9,6.125,11.5265,0,0,0,.4,.1);this.$=new a.N;this.$.parent=this;this.$.setTransform(.85,68.35,5.9688,11.5076,0,0,0,.1,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$}, +{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.ka=new a.Fga;this.ka.parent=this;this.ka.setTransform(120.65,23.5,1,1,0,0,0,0,-10);this.ka.alpha=0;this.ta=new a.Gga;this.ta.parent=this;this.ta.setTransform(120,137.5,1,1,0,0,0,0,-10);this.ta.alpha=0;this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ta},{t:this.ka}]}).wait(1));this.va=new a.Player;this.va.parent=this;this.va.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.va).wait(1)); +this.wa=new a.fM;this.wa.parent=this;this.wa.setTransform(120,67);this.timeline.addTween(b.Tween.get(this.wa).wait(1));this.ya=new a.K3;this.ya.parent=this;this.ya.setTransform(66.55,29,1,1,0,0,0,0,-17.5);this.Aa=new a.ZS;this.Aa.parent=this;this.Aa.setTransform(169.65,32.15,1,1,0,0,0,0,-11.5);this.Ba=new a.ZS;this.Ba.parent=this;this.Ba.setTransform(71.35,117.1,1,1,0,0,0,0,-11.5);this.Da=new a.DZ;this.Da.parent=this;this.Da.setTransform(166.65,136.3,1,1,0,0,0,0,-18);this.Ea=new a.a5a;this.Ea.parent= +this;this.Ea.setTransform(121.65,-1.5,1,1,0,0,0,0,-18.4);this.Ga=new a.NRa;this.Ga.parent=this;this.Ga.setTransform(175,90.75,1,1,0,0,0,0,-.6);this.Ha=new a.LRa;this.Ha.parent=this;this.Ha.setTransform(121,99.15,1,1,0,0,0,0,-.6);this.Ia=new a.MRa;this.Ia.parent=this;this.Ia.setTransform(70,64.15,1,1,0,0,0,0,-.6);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya}]}).wait(1));this.Ja=new a.ox;this.Ja.parent= +this;this.Ja.setTransform(183,-7.5,1,1,0,0,0,0,-28.5);this.Ka=new a.ox;this.Ka.parent=this;this.Ka.setTransform(169,-7.5,1,1,0,0,0,0,-28.5);this.La=new a.ox;this.La.parent=this;this.La.setTransform(155,-7.5,1,1,0,0,0,0,-28.5);this.Ma=new a.ox;this.Ma.parent=this;this.Ma.setTransform(83,-7.5,1,1,0,0,0,0,-28.5);this.Na=new a.ox;this.Na.parent=this;this.Na.setTransform(69,-7.5,1,1,0,0,0,0,-28.5);this.Oa=new a.ox;this.Oa.parent=this;this.Oa.setTransform(55,-7.5,1,1,0,0,0,0,-28.5);this.Qa=new a.tu;this.Qa.parent= +this;this.Qa.setTransform(95,39,1,1,0,0,0,-.1,-11);this.Ua=new a.tu;this.Ua.parent=this;this.Ua.setTransform(95,79,1,1,0,0,0,-.1,-11);this.Va=new a.tu;this.Va.parent=this;this.Va.setTransform(95,119,1,1,0,0,0,-.1,-11);this.Wa=new a.tu;this.Wa.parent=this;this.Wa.setTransform(137,39,1,1,0,0,0,-.1,-11);this.Xa=new a.tu;this.Xa.parent=this;this.Xa.setTransform(137,79,1,1,0,0,0,-.1,-11);this.Ya=new a.tu;this.Ya.parent=this;this.Ya.setTransform(137,119,1,1,0,0,0,-.1,-11);this.Za=new a.zea;this.Za.parent= +this;this.Za.setTransform(121.95,5.6,.8336,.6986);this.$a=new a.Aea;this.$a.parent=this;this.$a.setTransform(119.55,168.6,.8606,1.032);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja}]}).wait(1));this.ab=new a.mfa;this.ab.parent=this;this.ab.setTransform(120,67,1,1,0,0,0,0,-90);this.timeline.addTween(b.Tween.get(this.ab).wait(1))}).prototype= +k(a.eoa,new b.Rectangle(-56.2,-26.6,354.9,237.7),null);(a.coa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(138,13.65,21.7401,1.3029,0,0,0,.6,.1);this.g=new a.N;this.g.parent=this;this.g.setTransform(221.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.i=new a.N;this.i.parent=this;this.i.setTransform(212.45, +181.5,9.5212,3.6875,0,0,0,.1,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(34.05,181.5,8.8743,3.6875,0,0,0,.1,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(28.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.O=new a.N;this.O.parent=this;this.O.setTransform(281.85,66.9,1.1293,11.5265,0,0,0,.4,.1);this.$=new a.N;this.$.parent=this;this.$.setTransform(-39.6,69.5,.97,11.5076,0,0,0,.1,.3);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i}, +{t:this.g},{t:this.instance}]}).wait(1));this.ka=new a.nga;this.ka.parent=this;this.ka.setTransform(120,137.5,1,1,0,0,0,0,-10);this.ka.alpha=0;this.timeline.addTween(b.Tween.get(this.ka).wait(1));this.ta=new a.Player;this.ta.parent=this;this.ta.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.ta).wait(1));this.va=new a.o1;this.va.parent=this;this.va.setTransform(120,67);this.timeline.addTween(b.Tween.get(this.va).wait(1));this.wa=new a.l1;this.wa.parent=this;this.wa.setTransform(90.35, +15.5,1,1,0,0,0,-.1,-11);this.ya=new a.Kx;this.ya.parent=this;this.ya.setTransform(259.35,71.5,1,1,0,0,0,-.1,-11);this.Aa=new a.Kx;this.Aa.parent=this;this.Aa.setTransform(259.35,21.5,1,1,0,0,0,-.1,-11);this.Ba=new a.Kx;this.Ba.parent=this;this.Ba.setTransform(-18.65,71.5,1,1,0,0,0,-.1,-11);this.Da=new a.Kx;this.Da.parent=this;this.Da.setTransform(-18.65,21.5,1,1,0,0,0,-.1,-11);this.Ea=new a.l1;this.Ea.parent=this;this.Ea.setTransform(149.35,15.5,1,1,0,0,0,-.1,-11);this.Ga=new a.ija;this.Ga.parent= +this;this.Ga.setTransform(78.7,52.35,1,1,0,0,0,0,-.6);this.Ha=new a.jja;this.Ha.parent=this;this.Ha.setTransform(78.7,89.35,1,1,0,0,0,0,-.6);this.Ia=new a.kja;this.Ia.parent=this;this.Ia.setTransform(78.7,126.35,1,1,0,0,0,0,-.6);this.Ja=new a.ija;this.Ja.parent=this;this.Ja.setTransform(161.7,52.35,1,1,0,0,180,0,-.6);this.Ka=new a.jja;this.Ka.parent=this;this.Ka.setTransform(161.7,89.35,1,1,0,0,180,0,-.6);this.La=new a.kja;this.La.parent=this;this.La.setTransform(161.7,126.35,1,1,0,0,180,0,-.6);this.Ma= +new a.QQa;this.Ma.parent=this;this.Ma.setTransform(122.35,31.35,1,1,0,0,0,0,-.6);this.Na=new a.tea;this.Na.parent=this;this.Na.setTransform(119.55,168.6,.8606,1.032);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa}]}).wait(1));this.Oa=new a.rC;this.Oa.parent=this;this.Oa.setTransform(-20,125);this.Qa=new a.rC;this.Qa.parent=this;this.Qa.setTransform(257.65, +122.5);this.Ua=new a.yS;this.Ua.parent=this;this.Ua.setTransform(-13.35,146.15);this.Va=new a.yS;this.Va.parent=this;this.Va.setTransform(250.65,146.15);this.Wa=new a.fda;this.Wa.parent=this;this.Wa.setTransform(32,67);this.Xa=new a.eda;this.Xa.parent=this;this.Xa.setTransform(32,128);this.Ya=new a.dda;this.Ya.parent=this;this.Ya.setTransform(210,67);this.Za=new a.bda;this.Za.parent=this;this.Za.setTransform(210,128);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Za},{t:this.Ya},{t:this.Xa}, +{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa}]}).wait(1));this.$a=new a.Dxa;this.$a.parent=this;this.$a.setTransform(83,-19.5);this.ab=new a.$ba;this.ab.parent=this;this.ab.setTransform(-40,-23);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ab},{t:this.$a}]}).wait(1))}).prototype=k(a.coa,new b.Rectangle(-56.2,-26.6,354.9,237.7),null);(a.boa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); +this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(138,-13.35,21.7401,1.3029,0,0,0,.6,.1);this.g=new a.N;this.g.parent=this;this.g.setTransform(221.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.i=new a.N;this.i.parent=this;this.i.setTransform(212.45,181.5,9.5212,3.6875,0,0,0,.1,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(34.05,181.5,8.8743,3.6875,0,0,0,.1,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(28.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.O=new a.N;this.O.parent= +this;this.O.setTransform(281.85,66.9,1.1293,11.5265,0,0,0,.4,.1);this.$=new a.N;this.$.parent=this;this.$.setTransform(-39.6,69.5,.97,11.5076,0,0,0,.1,.3);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.ka=new a.N6;this.ka.parent=this;this.ka.setTransform(120.65,23.5,1,1,0,0,0,0,-10);this.ka.alpha=0;this.ta=new a.Sca;this.ta.parent=this;this.ta.setTransform(120,137.5,1,1,0,0,0,0,-10);this.ta.alpha= +0;this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ta},{t:this.ka}]}).wait(1));this.va=new a.Player;this.va.parent=this;this.va.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.va).wait(1));this.wa=new a.o1;this.wa.parent=this;this.wa.setTransform(120,67);this.timeline.addTween(b.Tween.get(this.wa).wait(1));this.ya=new a.CTa;this.ya.parent=this;this.ya.setTransform(48,101.4,1,1,0,0,180,0,-.6);this.Aa=new a.ETa;this.Aa.parent=this;this.Aa.setTransform(234,48.4,1,1,0,0,0,0,-.6); +this.Ba=new a.FTa;this.Ba.parent=this;this.Ba.setTransform(206,112.4,1,1,0,0,0,0,-.6);this.Da=new a.ATa;this.Da.parent=this;this.Da.setTransform(12,101.4,1,1,0,0,0,0,-.6);this.Ea=new a.BTa;this.Ea.parent=this;this.Ea.setTransform(31,78.4,1,1,0,0,0,0,-.6);this.Ga=new a.DTa;this.Ga.parent=this;this.Ga.setTransform(190,48.4,1,1,0,0,0,0,-.6);this.Ha=new a.Z4a;this.Ha.parent=this;this.Ha.setTransform(121,1,1,1,0,0,0,0,-18.4);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ha},{t:this.Ga},{t:this.Ea}, +{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya}]}).wait(1));this.Ia=new a.rC;this.Ia.parent=this;this.Ia.setTransform(222,44,1,1,0,0,0,0,-5);this.Ja=new a.rC;this.Ja.parent=this;this.Ja.setTransform(178,44,1,1,0,0,0,0,-5);this.Ka=new a.yS;this.Ka.parent=this;this.Ka.setTransform(-11.35,74.15,1,1,0,0,0,0,-6.3);this.La=new a.rC;this.La.parent=this;this.La.setTransform(48,25.5,1,1,0,0,0,0,-5);this.Ma=new a.rC;this.Ma.parent=this;this.Ma.setTransform(18,25.5,1,1,0,0,0,0,-5);this.Na=new a.rC;this.Na.parent= +this;this.Na.setTransform(28,25.5,1,1,0,0,0,0,-5);this.Oa=new a.rC;this.Oa.parent=this;this.Oa.setTransform(38,25.5,1,1,0,0,0,0,-5);this.Qa=new a.rC;this.Qa.parent=this;this.Qa.setTransform(203,44,1,1,0,0,0,0,-5);this.Ua=new a.rC;this.Ua.parent=this;this.Ua.setTransform(246,44,1,1,0,0,0,0,-5);this.Va=new a.yS;this.Va.parent=this;this.Va.setTransform(-11.35,53.5,1,1,0,0,0,0,-6.3);this.Wa=new a.yS;this.Wa.parent=this;this.Wa.setTransform(206,112.7,1,1,0,0,0,0,-6.3);this.Xa=new a.lx;this.Xa.parent=this; +this.Xa.setTransform(7.05,139.75,1,1,0,0,0,0,-28.5);this.Ya=new a.lx;this.Ya.parent=this;this.Ya.setTransform(234.05,139.75,1,1,0,0,0,0,-28.5);this.Za=new a.lx;this.Za.parent=this;this.Za.setTransform(265.05,139.75,1,1,0,0,0,0,-28.5);this.$a=new a.lx;this.$a.parent=this;this.$a.setTransform(249.05,139.75,1,1,0,0,0,0,-28.5);this.ab=new a.lx;this.ab.parent=this;this.ab.setTransform(-7.95,139.75,1,1,0,0,0,0,-28.5);this.hb=new a.lx;this.hb.parent=this;this.hb.setTransform(-23.95,139.75,1,1,0,0,0,0,-28.5); +this.mb=new a.MS;this.mb.parent=this;this.mb.setTransform(210.05,-2.95,1,1,0,0,0,-.5,-39);this.nb=new a.MS;this.nb.parent=this;this.nb.setTransform(30.05,-2.95,1,1,0,0,0,-.5,-39);this.rb=new a.rea;this.rb.parent=this;this.rb.setTransform(120.6,5.6,1.1404,.6986,0,0,0,.1,0);this.tb=new a.sea;this.tb.parent=this;this.tb.setTransform(119.55,168.6,.8606,1.032);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za}, +{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia}]}).wait(1));this.ub=new a.aca;this.ub.parent=this;this.ub.setTransform(-40,-23);this.wb=new a.Kx;this.wb.parent=this;this.wb.setTransform(160.7,126.85,1,1,0,0,0,-.1,-11);this.yb=new a.Kx;this.yb.parent=this;this.yb.setTransform(160.7,96.85,1,1,0,0,0,-.1,-11);this.Ab=new a.Kx;this.Ab.parent=this;this.Ab.setTransform(160.7,66.85,1,1,0,0,0,-.1,-11); +this.Cb=new a.Kx;this.Cb.parent=this;this.Cb.setTransform(160.7,36.85,1,1,0,0,0,-.1,-11);this.Db=new a.Kx;this.Db.parent=this;this.Db.setTransform(77.7,126.85,1,1,0,0,0,-.1,-11);this.Eb=new a.Kx;this.Eb.parent=this;this.Eb.setTransform(77.7,96.85,1,1,0,0,0,-.1,-11);this.Fb=new a.Kx;this.Fb.parent=this;this.Fb.setTransform(77.7,66.85,1,1,0,0,0,-.1,-11);this.Gb=new a.Kx;this.Gb.parent=this;this.Gb.setTransform(77.7,36.85,1,1,0,0,0,-.1,-11);this.Hb=new a.$ba;this.Hb.parent=this;this.Hb.setTransform(-40, +-24);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub}]}).wait(1))}).prototype=k(a.boa,new b.Rectangle(-56.2,-26.6,354.9,237.7),null);(a.aoa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(138, +-13.35,21.7401,1.3029,0,0,0,.6,.1);this.g=new a.N;this.g.parent=this;this.g.setTransform(221.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.i=new a.N;this.i.parent=this;this.i.setTransform(212.45,181.5,9.5212,3.6875,0,0,0,.1,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(34.05,181.5,8.8743,3.6875,0,0,0,.1,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(28.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.O=new a.N;this.O.parent=this;this.O.setTransform(243.45,66.9,6.125,11.5265,0,0,0,.4,.1);this.$= +new a.N;this.$.parent=this;this.$.setTransform(.85,68.35,5.9688,11.5076,0,0,0,.1,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.ka=new a.lga;this.ka.parent=this;this.ka.setTransform(120.65,23.5,1,1,0,0,0,0,-10);this.ka.alpha=0;this.ta=new a.mga;this.ta.parent=this;this.ta.setTransform(120,137.5,1,1,0,0,0,0,-10);this.ta.alpha=0;this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ta},{t:this.ka}]}).wait(1)); +this.va=new a.Player;this.va.parent=this;this.va.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.va).wait(1));this.wa=new a.Fca;this.wa.parent=this;this.wa.setTransform(120,66.85);this.timeline.addTween(b.Tween.get(this.wa).wait(1));this.ya=new a.Y4a;this.ya.parent=this;this.ya.setTransform(121.65,-1.5,1,1,0,0,0,0,-18.4);this.Aa=new a.LTa;this.Aa.parent=this;this.Aa.setTransform(68,71.85,1,1,0,0,0,0,-.6);this.Ba=new a.MTa;this.Ba.parent=this;this.Ba.setTransform(121,88.5,1,1,0,0,0,0, +-.6);this.Da=new a.KTa;this.Da.parent=this;this.Da.setTransform(172,50.85,1,1,0,0,0,0,-.6);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya}]}).wait(1));this.Ea=new a.fT;this.Ea.parent=this;this.Ea.setTransform(176.5,138.25,1,1,0,0,0,0,-3);this.Ga=new a.fT;this.Ga.parent=this;this.Ga.setTransform(66.5,138.25,1,1,0,0,0,0,-3);this.Ha=new a.fT;this.Ha.parent=this;this.Ha.setTransform(173.5,21.25,1,1,0,0,0,0,-3);this.Ia=new a.fT;this.Ia.parent=this;this.Ia.setTransform(66.5, +21.25,1,1,0,0,0,0,-3);this.Ja=new a.lx;this.Ja.parent=this;this.Ja.setTransform(183,-7.5,1,1,0,0,0,0,-28.5);this.Ka=new a.lx;this.Ka.parent=this;this.Ka.setTransform(169,-7.5,1,1,0,0,0,0,-28.5);this.La=new a.lx;this.La.parent=this;this.La.setTransform(155,-7.5,1,1,0,0,0,0,-28.5);this.Ma=new a.lx;this.Ma.parent=this;this.Ma.setTransform(83,-7.5,1,1,0,0,0,0,-28.5);this.Na=new a.lx;this.Na.parent=this;this.Na.setTransform(69,-7.5,1,1,0,0,0,0,-28.5);this.Oa=new a.lx;this.Oa.parent=this;this.Oa.setTransform(55, +-7.5,1,1,0,0,0,0,-28.5);this.Qa=new a.qea;this.Qa.parent=this;this.Qa.setTransform(119.55,168.6,.8606,1.032);this.Ua=new a.Kx;this.Ua.parent=this;this.Ua.setTransform(99,134,1,1,0,0,0,-.1,-11);this.Va=new a.Kx;this.Va.parent=this;this.Va.setTransform(141,134,1,1,0,0,0,-.1,-11);this.Wa=new a.pea;this.Wa.parent=this;this.Wa.setTransform(121.95,5.6,.8336,.6986);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La}, +{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea}]}).wait(1));this.Xa=new a.aca;this.Xa.parent=this;this.Xa.setTransform(-40,-23);this.timeline.addTween(b.Tween.get(this.Xa).wait(1))}).prototype=k(a.aoa,new b.Rectangle(-56.2,-26.6,354.9,237.7),null);(a.Xna=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this; +this.instance.setTransform(187.9,161.5,6.4688,3.6875,0,0,0,.1,0);this.g=new a.N;this.g.parent=this;this.g.setTransform(52.9,161.5,6.4688,3.6875,0,0,0,.1,0);this.i=new a.N;this.i.parent=this;this.i.setTransform(122.75,16.05,14.7419,2.0031,0,0,0,.3,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(240,86.75,1,10.9946,0,0,0,0,.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(.5,87.1,1,10.9946,0,0,0,0,.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.H},{t:this.o},{t:this.i}, +{t:this.g},{t:this.instance}]}).wait(1));this.O=new a.Player;this.O.parent=this;this.O.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.O).wait(1));this.$=new a.iY;this.$.parent=this;this.$.setTransform(120,67.5);this.timeline.addTween(b.Tween.get(this.$).wait(1));this.ka=new a.U$a;this.ka.parent=this;this.ka.setTransform(73.5,95.5);this.timeline.addTween(b.Tween.get(this.ka).wait(1));this.ta=new a.Bm;this.ta.parent=this;this.ta.setTransform(119.5,153);this.timeline.addTween(b.Tween.get(this.ta).wait(1)); +this.va=new a.rW;this.va.parent=this;this.va.setTransform(169,100);this.wa=new a.kfa;this.wa.parent=this;this.wa.setTransform(21.5,56.5);this.ya=new a.ym;this.ya.parent=this;this.ya.setTransform(168,111);this.Aa=new a.ym;this.Aa.parent=this;this.Aa.setTransform(136,46);this.Ba=new a.ym;this.Ba.parent=this;this.Ba.setTransform(100,46);this.Da=new a.ym;this.Da.parent=this;this.Da.setTransform(26,34);this.Ea=new a.ym;this.Ea.parent=this;this.Ea.setTransform(26,69);this.Ga=new a.ym;this.Ga.parent=this; +this.Ga.setTransform(168,76);this.Ha=new a.xS;this.Ha.parent=this;this.Ha.setTransform(73,110);this.Ia=new a.b_;this.Ia.parent=this;this.Ia.setTransform(120,51);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va}]}).wait(1));this.Ja=new a.l6;this.Ja.parent=this;this.timeline.addTween(b.Tween.get(this.Ja).wait(1))}).prototype=k(a.Xna,new b.Rectangle(-7.5,-2.4,255.5,193.5),null);(a.Pna= +function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(40,41.9,.3125,.3126,0,180,0,0,.3);this.g=new a.N;this.g.parent=this;this.g.setTransform(16,65.9,.3125,.3126,0,180,0,0,.3);this.i=new a.N;this.i.parent=this;this.i.setTransform(17,64.9,.3125,.3126,0,180,0,0,.3);this.o=new a.N;this.o.parent=this;this.o.setTransform(18, +63.9,.3125,.3126,0,180,0,0,.3);this.H=new a.N;this.H.parent=this;this.H.setTransform(19,62.9,.3125,.3126,0,180,0,0,.3);this.O=new a.N;this.O.parent=this;this.O.setTransform(20,61.9,.3125,.3126,0,180,0,0,.3);this.$=new a.N;this.$.parent=this;this.$.setTransform(21,60.9,.3125,.3126,0,180,0,0,.3);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(22,59.9,.3125,.3126,0,180,0,0,.3);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(23,58.9,.3125,.3126,0,180,0,0,.3);this.va=new a.N;this.va.parent= +this;this.va.setTransform(24,57.9,.3125,.3126,0,180,0,0,.3);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(25,56.9,.3125,.3126,0,180,0,0,.3);this.ya=new a.N;this.ya.parent=this;this.ya.setTransform(26,55.9,.3125,.3126,0,180,0,0,.3);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(27,54.9,.3125,.3126,0,180,0,0,.3);this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(28,53.9,.3125,.3126,0,180,0,0,.3);this.Da=new a.N;this.Da.parent=this;this.Da.setTransform(29,52.9,.3125,.3126, +0,180,0,0,.3);this.Ea=new a.N;this.Ea.parent=this;this.Ea.setTransform(30,51.9,.3125,.3126,0,180,0,0,.3);this.Ga=new a.N;this.Ga.parent=this;this.Ga.setTransform(31,50.9,.3125,.3126,0,180,0,0,.3);this.Ha=new a.N;this.Ha.parent=this;this.Ha.setTransform(32,49.9,.3125,.3126,0,180,0,0,.3);this.Ia=new a.N;this.Ia.parent=this;this.Ia.setTransform(33,48.9,.3125,.3126,0,180,0,0,.3);this.Ja=new a.N;this.Ja.parent=this;this.Ja.setTransform(34,47.9,.3125,.3126,0,180,0,0,.3);this.Ka=new a.N;this.Ka.parent=this; +this.Ka.setTransform(35,46.9,.3125,.3126,0,180,0,0,.3);this.La=new a.N;this.La.parent=this;this.La.setTransform(36,45.9,.3125,.3126,0,180,0,0,.3);this.Ma=new a.N;this.Ma.parent=this;this.Ma.setTransform(37,44.9,.3125,.3126,0,180,0,0,.3);this.Na=new a.N;this.Na.parent=this;this.Na.setTransform(38,43.9,.3125,.3126,0,180,0,0,.3);this.Oa=new a.N;this.Oa.parent=this;this.Oa.setTransform(39,42.9,.3125,.3126,0,180,0,0,.3);this.Qa=new a.N;this.Qa.parent=this;this.Qa.setTransform(41,41.9,.3125,.3126,0,180, +0,0,.3);this.Ua=new a.N;this.Ua.parent=this;this.Ua.setTransform(42,40.9,.3125,.3126,0,180,0,0,.3);this.Va=new a.N;this.Va.parent=this;this.Va.setTransform(43,39.9,.3125,.3126,0,180,0,0,.3);this.Wa=new a.N;this.Wa.parent=this;this.Wa.setTransform(44,38.9,.3125,.3126,0,180,0,0,.3);this.Xa=new a.N;this.Xa.parent=this;this.Xa.setTransform(45,37.9,.3125,.3126,0,180,0,0,.3);this.Ya=new a.N;this.Ya.parent=this;this.Ya.setTransform(46,36.9,.3125,.3126,0,180,0,0,.3);this.Za=new a.N;this.Za.parent=this;this.Za.setTransform(47, +35.9,.3125,.3126,0,180,0,0,.3);this.$a=new a.N;this.$a.parent=this;this.$a.setTransform(48,34.9,.3125,.3126,0,180,0,0,.3);this.ab=new a.N;this.ab.parent=this;this.ab.setTransform(49,33.9,.3125,.3126,0,180,0,0,.3);this.hb=new a.N;this.hb.parent=this;this.hb.setTransform(50,32.9,.3125,.3126,0,180,0,0,.3);this.mb=new a.N;this.mb.parent=this;this.mb.setTransform(51,31.9,.3125,.3126,0,180,0,0,.3);this.nb=new a.N;this.nb.parent=this;this.nb.setTransform(52,30.9,.3125,.3126,0,180,0,0,.3);this.rb=new a.N; +this.rb.parent=this;this.rb.setTransform(53,29.9,.3125,.3126,0,180,0,0,.3);this.tb=new a.N;this.tb.parent=this;this.tb.setTransform(202,41.9,.3125,.3126,180,0,0,0,.3);this.ub=new a.N;this.ub.parent=this;this.ub.setTransform(226,65.9,.3125,.3126,180,0,0,0,.3);this.wb=new a.N;this.wb.parent=this;this.wb.setTransform(225,64.9,.3125,.3126,180,0,0,0,.3);this.yb=new a.N;this.yb.parent=this;this.yb.setTransform(224,63.9,.3125,.3126,180,0,0,0,.3);this.Ab=new a.N;this.Ab.parent=this;this.Ab.setTransform(223, +62.9,.3125,.3126,180,0,0,0,.3);this.Cb=new a.N;this.Cb.parent=this;this.Cb.setTransform(222,61.9,.3125,.3126,180,0,0,0,.3);this.Db=new a.N;this.Db.parent=this;this.Db.setTransform(221,60.9,.3125,.3126,180,0,0,0,.3);this.Eb=new a.N;this.Eb.parent=this;this.Eb.setTransform(220,59.9,.3125,.3126,180,0,0,0,.3);this.Fb=new a.N;this.Fb.parent=this;this.Fb.setTransform(219,58.9,.3125,.3126,180,0,0,0,.3);this.Gb=new a.N;this.Gb.parent=this;this.Gb.setTransform(218,57.9,.3125,.3126,180,0,0,0,.3);this.Hb=new a.N; +this.Hb.parent=this;this.Hb.setTransform(217,56.9,.3125,.3126,180,0,0,0,.3);this.Jb=new a.N;this.Jb.parent=this;this.Jb.setTransform(216,55.9,.3125,.3126,180,0,0,0,.3);this.Lb=new a.N;this.Lb.parent=this;this.Lb.setTransform(215,54.9,.3125,.3126,180,0,0,0,.3);this.Mb=new a.N;this.Mb.parent=this;this.Mb.setTransform(214,53.9,.3125,.3126,180,0,0,0,.3);this.Pb=new a.N;this.Pb.parent=this;this.Pb.setTransform(213,52.9,.3125,.3126,180,0,0,0,.3);this.Nb=new a.N;this.Nb.parent=this;this.Nb.setTransform(212, +51.9,.3125,.3126,180,0,0,0,.3);this.Qb=new a.N;this.Qb.parent=this;this.Qb.setTransform(211,50.9,.3125,.3126,180,0,0,0,.3);this.Ob=new a.N;this.Ob.parent=this;this.Ob.setTransform(210,49.9,.3125,.3126,180,0,0,0,.3);this.Rb=new a.N;this.Rb.parent=this;this.Rb.setTransform(209,48.9,.3125,.3126,180,0,0,0,.3);this.Sb=new a.N;this.Sb.parent=this;this.Sb.setTransform(208,47.9,.3125,.3126,180,0,0,0,.3);this.Tb=new a.N;this.Tb.parent=this;this.Tb.setTransform(207,46.9,.3125,.3126,180,0,0,0,.3);this.Ub=new a.N; +this.Ub.parent=this;this.Ub.setTransform(206,45.9,.3125,.3126,180,0,0,0,.3);this.Zb=new a.N;this.Zb.parent=this;this.Zb.setTransform(205,44.9,.3125,.3126,180,0,0,0,.3);this.Wb=new a.N;this.Wb.parent=this;this.Wb.setTransform(204,43.9,.3125,.3126,180,0,0,0,.3);this.Xb=new a.N;this.Xb.parent=this;this.Xb.setTransform(203,42.9,.3125,.3126,180,0,0,0,.3);this.Yb=new a.N;this.Yb.parent=this;this.Yb.setTransform(201,41.9,.3125,.3126,180,0,0,0,.3);this.$b=new a.N;this.$b.parent=this;this.$b.setTransform(200, +40.9,.3125,.3126,180,0,0,0,.3);this.ac=new a.N;this.ac.parent=this;this.ac.setTransform(199,39.9,.3125,.3126,180,0,0,0,.3);this.bc=new a.N;this.bc.parent=this;this.bc.setTransform(198,38.9,.3125,.3126,180,0,0,0,.3);this.hc=new a.N;this.hc.parent=this;this.hc.setTransform(197,37.9,.3125,.3126,180,0,0,0,.3);this.jc=new a.N;this.jc.parent=this;this.jc.setTransform(196,36.9,.3125,.3126,180,0,0,0,.3);this.kc=new a.N;this.kc.parent=this;this.kc.setTransform(195,35.9,.3125,.3126,180,0,0,0,.3);this.lc=new a.N; +this.lc.parent=this;this.lc.setTransform(194,34.9,.3125,.3126,180,0,0,0,.3);this.nc=new a.N;this.nc.parent=this;this.nc.setTransform(193,33.9,.3125,.3126,180,0,0,0,.3);this.tc=new a.N;this.tc.parent=this;this.tc.setTransform(192,32.9,.3125,.3126,180,0,0,0,.3);this.uc=new a.N;this.uc.parent=this;this.uc.setTransform(191,31.9,.3125,.3126,180,0,0,0,.3);this.xc=new a.N;this.xc.parent=this;this.xc.setTransform(190,30.9,.3125,.3126,180,0,0,0,.3);this.zc=new a.N;this.zc.parent=this;this.zc.setTransform(189, +29.9,.3125,.3126,180,0,0,0,.3);this.Ac=new a.N;this.Ac.parent=this;this.Ac.setTransform(202,125.1,.3125,.3126,0,0,180,0,.3);this.Bc=new a.N;this.Bc.parent=this;this.Bc.setTransform(226,101.1,.3125,.3126,0,0,180,0,.3);this.yc=new a.N;this.yc.parent=this;this.yc.setTransform(225,102.1,.3125,.3126,0,0,180,0,.3);this.Dc=new a.N;this.Dc.parent=this;this.Dc.setTransform(224,103.1,.3125,.3126,0,0,180,0,.3);this.Ec=new a.N;this.Ec.parent=this;this.Ec.setTransform(223,104.1,.3125,.3126,0,0,180,0,.3);this.Fc= +new a.N;this.Fc.parent=this;this.Fc.setTransform(222,105.1,.3125,.3126,0,0,180,0,.3);this.Gc=new a.N;this.Gc.parent=this;this.Gc.setTransform(221,106.1,.3125,.3126,0,0,180,0,.3);this.Jc=new a.N;this.Jc.parent=this;this.Jc.setTransform(220,107.1,.3125,.3126,0,0,180,0,.3);this.Kc=new a.N;this.Kc.parent=this;this.Kc.setTransform(219,108.1,.3125,.3126,0,0,180,0,.3);this.Lc=new a.N;this.Lc.parent=this;this.Lc.setTransform(218,109.1,.3125,.3126,0,0,180,0,.3);this.Ic=new a.N;this.Ic.parent=this;this.Ic.setTransform(217, +110.1,.3125,.3126,0,0,180,0,.3);this.Nc=new a.N;this.Nc.parent=this;this.Nc.setTransform(216,111.1,.3125,.3126,0,0,180,0,.3);this.Oc=new a.N;this.Oc.parent=this;this.Oc.setTransform(215,112.1,.3125,.3126,0,0,180,0,.3);this.Rc=new a.N;this.Rc.parent=this;this.Rc.setTransform(214,113.1,.3125,.3126,0,0,180,0,.3);this.Uc=new a.N;this.Uc.parent=this;this.Uc.setTransform(213,114.1,.3125,.3126,0,0,180,0,.3);this.Xc=new a.N;this.Xc.parent=this;this.Xc.setTransform(212,115.1,.3125,.3126,0,0,180,0,.3);this.jd= +new a.N;this.jd.parent=this;this.jd.setTransform(211,116.1,.3125,.3126,0,0,180,0,.3);this.$c=new a.N;this.$c.parent=this;this.$c.setTransform(210,117.1,.3125,.3126,0,0,180,0,.3);this.kd=new a.N;this.kd.parent=this;this.kd.setTransform(209,118.1,.3125,.3126,0,0,180,0,.3);this.hd=new a.N;this.hd.parent=this;this.hd.setTransform(208,119.1,.3125,.3126,0,0,180,0,.3);this.ld=new a.N;this.ld.parent=this;this.ld.setTransform(207,120.1,.3125,.3126,0,0,180,0,.3);this.nd=new a.N;this.nd.parent=this;this.nd.setTransform(206, +121.1,.3125,.3126,0,0,180,0,.3);this.od=new a.N;this.od.parent=this;this.od.setTransform(205,122.1,.3125,.3126,0,0,180,0,.3);this.rd=new a.N;this.rd.parent=this;this.rd.setTransform(204,123.1,.3125,.3126,0,0,180,0,.3);this.vd=new a.N;this.vd.parent=this;this.vd.setTransform(203,124.1,.3125,.3126,0,0,180,0,.3);this.wd=new a.N;this.wd.parent=this;this.wd.setTransform(201,125.1,.3125,.3126,0,0,180,0,.3);this.xd=new a.N;this.xd.parent=this;this.xd.setTransform(200,126.1,.3125,.3126,0,0,180,0,.3);this.Gd= +new a.N;this.Gd.parent=this;this.Gd.setTransform(199,127.1,.3125,.3126,0,0,180,0,.3);this.Hd=new a.N;this.Hd.parent=this;this.Hd.setTransform(198,128.1,.3125,.3126,0,0,180,0,.3);this.Fd=new a.N;this.Fd.parent=this;this.Fd.setTransform(197,129.1,.3125,.3126,0,0,180,0,.3);this.Jd=new a.N;this.Jd.parent=this;this.Jd.setTransform(196,130.1,.3125,.3126,0,0,180,0,.3);this.Kd=new a.N;this.Kd.parent=this;this.Kd.setTransform(195,131.1,.3125,.3126,0,0,180,0,.3);this.Id=new a.N;this.Id.parent=this;this.Id.setTransform(194, +132.1,.3125,.3126,0,0,180,0,.3);this.Ld=new a.N;this.Ld.parent=this;this.Ld.setTransform(193,133.1,.3125,.3126,0,0,180,0,.3);this.Md=new a.N;this.Md.parent=this;this.Md.setTransform(192,134.1,.3125,.3126,0,0,180,0,.3);this.Nd=new a.N;this.Nd.parent=this;this.Nd.setTransform(191,135.1,.3125,.3126,0,0,180,0,.3);this.Od=new a.N;this.Od.parent=this;this.Od.setTransform(190,136.1,.3125,.3126,0,0,180,0,.3);this.Pd=new a.N;this.Pd.parent=this;this.Pd.setTransform(189,137.1,.3125,.3126,0,0,180,0,.3);this.Qd= +new a.N;this.Qd.parent=this;this.Qd.setTransform(40,125.1,.3125,.3126,0,0,0,0,.3);this.Rd=new a.N;this.Rd.parent=this;this.Rd.setTransform(16,101.1,.3125,.3126,0,0,0,0,.3);this.Td=new a.N;this.Td.parent=this;this.Td.setTransform(17,102.1,.3125,.3126,0,0,0,0,.3);this.Ud=new a.N;this.Ud.parent=this;this.Ud.setTransform(18,103.1,.3125,.3126,0,0,0,0,.3);this.Vd=new a.N;this.Vd.parent=this;this.Vd.setTransform(19,104.1,.3125,.3126,0,0,0,0,.3);this.he=new a.N;this.he.parent=this;this.he.setTransform(20, +105.1,.3125,.3126,0,0,0,0,.3);this.qe=new a.N;this.qe.parent=this;this.qe.setTransform(21,106.1,.3125,.3126,0,0,0,0,.3);this.re=new a.N;this.re.parent=this;this.re.setTransform(22,107.1,.3125,.3126,0,0,0,0,.3);this.te=new a.N;this.te.parent=this;this.te.setTransform(23,108.1,.3125,.3126,0,0,0,0,.3);this.ue=new a.N;this.ue.parent=this;this.ue.setTransform(24,109.1,.3125,.3126,0,0,0,0,.3);this.we=new a.N;this.we.parent=this;this.we.setTransform(25,110.1,.3125,.3126,0,0,0,0,.3);this.ze=new a.N;this.ze.parent= +this;this.ze.setTransform(26,111.1,.3125,.3126,0,0,0,0,.3);this.Ge=new a.N;this.Ge.parent=this;this.Ge.setTransform(27,112.1,.3125,.3126,0,0,0,0,.3);this.He=new a.N;this.He.parent=this;this.He.setTransform(28,113.1,.3125,.3126,0,0,0,0,.3);this.Ie=new a.N;this.Ie.parent=this;this.Ie.setTransform(29,114.1,.3125,.3126,0,0,0,0,.3);this.Ae=new a.N;this.Ae.parent=this;this.Ae.setTransform(30,115.1,.3125,.3126,0,0,0,0,.3);this.Be=new a.N;this.Be.parent=this;this.Be.setTransform(31,116.1,.3125,.3126,0,0, +0,0,.3);this.Ce=new a.N;this.Ce.parent=this;this.Ce.setTransform(32,117.1,.3125,.3126,0,0,0,0,.3);this.De=new a.N;this.De.parent=this;this.De.setTransform(33,118.1,.3125,.3126,0,0,0,0,.3);this.Ee=new a.N;this.Ee.parent=this;this.Ee.setTransform(34,119.1,.3125,.3126,0,0,0,0,.3);this.Fe=new a.N;this.Fe.parent=this;this.Fe.setTransform(35,120.1,.3125,.3126,0,0,0,0,.3);this.Je=new a.N;this.Je.parent=this;this.Je.setTransform(36,121.1,.3125,.3126,0,0,0,0,.3);this.Ke=new a.N;this.Ke.parent=this;this.Ke.setTransform(37, +122.1,.3125,.3126,0,0,0,0,.3);this.Le=new a.N;this.Le.parent=this;this.Le.setTransform(38,123.1,.3125,.3126,0,0,0,0,.3);this.Me=new a.N;this.Me.parent=this;this.Me.setTransform(39,124.1,.3125,.3126,0,0,0,0,.3);this.Ne=new a.N;this.Ne.parent=this;this.Ne.setTransform(41,125.1,.3125,.3126,0,0,0,0,.3);this.Oe=new a.N;this.Oe.parent=this;this.Oe.setTransform(42,126.1,.3125,.3126,0,0,0,0,.3);this.Pe=new a.N;this.Pe.parent=this;this.Pe.setTransform(43,127.1,.3125,.3126,0,0,0,0,.3);this.Qe=new a.N;this.Qe.parent= +this;this.Qe.setTransform(44,128.1,.3125,.3126,0,0,0,0,.3);this.Re=new a.N;this.Re.parent=this;this.Re.setTransform(45,129.1,.3125,.3126,0,0,0,0,.3);this.Se=new a.N;this.Se.parent=this;this.Se.setTransform(46,130.1,.3125,.3126,0,0,0,0,.3);this.Te=new a.N;this.Te.parent=this;this.Te.setTransform(47,131.1,.3125,.3126,0,0,0,0,.3);this.ff=new a.N;this.ff.parent=this;this.ff.setTransform(48,132.1,.3125,.3126,0,0,0,0,.3);this.hf=new a.N;this.hf.parent=this;this.hf.setTransform(49,133.1,.3125,.3126,0,0, +0,0,.3);this.jf=new a.N;this.jf.parent=this;this.jf.setTransform(50,134.1,.3125,.3126,0,0,0,0,.3);this.kf=new a.N;this.kf.parent=this;this.kf.setTransform(51,135.1,.3125,.3126,0,0,0,0,.3);this.nf=new a.N;this.nf.parent=this;this.nf.setTransform(52,136.1,.3125,.3126,0,0,0,0,.3);this.qf=new a.N;this.qf.parent=this;this.qf.setTransform(53,137.1,.3125,.3126,0,0,0,0,.3);this.sf=new a.N;this.sf.parent=this;this.sf.setTransform(126.65,4.75,20.6949,3.4233,0,0,0,.2,.1);this.tf=new a.hC;this.tf.parent=this; +this.tf.setTransform(232,70.85,1,1.3701,0,0,0,0,-68.5);this.uf=new a.N;this.uf.parent=this;this.uf.setTransform(217.1,168.85,9.9871,3.6875,0,0,0,.2,.1);this.vf=new a.N;this.vf.parent=this;this.vf.setTransform(31.45,168.85,9.1978,3.6875,0,0,0,.1,.1);this.wf=new a.N;this.wf.parent=this;this.wf.setTransform(9.5,67.6,1,11.8842,0,0,0,0,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.wf},{t:this.vf},{t:this.uf},{t:this.tf},{t:this.sf},{t:this.qf},{t:this.nf},{t:this.kf},{t:this.jf},{t:this.hf}, +{t:this.ff},{t:this.Te},{t:this.Se},{t:this.Re},{t:this.Qe},{t:this.Pe},{t:this.Oe},{t:this.Ne},{t:this.Me},{t:this.Le},{t:this.Ke},{t:this.Je},{t:this.Fe},{t:this.Ee},{t:this.De},{t:this.Ce},{t:this.Be},{t:this.Ae},{t:this.Ie},{t:this.He},{t:this.Ge},{t:this.ze},{t:this.we},{t:this.ue},{t:this.te},{t:this.re},{t:this.qe},{t:this.he},{t:this.Vd},{t:this.Ud},{t:this.Td},{t:this.Rd},{t:this.Qd},{t:this.Pd},{t:this.Od},{t:this.Nd},{t:this.Md},{t:this.Ld},{t:this.Id},{t:this.Kd},{t:this.Jd},{t:this.Fd}, +{t:this.Hd},{t:this.Gd},{t:this.xd},{t:this.wd},{t:this.vd},{t:this.rd},{t:this.od},{t:this.nd},{t:this.ld},{t:this.hd},{t:this.kd},{t:this.$c},{t:this.jd},{t:this.Xc},{t:this.Uc},{t:this.Rc},{t:this.Oc},{t:this.Nc},{t:this.Ic},{t:this.Lc},{t:this.Kc},{t:this.Jc},{t:this.Gc},{t:this.Fc},{t:this.Ec},{t:this.Dc},{t:this.yc},{t:this.Bc},{t:this.Ac},{t:this.zc},{t:this.xc},{t:this.uc},{t:this.tc},{t:this.nc},{t:this.lc},{t:this.kc},{t:this.jc},{t:this.hc},{t:this.bc},{t:this.ac},{t:this.$b},{t:this.Yb}, +{t:this.Xb},{t:this.Wb},{t:this.Zb},{t:this.Ub},{t:this.Tb},{t:this.Sb},{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb},{t:this.Pb},{t:this.Mb},{t:this.Lb},{t:this.Jb},{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La}, +{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.xf=new a.Player;this.xf.parent=this;this.xf.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.xf).wait(1));this.yf=new a.Tw;this.yf.parent=this;this.yf.setTransform(204,86);this.Df=new a.Tw;this.Df.parent=this;this.Df.setTransform(40, +86.15);this.Ef=new a.q2;this.Ef.parent=this;this.Ef.setTransform(120,67,1,1,0,0,0,0,-90);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ef},{t:this.Df},{t:this.yf}]}).wait(1));this.Ff=new a.Ona;this.Ff.parent=this;this.Ff.setTransform(-40,-23);this.Cf=new a.Bm;this.Cf.parent=this;this.Cf.setTransform(120.5,168.85,1.25,1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Cf},{t:this.Ff}]}).wait(1))}).prototype=k(a.Pna,new b.Rectangle(-42.8,-30,337.6,228.1),null);(a.Mna=function(d, +e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(43.15,49.5,6.4688,3.6875,0,0,0,.1,0);this.g=new a.N;this.g.parent=this;this.g.setTransform(187.9,157.5,6.4688,3.6875,0,0,0,.1,0);this.i=new a.N;this.i.parent=this;this.i.setTransform(52.9,157.5,6.4688,3.6875,0,0,0,.1,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(122.75, +16.05,14.7419,2.0031,0,0,0,.3,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(240,67.05,1,8.5625,0,0,0,0,.1);this.O=new a.N;this.O.parent=this;this.O.setTransform(.5,67.35,1,8.5625,0,0,0,0,.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.$=new a.Player;this.$.parent=this;this.$.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.$).wait(1));this.ka=new a.lHa;this.ka.parent=this;this.ka.setTransform(224.7, +39.8,1,1,0,0,0,0,-15.7);this.ta=new a.iY;this.ta.parent=this;this.ta.setTransform(121,67.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ta},{t:this.ka}]}).wait(1));this.va=new a.gB;this.va.parent=this;this.va.setTransform(116.35,26.7,1,1,0,0,180,0,-8);this.wa=new a.gB;this.wa.parent=this;this.wa.setTransform(226.35,26.7,1,1,0,0,0,0,-8);this.ya=new a.WQa;this.ya.parent=this;this.ya.setTransform(200,44,1,1,0,0,0,0,-.6);this.Aa=new a.eTa;this.Aa.parent=this;this.Aa.setTransform(26.8,104.5, +1,1,0,0,0,0,-11);this.Ba=new a.Ubb;this.Ba.parent=this;this.Ba.setTransform(51.25,58,1,1,0,0,0,0,-11);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va}]}).wait(1));this.Da=new a.xS;this.Da.parent=this;this.Da.setTransform(51,115,1,1,0,0,0,0,-1);this.Ea=new a.ym;this.Ea.parent=this;this.Ea.setTransform(77.35,111.35,1,1,0,0,0,.5,0);this.Ga=new a.ym;this.Ga.parent=this;this.Ga.setTransform(26.35,110.35,1,1,0,0,0,.5,0);this.Ha=new a.lda;this.Ha.parent= +this;this.Ha.setTransform(88.75,75.5,1,1,0,0,0,0,-5.5);this.Ia=new a.$9a;this.Ia.parent=this;this.Ia.setTransform(73.25,73.75,1,1,0,0,0,0,-5.5);this.Ja=new a.DEa;this.Ja.parent=this;this.Ja.setTransform(87.25,79.25);this.Ka=new a.Fxa;this.Ka.parent=this;this.Ka.setTransform(30.25,73.25,1,1,0,0,0,0,-5.5);this.La=new a.H_a;this.La.parent=this;this.La.setTransform(16.25,73.25,1,1,0,0,0,0,-5.5);this.Ma=new a.Fya;this.Ma.parent=this;this.Ma.setTransform(198.25,52.25,1,1,0,0,0,0,-16);this.Na=new a.Dya; +this.Na.parent=this;this.Na.setTransform(164.25,52.25,1,1,0,0,0,0,-16);this.Oa=new a.Bya;this.Oa.parent=this;this.Oa.setTransform(130.25,52.25,1,1,0,0,0,0,-16);this.Qa=new a.zya;this.Qa.parent=this;this.Qa.setTransform(198.25,92.25,1,1,0,0,0,0,-16);this.Ua=new a.xya;this.Ua.parent=this;this.Ua.setTransform(164.25,92.25,1,1,0,0,0,0,-16);this.Va=new a.vya;this.Va.parent=this;this.Va.setTransform(130.25,92.25,1,1,0,0,0,0,-16);this.Wa=new a.Counter;this.Wa.parent=this;this.Wa.setTransform(52.25,54,1, +1,0,0,0,0,-24);this.Xa=new a.Bm;this.Xa.parent=this;this.Xa.setTransform(120,152.75);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da}]}).wait(1));this.Ya=new a.Hya;this.Ya.parent=this;this.Ya.setTransform(1,0);this.timeline.addTween(b.Tween.get(this.Ya).wait(1))}).prototype=k(a.Mna,new b.Rectangle(-9.1,-2.4, +257.1,189.5),null);(a.hma=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(138,-13.35,21.7401,1.3029,0,0,0,.6,.1);this.g=new a.N;this.g.parent=this;this.g.setTransform(221.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.i=new a.N;this.i.parent=this;this.i.setTransform(212.45,181.5,9.5212,3.6875,0,0,0,.1,0); +this.o=new a.N;this.o.parent=this;this.o.setTransform(34.05,181.5,8.8743,3.6875,0,0,0,.1,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(28.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.O=new a.N;this.O.parent=this;this.O.setTransform(223.1,66.9,8.8238,11.5265,0,0,0,.4,.1);this.$=new a.N;this.$.parent=this;this.$.setTransform(24.7,69.5,8.9718,11.5076,0,0,0,.1,.3);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1)); +this.ka=new a.sha;this.ka.parent=this;this.ka.setTransform(120.65,23.5,1,1,0,0,0,0,-10);this.ka.alpha=0;this.ta=new a.tha;this.ta.parent=this;this.ta.setTransform(120,137.5,1,1,0,0,0,0,-10);this.ta.alpha=0;this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ta},{t:this.ka}]}).wait(1));this.va=new a.Player;this.va.parent=this;this.va.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.va).wait(1));this.wa=new a.wma;this.wa.parent=this;this.wa.setTransform(176,155.15);this.ya=new a.xma; +this.ya.parent=this;this.ya.setTransform(77.5,155.15);this.Aa=new a.xma;this.Aa.parent=this;this.Aa.setTransform(153.15,155.15);this.Ba=new a.wma;this.Ba.parent=this;this.Ba.setTransform(57,155);this.Da=new a.gTa;this.Da.parent=this;this.Da.setTransform(119.35,80.6,1,1,0,0,0,.3,-4.2);this.Ea=new a.kma;this.Ea.parent=this;this.Ea.setTransform(120,66);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa}]}).wait(1));this.Ga=new a.Oea; +this.Ga.parent=this;this.Ga.setTransform(121.95,5.6,.8336,.6986);this.Ha=new a.Pea;this.Ha.parent=this;this.Ha.setTransform(119.55,168.6,.8606,1.032);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ha},{t:this.Ga}]}).wait(1));this.Ia=new a.jma;this.Ia.parent=this;this.Ia.setTransform(120,65.9,1,1,0,0,0,0,-90.1);this.timeline.addTween(b.Tween.get(this.Ia).wait(1))}).prototype=k(a.hma,new b.Rectangle(-56.2,-26.6,354.9,237.7),null);(a.oqa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T= +{map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(198.9,152.5,6.4688,3.6875,0,0,0,.1,0);this.g=new a.N;this.g.parent=this;this.g.setTransform(63.9,152.5,6.4688,3.6875,0,0,0,.1,0);this.i=new a.N;this.i.parent=this;this.i.setTransform(146.75,61.05,14.7419,2.0031,0,0,0,.3,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(210,67.05,1,8.5625,0,0,0,0,.1);this.H=new a.N; +this.H.parent=this;this.H.setTransform(49.5,67.35,1,8.5625,0,0,0,0,.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.O=new a.Player;this.O.parent=this;this.O.setTransform(130,118);this.timeline.addTween(b.Tween.get(this.O).wait(1));this.$=new a.M0;this.$.parent=this;this.$.setTransform(130,86,1,1,0,0,0,0,-41.5);this.timeline.addTween(b.Tween.get(this.$).wait(1));this.ka=new a.WZa;this.ka.parent=this;this.ka.setTransform(82.05, +89.4);this.timeline.addTween(b.Tween.get(this.ka).wait(1));this.ta=new a.L0;this.ta.parent=this;this.ta.setTransform(159.8,59.6,1,1,0,0,0,0,-17.5);this.va=new a.gB;this.va.parent=this;this.va.setTransform(66.05,60.35,1,1,0,0,0,0,-17.5);this.wa=new a.gB;this.wa.parent=this;this.wa.setTransform(195.75,60.2,1,1,0,0,0,0,-17.5);this.ya=new a.N0;this.ya.parent=this;this.ya.setTransform(81.75,89.2,1,1,0,0,0,0,-17.5);this.Aa=new a.K0;this.Aa.parent=this;this.Aa.setTransform(121.75,57.55,1,1,0,0,0,0,-17.5); +this.Ba=new a.Bm;this.Ba.parent=this;this.Ba.setTransform(130.05,145.05);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta}]}).wait(1));this.Da=new a.lba;this.Da.parent=this;this.Da.setTransform(-29.6,-2.3);this.timeline.addTween(b.Tween.get(this.Da).wait(1))}).prototype=k(a.oqa,new b.Rectangle(-29.6,-2.4,320,184.5),null);(a.nqa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}}; +this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(168.8,87.8,.3623,.7975,0,0,180,.1,.2);this.g=new a.N;this.g.parent=this;this.g.setTransform(200.9,167.5,6.4688,3.6875,0,0,0,.1,0);this.i=new a.N;this.i.parent=this;this.i.setTransform(65.9,167.5,6.4688,3.6875,0,0,0,.1,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(159.75,51.05,14.7419,2.0031,0,0,0,.3,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(233, +77.05,1,8.5625,0,0,0,0,.1);this.O=new a.N;this.O.parent=this;this.O.setTransform(32.5,77.35,1,8.5625,0,0,0,0,.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.$=new a.Player;this.$.parent=this;this.$.setTransform(134,140);this.timeline.addTween(b.Tween.get(this.$).wait(1));this.ka=new a.kN;this.ka.parent=this;this.ka.setTransform(33,28);this.timeline.addTween(b.Tween.get(this.ka).wait(1));this.ta=new a.b_; +this.ta.parent=this;this.ta.setTransform(87.35,125.55,1,1,0,0,0,-1,2.2);this.va=new a.UZa;this.va.parent=this;this.va.setTransform(132,78);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.va},{t:this.ta}]}).wait(1));this.wa=new a.Vw;this.wa.parent=this;this.wa.setTransform(73,66.65,1,1,0,0,0,-8.7,-27.1);this.ya=new a.Bm;this.ya.parent=this;this.ya.setTransform(133,162.75);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ya},{t:this.wa}]}).wait(1));this.Aa=new a.pX;this.Aa.parent= +this;this.Aa.setTransform(182.85,96.65,1,1,0,0,0,-3,-3);this.Ba=new a.gB;this.Ba.parent=this;this.Ba.setTransform(214.65,128.35,1,1,0,0,0,0,-8);this.Da=new a.gB;this.Da.parent=this;this.Da.setTransform(48.65,128.35,1,1,0,0,0,0,-8);this.Ea=new a.gB;this.Ea.parent=this;this.Ea.setTransform(48.65,59.35,1,1,0,0,0,0,-8);this.Ga=new a.gB;this.Ga.parent=this;this.Ga.setTransform(214.65,59.35,1,1,0,0,0,0,-8);this.Ha=new a.fma;this.Ha.parent=this;this.Ha.setTransform(133,-71.5,1,1,0,0,0,0,-58.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ha}, +{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa}]}).wait(1))}).prototype=k(a.nqa,new b.Rectangle(13.6,7.6,259.4,189.5),null);(a.Ala=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(68.3,102.15,.7488,.9869,0,0,0,.2,.1);this.g=new a.N;this.g.parent=this;this.g.setTransform(75.3,104.15,.7488, +.9869,0,0,0,.2,.1);this.i=new a.N;this.i.parent=this;this.i.setTransform(63.3,99.15,.7488,.9869,0,0,0,.2,.1);this.o=new a.N;this.o.parent=this;this.o.setTransform(58.3,98.15,.7488,.9869,0,0,0,.2,.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(52.3,96.15,.7488,.9869,0,0,0,.2,.1);this.O=new a.N;this.O.parent=this;this.O.setTransform(47.3,94.15,.7488,.9869,0,0,0,.2,.1);this.$=new a.N;this.$.parent=this;this.$.setTransform(42.3,90.15,.7488,.9869,0,0,0,.2,.1);this.ka=new a.N;this.ka.parent=this; +this.ka.setTransform(45.3,93.15,.7488,.9869,0,0,0,.2,.1);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(36.3,84.15,.7488,.9869,0,0,0,.2,.1);this.va=new a.N;this.va.parent=this;this.va.setTransform(38.3,86.15,.7488,.9869,0,0,0,.2,.1);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(34.3,82.15,.7488,.9869,0,0,0,.2,.1);this.ya=new a.N;this.ya.parent=this;this.ya.setTransform(32.3,80.15,.7488,.9869,0,0,0,.2,.1);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(29.3,78.15,.7488, +.9869,0,0,0,.2,.1);this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(27.3,75.15,.7488,.9869,0,0,0,.2,.1);this.Da=new a.N;this.Da.parent=this;this.Da.setTransform(24.3,61.15,.7488,.9869,0,0,0,.2,.1);this.Ea=new a.N;this.Ea.parent=this;this.Ea.setTransform(26.3,50.15,.7488,.9869,0,0,0,.2,.1);this.Ga=new a.N;this.Ga.parent=this;this.Ga.setTransform(29.3,49.15,.7488,.9869,0,0,0,.2,.1);this.Ha=new a.N;this.Ha.parent=this;this.Ha.setTransform(31.3,47.15,.7488,.9869,0,0,0,.2,.1);this.Ia=new a.N;this.Ia.parent= +this;this.Ia.setTransform(34.3,46.15,.7488,.9869,0,0,0,.2,.1);this.Ja=new a.N;this.Ja.parent=this;this.Ja.setTransform(37.3,44.15,.7488,.9869,0,0,0,.2,.1);this.Ka=new a.N;this.Ka.parent=this;this.Ka.setTransform(40.3,42.15,.7488,.9869,0,0,0,.2,.1);this.La=new a.N;this.La.parent=this;this.La.setTransform(44.3,41.15,.7488,.9869,0,0,0,.2,.1);this.Ma=new a.N;this.Ma.parent=this;this.Ma.setTransform(46.3,39.15,.7488,.9869,0,0,0,.2,.1);this.Na=new a.N;this.Na.parent=this;this.Na.setTransform(49.3,38.15, +.7488,.9869,0,0,0,.2,.1);this.Oa=new a.N;this.Oa.parent=this;this.Oa.setTransform(53.3,37.15,.7488,.9869,0,0,0,.2,.1);this.Qa=new a.N;this.Qa.parent=this;this.Qa.setTransform(57.3,35.15,.7488,.9869,0,0,0,.2,.1);this.Ua=new a.N;this.Ua.parent=this;this.Ua.setTransform(61.3,34.15,.7488,.9869,0,0,0,.2,.1);this.Va=new a.N;this.Va.parent=this;this.Va.setTransform(70.3,32.15,.7488,.9869,0,0,0,.2,.1);this.Wa=new a.N;this.Wa.parent=this;this.Wa.setTransform(75.3,30.15,.7488,.9869,0,0,0,.2,.1);this.Xa=new a.N; +this.Xa.parent=this;this.Xa.setTransform(79.3,28.15,.7488,.9869,0,0,0,.2,.1);this.Ya=new a.N;this.Ya.parent=this;this.Ya.setTransform(84.3,27.15,.7488,.9869,0,0,0,.2,.1);this.Za=new a.N;this.Za.parent=this;this.Za.setTransform(122,24,5.062,.9869,0,0,0,.3,.1);this.$a=new a.N;this.$a.parent=this;this.$a.setTransform(155.4,27.15,.7488,.9869,0,0,0,.2,.1);this.ab=new a.N;this.ab.parent=this;this.ab.setTransform(165.4,29.15,.7488,.9869,0,0,0,.2,.1);this.hb=new a.N;this.hb.parent=this;this.hb.setTransform(173.4, +31.15,.7488,.9869,0,0,0,.2,.1);this.mb=new a.N;this.mb.parent=this;this.mb.setTransform(179.4,33.15,.7488,.9869,0,0,0,.2,.1);this.nb=new a.N;this.nb.parent=this;this.nb.setTransform(187.4,35.15,.7488,.9869,0,0,0,.2,.1);this.rb=new a.N;this.rb.parent=this;this.rb.setTransform(193.4,37.15,.7488,.9869,0,0,0,.2,.1);this.tb=new a.N;this.tb.parent=this;this.tb.setTransform(197.4,39.15,.7488,.9869,0,0,0,.2,.1);this.ub=new a.N;this.ub.parent=this;this.ub.setTransform(201.4,41.15,.7488,.9869,0,0,0,.2,.1); +this.wb=new a.N;this.wb.parent=this;this.wb.setTransform(204.4,43.15,.7488,.9869,0,0,0,.2,.1);this.yb=new a.N;this.yb.parent=this;this.yb.setTransform(207.4,45.15,.7488,.9869,0,0,0,.2,.1);this.Ab=new a.N;this.Ab.parent=this;this.Ab.setTransform(209.4,47.15,.7488,.9869,0,0,0,.2,.1);this.Cb=new a.N;this.Cb.parent=this;this.Cb.setTransform(212.4,49.15,.7488,.9869,0,0,0,.2,.1);this.Db=new a.N;this.Db.parent=this;this.Db.setTransform(214.4,51.15,.7488,.9869,0,0,0,.2,.1);this.Eb=new a.N;this.Eb.parent= +this;this.Eb.setTransform(217.4,54.15,.7488,.9869,0,0,0,.2,.1);this.Fb=new a.N;this.Fb.parent=this;this.Fb.setTransform(219.4,56.15,.7488,.9869,0,0,0,.2,.1);this.Gb=new a.N;this.Gb.parent=this;this.Gb.setTransform(221.4,66.15,.7488,.9869,0,0,0,.2,.1);this.Hb=new a.N;this.Hb.parent=this;this.Hb.setTransform(220.4,78.15,.7488,.9869,0,0,0,.2,.1);this.Jb=new a.N;this.Jb.parent=this;this.Jb.setTransform(217.4,81.15,.7488,.9869,0,0,0,.2,.1);this.Lb=new a.N;this.Lb.parent=this;this.Lb.setTransform(212.4, +84.15,.7488,.9869,0,0,0,.2,.1);this.Mb=new a.N;this.Mb.parent=this;this.Mb.setTransform(207.4,89.15,.7488,.9869,0,0,0,.2,.1);this.Pb=new a.N;this.Pb.parent=this;this.Pb.setTransform(191.4,98.15,.7488,.9869,0,0,0,.2,.1);this.Nb=new a.N;this.Nb.parent=this;this.Nb.setTransform(201.4,93.15,.7488,.9869,0,0,0,.2,.1);this.Qb=new a.N;this.Qb.parent=this;this.Qb.setTransform(196.4,96.15,.7488,.9869,0,0,0,.2,.1);this.Ob=new a.N;this.Ob.parent=this;this.Ob.setTransform(186.4,101.15,.7488,.9869,0,0,0,.2,.1); +this.Rb=new a.N;this.Rb.parent=this;this.Rb.setTransform(174.4,105.15,.7488,.9869,0,0,0,.2,.1);this.Sb=new a.N;this.Sb.parent=this;this.Sb.setTransform(167.4,119.15,.7488,.9869,0,0,0,.2,.1);this.Tb=new a.N;this.Tb.parent=this;this.Tb.setTransform(173.4,140.75,.7488,1.6709,0,0,0,.2,.1);this.Ub=new a.N;this.Ub.parent=this;this.Ub.setTransform(169.4,153.75,.7488,1.6709,0,0,0,.2,.1);this.Zb=new a.N;this.Zb.parent=this;this.Zb.setTransform(164.4,159.75,.7488,1.6709,0,0,0,.2,.1);this.Wb=new a.N;this.Wb.parent= +this;this.Wb.setTransform(162.4,107.15,.7488,.6378,0,0,0,.2,.1);this.Xb=new a.N;this.Xb.parent=this;this.Xb.setTransform(89.4,130.85,.7488,3.6875,0,0,0,.1,.1);this.Yb=new a.N;this.Yb.parent=this;this.Yb.setTransform(212.45,181.5,9.5212,3.6875,0,0,0,.1,0);this.$b=new a.N;this.$b.parent=this;this.$b.setTransform(34.05,181.5,8.8743,3.6875,0,0,0,.1,0);this.ac=new a.N;this.ac.parent=this;this.ac.setTransform(122.55,1.1,21.4866,2.8846,0,0,0,.3,.1);this.bc=new a.N;this.bc.parent=this;this.bc.setTransform(282, +66.9,1,11.5265,0,0,0,0,.1);this.hc=new a.N;this.hc.parent=this;this.hc.setTransform(-39.6,68.35,1,11.5076,0,0,0,-.1,.2);this.jc=new a.N;this.jc.parent=this;this.jc.setTransform(40.3,88.15,.7488,.9869,0,0,0,.2,.1);this.kc=new a.N;this.kc.parent=this;this.kc.setTransform(80.3,106.15,.7488,.9869,0,0,0,.2,.1);this.lc=new a.N;this.lc.parent=this;this.lc.setTransform(90.3,108.15,.7488,.9869,0,0,0,.2,.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.lc},{t:this.kc},{t:this.jc},{t:this.hc},{t:this.bc}, +{t:this.ac},{t:this.$b},{t:this.Yb},{t:this.Xb},{t:this.Wb},{t:this.Zb},{t:this.Ub},{t:this.Tb},{t:this.Sb},{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb},{t:this.Pb},{t:this.Mb},{t:this.Lb},{t:this.Jb},{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa}, +{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.nc=new a.Player;this.nc.parent=this;this.nc.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.nc).wait(1));this.tc=new a.SZ;this.tc.parent=this;this.tc.setTransform(120,67.5);this.timeline.addTween(b.Tween.get(this.tc).wait(1)); +this.uc=new a.rTa;this.uc.parent=this;this.uc.setTransform(176,81.1,1,1,0,0,0,0,-3.4);this.xc=new a.qTa;this.xc.parent=this;this.xc.setTransform(69.35,80.95,1,1,0,0,0,0,-3.4);this.zc=new a.aja;this.zc.parent=this;this.zc.setTransform(-.1,80.15,1,1,0,0,0,-2.5,-13.4);this.Ac=new a.fja;this.Ac.parent=this;this.Ac.setTransform(227.15,95.1,1,1,0,0,0,-2.5,-11.2);this.Bc=new a.aja;this.Bc.parent=this;this.Bc.setTransform(143.9,22.05,1,1,0,0,0,-2.5,-13.4);this.yc=new a.fja;this.yc.parent=this;this.yc.setTransform(94.15, +26,1,1,0,0,0,-2.5,-11.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.yc},{t:this.Bc},{t:this.Ac},{t:this.zc},{t:this.xc},{t:this.uc}]}).wait(1));this.Dc=new a.Rfa;this.Dc.parent=this;this.Dc.setTransform(122.2,29.85);this.Ec=new a.Vea;this.Ec.parent=this;this.Ec.setTransform(120,169.15);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ec},{t:this.Dc}]}).wait(1));this.Fc=new a.zla;this.Fc.parent=this;this.Fc.setTransform(120,68,1,1,0,0,0,0,-90);this.timeline.addTween(b.Tween.get(this.Fc).wait(1))}).prototype= +k(a.Ala,new b.Rectangle(-55.4,-26.6,352.7,237.7),null);(a.yla=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(29.45,84.4,6.125,5.9073,0,0,0,.4,.2);this.g=new a.N;this.g.parent=this;this.g.setTransform(37.45,60.55,6.125,4.2133,0,0,0,.4,.2);this.i=new a.N;this.i.parent=this;this.i.setTransform(37.45, +135.2,6.125,2.8816,0,0,0,.4,.1);this.o=new a.N;this.o.parent=this;this.o.setTransform(138,-13.35,21.7401,1.3029,0,0,0,.6,.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(221.8,-2.9,10.1391,2.8846,0,0,0,.4,.1);this.O=new a.N;this.O.parent=this;this.O.setTransform(212.45,181.5,9.5212,3.6875,0,0,0,.1,0);this.$=new a.N;this.$.parent=this;this.$.setTransform(34.05,181.5,8.8743,3.6875,0,0,0,.1,0);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(28.8,-2.9,10.1391,2.8846,0,0,0,.4,.1);this.ta= +new a.N;this.ta.parent=this;this.ta.setTransform(197,92.95,6.3164,8.2212,0,0,0,.4,.1);this.va=new a.N;this.va.parent=this;this.va.setTransform(.85,68.35,5.9688,11.5076,0,0,0,.1,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.wa=new a.lha;this.wa.parent=this;this.wa.setTransform(120.65,23.5,1,1,0,0,0,0,-10);this.wa.alpha=0;this.ya=new a.mha;this.ya.parent=this; +this.ya.setTransform(120,137.5,1,1,0,0,0,0,-10);this.ya.alpha=0;this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ya},{t:this.wa}]}).wait(1));this.Aa=new a.Player;this.Aa.parent=this;this.Aa.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.Aa).wait(1));this.Ba=new a.pTa;this.Ba.parent=this;this.Ba.setTransform(118.05,75.35,1,1,0,0,0,0,-4.6);this.Da=new a.Qfa;this.Da.parent=this;this.Da.setTransform(120.3,28.05);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Da},{t:this.Ba}]}).wait(1)); +this.Ea=new a.B5;this.Ea.parent=this;this.Ea.setTransform(120,66);this.timeline.addTween(b.Tween.get(this.Ea).wait(1));this.Ga=new a.Mea;this.Ga.parent=this;this.Ga.setTransform(121.95,5.6,.8336,.6986);this.Ha=new a.Nea;this.Ha.parent=this;this.Ha.setTransform(119.55,168.6,.8606,1.032);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ha},{t:this.Ga}]}).wait(1));this.Ia=new a.Bla;this.Ia.parent=this;this.Ia.setTransform(120,65.9,1,1,0,0,0,0,-90.1);this.timeline.addTween(b.Tween.get(this.Ia).wait(1))}).prototype= +k(a.yla,new b.Rectangle(-56.2,-28.9,354.9,240),null);(a.Fka=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(204.05,57.1,.3122,.3122,.0084,0,0,.1,.3);this.g=new a.N;this.g.parent=this;this.g.setTransform(203.05,55.1,.3122,.3122,.0084,0,0,.1,.3);this.i=new a.N;this.i.parent=this;this.i.setTransform(202.05, +53.1,.3122,.3122,.0084,0,0,.1,.3);this.o=new a.N;this.o.parent=this;this.o.setTransform(201.05,51.1,.3122,.3122,.0084,0,0,.1,.3);this.H=new a.N;this.H.parent=this;this.H.setTransform(200.05,49.1,.3122,.3122,.0084,0,0,.1,.3);this.O=new a.N;this.O.parent=this;this.O.setTransform(199.05,47.1,.3122,.3122,.0084,0,0,.1,.3);this.$=new a.N;this.$.parent=this;this.$.setTransform(198.05,45.1,.3122,.3122,.0084,0,0,.1,.3);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(197.05,43.1,.3122,.3122,.0084, +0,0,.1,.3);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(196.05,41.1,.3122,.3122,.0084,0,0,.1,.3);this.va=new a.N;this.va.parent=this;this.va.setTransform(195.05,39.1,.3122,.3122,.0084,0,0,.1,.3);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(194.05,37.1,.3122,.3122,.0084,0,0,.1,.3);this.ya=new a.N;this.ya.parent=this;this.ya.setTransform(193.05,35.1,.3122,.3122,.0084,0,0,.1,.3);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(192.05,33.1,.3122,.3122,.0084,0,0,.1,.3); +this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(191.05,31.1,.3122,.3122,.0084,0,0,.1,.3);this.Da=new a.N;this.Da.parent=this;this.Da.setTransform(190.05,29.1,.3122,.3122,.0084,0,0,.1,.3);this.Ea=new a.N;this.Ea.parent=this;this.Ea.setTransform(189.05,27.1,.3122,.3122,.0084,0,0,.1,.3);this.Ga=new a.N;this.Ga.parent=this;this.Ga.setTransform(188.05,25.1,.3122,.3122,.0084,0,0,.1,.3);this.Ha=new a.N;this.Ha.parent=this;this.Ha.setTransform(187.05,23.1,.3122,.3122,.0084,0,0,.1,.3);this.Ia=new a.N; +this.Ia.parent=this;this.Ia.setTransform(186.05,21.1,.3122,.3122,.0084,0,0,.1,.3);this.Ja=new a.N;this.Ja.parent=this;this.Ja.setTransform(185.05,19.1,.3122,.3122,.0084,0,0,.1,.3);this.Ka=new a.N;this.Ka.parent=this;this.Ka.setTransform(184.05,17.1,.3122,.3122,.0084,0,0,.1,.3);this.La=new a.N;this.La.parent=this;this.La.setTransform(183.05,15.1,.3122,.3122,.0084,0,0,.1,.3);this.Ma=new a.N;this.Ma.parent=this;this.Ma.setTransform(182.05,13.1,.3122,.3122,.0084,0,0,.1,.3);this.Na=new a.N;this.Na.parent= +this;this.Na.setTransform(181.05,11.1,.3122,.3122,.0084,0,0,.1,.3);this.Oa=new a.N;this.Oa.parent=this;this.Oa.setTransform(180.05,9.1,.3122,.3122,.0084,0,0,.1,.3);this.Qa=new a.N;this.Qa.parent=this;this.Qa.setTransform(31.95,57.1,.3122,.3122,0,-.0084,180,.1,.3);this.Ua=new a.N;this.Ua.parent=this;this.Ua.setTransform(32.95,55.1,.3122,.3122,0,-.0084,180,.1,.3);this.Va=new a.N;this.Va.parent=this;this.Va.setTransform(33.95,53.1,.3122,.3122,0,-.0084,180,.1,.3);this.Wa=new a.N;this.Wa.parent=this;this.Wa.setTransform(34.95, +51.1,.3122,.3122,0,-.0084,180,.1,.3);this.Xa=new a.N;this.Xa.parent=this;this.Xa.setTransform(35.95,49.1,.3122,.3122,0,-.0084,180,.1,.3);this.Ya=new a.N;this.Ya.parent=this;this.Ya.setTransform(36.95,47.1,.3122,.3122,0,-.0084,180,.1,.3);this.Za=new a.N;this.Za.parent=this;this.Za.setTransform(37.95,45.1,.3122,.3122,0,-.0084,180,.1,.3);this.$a=new a.N;this.$a.parent=this;this.$a.setTransform(38.95,43.1,.3122,.3122,0,-.0084,180,.1,.3);this.ab=new a.N;this.ab.parent=this;this.ab.setTransform(39.95,41.1, +.3122,.3122,0,-.0084,180,.1,.3);this.hb=new a.N;this.hb.parent=this;this.hb.setTransform(40.95,39.1,.3122,.3122,0,-.0084,180,.1,.3);this.mb=new a.N;this.mb.parent=this;this.mb.setTransform(41.95,37.1,.3122,.3122,0,-.0084,180,.1,.3);this.nb=new a.N;this.nb.parent=this;this.nb.setTransform(42.95,35.1,.3122,.3122,0,-.0084,180,.1,.3);this.rb=new a.N;this.rb.parent=this;this.rb.setTransform(43.95,33.1,.3122,.3122,0,-.0084,180,.1,.3);this.tb=new a.N;this.tb.parent=this;this.tb.setTransform(44.95,31.1,.3122, +.3122,0,-.0084,180,.1,.3);this.ub=new a.N;this.ub.parent=this;this.ub.setTransform(45.95,29.1,.3122,.3122,0,-.0084,180,.1,.3);this.wb=new a.N;this.wb.parent=this;this.wb.setTransform(46.95,27.1,.3122,.3122,0,-.0084,180,.1,.3);this.yb=new a.N;this.yb.parent=this;this.yb.setTransform(47.95,25.1,.3122,.3122,0,-.0084,180,.1,.3);this.Ab=new a.N;this.Ab.parent=this;this.Ab.setTransform(48.95,23.1,.3122,.3122,0,-.0084,180,.1,.3);this.Cb=new a.N;this.Cb.parent=this;this.Cb.setTransform(49.95,21.1,.3122,.3122, +0,-.0084,180,.1,.3);this.Db=new a.N;this.Db.parent=this;this.Db.setTransform(50.95,19.1,.3122,.3122,0,-.0084,180,.1,.3);this.Eb=new a.N;this.Eb.parent=this;this.Eb.setTransform(51.95,17.1,.3122,.3122,0,-.0084,180,.1,.3);this.Fb=new a.N;this.Fb.parent=this;this.Fb.setTransform(52.95,15.1,.3122,.3122,0,-.0084,180,.1,.3);this.Gb=new a.N;this.Gb.parent=this;this.Gb.setTransform(53.95,13.1,.3122,.3122,0,-.0084,180,.1,.3);this.Hb=new a.N;this.Hb.parent=this;this.Hb.setTransform(54.95,11.1,.3122,.3122,0, +-.0084,180,.1,.3);this.Jb=new a.N;this.Jb.parent=this;this.Jb.setTransform(55.95,9.1,.3122,.3122,0,-.0084,180,.1,.3);this.Lb=new a.N;this.Lb.parent=this;this.Lb.setTransform(31.95,76.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Mb=new a.N;this.Mb.parent=this;this.Mb.setTransform(32.95,78.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Pb=new a.N;this.Pb.parent=this;this.Pb.setTransform(33.95,80.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Nb=new a.N;this.Nb.parent=this;this.Nb.setTransform(34.95,82.9,.3122,.3122, +0,-179.9916,180,.1,.3);this.Qb=new a.N;this.Qb.parent=this;this.Qb.setTransform(35.95,84.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Ob=new a.N;this.Ob.parent=this;this.Ob.setTransform(36.95,86.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Rb=new a.N;this.Rb.parent=this;this.Rb.setTransform(37.95,88.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Sb=new a.N;this.Sb.parent=this;this.Sb.setTransform(38.95,90.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Tb=new a.N;this.Tb.parent=this;this.Tb.setTransform(39.95,92.9, +.3122,.3122,0,-179.9916,180,.1,.3);this.Ub=new a.N;this.Ub.parent=this;this.Ub.setTransform(40.95,94.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Zb=new a.N;this.Zb.parent=this;this.Zb.setTransform(41.95,96.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Wb=new a.N;this.Wb.parent=this;this.Wb.setTransform(42.95,98.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Xb=new a.N;this.Xb.parent=this;this.Xb.setTransform(43.95,100.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Yb=new a.N;this.Yb.parent=this;this.Yb.setTransform(44.95, +102.9,.3122,.3122,0,-179.9916,180,.1,.3);this.$b=new a.N;this.$b.parent=this;this.$b.setTransform(45.95,104.9,.3122,.3122,0,-179.9916,180,.1,.3);this.ac=new a.N;this.ac.parent=this;this.ac.setTransform(46.95,106.9,.3122,.3122,0,-179.9916,180,.1,.3);this.bc=new a.N;this.bc.parent=this;this.bc.setTransform(47.95,108.9,.3122,.3122,0,-179.9916,180,.1,.3);this.hc=new a.N;this.hc.parent=this;this.hc.setTransform(48.95,110.9,.3122,.3122,0,-179.9916,180,.1,.3);this.jc=new a.N;this.jc.parent=this;this.jc.setTransform(49.95, +112.9,.3122,.3122,0,-179.9916,180,.1,.3);this.kc=new a.N;this.kc.parent=this;this.kc.setTransform(50.95,114.9,.3122,.3122,0,-179.9916,180,.1,.3);this.lc=new a.N;this.lc.parent=this;this.lc.setTransform(51.95,116.9,.3122,.3122,0,-179.9916,180,.1,.3);this.nc=new a.N;this.nc.parent=this;this.nc.setTransform(52.95,118.9,.3122,.3122,0,-179.9916,180,.1,.3);this.tc=new a.N;this.tc.parent=this;this.tc.setTransform(53.95,120.9,.3122,.3122,0,-179.9916,180,.1,.3);this.uc=new a.N;this.uc.parent=this;this.uc.setTransform(54.95, +122.9,.3122,.3122,0,-179.9916,180,.1,.3);this.xc=new a.N;this.xc.parent=this;this.xc.setTransform(55.95,124.9,.3122,.3122,0,-179.9916,180,.1,.3);this.zc=new a.N;this.zc.parent=this;this.zc.setTransform(205.05,76.9,.3122,.3122,0,179.9916,0,.1,.3);this.Ac=new a.N;this.Ac.parent=this;this.Ac.setTransform(204.05,78.9,.3122,.3122,0,179.9916,0,.1,.3);this.Bc=new a.N;this.Bc.parent=this;this.Bc.setTransform(203.05,80.9,.3122,.3122,0,179.9916,0,.1,.3);this.yc=new a.N;this.yc.parent=this;this.yc.setTransform(202.05, +82.9,.3122,.3122,0,179.9916,0,.1,.3);this.Dc=new a.N;this.Dc.parent=this;this.Dc.setTransform(201.05,84.9,.3122,.3122,0,179.9916,0,.1,.3);this.Ec=new a.N;this.Ec.parent=this;this.Ec.setTransform(200.05,86.9,.3122,.3122,0,179.9916,0,.1,.3);this.Fc=new a.N;this.Fc.parent=this;this.Fc.setTransform(199.05,88.9,.3122,.3122,0,179.9916,0,.1,.3);this.Gc=new a.N;this.Gc.parent=this;this.Gc.setTransform(198.05,90.9,.3122,.3122,0,179.9916,0,.1,.3);this.Jc=new a.N;this.Jc.parent=this;this.Jc.setTransform(197.05, +92.9,.3122,.3122,0,179.9916,0,.1,.3);this.Kc=new a.N;this.Kc.parent=this;this.Kc.setTransform(196.05,94.9,.3122,.3122,0,179.9916,0,.1,.3);this.Lc=new a.N;this.Lc.parent=this;this.Lc.setTransform(195.05,96.9,.3122,.3122,0,179.9916,0,.1,.3);this.Ic=new a.N;this.Ic.parent=this;this.Ic.setTransform(194.05,98.9,.3122,.3122,0,179.9916,0,.1,.3);this.Nc=new a.N;this.Nc.parent=this;this.Nc.setTransform(193.05,100.9,.3122,.3122,0,179.9916,0,.1,.3);this.Oc=new a.N;this.Oc.parent=this;this.Oc.setTransform(192.05, +102.9,.3122,.3122,0,179.9916,0,.1,.3);this.Rc=new a.N;this.Rc.parent=this;this.Rc.setTransform(191.05,104.9,.3122,.3122,0,179.9916,0,.1,.3);this.Uc=new a.N;this.Uc.parent=this;this.Uc.setTransform(190.05,106.9,.3122,.3122,0,179.9916,0,.1,.3);this.Xc=new a.N;this.Xc.parent=this;this.Xc.setTransform(189.05,108.9,.3122,.3122,0,179.9916,0,.1,.3);this.jd=new a.N;this.jd.parent=this;this.jd.setTransform(188.05,110.9,.3122,.3122,0,179.9916,0,.1,.3);this.$c=new a.N;this.$c.parent=this;this.$c.setTransform(187.05, +112.9,.3122,.3122,0,179.9916,0,.1,.3);this.kd=new a.N;this.kd.parent=this;this.kd.setTransform(186.05,114.9,.3122,.3122,0,179.9916,0,.1,.3);this.hd=new a.N;this.hd.parent=this;this.hd.setTransform(185.05,116.9,.3122,.3122,0,179.9916,0,.1,.3);this.ld=new a.N;this.ld.parent=this;this.ld.setTransform(184.05,118.9,.3122,.3122,0,179.9916,0,.1,.3);this.nd=new a.N;this.nd.parent=this;this.nd.setTransform(183.05,120.9,.3122,.3122,0,179.9916,0,.1,.3);this.od=new a.N;this.od.parent=this;this.od.setTransform(182.05, +122.9,.3122,.3122,0,179.9916,0,.1,.3);this.rd=new a.N;this.rd.parent=this;this.rd.setTransform(181.05,124.9,.3122,.3122,0,179.9916,0,.1,.3);this.vd=new a.N;this.vd.parent=this;this.vd.setTransform(26,71.8,1,2.2174,0,0,0,0,.2);this.wd=new a.N;this.wd.parent=this;this.wd.setTransform(210.5,153.85,9.224,3.6875,0,0,0,.1,0);this.xd=new a.N;this.xd.parent=this;this.xd.setTransform(30.1,153.85,9.224,3.6875,0,0,0,.1,0);this.Gd=new a.N;this.Gd.parent=this;this.Gd.setTransform(118.75,11.65,14.7419,2.0031,0, +0,0,.3,0);this.Hd=new a.N;this.Hd.parent=this;this.Hd.setTransform(212,71.8,1,2.2174,0,0,0,0,.2);this.Fd=new a.N;this.Fd.parent=this;this.Fd.setTransform(15.5,80.45,1,10.061,0,0,0,0,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Fd},{t:this.Hd},{t:this.Gd},{t:this.xd},{t:this.wd},{t:this.vd},{t:this.rd},{t:this.od},{t:this.nd},{t:this.ld},{t:this.hd},{t:this.kd},{t:this.$c},{t:this.jd},{t:this.Xc},{t:this.Uc},{t:this.Rc},{t:this.Oc},{t:this.Nc},{t:this.Ic},{t:this.Lc},{t:this.Kc},{t:this.Jc}, +{t:this.Gc},{t:this.Fc},{t:this.Ec},{t:this.Dc},{t:this.yc},{t:this.Bc},{t:this.Ac},{t:this.zc},{t:this.xc},{t:this.uc},{t:this.tc},{t:this.nc},{t:this.lc},{t:this.kc},{t:this.jc},{t:this.hc},{t:this.bc},{t:this.ac},{t:this.$b},{t:this.Yb},{t:this.Xb},{t:this.Wb},{t:this.Zb},{t:this.Ub},{t:this.Tb},{t:this.Sb},{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb},{t:this.Pb},{t:this.Mb},{t:this.Lb},{t:this.Jb},{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb}, +{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1)); +this.Jd=new a.L6;this.Jd.parent=this;this.Jd.setTransform(118,59.5,1,1,0,0,0,0,-21.5);this.Kd=new a.Player;this.Kd.parent=this;this.Kd.setTransform(119,118.85);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Kd},{t:this.Jd}]}).wait(1));this.Id=new a.W5;this.Id.parent=this;this.Id.setTransform(118.5,68.5);this.Ld=new a.Bm;this.Ld.parent=this;this.Ld.setTransform(120.95,142.15,1.472,1,0,0,0,.1,0);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ld},{t:this.Id}]}).wait(1));this.Md= +new a.AZa;this.Md.parent=this;this.Md.setTransform(143.05,52.7,1,1,0,0,0,0,-.6);this.timeline.addTween(b.Tween.get(this.Md).wait(1));this.Nd=new a.Ex;this.Nd.parent=this;this.Nd.setTransform(182,51.15,1,1,0,0,0,0,-14);this.Od=new a.Ex;this.Od.parent=this;this.Od.setTransform(52,49.15,1,1,0,0,180,0,-14);this.Pd=new a.xS;this.Pd.parent=this;this.Pd.setTransform(142.7,90.05,1,1,0,0,0,0,-1);this.Qd=new a.ym;this.Qd.parent=this;this.Qd.setTransform(82.5,44.15);this.Rd=new a.ym;this.Rd.parent=this;this.Rd.setTransform(82.5, +78);this.Td=new a.b_;this.Td.parent=this;this.Td.setTransform(84.35,70.3,1,1,0,0,0,-1,2.2);this.Ud=new a.Ex;this.Ud.parent=this;this.Ud.setTransform(42,69.15,1,1,0,0,180,0,-14);this.Vd=new a.Ex;this.Vd.parent=this;this.Vd.setTransform(192,71.15,1,1,0,0,0,0,-14);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Vd},{t:this.Ud},{t:this.Td},{t:this.Rd},{t:this.Qd},{t:this.Pd},{t:this.Od},{t:this.Nd}]}).wait(1));this.he=new a.kna;this.he.parent=this;this.he.setTransform(-41,-22);this.timeline.addTween(b.Tween.get(this.he).wait(1))}).prototype= +k(a.Fka,new b.Rectangle(-44.4,-22,327.59999999999997,205.4),null);(a.mka=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(138,-13.35,21.7401,1.3029,0,0,0,.6,.1);this.g=new a.N;this.g.parent=this;this.g.setTransform(221.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.i=new a.N;this.i.parent=this;this.i.setTransform(212.45, +181.5,9.5212,3.6875,0,0,0,.1,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(34.05,181.5,8.8743,3.6875,0,0,0,.1,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(28.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.O=new a.N;this.O.parent=this;this.O.setTransform(243.45,66.9,6.125,11.5265,0,0,0,.4,.1);this.$=new a.N;this.$.parent=this;this.$.setTransform(.85,68.35,5.9688,11.5076,0,0,0,.1,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i}, +{t:this.g},{t:this.instance}]}).wait(1));this.ka=new a.Vga;this.ka.parent=this;this.ka.setTransform(120.65,23.5,1,1,0,0,0,0,-10);this.ka.alpha=0;this.ta=new a.Uga;this.ta.parent=this;this.ta.setTransform(120,137.5,1,1,0,0,0,0,-10);this.ta.alpha=0;this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ta},{t:this.ka}]}).wait(1));this.va=new a.Player;this.va.parent=this;this.va.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.va).wait(1));this.wa=new a.fM;this.wa.parent=this;this.wa.setTransform(120, +66);this.timeline.addTween(b.Tween.get(this.wa).wait(1));this.ya=new a.EC;this.ya.parent=this;this.ya.setTransform(84,128,1,1,0,0,0,0,-13);this.Aa=new a.EC;this.Aa.parent=this;this.Aa.setTransform(84,84,1,1,0,0,0,0,-13);this.Ba=new a.EC;this.Ba.parent=this;this.Ba.setTransform(84,43,1,1,0,0,0,0,-13);this.Da=new a.EC;this.Da.parent=this;this.Da.setTransform(157,128,1,1,0,0,180,0,-13);this.Ea=new a.EC;this.Ea.parent=this;this.Ea.setTransform(157,83.5,1,1,0,0,180,0,-13);this.Ga=new a.EC;this.Ga.parent= +this;this.Ga.setTransform(157,43,1,1,0,0,180,0,-13);this.Ha=new a.Gea;this.Ha.parent=this;this.Ha.setTransform(121.95,5.6,.8336,.6986);this.Ia=new a.Fea;this.Ia.parent=this;this.Ia.setTransform(119.55,168.6,.8606,1.032);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya}]}).wait(1));this.Ja=new a.aT;this.Ja.parent=this;this.Ja.setTransform(120,66);this.Ka=new a.LS;this.Ka.parent=this;this.Ka.setTransform(-40, +-24);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ka},{t:this.Ja}]}).wait(1))}).prototype=k(a.mka,new b.Rectangle(-56.2,-26.6,354.9,237.7),null);(a.Jja=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(188.65,35,.5586,6.9372,0,0,0,.2,.2);this.g=new a.N;this.g.parent=this;this.g.setTransform(53.65, +35,.5586,6.9372,0,0,0,.2,.2);this.i=new a.N;this.i.parent=this;this.i.setTransform(22,-3.95,4.256,2.2045,0,0,0,.2,.2);this.o=new a.N;this.o.parent=this;this.o.setTransform(-26,12.6,4.256,4.3143,0,0,0,.2,.2);this.H=new a.N;this.H.parent=this;this.H.setTransform(269.5,67.6,1,11.8842,0,0,0,0,.2);this.O=new a.N;this.O.parent=this;this.O.setTransform(213,145.1,.3125,.3126,0,0,180,0,.3);this.$=new a.N;this.$.parent=this;this.$.setTransform(214,144.1,.3125,.3126,0,0,180,0,.3);this.ka=new a.N;this.ka.parent= +this;this.ka.setTransform(215,143.1,.3125,.3126,0,0,180,0,.3);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(217,142.1,.3125,.3126,0,0,180,0,.3);this.va=new a.N;this.va.parent=this;this.va.setTransform(218,141.1,.3125,.3126,0,0,180,0,.3);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(219,140.1,.3125,.3126,0,0,180,0,.3);this.ya=new a.N;this.ya.parent=this;this.ya.setTransform(220,139.1,.3125,.3126,0,0,180,0,.3);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(222,138.1, +.3125,.3126,0,0,180,0,.3);this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(223,137.1,.3125,.3126,0,0,180,0,.3);this.Da=new a.N;this.Da.parent=this;this.Da.setTransform(224,136.1,.3125,.3126,0,0,180,0,.3);this.Ea=new a.N;this.Ea.parent=this;this.Ea.setTransform(225,135.1,.3125,.3126,0,0,180,0,.3);this.Ga=new a.N;this.Ga.parent=this;this.Ga.setTransform(226,134.1,.3125,.3126,0,0,180,0,.3);this.Ha=new a.N;this.Ha.parent=this;this.Ha.setTransform(228,133.1,.3125,.3126,0,0,180,0,.3);this.Ia=new a.N; +this.Ia.parent=this;this.Ia.setTransform(229,132.1,.3125,.3126,0,0,180,0,.3);this.Ja=new a.N;this.Ja.parent=this;this.Ja.setTransform(230,131.1,.3125,.3126,0,0,180,0,.3);this.Ka=new a.N;this.Ka.parent=this;this.Ka.setTransform(231,130.1,.3125,.3126,0,0,180,0,.3);this.La=new a.N;this.La.parent=this;this.La.setTransform(233,129.1,.3125,.3126,0,0,180,0,.3);this.Ma=new a.N;this.Ma.parent=this;this.Ma.setTransform(234,128.1,.3125,.3126,0,0,180,0,.3);this.Na=new a.N;this.Na.parent=this;this.Na.setTransform(235, +127.1,.3125,.3126,0,0,180,0,.3);this.Oa=new a.N;this.Oa.parent=this;this.Oa.setTransform(236,126.1,.3125,.3126,0,0,180,0,.3);this.Qa=new a.N;this.Qa.parent=this;this.Qa.setTransform(238,125.1,.3125,.3126,0,0,180,0,.3);this.Ua=new a.N;this.Ua.parent=this;this.Ua.setTransform(239,124.1,.3125,.3126,0,0,180,0,.3);this.Va=new a.N;this.Va.parent=this;this.Va.setTransform(240,123.1,.3125,.3126,0,0,180,0,.3);this.Wa=new a.N;this.Wa.parent=this;this.Wa.setTransform(241,122.1,.3125,.3126,0,0,180,0,.3);this.Xa= +new a.N;this.Xa.parent=this;this.Xa.setTransform(243,121.1,.3125,.3126,0,0,180,0,.3);this.Ya=new a.N;this.Ya.parent=this;this.Ya.setTransform(244,120.1,.3125,.3126,0,0,180,0,.3);this.Za=new a.N;this.Za.parent=this;this.Za.setTransform(245,119.1,.3125,.3126,0,0,180,0,.3);this.$a=new a.N;this.$a.parent=this;this.$a.setTransform(246,118.1,.3125,.3126,0,0,180,0,.3);this.ab=new a.N;this.ab.parent=this;this.ab.setTransform(248,117.1,.3125,.3126,0,0,180,0,.3);this.hb=new a.N;this.hb.parent=this;this.hb.setTransform(249, +116.1,.3125,.3126,0,0,180,0,.3);this.mb=new a.N;this.mb.parent=this;this.mb.setTransform(250,115.1,.3125,.3126,0,0,180,0,.3);this.nb=new a.N;this.nb.parent=this;this.nb.setTransform(251,114.1,.3125,.3126,0,0,180,0,.3);this.rb=new a.N;this.rb.parent=this;this.rb.setTransform(252,113.1,.3125,.3126,0,0,180,0,.3);this.tb=new a.N;this.tb.parent=this;this.tb.setTransform(254,112.1,.3125,.3126,0,0,180,0,.3);this.ub=new a.N;this.ub.parent=this;this.ub.setTransform(255,111.1,.3125,.3126,0,0,180,0,.3);this.wb= +new a.N;this.wb.parent=this;this.wb.setTransform(256,110.1,.3125,.3126,0,0,180,0,.3);this.yb=new a.N;this.yb.parent=this;this.yb.setTransform(257,109.1,.3125,.3126,0,0,180,0,.3);this.Ab=new a.N;this.Ab.parent=this;this.Ab.setTransform(259,108.1,.3125,.3126,0,0,180,0,.3);this.Cb=new a.N;this.Cb.parent=this;this.Cb.setTransform(260,107.1,.3125,.3126,0,0,180,0,.3);this.Db=new a.N;this.Db.parent=this;this.Db.setTransform(261,106.1,.3125,.3126,0,0,180,0,.3);this.Eb=new a.N;this.Eb.parent=this;this.Eb.setTransform(27, +145.1,.3125,.3126,0,0,0,0,.3);this.Fb=new a.N;this.Fb.parent=this;this.Fb.setTransform(26,144.1,.3125,.3126,0,0,0,0,.3);this.Gb=new a.N;this.Gb.parent=this;this.Gb.setTransform(25,143.1,.3125,.3126,0,0,0,0,.3);this.Hb=new a.N;this.Hb.parent=this;this.Hb.setTransform(23,142.1,.3125,.3126,0,0,0,0,.3);this.Jb=new a.N;this.Jb.parent=this;this.Jb.setTransform(22,141.1,.3125,.3126,0,0,0,0,.3);this.Lb=new a.N;this.Lb.parent=this;this.Lb.setTransform(21,140.1,.3125,.3126,0,0,0,0,.3);this.Mb=new a.N;this.Mb.parent= +this;this.Mb.setTransform(20,139.1,.3125,.3126,0,0,0,0,.3);this.Pb=new a.N;this.Pb.parent=this;this.Pb.setTransform(18,138.1,.3125,.3126,0,0,0,0,.3);this.Nb=new a.N;this.Nb.parent=this;this.Nb.setTransform(17,137.1,.3125,.3126,0,0,0,0,.3);this.Qb=new a.N;this.Qb.parent=this;this.Qb.setTransform(16,136.1,.3125,.3126,0,0,0,0,.3);this.Ob=new a.N;this.Ob.parent=this;this.Ob.setTransform(15,135.1,.3125,.3126,0,0,0,0,.3);this.Rb=new a.N;this.Rb.parent=this;this.Rb.setTransform(14,134.1,.3125,.3126,0,0, +0,0,.3);this.Sb=new a.N;this.Sb.parent=this;this.Sb.setTransform(12,133.1,.3125,.3126,0,0,0,0,.3);this.Tb=new a.N;this.Tb.parent=this;this.Tb.setTransform(11,132.1,.3125,.3126,0,0,0,0,.3);this.Ub=new a.N;this.Ub.parent=this;this.Ub.setTransform(10,131.1,.3125,.3126,0,0,0,0,.3);this.Zb=new a.N;this.Zb.parent=this;this.Zb.setTransform(9,130.1,.3125,.3126,0,0,0,0,.3);this.Wb=new a.N;this.Wb.parent=this;this.Wb.setTransform(7,129.1,.3125,.3126,0,0,0,0,.3);this.Xb=new a.N;this.Xb.parent=this;this.Xb.setTransform(6, +128.1,.3125,.3126,0,0,0,0,.3);this.Yb=new a.N;this.Yb.parent=this;this.Yb.setTransform(5,127.1,.3125,.3126,0,0,0,0,.3);this.$b=new a.N;this.$b.parent=this;this.$b.setTransform(4,126.1,.3125,.3126,0,0,0,0,.3);this.ac=new a.N;this.ac.parent=this;this.ac.setTransform(2,125.1,.3125,.3126,0,0,0,0,.3);this.bc=new a.N;this.bc.parent=this;this.bc.setTransform(1,124.1,.3125,.3126,0,0,0,0,.3);this.hc=new a.N;this.hc.parent=this;this.hc.setTransform(0,123.1,.3125,.3126,0,0,0,0,.3);this.jc=new a.N;this.jc.parent= +this;this.jc.setTransform(-1,122.1,.3125,.3126,0,0,0,0,.3);this.kc=new a.N;this.kc.parent=this;this.kc.setTransform(-3,121.1,.3125,.3126,0,0,0,0,.3);this.lc=new a.N;this.lc.parent=this;this.lc.setTransform(-4,120.1,.3125,.3126,0,0,0,0,.3);this.nc=new a.N;this.nc.parent=this;this.nc.setTransform(-5,119.1,.3125,.3126,0,0,0,0,.3);this.tc=new a.N;this.tc.parent=this;this.tc.setTransform(-6,118.1,.3125,.3126,0,0,0,0,.3);this.uc=new a.N;this.uc.parent=this;this.uc.setTransform(-8,117.1,.3125,.3126,0,0, +0,0,.3);this.xc=new a.N;this.xc.parent=this;this.xc.setTransform(-9,116.1,.3125,.3126,0,0,0,0,.3);this.zc=new a.N;this.zc.parent=this;this.zc.setTransform(-10,115.1,.3125,.3126,0,0,0,0,.3);this.Ac=new a.N;this.Ac.parent=this;this.Ac.setTransform(-11,114.1,.3125,.3126,0,0,0,0,.3);this.Bc=new a.N;this.Bc.parent=this;this.Bc.setTransform(-12,113.1,.3125,.3126,0,0,0,0,.3);this.yc=new a.N;this.yc.parent=this;this.yc.setTransform(-14,112.1,.3125,.3126,0,0,0,0,.3);this.Dc=new a.N;this.Dc.parent=this;this.Dc.setTransform(-15, +111.1,.3125,.3126,0,0,0,0,.3);this.Ec=new a.N;this.Ec.parent=this;this.Ec.setTransform(-16,110.1,.3125,.3126,0,0,0,0,.3);this.Fc=new a.N;this.Fc.parent=this;this.Fc.setTransform(-17,109.1,.3125,.3126,0,0,0,0,.3);this.Gc=new a.N;this.Gc.parent=this;this.Gc.setTransform(-19,108.1,.3125,.3126,0,0,0,0,.3);this.Jc=new a.N;this.Jc.parent=this;this.Jc.setTransform(-20,107.1,.3125,.3126,0,0,0,0,.3);this.Kc=new a.N;this.Kc.parent=this;this.Kc.setTransform(-21,106.1,.3125,.3126,0,0,0,0,.3);this.Lc=new a.N; +this.Lc.parent=this;this.Lc.setTransform(163.95,12.45,15.9093,4.3143,0,0,0,.2,.2);this.Ic=new a.N;this.Ic.parent=this;this.Ic.setTransform(221.45,172.35,9.4565,3.25,0,0,0,.2,.1);this.Nc=new a.N;this.Nc.parent=this;this.Nc.setTransform(27.25,172.35,8.7091,3.25,0,0,0,.1,.1);this.Oc=new a.N;this.Oc.parent=this;this.Oc.setTransform(-27.5,67.6,1,11.8842,0,0,0,0,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Oc},{t:this.Nc},{t:this.Ic},{t:this.Lc},{t:this.Kc},{t:this.Jc},{t:this.Gc},{t:this.Fc}, +{t:this.Ec},{t:this.Dc},{t:this.yc},{t:this.Bc},{t:this.Ac},{t:this.zc},{t:this.xc},{t:this.uc},{t:this.tc},{t:this.nc},{t:this.lc},{t:this.kc},{t:this.jc},{t:this.hc},{t:this.bc},{t:this.ac},{t:this.$b},{t:this.Yb},{t:this.Xb},{t:this.Wb},{t:this.Zb},{t:this.Ub},{t:this.Tb},{t:this.Sb},{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb},{t:this.Pb},{t:this.Mb},{t:this.Lb},{t:this.Jb},{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub}, +{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.Rc=new a.yW;this.Rc.parent= +this;this.Rc.setTransform(120.5,129.8,1,1,0,0,0,0,-10);this.Uc=new a.xW;this.Uc.parent=this;this.Uc.setTransform(18.5,64.8,1,1,0,0,0,0,-10);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Uc},{t:this.Rc}]}).wait(1));this.Xc=new a.Player;this.Xc.parent=this;this.Xc.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.Xc).wait(1));this.jd=new a.Oja;this.jd.parent=this;this.jd.setTransform(120,67.5);this.timeline.addTween(b.Tween.get(this.jd).wait(1));this.$c=new a.DSa;this.$c.parent= +this;this.$c.setTransform(121,35.5,1,1,0,0,0,0,-35);this.kd=new a.zTa;this.kd.parent=this;this.kd.setTransform(204,61.85,1,1,0,0,0,0,-11);this.hd=new a.dTa;this.hd.parent=this;this.hd.setTransform(158,113,1,1,0,0,0,0,-2.1);this.ld=new a.cTa;this.ld.parent=this;this.ld.setTransform(-5,80.15,1,1,0,0,0,0,-2.1);this.nd=new a.SSa;this.nd.parent=this;this.nd.setTransform(31,112.15,1,1,0,0,0,0,-2.1);this.od=new a.USa;this.od.parent=this;this.od.setTransform(80,113,1,1,0,0,180,0,-2.1);this.rd=new a.TSa;this.rd.parent= +this;this.rd.setTransform(208,114.15,1,1,0,0,180,0,-2.1);this.vd=new a.RSa;this.vd.parent=this;this.vd.setTransform(239,53,1,1,0,0,180,0,-2.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.vd},{t:this.rd},{t:this.od},{t:this.nd},{t:this.ld},{t:this.hd},{t:this.kd},{t:this.$c}]}).wait(1));this.wd=new a.Sea;this.wd.parent=this;this.wd.setTransform(20.05,30.15,.6944,.8606,0,0,0,.1,.2);this.xd=new a.eca;this.xd.parent=this;this.xd.setTransform(183,114.15,1,1,0,0,0,0,-12.5);this.Gd=new a.J1; +this.Gd.parent=this;this.Gd.setTransform(183,105.15,1,1,0,0,0,0,-6);this.Hd=new a.J1;this.Hd.parent=this;this.Hd.setTransform(55,104,1,1,0,0,0,0,-6);this.Fd=new a.dca;this.Fd.parent=this;this.Fd.setTransform(55.65,112.15,1,1,0,0,0,0,-12.5);this.Jd=new a.Ija;this.Jd.parent=this;this.Jd.setTransform(121,45.5,1,1,0,0,0,0,-18.5);this.Kd=new a.Tea;this.Kd.parent=this;this.Kd.setTransform(120,175.15);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Kd},{t:this.Jd},{t:this.Fd},{t:this.Hd},{t:this.Gd}, +{t:this.xd},{t:this.wd}]}).wait(1));this.Id=new a.OVa;this.Id.parent=this;this.Id.setTransform(-40,-22.5);this.timeline.addTween(b.Tween.get(this.Id).wait(1))}).prototype=k(a.Jja,new b.Rectangle(-60.8,-30,355.90000000000003,228.1),null);(a.iqa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(53.75, +61.7,.4371,.8783,0,0,0,.1,.2);this.g=new a.N;this.g.parent=this;this.g.setTransform(153.4,61.7,.4371,.8783,0,0,0,.1,.2);this.i=new a.N;this.i.parent=this;this.i.setTransform(187.9,157.5,6.4688,3.6875,0,0,0,.1,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(52.9,157.5,6.4688,3.6875,0,0,0,.1,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(146.75,36.05,14.7419,2.0031,0,0,0,.3,0);this.O=new a.N;this.O.parent=this;this.O.setTransform(199,67.05,1,8.5625,0,0,0,0,.1);this.$=new a.N;this.$.parent= +this;this.$.setTransform(40.5,67.35,1,8.5625,0,0,0,0,.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.ka=new a.Player;this.ka.parent=this;this.ka.setTransform(121,121);this.timeline.addTween(b.Tween.get(this.ka).wait(1));this.ta=new a.v3;this.ta.parent=this;this.ta.setTransform(42,27.5);this.timeline.addTween(b.Tween.get(this.ta).wait(1));this.va=new a.PQa;this.va.parent=this;this.va.setTransform(72.05, +109.05,1,1,0,0,0,0,-6.1);this.wa=new a.ESa;this.wa.parent=this;this.wa.setTransform(171.4,112.05,1,1,0,0,0,0,-6.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.wa},{t:this.va}]}).wait(1));this.ya=new a.pX;this.ya.parent=this;this.ya.setTransform(72.05,73,1,1,0,0,0,0,-3.9);this.Aa=new a.pX;this.Aa.parent=this;this.Aa.setTransform(171.4,73,1,1,0,0,0,0,-3.9);this.Ba=new a.Bm;this.Ba.parent=this;this.Ba.setTransform(120,151.75);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ba}, +{t:this.Aa},{t:this.ya}]}).wait(1));this.Da=new a.oVa;this.Da.parent=this;this.Da.setTransform(42,25);this.timeline.addTween(b.Tween.get(this.Da).wait(1))}).prototype=k(a.iqa,new b.Rectangle(.6,-2.4,259.4,189.5),null);(a.hqa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(153.5,62.5,.4371,.8783,0, +0,0,.1,.2);this.g=new a.N;this.g.parent=this;this.g.setTransform(187.9,157.5,6.4688,3.6875,0,0,0,.1,0);this.i=new a.N;this.i.parent=this;this.i.setTransform(52.9,157.5,6.4688,3.6875,0,0,0,.1,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(146.75,36.05,14.7419,2.0031,0,0,0,.3,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(199,67.05,1,8.5625,0,0,0,0,.1);this.O=new a.N;this.O.parent=this;this.O.setTransform(40.5,67.35,1,8.5625,0,0,0,0,.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.O}, +{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.$=new a.Player;this.$.parent=this;this.$.setTransform(121,121);this.timeline.addTween(b.Tween.get(this.$).wait(1));this.ka=new a.v3;this.ka.parent=this;this.ka.setTransform(42,27.5);this.timeline.addTween(b.Tween.get(this.ka).wait(1));this.ta=new a.wZa;this.ta.parent=this;this.ta.setTransform(140.05,62.05,1,1,0,0,0,0,-17);this.timeline.addTween(b.Tween.get(this.ta).wait(1));this.va=new a.Eja;this.va.parent=this;this.va.setTransform(87.75, +88.65,1,1,0,0,0,0,-3.9);this.wa=new a.Dja;this.wa.parent=this;this.wa.setTransform(165.55,117.5,1,1,0,0,0,0,-5);this.ya=new a.pX;this.ya.parent=this;this.ya.setTransform(171.4,72.95,1,1,0,0,0,0,-3.9);this.Aa=new a.Gja;this.Aa.parent=this;this.Aa.setTransform(67.05,60.65,1,1,0,0,0,0,-3.9);this.Ba=new a.Fja;this.Ba.parent=this;this.Ba.setTransform(73.4,123.3,1,1,0,0,0,0,-3.9);this.Da=new a.Bm;this.Da.parent=this;this.Da.setTransform(120,152.75);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Da}, +{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va}]}).wait(1));this.Ea=new a.hVa;this.Ea.parent=this;this.Ea.setTransform(42,25.5);this.timeline.addTween(b.Tween.get(this.Ea).wait(1))}).prototype=k(a.hqa,new b.Rectangle(.6,-2.4,259.4,189.5),null);(a.sja=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(126.65, +-2.1,20.6949,2.6849,0,0,0,.2,.1);this.g=new a.hC;this.g.parent=this;this.g.setTransform(200,70.85,1,1.3701,0,0,0,0,-68.5);this.i=new a.N;this.i.parent=this;this.i.setTransform(217.1,173.85,9.9871,3.6875,0,0,0,.2,.1);this.o=new a.N;this.o.parent=this;this.o.setTransform(31.45,173.85,9.1978,3.6875,0,0,0,.1,.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(41.5,67.6,1,11.8842,0,0,0,0,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1)); +this.O=new a.Player;this.O.parent=this;this.O.setTransform(121,140);this.timeline.addTween(b.Tween.get(this.O).wait(1));this.$=new a.tja;this.$.parent=this;this.$.setTransform(120,67,1,1,0,0,0,0,-90);this.timeline.addTween(b.Tween.get(this.$).wait(1));this.ka=new a.yTa;this.ka.parent=this;this.ka.setTransform(71.75,36);this.ta=new a.CSa;this.ta.parent=this;this.ta.setTransform(121.8,32,1,1,0,0,0,-2.2,-.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ta},{t:this.ka}]}).wait(1));this.va= +new a.YSa;this.va.parent=this;this.va.setTransform(157.05,121.35,1,1,0,0,180,0,-4.6);this.wa=new a.Jx;this.wa.parent=this;this.wa.setTransform(88.65,24.5,1,1,0,0,0,0,-4);this.ya=new a.Jx;this.ya.parent=this;this.ya.setTransform(96,.15,1,1,0,0,0,0,-4);this.Aa=new a.Jx;this.Aa.parent=this;this.Aa.setTransform(96,4.15,1,1,0,0,0,0,-4);this.Ba=new a.Jx;this.Ba.parent=this;this.Ba.setTransform(146,-4.15,1,1,0,0,0,0,-4);this.Da=new a.Jx;this.Da.parent=this;this.Da.setTransform(146,-.15,1,1,0,0,0,0,-4);this.Ea= +new a.Jx;this.Ea.parent=this;this.Ea.setTransform(146,3.85,1,1,0,0,0,0,-4);this.Ga=new a.Jx;this.Ga.parent=this;this.Ga.setTransform(146,7.85,1,1,0,0,0,0,-4);this.Ha=new a.Jx;this.Ha.parent=this;this.Ha.setTransform(146,11.85,1,1,0,0,0,0,-4);this.Ia=new a.Jx;this.Ia.parent=this;this.Ia.setTransform(95.35,17.85,1,1,0,0,0,0,-4);this.Ja=new a.Jx;this.Ja.parent=this;this.Ja.setTransform(91.35,11.85,1,1,0,0,0,0,-4);this.Ka=new a.Jx;this.Ka.parent=this;this.Ka.setTransform(91.35,44.5,1,1,0,0,0,0,-4);this.La= +new a.Jx;this.La.parent=this;this.La.setTransform(96,84.85,1,1,0,0,0,0,-4);this.Ma=new a.Jx;this.Ma.parent=this;this.Ma.setTransform(139.65,84.85,1,1,0,0,0,0,-4);this.Na=new a.Jx;this.Na.parent=this;this.Na.setTransform(148,48.15,1,1,0,0,0,0,-4);this.Oa=new a.iK;this.Oa.parent=this;this.Oa.setTransform(157,110.5,1,1,0,0,180,0,-11.5);this.Qa=new a.iK;this.Qa.parent=this;this.Qa.setTransform(167,80.5,1,1,0,0,180,0,-11.5);this.Ua=new a.iK;this.Ua.parent=this;this.Ua.setTransform(167,50.5,1,1,0,0,180, +0,-11.5);this.Va=new a.iK;this.Va.parent=this;this.Va.setTransform(167,20.5,1,1,0,0,180,0,-11.5);this.Wa=new a.iK;this.Wa.parent=this;this.Wa.setTransform(82,110.5,1,1,0,0,0,0,-11.5);this.Xa=new a.iK;this.Xa.parent=this;this.Xa.setTransform(72,80.5,1,1,0,0,0,0,-11.5);this.Ya=new a.iK;this.Ya.parent=this;this.Ya.setTransform(72,50.5,1,1,0,0,0,0,-11.5);this.Za=new a.iK;this.Za.parent=this;this.Za.setTransform(72,20.5,1,1,0,0,0,0,-11.5);this.$a=new a.rja;this.$a.parent=this;this.$a.setTransform(113, +2.5,1,1,0,0,0,0,-11.5);this.ab=new a.qja;this.ab.parent=this;this.ab.setTransform(119.5,-.5,1,1,0,0,0,0,-10.5);this.hb=new a.pja;this.hb.parent=this;this.hb.setTransform(119.5,63.5,1,1,0,0,0,0,-58.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da}, +{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va}]}).wait(1));this.mb=new a.uUa;this.mb.parent=this;this.mb.setTransform(-40,-23.15);this.nb=new a.Bm;this.nb.parent=this;this.nb.setTransform(119.5,165.85,1.25,1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.nb},{t:this.mb}]}).wait(1))}).prototype=k(a.sja,new b.Rectangle(-42.8,-30,337.6,233.1),null);(a.Pia=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); +this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(187.9,157.5,6.4688,3.6875,0,0,0,.1,0);this.g=new a.N;this.g.parent=this;this.g.setTransform(52.9,157.5,6.4688,3.6875,0,0,0,.1,0);this.i=new a.N;this.i.parent=this;this.i.setTransform(146.75,41.05,14.7419,2.0031,0,0,0,.3,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(220,67.05,1,8.5625,0,0,0,0,.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(19.5,67.35,1,8.5625,0,0,0,0,.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.H}, +{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.O=new a.Player;this.O.parent=this;this.O.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.O).wait(1));this.$=new a.kN;this.$.parent=this;this.$.setTransform(20,18);this.timeline.addTween(b.Tween.get(this.$).wait(1));this.ka=new a.Bm;this.ka.parent=this;this.ka.setTransform(120,152.75);this.timeline.addTween(b.Tween.get(this.ka).wait(1));this.ta=new a.wSa;this.ta.parent=this;this.ta.setTransform(179,66.55,1,1,0,0,0,0, +-5);this.va=new a.xSa;this.va.parent=this;this.va.setTransform(58.65,66.55,1,1,0,0,0,0,-5);this.wa=new a.F_;this.wa.parent=this;this.wa.setTransform(120,-81.5,1,1,0,0,0,0,-58.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.wa},{t:this.va},{t:this.ta}]}).wait(1))}).prototype=k(a.Pia,new b.Rectangle(.6,-2.4,259.4,189.5),null);(a.Oia=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); +this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(183.75,181.5,13.2106,3.6875,0,0,0,.1,0);this.g=new a.N;this.g.parent=this;this.g.setTransform(34.05,181.5,8.8743,3.6875,0,0,0,.1,0);this.i=new a.N;this.i.parent=this;this.i.setTransform(122.55,-47.9,21.4866,2.8846,0,0,0,.3,.1);this.o=new a.N;this.o.parent=this;this.o.setTransform(282,66.9,1,11.5265,0,0,0,0,.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(-39.6,68.35,1,11.5076,0,0,0,-.1,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.H}, +{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.O=new a.Player;this.O.parent=this;this.O.setTransform(121,111);this.timeline.addTween(b.Tween.get(this.O).wait(1));this.$=new a.mPa;this.$.parent=this;this.$.setTransform(120,0,1,1,0,0,0,0,-10.5);this.ka=new a.sPa;this.ka.parent=this;this.ka.setTransform(120,26,1,1,0,0,0,0,-15.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ka},{t:this.$}]}).wait(1));this.ta=new a.K9a;this.ta.parent=this;this.ta.setTransform(120,148.55, +1,1,0,0,0,0,-28.6);this.timeline.addTween(b.Tween.get(this.ta).wait(1));this.va=new a.iPa;this.va.parent=this;this.va.setTransform(120,67,1,1,0,0,0,0,-90);this.timeline.addTween(b.Tween.get(this.va).wait(1))}).prototype=k(a.Oia,new b.Rectangle(-55.4,-71.3,345.4,282.4),null);(a.dqa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent= +this;this.instance.setTransform(198.9,152.5,6.4688,3.6875,0,0,0,.1,0);this.g=new a.N;this.g.parent=this;this.g.setTransform(63.9,152.5,6.4688,3.6875,0,0,0,.1,0);this.i=new a.N;this.i.parent=this;this.i.setTransform(146.75,61.05,14.7419,2.0031,0,0,0,.3,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(210,67.05,1,8.5625,0,0,0,0,.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(49.5,67.35,1,8.5625,0,0,0,0,.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.H},{t:this.o},{t:this.i}, +{t:this.g},{t:this.instance}]}).wait(1));this.O=new a.Player;this.O.parent=this;this.O.setTransform(130,118);this.timeline.addTween(b.Tween.get(this.O).wait(1));this.$=new a.M0;this.$.parent=this;this.$.setTransform(130,86,1,1,0,0,180,0,-41.5);this.timeline.addTween(b.Tween.get(this.$).wait(1));this.ka=new a.bZa;this.ka.parent=this;this.ka.setTransform(146.05,83.4);this.timeline.addTween(b.Tween.get(this.ka).wait(1));this.ta=new a.L0;this.ta.parent=this;this.ta.setTransform(101.8,59.6,1,1,0,0,0,0, +-17.5);this.va=new a.gB;this.va.parent=this;this.va.setTransform(66.05,60.35,1,1,0,0,0,0,-17.5);this.wa=new a.gB;this.wa.parent=this;this.wa.setTransform(195.75,60.2,1,1,0,0,0,0,-17.5);this.ya=new a.N0;this.ya.parent=this;this.ya.setTransform(178.75,89.2,1,1,0,0,0,0,-17.5);this.Aa=new a.K0;this.Aa.parent=this;this.Aa.setTransform(139.75,57.55,1,1,0,0,0,0,-17.5);this.Ba=new a.Bm;this.Ba.parent=this;this.Ba.setTransform(130.05,145.05);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ba},{t:this.Aa}, +{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta}]}).wait(1));this.Da=new a.lba;this.Da.parent=this;this.Da.setTransform(290.4,-2.3,1,1,0,0,180);this.timeline.addTween(b.Tween.get(this.Da).wait(1))}).prototype=k(a.dqa,new b.Rectangle(-29.6,-2.4,320,184.5),null);(a.Jha=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(137, +79.1,1,1.843,0,0,0,0,.2);this.g=new a.N;this.g.parent=this;this.g.setTransform(187.9,157.5,6.4688,3.6875,0,0,0,.1,0);this.i=new a.N;this.i.parent=this;this.i.setTransform(52.9,157.5,6.4688,3.6875,0,0,0,.1,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(146.75,36.05,14.7419,2.0031,0,0,0,.3,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(200,67.05,1,8.5625,0,0,0,0,.1);this.O=new a.N;this.O.parent=this;this.O.setTransform(41.5,67.35,1,8.5625,0,0,0,0,.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.O}, +{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.$=new a.Player;this.$.parent=this;this.$.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.$).wait(1));this.ka=new a.Kha;this.ka.parent=this;this.ka.setTransform(120,81,1,1,0,0,0,0,-53.5);this.timeline.addTween(b.Tween.get(this.ka).wait(1));this.ta=new a.zZa;this.ta.parent=this;this.ta.setTransform(170,80.8,1,1,0,0,0,0,.8);this.timeline.addTween(b.Tween.get(this.ta).wait(1));this.va=new a.Nha;this.va.parent= +this;this.va.setTransform(60,57,1,1,0,0,0,0,-8);this.wa=new a.Mha;this.wa.parent=this;this.wa.setTransform(64.05,113.05,1,1,0,0,0,0,-8);this.ya=new a.Oha;this.ya.parent=this;this.ya.setTransform(185,54,1,1,0,0,0,0,-8);this.Aa=new a.Hha;this.Aa.parent=this;this.Aa.setTransform(159,79,1,1,0,0,0,0,-8);this.Ba=new a.Iha;this.Ba.parent=this;this.Ba.setTransform(95,49,1,1,0,0,0,0,-8);this.Da=new a.Lha;this.Da.parent=this;this.Da.setTransform(80,87,1,1,0,0,0,0,-8);this.Ea=new a.Gha;this.Ea.parent=this;this.Ea.setTransform(155, +116,1,1,0,0,0,0,-8);this.Ga=new a.Bm;this.Ga.parent=this;this.Ga.setTransform(120,152.75);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va}]}).wait(1));this.Ha=new a.Fha;this.Ha.parent=this;this.Ha.setTransform(119,81.5,1,1,0,0,0,0,-53.5);this.timeline.addTween(b.Tween.get(this.Ha).wait(1))}).prototype=k(a.Jha,new b.Rectangle(.6,-2.4,259.4,189.5),null);(a.aqa=function(d,e,f){this.initialize(d,e,f,{});this.u= +function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(187.9,157.5,6.4688,3.6875,0,0,0,.1,0);this.g=new a.N;this.g.parent=this;this.g.setTransform(52.9,157.5,6.4688,3.6875,0,0,0,.1,0);this.i=new a.N;this.i.parent=this;this.i.setTransform(146.75,41.05,14.7419,2.0031,0,0,0,.3,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(220,67.05,1,8.5625,0, +0,0,0,.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(19.5,67.35,1,8.5625,0,0,0,0,.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.O=new a.Player;this.O.parent=this;this.O.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.O).wait(1));this.$=new a.kN;this.$.parent=this;this.$.setTransform(20,18);this.timeline.addTween(b.Tween.get(this.$).wait(1));this.ka=new a.Bm;this.ka.parent=this;this.ka.setTransform(120, +152.75);this.timeline.addTween(b.Tween.get(this.ka).wait(1));this.ta=new a.c4;this.ta.parent=this;this.ta.setTransform(120,89.2,1,1,0,0,0,0,-5);this.va=new a.F_;this.va.parent=this;this.va.setTransform(120,-81.5,1,1,0,0,0,0,-58.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.va},{t:this.ta}]}).wait(1))}).prototype=k(a.aqa,new b.Rectangle(.6,-2.4,259.4,189.5),null);(a.$pa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}}; +this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(187.9,157.5,6.4688,3.6875,0,0,0,.1,0);this.g=new a.N;this.g.parent=this;this.g.setTransform(52.9,157.5,6.4688,3.6875,0,0,0,.1,0);this.i=new a.N;this.i.parent=this;this.i.setTransform(122.75,41.05,14.7419,2.0031,0,0,0,.3,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(220,67.05,1,8.5625,0,0,0,0,.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(19.5, +67.35,1,8.5625,0,0,0,0,.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.O=new a.Player;this.O.parent=this;this.O.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.O).wait(1));this.$=new a.kN;this.$.parent=this;this.$.setTransform(20,18);this.timeline.addTween(b.Tween.get(this.$).wait(1));this.ka=new a.b4;this.ka.parent=this;this.ka.setTransform(118.75,85.05,1,1,0,0,0,0,-5);this.timeline.addTween(b.Tween.get(this.ka).wait(1)); +this.ta=new a.Bm;this.ta.parent=this;this.ta.setTransform(120,152.75);this.timeline.addTween(b.Tween.get(this.ta).wait(1));this.va=new a.F_;this.va.parent=this;this.va.setTransform(120,-81.5,1,1,0,0,0,0,-58.5);this.timeline.addTween(b.Tween.get(this.va).wait(1))}).prototype=k(a.$pa,new b.Rectangle(.6,-2.4,238.3,189.5),null);(a.wfa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); +this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(212.45,181.5,9.5212,3.6875,0,0,0,.1,0);this.g=new a.N;this.g.parent=this;this.g.setTransform(34.05,181.5,8.8743,3.6875,0,0,0,.1,0);this.i=new a.N;this.i.parent=this;this.i.setTransform(122.55,1.1,21.4866,2.8846,0,0,0,.3,.1);this.o=new a.N;this.o.parent=this;this.o.setTransform(282,66.9,1,11.5265,0,0,0,0,.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(-39.6,68.35,1,11.5076,0,0,0,-.1,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.H}, +{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.O=new a.Player;this.O.parent=this;this.O.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.O).wait(1));this.$=new a.HJ;this.$.parent=this;this.$.setTransform(120,67.5);this.timeline.addTween(b.Tween.get(this.$).wait(1));this.ka=new a.E5;this.ka.parent=this;this.ka.setTransform(17.5,93.55,1,1,0,0,180,-9.5,-13.8);this.ta=new a.D5;this.ta.parent=this;this.ta.setTransform(17.5,62.35,1,1,0,0,180,-9.5,-14);this.va=new a.RQa; +this.va.parent=this;this.va.setTransform(184.65,25.15,1,1,0,0,0,0,-15);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.va},{t:this.ta},{t:this.ka}]}).wait(1));this.wa=new a.dea;this.wa.parent=this;this.wa.setTransform(55.5,43,1,1,0,0,0,0,-8);this.ya=new a.fT;this.ya.parent=this;this.ya.setTransform(65.65,19.15,1,1,0,0,0,0,-8);this.Aa=new a.Nia;this.Aa.parent=this;this.Aa.setTransform(35,19,1,1,0,0,0,0,-8);this.Ba=new a.fca;this.Ba.parent=this;this.Ba.setTransform(2.35,16.85,1,1,0,0,0,0, +-10);this.Da=new a.Bm;this.Da.parent=this;this.Da.setTransform(120,175.15);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa}]}).wait(1));this.Ea=new a.H6;this.Ea.parent=this;this.Ea.setTransform(-12.35,48.15,1,1,0,0,0,0,-5);this.Ga=new a.H6;this.Ga.parent=this;this.Ga.setTransform(7,41,1,1,0,0,0,0,-5);this.Ha=new a.C5;this.Ha.parent=this;this.Ha.setTransform(16.65,124.85,1,1,0,0,180,10.5,-10.5);this.Ia=new a.Qha;this.Ia.parent=this;this.Ia.setTransform(10, +121.45,1,1,0,0,0,0,-12.5);this.Ja=new a.v4;this.Ja.parent=this;this.Ja.setTransform(245.85,131.45,1,1,0,0,0,0,-9);this.Ka=new a.z6;this.Ka.parent=this;this.Ka.setTransform(222.15,131.45,1,1,0,0,0,0,-9);this.La=new a.$V;this.La.parent=this;this.La.setTransform(198.45,131.45,1,1,0,0,0,0,-9);this.Ma=new a.C2;this.Ma.parent=this;this.Ma.setTransform(174.75,131.45,1,1,0,0,0,0,-9);this.Na=new a.C2;this.Na.parent=this;this.Na.setTransform(245.85,106.35,1,1,0,0,0,0,-9);this.Oa=new a.$V;this.Oa.parent=this; +this.Oa.setTransform(222.15,106.35,1,1,0,0,0,0,-9);this.Qa=new a.z6;this.Qa.parent=this;this.Qa.setTransform(198.45,106.35,1,1,0,0,0,0,-9);this.Ua=new a.v4;this.Ua.parent=this;this.Ua.setTransform(174.75,106.35,1,1,0,0,0,0,-9);this.Va=new a.$V;this.Va.parent=this;this.Va.setTransform(245.85,81.25,1,1,0,0,0,0,-9);this.Wa=new a.v4;this.Wa.parent=this;this.Wa.setTransform(222.15,81.25,1,1,0,0,0,0,-9);this.Xa=new a.Tka;this.Xa.parent=this;this.Xa.setTransform(198.45,81.25,1,1,0,0,0,0,-9);this.Ya=new a.$V; +this.Ya.parent=this;this.Ya.setTransform(174.75,81.25,1,1,0,0,0,0,-9);this.Za=new a.Tka;this.Za.parent=this;this.Za.setTransform(245.75,56.15,1,1,0,0,0,0,-9);this.$a=new a.z6;this.$a.parent=this;this.$a.setTransform(222.05,56.15,1,1,0,0,0,0,-9);this.ab=new a.L5;this.ab.parent=this;this.ab.setTransform(0,58,1,1,0,0,0,0,-12.5);this.hb=new a.L5;this.hb.parent=this;this.hb.setTransform(0,88,1,1,0,0,0,0,-12.5);this.mb=new a.C2;this.mb.parent=this;this.mb.setTransform(198.35,56.15,1,1,0,0,0,0,-9);this.nb= +new a.$V;this.nb.parent=this;this.nb.setTransform(174.65,56.15,1,1,0,0,0,0,-9);this.rb=new a.wTa;this.rb.parent=this;this.rb.setTransform(228.75,21.65,1,1,0,0,0,0,-16.5);this.tb=new a.g5;this.tb.parent=this;this.tb.setTransform(-40,-22);this.shape=new b.Shape;this.shape.graphics.f("#000000").s().p("AgFANIgCgBIgCgCIgCgCIgCgCIAAgCIAAgCIgBgCIABAAIAAgCIAAgCIABgCIACgCIACgBIABgCIACgCIACgBIAEAAIAAAAIAEABIAEACIACACIABACIABABIABACIAAADIAAABIAAABIAAACIAAACIgBACIgBACIgCABIgCACIgCABIgCACIgDAAIgGgCg");this.shape.setTransform(246.9, +57.55);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.shape},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea}]}).wait(1))}).prototype=k(a.wfa,new b.Rectangle(-55.4,-26.6,345.4,237.7),null);(a.lfa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T= +{map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(187.9,157.5,6.4688,3.6875,0,0,0,.1,0);this.g=new a.N;this.g.parent=this;this.g.setTransform(52.9,157.5,6.4688,3.6875,0,0,0,.1,0);this.i=new a.N;this.i.parent=this;this.i.setTransform(122.75,16.05,14.7419,2.0031,0,0,0,.3,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(240,67.05,1,8.5625,0,0,0,0,.1);this.H=new a.N; +this.H.parent=this;this.H.setTransform(.5,67.35,1,8.5625,0,0,0,0,.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.O=new a.Player;this.O.parent=this;this.O.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.O).wait(1));this.$=new a.iY;this.$.parent=this;this.$.setTransform(120,67.5);this.timeline.addTween(b.Tween.get(this.$).wait(1));this.ka=new a.Fsa;this.ka.parent=this;this.ka.setTransform(119.05,100,1, +1,0,0,0,-2.2,-.5);this.ta=new a.Esa;this.ta.parent=this;this.ta.setTransform(73.4,100.15,1,1,0,0,0,-2.2,-.5);this.va=new a.wta;this.va.parent=this;this.va.setTransform(119.7,54.5,1,1,0,0,0,-2.2,-.5);this.wa=new a.vta;this.wa.parent=this;this.wa.setTransform(74.4,54.15,1,1,0,0,0,-2.2,-.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka}]}).wait(1));this.ya=new a.ym;this.ya.parent=this;this.ya.setTransform(166,50.5);this.Aa=new a.ym;this.Aa.parent=this; +this.Aa.setTransform(75,50.5);this.Ba=new a.ym;this.Ba.parent=this;this.Ba.setTransform(121,50.5);this.Da=new a.ym;this.Da.parent=this;this.Da.setTransform(166,93.5);this.Ea=new a.ym;this.Ea.parent=this;this.Ea.setTransform(75,93.5);this.Ga=new a.MK;this.Ga.parent=this;this.Ga.setTransform(71.5,74.5);this.Ha=new a.Bm;this.Ha.parent=this;this.Ha.setTransform(122,152.75);this.Ia=new a.kfa;this.Ia.parent=this;this.Ia.setTransform(161.5,74.5);this.Ja=new a.MK;this.Ja.parent=this;this.Ja.setTransform(116.5, +74.5);this.Ka=new a.ym;this.Ka.parent=this;this.Ka.setTransform(121,93.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya}]}).wait(1));this.La=new a.l6;this.La.parent=this;this.La.setTransform(120,68.5,1,1,0,0,0,120,67.5);this.timeline.addTween(b.Tween.get(this.La).wait(1))}).prototype=k(a.lfa,new b.Rectangle(-7.5,-2.4,255.5,189.5),null);(a.ffa=function(d,e,f){this.initialize(d, +e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(40,41.9,.3125,.3126,0,180,0,0,.3);this.g=new a.N;this.g.parent=this;this.g.setTransform(16,65.9,.3125,.3126,0,180,0,0,.3);this.i=new a.N;this.i.parent=this;this.i.setTransform(17,64.9,.3125,.3126,0,180,0,0,.3);this.o=new a.N;this.o.parent=this;this.o.setTransform(18,63.9,.3125,.3126, +0,180,0,0,.3);this.H=new a.N;this.H.parent=this;this.H.setTransform(19,62.9,.3125,.3126,0,180,0,0,.3);this.O=new a.N;this.O.parent=this;this.O.setTransform(20,61.9,.3125,.3126,0,180,0,0,.3);this.$=new a.N;this.$.parent=this;this.$.setTransform(21,60.9,.3125,.3126,0,180,0,0,.3);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(22,59.9,.3125,.3126,0,180,0,0,.3);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(23,58.9,.3125,.3126,0,180,0,0,.3);this.va=new a.N;this.va.parent=this;this.va.setTransform(24, +57.9,.3125,.3126,0,180,0,0,.3);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(25,56.9,.3125,.3126,0,180,0,0,.3);this.ya=new a.N;this.ya.parent=this;this.ya.setTransform(26,55.9,.3125,.3126,0,180,0,0,.3);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(27,54.9,.3125,.3126,0,180,0,0,.3);this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(28,53.9,.3125,.3126,0,180,0,0,.3);this.Da=new a.N;this.Da.parent=this;this.Da.setTransform(29,52.9,.3125,.3126,0,180,0,0,.3);this.Ea=new a.N; +this.Ea.parent=this;this.Ea.setTransform(30,51.9,.3125,.3126,0,180,0,0,.3);this.Ga=new a.N;this.Ga.parent=this;this.Ga.setTransform(31,50.9,.3125,.3126,0,180,0,0,.3);this.Ha=new a.N;this.Ha.parent=this;this.Ha.setTransform(32,49.9,.3125,.3126,0,180,0,0,.3);this.Ia=new a.N;this.Ia.parent=this;this.Ia.setTransform(33,48.9,.3125,.3126,0,180,0,0,.3);this.Ja=new a.N;this.Ja.parent=this;this.Ja.setTransform(34,47.9,.3125,.3126,0,180,0,0,.3);this.Ka=new a.N;this.Ka.parent=this;this.Ka.setTransform(35,46.9, +.3125,.3126,0,180,0,0,.3);this.La=new a.N;this.La.parent=this;this.La.setTransform(36,45.9,.3125,.3126,0,180,0,0,.3);this.Ma=new a.N;this.Ma.parent=this;this.Ma.setTransform(37,44.9,.3125,.3126,0,180,0,0,.3);this.Na=new a.N;this.Na.parent=this;this.Na.setTransform(38,43.9,.3125,.3126,0,180,0,0,.3);this.Oa=new a.N;this.Oa.parent=this;this.Oa.setTransform(39,42.9,.3125,.3126,0,180,0,0,.3);this.Qa=new a.N;this.Qa.parent=this;this.Qa.setTransform(41,41.9,.3125,.3126,0,180,0,0,.3);this.Ua=new a.N;this.Ua.parent= +this;this.Ua.setTransform(42,40.9,.3125,.3126,0,180,0,0,.3);this.Va=new a.N;this.Va.parent=this;this.Va.setTransform(43,39.9,.3125,.3126,0,180,0,0,.3);this.Wa=new a.N;this.Wa.parent=this;this.Wa.setTransform(44,38.9,.3125,.3126,0,180,0,0,.3);this.Xa=new a.N;this.Xa.parent=this;this.Xa.setTransform(45,37.9,.3125,.3126,0,180,0,0,.3);this.Ya=new a.N;this.Ya.parent=this;this.Ya.setTransform(46,36.9,.3125,.3126,0,180,0,0,.3);this.Za=new a.N;this.Za.parent=this;this.Za.setTransform(47,35.9,.3125,.3126, +0,180,0,0,.3);this.$a=new a.N;this.$a.parent=this;this.$a.setTransform(48,34.9,.3125,.3126,0,180,0,0,.3);this.ab=new a.N;this.ab.parent=this;this.ab.setTransform(49,33.9,.3125,.3126,0,180,0,0,.3);this.hb=new a.N;this.hb.parent=this;this.hb.setTransform(50,32.9,.3125,.3126,0,180,0,0,.3);this.mb=new a.N;this.mb.parent=this;this.mb.setTransform(51,31.9,.3125,.3126,0,180,0,0,.3);this.nb=new a.N;this.nb.parent=this;this.nb.setTransform(52,30.9,.3125,.3126,0,180,0,0,.3);this.rb=new a.N;this.rb.parent=this; +this.rb.setTransform(53,29.9,.3125,.3126,0,180,0,0,.3);this.tb=new a.N;this.tb.parent=this;this.tb.setTransform(202,41.9,.3125,.3126,180,0,0,0,.3);this.ub=new a.N;this.ub.parent=this;this.ub.setTransform(226,65.9,.3125,.3126,180,0,0,0,.3);this.wb=new a.N;this.wb.parent=this;this.wb.setTransform(225,64.9,.3125,.3126,180,0,0,0,.3);this.yb=new a.N;this.yb.parent=this;this.yb.setTransform(224,63.9,.3125,.3126,180,0,0,0,.3);this.Ab=new a.N;this.Ab.parent=this;this.Ab.setTransform(223,62.9,.3125,.3126, +180,0,0,0,.3);this.Cb=new a.N;this.Cb.parent=this;this.Cb.setTransform(222,61.9,.3125,.3126,180,0,0,0,.3);this.Db=new a.N;this.Db.parent=this;this.Db.setTransform(221,60.9,.3125,.3126,180,0,0,0,.3);this.Eb=new a.N;this.Eb.parent=this;this.Eb.setTransform(220,59.9,.3125,.3126,180,0,0,0,.3);this.Fb=new a.N;this.Fb.parent=this;this.Fb.setTransform(219,58.9,.3125,.3126,180,0,0,0,.3);this.Gb=new a.N;this.Gb.parent=this;this.Gb.setTransform(218,57.9,.3125,.3126,180,0,0,0,.3);this.Hb=new a.N;this.Hb.parent= +this;this.Hb.setTransform(217,56.9,.3125,.3126,180,0,0,0,.3);this.Jb=new a.N;this.Jb.parent=this;this.Jb.setTransform(216,55.9,.3125,.3126,180,0,0,0,.3);this.Lb=new a.N;this.Lb.parent=this;this.Lb.setTransform(215,54.9,.3125,.3126,180,0,0,0,.3);this.Mb=new a.N;this.Mb.parent=this;this.Mb.setTransform(214,53.9,.3125,.3126,180,0,0,0,.3);this.Pb=new a.N;this.Pb.parent=this;this.Pb.setTransform(213,52.9,.3125,.3126,180,0,0,0,.3);this.Nb=new a.N;this.Nb.parent=this;this.Nb.setTransform(212,51.9,.3125, +.3126,180,0,0,0,.3);this.Qb=new a.N;this.Qb.parent=this;this.Qb.setTransform(211,50.9,.3125,.3126,180,0,0,0,.3);this.Ob=new a.N;this.Ob.parent=this;this.Ob.setTransform(210,49.9,.3125,.3126,180,0,0,0,.3);this.Rb=new a.N;this.Rb.parent=this;this.Rb.setTransform(209,48.9,.3125,.3126,180,0,0,0,.3);this.Sb=new a.N;this.Sb.parent=this;this.Sb.setTransform(208,47.9,.3125,.3126,180,0,0,0,.3);this.Tb=new a.N;this.Tb.parent=this;this.Tb.setTransform(207,46.9,.3125,.3126,180,0,0,0,.3);this.Ub=new a.N;this.Ub.parent= +this;this.Ub.setTransform(206,45.9,.3125,.3126,180,0,0,0,.3);this.Zb=new a.N;this.Zb.parent=this;this.Zb.setTransform(205,44.9,.3125,.3126,180,0,0,0,.3);this.Wb=new a.N;this.Wb.parent=this;this.Wb.setTransform(204,43.9,.3125,.3126,180,0,0,0,.3);this.Xb=new a.N;this.Xb.parent=this;this.Xb.setTransform(203,42.9,.3125,.3126,180,0,0,0,.3);this.Yb=new a.N;this.Yb.parent=this;this.Yb.setTransform(201,41.9,.3125,.3126,180,0,0,0,.3);this.$b=new a.N;this.$b.parent=this;this.$b.setTransform(200,40.9,.3125, +.3126,180,0,0,0,.3);this.ac=new a.N;this.ac.parent=this;this.ac.setTransform(199,39.9,.3125,.3126,180,0,0,0,.3);this.bc=new a.N;this.bc.parent=this;this.bc.setTransform(198,38.9,.3125,.3126,180,0,0,0,.3);this.hc=new a.N;this.hc.parent=this;this.hc.setTransform(197,37.9,.3125,.3126,180,0,0,0,.3);this.jc=new a.N;this.jc.parent=this;this.jc.setTransform(196,36.9,.3125,.3126,180,0,0,0,.3);this.kc=new a.N;this.kc.parent=this;this.kc.setTransform(195,35.9,.3125,.3126,180,0,0,0,.3);this.lc=new a.N;this.lc.parent= +this;this.lc.setTransform(194,34.9,.3125,.3126,180,0,0,0,.3);this.nc=new a.N;this.nc.parent=this;this.nc.setTransform(193,33.9,.3125,.3126,180,0,0,0,.3);this.tc=new a.N;this.tc.parent=this;this.tc.setTransform(192,32.9,.3125,.3126,180,0,0,0,.3);this.uc=new a.N;this.uc.parent=this;this.uc.setTransform(191,31.9,.3125,.3126,180,0,0,0,.3);this.xc=new a.N;this.xc.parent=this;this.xc.setTransform(190,30.9,.3125,.3126,180,0,0,0,.3);this.zc=new a.N;this.zc.parent=this;this.zc.setTransform(189,29.9,.3125, +.3126,180,0,0,0,.3);this.Ac=new a.N;this.Ac.parent=this;this.Ac.setTransform(202,125.1,.3125,.3126,0,0,180,0,.3);this.Bc=new a.N;this.Bc.parent=this;this.Bc.setTransform(226,101.1,.3125,.3126,0,0,180,0,.3);this.yc=new a.N;this.yc.parent=this;this.yc.setTransform(225,102.1,.3125,.3126,0,0,180,0,.3);this.Dc=new a.N;this.Dc.parent=this;this.Dc.setTransform(224,103.1,.3125,.3126,0,0,180,0,.3);this.Ec=new a.N;this.Ec.parent=this;this.Ec.setTransform(223,104.1,.3125,.3126,0,0,180,0,.3);this.Fc=new a.N; +this.Fc.parent=this;this.Fc.setTransform(222,105.1,.3125,.3126,0,0,180,0,.3);this.Gc=new a.N;this.Gc.parent=this;this.Gc.setTransform(221,106.1,.3125,.3126,0,0,180,0,.3);this.Jc=new a.N;this.Jc.parent=this;this.Jc.setTransform(220,107.1,.3125,.3126,0,0,180,0,.3);this.Kc=new a.N;this.Kc.parent=this;this.Kc.setTransform(219,108.1,.3125,.3126,0,0,180,0,.3);this.Lc=new a.N;this.Lc.parent=this;this.Lc.setTransform(218,109.1,.3125,.3126,0,0,180,0,.3);this.Ic=new a.N;this.Ic.parent=this;this.Ic.setTransform(217, +110.1,.3125,.3126,0,0,180,0,.3);this.Nc=new a.N;this.Nc.parent=this;this.Nc.setTransform(216,111.1,.3125,.3126,0,0,180,0,.3);this.Oc=new a.N;this.Oc.parent=this;this.Oc.setTransform(215,112.1,.3125,.3126,0,0,180,0,.3);this.Rc=new a.N;this.Rc.parent=this;this.Rc.setTransform(214,113.1,.3125,.3126,0,0,180,0,.3);this.Uc=new a.N;this.Uc.parent=this;this.Uc.setTransform(213,114.1,.3125,.3126,0,0,180,0,.3);this.Xc=new a.N;this.Xc.parent=this;this.Xc.setTransform(212,115.1,.3125,.3126,0,0,180,0,.3);this.jd= +new a.N;this.jd.parent=this;this.jd.setTransform(211,116.1,.3125,.3126,0,0,180,0,.3);this.$c=new a.N;this.$c.parent=this;this.$c.setTransform(210,117.1,.3125,.3126,0,0,180,0,.3);this.kd=new a.N;this.kd.parent=this;this.kd.setTransform(209,118.1,.3125,.3126,0,0,180,0,.3);this.hd=new a.N;this.hd.parent=this;this.hd.setTransform(208,119.1,.3125,.3126,0,0,180,0,.3);this.ld=new a.N;this.ld.parent=this;this.ld.setTransform(207,120.1,.3125,.3126,0,0,180,0,.3);this.nd=new a.N;this.nd.parent=this;this.nd.setTransform(206, +121.1,.3125,.3126,0,0,180,0,.3);this.od=new a.N;this.od.parent=this;this.od.setTransform(205,122.1,.3125,.3126,0,0,180,0,.3);this.rd=new a.N;this.rd.parent=this;this.rd.setTransform(204,123.1,.3125,.3126,0,0,180,0,.3);this.vd=new a.N;this.vd.parent=this;this.vd.setTransform(203,124.1,.3125,.3126,0,0,180,0,.3);this.wd=new a.N;this.wd.parent=this;this.wd.setTransform(201,125.1,.3125,.3126,0,0,180,0,.3);this.xd=new a.N;this.xd.parent=this;this.xd.setTransform(200,126.1,.3125,.3126,0,0,180,0,.3);this.Gd= +new a.N;this.Gd.parent=this;this.Gd.setTransform(199,127.1,.3125,.3126,0,0,180,0,.3);this.Hd=new a.N;this.Hd.parent=this;this.Hd.setTransform(198,128.1,.3125,.3126,0,0,180,0,.3);this.Fd=new a.N;this.Fd.parent=this;this.Fd.setTransform(197,129.1,.3125,.3126,0,0,180,0,.3);this.Jd=new a.N;this.Jd.parent=this;this.Jd.setTransform(196,130.1,.3125,.3126,0,0,180,0,.3);this.Kd=new a.N;this.Kd.parent=this;this.Kd.setTransform(195,131.1,.3125,.3126,0,0,180,0,.3);this.Id=new a.N;this.Id.parent=this;this.Id.setTransform(194, +132.1,.3125,.3126,0,0,180,0,.3);this.Ld=new a.N;this.Ld.parent=this;this.Ld.setTransform(193,133.1,.3125,.3126,0,0,180,0,.3);this.Md=new a.N;this.Md.parent=this;this.Md.setTransform(192,134.1,.3125,.3126,0,0,180,0,.3);this.Nd=new a.N;this.Nd.parent=this;this.Nd.setTransform(191,135.1,.3125,.3126,0,0,180,0,.3);this.Od=new a.N;this.Od.parent=this;this.Od.setTransform(190,136.1,.3125,.3126,0,0,180,0,.3);this.Pd=new a.N;this.Pd.parent=this;this.Pd.setTransform(189,137.1,.3125,.3126,0,0,180,0,.3);this.Qd= +new a.N;this.Qd.parent=this;this.Qd.setTransform(40,125.1,.3125,.3126,0,0,0,0,.3);this.Rd=new a.N;this.Rd.parent=this;this.Rd.setTransform(16,101.1,.3125,.3126,0,0,0,0,.3);this.Td=new a.N;this.Td.parent=this;this.Td.setTransform(17,102.1,.3125,.3126,0,0,0,0,.3);this.Ud=new a.N;this.Ud.parent=this;this.Ud.setTransform(18,103.1,.3125,.3126,0,0,0,0,.3);this.Vd=new a.N;this.Vd.parent=this;this.Vd.setTransform(19,104.1,.3125,.3126,0,0,0,0,.3);this.he=new a.N;this.he.parent=this;this.he.setTransform(20, +105.1,.3125,.3126,0,0,0,0,.3);this.qe=new a.N;this.qe.parent=this;this.qe.setTransform(21,106.1,.3125,.3126,0,0,0,0,.3);this.re=new a.N;this.re.parent=this;this.re.setTransform(22,107.1,.3125,.3126,0,0,0,0,.3);this.te=new a.N;this.te.parent=this;this.te.setTransform(23,108.1,.3125,.3126,0,0,0,0,.3);this.ue=new a.N;this.ue.parent=this;this.ue.setTransform(24,109.1,.3125,.3126,0,0,0,0,.3);this.we=new a.N;this.we.parent=this;this.we.setTransform(25,110.1,.3125,.3126,0,0,0,0,.3);this.ze=new a.N;this.ze.parent= +this;this.ze.setTransform(26,111.1,.3125,.3126,0,0,0,0,.3);this.Ge=new a.N;this.Ge.parent=this;this.Ge.setTransform(27,112.1,.3125,.3126,0,0,0,0,.3);this.He=new a.N;this.He.parent=this;this.He.setTransform(28,113.1,.3125,.3126,0,0,0,0,.3);this.Ie=new a.N;this.Ie.parent=this;this.Ie.setTransform(29,114.1,.3125,.3126,0,0,0,0,.3);this.Ae=new a.N;this.Ae.parent=this;this.Ae.setTransform(30,115.1,.3125,.3126,0,0,0,0,.3);this.Be=new a.N;this.Be.parent=this;this.Be.setTransform(31,116.1,.3125,.3126,0,0, +0,0,.3);this.Ce=new a.N;this.Ce.parent=this;this.Ce.setTransform(32,117.1,.3125,.3126,0,0,0,0,.3);this.De=new a.N;this.De.parent=this;this.De.setTransform(33,118.1,.3125,.3126,0,0,0,0,.3);this.Ee=new a.N;this.Ee.parent=this;this.Ee.setTransform(34,119.1,.3125,.3126,0,0,0,0,.3);this.Fe=new a.N;this.Fe.parent=this;this.Fe.setTransform(35,120.1,.3125,.3126,0,0,0,0,.3);this.Je=new a.N;this.Je.parent=this;this.Je.setTransform(36,121.1,.3125,.3126,0,0,0,0,.3);this.Ke=new a.N;this.Ke.parent=this;this.Ke.setTransform(37, +122.1,.3125,.3126,0,0,0,0,.3);this.Le=new a.N;this.Le.parent=this;this.Le.setTransform(38,123.1,.3125,.3126,0,0,0,0,.3);this.Me=new a.N;this.Me.parent=this;this.Me.setTransform(39,124.1,.3125,.3126,0,0,0,0,.3);this.Ne=new a.N;this.Ne.parent=this;this.Ne.setTransform(41,125.1,.3125,.3126,0,0,0,0,.3);this.Oe=new a.N;this.Oe.parent=this;this.Oe.setTransform(42,126.1,.3125,.3126,0,0,0,0,.3);this.Pe=new a.N;this.Pe.parent=this;this.Pe.setTransform(43,127.1,.3125,.3126,0,0,0,0,.3);this.Qe=new a.N;this.Qe.parent= +this;this.Qe.setTransform(44,128.1,.3125,.3126,0,0,0,0,.3);this.Re=new a.N;this.Re.parent=this;this.Re.setTransform(45,129.1,.3125,.3126,0,0,0,0,.3);this.Se=new a.N;this.Se.parent=this;this.Se.setTransform(46,130.1,.3125,.3126,0,0,0,0,.3);this.Te=new a.N;this.Te.parent=this;this.Te.setTransform(47,131.1,.3125,.3126,0,0,0,0,.3);this.ff=new a.N;this.ff.parent=this;this.ff.setTransform(48,132.1,.3125,.3126,0,0,0,0,.3);this.hf=new a.N;this.hf.parent=this;this.hf.setTransform(49,133.1,.3125,.3126,0,0, +0,0,.3);this.jf=new a.N;this.jf.parent=this;this.jf.setTransform(50,134.1,.3125,.3126,0,0,0,0,.3);this.kf=new a.N;this.kf.parent=this;this.kf.setTransform(51,135.1,.3125,.3126,0,0,0,0,.3);this.nf=new a.N;this.nf.parent=this;this.nf.setTransform(52,136.1,.3125,.3126,0,0,0,0,.3);this.qf=new a.N;this.qf.parent=this;this.qf.setTransform(53,137.1,.3125,.3126,0,0,0,0,.3);this.sf=new a.N;this.sf.parent=this;this.sf.setTransform(126.65,4.75,20.6949,3.4233,0,0,0,.2,.1);this.tf=new a.hC;this.tf.parent=this; +this.tf.setTransform(232,70.85,1,1.3701,0,0,0,0,-68.5);this.uf=new a.N;this.uf.parent=this;this.uf.setTransform(217.1,168.85,9.9871,3.6875,0,0,0,.2,.1);this.vf=new a.N;this.vf.parent=this;this.vf.setTransform(31.45,168.85,9.1978,3.6875,0,0,0,.1,.1);this.wf=new a.N;this.wf.parent=this;this.wf.setTransform(9.5,67.6,1,11.8842,0,0,0,0,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.wf},{t:this.vf},{t:this.uf},{t:this.tf},{t:this.sf},{t:this.qf},{t:this.nf},{t:this.kf},{t:this.jf},{t:this.hf}, +{t:this.ff},{t:this.Te},{t:this.Se},{t:this.Re},{t:this.Qe},{t:this.Pe},{t:this.Oe},{t:this.Ne},{t:this.Me},{t:this.Le},{t:this.Ke},{t:this.Je},{t:this.Fe},{t:this.Ee},{t:this.De},{t:this.Ce},{t:this.Be},{t:this.Ae},{t:this.Ie},{t:this.He},{t:this.Ge},{t:this.ze},{t:this.we},{t:this.ue},{t:this.te},{t:this.re},{t:this.qe},{t:this.he},{t:this.Vd},{t:this.Ud},{t:this.Td},{t:this.Rd},{t:this.Qd},{t:this.Pd},{t:this.Od},{t:this.Nd},{t:this.Md},{t:this.Ld},{t:this.Id},{t:this.Kd},{t:this.Jd},{t:this.Fd}, +{t:this.Hd},{t:this.Gd},{t:this.xd},{t:this.wd},{t:this.vd},{t:this.rd},{t:this.od},{t:this.nd},{t:this.ld},{t:this.hd},{t:this.kd},{t:this.$c},{t:this.jd},{t:this.Xc},{t:this.Uc},{t:this.Rc},{t:this.Oc},{t:this.Nc},{t:this.Ic},{t:this.Lc},{t:this.Kc},{t:this.Jc},{t:this.Gc},{t:this.Fc},{t:this.Ec},{t:this.Dc},{t:this.yc},{t:this.Bc},{t:this.Ac},{t:this.zc},{t:this.xc},{t:this.uc},{t:this.tc},{t:this.nc},{t:this.lc},{t:this.kc},{t:this.jc},{t:this.hc},{t:this.bc},{t:this.ac},{t:this.$b},{t:this.Yb}, +{t:this.Xb},{t:this.Wb},{t:this.Zb},{t:this.Ub},{t:this.Tb},{t:this.Sb},{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb},{t:this.Pb},{t:this.Mb},{t:this.Lb},{t:this.Jb},{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La}, +{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.xf=new a.Player;this.xf.parent=this;this.xf.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.xf).wait(1));this.yf=new a.Tw;this.yf.parent=this;this.yf.setTransform(204,86);this.Df=new a.Tw;this.Df.parent=this;this.Df.setTransform(40, +86.15);this.Ef=new a.q2;this.Ef.parent=this;this.Ef.setTransform(120,67,1,1,0,0,0,0,-90);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ef},{t:this.Df},{t:this.yf}]}).wait(1));this.Ff=new a.RYa;this.Ff.parent=this;this.Ff.setTransform(80.5,56,1,1,0,0,0,0,-352);this.timeline.addTween(b.Tween.get(this.Ff).wait(1));this.Cf=new a.Ona;this.Cf.parent=this;this.Cf.setTransform(-40,-23);this.Jf=new a.Bm;this.Jf.parent=this;this.Jf.setTransform(120.5,168.85,1.25,1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Jf}, +{t:this.Cf}]}).wait(1))}).prototype=k(a.ffa,new b.Rectangle(-42.8,-30,337.6,228.1),null);(a.bea=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(212.45,181.5,9.5212,3.6875,0,0,0,.1,0);this.g=new a.N;this.g.parent=this;this.g.setTransform(34.05,181.5,8.8743,3.6875,0,0,0,.1,0);this.i=new a.N;this.i.parent= +this;this.i.setTransform(122.55,1.1,21.4866,2.8846,0,0,0,.3,.1);this.o=new a.N;this.o.parent=this;this.o.setTransform(282,66.9,1,11.5265,0,0,0,0,.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(-39.6,68.35,1,11.5076,0,0,0,-.1,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.O=new a.Player;this.O.parent=this;this.O.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.O).wait(1));this.$=new a.HJ;this.$.parent= +this;this.$.setTransform(120,67.5);this.timeline.addTween(b.Tween.get(this.$).wait(1));this.ka=new a.v5a;this.ka.parent=this;this.ka.setTransform(121.45,36.8,1,1,0,0,0,0,-29.2);this.timeline.addTween(b.Tween.get(this.ka).wait(1));this.ta=new a.PDa;this.ta.parent=this;this.ta.setTransform(120,8.5,1,1,0,0,0,0,-24.5);this.va=new a.IX;this.va.parent=this;this.va.setTransform(248.35,144.15,1,1,0,0,0,0,-5);this.wa=new a.IX;this.wa.parent=this;this.wa.setTransform(-16,80.15,1,1,0,0,0,0,-5);this.ya=new a.IX; +this.ya.parent=this;this.ya.setTransform(157,96.85,1,1,0,0,0,0,-5);this.Aa=new a.Q2;this.Aa.parent=this;this.Aa.setTransform(60,140,1,1,0,0,0,0,-9.5);this.Ba=new a.e5;this.Ba.parent=this;this.Ba.setTransform(208,113.65,1,1,0,0,0,0,-31.5);this.Da=new a.d5;this.Da.parent=this;this.Da.setTransform(208,50.5,1,1,0,0,0,0,-31.5);this.Ea=new a.d5;this.Ea.parent=this;this.Ea.setTransform(32,115.5,1,1,0,0,0,0,-31.5);this.Ga=new a.e5;this.Ga.parent=this;this.Ga.setTransform(32,50.5,1,1,0,0,0,0,-31.5);this.Ha= +new a.Q2;this.Ha.parent=this;this.Ha.setTransform(4.65,24.5,1,1,0,0,0,0,-9.5);this.Ia=new a.qp;this.Ia.parent=this;this.Ia.setTransform(-25,61.75,1,1,0,0,0,0,-11);this.Ja=new a.qp;this.Ja.parent=this;this.Ja.setTransform(266,61.75,1,1,0,0,0,0,-11);this.Ka=new a.qp;this.Ka.parent=this;this.Ka.setTransform(265.95,23.15,1,1,0,0,0,0,-11);this.La=new a.qp;this.La.parent=this;this.La.setTransform(265.95,100.35,1,1,0,0,0,0,-11);this.Ma=new a.qp;this.Ma.parent=this;this.Ma.setTransform(265.95,138.95,1,1, +0,0,0,0,-11);this.Na=new a.qp;this.Na.parent=this;this.Na.setTransform(-25.05,23.15,1,1,0,0,0,0,-11);this.Oa=new a.qp;this.Oa.parent=this;this.Oa.setTransform(-25,100.35,1,1,0,0,0,0,-11);this.Qa=new a.qp;this.Qa.parent=this;this.Qa.setTransform(-25.05,138.95,1,1,0,0,0,0,-11);this.Ua=new a.qp;this.Ua.parent=this;this.Ua.setTransform(96,22.3,1,1,0,0,0,0,-11);this.Va=new a.qp;this.Va.parent=this;this.Va.setTransform(144,23.15,1,1,0,0,0,0,-11);this.Wa=new a.qp;this.Wa.parent=this;this.Wa.setTransform(90, +139.15,1,1,0,0,0,0,-11);this.Xa=new a.qp;this.Xa.parent=this;this.Xa.setTransform(151,139,1,1,0,0,0,0,-11);this.Ya=new a.IX;this.Ya.parent=this;this.Ya.setTransform(255,30,1,1,0,0,0,0,-5);this.Za=new a.Uea;this.Za.parent=this;this.Za.setTransform(120,169.15);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga}, +{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta}]}).wait(1));this.$a=new a.I4a;this.$a.parent=this;this.$a.setTransform(-40,-24);this.timeline.addTween(b.Tween.get(this.$a).wait(1))}).prototype=k(a.bea,new b.Rectangle(-55.4,-26.6,345.4,237.7),null);(a.Mda=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N; +this.instance.parent=this;this.instance.setTransform(145,28.1,.875,3.7133,0,0,0,0,.2);this.g=new a.N;this.g.parent=this;this.g.setTransform(214.5,174.5,2.0821,3.6875,0,0,0,.1,0);this.i=new a.N;this.i.parent=this;this.i.setTransform(78.6,174.5,9.224,3.6875,0,0,0,.1,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(118.75,-6.35,14.7419,2.0031,0,0,0,.3,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(224,77.95,1,9.8202,0,0,0,0,.2);this.O=new a.N;this.O.parent=this;this.O.setTransform(15.5, +80.45,1,10.061,0,0,0,0,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.$=new a.Player;this.$.parent=this;this.$.setTransform(175,138.85);this.timeline.addTween(b.Tween.get(this.$).wait(1));this.ka=new a.Bm;this.ka.parent=this;this.ka.setTransform(174.65,168.15,1.472,1,0,0,0,.1,0);this.ta=new a.ABa;this.ta.parent=this;this.ta.setTransform(19,-11.85);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ta}, +{t:this.ka}]}).wait(1));this.va=new a.JSa;this.va.parent=this;this.va.setTransform(55,42.15,1,1,0,0,0,0,-1.1);this.wa=new a.i_a;this.wa.parent=this;this.wa.setTransform(189,27,1,1,0,0,0,0,-12);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.wa},{t:this.va}]}).wait(1));this.ya=new a.XY;this.ya.parent=this;this.ya.setTransform(143,135.95,.4701,1.3719,0,0,0,0,-8.1);this.Aa=new a.XY;this.Aa.parent=this;this.Aa.setTransform(214.15,135.9,.4701,1.3719,0,0,0,0,-8.1);this.Ba=new a.$ca;this.Ba.parent= +this;this.Ba.setTransform(184,142,1,1,0,0,0,0,-8);this.Da=new a.XY;this.Da.parent=this;this.Da.setTransform(185,126,1,1,0,0,0,0,-8);this.Ea=new a.QEa;this.Ea.parent=this;this.Ea.setTransform(168,50,1,1,0,0,0,0,-10.5);this.Ga=new a.Lda;this.Ga.parent=this;this.Ga.setTransform(176,28,1,1,0,0,0,0,-22);this.Ha=new a.D1a;this.Ha.parent=this;this.Ha.setTransform(51.95,71.85,1,1,0,0,0,0,-35.5);this.Ia=new a.F1a;this.Ia.parent=this;this.Ia.setTransform(99.95,71.85,1,1,0,0,0,0,-35.5);this.Ja=new a.aEa;this.Ja.parent= +this;this.Ja.setTransform(81.5,4,1,1,0,0,0,0,-12);this.Ka=new a.H1a;this.Ka.parent=this;this.Ka.setTransform(147.95,71.85,1,1,0,0,0,0,-35.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya}]}).wait(1));this.La=new a.yBa;this.La.parent=this;this.La.setTransform(23,-6.85);this.timeline.addTween(b.Tween.get(this.La).wait(1))}).prototype=k(a.Mda,new b.Rectangle(-3.3,-22.4,235.3,226.5), +null);(a.yda=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(126.65,24.9,20.6949,2.6849,0,0,0,.2,.1);this.g=new a.hC;this.g.parent=this;this.g.setTransform(230,70.85,1,1.3701,0,0,0,0,-68.5);this.i=new a.N;this.i.parent=this;this.i.setTransform(217.1,161.85,9.9871,3.6875,0,0,0,.2,.1);this.o=new a.N; +this.o.parent=this;this.o.setTransform(31.45,161.85,9.1978,3.6875,0,0,0,.1,.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(9.5,67.6,1,11.8842,0,0,0,0,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.O=new a.Player;this.O.parent=this;this.O.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.O).wait(1));this.$=new a.dZ;this.$.parent=this;this.$.setTransform(120,67,1,1,0,0,0,0,-90);this.timeline.addTween(b.Tween.get(this.$).wait(1)); +this.ka=new a.i6;this.ka.parent=this;this.ka.setTransform(213,64,1,1,0,0,0,0,-20.5);this.ta=new a.ula;this.ta.parent=this;this.ta.setTransform(55,42.5,1,1,0,0,0,0,-19);this.va=new a.C6;this.va.parent=this;this.va.setTransform(155,65,1,1,0,0,0,0,-19);this.wa=new a.$na;this.wa.parent=this;this.wa.setTransform(53,108,1,1,0,0,0,0,-24);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka}]}).wait(1));this.ya=new a.lEa;this.ya.parent=this;this.ya.setTransform(-40, +-23);this.Aa=new a.Bm;this.Aa.parent=this;this.Aa.setTransform(118.5,155.85,1.25,1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Aa},{t:this.ya}]}).wait(1))}).prototype=k(a.yda,new b.Rectangle(-42.8,-30,337.6,221.1),null);(a.xda=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(212.45, +181.5,9.5212,3.6875,0,0,0,.1,0);this.g=new a.N;this.g.parent=this;this.g.setTransform(34.05,181.5,8.8743,3.6875,0,0,0,.1,0);this.i=new a.N;this.i.parent=this;this.i.setTransform(122.55,1.1,21.4866,2.8846,0,0,0,.3,.1);this.o=new a.N;this.o.parent=this;this.o.setTransform(282,66.9,1,11.5265,0,0,0,0,.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(-39.6,68.35,1,11.5076,0,0,0,-.1,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1)); +this.O=new a.Player;this.O.parent=this;this.O.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.O).wait(1));this.$=new a.HJ;this.$.parent=this;this.$.setTransform(120,67.5);this.timeline.addTween(b.Tween.get(this.$).wait(1));this.ka=new a.mTa;this.ka.parent=this;this.ka.setTransform(215.65,116.2,1,1,0,0,0,0,-.1);this.ta=new a.nTa;this.ta.parent=this;this.ta.setTransform(240,53.2,1,1,0,0,0,0,-.1);this.va=new a.lTa;this.va.parent=this;this.va.setTransform(192,73.9,1,1,0,0,0,0,-.1);this.wa= +new a.oTa;this.wa.parent=this;this.wa.setTransform(121,25.2,1,1,0,0,0,0,-.1);this.ya=new a.iTa;this.ya.parent=this;this.ya.setTransform(16,122.2,1,1,0,0,0,0,-.1);this.Aa=new a.kTa;this.Aa.parent=this;this.Aa.setTransform(16,64.2,1,1,0,0,0,0,-.1);this.Ba=new a.jTa;this.Ba.parent=this;this.Ba.setTransform(51.65,101.2,1,1,0,0,0,0,-.1);this.Da=new a.Qea;this.Da.parent=this;this.Da.setTransform(120,169.15);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya}, +{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka}]}).wait(1));this.Ea=new a.wda;this.Ea.parent=this;this.Ea.setTransform(120,68,1,1,0,0,0,0,-90);this.timeline.addTween(b.Tween.get(this.Ea).wait(1))}).prototype=k(a.xda,new b.Rectangle(-55.4,-26.6,345.4,237.7),null);(a.vda=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(138, +-13.35,21.7401,1.3029,0,0,0,.6,.1);this.g=new a.N;this.g.parent=this;this.g.setTransform(221.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.i=new a.N;this.i.parent=this;this.i.setTransform(212.45,181.5,9.5212,3.6875,0,0,0,.1,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(34.05,181.5,8.8743,3.6875,0,0,0,.1,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(28.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.O=new a.N;this.O.parent=this;this.O.setTransform(243.45,66.9,6.125,11.5265,0,0,0,.4,.1);this.$= +new a.N;this.$.parent=this;this.$.setTransform(.85,68.35,5.9688,11.5076,0,0,0,.1,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.ka=new a.uga;this.ka.parent=this;this.ka.setTransform(120.65,23.5,1,1,0,0,0,0,-10);this.ka.alpha=0;this.ta=new a.vga;this.ta.parent=this;this.ta.setTransform(120,137.5,1,1,0,0,0,0,-10);this.ta.alpha=0;this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ta},{t:this.ka}]}).wait(1)); +this.va=new a.Player;this.va.parent=this;this.va.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.va).wait(1));this.wa=new a.aT;this.wa.parent=this;this.wa.setTransform(120,66);this.timeline.addTween(b.Tween.get(this.wa).wait(1));this.ya=new a.hTa;this.ya.parent=this;this.ya.setTransform(121.05,75.5,1,1,0,0,0,0,-1.1);this.Aa=new a.xea;this.Aa.parent=this;this.Aa.setTransform(121.95,5.6,.8336,.6986);this.Ba=new a.yea;this.Ba.parent=this;this.Ba.setTransform(119.55,168.6,.8606,1.032);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ba}, +{t:this.Aa},{t:this.ya}]}).wait(1));this.Da=new a.Ada;this.Da.parent=this;this.Da.setTransform(120,65.9,1,1,0,0,0,0,-90.1);this.timeline.addTween(b.Tween.get(this.Da).wait(1))}).prototype=k(a.vda,new b.Rectangle(-56.2,-26.6,354.9,237.7),null);(a.nda=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(264, +35.3,1.4506,2.6849,0,0,0,.3,.2);this.g=new a.N;this.g.parent=this;this.g.setTransform(188,32.3,1.4506,2.6849,0,0,0,.3,.2);this.i=new a.N;this.i.parent=this;this.i.setTransform(248.05,22.3,9.2837,2.6849,0,0,0,.3,.2);this.o=new a.N;this.o.parent=this;this.o.setTransform(-54.95,40.3,9.2837,2.6849,0,0,0,.3,.2);this.H=new a.N;this.H.parent=this;this.H.setTransform(-44.95,30.3,9.2837,2.6849,0,0,0,.3,.2);this.O=new a.N;this.O.parent=this;this.O.setTransform(-34.95,20.3,9.2837,2.6849,0,0,0,.3,.2);this.$= +new a.N;this.$.parent=this;this.$.setTransform(20.05,15.3,9.2837,2.6849,0,0,0,.3,.2);this.ka=new a.hC;this.ka.parent=this;this.ka.setTransform(271.35,31.85,1,.4355,0,0,0,0,-68.5);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(-31.35,32,1,3.6024,0,0,0,0,.2);this.va=new a.N;this.va.parent=this;this.va.setTransform(210.05,15.3,9.2837,2.6849,0,0,0,.3,.2);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(123.65,-25.1,20.6949,2.6849,0,0,0,.2,.1);this.ya=new a.hC;this.ya.parent=this;this.ya.setTransform(271.35, +134.85,1,.4355,0,0,0,0,-68.5);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(122.95,168.85,20.1488,3.6875,0,0,0,.2,.1);this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(-31.35,135,1,3.6024,0,0,0,0,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.Da=new a.wW;this.Da.parent=this;this.Da.setTransform(111.65, +34.15,1,1,0,0,0,0,-10);this.Da.alpha=.7695;this.Ea=new a.vW;this.Ea.parent=this;this.Ea.setTransform(259.65,80.15,1,1,0,0,0,0,-10);this.Ea.alpha=.7695;this.Ga=new a.uW;this.Ga.parent=this;this.Ga.setTransform(-9.65,80.15,1,1,0,0,0,0,-10);this.Ga.alpha=.7695;this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ga},{t:this.Ea},{t:this.Da}]}).wait(1));this.Ha=new a.wea;this.Ha.parent=this;this.Ha.setTransform(112.6,20.85,.75,.325,0,0,0,.2,0);this.Ia=new a.vea;this.Ia.parent=this;this.Ia.setTransform(296.65, +85.5,1.25,1.8056);this.Ja=new a.uea;this.Ja.parent=this;this.Ja.setTransform(-52.5,83.25,1.25,1.5972);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ja},{t:this.Ia},{t:this.Ha}]}).wait(1));this.Ka=new a.Player;this.Ka.parent=this;this.Ka.setTransform(121,88);this.timeline.addTween(b.Tween.get(this.Ka).wait(1));this.La=new a.oda;this.La.parent=this;this.La.setTransform(120,66.5,1,1,0,0,0,0,-90);this.timeline.addTween(b.Tween.get(this.La).wait(1));this.Ma=new a.eZ;this.Ma.parent=this;this.Ma.setTransform(121, +66.95,1.6923,1.6923,0,0,0,0,-58.5);this.Ma.alpha=.5;this.timeline.addTween(b.Tween.get(this.Ma).wait(1));this.Na=new a.MSa;this.Na.parent=this;this.Na.setTransform(189.65,53.15,1,1,0,0,0,0,-3.6);this.Oa=new a.LSa;this.Oa.parent=this;this.Oa.setTransform(50.7,53,1,1,0,0,0,0,-3.6);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Oa},{t:this.Na}]}).wait(1));this.Qa=new a.cT;this.Qa.parent=this;this.Qa.setTransform(149.35,113.15,1,1,0,0,0,0,-23.5);this.Ua=new a.cT;this.Ua.parent=this;this.Ua.setTransform(0, +113.15,1,1,0,0,0,0,-23.5);this.Va=new a.cT;this.Va.parent=this;this.Va.setTransform(246,97.35,1,1,0,0,0,0,-23.5);this.Wa=new a.cT;this.Wa.parent=this;this.Wa.setTransform(216,56.5,1,1,0,0,0,0,-23.5);this.Xa=new a.cT;this.Xa.parent=this;this.Xa.setTransform(93,94,1,1,0,0,0,0,-23.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa}]}).wait(1));this.Ya=new a.eT;this.Ya.parent=this;this.Ya.setTransform(104.65,117.5,1,1,0,0,0,0,-7);this.Za=new a.eT; +this.Za.parent=this;this.Za.setTransform(242,58.85,1,1,0,0,0,0,-7);this.$a=new a.eT;this.$a.parent=this;this.$a.setTransform(-9.65,60.15,1,1,0,0,0,0,-7);this.ab=new a.eT;this.ab.parent=this;this.ab.setTransform(45,36.5,1,1,0,0,0,0,-7);this.hb=new a.eT;this.hb.parent=this;this.hb.setTransform(142,62,1,1,0,0,0,0,-7);this.mb=new a.oV;this.mb.parent=this;this.mb.setTransform(73.35,116.15,1,1,0,0,0,0,-6);this.nb=new a.oV;this.nb.parent=this;this.nb.setTransform(208,116.15,1,1,0,0,0,0,-6);this.rb=new a.oV; +this.rb.parent=this;this.rb.setTransform(159,47.15,1,1,0,0,0,0,-6);this.tb=new a.oV;this.tb.parent=this;this.tb.setTransform(86.35,42.15,1,1,0,0,0,0,-6);this.ub=new a.Cza;this.ub.parent=this;this.ub.setTransform(-40,-22.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya}]}).wait(1))}).prototype=k(a.nda,new b.Rectangle(-131.8,-46.8,451.2,244.89999999999998),null);(a.Vca=function(d, +e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(244.05,75.1,.3122,.3122,.0084,0,0,.1,.3);this.g=new a.N;this.g.parent=this;this.g.setTransform(243.05,73.1,.3122,.3122,.0084,0,0,.1,.3);this.i=new a.N;this.i.parent=this;this.i.setTransform(242.05,71.1,.3122,.3122,.0084,0,0,.1,.3);this.o=new a.N;this.o.parent= +this;this.o.setTransform(241.05,69.1,.3122,.3122,.0084,0,0,.1,.3);this.H=new a.N;this.H.parent=this;this.H.setTransform(240.05,67.1,.3122,.3122,.0084,0,0,.1,.3);this.O=new a.N;this.O.parent=this;this.O.setTransform(239.05,65.1,.3122,.3122,.0084,0,0,.1,.3);this.$=new a.N;this.$.parent=this;this.$.setTransform(238.05,63.1,.3122,.3122,.0084,0,0,.1,.3);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(237.05,61.1,.3122,.3122,.0084,0,0,.1,.3);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(236.05, +59.1,.3122,.3122,.0084,0,0,.1,.3);this.va=new a.N;this.va.parent=this;this.va.setTransform(235.05,57.1,.3122,.3122,.0084,0,0,.1,.3);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(234.05,55.1,.3122,.3122,.0084,0,0,.1,.3);this.ya=new a.N;this.ya.parent=this;this.ya.setTransform(233.05,53.1,.3122,.3122,.0084,0,0,.1,.3);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(232.05,51.1,.3122,.3122,.0084,0,0,.1,.3);this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(231.05,49.1,.3122, +.3122,.0084,0,0,.1,.3);this.Da=new a.N;this.Da.parent=this;this.Da.setTransform(230.05,47.1,.3122,.3122,.0084,0,0,.1,.3);this.Ea=new a.N;this.Ea.parent=this;this.Ea.setTransform(229.05,45.1,.3122,.3122,.0084,0,0,.1,.3);this.Ga=new a.N;this.Ga.parent=this;this.Ga.setTransform(228.05,43.1,.3122,.3122,.0084,0,0,.1,.3);this.Ha=new a.N;this.Ha.parent=this;this.Ha.setTransform(227.05,41.1,.3122,.3122,.0084,0,0,.1,.3);this.Ia=new a.N;this.Ia.parent=this;this.Ia.setTransform(226.05,39.1,.3122,.3122,.0084, +0,0,.1,.3);this.Ja=new a.N;this.Ja.parent=this;this.Ja.setTransform(225.05,37.1,.3122,.3122,.0084,0,0,.1,.3);this.Ka=new a.N;this.Ka.parent=this;this.Ka.setTransform(224.05,35.1,.3122,.3122,.0084,0,0,.1,.3);this.La=new a.N;this.La.parent=this;this.La.setTransform(223.05,33.1,.3122,.3122,.0084,0,0,.1,.3);this.Ma=new a.N;this.Ma.parent=this;this.Ma.setTransform(222.05,31.1,.3122,.3122,.0084,0,0,.1,.3);this.Na=new a.N;this.Na.parent=this;this.Na.setTransform(221.05,29.1,.3122,.3122,.0084,0,0,.1,.3); +this.Oa=new a.N;this.Oa.parent=this;this.Oa.setTransform(220.05,27.1,.3122,.3122,.0084,0,0,.1,.3);this.Qa=new a.N;this.Qa.parent=this;this.Qa.setTransform(-9.05,75.1,.3122,.3122,0,-.0084,180,.1,.3);this.Ua=new a.N;this.Ua.parent=this;this.Ua.setTransform(-8.05,73.1,.3122,.3122,0,-.0084,180,.1,.3);this.Va=new a.N;this.Va.parent=this;this.Va.setTransform(-7.05,71.1,.3122,.3122,0,-.0084,180,.1,.3);this.Wa=new a.N;this.Wa.parent=this;this.Wa.setTransform(-6.05,69.1,.3122,.3122,0,-.0084,180,.1,.3);this.Xa= +new a.N;this.Xa.parent=this;this.Xa.setTransform(-5.05,67.1,.3122,.3122,0,-.0084,180,.1,.3);this.Ya=new a.N;this.Ya.parent=this;this.Ya.setTransform(-4.05,65.1,.3122,.3122,0,-.0084,180,.1,.3);this.Za=new a.N;this.Za.parent=this;this.Za.setTransform(-3.05,63.1,.3122,.3122,0,-.0084,180,.1,.3);this.$a=new a.N;this.$a.parent=this;this.$a.setTransform(-2.05,61.1,.3122,.3122,0,-.0084,180,.1,.3);this.ab=new a.N;this.ab.parent=this;this.ab.setTransform(-1.05,59.1,.3122,.3122,0,-.0084,180,.1,.3);this.hb=new a.N; +this.hb.parent=this;this.hb.setTransform(-.05,57.1,.3122,.3122,0,-.0084,180,.1,.3);this.mb=new a.N;this.mb.parent=this;this.mb.setTransform(.95,55.1,.3122,.3122,0,-.0084,180,.1,.3);this.nb=new a.N;this.nb.parent=this;this.nb.setTransform(1.95,53.1,.3122,.3122,0,-.0084,180,.1,.3);this.rb=new a.N;this.rb.parent=this;this.rb.setTransform(2.95,51.1,.3122,.3122,0,-.0084,180,.1,.3);this.tb=new a.N;this.tb.parent=this;this.tb.setTransform(3.95,49.1,.3122,.3122,0,-.0084,180,.1,.3);this.ub=new a.N;this.ub.parent= +this;this.ub.setTransform(4.95,47.1,.3122,.3122,0,-.0084,180,.1,.3);this.wb=new a.N;this.wb.parent=this;this.wb.setTransform(5.95,45.1,.3122,.3122,0,-.0084,180,.1,.3);this.yb=new a.N;this.yb.parent=this;this.yb.setTransform(6.95,43.1,.3122,.3122,0,-.0084,180,.1,.3);this.Ab=new a.N;this.Ab.parent=this;this.Ab.setTransform(7.95,41.1,.3122,.3122,0,-.0084,180,.1,.3);this.Cb=new a.N;this.Cb.parent=this;this.Cb.setTransform(8.95,39.1,.3122,.3122,0,-.0084,180,.1,.3);this.Db=new a.N;this.Db.parent=this;this.Db.setTransform(9.95, +37.1,.3122,.3122,0,-.0084,180,.1,.3);this.Eb=new a.N;this.Eb.parent=this;this.Eb.setTransform(10.95,35.1,.3122,.3122,0,-.0084,180,.1,.3);this.Fb=new a.N;this.Fb.parent=this;this.Fb.setTransform(11.95,33.1,.3122,.3122,0,-.0084,180,.1,.3);this.Gb=new a.N;this.Gb.parent=this;this.Gb.setTransform(12.95,31.1,.3122,.3122,0,-.0084,180,.1,.3);this.Hb=new a.N;this.Hb.parent=this;this.Hb.setTransform(13.95,29.1,.3122,.3122,0,-.0084,180,.1,.3);this.Jb=new a.N;this.Jb.parent=this;this.Jb.setTransform(14.95,27.1, +.3122,.3122,0,-.0084,180,.1,.3);this.Lb=new a.N;this.Lb.parent=this;this.Lb.setTransform(-9.05,76.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Mb=new a.N;this.Mb.parent=this;this.Mb.setTransform(-8.05,78.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Pb=new a.N;this.Pb.parent=this;this.Pb.setTransform(-7.05,80.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Nb=new a.N;this.Nb.parent=this;this.Nb.setTransform(-6.05,82.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Qb=new a.N;this.Qb.parent=this;this.Qb.setTransform(-5.05, +84.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Ob=new a.N;this.Ob.parent=this;this.Ob.setTransform(-4.05,86.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Rb=new a.N;this.Rb.parent=this;this.Rb.setTransform(-3.05,88.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Sb=new a.N;this.Sb.parent=this;this.Sb.setTransform(-2.05,90.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Tb=new a.N;this.Tb.parent=this;this.Tb.setTransform(-1.05,92.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Ub=new a.N;this.Ub.parent=this;this.Ub.setTransform(-.05, +94.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Zb=new a.N;this.Zb.parent=this;this.Zb.setTransform(.95,96.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Wb=new a.N;this.Wb.parent=this;this.Wb.setTransform(1.95,98.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Xb=new a.N;this.Xb.parent=this;this.Xb.setTransform(2.95,100.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Yb=new a.N;this.Yb.parent=this;this.Yb.setTransform(3.95,102.9,.3122,.3122,0,-179.9916,180,.1,.3);this.$b=new a.N;this.$b.parent=this;this.$b.setTransform(4.95, +104.9,.3122,.3122,0,-179.9916,180,.1,.3);this.ac=new a.N;this.ac.parent=this;this.ac.setTransform(5.95,106.9,.3122,.3122,0,-179.9916,180,.1,.3);this.bc=new a.N;this.bc.parent=this;this.bc.setTransform(6.95,108.9,.3122,.3122,0,-179.9916,180,.1,.3);this.hc=new a.N;this.hc.parent=this;this.hc.setTransform(7.95,110.9,.3122,.3122,0,-179.9916,180,.1,.3);this.jc=new a.N;this.jc.parent=this;this.jc.setTransform(8.95,112.9,.3122,.3122,0,-179.9916,180,.1,.3);this.kc=new a.N;this.kc.parent=this;this.kc.setTransform(9.95, +114.9,.3122,.3122,0,-179.9916,180,.1,.3);this.lc=new a.N;this.lc.parent=this;this.lc.setTransform(10.95,116.9,.3122,.3122,0,-179.9916,180,.1,.3);this.nc=new a.N;this.nc.parent=this;this.nc.setTransform(11.95,118.9,.3122,.3122,0,-179.9916,180,.1,.3);this.tc=new a.N;this.tc.parent=this;this.tc.setTransform(12.95,120.9,.3122,.3122,0,-179.9916,180,.1,.3);this.uc=new a.N;this.uc.parent=this;this.uc.setTransform(13.95,122.9,.3122,.3122,0,-179.9916,180,.1,.3);this.xc=new a.N;this.xc.parent=this;this.xc.setTransform(14.95, +124.9,.3122,.3122,0,-179.9916,180,.1,.3);this.zc=new a.N;this.zc.parent=this;this.zc.setTransform(245.05,76.9,.3122,.3122,0,179.9916,0,.1,.3);this.Ac=new a.N;this.Ac.parent=this;this.Ac.setTransform(244.05,78.9,.3122,.3122,0,179.9916,0,.1,.3);this.Bc=new a.N;this.Bc.parent=this;this.Bc.setTransform(243.05,80.9,.3122,.3122,0,179.9916,0,.1,.3);this.yc=new a.N;this.yc.parent=this;this.yc.setTransform(242.05,82.9,.3122,.3122,0,179.9916,0,.1,.3);this.Dc=new a.N;this.Dc.parent=this;this.Dc.setTransform(241.05, +84.9,.3122,.3122,0,179.9916,0,.1,.3);this.Ec=new a.N;this.Ec.parent=this;this.Ec.setTransform(240.05,86.9,.3122,.3122,0,179.9916,0,.1,.3);this.Fc=new a.N;this.Fc.parent=this;this.Fc.setTransform(239.05,88.9,.3122,.3122,0,179.9916,0,.1,.3);this.Gc=new a.N;this.Gc.parent=this;this.Gc.setTransform(238.05,90.9,.3122,.3122,0,179.9916,0,.1,.3);this.Jc=new a.N;this.Jc.parent=this;this.Jc.setTransform(237.05,92.9,.3122,.3122,0,179.9916,0,.1,.3);this.Kc=new a.N;this.Kc.parent=this;this.Kc.setTransform(236.05, +94.9,.3122,.3122,0,179.9916,0,.1,.3);this.Lc=new a.N;this.Lc.parent=this;this.Lc.setTransform(235.05,96.9,.3122,.3122,0,179.9916,0,.1,.3);this.Ic=new a.N;this.Ic.parent=this;this.Ic.setTransform(234.05,98.9,.3122,.3122,0,179.9916,0,.1,.3);this.Nc=new a.N;this.Nc.parent=this;this.Nc.setTransform(233.05,100.9,.3122,.3122,0,179.9916,0,.1,.3);this.Oc=new a.N;this.Oc.parent=this;this.Oc.setTransform(232.05,102.9,.3122,.3122,0,179.9916,0,.1,.3);this.Rc=new a.N;this.Rc.parent=this;this.Rc.setTransform(231.05, +104.9,.3122,.3122,0,179.9916,0,.1,.3);this.Uc=new a.N;this.Uc.parent=this;this.Uc.setTransform(230.05,106.9,.3122,.3122,0,179.9916,0,.1,.3);this.Xc=new a.N;this.Xc.parent=this;this.Xc.setTransform(229.05,108.9,.3122,.3122,0,179.9916,0,.1,.3);this.jd=new a.N;this.jd.parent=this;this.jd.setTransform(228.05,110.9,.3122,.3122,0,179.9916,0,.1,.3);this.$c=new a.N;this.$c.parent=this;this.$c.setTransform(227.05,112.9,.3122,.3122,0,179.9916,0,.1,.3);this.kd=new a.N;this.kd.parent=this;this.kd.setTransform(226.05, +114.9,.3122,.3122,0,179.9916,0,.1,.3);this.hd=new a.N;this.hd.parent=this;this.hd.setTransform(225.05,116.9,.3122,.3122,0,179.9916,0,.1,.3);this.ld=new a.N;this.ld.parent=this;this.ld.setTransform(224.05,118.9,.3122,.3122,0,179.9916,0,.1,.3);this.nd=new a.N;this.nd.parent=this;this.nd.setTransform(223.05,120.9,.3122,.3122,0,179.9916,0,.1,.3);this.od=new a.N;this.od.parent=this;this.od.setTransform(222.05,122.9,.3122,.3122,0,179.9916,0,.1,.3);this.rd=new a.N;this.rd.parent=this;this.rd.setTransform(221.05, +124.9,.3122,.3122,0,179.9916,0,.1,.3);this.vd=new a.N;this.vd.parent=this;this.vd.setTransform(-15,71.8,1,2.2174,0,0,0,0,.2);this.wd=new a.N;this.wd.parent=this;this.wd.setTransform(210.5,153.85,9.224,3.6875,0,0,0,.1,0);this.xd=new a.N;this.xd.parent=this;this.xd.setTransform(30.1,153.85,9.224,3.6875,0,0,0,.1,0);this.Gd=new a.N;this.Gd.parent=this;this.Gd.setTransform(118.75,11.65,14.7419,2.0031,0,0,0,.3,0);this.Hd=new a.N;this.Hd.parent=this;this.Hd.setTransform(252,71.8,1,2.2174,0,0,0,0,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Hd}, +{t:this.Gd},{t:this.xd},{t:this.wd},{t:this.vd},{t:this.rd},{t:this.od},{t:this.nd},{t:this.ld},{t:this.hd},{t:this.kd},{t:this.$c},{t:this.jd},{t:this.Xc},{t:this.Uc},{t:this.Rc},{t:this.Oc},{t:this.Nc},{t:this.Ic},{t:this.Lc},{t:this.Kc},{t:this.Jc},{t:this.Gc},{t:this.Fc},{t:this.Ec},{t:this.Dc},{t:this.yc},{t:this.Bc},{t:this.Ac},{t:this.zc},{t:this.xc},{t:this.uc},{t:this.tc},{t:this.nc},{t:this.lc},{t:this.kc},{t:this.jc},{t:this.hc},{t:this.bc},{t:this.ac},{t:this.$b},{t:this.Yb},{t:this.Xb}, +{t:this.Wb},{t:this.Zb},{t:this.Ub},{t:this.Tb},{t:this.Sb},{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb},{t:this.Pb},{t:this.Mb},{t:this.Lb},{t:this.Jb},{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka}, +{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.Fd=new a.g_;this.Fd.parent=this;this.Fd.setTransform(121,59.65,1,1,0,0,180,0,-21.5);this.Jd=new a.Player;this.Jd.parent=this;this.Jd.setTransform(119,118.85);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Jd},{t:this.Fd}]}).wait(1)); +this.Kd=new a.uZ;this.Kd.parent=this;this.Kd.setTransform(118.5,68.5);this.Id=new a.Bm;this.Id.parent=this;this.Id.setTransform(120.95,142.15,1.472,1,0,0,0,.1,0);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Id},{t:this.Kd}]}).wait(1));this.Ld=new a.MK;this.Ld.parent=this;this.Ld.setTransform(135.25,60);this.Md=new a.lp;this.Md.parent=this;this.Md.setTransform(191.7,117.35,1,1,0,0,0,0,-7);this.Nd=new a.xS;this.Nd.parent=this;this.Nd.setTransform(138,94.5,1,1,0,0,0,0,-1);this.Od=new a.Ox; +this.Od.parent=this;this.Od.setTransform(66.5,42.5,1,1,0,0,0,0,-10);this.Pd=new a.Ex;this.Pd.parent=this;this.Pd.setTransform(27,26.15,1,1,0,0,180,0,-14);this.Qd=new a.Ex;this.Qd.parent=this;this.Qd.setTransform(232.65,71.15,1,1,0,0,0,0,-14);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Qd},{t:this.Pd},{t:this.Od},{t:this.Nd},{t:this.Md},{t:this.Ld}]}).wait(1));this.Rd=new a.tTa;this.Rd.parent=this;this.Rd.setTransform(53,99,1,1,0,0,0,0,-1.6);this.Td=new a.gB;this.Td.parent=this;this.Td.setTransform(20, +102.4,1,1,0,0,0,0,-8);this.Ud=new a.Cja;this.Ud.parent=this;this.Ud.setTransform(170.5,43.5);this.Vd=new a.Tca;this.Vd.parent=this;this.Vd.setTransform(280,-22,1,1,0,0,180);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Vd},{t:this.Ud},{t:this.Td},{t:this.Rd}]}).wait(1))}).prototype=k(a.Vca,new b.Rectangle(-44.4,-22,327.59999999999997,205.4),null);(a.Uca=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); +this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(244.05,75.1,.3122,.3122,.0084,0,0,.1,.3);this.g=new a.N;this.g.parent=this;this.g.setTransform(243.05,73.1,.3122,.3122,.0084,0,0,.1,.3);this.i=new a.N;this.i.parent=this;this.i.setTransform(242.05,71.1,.3122,.3122,.0084,0,0,.1,.3);this.o=new a.N;this.o.parent=this;this.o.setTransform(241.05,69.1,.3122,.3122,.0084,0,0,.1,.3);this.H=new a.N;this.H.parent=this;this.H.setTransform(240.05,67.1,.3122,.3122,.0084,0,0,.1,.3);this.O= +new a.N;this.O.parent=this;this.O.setTransform(239.05,65.1,.3122,.3122,.0084,0,0,.1,.3);this.$=new a.N;this.$.parent=this;this.$.setTransform(238.05,63.1,.3122,.3122,.0084,0,0,.1,.3);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(237.05,61.1,.3122,.3122,.0084,0,0,.1,.3);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(236.05,59.1,.3122,.3122,.0084,0,0,.1,.3);this.va=new a.N;this.va.parent=this;this.va.setTransform(235.05,57.1,.3122,.3122,.0084,0,0,.1,.3);this.wa=new a.N;this.wa.parent= +this;this.wa.setTransform(234.05,55.1,.3122,.3122,.0084,0,0,.1,.3);this.ya=new a.N;this.ya.parent=this;this.ya.setTransform(233.05,53.1,.3122,.3122,.0084,0,0,.1,.3);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(232.05,51.1,.3122,.3122,.0084,0,0,.1,.3);this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(231.05,49.1,.3122,.3122,.0084,0,0,.1,.3);this.Da=new a.N;this.Da.parent=this;this.Da.setTransform(230.05,47.1,.3122,.3122,.0084,0,0,.1,.3);this.Ea=new a.N;this.Ea.parent=this;this.Ea.setTransform(229.05, +45.1,.3122,.3122,.0084,0,0,.1,.3);this.Ga=new a.N;this.Ga.parent=this;this.Ga.setTransform(228.05,43.1,.3122,.3122,.0084,0,0,.1,.3);this.Ha=new a.N;this.Ha.parent=this;this.Ha.setTransform(227.05,41.1,.3122,.3122,.0084,0,0,.1,.3);this.Ia=new a.N;this.Ia.parent=this;this.Ia.setTransform(226.05,39.1,.3122,.3122,.0084,0,0,.1,.3);this.Ja=new a.N;this.Ja.parent=this;this.Ja.setTransform(225.05,37.1,.3122,.3122,.0084,0,0,.1,.3);this.Ka=new a.N;this.Ka.parent=this;this.Ka.setTransform(224.05,35.1,.3122, +.3122,.0084,0,0,.1,.3);this.La=new a.N;this.La.parent=this;this.La.setTransform(223.05,33.1,.3122,.3122,.0084,0,0,.1,.3);this.Ma=new a.N;this.Ma.parent=this;this.Ma.setTransform(222.05,31.1,.3122,.3122,.0084,0,0,.1,.3);this.Na=new a.N;this.Na.parent=this;this.Na.setTransform(221.05,29.1,.3122,.3122,.0084,0,0,.1,.3);this.Oa=new a.N;this.Oa.parent=this;this.Oa.setTransform(220.05,27.1,.3122,.3122,.0084,0,0,.1,.3);this.Qa=new a.N;this.Qa.parent=this;this.Qa.setTransform(-9.05,75.1,.3122,.3122,0,-.0084, +180,.1,.3);this.Ua=new a.N;this.Ua.parent=this;this.Ua.setTransform(-8.05,73.1,.3122,.3122,0,-.0084,180,.1,.3);this.Va=new a.N;this.Va.parent=this;this.Va.setTransform(-7.05,71.1,.3122,.3122,0,-.0084,180,.1,.3);this.Wa=new a.N;this.Wa.parent=this;this.Wa.setTransform(-6.05,69.1,.3122,.3122,0,-.0084,180,.1,.3);this.Xa=new a.N;this.Xa.parent=this;this.Xa.setTransform(-5.05,67.1,.3122,.3122,0,-.0084,180,.1,.3);this.Ya=new a.N;this.Ya.parent=this;this.Ya.setTransform(-4.05,65.1,.3122,.3122,0,-.0084,180, +.1,.3);this.Za=new a.N;this.Za.parent=this;this.Za.setTransform(-3.05,63.1,.3122,.3122,0,-.0084,180,.1,.3);this.$a=new a.N;this.$a.parent=this;this.$a.setTransform(-2.05,61.1,.3122,.3122,0,-.0084,180,.1,.3);this.ab=new a.N;this.ab.parent=this;this.ab.setTransform(-1.05,59.1,.3122,.3122,0,-.0084,180,.1,.3);this.hb=new a.N;this.hb.parent=this;this.hb.setTransform(-.05,57.1,.3122,.3122,0,-.0084,180,.1,.3);this.mb=new a.N;this.mb.parent=this;this.mb.setTransform(.95,55.1,.3122,.3122,0,-.0084,180,.1,.3); +this.nb=new a.N;this.nb.parent=this;this.nb.setTransform(1.95,53.1,.3122,.3122,0,-.0084,180,.1,.3);this.rb=new a.N;this.rb.parent=this;this.rb.setTransform(2.95,51.1,.3122,.3122,0,-.0084,180,.1,.3);this.tb=new a.N;this.tb.parent=this;this.tb.setTransform(3.95,49.1,.3122,.3122,0,-.0084,180,.1,.3);this.ub=new a.N;this.ub.parent=this;this.ub.setTransform(4.95,47.1,.3122,.3122,0,-.0084,180,.1,.3);this.wb=new a.N;this.wb.parent=this;this.wb.setTransform(5.95,45.1,.3122,.3122,0,-.0084,180,.1,.3);this.yb= +new a.N;this.yb.parent=this;this.yb.setTransform(6.95,43.1,.3122,.3122,0,-.0084,180,.1,.3);this.Ab=new a.N;this.Ab.parent=this;this.Ab.setTransform(7.95,41.1,.3122,.3122,0,-.0084,180,.1,.3);this.Cb=new a.N;this.Cb.parent=this;this.Cb.setTransform(8.95,39.1,.3122,.3122,0,-.0084,180,.1,.3);this.Db=new a.N;this.Db.parent=this;this.Db.setTransform(9.95,37.1,.3122,.3122,0,-.0084,180,.1,.3);this.Eb=new a.N;this.Eb.parent=this;this.Eb.setTransform(10.95,35.1,.3122,.3122,0,-.0084,180,.1,.3);this.Fb=new a.N; +this.Fb.parent=this;this.Fb.setTransform(11.95,33.1,.3122,.3122,0,-.0084,180,.1,.3);this.Gb=new a.N;this.Gb.parent=this;this.Gb.setTransform(12.95,31.1,.3122,.3122,0,-.0084,180,.1,.3);this.Hb=new a.N;this.Hb.parent=this;this.Hb.setTransform(13.95,29.1,.3122,.3122,0,-.0084,180,.1,.3);this.Jb=new a.N;this.Jb.parent=this;this.Jb.setTransform(14.95,27.1,.3122,.3122,0,-.0084,180,.1,.3);this.Lb=new a.N;this.Lb.parent=this;this.Lb.setTransform(-9.05,76.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Mb=new a.N; +this.Mb.parent=this;this.Mb.setTransform(-8.05,78.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Pb=new a.N;this.Pb.parent=this;this.Pb.setTransform(-7.05,80.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Nb=new a.N;this.Nb.parent=this;this.Nb.setTransform(-6.05,82.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Qb=new a.N;this.Qb.parent=this;this.Qb.setTransform(-5.05,84.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Ob=new a.N;this.Ob.parent=this;this.Ob.setTransform(-4.05,86.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Rb= +new a.N;this.Rb.parent=this;this.Rb.setTransform(-3.05,88.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Sb=new a.N;this.Sb.parent=this;this.Sb.setTransform(-2.05,90.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Tb=new a.N;this.Tb.parent=this;this.Tb.setTransform(-1.05,92.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Ub=new a.N;this.Ub.parent=this;this.Ub.setTransform(-.05,94.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Zb=new a.N;this.Zb.parent=this;this.Zb.setTransform(.95,96.9,.3122,.3122,0,-179.9916,180,.1,.3); +this.Wb=new a.N;this.Wb.parent=this;this.Wb.setTransform(1.95,98.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Xb=new a.N;this.Xb.parent=this;this.Xb.setTransform(2.95,100.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Yb=new a.N;this.Yb.parent=this;this.Yb.setTransform(3.95,102.9,.3122,.3122,0,-179.9916,180,.1,.3);this.$b=new a.N;this.$b.parent=this;this.$b.setTransform(4.95,104.9,.3122,.3122,0,-179.9916,180,.1,.3);this.ac=new a.N;this.ac.parent=this;this.ac.setTransform(5.95,106.9,.3122,.3122,0,-179.9916, +180,.1,.3);this.bc=new a.N;this.bc.parent=this;this.bc.setTransform(6.95,108.9,.3122,.3122,0,-179.9916,180,.1,.3);this.hc=new a.N;this.hc.parent=this;this.hc.setTransform(7.95,110.9,.3122,.3122,0,-179.9916,180,.1,.3);this.jc=new a.N;this.jc.parent=this;this.jc.setTransform(8.95,112.9,.3122,.3122,0,-179.9916,180,.1,.3);this.kc=new a.N;this.kc.parent=this;this.kc.setTransform(9.95,114.9,.3122,.3122,0,-179.9916,180,.1,.3);this.lc=new a.N;this.lc.parent=this;this.lc.setTransform(10.95,116.9,.3122,.3122, +0,-179.9916,180,.1,.3);this.nc=new a.N;this.nc.parent=this;this.nc.setTransform(11.95,118.9,.3122,.3122,0,-179.9916,180,.1,.3);this.tc=new a.N;this.tc.parent=this;this.tc.setTransform(12.95,120.9,.3122,.3122,0,-179.9916,180,.1,.3);this.uc=new a.N;this.uc.parent=this;this.uc.setTransform(13.95,122.9,.3122,.3122,0,-179.9916,180,.1,.3);this.xc=new a.N;this.xc.parent=this;this.xc.setTransform(14.95,124.9,.3122,.3122,0,-179.9916,180,.1,.3);this.zc=new a.N;this.zc.parent=this;this.zc.setTransform(245.05, +76.9,.3122,.3122,0,179.9916,0,.1,.3);this.Ac=new a.N;this.Ac.parent=this;this.Ac.setTransform(244.05,78.9,.3122,.3122,0,179.9916,0,.1,.3);this.Bc=new a.N;this.Bc.parent=this;this.Bc.setTransform(243.05,80.9,.3122,.3122,0,179.9916,0,.1,.3);this.yc=new a.N;this.yc.parent=this;this.yc.setTransform(242.05,82.9,.3122,.3122,0,179.9916,0,.1,.3);this.Dc=new a.N;this.Dc.parent=this;this.Dc.setTransform(241.05,84.9,.3122,.3122,0,179.9916,0,.1,.3);this.Ec=new a.N;this.Ec.parent=this;this.Ec.setTransform(240.05, +86.9,.3122,.3122,0,179.9916,0,.1,.3);this.Fc=new a.N;this.Fc.parent=this;this.Fc.setTransform(239.05,88.9,.3122,.3122,0,179.9916,0,.1,.3);this.Gc=new a.N;this.Gc.parent=this;this.Gc.setTransform(238.05,90.9,.3122,.3122,0,179.9916,0,.1,.3);this.Jc=new a.N;this.Jc.parent=this;this.Jc.setTransform(237.05,92.9,.3122,.3122,0,179.9916,0,.1,.3);this.Kc=new a.N;this.Kc.parent=this;this.Kc.setTransform(236.05,94.9,.3122,.3122,0,179.9916,0,.1,.3);this.Lc=new a.N;this.Lc.parent=this;this.Lc.setTransform(235.05, +96.9,.3122,.3122,0,179.9916,0,.1,.3);this.Ic=new a.N;this.Ic.parent=this;this.Ic.setTransform(234.05,98.9,.3122,.3122,0,179.9916,0,.1,.3);this.Nc=new a.N;this.Nc.parent=this;this.Nc.setTransform(233.05,100.9,.3122,.3122,0,179.9916,0,.1,.3);this.Oc=new a.N;this.Oc.parent=this;this.Oc.setTransform(232.05,102.9,.3122,.3122,0,179.9916,0,.1,.3);this.Rc=new a.N;this.Rc.parent=this;this.Rc.setTransform(231.05,104.9,.3122,.3122,0,179.9916,0,.1,.3);this.Uc=new a.N;this.Uc.parent=this;this.Uc.setTransform(230.05, +106.9,.3122,.3122,0,179.9916,0,.1,.3);this.Xc=new a.N;this.Xc.parent=this;this.Xc.setTransform(229.05,108.9,.3122,.3122,0,179.9916,0,.1,.3);this.jd=new a.N;this.jd.parent=this;this.jd.setTransform(228.05,110.9,.3122,.3122,0,179.9916,0,.1,.3);this.$c=new a.N;this.$c.parent=this;this.$c.setTransform(227.05,112.9,.3122,.3122,0,179.9916,0,.1,.3);this.kd=new a.N;this.kd.parent=this;this.kd.setTransform(226.05,114.9,.3122,.3122,0,179.9916,0,.1,.3);this.hd=new a.N;this.hd.parent=this;this.hd.setTransform(225.05, +116.9,.3122,.3122,0,179.9916,0,.1,.3);this.ld=new a.N;this.ld.parent=this;this.ld.setTransform(224.05,118.9,.3122,.3122,0,179.9916,0,.1,.3);this.nd=new a.N;this.nd.parent=this;this.nd.setTransform(223.05,120.9,.3122,.3122,0,179.9916,0,.1,.3);this.od=new a.N;this.od.parent=this;this.od.setTransform(222.05,122.9,.3122,.3122,0,179.9916,0,.1,.3);this.rd=new a.N;this.rd.parent=this;this.rd.setTransform(221.05,124.9,.3122,.3122,0,179.9916,0,.1,.3);this.vd=new a.N;this.vd.parent=this;this.vd.setTransform(-15, +71.8,1,2.2174,0,0,0,0,.2);this.wd=new a.N;this.wd.parent=this;this.wd.setTransform(210.5,153.85,9.224,3.6875,0,0,0,.1,0);this.xd=new a.N;this.xd.parent=this;this.xd.setTransform(30.1,153.85,9.224,3.6875,0,0,0,.1,0);this.Gd=new a.N;this.Gd.parent=this;this.Gd.setTransform(118.75,11.65,14.7419,2.0031,0,0,0,.3,0);this.Hd=new a.N;this.Hd.parent=this;this.Hd.setTransform(252,71.8,1,2.2174,0,0,0,0,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Hd},{t:this.Gd},{t:this.xd},{t:this.wd},{t:this.vd}, +{t:this.rd},{t:this.od},{t:this.nd},{t:this.ld},{t:this.hd},{t:this.kd},{t:this.$c},{t:this.jd},{t:this.Xc},{t:this.Uc},{t:this.Rc},{t:this.Oc},{t:this.Nc},{t:this.Ic},{t:this.Lc},{t:this.Kc},{t:this.Jc},{t:this.Gc},{t:this.Fc},{t:this.Ec},{t:this.Dc},{t:this.yc},{t:this.Bc},{t:this.Ac},{t:this.zc},{t:this.xc},{t:this.uc},{t:this.tc},{t:this.nc},{t:this.lc},{t:this.kc},{t:this.jc},{t:this.hc},{t:this.bc},{t:this.ac},{t:this.$b},{t:this.Yb},{t:this.Xb},{t:this.Wb},{t:this.Zb},{t:this.Ub},{t:this.Tb}, +{t:this.Sb},{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb},{t:this.Pb},{t:this.Mb},{t:this.Lb},{t:this.Jb},{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga}, +{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.Fd=new a.g_;this.Fd.parent=this;this.Fd.setTransform(118,59.5,1,1,0,0,0,0,-21.5);this.Jd=new a.Player;this.Jd.parent=this;this.Jd.setTransform(119,118.85);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Jd},{t:this.Fd}]}).wait(1));this.Kd=new a.uZ;this.Kd.parent=this;this.Kd.setTransform(118.5, +68.5);this.Id=new a.Bm;this.Id.parent=this;this.Id.setTransform(120.95,142.15,1.472,1,0,0,0,.1,0);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Id},{t:this.Kd}]}).wait(1));this.Ld=new a.i4;this.Ld.parent=this;this.Ld.setTransform(64,51.85,1,1,0,0,0,0,-3.6);this.timeline.addTween(b.Tween.get(this.Ld).wait(1));this.Md=new a.lp;this.Md.parent=this;this.Md.setTransform(191.7,117.35,1,1,0,0,0,0,-7);this.Nd=new a.xS;this.Nd.parent=this;this.Nd.setTransform(99.7,50.05,1,1,0,0,0,0,-1);this.Od= +new a.Ox;this.Od.parent=this;this.Od.setTransform(175,35,1,1,0,0,0,0,-10);this.Pd=new a.ym;this.Pd.parent=this;this.Pd.setTransform(58.5,91);this.Qd=new a.ym;this.Qd.parent=this;this.Qd.setTransform(98.5,91);this.Rd=new a.b_;this.Rd.parent=this;this.Rd.setTransform(80.35,99.3,1,1,0,0,0,-1,2.2);this.Td=new a.Ex;this.Td.parent=this;this.Td.setTransform(27,26.15,1,1,0,0,180,0,-14);this.Ud=new a.Ex;this.Ud.parent=this;this.Ud.setTransform(232.65,71.15,1,1,0,0,0,0,-14);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ud}, +{t:this.Td},{t:this.Rd},{t:this.Qd},{t:this.Pd},{t:this.Od},{t:this.Nd},{t:this.Md}]}).wait(1));this.Vd=new a.Tca;this.Vd.parent=this;this.Vd.setTransform(-40,-22);this.timeline.addTween(b.Tween.get(this.Vd).wait(1))}).prototype=k(a.Uca,new b.Rectangle(-44.4,-22,327.59999999999997,205.4),null);(a.Tba=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N; +this.instance.parent=this;this.instance.setTransform(170.25,28.3,3.7914,2.6849,0,0,0,.2,.2);this.g=new a.N;this.g.parent=this;this.g.setTransform(73.25,28.25,3.9874,2.6849,0,0,-.2147,.3,.2);this.i=new a.N;this.i.parent=this;this.i.setTransform(126.65,-17.1,20.6949,2.6849,0,0,0,.2,.1);this.o=new a.hC;this.o.parent=this;this.o.setTransform(261.35,70.85,1,1.3701,0,0,0,0,-68.5);this.H=new a.N;this.H.parent=this;this.H.setTransform(217.1,153.85,9.9871,3.6875,0,0,0,.2,.1);this.O=new a.N;this.O.parent=this; +this.O.setTransform(31.45,153.85,9.1978,3.6875,0,0,0,.1,.1);this.$=new a.N;this.$.parent=this;this.$.setTransform(-25.35,67.6,1,11.8842,0,0,0,0,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.ka=new a.tW;this.ka.parent=this;this.ka.setTransform(119.65,48.5,1,1,0,0,0,0,-10);this.ka.alpha=0;this.ta=new a.sW;this.ta.parent=this;this.ta.setTransform(120,107.5,1,1,0,0,0,0,-10);this.ta.alpha=0;this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ta}, +{t:this.ka}]}).wait(1));this.va=new a.oea;this.va.parent=this;this.va.setTransform(121,31.15,.273,.2649,0,0,0,.4,.2);this.wa=new a.nea;this.wa.parent=this;this.wa.setTransform(120,147,1.25,1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.wa},{t:this.va}]}).wait(1));this.ya=new a.Player;this.ya.parent=this;this.ya.setTransform(121,88);this.timeline.addTween(b.Tween.get(this.ya).wait(1));this.Aa=new a.Wba;this.Aa.parent=this;this.Aa.setTransform(120,67,1,1,0,0,0,0,-90);this.timeline.addTween(b.Tween.get(this.Aa).wait(1)); +this.Ba=new a.uoa;this.Ba.parent=this;this.Ba.setTransform(130,50,1,1,0,0,0,0,-80.5);this.Da=new a.xfa;this.Da.parent=this;this.Da.setTransform(123,44,1,1,0,0,0,0,-42);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Da},{t:this.Ba}]}).wait(1));this.Ea=new a.sSa;this.Ea.parent=this;this.Ea.setTransform(121.65,28.5,1,1,0,0,0,0,-21.4);this.timeline.addTween(b.Tween.get(this.Ea).wait(1));this.Ga=new a.YU;this.Ga.parent=this;this.Ga.setTransform(208,39.15,1,1,0,0,0,0,-10);this.Ha=new a.YU;this.Ha.parent= +this;this.Ha.setTransform(25,37.5,1,1,0,0,0,0,-10);this.Ia=new a.YU;this.Ia.parent=this;this.Ia.setTransform(83.65,48.15,1,1,0,0,0,0,-10);this.Ja=new a.YU;this.Ja.parent=this;this.Ja.setTransform(154.35,48.15,1,1,0,0,0,0,-10);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga}]}).wait(1));this.Ka=new a.gta;this.Ka.parent=this;this.Ka.setTransform(-40,-22.5);this.timeline.addTween(b.Tween.get(this.Ka).wait(1))}).prototype=k(a.Tba,new b.Rectangle(-42.8, +-38.8,337.6,221.89999999999998),null);(a.TY=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(101.1,55.65,.8689,2.8752,0,0,0,.1,.2);this.g=new a.N;this.g.parent=this;this.g.setTransform(206,110.05,1.75,3.2377,0,0,0,0,.2);this.i=new a.N;this.i.parent=this;this.i.setTransform(187.9,157.5,6.4688,3.6875, +0,0,0,.1,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(52.9,157.5,6.4688,3.6875,0,0,0,.1,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(126.75,33.5,14.7419,1.0579,0,0,0,.3,.1);this.O=new a.N;this.O.parent=this;this.O.setTransform(220,67.05,1,8.5625,0,0,0,0,.1);this.$=new a.N;this.$.parent=this;this.$.setTransform(19.5,67.35,1,8.5625,0,0,0,0,.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1)); +this.ka=new a.Player;this.ka.parent=this;this.ka.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.ka).wait(1));this.ta=new a.Pba;this.ta.parent=this;this.ta.setTransform(120,76.5,1,1,0,0,0,0,-58.5);this.timeline.addTween(b.Tween.get(this.ta).wait(1));this.va=new a.Tsa;this.va.parent=this;this.va.setTransform(148,89.95,1,1,0,0,0,-.4,-.4);this.wa=new a.rZa;this.wa.parent=this;this.wa.setTransform(60.05,44.05,1,1,0,0,0,0,-17);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.wa}, +{t:this.va}]}).wait(1));this.ya=new a.Lba;this.ya.parent=this;this.ya.setTransform(69.05,51.05,1,1,0,0,0,0,-18);this.Aa=new a.Mba;this.Aa.parent=this;this.Aa.setTransform(169,97,1,1,0,0,0,0,-18);this.Ba=new a.Oba;this.Ba.parent=this;this.Ba.setTransform(66,85,1,1,0,0,0,0,-18);this.Da=new a.Nba;this.Da.parent=this;this.Da.setTransform(169,34,1,1,0,0,0,0,-18);this.Ea=new a.Bm;this.Ea.parent=this;this.Ea.setTransform(120,152.75);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ea},{t:this.Da}, +{t:this.Ba},{t:this.Aa},{t:this.ya}]}).wait(1));this.Ga=new a.Kba;this.Ga.parent=this;this.Ga.setTransform(119.5,76,1,1,0,0,0,0,-58);this.timeline.addTween(b.Tween.get(this.Ga).wait(1))}).prototype=k(a.TY,new b.Rectangle(.6,-2.4,239.4,189.5),null);(a.Gba=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(244.05, +75.1,.3122,.3122,.0084,0,0,.1,.3);this.g=new a.N;this.g.parent=this;this.g.setTransform(243.05,73.1,.3122,.3122,.0084,0,0,.1,.3);this.i=new a.N;this.i.parent=this;this.i.setTransform(242.05,71.1,.3122,.3122,.0084,0,0,.1,.3);this.o=new a.N;this.o.parent=this;this.o.setTransform(241.05,69.1,.3122,.3122,.0084,0,0,.1,.3);this.H=new a.N;this.H.parent=this;this.H.setTransform(240.05,67.1,.3122,.3122,.0084,0,0,.1,.3);this.O=new a.N;this.O.parent=this;this.O.setTransform(239.05,65.1,.3122,.3122,.0084,0,0, +.1,.3);this.$=new a.N;this.$.parent=this;this.$.setTransform(238.05,63.1,.3122,.3122,.0084,0,0,.1,.3);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(237.05,61.1,.3122,.3122,.0084,0,0,.1,.3);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(236.05,59.1,.3122,.3122,.0084,0,0,.1,.3);this.va=new a.N;this.va.parent=this;this.va.setTransform(235.05,57.1,.3122,.3122,.0084,0,0,.1,.3);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(234.05,55.1,.3122,.3122,.0084,0,0,.1,.3);this.ya= +new a.N;this.ya.parent=this;this.ya.setTransform(233.05,53.1,.3122,.3122,.0084,0,0,.1,.3);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(232.05,51.1,.3122,.3122,.0084,0,0,.1,.3);this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(231.05,49.1,.3122,.3122,.0084,0,0,.1,.3);this.Da=new a.N;this.Da.parent=this;this.Da.setTransform(230.05,47.1,.3122,.3122,.0084,0,0,.1,.3);this.Ea=new a.N;this.Ea.parent=this;this.Ea.setTransform(229.05,45.1,.3122,.3122,.0084,0,0,.1,.3);this.Ga=new a.N;this.Ga.parent= +this;this.Ga.setTransform(228.05,43.1,.3122,.3122,.0084,0,0,.1,.3);this.Ha=new a.N;this.Ha.parent=this;this.Ha.setTransform(227.05,41.1,.3122,.3122,.0084,0,0,.1,.3);this.Ia=new a.N;this.Ia.parent=this;this.Ia.setTransform(226.05,39.1,.3122,.3122,.0084,0,0,.1,.3);this.Ja=new a.N;this.Ja.parent=this;this.Ja.setTransform(225.05,37.1,.3122,.3122,.0084,0,0,.1,.3);this.Ka=new a.N;this.Ka.parent=this;this.Ka.setTransform(224.05,35.1,.3122,.3122,.0084,0,0,.1,.3);this.La=new a.N;this.La.parent=this;this.La.setTransform(223.05, +33.1,.3122,.3122,.0084,0,0,.1,.3);this.Ma=new a.N;this.Ma.parent=this;this.Ma.setTransform(222.05,31.1,.3122,.3122,.0084,0,0,.1,.3);this.Na=new a.N;this.Na.parent=this;this.Na.setTransform(221.05,29.1,.3122,.3122,.0084,0,0,.1,.3);this.Oa=new a.N;this.Oa.parent=this;this.Oa.setTransform(220.05,27.1,.3122,.3122,.0084,0,0,.1,.3);this.Qa=new a.N;this.Qa.parent=this;this.Qa.setTransform(-9.05,75.1,.3122,.3122,0,-.0084,180,.1,.3);this.Ua=new a.N;this.Ua.parent=this;this.Ua.setTransform(-8.05,73.1,.3122, +.3122,0,-.0084,180,.1,.3);this.Va=new a.N;this.Va.parent=this;this.Va.setTransform(-7.05,71.1,.3122,.3122,0,-.0084,180,.1,.3);this.Wa=new a.N;this.Wa.parent=this;this.Wa.setTransform(-6.05,69.1,.3122,.3122,0,-.0084,180,.1,.3);this.Xa=new a.N;this.Xa.parent=this;this.Xa.setTransform(-5.05,67.1,.3122,.3122,0,-.0084,180,.1,.3);this.Ya=new a.N;this.Ya.parent=this;this.Ya.setTransform(-4.05,65.1,.3122,.3122,0,-.0084,180,.1,.3);this.Za=new a.N;this.Za.parent=this;this.Za.setTransform(-3.05,63.1,.3122,.3122, +0,-.0084,180,.1,.3);this.$a=new a.N;this.$a.parent=this;this.$a.setTransform(-2.05,61.1,.3122,.3122,0,-.0084,180,.1,.3);this.ab=new a.N;this.ab.parent=this;this.ab.setTransform(-1.05,59.1,.3122,.3122,0,-.0084,180,.1,.3);this.hb=new a.N;this.hb.parent=this;this.hb.setTransform(-.05,57.1,.3122,.3122,0,-.0084,180,.1,.3);this.mb=new a.N;this.mb.parent=this;this.mb.setTransform(.95,55.1,.3122,.3122,0,-.0084,180,.1,.3);this.nb=new a.N;this.nb.parent=this;this.nb.setTransform(1.95,53.1,.3122,.3122,0,-.0084, +180,.1,.3);this.rb=new a.N;this.rb.parent=this;this.rb.setTransform(2.95,51.1,.3122,.3122,0,-.0084,180,.1,.3);this.tb=new a.N;this.tb.parent=this;this.tb.setTransform(3.95,49.1,.3122,.3122,0,-.0084,180,.1,.3);this.ub=new a.N;this.ub.parent=this;this.ub.setTransform(4.95,47.1,.3122,.3122,0,-.0084,180,.1,.3);this.wb=new a.N;this.wb.parent=this;this.wb.setTransform(5.95,45.1,.3122,.3122,0,-.0084,180,.1,.3);this.yb=new a.N;this.yb.parent=this;this.yb.setTransform(6.95,43.1,.3122,.3122,0,-.0084,180,.1, +.3);this.Ab=new a.N;this.Ab.parent=this;this.Ab.setTransform(7.95,41.1,.3122,.3122,0,-.0084,180,.1,.3);this.Cb=new a.N;this.Cb.parent=this;this.Cb.setTransform(8.95,39.1,.3122,.3122,0,-.0084,180,.1,.3);this.Db=new a.N;this.Db.parent=this;this.Db.setTransform(9.95,37.1,.3122,.3122,0,-.0084,180,.1,.3);this.Eb=new a.N;this.Eb.parent=this;this.Eb.setTransform(10.95,35.1,.3122,.3122,0,-.0084,180,.1,.3);this.Fb=new a.N;this.Fb.parent=this;this.Fb.setTransform(11.95,33.1,.3122,.3122,0,-.0084,180,.1,.3); +this.Gb=new a.N;this.Gb.parent=this;this.Gb.setTransform(12.95,31.1,.3122,.3122,0,-.0084,180,.1,.3);this.Hb=new a.N;this.Hb.parent=this;this.Hb.setTransform(13.95,29.1,.3122,.3122,0,-.0084,180,.1,.3);this.Jb=new a.N;this.Jb.parent=this;this.Jb.setTransform(14.95,27.1,.3122,.3122,0,-.0084,180,.1,.3);this.Lb=new a.N;this.Lb.parent=this;this.Lb.setTransform(-9.05,76.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Mb=new a.N;this.Mb.parent=this;this.Mb.setTransform(-8.05,78.9,.3122,.3122,0,-179.9916,180,.1, +.3);this.Pb=new a.N;this.Pb.parent=this;this.Pb.setTransform(-7.05,80.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Nb=new a.N;this.Nb.parent=this;this.Nb.setTransform(-6.05,82.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Qb=new a.N;this.Qb.parent=this;this.Qb.setTransform(-5.05,84.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Ob=new a.N;this.Ob.parent=this;this.Ob.setTransform(-4.05,86.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Rb=new a.N;this.Rb.parent=this;this.Rb.setTransform(-3.05,88.9,.3122,.3122,0,-179.9916, +180,.1,.3);this.Sb=new a.N;this.Sb.parent=this;this.Sb.setTransform(-2.05,90.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Tb=new a.N;this.Tb.parent=this;this.Tb.setTransform(-1.05,92.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Ub=new a.N;this.Ub.parent=this;this.Ub.setTransform(-.05,94.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Zb=new a.N;this.Zb.parent=this;this.Zb.setTransform(.95,96.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Wb=new a.N;this.Wb.parent=this;this.Wb.setTransform(1.95,98.9,.3122,.3122,0, +-179.9916,180,.1,.3);this.Xb=new a.N;this.Xb.parent=this;this.Xb.setTransform(2.95,100.9,.3122,.3122,0,-179.9916,180,.1,.3);this.Yb=new a.N;this.Yb.parent=this;this.Yb.setTransform(3.95,102.9,.3122,.3122,0,-179.9916,180,.1,.3);this.$b=new a.N;this.$b.parent=this;this.$b.setTransform(4.95,104.9,.3122,.3122,0,-179.9916,180,.1,.3);this.ac=new a.N;this.ac.parent=this;this.ac.setTransform(5.95,106.9,.3122,.3122,0,-179.9916,180,.1,.3);this.bc=new a.N;this.bc.parent=this;this.bc.setTransform(6.95,108.9, +.3122,.3122,0,-179.9916,180,.1,.3);this.hc=new a.N;this.hc.parent=this;this.hc.setTransform(7.95,110.9,.3122,.3122,0,-179.9916,180,.1,.3);this.jc=new a.N;this.jc.parent=this;this.jc.setTransform(8.95,112.9,.3122,.3122,0,-179.9916,180,.1,.3);this.kc=new a.N;this.kc.parent=this;this.kc.setTransform(9.95,114.9,.3122,.3122,0,-179.9916,180,.1,.3);this.lc=new a.N;this.lc.parent=this;this.lc.setTransform(10.95,116.9,.3122,.3122,0,-179.9916,180,.1,.3);this.nc=new a.N;this.nc.parent=this;this.nc.setTransform(11.95, +118.9,.3122,.3122,0,-179.9916,180,.1,.3);this.tc=new a.N;this.tc.parent=this;this.tc.setTransform(12.95,120.9,.3122,.3122,0,-179.9916,180,.1,.3);this.uc=new a.N;this.uc.parent=this;this.uc.setTransform(13.95,122.9,.3122,.3122,0,-179.9916,180,.1,.3);this.xc=new a.N;this.xc.parent=this;this.xc.setTransform(14.95,124.9,.3122,.3122,0,-179.9916,180,.1,.3);this.zc=new a.N;this.zc.parent=this;this.zc.setTransform(245.05,76.9,.3122,.3122,0,179.9916,0,.1,.3);this.Ac=new a.N;this.Ac.parent=this;this.Ac.setTransform(244.05, +78.9,.3122,.3122,0,179.9916,0,.1,.3);this.Bc=new a.N;this.Bc.parent=this;this.Bc.setTransform(243.05,80.9,.3122,.3122,0,179.9916,0,.1,.3);this.yc=new a.N;this.yc.parent=this;this.yc.setTransform(242.05,82.9,.3122,.3122,0,179.9916,0,.1,.3);this.Dc=new a.N;this.Dc.parent=this;this.Dc.setTransform(241.05,84.9,.3122,.3122,0,179.9916,0,.1,.3);this.Ec=new a.N;this.Ec.parent=this;this.Ec.setTransform(240.05,86.9,.3122,.3122,0,179.9916,0,.1,.3);this.Fc=new a.N;this.Fc.parent=this;this.Fc.setTransform(239.05, +88.9,.3122,.3122,0,179.9916,0,.1,.3);this.Gc=new a.N;this.Gc.parent=this;this.Gc.setTransform(238.05,90.9,.3122,.3122,0,179.9916,0,.1,.3);this.Jc=new a.N;this.Jc.parent=this;this.Jc.setTransform(237.05,92.9,.3122,.3122,0,179.9916,0,.1,.3);this.Kc=new a.N;this.Kc.parent=this;this.Kc.setTransform(236.05,94.9,.3122,.3122,0,179.9916,0,.1,.3);this.Lc=new a.N;this.Lc.parent=this;this.Lc.setTransform(235.05,96.9,.3122,.3122,0,179.9916,0,.1,.3);this.Ic=new a.N;this.Ic.parent=this;this.Ic.setTransform(234.05, +98.9,.3122,.3122,0,179.9916,0,.1,.3);this.Nc=new a.N;this.Nc.parent=this;this.Nc.setTransform(233.05,100.9,.3122,.3122,0,179.9916,0,.1,.3);this.Oc=new a.N;this.Oc.parent=this;this.Oc.setTransform(232.05,102.9,.3122,.3122,0,179.9916,0,.1,.3);this.Rc=new a.N;this.Rc.parent=this;this.Rc.setTransform(231.05,104.9,.3122,.3122,0,179.9916,0,.1,.3);this.Uc=new a.N;this.Uc.parent=this;this.Uc.setTransform(230.05,106.9,.3122,.3122,0,179.9916,0,.1,.3);this.Xc=new a.N;this.Xc.parent=this;this.Xc.setTransform(229.05, +108.9,.3122,.3122,0,179.9916,0,.1,.3);this.jd=new a.N;this.jd.parent=this;this.jd.setTransform(228.05,110.9,.3122,.3122,0,179.9916,0,.1,.3);this.$c=new a.N;this.$c.parent=this;this.$c.setTransform(227.05,112.9,.3122,.3122,0,179.9916,0,.1,.3);this.kd=new a.N;this.kd.parent=this;this.kd.setTransform(226.05,114.9,.3122,.3122,0,179.9916,0,.1,.3);this.hd=new a.N;this.hd.parent=this;this.hd.setTransform(225.05,116.9,.3122,.3122,0,179.9916,0,.1,.3);this.ld=new a.N;this.ld.parent=this;this.ld.setTransform(224.05, +118.9,.3122,.3122,0,179.9916,0,.1,.3);this.nd=new a.N;this.nd.parent=this;this.nd.setTransform(223.05,120.9,.3122,.3122,0,179.9916,0,.1,.3);this.od=new a.N;this.od.parent=this;this.od.setTransform(222.05,122.9,.3122,.3122,0,179.9916,0,.1,.3);this.rd=new a.N;this.rd.parent=this;this.rd.setTransform(221.05,124.9,.3122,.3122,0,179.9916,0,.1,.3);this.vd=new a.N;this.vd.parent=this;this.vd.setTransform(-15,71.8,1,2.2174,0,0,0,0,.2);this.wd=new a.N;this.wd.parent=this;this.wd.setTransform(210.5,153.85, +9.224,3.6875,0,0,0,.1,0);this.xd=new a.N;this.xd.parent=this;this.xd.setTransform(30.1,153.85,9.224,3.6875,0,0,0,.1,0);this.Gd=new a.N;this.Gd.parent=this;this.Gd.setTransform(118.75,11.65,14.7419,2.0031,0,0,0,.3,0);this.Hd=new a.N;this.Hd.parent=this;this.Hd.setTransform(252,71.8,1,2.2174,0,0,0,0,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Hd},{t:this.Gd},{t:this.xd},{t:this.wd},{t:this.vd},{t:this.rd},{t:this.od},{t:this.nd},{t:this.ld},{t:this.hd},{t:this.kd},{t:this.$c},{t:this.jd}, +{t:this.Xc},{t:this.Uc},{t:this.Rc},{t:this.Oc},{t:this.Nc},{t:this.Ic},{t:this.Lc},{t:this.Kc},{t:this.Jc},{t:this.Gc},{t:this.Fc},{t:this.Ec},{t:this.Dc},{t:this.yc},{t:this.Bc},{t:this.Ac},{t:this.zc},{t:this.xc},{t:this.uc},{t:this.tc},{t:this.nc},{t:this.lc},{t:this.kc},{t:this.jc},{t:this.hc},{t:this.bc},{t:this.ac},{t:this.$b},{t:this.Yb},{t:this.Xb},{t:this.Wb},{t:this.Zb},{t:this.Ub},{t:this.Tb},{t:this.Sb},{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb},{t:this.Pb},{t:this.Mb},{t:this.Lb}, +{t:this.Jb},{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta}, +{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.Fd=new a.g_;this.Fd.parent=this;this.Fd.setTransform(118,59.5,1,1,0,0,0,0,-21.5);this.Jd=new a.Player;this.Jd.parent=this;this.Jd.setTransform(119,118.85);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Jd},{t:this.Fd}]}).wait(1));this.Kd=new a.uZ;this.Kd.parent=this;this.Kd.setTransform(118.5,68.5);this.Id=new a.Bm;this.Id.parent=this;this.Id.setTransform(120.95,142.15,1.472, +1,0,0,0,.1,0);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Id},{t:this.Kd}]}).wait(1));this.Ld=new a.rsa;this.Ld.parent=this;this.Ld.setTransform(118.05,59.5,1,1,0,0,0,-2.2,-.5);this.Md=new a.lp;this.Md.parent=this;this.Md.setTransform(62,92,1,1,0,0,0,0,-12);this.Nd=new a.lp;this.Nd.parent=this;this.Nd.setTransform(28,92,1,1,0,0,0,0,-12);this.Od=new a.lp;this.Od.parent=this;this.Od.setTransform(62,62,1,1,0,0,0,0,-12);this.Pd=new a.lp;this.Pd.parent=this;this.Pd.setTransform(28,62,1,1, +0,0,0,0,-12);this.Qd=new a.lp;this.Qd.parent=this;this.Qd.setTransform(62,32,1,1,0,0,0,0,-12);this.Rd=new a.lp;this.Rd.parent=this;this.Rd.setTransform(28,32,1,1,0,0,0,0,-12);this.Td=new a.lp;this.Td.parent=this;this.Td.setTransform(206,92,1,1,0,0,0,0,-12);this.Ud=new a.lp;this.Ud.parent=this;this.Ud.setTransform(172,92,1,1,0,0,0,0,-12);this.Vd=new a.lp;this.Vd.parent=this;this.Vd.setTransform(206,62,1,1,0,0,0,0,-12);this.he=new a.lp;this.he.parent=this;this.he.setTransform(172,62,1,1,0,0,0,0,-12); +this.qe=new a.lp;this.qe.parent=this;this.qe.setTransform(206,32,1,1,0,0,0,0,-12);this.re=new a.lp;this.re.parent=this;this.re.setTransform(172,32,1,1,0,0,0,0,-12);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.re},{t:this.qe},{t:this.he},{t:this.Vd},{t:this.Ud},{t:this.Td},{t:this.Rd},{t:this.Qd},{t:this.Pd},{t:this.Od},{t:this.Nd},{t:this.Md},{t:this.Ld}]}).wait(1));this.te=new a.Ex;this.te.parent=this;this.te.setTransform(3,71.15,1,1,0,0,180,0,-14);this.ue=new a.Ex;this.ue.parent=this; +this.ue.setTransform(232.65,71.15,1,1,0,0,0,0,-14);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ue},{t:this.te}]}).wait(1));this.we=new a.Cra;this.we.parent=this;this.we.setTransform(-40,-22);this.timeline.addTween(b.Tween.get(this.we).wait(1))}).prototype=k(a.Gba,new b.Rectangle(-44.4,-22,327.59999999999997,205.4),null);(a.uba=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); +this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(138,-13.35,21.7401,1.3029,0,0,0,.6,.1);this.g=new a.N;this.g.parent=this;this.g.setTransform(221.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.i=new a.N;this.i.parent=this;this.i.setTransform(212.45,181.5,9.5212,3.6875,0,0,0,.1,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(34.05,181.5,8.8743,3.6875,0,0,0,.1,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(28.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.O=new a.N;this.O.parent= +this;this.O.setTransform(323.45,66.9,6.125,11.5265,0,0,0,.4,.1);this.$=new a.N;this.$.parent=this;this.$.setTransform(-79.15,68.35,5.9688,11.5076,0,0,0,.1,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.ka=new a.hga;this.ka.parent=this;this.ka.setTransform(120.65,23.5,1,1,0,0,0,0,-10);this.ka.alpha=0;this.ta=new a.u3;this.ta.parent=this;this.ta.setTransform(120,137.5,1,1,0,0,0,0,-10);this.ta.alpha= +0;this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ta},{t:this.ka}]}).wait(1));this.va=new a.Player;this.va.parent=this;this.va.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.va).wait(1));this.wa=new a.HJ;this.wa.parent=this;this.wa.setTransform(120,65.85);this.timeline.addTween(b.Tween.get(this.wa).wait(1));this.ya=new a.lp;this.ya.parent=this;this.ya.setTransform(-4.3,10.2,1,1,0,0,0,0,-7);this.Aa=new a.lp;this.Aa.parent=this;this.Aa.setTransform(33,10.2,1,1,0,0,0,0,-7);this.Ba= +new a.lp;this.Ba.parent=this;this.Ba.setTransform(70.35,10.35,1,1,0,0,0,0,-7);this.Da=new a.lp;this.Da.parent=this;this.Da.setTransform(167.35,10.35,1,1,0,0,0,0,-7);this.Ea=new a.lp;this.Ea.parent=this;this.Ea.setTransform(204.65,10.35,1,1,0,0,0,0,-7);this.Ga=new a.lp;this.Ga.parent=this;this.Ga.setTransform(242,10.5,1,1,0,0,0,0,-7);this.Ha=new a.lp;this.Ha.parent=this;this.Ha.setTransform(-4.3,132.35,1,1,0,0,0,0,-7);this.Ia=new a.lp;this.Ia.parent=this;this.Ia.setTransform(33,132.35,1,1,0,0,0,0, +-7);this.Ja=new a.lp;this.Ja.parent=this;this.Ja.setTransform(70.35,132.5,1,1,0,0,0,0,-7);this.Ka=new a.lp;this.Ka.parent=this;this.Ka.setTransform(167.35,132.5,1,1,0,0,0,0,-7);this.La=new a.lp;this.La.parent=this;this.La.setTransform(204.65,132.5,1,1,0,0,0,0,-7);this.Ma=new a.lp;this.Ma.parent=this;this.Ma.setTransform(242,132.65,1,1,0,0,0,0,-7);this.Na=new a.Ox;this.Na.parent=this;this.Na.setTransform(32,81.5,1,1,0,0,0,0,-10);this.Oa=new a.Ox;this.Oa.parent=this;this.Oa.setTransform(32,31.5,1,1, +0,0,0,0,-10);this.Qa=new a.Ox;this.Qa.parent=this;this.Qa.setTransform(211,81.35,1,1,0,0,0,0,-10);this.Ua=new a.Ox;this.Ua.parent=this;this.Ua.setTransform(211,31.35,1,1,0,0,0,0,-10);this.Va=new a.TTa;this.Va.parent=this;this.Va.setTransform(120,48,1,1,0,0,0,0,-25);this.Wa=new a.mea;this.Wa.parent=this;this.Wa.setTransform(120.6,5.6,1.1404,.6986,0,0,0,.1,0);this.Xa=new a.lea;this.Xa.parent=this;this.Xa.setTransform(119.55,168.6,.8606,1.032);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Xa}, +{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya}]}).wait(1));this.Ya=new a.sTa;this.Ya.parent=this;this.Ya.setTransform(241,112.1,1,1,0,0,0,.3,-4.2);this.Za=new a.fTa;this.Za.parent=this;this.Za.setTransform(-6.95,59.3,1,1,0,0,0,.3,-4.2);this.$a=new a.n1;this.$a.parent=this;this.$a.setTransform(-40,-24);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$a}, +{t:this.Za},{t:this.Ya}]}).wait(1))}).prototype=k(a.uba,new b.Rectangle(-127.4,-26.6,497.29999999999995,237.7),null);(a.tba=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(138,-13.35,21.7401,1.3029,0,0,0,.6,.1);this.g=new a.N;this.g.parent=this;this.g.setTransform(221.8,1.1,10.1391,2.8846,0,0,0,.4, +.1);this.i=new a.N;this.i.parent=this;this.i.setTransform(212.45,181.5,9.5212,3.6875,0,0,0,.1,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(34.05,181.5,8.8743,3.6875,0,0,0,.1,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(28.8,1.1,10.1391,2.8846,0,0,0,.4,.1);this.O=new a.N;this.O.parent=this;this.O.setTransform(243.45,66.9,6.125,11.5265,0,0,0,.4,.1);this.$=new a.N;this.$.parent=this;this.$.setTransform(.85,68.35,5.9688,11.5076,0,0,0,.1,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$}, +{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.ka=new a.gga;this.ka.parent=this;this.ka.setTransform(120.65,23.5,1,1,0,0,0,0,-10);this.ka.alpha=0;this.ta=new a.u3;this.ta.parent=this;this.ta.setTransform(120,137.5,1,1,0,0,0,0,-10);this.ta.alpha=0;this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ta},{t:this.ka}]}).wait(1));this.va=new a.Player;this.va.parent=this;this.va.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.va).wait(1));this.wa= +new a.aT;this.wa.parent=this;this.wa.setTransform(120,66);this.timeline.addTween(b.Tween.get(this.wa).wait(1));this.ya=new a.lp;this.ya.parent=this;this.ya.setTransform(165.65,144.15,1,1,0,0,0,0,-7);this.Aa=new a.lp;this.Aa.parent=this;this.Aa.setTransform(73,144.15,1,1,0,0,0,0,-7);this.Ba=new a.Ox;this.Ba.parent=this;this.Ba.setTransform(182.5,86.15,1,1,0,0,0,0,-10);this.Da=new a.Ox;this.Da.parent=this;this.Da.setTransform(56.5,86.15,1,1,0,0,0,0,-10);this.Ea=new a.Ox;this.Ea.parent=this;this.Ea.setTransform(182.5, +32.15,1,1,0,0,0,0,-10);this.Ga=new a.Ox;this.Ga.parent=this;this.Ga.setTransform(56.5,32.15,1,1,0,0,0,0,-10);this.Ha=new a.kea;this.Ha.parent=this;this.Ha.setTransform(121.95,5.6,.8336,.6986);this.Ia=new a.jea;this.Ia.parent=this;this.Ia.setTransform(119.55,168.6,.8606,1.032);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya}]}).wait(1));this.Ja=new a.XSa;this.Ja.parent=this;this.Ja.setTransform(120.1,71.4, +1,1,0,0,180,-.1,-1.2);this.Ka=new a.fM;this.Ka.parent=this;this.Ka.setTransform(120,65.85);this.La=new a.LS;this.La.parent=this;this.La.setTransform(-40,-24);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.La},{t:this.Ka},{t:this.Ja}]}).wait(1))}).prototype=k(a.tba,new b.Rectangle(-56.2,-26.6,354.9,237.7),null);(a.mba=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); +this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(208.2,174.5,2.8784,3.6875,0,0,0,.1,0);this.g=new a.N;this.g.parent=this;this.g.setTransform(78.6,174.5,9.224,3.6875,0,0,0,.1,0);this.i=new a.N;this.i.parent=this;this.i.setTransform(118.75,-6.35,14.7419,2.0031,0,0,0,.3,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(224,77.95,1,9.8202,0,0,0,0,.2);this.H=new a.N;this.H.parent=this;this.H.setTransform(15.5,80.45,1,10.061,0,0,0,0,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.H}, +{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.O=new a.Player;this.O.parent=this;this.O.setTransform(168,138.85);this.timeline.addTween(b.Tween.get(this.O).wait(1));this.$=new a.qba;this.$.parent=this;this.$.setTransform(120,67.5,1,1,0,0,0,0,-90);this.timeline.addTween(b.Tween.get(this.$).wait(1));this.ka=new a.KSa;this.ka.parent=this;this.ka.setTransform(164.35,73.85,1,1,0,0,0,-.5,-3.1);this.timeline.addTween(b.Tween.get(this.ka).wait(1));this.ta=new a.Ara;this.ta.parent=this; +this.ta.setTransform(47.15,97.15,1,1,0,0,0,0,-19.5);this.va=new a.sra;this.va.parent=this;this.va.setTransform(116,110.15,1,1,0,0,0,0,-19.5);this.wa=new a.yra;this.wa.parent=this;this.wa.setTransform(125,59.5,1,1,0,0,180,0,-19.5);this.ya=new a.wra;this.ya.parent=this;this.ya.setTransform(204,80.5,1,1,0,0,0,0,-19.5);this.Aa=new a.xra;this.Aa.parent=this;this.Aa.setTransform(204,50.5,1,1,0,0,0,0,-19.5);this.Ba=new a.qra;this.Ba.parent=this;this.Ba.setTransform(192,-2.85,1,1,0,0,0,0,-19.5);this.Da=new a.pba; +this.Da.parent=this;this.Da.setTransform(164,.15,1,1,0,0,0,0,-19.5);this.Ea=new a.pba;this.Ea.parent=this;this.Ea.setTransform(134,.15,1,1,0,0,0,0,-19.5);this.Ga=new a.ora;this.Ga.parent=this;this.Ga.setTransform(38.65,5.15,1,1,0,0,0,0,-19.5);this.Ha=new a.nra;this.Ha.parent=this;this.Ha.setTransform(68,5.15,1,1,0,0,0,0,-19.5);this.Ia=new a.mra;this.Ia.parent=this;this.Ia.setTransform(98,5,1,1,0,0,0,0,-19.5);this.Ja=new a.lra;this.Ja.parent=this;this.Ja.setTransform(38,66.5,1,1,0,0,0,0,-19.5);this.Ka= +new a.O0;this.Ka.parent=this;this.Ka.setTransform(38,55.5,1,1,0,0,0,0,-19.5);this.La=new a.kra;this.La.parent=this;this.La.setTransform(68,66.5,1,1,0,0,0,0,-19.5);this.Ma=new a.jra;this.Ma.parent=this;this.Ma.setTransform(98,66.5,1,1,0,0,0,0,-19.5);this.Na=new a.O0;this.Na.parent=this;this.Na.setTransform(98,55.5,1,1,0,0,0,0,-19.5);this.Oa=new a.O0;this.Oa.parent=this;this.Oa.setTransform(68,55.5,1,1,0,0,0,0,-19.5);this.Qa=new a.Bm;this.Qa.parent=this;this.Qa.setTransform(166.55,168.15,1.0283,1,0, +0,0,.1,0);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta}]}).wait(1));this.Ua=new a.Cqa;this.Ua.parent=this;this.Ua.setTransform(23,-10);this.timeline.addTween(b.Tween.get(this.Ua).wait(1))}).prototype=k(a.mba,new b.Rectangle(-40,-22.5,320,226.6),null);(a.fba=function(d,e,f){this.initialize(d, +e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(187.9,157.5,6.4688,3.6875,0,0,0,.1,0);this.g=new a.N;this.g.parent=this;this.g.setTransform(52.9,157.5,6.4688,3.6875,0,0,0,.1,0);this.i=new a.N;this.i.parent=this;this.i.setTransform(146.75,41.05,14.7419,2.0031,0,0,0,.3,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(220,67.05, +1,8.5625,0,0,0,0,.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(19.5,67.35,1,8.5625,0,0,0,0,.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.O=new a.kN;this.O.parent=this;this.O.setTransform(20,18);this.timeline.addTween(b.Tween.get(this.O).wait(1));this.$=new a.eZ;this.$.parent=this;this.$.setTransform(120,76,1,1,0,0,0,0,-58.5);this.$.alpha=.5;this.timeline.addTween(b.Tween.get(this.$).wait(1));this.ka= +new a.Player;this.ka.parent=this;this.ka.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.ka).wait(1));this.ta=new a.vSa;this.ta.parent=this;this.ta.setTransform(119.35,58.4,1,1,0,0,0,0,-.6);this.timeline.addTween(b.Tween.get(this.ta).wait(1));this.va=new a.Bm;this.va.parent=this;this.va.setTransform(120,152.75);this.timeline.addTween(b.Tween.get(this.va).wait(1));this.wa=new a.J0;this.wa.parent=this;this.wa.setTransform(120,-81.5,1,1,0,0,0,0,-58.5);this.timeline.addTween(b.Tween.get(this.wa).wait(1))}).prototype= +k(a.fba,new b.Rectangle(.6,-2.4,259.4,189.5),null);(a.eba=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(187.9,157.5,6.4688,3.6875,0,0,0,.1,0);this.g=new a.N;this.g.parent=this;this.g.setTransform(52.9,157.5,6.4688,3.6875,0,0,0,.1,0);this.i=new a.N;this.i.parent=this;this.i.setTransform(146.75,41.05, +14.7419,2.0031,0,0,0,.3,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(220,67.05,1,8.5625,0,0,0,0,.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(19.5,67.35,1,8.5625,0,0,0,0,.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.O=new a.kN;this.O.parent=this;this.O.setTransform(20,18);this.timeline.addTween(b.Tween.get(this.O).wait(1));this.$=new a.eZ;this.$.parent=this;this.$.setTransform(120,76,1,1, +0,0,0,0,-58.5);this.$.alpha=.5;this.timeline.addTween(b.Tween.get(this.$).wait(1));this.ka=new a.Player;this.ka.parent=this;this.ka.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.ka).wait(1));this.ta=new a.Bm;this.ta.parent=this;this.ta.setTransform(120,152.75);this.timeline.addTween(b.Tween.get(this.ta).wait(1));this.va=new a.J0;this.va.parent=this;this.va.setTransform(120,-81.5,1,1,0,0,0,0,-58.5);this.timeline.addTween(b.Tween.get(this.va).wait(1))}).prototype=k(a.eba,new b.Rectangle(.6, +-2.4,259.4,189.5),null);(a.JZa=function(d,e,f){this.initialize(d,e,f,{off:0,on:1});this.u=function(){this.T={storageSprite:{condition1:"!$TRAIN_TRACKS",frame1:"off",condition2:"",frame2:"on",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.lRa;this.instance.parent=this;this.instance.setTransform(0,0,1,1,0,0,0,0,-.6);this.instance._off=!0;this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off:!1}, +0).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-18.4,34,36.8);(a.uYa=function(d,e,f){this.initialize(d,e,f,{nogirl:0,girl:1});this.u=function(){this.T={storageSprite:{condition1:"$BIRTHDAY == 'complete'",frame1:"girl",condition2:"",frame2:"nogirl",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.vYa;this.instance.parent=this;this.instance.setTransform(0,-17,1, +1,0,0,0,0,-17);this.g=new a.tYa;this.g.parent=this;this.g.setTransform(10,-5,1,1,0,0,0,0,-17);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]},1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-36,-26,82.2,51);(a.cea=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.hC;this.instance.parent=this; +this.instance.setTransform(280,70.85,1,1.3701,0,0,0,0,-68.5);this.g=new a.N;this.g.parent=this;this.g.setTransform(223.4,179.85,9.1573,3.6875,0,0,0,.2,.1);this.i=new a.N;this.i.parent=this;this.i.setTransform(31.45,179.85,9.1978,3.6875,0,0,0,.1,.1);this.o=new a.N;this.o.parent=this;this.o.setTransform(128.6,1.45,19.7016,3.8869,0,0,0,.4,.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(-40.5,67.6,1,11.8842,0,0,0,0,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.H},{t:this.o}, +{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.O=new a.Player;this.O.parent=this;this.O.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.O).wait(1));this.$=new a.nma;this.$.parent=this;this.$.setTransform(120,67,1,1,0,0,0,0,-90);this.timeline.addTween(b.Tween.get(this.$).wait(1));this.ka=new a.Vda;this.ka.parent=this;this.ka.setTransform(126,1.15,1,1,0,0,0,0,-25);this.ta=new a.mma;this.ta.parent=this;this.ta.setTransform(120,19,1,1,0,0,0,0,-38);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ta}, +{t:this.ka}]}).wait(1));this.va=new a.JZa;this.va.parent=this;this.va.setTransform(48,47.15);this.wa=new a.d2a;this.wa.parent=this;this.wa.setTransform(126,92.15,1,1,0,0,0,0,-.6);this.ya=new a.ISa;this.ya.parent=this;this.ya.setTransform(28,84.15,1,1,0,0,0,0,-.6);this.Aa=new a.SQa;this.Aa.parent=this;this.Aa.setTransform(238,60.75);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va}]}).wait(1));this.Ba=new a.s5;this.Ba.parent=this;this.Ba.setTransform(28, +77.15,1,1,0,0,180,0,-43);this.Da=new a.s5;this.Da.parent=this;this.Da.setTransform(211,77.15,1,1,0,0,0,0,-43);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Da},{t:this.Ba}]}).wait(1));this.Ea=new a.e2a;this.Ea.parent=this;this.Ea.setTransform(-41,-23);this.Ga=new a.Wea;this.Ga.parent=this;this.Ga.setTransform(126.5,168.85,1.25,1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ga},{t:this.Ea}]}).wait(1))}).prototype=k(a.cea,new b.Rectangle(-48.5,-30.1,343.2,239.2),null);(a.zda= +function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!0},cannonWorld:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(126.65,23.9,20.6949,2.6849,0,0,0,.2,.1);this.g=new a.hC;this.g.parent=this;this.g.setTransform(231,70.85,1,1.3701,0,0,0,0,-68.5);this.i=new a.N;this.i.parent=this;this.i.setTransform(217.1,160.85,9.9871,3.6875,0,0,0,.2,.1);this.o=new a.N;this.o.parent= +this;this.o.setTransform(31.45,160.85,9.1978,3.6875,0,0,0,.1,.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(10.5,67.6,1,11.8842,0,0,0,0,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.O=new a.Player;this.O.parent=this;this.O.setTransform(121,130);this.timeline.addTween(b.Tween.get(this.O).wait(1));this.$=new a.dZ;this.$.parent=this;this.$.setTransform(120,67,1,1,0,0,0,0,-90);this.timeline.addTween(b.Tween.get(this.$).wait(1)); +this.ka=new a.uYa;this.ka.parent=this;this.ka.setTransform(58.4,79.05,1,1,0,0,0,0,-17);this.timeline.addTween(b.Tween.get(this.ka).wait(1));this.ta=new a.gca;this.ta.parent=this;this.ta.setTransform(29,77,1,1,0,0,0,0,-17.5);this.va=new a.hca;this.va.parent=this;this.va.setTransform(60,110,1,1,0,0,0,0,-16);this.wa=new a.aBa;this.wa.parent=this;this.wa.setTransform(62,0);this.ya=new a.ema;this.ya.parent=this;this.ya.setTransform(175,72,1,1,0,0,0,0,.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ya}, +{t:this.wa},{t:this.va},{t:this.ta}]}).wait(1));this.Aa=new a.Bm;this.Aa.parent=this;this.Aa.setTransform(118.5,155.85,1.25,1);this.Ba=new a.IAa;this.Ba.parent=this;this.Ba.setTransform(-40,-23);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ba},{t:this.Aa}]}).wait(1))}).prototype=k(a.zda,new b.Rectangle(-42.8,-30,337.6,220.1),null);(a.mbb=function(d,e,f){this.initialize(d,e,f,{teahouse:0,gohouse:1,pingpongdojohallway:2,tabletennisdojo:3,skatedojohallway:4,skatedojomainroom:5,archerydojohallway:6, +archeryDojoMainRoom:7,rugbydojohallway:8,rugbydojomainroom:9,climbingdojohallway:10,climbingdojomainroom:11,otohimeCastle:12,banyantree:13,koma1House:14,koma2House:15,momotarohouse:16,abandonedHouse1:17,abandonedHouse2:18,convenienceStore1:19,arcade:20,trainStation:21,gym:22,noodleShop:23,bakery:24,bookstore:25,lostbookhouse:26,sister3house:27,boatHouse1:28,boatHouse2:29,porcupineHouse:30,whirlpoolBoat:31,arrowshop:32,woodshop:33,sister1house:34,trophyRoom:35,gazebo:36,ghostGazebo:37,climbingGym:38, +gondola:39,cave1:40,locksmith:41,oniBakerHouse:42,oniBrothersHouse:43,yellowteamhq1:44,yellowteamhq2:45,yellowteamhq3:46,blueteamhq1:47,blueteamhq2:48,blueteamhq3:49,redteamhq1:50,redteamhq2:51,redteamhq3:52,greenteamhq1:53,greenteamhq2:54,greenteamhq3:55,momo:56});this.u=function(){this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(57));this.instance=new a.Xna;this.instance.parent=this;this.instance.setTransform(480,270,3,3,0,0,0,120,67.5);this.g=new a.lfa;this.g.parent=this; +this.g.setTransform(480,270,3,3,0,0,0,120,67.5);this.i=new a.mka;this.i.parent=this;this.i.setTransform(480,270,3,3,0,0,0,120,67.5);this.o=new a.bea;this.o.parent=this;this.o.setTransform(480,270,3,3,0,0,0,120,67.5);this.H=new a.hma;this.H.parent=this;this.H.setTransform(480,270,3,3,0,0,0,120,67.5);this.O=new a.cea;this.O.parent=this;this.O.setTransform(480,270,3,3,0,0,0,120,67.5);this.$=new a.tba;this.$.parent=this;this.$.setTransform(480,270,3,3,0,0,0,120,67.5);this.ka=new a.uba;this.ka.parent= +this;this.ka.setTransform(480,270,3,3,0,0,0,120,67.5);this.ta=new a.yla;this.ta.parent=this;this.ta.setTransform(480,270,3,3,0,0,0,120,67.5);this.va=new a.Ala;this.va.parent=this;this.va.setTransform(480,270,3,3,0,0,0,120,67.5);this.wa=new a.vda;this.wa.parent=this;this.wa.setTransform(480,270,3,3,0,0,0,120,67.5);this.ya=new a.xda;this.ya.parent=this;this.ya.setTransform(480,270,3,3,0,0,0,120,67.5);this.Aa=new a.Jja;this.Aa.parent=this;this.Aa.setTransform(480,270,3,3,0,0,0,120,67.5);this.Ba=new a.Tba; +this.Ba.parent=this;this.Ba.setTransform(480,270,3,3,0,0,0,120,67.5);this.Da=new a.$pa;this.Da.parent=this;this.Da.setTransform(480,270,3,3,0,0,0,120,67.5);this.Ea=new a.aqa;this.Ea.parent=this;this.Ea.setTransform(480,270,3,3,0,0,0,120,67.5);this.Ga=new a.Pia;this.Ga.parent=this;this.Ga.setTransform(480,270,3,3,0,0,0,120,67.5);this.Ha=new a.eba;this.Ha.parent=this;this.Ha.setTransform(480,270,3,3,0,0,0,120,67.5);this.Ia=new a.fba;this.Ia.parent=this;this.Ia.setTransform(480,270,3,3,0,0,0,120,67.5); +this.Ja=new a.Mda;this.Ja.parent=this;this.Ja.setTransform(480,270,3,3,0,0,0,120,67.5);this.Ka=new a.mba;this.Ka.parent=this;this.Ka.setTransform(480,270,3,3,0,0,0,120,67.5);this.La=new a.toa;this.La.parent=this;this.La.setTransform(480,270,3,3,0,0,0,120,67.5);this.Ma=new a.wfa;this.Ma.parent=this;this.Ma.setTransform(480,270,3,3,0,0,0,120,67.5);this.Na=new a.sja;this.Na.parent=this;this.Na.setTransform(480,270,3,3,0,0,0,120,67.5);this.Oa=new a.TY;this.Oa.parent=this;this.Oa.setTransform(448.8,209.45, +3,3,0,0,0,120,67.5);this.Qa=new a.Mna;this.Qa.parent=this;this.Qa.setTransform(480,270,3,3,0,0,0,120,67.5);this.Ua=new a.dqa;this.Ua.parent=this;this.Ua.setTransform(448.8,209.45,3,3,0,0,0,120,67.5);this.Va=new a.oqa;this.Va.parent=this;this.Va.setTransform(448.8,209.45,3,3,0,0,0,120,67.5);this.Wa=new a.Uca;this.Wa.parent=this;this.Wa.setTransform(480,270,3,3,0,0,0,120,67.5);this.Xa=new a.Vca;this.Xa.parent=this;this.Xa.setTransform(480,270,3,3,0,0,0,120,67.5);this.Ya=new a.Fka;this.Ya.parent=this; +this.Ya.setTransform(480,270,3,3,0,0,0,120,67.5);this.Za=new a.wqa;this.Za.parent=this;this.Za.setTransform(480,270,3,3,0,0,0,120,67.5);this.$a=new a.Gba;this.$a.parent=this;this.$a.setTransform(480,270,3,3,0,0,0,120,67.5);this.ab=new a.tpa;this.ab.parent=this;this.ab.setTransform(480,270,3,3,0,0,0,120,67.5);this.hb=new a.nqa;this.hb.parent=this;this.hb.setTransform(448.8,209.45,3,3,0,0,0,120,67.5);this.mb=new a.Aoa;this.mb.parent=this;this.mb.setTransform(480,270,3,3,0,0,0,120,67.5);this.nb=new a.Pna; +this.nb.parent=this;this.nb.setTransform(480,270,3,3,0,0,0,120,67.5);this.rb=new a.ffa;this.rb.parent=this;this.rb.setTransform(480,270,3,3,0,0,0,120,67.5);this.tb=new a.zda;this.tb.parent=this;this.tb.setTransform(480,270,3,3,0,0,0,120,67.5);this.ub=new a.yda;this.ub.parent=this;this.ub.setTransform(480,270,3,3,0,0,0,120,67.5);this.wb=new a.nda;this.wb.parent=this;this.wb.setTransform(480,270,3,3,0,0,0,120,67.5);this.yb=new a.Jha;this.yb.parent=this;this.yb.setTransform(448.8,209.45,3,3,0,0,0,120, +67.5);this.Ab=new a.hqa;this.Ab.parent=this;this.Ab.setTransform(448.8,209.45,3,3,0,0,0,120,67.5);this.Cb=new a.iqa;this.Cb.parent=this;this.Cb.setTransform(448.8,209.45,3,3,0,0,0,120,67.5);this.Db=new a.loa;this.Db.parent=this;this.Db.setTransform(480,270,3,3,0,0,0,120,67.5);this.Eb=new a.moa;this.Eb.parent=this;this.Eb.setTransform(480,270,3,3,0,0,0,120,67.5);this.Fb=new a.noa;this.Fb.parent=this;this.Fb.setTransform(480,270,3,3,0,0,0,120,67.5);this.Gb=new a.aoa;this.Gb.parent=this;this.Gb.setTransform(480, +270,3,3,0,0,0,120,67.5);this.Hb=new a.boa;this.Hb.parent=this;this.Hb.setTransform(480,270,3,3,0,0,0,120,67.5);this.Jb=new a.coa;this.Jb.parent=this;this.Jb.setTransform(480,270,3,3,0,0,0,120,67.5);this.Lb=new a.ioa;this.Lb.parent=this;this.Lb.setTransform(480,270,3,3,0,0,0,120,67.5);this.Mb=new a.joa;this.Mb.parent=this;this.Mb.setTransform(488,270,3,3,0,0,0,120,67.5);this.Pb=new a.koa;this.Pb.parent=this;this.Pb.setTransform(480,270,3,3,0,0,0,120,67.5);this.Nb=new a.eoa;this.Nb.parent=this;this.Nb.setTransform(480, +270,3,3,0,0,0,120,67.5);this.Qb=new a.foa;this.Qb.parent=this;this.Qb.setTransform(480,270,3,3,0,0,0,120,67.5);this.Ob=new a.hoa;this.Ob.parent=this;this.Ob.setTransform(480,270,3,3,0,0,0,120,67.5);this.Rb=new a.Oia;this.Rb.parent=this;this.Rb.setTransform(480,270,3,3,0,0,0,120,67.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]},1).to({state:[{t:this.i}]},1).to({state:[{t:this.o}]},1).to({state:[{t:this.H}]},1).to({state:[{t:this.O}]},1).to({state:[{t:this.$}]}, +1).to({state:[{t:this.ka}]},1).to({state:[{t:this.ta}]},1).to({state:[{t:this.va}]},1).to({state:[{t:this.wa}]},1).to({state:[{t:this.ya}]},1).to({state:[{t:this.Aa}]},1).to({state:[{t:this.Ba}]},1).to({state:[{t:this.Da}]},1).to({state:[{t:this.Ea}]},1).to({state:[{t:this.Ga}]},1).to({state:[{t:this.Ha}]},1).to({state:[{t:this.Ia}]},1).to({state:[{t:this.Ja}]},1).to({state:[{t:this.Ka}]},1).to({state:[{t:this.La}]},1).to({state:[{t:this.Ma}]},1).to({state:[{t:this.Na}]},1).to({state:[{t:this.Oa}]}, +1).to({state:[{t:this.Qa}]},1).to({state:[{t:this.Ua}]},1).to({state:[{t:this.Va}]},1).to({state:[{t:this.Wa}]},1).to({state:[{t:this.Xa}]},1).to({state:[{t:this.Ya}]},1).to({state:[{t:this.Za}]},1).to({state:[{t:this.$a}]},1).to({state:[{t:this.ab}]},1).to({state:[{t:this.hb}]},1).to({state:[{t:this.mb}]},1).to({state:[{t:this.nb}]},1).to({state:[{t:this.rb}]},1).to({state:[{t:this.tb}]},1).to({state:[{t:this.ub}]},1).to({state:[{t:this.wb}]},1).to({state:[{t:this.yb}]},1).to({state:[{t:this.Ab}]}, +1).to({state:[{t:this.Cb}]},1).to({state:[{t:this.Db}]},1).to({state:[{t:this.Eb}]},1).to({state:[{t:this.Fb}]},1).to({state:[{t:this.Gb}]},1).to({state:[{t:this.Hb}]},1).to({state:[{t:this.Jb}]},1).to({state:[{t:this.Lb}]},1).to({state:[{t:this.Mb}]},1).to({state:[{t:this.Pb}]},1).to({state:[{t:this.Nb}]},1).to({state:[{t:this.Qb}]},1).to({state:[{t:this.Ob}]},1).to({state:[{t:this.Rb}]},1).wait(1));this.shape=new b.Shape;this.shape.graphics.f("#000000").s().p("EhK/AqMMAAAhUXMCV/AAAMAAABUXg");this.shape.setTransform(480, +270);this.timeline.addTween(b.Tween.get(this.shape).wait(57))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(204.5,85.5,1025.2,1206);a.properties={id:"61DFBEFE7BBA42719310DD5484391B9B",width:960,height:540,fps:30,color:"#FFFFFF",opacity:1,aB:[{src:"images_interior/_3TargetsArt.png",id:"_3TargetsArt"},{src:"images_interior/_3x3water11.png",id:"_3x3water11"},{src:"images_interior/AaprtmentKitchenArt.png",id:"AaprtmentKitchenArt"},{src:"images_interior/AbandonedHouseBGArt.png",id:"AbandonedHouseBGArt"}, +{src:"images_interior/ApartmentBGArt.png",id:"ApartmentBGArt"},{src:"images_interior/ApartmentBookshelfArt.png",id:"ApartmentBookshelfArt"},{src:"images_interior/ApartmentFrameArt.png",id:"ApartmentFrameArt"},{src:"images_interior/AquaWaterfallArt1.png",id:"AquaWaterfallArt1"},{src:"images_interior/AquaWaterfallArt2.png",id:"AquaWaterfallArt2"},{src:"images_interior/AquaWaterfallArt3.png",id:"AquaWaterfallArt3"},{src:"images_interior/AquaWaterfallArt4.png",id:"AquaWaterfallArt4"},{src:"images_interior/Ar.png", +id:"Ar"},{src:"images_interior/ARcadeBackCabinetARt.png",id:"ARcadeBackCabinetARt"},{src:"images_interior/ARcadeBGArt.png",id:"ARcadeBGArt"},{src:"images_interior/ArcadeCabinetArt.png",id:"ArcadeCabinetArt"},{src:"images_interior/ArcadeCabinetGlowArt.png",id:"ArcadeCabinetGlowArt"},{src:"images_interior/ArcadeChangeMachineArt.png",id:"ArcadeChangeMachineArt"},{src:"images_interior/ARcadeDomeArt.png",id:"ARcadeDomeArt"},{src:"images_interior/ArcadeFrameArt.png",id:"ArcadeFrameArt"},{src:"images_interior/ArcadeSideCabinetArt.png", +id:"ArcadeSideCabinetArt"},{src:"images_interior/ArcadeSideCabinetGlowArt.png",id:"ArcadeSideCabinetGlowArt"},{src:"images_interior/ARcadeYarnGlowArt.png",id:"ARcadeYarnGlowArt"},{src:"images_interior/ArcheryBoat1FrameArt.png",id:"ArcheryBoat1FrameArt"},{src:"images_interior/ArcheryBoatBGArt.png",id:"ArcheryBoatBGArt"},{src:"images_interior/ArcheryShipWindowLightArt.png",id:"ArcheryShipWindowLightArt"},{src:"images_interior/ArrowDisplayArt.png",id:"ArrowDisplayArt"},{src:"images_interior/BackBigCatArt1.png", +id:"BackBigCatArt1"},{src:"images_interior/BackBigCatArt2.png",id:"BackBigCatArt2"},{src:"images_interior/BackeryBGArt.png",id:"BackeryBGArt"},{src:"images_interior/BackeryShelf1Art.png",id:"BackeryShelf1Art"},{src:"images_interior/Baker_Retired_Small_001.png",id:"Baker_Retired_Small_001"},{src:"images_interior/Baker_Retired_Small_002.png",id:"Baker_Retired_Small_002"},{src:"images_interior/Baker_Small_001.png",id:"Baker_Small_001"},{src:"images_interior/Baker_Small_002.png",id:"Baker_Small_002"}, +{src:"images_interior/BakeryCounterArt.png",id:"BakeryCounterArt"},{src:"images_interior/BakeryShelf2Art.png",id:"BakeryShelf2Art"},{src:"images_interior/BakeryShelf3Art.png",id:"BakeryShelf3Art"},{src:"images_interior/BambooTree1Art1.png",id:"BambooTree1Art1"},{src:"images_interior/BambooTree3Art1.png",id:"BambooTree3Art1"},{src:"images_interior/BanyanTreeFrameArt.png",id:"BanyanTreeFrameArt"},{src:"images_interior/BanyanTreeLeavesArt.png",id:"BanyanTreeLeavesArt"},{src:"images_interior/BanyanTreeMapArt.png", +id:"BanyanTreeMapArt"},{src:"images_interior/BanyanTreeRootsArt.png",id:"BanyanTreeRootsArt"},{src:"images_interior/BanyanTreeSunArt.png",id:"BanyanTreeSunArt"},{src:"images_interior/BeachHouseLArgeBGArt2.png",id:"BeachHouseLArgeBGArt2"},{src:"images_interior/BeachLargeRoomBGArt.png",id:"BeachLargeRoomBGArt"},{src:"images_interior/BigBlueFrameArt.png",id:"BigBlueFrameArt"},{src:"images_interior/BigBlueLanternArt.png",id:"BigBlueLanternArt"},{src:"images_interior/BigBlueRoomBGArt.png",id:"BigBlueRoomBGArt"}, +{src:"images_interior/BigBlueRoomDoorBGArt.png",id:"BigBlueRoomDoorBGArt"},{src:"images_interior/BigCatArt1.png",id:"BigCatArt1"},{src:"images_interior/BigInari.png",id:"BigInari"},{src:"images_interior/BigInariArt2.png",id:"BigInariArt2"},{src:"images_interior/BigKappaArt.png",id:"BigKappaArt"},{src:"images_interior/BigKappaArt2.png",id:"BigKappaArt2"},{src:"images_interior/BigKarasuArt2.png",id:"BigKarasuArt2"},{src:"images_interior/BigKarasuImage.png",id:"BigKarasuImage"},{src:"images_interior/BigRedRoom2TatamiArt.png", +id:"BigRedRoom2TatamiArt"},{src:"images_interior/BigRoomBGArt2.png",id:"BigRoomBGArt2"},{src:"images_interior/BigRoomCenterTatamiBGArt.png",id:"BigRoomCenterTatamiBGArt"},{src:"images_interior/BigTable.png",id:"BigTable"},{src:"images_interior/BigUshiArt.png",id:"BigUshiArt"},{src:"images_interior/birthdayfriendframe1.png",id:"birthdayfriendframe1"},{src:"images_interior/birthdayfriendframe2.png",id:"birthdayfriendframe2"},{src:"images_interior/birthdaykidframe1.png",id:"birthdaykidframe1"},{src:"images_interior/birthdaykidframe2.png", +id:"birthdaykidframe2"},{src:"images_interior/BirthdayBallonsArt.png",id:"BirthdayBallonsArt"},{src:"images_interior/BirthdayCakeTableArt.png",id:"BirthdayCakeTableArt"},{src:"images_interior/BlueBannerArt.png",id:"BlueBannerArt"},{src:"images_interior/BlueBookArt.png",id:"BlueBookArt"},{src:"images_interior/BlueCushionsArt.png",id:"BlueCushionsArt"},{src:"images_interior/BlueHallwayFrameArt.png",id:"BlueHallwayFrameArt"},{src:"images_interior/BlueOniIdleArt1.png",id:"BlueOniIdleArt1"},{src:"images_interior/BlueOniIdleArt2.png", +id:"BlueOniIdleArt2"},{src:"images_interior/BlueTableArt.png",id:"BlueTableArt"},{src:"images_interior/BlueWeight1Art.png",id:"BlueWeight1Art"},{src:"images_interior/BlueWeight2Art.png",id:"BlueWeight2Art"},{src:"images_interior/BoatBGArt.png",id:"BoatBGArt"},{src:"images_interior/BonsaiArt.png",id:"BonsaiArt"},{src:"images_interior/BookshelfImage111.png",id:"BookshelfImage111"},{src:"images_interior/BookstoreBG1.png",id:"BookstoreBG1"},{src:"images_interior/BoundBitmap.png",id:"BoundBitmap"},{src:"images_interior/BoundBitmap_1.png", +id:"BoundBitmap_1"},{src:"images_interior/BullStatue1Art.png",id:"BullStatue1Art"},{src:"images_interior/BullStatue2Art.png",id:"BullStatue2Art"},{src:"images_interior/BullStatue3Art.png",id:"BullStatue3Art"},{src:"images_interior/BuoyArt.png",id:"BuoyArt"},{src:"images_interior/CashRegisterImage.png",id:"CashRegisterImage"},{src:"images_interior/CaveBGArt.png",id:"CaveBGArt"},{src:"images_interior/CaveFrameArt.png",id:"CaveFrameArt"},{src:"images_interior/CaveRock1Art.png",id:"CaveRock1Art"},{src:"images_interior/ChampionFacingPlayer_011.png", +id:"ChampionFacingPlayer_011"},{src:"images_interior/ChampionFacingPlayer_1.png",id:"ChampionFacingPlayer_1"},{src:"images_interior/ChampionStandin.png",id:"ChampionStandin"},{src:"images_interior/CharacterShadowArt.png",id:"CharacterShadowArt"},{src:"images_interior/CherryBlossomVaseArt.png",id:"CherryBlossomVaseArt"},{src:"images_interior/ClimbingGymArt.png",id:"ClimbingGymArt"},{src:"images_interior/ClimbingGymBGArt.png",id:"ClimbingGymBGArt"},{src:"images_interior/ClimbingGymFrameArt.png",id:"ClimbingGymFrameArt"}, +{src:"images_interior/ComputerArt1.png",id:"ComputerArt1"},{src:"images_interior/ConveneineceStore1BGArt.png",id:"ConveneineceStore1BGArt"},{src:"images_interior/ConvenienceCounter1Art.png",id:"ConvenienceCounter1Art"},{src:"images_interior/ConvenienceStore1BorderArt.png",id:"ConvenienceStore1BorderArt"},{src:"images_interior/CounterImage.png",id:"CounterImage"},{src:"images_interior/DarknessOLArt.png",id:"DarknessOLArt"},{src:"images_interior/DarumaArt.png",id:"DarumaArt"},{src:"images_interior/DebrisArt1.png", +id:"DebrisArt1"},{src:"images_interior/deer_sprite_idle_anim_pose1.png",id:"deer_sprite_idle_anim_pose1"},{src:"images_interior/deer_sprite_idle_anim_pose2.png",id:"deer_sprite_idle_anim_pose2"},{src:"images_interior/DumbassCat1.png",id:"DumbassCat1"},{src:"images_interior/DumbbellArt.png",id:"DumbbellArt"},{src:"images_interior/ExclaimationMarkBubbleArt1.png",id:"ExclaimationMarkBubbleArt1"},{src:"images_interior/Freezer1Art.png",id:"Freezer1Art"},{src:"images_interior/Frond.png",id:"Frond"},{src:"images_interior/GhostMomArt1.png", +id:"GhostMomArt1"},{src:"images_interior/GhostMomArt2.png",id:"GhostMomArt2"},{src:"images_interior/GoBoard.png",id:"GoBoard"},{src:"images_interior/GondolaBGArt.png",id:"GondolaBGArt"},{src:"images_interior/GreenBookImage.png",id:"GreenBookImage"},{src:"images_interior/HotFood1Art.png",id:"HotFood1Art"},{src:"images_interior/InariSideFrame1.png",id:"InariSideFrame1"},{src:"images_interior/InariSideFrame2.png",id:"InariSideFrame2"},{src:"images_interior/inariArt.png",id:"inariArt"},{src:"images_interior/InariArt2.png", +id:"InariArt2"},{src:"images_interior/InariBladeRunArt2.png",id:"InariBladeRunArt2"},{src:"images_interior/InariBladRunArt.png",id:"InariBladRunArt"},{src:"images_interior/InariImage.png",id:"InariImage"},{src:"images_interior/InariStatueArt.png",id:"InariStatueArt"},{src:"images_interior/KappaSideFrame1.png",id:"KappaSideFrame1"},{src:"images_interior/KappaSideFrame2.png",id:"KappaSideFrame2"},{src:"images_interior/KappaArt.png",id:"KappaArt"},{src:"images_interior/KappaArt2.png",id:"KappaArt2"}, +{src:"images_interior/KappaRunArt.png",id:"KappaRunArt"},{src:"images_interior/KarasuSideFrame1.png",id:"KarasuSideFrame1"},{src:"images_interior/KarasuSideFrame2.png",id:"KarasuSideFrame2"},{src:"images_interior/KarasuArt.png",id:"KarasuArt"},{src:"images_interior/KarasuArt2.png",id:"KarasuArt2"},{src:"images_interior/KijimunaIdleArt1.png",id:"KijimunaIdleArt1"},{src:"images_interior/KijimunaIdleArt2.png",id:"KijimunaIdleArt2"},{src:"images_interior/Koma1Art1.png",id:"Koma1Art1"},{src:"images_interior/Koma1Art2.png", +id:"Koma1Art2"},{src:"images_interior/Koma2Art1.png",id:"Koma2Art1"},{src:"images_interior/Koma2Art2.png",id:"Koma2Art2"},{src:"images_interior/KomaHouseBGArt11.png",id:"KomaHouseBGArt11"},{src:"images_interior/KotatsuArt.png",id:"KotatsuArt"},{src:"images_interior/LanternsArt.png",id:"LanternsArt"},{src:"images_interior/LanternStringBlueArt.png",id:"LanternStringBlueArt"},{src:"images_interior/LanternStringGreenArt.png",id:"LanternStringGreenArt"},{src:"images_interior/LanternStringRedArt.png",id:"LanternStringRedArt"}, +{src:"images_interior/LanternStringYellowArt.png",id:"LanternStringYellowArt"},{src:"images_interior/LargeBallPileArt.png",id:"LargeBallPileArt"},{src:"images_interior/LargeHotSpringArt2.png",id:"LargeHotSpringArt2"},{src:"images_interior/LargeHotSpringArt3.png",id:"LargeHotSpringArt3"},{src:"images_interior/LargeLava1Art1.png",id:"LargeLava1Art1"},{src:"images_interior/LargeLava1Art2.png",id:"LargeLava1Art2"},{src:"images_interior/LargeLava1Art3.png",id:"LargeLava1Art3"},{src:"images_interior/LargeLava1Art4.png", +id:"LargeLava1Art4"},{src:"images_interior/LargeLavaArt.png",id:"LargeLavaArt"},{src:"images_interior/LargeLavaArt2.png",id:"LargeLavaArt2"},{src:"images_interior/LArgeRoomBGArt11.png",id:"LArgeRoomBGArt11"},{src:"images_interior/LargeWallArt.png",id:"LargeWallArt"},{src:"images_interior/LargeWater1Art5.png",id:"LargeWater1Art5"},{src:"images_interior/LargeWater1RippleArt1.png",id:"LargeWater1RippleArt1"},{src:"images_interior/LargeWater1RippleArt2.png",id:"LargeWater1RippleArt2"},{src:"images_interior/LargeWeightArt.png", +id:"LargeWeightArt"},{src:"images_interior/Lava1Waterfall1Art2.png",id:"Lava1Waterfall1Art2"},{src:"images_interior/Lava1Waterfall1Art3.png",id:"Lava1Waterfall1Art3"},{src:"images_interior/Lava1Waterfall1Art4.png",id:"Lava1Waterfall1Art4"},{src:"images_interior/Lava1Waterfall1HighlightArt1.png",id:"Lava1Waterfall1HighlightArt1"},{src:"images_interior/Lava1Waterfall1HighlightArt2.png",id:"Lava1Waterfall1HighlightArt2"},{src:"images_interior/Lava1Waterfall1HighlightArt3.png",id:"Lava1Waterfall1HighlightArt3"}, +{src:"images_interior/Lava1Waterfall1HighlightArt4.png",id:"Lava1Waterfall1HighlightArt4"},{src:"images_interior/Lava1WaterfallArt1.png",id:"Lava1WaterfallArt1"},{src:"images_interior/LavafallBottomArt1.png",id:"LavafallBottomArt1"},{src:"images_interior/LavafallBottomArt2.png",id:"LavafallBottomArt2"},{src:"images_interior/LavafallBottomArt3.png",id:"LavafallBottomArt3"},{src:"images_interior/LavafallBottomArt4.png",id:"LavafallBottomArt4"},{src:"images_interior/lilypad1.png",id:"lilypad1"},{src:"images_interior/lilypad2.png", +id:"lilypad2"},{src:"images_interior/LittleTable.png",id:"LittleTable"},{src:"images_interior/locksmith_sprite_idle_anim_pose1.png",id:"locksmith_sprite_idle_anim_pose1"},{src:"images_interior/locksmith_sprite_idle_anim_pose2.png",id:"locksmith_sprite_idle_anim_pose2"},{src:"images_interior/LocksmithBGArt1.png",id:"LocksmithBGArt1"},{src:"images_interior/LocksmithCounterArt.png",id:"LocksmithCounterArt"},{src:"images_interior/LocksmithShelvesArt.png",id:"LocksmithShelvesArt"},{src:"images_interior/LocksmithSmallTableArt.png", +id:"LocksmithSmallTableArt"},{src:"images_interior/LocksmithTable2Art.png",id:"LocksmithTable2Art"},{src:"images_interior/LocksmithTableArt.png",id:"LocksmithTableArt"},{src:"images_interior/LocksmithTree2Art.png",id:"LocksmithTree2Art"},{src:"images_interior/LocksmithTreeArt.png",id:"LocksmithTreeArt"},{src:"images_interior/LocksmithWallArt.png",id:"LocksmithWallArt"},{src:"images_interior/LongFrameArt1.png",id:"LongFrameArt1"},{src:"images_interior/LongTredmillArt.png",id:"LongTredmillArt"},{src:"images_interior/LostBookArt.png", +id:"LostBookArt"},{src:"images_interior/LuckyIdleEArt.png",id:"LuckyIdleEArt"},{src:"images_interior/LuckyIdleNArt.png",id:"LuckyIdleNArt"},{src:"images_interior/LuckyIdleS1111.png",id:"LuckyIdleS1111"},{src:"images_interior/LuckyIdleSArt2.png",id:"LuckyIdleSArt2"},{src:"images_interior/LuckyIdleSArt3.png",id:"LuckyIdleSArt3"},{src:"images_interior/LuckyIdleWArt.png",id:"LuckyIdleWArt"},{src:"images_interior/LuckySculptureArt1.png",id:"LuckySculptureArt1"},{src:"images_interior/LuckyWalkEArt1.png", +id:"LuckyWalkEArt1"},{src:"images_interior/LuckyWalkEArt2.png",id:"LuckyWalkEArt2"},{src:"images_interior/LuckyWalkEArt3.png",id:"LuckyWalkEArt3"},{src:"images_interior/LuckyWalkEArt4.png",id:"LuckyWalkEArt4"},{src:"images_interior/LuckyWalkEArt5.png",id:"LuckyWalkEArt5"},{src:"images_interior/LuckyWalkEArt6.png",id:"LuckyWalkEArt6"},{src:"images_interior/LuckyWalkNArt1.png",id:"LuckyWalkNArt1"},{src:"images_interior/LuckyWalkNArt2.png",id:"LuckyWalkNArt2"},{src:"images_interior/LuckyWalkNArt3.png", +id:"LuckyWalkNArt3"},{src:"images_interior/LuckyWalkNArt4.png",id:"LuckyWalkNArt4"},{src:"images_interior/LuckyWalknArt5.png",id:"LuckyWalknArt5"},{src:"images_interior/LuckyWalkSArt1.png",id:"LuckyWalkSArt1"},{src:"images_interior/LuckyWalkSArt2.png",id:"LuckyWalkSArt2"},{src:"images_interior/LuckyWalkSArt3.png",id:"LuckyWalkSArt3"},{src:"images_interior/LuckyWalkSArt4.png",id:"LuckyWalkSArt4"},{src:"images_interior/LuckyWalkSArt5.png",id:"LuckyWalkSArt5"},{src:"images_interior/LuckyWalkSArt6.png", +id:"LuckyWalkSArt6"},{src:"images_interior/LuckyWalkSArt7.png",id:"LuckyWalkSArt7"},{src:"images_interior/LuckyWalkSArt8.png",id:"LuckyWalkSArt8"},{src:"images_interior/LuckyWalkWArt1.png",id:"LuckyWalkWArt1"},{src:"images_interior/LuckyWalkWArt2.png",id:"LuckyWalkWArt2"},{src:"images_interior/LuckyWalkWArt3.png",id:"LuckyWalkWArt3"},{src:"images_interior/LuckyWalkWArt4.png",id:"LuckyWalkWArt4"},{src:"images_interior/LuckyWalkWArt5.png",id:"LuckyWalkWArt5"},{src:"images_interior/LuckyWalkWArt6.png", +id:"LuckyWalkWArt6"},{src:"images_interior/MediumLanternBlueArt.png",id:"MediumLanternBlueArt"},{src:"images_interior/MediumLanternGreenArt.png",id:"MediumLanternGreenArt"},{src:"images_interior/MediumLanternYellowArt.png",id:"MediumLanternYellowArt"},{src:"images_interior/MediumWeightRackArt.png",id:"MediumWeightRackArt"},{src:"images_interior/momframe1.png",id:"momframe1"},{src:"images_interior/momframe2.png",id:"momframe2"},{src:"images_interior/MomoBGArt1.png",id:"MomoBGArt1"},{src:"images_interior/MomoBGArt2.png", +id:"MomoBGArt2"},{src:"images_interior/MomoBlueIdleArt1.png",id:"MomoBlueIdleArt1"},{src:"images_interior/MomoBlueIdleArt2.png",id:"MomoBlueIdleArt2"},{src:"images_interior/MomoIdleArt1.png",id:"MomoIdleArt1"},{src:"images_interior/MomoIdleArt2.png",id:"MomoIdleArt2"},{src:"images_interior/NewLArgeWater1Art11.png",id:"NewLArgeWater1Art11"},{src:"images_interior/NewLargeWater1Art2.png",id:"NewLargeWater1Art2"},{src:"images_interior/NiceTableArt.png",id:"NiceTableArt"},{src:"images_interior/NoodleBarArt.png", +id:"NoodleBarArt"},{src:"images_interior/NoodleChefArt1.png",id:"NoodleChefArt1"},{src:"images_interior/NoodleChefArt2.png",id:"NoodleChefArt2"},{src:"images_interior/NoodleKitchenArt.png",id:"NoodleKitchenArt"},{src:"images_interior/NoodlePotArt1.png",id:"NoodlePotArt1"},{src:"images_interior/NoodleShopMapArt.png",id:"NoodleShopMapArt"},{src:"images_interior/NoodleShopWallArt.png",id:"NoodleShopWallArt"},{src:"images_interior/NoodleStoolArt.png",id:"NoodleStoolArt"},{src:"images_interior/NPCmomotarodadframe1.png", +id:"NPCmomotarodadframe1"},{src:"images_interior/NPCmomotarodadframe2.png",id:"NPCmomotarodadframe2"},{src:"images_interior/NPCmomotaromomframe1.png",id:"NPCmomotaromomframe1"},{src:"images_interior/NPCmomotaromomframe2.png",id:"NPCmomotaromomframe2"},{src:"images_interior/NPCRacerAframe1.png",id:"NPCRacerAframe1"},{src:"images_interior/NPCRacerAframe2.png",id:"NPCRacerAframe2"},{src:"images_interior/NPCRacerBframe1.png",id:"NPCRacerBframe1"},{src:"images_interior/NPCRacerBframe2.png",id:"NPCRacerBframe2"}, +{src:"images_interior/NPCWolfieFrame1.png",id:"NPCWolfieFrame1"},{src:"images_interior/NPCWolfieFrame2.png",id:"NPCWolfieFrame2"},{src:"images_interior/Ogre_Baker_Small_001.png",id:"Ogre_Baker_Small_001"},{src:"images_interior/Ogre_Baker_Small_002.png",id:"Ogre_Baker_Small_002"},{src:"images_interior/Ogre_small_001.png",id:"Ogre_small_001"},{src:"images_interior/Ogre_small_002.png",id:"Ogre_small_002"},{src:"images_interior/OldTrophiesArt.png",id:"OldTrophiesArt"},{src:"images_interior/OniBakerArt2.png", +id:"OniBakerArt2"},{src:"images_interior/OniBakerBedArt.png",id:"OniBakerBedArt"},{src:"images_interior/OniBakerBreadTableArt.png",id:"OniBakerBreadTableArt"},{src:"images_interior/OniBakerJarsArt.png",id:"OniBakerJarsArt"},{src:"images_interior/OniBakerPotArt.png",id:"OniBakerPotArt"},{src:"images_interior/OniBakerWeightsArt.png",id:"OniBakerWeightsArt"},{src:"images_interior/OniBrotherHouseBGArt.png",id:"OniBrotherHouseBGArt"},{src:"images_interior/OniRunArt.png",id:"OniRunArt"},{src:"images_interior/Opponenet2Art5.png", +id:"Opponenet2Art5"},{src:"images_interior/Opponenet2Art6.png",id:"Opponenet2Art6"},{src:"images_interior/Opponenet3Art1.png",id:"Opponenet3Art1"},{src:"images_interior/Opponenet3Art2.png",id:"Opponenet3Art2"},{src:"images_interior/Opponenet3Art3.png",id:"Opponenet3Art3"},{src:"images_interior/Opponenet3Art4.png",id:"Opponenet3Art4"},{src:"images_interior/Opponenet3Art5.png",id:"Opponenet3Art5"},{src:"images_interior/Opponenet3Art6.png",id:"Opponenet3Art6"},{src:"images_interior/Opponenet4Art1.png", +id:"Opponenet4Art1"},{src:"images_interior/Opponenet4Art2.png",id:"Opponenet4Art2"},{src:"images_interior/Opponenet4Art3.png",id:"Opponenet4Art3"},{src:"images_interior/Opponenet4Art4.png",id:"Opponenet4Art4"},{src:"images_interior/Opponenet4Art5.png",id:"Opponenet4Art5"},{src:"images_interior/Opponenet4Art6.png",id:"Opponenet4Art6"},{src:"images_interior/Opponent2Art1.png",id:"Opponent2Art1"},{src:"images_interior/Opponent2Art2.png",id:"Opponent2Art2"},{src:"images_interior/Opponent2Art3.png",id:"Opponent2Art3"}, +{src:"images_interior/Opponent2Art4.png",id:"Opponent2Art4"},{src:"images_interior/OtohimeArt1.png",id:"OtohimeArt1"},{src:"images_interior/OtohimeArt2.png",id:"OtohimeArt2"},{src:"images_interior/OtohimeBenchArt.png",id:"OtohimeBenchArt"},{src:"images_interior/OtohimeFrame.png",id:"OtohimeFrame"},{src:"images_interior/OtohimeMapArt.png",id:"OtohimeMapArt"},{src:"images_interior/otter_sprite_idle_anim_pose1.png",id:"otter_sprite_idle_anim_pose1"},{src:"images_interior/otter_sprite_idle_anim_pose2.png", +id:"otter_sprite_idle_anim_pose2"},{src:"images_interior/PingPongBall.png",id:"PingPongBall"},{src:"images_interior/PingPongTableBlueArt.png",id:"PingPongTableBlueArt"},{src:"images_interior/PingPongTableRedArt.png",id:"PingPongTableRedArt"},{src:"images_interior/PinkTeasetArt.png",id:"PinkTeasetArt"},{src:"images_interior/PointyRockArt.png",id:"PointyRockArt"},{src:"images_interior/porcupine_sprite_idle_anim_pose1.png",id:"porcupine_sprite_idle_anim_pose1"},{src:"images_interior/porcupine_sprite_idle_anim_pose2.png", +id:"porcupine_sprite_idle_anim_pose2"},{src:"images_interior/PortalCircle.png",id:"PortalCircle"},{src:"images_interior/PortalGlowArt.png",id:"PortalGlowArt"},{src:"images_interior/PortalSparklesArt1.png",id:"PortalSparklesArt1"},{src:"images_interior/PortalSparklesArt2.png",id:"PortalSparklesArt2"},{src:"images_interior/PortalSparklesArt3.png",id:"PortalSparklesArt3"},{src:"images_interior/QuestCoachBGMapArt1.png",id:"QuestCoachBGMapArt1"},{src:"images_interior/QuestCoachCoachArt1.png",id:"QuestCoachCoachArt1"}, +{src:"images_interior/QuestCoachTraineeRunArt1.png",id:"QuestCoachTraineeRunArt1"},{src:"images_interior/QuestCoachTraineeSitArt1.png",id:"QuestCoachTraineeSitArt1"},{src:"images_interior/QuestCoachTraineeSitArt2.png",id:"QuestCoachTraineeSitArt2"},{src:"images_interior/QuestionMArkBubbleArt1.png",id:"QuestionMArkBubbleArt1"},{src:"images_interior/Rabbit1Art1.png",id:"Rabbit1Art1"},{src:"images_interior/Rabbit1Art2.png",id:"Rabbit1Art2"},{src:"images_interior/Rabbit1Art3.png",id:"Rabbit1Art3"},{src:"images_interior/RabbitRunArt.png", +id:"RabbitRunArt"},{src:"images_interior/RamenBowl1Art.png",id:"RamenBowl1Art"},{src:"images_interior/RampArt1111.png",id:"RampArt1111"},{src:"images_interior/RedBigRoomBGArt.png",id:"RedBigRoomBGArt"},{src:"images_interior/RedBookArt.png",id:"RedBookArt"},{src:"images_interior/RedBookshelfArt.png",id:"RedBookshelfArt"},{src:"images_interior/RedLanternTableArt.png",id:"RedLanternTableArt"},{src:"images_interior/RedOniIdleArt1.png",id:"RedOniIdleArt1"},{src:"images_interior/RedOniIdleArt2.png",id:"RedOniIdleArt2"}, +{src:"images_interior/Rockinwater1.png",id:"Rockinwater1"},{src:"images_interior/RockinWater2.png",id:"RockinWater2"},{src:"images_interior/RockinWater3.png",id:"RockinWater3"},{src:"images_interior/RubgyDojoMainRoomBGArt2.png",id:"RubgyDojoMainRoomBGArt2"},{src:"images_interior/RugbyDojoHallwayBNG.png",id:"RugbyDojoHallwayBNG"},{src:"images_interior/RugbyDojoHallwayFrameArt.png",id:"RugbyDojoHallwayFrameArt"},{src:"images_interior/RugbyDojoMainRoomFrameArt.png",id:"RugbyDojoMainRoomFrameArt"},{src:"images_interior/Seat.png", +id:"Seat"},{src:"images_interior/Shelf1Art.png",id:"Shelf1Art"},{src:"images_interior/Shelf2Art.png",id:"Shelf2Art"},{src:"images_interior/Shelf3Art.png",id:"Shelf3Art"},{src:"images_interior/shine1.png",id:"shine1"},{src:"images_interior/shine2.png",id:"shine2"},{src:"images_interior/shine3.png",id:"shine3"},{src:"images_interior/ShoeRackArt.png",id:"ShoeRackArt"},{src:"images_interior/SignBubbleFrame1.png",id:"SignBubbleFrame1"},{src:"images_interior/SignBubbleFrame2.png",id:"SignBubbleFrame2"}, +{src:"images_interior/SignBubbleImage3.png",id:"SignBubbleImage3"},{src:"images_interior/SignBubbleImage4.png",id:"SignBubbleImage4"},{src:"images_interior/sister1_sprite_idle_anim_pose1.png",id:"sister1_sprite_idle_anim_pose1"},{src:"images_interior/sister1_sprite_idle_anim_pose2.png",id:"sister1_sprite_idle_anim_pose2"},{src:"images_interior/sister3_sprite_idle_anim_pose1.png",id:"sister3_sprite_idle_anim_pose1"},{src:"images_interior/sister3_sprite_idle_anim_pose2.png",id:"sister3_sprite_idle_anim_pose2"}, +{src:"images_interior/SkateDojoBGArt.png",id:"SkateDojoBGArt"},{src:"images_interior/SkateDojoHallwayBGArt.png",id:"SkateDojoHallwayBGArt"},{src:"images_interior/SkateDojoHallwayFrameArt.png",id:"SkateDojoHallwayFrameArt"},{src:"images_interior/SkaterNArt.png",id:"SkaterNArt"},{src:"images_interior/SkaterSArt.png",id:"SkaterSArt"},{src:"images_interior/SkateWallArt.png",id:"SkateWallArt"},{src:"images_interior/SmallBallPileArt.png",id:"SmallBallPileArt"},{src:"images_interior/SmallBoatBGArt.png", +id:"SmallBoatBGArt"},{src:"images_interior/SmallBoatFrameArt.png",id:"SmallBoatFrameArt"},{src:"images_interior/SmallFrameArt.png",id:"SmallFrameArt"},{src:"images_interior/SmallPointyRockArt.png",id:"SmallPointyRockArt"},{src:"images_interior/SmallTredmillArt.png",id:"SmallTredmillArt"},{src:"images_interior/SmallWeightRackArt.png",id:"SmallWeightRackArt"},{src:"images_interior/SmalWindowLightArt.png",id:"SmalWindowLightArt"},{src:"images_interior/SnowOwldleArt1.png",id:"SnowOwldleArt1"},{src:"images_interior/SnowOwldleArt2.png", +id:"SnowOwldleArt2"},{src:"images_interior/Sparkle1.png",id:"Sparkle1"},{src:"images_interior/Sparkle2.png",id:"Sparkle2"},{src:"images_interior/SpeechBubbleArt1.png",id:"SpeechBubbleArt1"},{src:"images_interior/SpeechBubbleArt2.png",id:"SpeechBubbleArt2"},{src:"images_interior/SpeechBubbleArt3.png",id:"SpeechBubbleArt3"},{src:"images_interior/SpeechBubbleArt4.png",id:"SpeechBubbleArt4"},{src:"images_interior/SquareBlueLanternArt.png",id:"SquareBlueLanternArt"},{src:"images_interior/SquareGreenLanternArt.png", +id:"SquareGreenLanternArt"},{src:"images_interior/SquareLanternARt.png",id:"SquareLanternARt"},{src:"images_interior/SquareRedLanternArt.png",id:"SquareRedLanternArt"},{src:"images_interior/StoneTableArt.png",id:"StoneTableArt"},{src:"images_interior/StoneTeaSetArt.png",id:"StoneTeaSetArt"},{src:"images_interior/supermountaingirlframe1.png",id:"supermountaingirlframe1"},{src:"images_interior/supermountaingirlframe2.png",id:"supermountaingirlframe2"},{src:"images_interior/SwimGazeboBGArt.png",id:"SwimGazeboBGArt"}, +{src:"images_interior/SwimGazeboFrame.png",id:"SwimGazeboFrame"},{src:"images_interior/TableTennisDojoBGArt.png",id:"TableTennisDojoBGArt"},{src:"images_interior/TableTennisDojoStatueArt.png",id:"TableTennisDojoStatueArt"},{src:"images_interior/TallPlantArt.png",id:"TallPlantArt"},{src:"images_interior/TeahouseBG.png",id:"TeahouseBG"},{src:"images_interior/TeahouseWall.png",id:"TeahouseWall"},{src:"images_interior/TeaSet.png",id:"TeaSet"},{src:"images_interior/TeaSteamImage1.png",id:"TeaSteamImage1"}, +{src:"images_interior/TeaSteamImage2.png",id:"TeaSteamImage2"},{src:"images_interior/Tengu1.png",id:"Tengu1"},{src:"images_interior/Tengu2.png",id:"Tengu2"},{src:"images_interior/TenguAsleepArt1.png",id:"TenguAsleepArt1"},{src:"images_interior/TenguAsleepArt2.png",id:"TenguAsleepArt2"},{src:"images_interior/TenguFanArt.png",id:"TenguFanArt"},{src:"images_interior/TicketCounterArt.png",id:"TicketCounterArt"},{src:"images_interior/Town_people_bat_small_01.png",id:"Town_people_bat_small_01"},{src:"images_interior/Town_people_bat_small_02.png", +id:"Town_people_bat_small_02"},{src:"images_interior/Town_people_fish_handicap_small_01.png",id:"Town_people_fish_handicap_small_01"},{src:"images_interior/Town_people_fish_handicap_small_02.png",id:"Town_people_fish_handicap_small_02"},{src:"images_interior/Town_people_fish_small_01.png",id:"Town_people_fish_small_01"},{src:"images_interior/Town_people_fish_small_02.png",id:"Town_people_fish_small_02"},{src:"images_interior/Town_people_hare_small_01.png",id:"Town_people_hare_small_01"},{src:"images_interior/Town_people_hare_small_02.png", +id:"Town_people_hare_small_02"},{src:"images_interior/Town_people_kid_small_001.png",id:"Town_people_kid_small_001"},{src:"images_interior/Town_people_kid_small_002.png",id:"Town_people_kid_small_002"},{src:"images_interior/Town_people_nova_small_001.png",id:"Town_people_nova_small_001"},{src:"images_interior/Town_people_nova_small_002.png",id:"Town_people_nova_small_002"},{src:"images_interior/Town_people_seahorse_small_01.png",id:"Town_people_seahorse_small_01"},{src:"images_interior/Town_people_seahorse_small_02.png", +id:"Town_people_seahorse_small_02"},{src:"images_interior/Town_people_shiba_small_01.png",id:"Town_people_shiba_small_01"},{src:"images_interior/Town_people_shiba_small_02.png",id:"Town_people_shiba_small_02"},{src:"images_interior/TrainStationMapArt.png",id:"TrainStationMapArt"},{src:"images_interior/TrainWorkerArt1.png",id:"TrainWorkerArt1"},{src:"images_interior/TrainWorkerArt2.png",id:"TrainWorkerArt2"},{src:"images_interior/TriggerBitmap.png",id:"TriggerBitmap"},{src:"images_interior/TrophyCase1.png", +id:"TrophyCase1"},{src:"images_interior/TrophyImage.png",id:"TrophyImage"},{src:"images_interior/TrophyMasterIdleArt1.png",id:"TrophyMasterIdleArt1"},{src:"images_interior/TrophyMasterIdleArt2.png",id:"TrophyMasterIdleArt2"},{src:"images_interior/TrophyRailsArt.png",id:"TrophyRailsArt"},{src:"images_interior/TrophyRoomBGArt.png",id:"TrophyRoomBGArt"},{src:"images_interior/TrophyRoomFrameArt.png",id:"TrophyRoomFrameArt"},{src:"images_interior/UFOArt.png",id:"UFOArt"},{src:"images_interior/UrashimaArt1.png", +id:"UrashimaArt1"},{src:"images_interior/UrashimaArt2.png",id:"UrashimaArt2"},{src:"images_interior/UshiSideFrame1.png",id:"UshiSideFrame1"},{src:"images_interior/UshiSideFrame2.png",id:"UshiSideFrame2"},{src:"images_interior/UshiArt11.png",id:"UshiArt11"},{src:"images_interior/UshiArt2.png",id:"UshiArt2"},{src:"images_interior/UshiRunArt.png",id:"UshiRunArt"},{src:"images_interior/WaitingChairsArt.png",id:"WaitingChairsArt"},{src:"images_interior/Waterfall1Art11.png",id:"Waterfall1Art11"},{src:"images_interior/WaterfallBottomArt2.png", +id:"WaterfallBottomArt2"},{src:"images_interior/WaterfallBottomArt3.png",id:"WaterfallBottomArt3"},{src:"images_interior/WaterfallBottomArt4.png",id:"WaterfallBottomArt4"},{src:"images_interior/WaterfallBtoomArt1.png",id:"WaterfallBtoomArt1"},{src:"images_interior/WhirlpoolArt1.png",id:"WhirlpoolArt1"},{src:"images_interior/WhitOniIdleArt1.png",id:"WhitOniIdleArt1"},{src:"images_interior/WhitOniIdleArt2.png",id:"WhitOniIdleArt2"},{src:"images_interior/WightOnGroundArt.png",id:"WightOnGroundArt"}, +{src:"images_interior/WillowTree1Art.png",id:"WillowTree1Art"},{src:"images_interior/woodScultupreArt1.png",id:"woodScultupreArt1"},{src:"images_interior/woodScultupreArt2.png",id:"woodScultupreArt2"},{src:"images_interior/woodScultupreArt3.png",id:"woodScultupreArt3"},{src:"images_interior/woodScultupreArt4.png",id:"woodScultupreArt4"},{src:"images_interior/yellowBookImage.png",id:"yellowBookImage"}],tB:[]};(a.Stage=function(d){createjs.Stage.call(this,d)}).prototype=c=new createjs.Stage;c.Ca=function(d){this.tickEnabled= +d};c.play=function(){this.tickEnabled=!0;this.getChildAt(0).gotoAndPlay(this.vp())};c.stop=function(d){d&&this.seek(d);this.tickEnabled=!1};c.seek=function(d){this.tickEnabled=!0;this.getChildAt(0).gotoAndStop(a.properties.fps*d/1E3)};c.getDuration=function(){return this.getChildAt(0).totalFrames/a.properties.fps*1E3};c.vp=function(){return this.getChildAt(0).currentFrame/a.properties.fps*1E3};g.Zd=g.Zd||[];g.Ve||(g.Ve=[]);g.oB=function(d){g.Ve.push(d);if(0= 1",frame4:"on",condition5:"",frame5:"off"}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.$Ya;this.instance.parent= +this;this.instance.setTransform(0,1.6,1,1,0,0,0,0,-.6);this.timeline.addTween(b.Tween.get(this.instance).to({_off:!0},1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-14.8,34,34.8);(a.YYa=function(d,e,f){this.initialize(d,e,f,{on:0,off:1,complete:2});this.u=function(){this.T={storageSprite:{condition1:"$INTRO == 'active'",frame1:"on",condition2:"$INTRO == 'complete'",frame2:"off",condition3:"",frame3:"off",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3)); +this.instance=new a.XYa;this.instance.parent=this;this.instance.setTransform(0,1.6,1,1,0,0,0,0,-.6);this.g=new a.ZYa;this.g.parent=this;this.g.setTransform(26,1.6,1,1,0,0,0,0,-.6);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[]},1).to({state:[{t:this.g}]},1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-14.8,60,34.8);(a.fXa=function(d,e,f){this.initialize(d,e,f,{champion:0,lucky:1});this.u=function(){this.T={storageSprite:{condition1:"$pingpong_rating == 3", +frame1:"lucky",condition2:"",frame2:"champion",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.eXa;this.instance.parent=this;this.instance.setTransform(0,-11.9,1,1,0,0,0,0,-10.1);this.g=new a.FLa;this.g.parent=this;this.g.setTransform(0,-11.9,1,1,0,0,0,0,-10.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]},1).wait(1))}).prototype=c=new b.MovieClip; +c.j=new b.Rectangle(-22,-58.8,44,78.8);(a.MVa=function(d,e,f){this.initialize(d,e,f,{off:0,letter:1,portal:2});this.u=function(){this.T={storageSprite:{condition1:"!$GHOST",frame1:"off",condition2:"$GHOST == 'active'",frame2:"letter",condition3:"$GHOST == 'active2'",frame3:"portal",condition4:"",frame4:"portal",condition5:"",frame5:""}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3));this.instance=new a.QYa;this.instance.parent=this;this.instance.setTransform(-.65,-3.7, +1,1,0,0,0,.1,-7.9);this.g=new a.Zt;this.g.parent=this;this.g.setTransform(-9.75,-3.3,1,1,0,0,0,-.1,-.3);this.i=new a.LVa;this.i.parent=this;this.i.setTransform(.25,-.3,1,1,0,0,0,-.1,-.3);this.timeline.addTween(b.Tween.get({}).to({state:[]}).to({state:[{t:this.g},{t:this.instance}]},1).to({state:[{t:this.i}]},1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-22,-34,44,50.9);(a.LUa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={boundable:{},collidable:{}, +jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"},trigger:{triggerComponent:"overworldPlayer"},scenePortal:{name:"interior:woodshop"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.Sg;this.instance.parent=this;this.instance.setTransform(-.25,-32.5,1,1,0,0,0,0,-10);this.instance._off=!0;this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off:!1},0).wait(1));this.g=new a.CZ;this.g.parent=this;this.g.setTransform(0,-11.5, +1,1,0,0,0,0,-7.5);this.i=new a.Fia;this.i.parent=this;this.i.setTransform(0,-11.5,1,1,0,0,0,0,-7.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.g}]}).to({state:[{t:this.i}]},1).wait(1));this.o=new a.Ra;this.o.parent=this;this.o.setTransform(0,8.05,3.0016,1.6196,0,0,0,0,-7.9);this.o.visible=!1;this.timeline.addTween(b.Tween.get(this.o).wait(2));this.Pa=new a.Ta;this.Pa.name="bounds";this.Pa.parent=this;this.Pa.setTransform(-.15,-13.95,1.0588,.4333,0,0,0,.1,-1.2);this.Pa.alpha=0;this.timeline.addTween(b.Tween.get(this.Pa).wait(2)); +this.H=new a.jla;this.H.parent=this;this.H.setTransform(-61,-74);this.timeline.addTween(b.Tween.get(this.H).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-61,-74,121,94.9);(a.vPa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={boundable:{},collidable:{},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"},trigger:{triggerComponent:"overworldPlayer"},scenePortal:{name:"interior:momotarohouse"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2)); +this.instance=new a.Sg;this.instance.parent=this;this.instance.setTransform(-.25,-22.5,1,1,0,0,0,0,-10);this.instance._off=!0;this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off:!1},0).wait(1));this.g=new a.jx;this.g.parent=this;this.g.setTransform(0,-1.5,1,1,0,0,0,0,-7.5);this.i=new a.uC;this.i.parent=this;this.i.setTransform(0,-1.5,1,1,0,0,0,0,-7.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.g}]}).to({state:[{t:this.i}]},1).wait(1));this.o=new a.Ra;this.o.parent=this; +this.o.setTransform(0,18.05,3.0016,1.6196,0,0,0,0,-7.9);this.o.visible=!1;this.timeline.addTween(b.Tween.get(this.o).wait(2));this.Pa=new a.Ta;this.Pa.name="bounds";this.Pa.parent=this;this.Pa.setTransform(6.85,-3.95,1.0588,.2592,0,0,0,.1,-1.2);this.Pa.alpha=0;this.timeline.addTween(b.Tween.get(this.Pa).wait(2));this.H=new a.pda;this.H.parent=this;this.H.setTransform(-33,-72);this.timeline.addTween(b.Tween.get(this.H).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-33,-72,83,102.9);(a.Wf= +function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={boundable:{},collidable:{},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"},scenePortal:{name:"interior:convenienceStore1"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.Sg;this.instance.parent=this;this.instance.setTransform(-.95,-29.45,1,1,0,0,0,0,-10);this.instance._off=!0;this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off:!1}, +0).wait(1));this.g=new a.Ra;this.g.parent=this;this.g.setTransform(-1.15,-2.85,1.3719,1.6227,0,0,0,-.1,-7.9);this.g.visible=!1;this.timeline.addTween(b.Tween.get(this.g).wait(2));this.i=new a.hfa;this.i.parent=this;this.i.setTransform(0,-10.5,1,1,0,0,0,0,-10.5);this.i._off=!0;this.timeline.addTween(b.Tween.get(this.i).wait(1).to({_off:!1},0).wait(1));this.o=new a.M1;this.o.parent=this;this.o.setTransform(-3,-32.95,1,1,90);this.H=new a.jZ;this.H.parent=this;this.H.setTransform(0,-10.5,1,1,0,0,0,0, +-10.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.H},{t:this.o}]}).wait(2));this.O=new a.Ta;this.O.parent=this;this.O.setTransform(.15,-30.05,1.3334,.7766,0,0,0,.1,-.1);this.O.alpha=0;this.timeline.addTween(b.Tween.get(this.O).wait(2));this.$=new a.R3;this.$.parent=this;this.$.setTransform(-53,-79);this.timeline.addTween(b.Tween.get(this.$).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-53,-79,105,89);(a.XOa=function(d,e,f){this.initialize(d,e,f,{champion:0,lucky:1});this.u= +function(){this.T={storageSprite:{condition1:"$marathon_rating == 3",frame1:"lucky",condition2:"",frame2:"champion",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.WOa;this.instance.parent=this;this.instance.setTransform(0,-7.4,1,1,0,0,0,0,-5.6);this.g=new a.ELa;this.g.parent=this;this.g.setTransform(0,-7.4,1,1,0,0,0,0,-5.6);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]}, +1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-22,-58.8,44,78.8);(a.Gbb=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={boundable:{},collidable:{},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"},trigger:{triggerComponent:"overworldPlayer"},scenePortal:{name:"interior:koma2House"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.Sg;this.instance.parent=this;this.instance.setTransform(-.25, +-32.5,1,1,0,0,0,0,-10);this.instance._off=!0;this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off:!1},0).wait(1));this.g=new a.jx;this.g.parent=this;this.g.setTransform(0,-11.5,1,1,0,0,0,0,-7.5);this.i=new a.uC;this.i.parent=this;this.i.setTransform(0,-11.5,1,1,0,0,0,0,-7.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.g}]}).to({state:[{t:this.i}]},1).wait(1));this.o=new a.Ra;this.o.parent=this;this.o.setTransform(0,8.05,3.0016,1.6196,0,0,0,0,-7.9);this.o.visible=!1;this.timeline.addTween(b.Tween.get(this.o).wait(2)); +this.Pa=new a.Ta;this.Pa.name="bounds";this.Pa.parent=this;this.Pa.setTransform(-.15,-13.95,1.0588,.4333,0,0,0,.1,-1.2);this.Pa.alpha=0;this.timeline.addTween(b.Tween.get(this.Pa).wait(2));this.H=new a.RZ;this.H.parent=this;this.H.setTransform(-61,-74);this.O=new a.$S;this.O.parent=this;this.O.setTransform(-40,-29);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.O},{t:this.H}]}).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-61,-74,121,94.9);(a.Fbb=function(d,e,f){this.initialize(d, +e,f,{untrigger:0,trigger:1});this.u=function(){this.T={scenePortal:{name:"interior:koma1House"},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"},boundable:{},collidable:{}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.Sg;this.instance.parent=this;this.instance.setTransform(-.25,-32.5,1,1,0,0,0,0,-10);this.instance._off=!0;this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off:!1}, +0).wait(1));this.g=new a.jx;this.g.parent=this;this.g.setTransform(0,-11.5,1,1,0,0,0,0,-7.5);this.i=new a.uC;this.i.parent=this;this.i.setTransform(0,-11.5,1,1,0,0,0,0,-7.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.g}]}).to({state:[{t:this.i}]},1).wait(1));this.o=new a.Ra;this.o.parent=this;this.o.setTransform(0,8.05,3.0016,1.6196,0,0,0,0,-7.9);this.o.visible=!1;this.timeline.addTween(b.Tween.get(this.o).wait(2));this.Pa=new a.Ta;this.Pa.name="bounds";this.Pa.parent=this;this.Pa.setTransform(-.15, +-13.95,1.0588,.4333,0,0,0,.1,-1.2);this.Pa.alpha=0;this.timeline.addTween(b.Tween.get(this.Pa).wait(2));this.H=new a.RZ;this.H.parent=this;this.H.setTransform(-61,-74);this.O=new a.$S;this.O.parent=this;this.O.setTransform(-40,-29);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.O},{t:this.H}]}).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-61,-74,121,94.9);(a.KEa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={boundable:{},collidable:{}, +trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"},scenePortal:{name:"interior:gym"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.Sg;this.instance.parent=this;this.instance.setTransform(-2.95,-44.2,1,1,0,0,0,0,-10);this.instance._off=!0;this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off:!1},0).wait(1));this.g=new a.Ra;this.g.parent=this;this.g.setTransform(-4.15,-4.85, +1.3719,1.6227,0,0,0,-.1,-7.9);this.g.visible=!1;this.timeline.addTween(b.Tween.get(this.g).wait(2));this.i=new a.Ta;this.i.parent=this;this.i.setTransform(-10.55,-26.05,.8745,.5558,0,0,0,-.1,-.2);this.i.alpha=0;this.timeline.addTween(b.Tween.get(this.i).wait(2));this.o=new a.Nda;this.o.parent=this;this.o.setTransform(-10.65,-49.7,1,1,0,0,0,.5,-16.5);this.timeline.addTween(b.Tween.get(this.o).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-68.1,-106.2,115,114.2);(a.JEa=function(d,e,f){this.initialize(d, +e,f,{lantern:0,leader:1});this.u=function(){this.T={storageSprite:{condition1:"$LEADERBOARD_FIRST == null",frame1:"lantern",condition2:"$LEADERBOARD_FIRST",frame2:"leader",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}};this.stop()};this.qc=function(){this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1).call(this.qc).wait(1));this.instance=new a.RX;this.instance.parent=this;this.instance.setTransform(0,-14.75,1,1,0,0,0,0,-13);this.timeline.addTween(b.Tween.get(this.instance).to({_off:!0}, +1).wait(1));this.g=new a.PRa;this.g.parent=this;this.g.setTransform(0,-.4,1,1,0,0,0,0,-.6);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-31.7,34,49.7);(a.kEa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={boundable:{},collidable:{},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"},trigger:{triggerComponent:"overworldPlayer"},scenePortal:{name:"interior:gohouse"}}; +this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.Sg;this.instance.parent=this;this.instance.setTransform(-.25,-22.5,1,1,0,0,0,0,-10);this.instance._off=!0;this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off:!1},0).wait(1));this.g=new a.jx;this.g.parent=this;this.g.setTransform(0,-1.5,1,1,0,0,0,0,-7.5);this.i=new a.uC;this.i.parent=this;this.i.setTransform(0,-1.5,1,1,0,0,0,0,-7.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.g}]}).to({state:[{t:this.i}]}, +1).wait(1));this.o=new a.Ra;this.o.parent=this;this.o.setTransform(0,18.05,3.0016,1.6196,0,0,0,0,-7.9);this.o.visible=!1;this.timeline.addTween(b.Tween.get(this.o).wait(2));this.Pa=new a.Ta;this.Pa.name="bounds";this.Pa.parent=this;this.Pa.setTransform(6.85,-3.95,1.0588,.2592,0,0,0,.1,-1.2);this.Pa.alpha=0;this.timeline.addTween(b.Tween.get(this.Pa).wait(2));this.H=new a.pda;this.H.parent=this;this.H.setTransform(-32,-72);this.timeline.addTween(b.Tween.get(this.H).wait(2))}).prototype=c=new b.MovieClip; +c.j=new b.Rectangle(-32,-72,83,102.9);(a.mEa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={boundable:{},collidable:{},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"},trigger:{triggerComponent:"overworldPlayer"},scenePortal:{name:"interior:climbingGym"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.Sg;this.instance.parent=this;this.instance.setTransform(-.25,-32.5,1,1,0,0,0,0,-10); +this.instance._off=!0;this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off:!1},0).wait(1));this.g=new a.jx;this.g.parent=this;this.g.setTransform(0,-11.5,1,1,0,0,0,0,-7.5);this.i=new a.uC;this.i.parent=this;this.i.setTransform(0,-11.5,1,1,0,0,0,0,-7.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.g}]}).to({state:[{t:this.i}]},1).wait(1));this.o=new a.Ra;this.o.parent=this;this.o.setTransform(0,8.05,3.0016,1.6196,0,0,0,0,-7.9);this.o.visible=!1;this.timeline.addTween(b.Tween.get(this.o).wait(2)); +this.Pa=new a.Ta;this.Pa.name="bounds";this.Pa.parent=this;this.Pa.setTransform(3.25,-19.95,1.529,.4333,0,0,0,.2,-1.2);this.Pa.alpha=0;this.timeline.addTween(b.Tween.get(this.Pa).wait(2));this.H=new a.KAa;this.H.parent=this;this.H.setTransform(-66,-104);this.timeline.addTween(b.Tween.get(this.H).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-66,-104,135,124.9);(a.GAa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={boundable:{},collidable:{},trigger:{triggerComponent:"overworldPlayer"}, +jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"},scenePortal:{name:"interior:climbingdojohallway@climbingdojohallways"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.Pa=new a.Ta;this.Pa.name="bounds";this.Pa.parent=this;this.Pa.setTransform(-.25,-10.4,1.4557,.7385,0,0,0,.1,-1.4);this.Pa.alpha=0;this.timeline.addTween(b.Tween.get(this.Pa).wait(2));this.instance=new a.Ra;this.instance.parent=this;this.instance.setTransform(-1.3,14.9,3.2439, +2.1844,0,0,0,-.4,-7.8);this.instance.visible=!1;this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Sg;this.g.parent=this;this.g.setTransform(0,-16,1,1,0,0,0,0,-10);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1));this.i=new a.F1;this.i.parent=this;this.i.setTransform(0,3.5,1,1,0,0,0,0,-7.5);this.o=new a.FAa;this.o.parent=this;this.o.setTransform(0,3.5,1,1,0,0,0,0,-7.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.i}]}).to({state:[{t:this.o}]}, +1).wait(1));this.H=new a.CAa;this.H.parent=this;this.H.setTransform(-62,-127);this.timeline.addTween(b.Tween.get(this.H).wait(2));this.O=new a.lJ;this.O.parent=this;this.O.setTransform(-2,-7);this.O.alpha=.3008;this.timeline.addTween(b.Tween.get(this.O).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-62,-127,125,159);(a.lya=function(d,e,f){this.initialize(d,e,f,{lantern:0,leader:1});this.u=function(){this.T={storageSprite:{condition1:"$LEADERBOARD_FIRST==null",frame1:"lantern",condition2:"$LEADERBOARD_FIRST", +frame2:"leader",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}};this.stop()};this.qc=function(){this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1).call(this.qc).wait(1));this.instance=new a.RX;this.instance.parent=this;this.instance.setTransform(0,-14.75,1,1,0,0,0,0,-13);this.timeline.addTween(b.Tween.get(this.instance).to({_off:!0},1).wait(1));this.g=new a.PTa;this.g.parent=this;this.g.setTransform(0,-.4,1,1,0,0,0,0,-.6);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1}, +0).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-31.7,34,49.7);(a.kya=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={boundable:{},collidable:{},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"},scenePortal:{name:"interior:blueteamhq1@blueteamhq1s"}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.Pa=new a.Ta;this.Pa.name="bounds";this.Pa.parent= +this;this.Pa.setTransform(1.7,-7.1,1.5114,.4886,0,0,0,.1,-1.4);this.Pa.alpha=0;this.timeline.addTween(b.Tween.get(this.Pa).wait(2));this.instance=new a.Ra;this.instance.parent=this;this.instance.setTransform(-1.25,14.9,1.0878,2.1844,0,0,0,-.4,-7.8);this.instance.visible=!1;this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Eca;this.g.parent=this;this.g.setTransform(-46,1);this.timeline.addTween(b.Tween.get(this.g).wait(2));this.i=new a.Sg;this.i.parent=this;this.i.setTransform(0, +-30,1,1,0,0,0,0,-10);this.i._off=!0;this.timeline.addTween(b.Tween.get(this.i).wait(1).to({_off:!1},0).wait(1));this.o=new a.WY;this.o.parent=this;this.o.setTransform(0,2.5,1,1,0,0,0,0,-7.5);this.H=new a.Lxa;this.H.parent=this;this.H.setTransform(0,2.5,1,1,0,0,0,0,-7.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.o}]}).to({state:[{t:this.H}]},1).wait(1));this.O=new a.Rca;this.O.parent=this;this.O.setTransform(-69,-98);this.timeline.addTween(b.Tween.get(this.O).wait(2))}).prototype=c= +new b.MovieClip;c.j=new b.Rectangle(-69,-98,136,130);(a.iya=function(d,e,f){this.initialize(d,e,f,{unlocked:0,locked:1});this.u=function(){this.T={storageSprite:{condition1:"$PLAYER_TEAM == 'blue'",frame1:"unlocked",condition2:"",frame2:"locked",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.kya;this.instance.parent=this;this.instance.setTransform(0,-34.95,1,1,0,0,0,-1,-33);this.g=new a.jya; +this.g.parent=this;this.g.setTransform(0,-34.95,1,1,0,0,0,-1,-33);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]},1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-68,-99.9,136,129.9);(a.Wra=function(d,e,f){this.initialize(d,e,f,{champion:0,lucky:1});this.u=function(){this.T={storageSprite:{condition1:"$archery_rating == 3",frame1:"lucky",condition2:"",frame2:"champion",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}}; +this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.Vra;this.instance.parent=this;this.instance.setTransform(0,-11.4,1,1,0,0,0,0,-9.6);this.g=new a.CLa;this.g.parent=this;this.g.setTransform(0,-11.4,1,1,0,0,0,0,-9.6);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]},1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-22,-58.8,44,78.8);(a.d$a=function(d,e,f){this.initialize(d,e,f,{lantern:0,leader:1});this.u=function(){this.T= +{storageSprite:{condition1:"$LEADERBOARD_FIRST == null",frame1:"lantern",condition2:"$LEADERBOARD_FIRST",frame2:"leader",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}};this.stop()};this.qc=function(){this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1).call(this.qc).wait(1));this.instance=new a.RX;this.instance.parent=this;this.instance.setTransform(0,-14.75,1,1,0,0,0,0,-13);this.timeline.addTween(b.Tween.get(this.instance).to({_off:!0},1).wait(1)); +this.g=new a.nRa;this.g.parent=this;this.g.setTransform(0,-.4,1,1,0,0,0,0,-.6);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-31.7,34,49.7);(a.p0a=function(d,e,f){this.initialize(d,e,f,{lantern:0,leader:1});this.u=function(){this.T={storageSprite:{condition1:"$LEADERBOARD_FIRST == null",frame1:"lantern",condition2:"$LEADERBOARD_FIRST",frame2:"leader",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"", +frame5:""}};this.stop()};this.qc=function(){this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1).call(this.qc).wait(1));this.instance=new a.RX;this.instance.parent=this;this.instance.setTransform(0,-14.75,1,1,0,0,0,0,-13);this.timeline.addTween(b.Tween.get(this.instance).to({_off:!0},1).wait(1));this.g=new a.lSa;this.g.parent=this;this.g.setTransform(0,-.4,1,1,0,0,0,0,-.6);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1},0).wait(1))}).prototype= +c=new b.MovieClip;c.j=new b.Rectangle(-17,-31.7,34,49.7);(a.p_a=function(d,e,f){this.initialize(d,e,f,{on:0,off:1});this.u=function(){this.T={storageSprite:{condition1:"$RAIN == 'complete'",frame1:"off",condition2:"",frame2:"on",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.HZa;this.instance.parent=this;this.instance.setTransform(0,-4.9,1,1,0,0,0,0,-5);this.timeline.addTween(b.Tween.get(this.instance).to({_off:!0}, +1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-18,-23.9,36.1,37.9);(a.BZa=function(d,e,f){this.initialize(d,e,f,{untrigger:0,trigger:1});this.u=function(){this.T={npc:{name:"questRace",node:""},trigger:{triggerComponent:"overworldPlayer"},jumpToFrameOnTrigger:{triggerFrame:"trigger",untriggerFrame:"untrigger"},storageNpc:{condition1:"$RACE == 'active'",node1:"activeCrab",condition2:"$RACE == 'found'",node2:"foundCrab",condition3:"$RACE == 'complete'",node3:"completeCrab",condition4:"", +node4:"",condition5:"",node5:"",condition6:"",node6:"",condition7:"",node7:"",condition8:"",node8:"",condition9:"",node9:"",condition10:"",node10:""}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.vV;this.instance.parent=this;this.instance.setTransform(2,-3);this.timeline.addTween(b.Tween.get(this.instance).wait(2));this.g=new a.Kb;this.g.parent=this;this.g.setTransform(0,-25,1,1,0,0,0,8,8);this.g._off=!0;this.timeline.addTween(b.Tween.get(this.g).wait(1).to({_off:!1}, +0).wait(1));this.i=new a.Ra;this.i.parent=this;this.i.setTransform(0,1,2.125,2.125,0,0,0,0,-7.9);this.i.visible=!1;this.timeline.addTween(b.Tween.get(this.i).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-33,34,50.8);(a.FYa=function(d,e,f){this.initialize(d,e,f,{off:0,on:1});this.u=function(){this.T={storageSprite:{condition1:"$CHASE == 'active3'",frame1:"on",condition2:"",frame2:"off",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2)); +this.instance=new a.EYa;this.instance.parent=this;this.instance.setTransform(0,-21.7,1,1,0,0,0,0,-3.9);this.instance._off=!0;this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off:!1},0).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-37.3,34,37.3);(a.DYa=function(d,e,f){this.initialize(d,e,f,{off:0,on:1});this.u=function(){this.T={storageSprite:{condition1:"$CHASE == 'active2'",frame1:"on",condition2:"",frame2:"off",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"", +frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.CYa;this.instance.parent=this;this.instance.setTransform(0,-1.7,1,1,0,0,0,0,-3.9);this.instance._off=!0;this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off:!1},0).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-17.3,34,37.3);(a.BYa=function(d,e,f){this.initialize(d,e,f,{off:0,on:1});this.u=function(){this.T={storageSprite:{condition1:"$CHASE == 'active'",frame1:"on",condition2:"", +frame2:"off",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.AYa;this.instance.parent=this;this.instance.setTransform(0,-1.7,1,1,0,0,0,0,-3.9);this.instance._off=!0;this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off:!1},0).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-17.3,34,37.3);(a.xYa=function(d,e,f){this.initialize(d,e,f,{off:0,on:1});this.u=function(){this.T= +{storageSprite:{condition1:"$CHASE == 'complete'",frame1:"on",condition2:"$CHASE == 'found'",frame2:"on",condition3:"!$CHASE",frame3:"on",condition4:"",frame4:"off",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.wYa;this.instance.parent=this;this.instance.setTransform(0,-1.7,1,1,0,0,0,0,-3.9);this.instance._off=!0;this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off:!1},0).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17, +-17.8,34,37.8);(a.zUa=function(d,e,f){this.initialize(d,e,f,{visible:0,off:1,invisible:2});this.u=function(){this.T={storageSprite:{condition1:"$FAN == 'search'",frame1:"invisible",condition2:"$FAN == 'found'",frame2:"visible",condition3:"$FAN == 'complete'",frame3:"visible",condition4:"",frame4:"off",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(3));this.instance=new a.RTa;this.instance.parent=this;this.instance.setTransform(0,-3.5,1,1,0,0,0,0,-9.5);this.g= +new a.tRa;this.g.parent=this;this.g.setTransform(0,-3.5,1,1,0,0,0,0,-9.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[]},1).to({state:[{t:this.g}]},1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-16.6,-13,32.6,27);(a.DAa=function(d,e,f){this.initialize(d,e,f,{beaten:1,unbeaten:0});this.u=function(){this.T={storageSprite:{condition1:"$climbing_rating == 3",frame1:"beaten",condition2:"",frame2:"unbeaten",condition3:"",frame3:"",condition4:"",frame4:"", +condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.p2;this.instance.parent=this;this.instance.setTransform(2,-132.5);this.instance._off=!0;this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off:!1},0).wait(1));this.g=new a.GAa;this.g.parent=this;this.g.setTransform(.5,-37.35,1,1,0,0,0,0,-37.9);this.timeline.addTween(b.Tween.get(this.g).wait(2))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-61.5,-178.5,125,211);(a.ppa=function(d, +e,f){this.initialize(d,e,f,{});this.u=function(){this.T={region:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(65.15,-76.6,2.0047,3.0017,0,0,0,.2,-.2);this.g=new a.N;this.g.parent=this;this.g.setTransform(184.15,-268.65,.9794,9.3819,0,0,0,.2,-.5);this.i=new a.N;this.i.parent=this;this.i.setTransform(152.4,-268.3,1.0116,9.4403,0,0,0,.1,-.4);this.o=new a.N;this.o.parent=this;this.o.setTransform(120.5,-71, +3.1039,2.3148,0,0,0,.2,-.2);this.H=new a.N;this.H.parent=this;this.H.setTransform(271.6,-74.1,1.9686,.2422,0,0,0,.2,-.4);this.O=new a.N;this.O.parent=this;this.O.setTransform(247.9,-73.3,1.8091,1.5636,0,0,0,.2,-.5);this.$=new a.N;this.$.parent=this;this.$.setTransform(293.05,-73.3,1.784,1.5636,0,0,0,.2,-.5);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(360.8,-105.65,2.9966,5.4407,0,0,0,.3,-.8);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(-23.85,-124.2,2.9677,2.5874,0,0,0,0, +-.4);this.va=new a.N;this.va.parent=this;this.va.setTransform(81.75,-56.65,1.9922,2.5105,0,0,0,.4,-.2);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(362,-58,3.0889,.8006,0,0,0,.2,-.5);this.ya=new a.N;this.ya.parent=this;this.ya.setTransform(308.85,-147.25,3.4914,5.6926,0,0,0,.1,-.3);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(60.75,-100.75,3.4914,1.9889,0,0,0,.2,-.4);this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(234.2,-142.5,5.091,6.5932,0,0,0,.3,-.4);this.Da=new a.N; +this.Da.parent=this;this.Da.setTransform(228.9,-143.05,6.4159,6.6462,0,0,0,.2,-.4);this.Ea=new a.N;this.Ea.parent=this;this.Ea.setTransform(108.95,-141.8,6.474,6.6876,0,0,0,.1,-.3);this.Ga=new a.N;this.Ga.parent=this;this.Ga.setTransform(48.6,-168.8,6,3.0625,0,0,0,.1,-.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g}, +{t:this.instance}]}).wait(1));this.Ha=new a.YYa;this.Ha.parent=this;this.Ha.setTransform(270.05,-45,1,1,0,0,0,-.1,.3);this.Ia=new a.aZa;this.Ia.parent=this;this.Ia.setTransform(168,88);this.Ja=new a.OZa;this.Ja.parent=this;this.Ja.setTransform(270.05,-45,1,1,0,0,0,-.1,.3);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ja},{t:this.Ia},{t:this.Ha}]}).wait(1));this.Ka=new a.JEa;this.Ka.parent=this;this.Ka.setTransform(216,111.1,1,1,0,0,0,0,-24.9);this.La=new a.d$a;this.La.parent=this;this.La.setTransform(216, +64.1,1,1,0,0,0,0,-24.9);this.Ma=new a.lya;this.Ma.parent=this;this.Ma.setTransform(120,111.1,1,1,0,0,0,0,-24.9);this.Na=new a.p0a;this.Na.parent=this;this.Na.setTransform(120,64.1,1,1,0,0,0,0,-24.9);this.Oa=new a.g1a;this.Oa.parent=this;this.Oa.setTransform(271.8,76.45,1,1,0,0,0,0,-39.4);this.Qa=new a.fXa;this.Qa.parent=this;this.Qa.setTransform(255.8,-4.55,1,1,0,0,0,0,-39.4);this.Ua=new a.$Aa;this.Ua.parent=this;this.Ua.setTransform(167.8,-27,1,1,0,0,0,0,-39.4);this.Va=new a.Wra;this.Va.parent=this; +this.Va.setTransform(80.8,-4,1,1,0,0,0,0,-39.4);this.Wa=new a.B4a;this.Wa.parent=this;this.Wa.setTransform(65.6,74.45,1,1,0,0,0,0,-41.4);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka}]}).wait(1));this.Xa=new a.WK;this.Xa.parent=this;this.Xa.setTransform(168,51.6,1,1,0,0,0,0,-12.1);this.Ya=new a.Ww;this.Ya.parent=this;this.Ya.setTransform(-16.6,45.05,1,1,0,0,0,0,-25.5);this.Za=new a.XRa;this.Za.parent= +this;this.Za.setTransform(192.05,-74.05,1,1,0,0,0,0,-.6);this.$a=new a.Mx;this.$a.parent=this;this.$a.setTransform(-16,-16,1,1,0,0,180,0,-12);this.ab=new a.Ok;this.ab.parent=this;this.ab.setTransform(8,-119.95,1,1,0,0,0,0,-12.8);this.hb=new a.og;this.hb.parent=this;this.hb.setTransform(56,-24,1,1,0,0,0,0,-21.5);this.mb=new a.Ok;this.mb.parent=this;this.mb.setTransform(360,-18.95,1,1,0,0,0,0,-12.8);this.nb=new a.Ok;this.nb.parent=this;this.nb.setTransform(112,-40.95,1,1,0,0,0,0,-12.8);this.rb=new a.R7a; +this.rb.parent=this;this.rb.setTransform(270,-100.6,1,1,0,0,0,-.5,-26.6);this.tb=new a.U1a;this.tb.parent=this;this.tb.setTransform(149,-57,1,1,0,0,0,0,1.9);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa}]}).wait(1));this.ub=new a.j3a;this.ub.parent=this;this.ub.setTransform(192,43,1,1,0,0,0,240,145);this.wb=new a.i3a;this.wb.parent=this;this.wb.setTransform(194,-198,1,1,0,0,0, +240,145);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.wb},{t:this.ub}]}).wait(1))}).prototype=k(a.ppa,new b.Rectangle(-384,-343,960,1303),null);(a.f_=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={region:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(225.65,323.45,1.877,5.6822,0,0,0,1.3,-2.1);this.g=new a.N;this.g.parent=this;this.g.setTransform(113.65,323.45,1.877,5.6822, +0,0,0,1.3,-2.1);this.i=new a.N;this.i.parent=this;this.i.setTransform(309.55,358.2,1.6785,1.4857,0,0,0,1.3,-2.1);this.o=new a.N;this.o.parent=this;this.o.setTransform(289.5,315.05,.0663,3.2564,0,0,0,0,.4);this.H=new a.N;this.H.parent=this;this.H.setTransform(337.6,372.6,6.9928,.8274,0,0,0,1.4,-2);this.O=new a.N;this.O.parent=this;this.O.setTransform(36.75,351.9,9.0095,2.8411,0,0,0,1.4,-2.2);this.$=new a.N;this.$.parent=this;this.$.setTransform(271.4,358.2,4.0164,2.8312,0,0,0,.1,.1);this.ka=new a.N; +this.ka.parent=this;this.ka.setTransform(336.3,295.95,5.9907,.9831,0,0,0,.1,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.ta=new a.v2a;this.ta.parent=this;this.ta.setTransform(119.8,164,1,1,0,0,0,0,-39.4);this.va=new a.XOa;this.va.parent=this;this.va.setTransform(214.8,163,1,1,0,0,0,0,-39.4);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.va},{t:this.ta}]}).wait(1));this.wa= +new a.xm;this.wa.parent=this;this.wa.setTransform(127,270);this.ya=new a.xm;this.ya.parent=this;this.ya.setTransform(144,270);this.Aa=new a.xm;this.Aa.parent=this;this.Aa.setTransform(192,325);this.Ba=new a.xm;this.Ba.parent=this;this.Ba.setTransform(192,308);this.Da=new a.xm;this.Da.parent=this;this.Da.setTransform(209,325);this.Ea=new a.xm;this.Ea.parent=this;this.Ea.setTransform(209,308);this.Ga=new a.xm;this.Ga.parent=this;this.Ga.setTransform(127,325);this.Ha=new a.xm;this.Ha.parent=this;this.Ha.setTransform(127, +308);this.Ia=new a.xm;this.Ia.parent=this;this.Ia.setTransform(144,325);this.Ja=new a.xm;this.Ja.parent=this;this.Ja.setTransform(144,308);this.Ka=new a.xm;this.Ka.parent=this;this.Ka.setTransform(192,270);this.La=new a.xm;this.La.parent=this;this.La.setTransform(209,270);this.Ma=new a.df;this.Ma.parent=this;this.Ma.setTransform(113.95,270.35,1,1,0,0,0,0,-13);this.Na=new a.df;this.Na.parent=this;this.Na.setTransform(223.95,270.35,1,1,0,0,0,0,-13);this.Oa=new a.N;this.Oa.parent=this;this.Oa.setTransform(98.35, +259.95,.1885,.2481,180,0,0,.6,.2);this.Qa=new a.Ww;this.Qa.parent=this;this.Qa.setTransform(64.05,160.4,1,1,0,0,0,0,-25.5);this.Ua=new a.Ww;this.Ua.parent=this;this.Ua.setTransform(264,261.1,1,1,0,0,0,0,-25.5);this.Va=new a.Nw;this.Va.parent=this;this.Va.setTransform(333.4,302.95,1,1,0,0,0,-3.5,-22.5);this.Wa=new a.DC;this.Wa.parent=this;this.Wa.setTransform(-26.95,205.95,1,1,0,0,0,0,-3.5);this.Xa=new a.DC;this.Xa.parent=this;this.Xa.setTransform(268,188.05,1,1,0,0,0,0,-3.5);this.Ya=new a.Mx;this.Ya.parent= +this;this.Ya.setTransform(20.15,263.3,1,1,0,0,0,0,-12);this.Za=new a.Ok;this.Za.parent=this;this.Za.setTransform(367.05,145,1,1,0,0,0,0,-12.8);this.$a=new a.og;this.$a.parent=this;this.$a.setTransform(354.05,198.95,1,1,0,0,0,0,-21.5);this.ab=new a.og;this.ab.parent=this;this.ab.setTransform(364.05,191.95,1,1,0,0,0,0,-21.5);this.hb=new a.og;this.hb.parent=this;this.hb.setTransform(-16,299,1,1,0,0,0,0,-21.5);this.mb=new a.Gm;this.mb.parent=this;this.mb.setTransform(136.1,358.45,1,1,0,0,0,0,-16.5);this.nb= +new a.Gm;this.nb.parent=this;this.nb.setTransform(201.1,358.45,1,1,0,0,0,0,-16.5);this.rb=new a.Ok;this.rb.parent=this;this.rb.setTransform(320,193.05,1,1,0,0,0,0,-12.8);this.tb=new a.og;this.tb.parent=this;this.tb.setTransform(348,184,1,1,0,0,0,0,-21.5);this.ub=new a.og;this.ub.parent=this;this.ub.setTransform(326,144,1,1,0,0,0,0,-21.5);this.wb=new a.og;this.wb.parent=this;this.wb.setTransform(20,184,1,1,0,0,0,0,-21.5);this.yb=new a.og;this.yb.parent=this;this.yb.setTransform(0,160,1,1,0,0,0,0,-21.5); +this.Ab=new a.Ok;this.Ab.parent=this;this.Ab.setTransform(64,321.05,1,1,0,0,0,0,-12.8);this.Cb=new a.og;this.Cb.parent=this;this.Cb.setTransform(43,303,1,1,0,0,0,0,-21.5);this.Db=new a.og;this.Db.parent=this;this.Db.setTransform(61,271,1,1,0,0,0,0,-21.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa}, +{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa}]}).wait(1));this.Eb=new a.k3a;this.Eb.parent=this;this.Eb.setTransform(192.85,285,1,1,0,0,0,240,145);this.timeline.addTween(b.Tween.get(this.Eb).wait(1))}).prototype=k(a.f_,new b.Rectangle(-384,-197,960,1157),null);(a.mpa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T= +{region:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(713.35,-62.05,.8902,1.8886,0,0,0,.6,-.7);this.g=new a.N;this.g.parent=this;this.g.setTransform(883.75,144.9,9.9686,2.558,0,0,0,.4,-.4);this.i=new a.N;this.i.parent=this;this.i.setTransform(884.25,84.05,9.9686,2.558,0,0,0,.4,-.4);this.o=new a.N;this.o.parent=this;this.o.setTransform(435.6,388,6.0255,6.6582,0,0,0,.6,-.2);this.H=new a.N;this.H.parent= +this;this.H.setTransform(505.6,476.15,3.0081,5.6515,0,0,0,.5,-.2);this.O=new a.N;this.O.parent=this;this.O.setTransform(775.4,493.85,1.1348,3.7848,0,0,0,.5,-.1);this.$=new a.N;this.$.parent=this;this.$.setTransform(409.8,-66.8,2.9484,1.8151,0,0,0,.5,-.7);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(543.85,277.5,.0161,3.4854,0,0,0,0,.4);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(560.65,248.8,2.0293,.9831,0,0,0,.2,.2);this.va=new a.N;this.va.parent=this;this.va.setTransform(538.55, +295.95,.6923,.9831,0,0,0,.1,.2);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(569.15,175.7,3.0106,2.0064,0,0,0,.5,-.2);this.ya=new a.N;this.ya.parent=this;this.ya.setTransform(731.95,405.5,6.9779,7.9936,0,0,0,.6,-.2);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(689.95,330.15,3.9975,2.558,0,0,0,.5,-.2);this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(682,298.15,4.9969,2.558,0,0,0,.4,-.2);this.Da=new a.N;this.Da.parent=this;this.Da.setTransform(674.85,282.4,6.034,2.558, +0,0,0,.4,-.2);this.Ea=new a.N;this.Ea.parent=this;this.Ea.setTransform(659.7,267.15,7.9788,2.558,0,0,0,.4,-.3);this.Ga=new a.N;this.Ga.parent=this;this.Ga.setTransform(651.6,250.9,8.9902,2.558,0,0,0,.4,-.4);this.Ha=new a.N;this.Ha.parent=this;this.Ha.setTransform(651.6,234.9,8.9902,2.558,0,0,0,.4,-.4);this.Ia=new a.N;this.Ia.parent=this;this.Ia.setTransform(651.6,201.9,8.9902,2.558,0,0,0,.4,-.4);this.Ja=new a.N;this.Ja.parent=this;this.Ja.setTransform(651.6,163.9,8.9902,2.558,0,0,0,.4,-.4);this.Ka= +new a.N;this.Ka.parent=this;this.Ka.setTransform(747.25,144.9,8.9872,2.558,0,0,0,.4,-.4);this.La=new a.N;this.La.parent=this;this.La.setTransform(747.7,84.05,8.9872,2.558,0,0,0,.4,-.4);this.Ma=new a.N;this.Ma.parent=this;this.Ma.setTransform(511.05,71,3.6158,3.0191,0,0,0,.6,-.4);this.Na=new a.N;this.Na.parent=this;this.Na.setTransform(589.6,79.6,8.9778,1.992,0,0,0,.6,-.4);this.Oa=new a.N;this.Oa.parent=this;this.Oa.setTransform(689.85,35.1,3.9915,7.2439,0,0,0,.4,-.4);this.Qa=new a.N;this.Qa.parent= +this;this.Qa.setTransform(651.05,-30.65,9.1893,2.6261,0,0,0,.5,-.6);this.Ua=new a.N;this.Ua.parent=this;this.Ua.setTransform(558.9,-37.85,2.2491,3.5369,0,0,0,.4,-.7);this.Va=new a.N;this.Va.parent=this;this.Va.setTransform(520.9,-58.1,2.9999,.8006,0,0,0,.3,-.6);this.Wa=new a.N;this.Wa.parent=this;this.Wa.setTransform(446.7,295.95,7.742,.9831,0,0,0,.1,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La}, +{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.Xa=new a.gja;this.Xa.parent=this;this.Xa.setTransform(862,-168,1,1,0,0,0,0,-.6);this.Ya=new a.FYa;this.Ya.parent=this;this.Ya.setTransform(737,472.3,1,1,0,0,0,0,-18.7);this.Za=new a.WRa;this.Za.parent=this;this.Za.setTransform(506.85, +102.2,1,1,0,0,0,0,-.6);this.$a=new a.mRa;this.$a.parent=this;this.$a.setTransform(601.05,368.05,1,1,0,0,0,0,-.6);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa}]}).wait(1));this.ab=new a.xp;this.ab.parent=this;this.ab.setTransform(409,-83,1,1,0,0,180,0,-42);this.hb=new a.DC;this.hb.parent=this;this.hb.setTransform(624.1,1.6,1,1,0,0,0,0,-3.5);this.mb=new a.Nw;this.mb.parent=this;this.mb.setTransform(650,380,1,1,0,0,0,-3.5,-22.5);this.nb=new a.Vw;this.nb.parent= +this;this.nb.setTransform(595.65,286.95,1,1,0,0,0,-8.7,-27.1);this.rb=new a.Nw;this.rb.parent=this;this.rb.setTransform(569.25,496,1,1,0,0,0,-3.5,-22.5);this.tb=new a.rJ;this.tb.parent=this;this.tb.setTransform(739.35,455.55,1,1,0,0,0,2,-31);this.ub=new a.Vw;this.ub.parent=this;this.ub.setTransform(659.3,460.5,1,1,0,0,0,-8.7,-27.1);this.wb=new a.Vw;this.wb.parent=this;this.wb.setTransform(573.1,424.25,1,1,0,0,180,-8.7,-27.1);this.yb=new a.Nw;this.yb.parent=this;this.yb.setTransform(413.4,293.95,1, +1,0,0,0,-3.5,-22.5);this.Ab=new a.rJ;this.Ab.parent=this;this.Ab.setTransform(503.05,380.95,1,1,0,0,0,2,-31);this.Cb=new a.og;this.Cb.parent=this;this.Cb.setTransform(496.75,198.3,1,1,0,0,0,0,-21.5);this.Db=new a.Ok;this.Db.parent=this;this.Db.setTransform(518.05,176.35,1,1,0,0,0,0,-12.8);this.Eb=new a.Ok;this.Eb.parent=this;this.Eb.setTransform(455.05,136,1,1,0,0,0,0,-12.8);this.Fb=new a.og;this.Fb.parent=this;this.Fb.setTransform(462.05,189.95,1,1,0,0,0,0,-21.5);this.Gb=new a.og;this.Gb.parent= +this;this.Gb.setTransform(472.05,182.95,1,1,0,0,0,0,-21.5);this.Hb=new a.xp;this.Hb.parent=this;this.Hb.setTransform(546.4,-32.05,1,1,0,0,0,0,-42);this.Jb=new a.Ok;this.Jb.parent=this;this.Jb.setTransform(428,184.05,1,1,0,0,0,0,-12.8);this.Lb=new a.og;this.Lb.parent=this;this.Lb.setTransform(456,175,1,1,0,0,0,0,-21.5);this.Mb=new a.og;this.Mb.parent=this;this.Mb.setTransform(414,135,1,1,0,0,0,0,-21.5);this.Pb=new a.Ok;this.Pb.parent=this;this.Pb.setTransform(455,71.05,1,1,0,0,0,0,-12.8);this.Nb=new a.V1a; +this.Nb.parent=this;this.Nb.setTransform(473.2,245,1,1,0,0,0,0,2.4);this.Qb=new a.X1a;this.Qb.parent=this;this.Qb.setTransform(411,101,1,1,0,0,0,0,2.4);this.Ob=new a.W1a;this.Ob.parent=this;this.Ob.setTransform(482,-15,1,1,0,0,0,0,1.9);this.Rb=new a.xp;this.Rb.parent=this;this.Rb.setTransform(423.05,12.65,1,1,0,0,0,0,-42);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb},{t:this.Pb},{t:this.Mb},{t:this.Lb},{t:this.Jb},{t:this.Hb},{t:this.Gb},{t:this.Fb}, +{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab}]}).wait(1));this.Sb=new a.n3a;this.Sb.parent=this;this.Sb.setTransform(577,374.5,1,1,0,0,0,194,149.5);this.Tb=new a.m3a;this.Tb.parent=this;this.Tb.setTransform(671.5,75,1,1,0,0,0,288.5,150);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Tb},{t:this.Sb}]}).wait(1))}).prototype=k(a.mpa,new b.Rectangle(-384,-197,1344,1157),null);(a.Sna= +function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={region:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(-300.45,-49.7,3.4993,14.8386,0,0,0,-.1,-.8);this.g=new a.N;this.g.parent=this;this.g.setTransform(-272.85,244.2,5.9893,8.9896,0,0,0,-.1,-.6);this.i=new a.N;this.i.parent=this;this.i.setTransform(-293.85,-66.7,3.2288,14.8386,0,0,0,-.1,-.8);this.o=new a.N;this.o.parent=this;this.o.setTransform(-521.15, +-20.35,8.986,9.9702,0,0,0,-.1,-.4);this.H=new a.N;this.H.parent=this;this.H.setTransform(-528.8,216.9,7.991,7.5822,0,0,0,-.1,-.5);this.O=new a.N;this.O.parent=this;this.O.setTransform(-265.7,470.8,6.9458,3.0031,0,0,0,-.2,-.4);this.$=new a.N;this.$.parent=this;this.$.setTransform(-457.7,470.8,6.9458,3.0031,0,0,0,-.2,-.4);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(-536.35,409.2,4.9947,6.9637,0,0,0,-.1,-.5);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(-488.35,309.2,4.9947,6.9637, +0,0,0,-.1,-.5);this.va=new a.N;this.va.parent=this;this.va.setTransform(-136.75,474.15,7.0592,7.8659,0,0,0,0,-.6);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(-225.35,370.1,6.0316,8.9896,0,0,0,-.1,-.5);this.ya=new a.N;this.ya.parent=this;this.ya.setTransform(119.55,174.2,1.017,2.9576,0,0,0,.4,.3);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(104.4,177.8,.9949,2.9576,0,0,0,.4,.2);this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(120.8,265.1,2.9167,3.9414,0,0,0,.1,.4); +this.Da=new a.N;this.Da.parent=this;this.Da.setTransform(128.7,260.1,1.9071,3.9414,0,0,0,.1,.4);this.Ea=new a.N;this.Ea.parent=this;this.Ea.setTransform(96.45,264.8,6.0161,2.9314,0,0,0,.1,.4);this.Ga=new a.N;this.Ga.parent=this;this.Ga.setTransform(136.3,254.1,.9753,3.9414,0,0,0,.1,.4);this.Ha=new a.N;this.Ha.parent=this;this.Ha.setTransform(121.05,168.8,2.9034,2.9576,0,0,0,.2,.2);this.Ia=new a.N;this.Ia.parent=this;this.Ia.setTransform(106.45,534.3,4.4971,1.4677,0,0,0,-.4,-.3);this.Ja=new a.N;this.Ja.parent= +this;this.Ja.setTransform(2.6,534.55,11.0302,1.4677,0,0,0,-.5,-.4);this.Ka=new a.N;this.Ka.parent=this;this.Ka.setTransform(-369.25,518.65,6.1025,2.9877,0,0,0,-.1,-.4);this.La=new a.N;this.La.parent=this;this.La.setTransform(-293.4,325.95,3.3862,4.9952,0,0,0,-.2,-.4);this.Ma=new a.N;this.Ma.parent=this;this.Ma.setTransform(-537.15,-4.35,8.986,9.9702,0,0,0,-.1,-.4);this.Na=new a.N;this.Na.parent=this;this.Na.setTransform(-544.4,119.8,5.9863,9.5524,0,0,0,-.1,-.5);this.Oa=new a.N;this.Oa.parent=this; +this.Oa.setTransform(-512.8,232.9,7.991,7.5822,0,0,0,-.1,-.5);this.Qa=new a.N;this.Qa.parent=this;this.Qa.setTransform(-401.1,260.2,10.0524,6.9637,0,0,0,-.1,-.5);this.Ua=new a.N;this.Ua.parent=this;this.Ua.setTransform(-266.5,223.2,6.7486,8.9896,0,0,0,-.1,-.6);this.Va=new a.N;this.Va.parent=this;this.Va.setTransform(-439.4,-81.1,14.9743,12.7988,0,0,0,-.1,-.8);this.Wa=new a.N;this.Wa.parent=this;this.Wa.setTransform(-50,-64.05,9.1711,3.6488,0,0,0,-.1,-.8);this.Xa=new a.N;this.Xa.parent=this;this.Xa.setTransform(-216.65, +-104.05,14.9743,2.728,0,0,0,-.1,-.8);this.Ya=new a.N;this.Ya.parent=this;this.Ya.setTransform(25.85,-71.95,14.9743,4.5899,0,0,0,.1,-.7);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H}, +{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.Za=new a.KVa;this.Za.parent=this;this.Za.setTransform(-382.75,400.7,1,1,0,0,0,-.1,-.3);this.$a=new a.WM;this.$a.parent=this;this.$a.setTransform(22.75,272.75,1,1,0,0,0,0,.8);this.ab=new a.WM;this.ab.parent=this;this.ab.setTransform(-184.6,94.75,1,1,0,0,0,0,.8);this.hb=new a.Xsa;this.hb.parent=this;this.hb.setTransform(-381.9,343.55,1,1,0,0,0,0,-4.5);this.mb=new a.RZa;this.mb.parent=this;this.mb.setTransform(-304,103,1,1,0,0,0,0,-17); +this.nb=new a.QZa;this.nb.parent=this;this.nb.setTransform(-464,103,1,1,0,0,0,0,-17);this.rb=new a.PZa;this.rb.parent=this;this.rb.setTransform(-384.5,46,1,1,0,0,0,0,-17);this.tb=new a.TZa;this.tb.parent=this;this.tb.setTransform(-384.5,186.4,1,1,0,0,0,0,.8);this.ub=new a.SZa;this.ub.parent=this;this.ub.setTransform(-384,118);this.wb=new a.fEa;this.wb.parent=this;this.wb.setTransform(24.05,74.7,1,1,0,0,0,-1,-34);this.yb=new a.df;this.yb.parent=this;this.yb.setTransform(-415,400,1,1,0,0,0,0,-14);this.Ab= +new a.df;this.Ab.parent=this;this.Ab.setTransform(-352,400,1,1,0,0,0,0,-14);this.Cb=new a.ku;this.Cb.parent=this;this.Cb.setTransform(-301.95,400.05,1,1,0,0,180,.2,-.1);this.Db=new a.eC;this.Db.parent=this;this.Db.setTransform(-460.1,393.7,1,1,0,0,0,-.1,-.3);this.Eb=new a.ju;this.Eb.parent=this;this.Eb.setTransform(-22,320.95,1,1,0,0,0,.1,-.5);this.Fb=new a.eC;this.Fb.parent=this;this.Fb.setTransform(-85.1,343.7,1,1,0,0,0,-.1,-.3);this.Gb=new a.ju;this.Gb.parent=this;this.Gb.setTransform(-21.25,277.95, +1,1,0,0,0,16.5,10.5);this.Hb=new a.ju;this.Hb.parent=this;this.Hb.setTransform(-172.6,107.65,1,1,0,0,180,16.5,10.5);this.Jb=new a.Ut;this.Jb.parent=this;this.Jb.setTransform(-167.9,27.95,1,1,0,0,0,0,-50.5);this.Lb=new a.df;this.Lb.parent=this;this.Lb.setTransform(-135.6,71.95,1,1,0,0,0,0,-14);this.Mb=new a.ku;this.Mb.parent=this;this.Mb.setTransform(-107.95,48,1,1,0,0,180,.2,-.3);this.Pb=new a.ju;this.Pb.parent=this;this.Pb.setTransform(-108,87,1,1,0,0,0,.4,.2);this.Nb=new a.df;this.Nb.parent=this; +this.Nb.setTransform(-113.6,256.3,1,1,0,0,0,0,-14);this.Qb=new a.df;this.Qb.parent=this;this.Qb.setTransform(-113.6,217.95,1,1,0,0,0,0,-14);this.Ob=new a.jWa;this.Ob.parent=this;this.Ob.setTransform(-63,222,1,1,0,0,0,-.4,-.3);this.Rb=new a.ku;this.Rb.parent=this;this.Rb.setTransform(-124,200.05,1,1,0,0,180,.1,.1);this.Sb=new a.eC;this.Sb.parent=this;this.Sb.setTransform(-16.05,161.95,1,1,0,0,180,-8.2,4);this.Tb=new a.Ut;this.Tb.parent=this;this.Tb.setTransform(80.75,31.95,1,1,0,0,180,0,-50.5);this.Ub= +new a.qg;this.Ub.parent=this;this.Ub.setTransform(105,225,1,1,0,0,0,0,-9);this.Zb=new a.qg;this.Zb.parent=this;this.Zb.setTransform(121,220,1,1,0,0,0,0,-9);this.Wb=new a.qg;this.Wb.parent=this;this.Wb.setTransform(137,215,1,1,0,0,0,0,-9);this.Xb=new a.Ut;this.Xb.parent=this;this.Xb.setTransform(128.1,325.6,1,1,0,0,180,0,-50.5);this.Yb=new a.ku;this.Yb.parent=this;this.Yb.setTransform(78.05,317.05,1,1,0,0,180,.2,-.1);this.$b=new a.df;this.$b.parent=this;this.$b.setTransform(16.75,187.95,1,1,0,0,0, +0,-14);this.ac=new a.df;this.ac.parent=this;this.ac.setTransform(38.75,187.95,1,1,0,0,0,0,-14);this.bc=new a.df;this.bc.parent=this;this.bc.setTransform(60.4,187.95,1,1,0,0,0,0,-14);this.hc=new a.df;this.hc.parent=this;this.hc.setTransform(82.4,187.95,1,1,0,0,0,0,-14);this.jc=new a.Ut;this.jc.parent=this;this.jc.setTransform(139.4,-8.05,1,1,0,0,180,0,-50.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.jc},{t:this.hc},{t:this.bc},{t:this.ac},{t:this.$b},{t:this.Yb},{t:this.Xb},{t:this.Wb}, +{t:this.Zb},{t:this.Ub},{t:this.Tb},{t:this.Sb},{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb},{t:this.Pb},{t:this.Mb},{t:this.Lb},{t:this.Jb},{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za}]}).wait(1));this.kc=new a.cpa;this.kc.parent=this;this.kc.setTransform(97,240,1,1,0,0,0,0,-96);this.timeline.addTween(b.Tween.get(this.kc).wait(1)); +this.lc=new a.ina;this.lc.parent=this;this.lc.setTransform(-335.5,448,1,1,0,0,0,160.5,128);this.nc=new a.hna;this.nc.parent=this;this.nc.setTransform(0,368,1,1,0,0,0,160,128);this.tc=new a.ena;this.tc.parent=this;this.tc.setTransform(-335.5,159.5,1,1,0,0,0,160.5,128.5);this.uc=new a.gna;this.uc.parent=this;this.uc.setTransform(-15,112.5,1,1,0,0,0,160,128.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.uc},{t:this.tc},{t:this.nc},{t:this.lc}]}).wait(1))}).prototype=k(a.Sna,new b.Rectangle(-607.9, +-191.8,1327.9,766.8),null);(a.VX=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={region:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(675.95,84.3,8.3574,3.0549,0,0,0,-.1,-.1);this.g=new a.N;this.g.parent=this;this.g.setTransform(651.3,36,11.1079,3.0549,0,0,0,-.1,-.2);this.i=new a.N;this.i.parent=this;this.i.setTransform(591.5,495.35,3.9942,3.8807,0,0,0,-.1,0);this.o=new a.N;this.o.parent= +this;this.o.setTransform(374.3,-42.85,11.1079,5.2411,0,0,0,-.1,-.2);this.H=new a.N;this.H.parent=this;this.H.setTransform(424.3,-60,11.1079,3.0549,0,0,0,-.1,-.2);this.O=new a.N;this.O.parent=this;this.O.setTransform(788.8,205.3,3.4007,6.0567,0,0,0,0,.1);this.$=new a.N;this.$.parent=this;this.$.setTransform(788.95,323.55,3.4325,5.6235,0,0,0,.1,.1);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(745.8,400.6,9.0033,4.0014,0,0,0,.2,.2);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(639.5, +446.7,3.9942,3.8963,0,0,0,-.1,-.1);this.va=new a.N;this.va.parent=this;this.va.setTransform(270.15,529.55,16.6299,1.4677,0,0,0,-.4,-.4);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(678.85,-23.2,4.9813,4.4888,0,0,0,-.2,-.1);this.ya=new a.N;this.ya.parent=this;this.ya.setTransform(348.1,260.5,2.5838,3.9168,0,0,0,.2,.4);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(376.65,178.2,1.017,2.9576,0,0,0,.4,.3);this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(360.45,174.3,1.017, +2.9576,0,0,0,.4,.3);this.Da=new a.N;this.Da.parent=this;this.Da.setTransform(175.65,265.1,4.1481,3.9414,0,0,0,.1,.4);this.Ea=new a.N;this.Ea.parent=this;this.Ea.setTransform(183.8,260.1,5.158,3.9414,0,0,0,.1,.4);this.Ga=new a.N;this.Ga.parent=this;this.Ga.setTransform(364.45,264.2,2.5838,3.9168,0,0,0,.2,.4);this.Ha=new a.N;this.Ha.parent=this;this.Ha.setTransform(361.35,264.8,8.9127,2.9314,0,0,0,.1,.4);this.Ia=new a.N;this.Ia.parent=this;this.Ia.setTransform(241.45,121.7,5.9743,3.1358,0,0,0,.2,.2); +this.Ja=new a.N;this.Ja.parent=this;this.Ja.setTransform(309.55,168.95,9.5756,2.9576,0,0,0,.2,.2);this.Ka=new a.N;this.Ka.parent=this;this.Ka.setTransform(296.35,253.85,7.0668,3.9168,0,0,0,.2,.3);this.La=new a.N;this.La.parent=this;this.La.setTransform(191.25,254.1,6.0899,3.9414,0,0,0,.1,.4);this.Ma=new a.N;this.Ma.parent=this;this.Ma.setTransform(243.55,301.05,12.4876,4.4917,0,0,0,.1,.2);this.Na=new a.N;this.Na.parent=this;this.Na.setTransform(193.55,168.8,6.0302,2.9576,0,0,0,.2,.2);this.Oa=new a.N; +this.Oa.parent=this;this.Oa.setTransform(237.95,-23.7,12.0013,3.0549,0,0,0,-.1,-.1);this.Qa=new a.N;this.Qa.parent=this;this.Qa.setTransform(540.25,-12,14.5096,3.0549,0,0,0,-.1,-.2);this.Ua=new a.N;this.Ua.parent=this;this.Ua.setTransform(718.3,101.6,7.9762,6.7592,0,0,0,-.2,-.1);this.Va=new a.N;this.Va.parent=this;this.Va.setTransform(420.15,529.55,16.6299,1.4677,0,0,0,-.4,-.4);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma}, +{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.Wa=new a.VSa;this.Wa.parent=this;this.Wa.setTransform(236,198.9,1,1,0,0,0,0,.8);this.timeline.addTween(b.Tween.get(this.Wa).wait(1));this.Xa=new a.WM;this.Xa.parent=this;this.Xa.setTransform(336.8,137.75,1,1,0,0,0,0,.8); +this.Ya=new a.WK;this.Ya.parent=this;this.Ya.setTransform(231.5,419.95,1,1,0,0,0,0,-12.9);this.Za=new a.dja;this.Za.parent=this;this.Za.setTransform(195.55,33.85,1,1,0,0,0,0,-.7);this.$a=new a.dja;this.$a.parent=this;this.$a.setTransform(284.55,33.85,1,1,0,0,0,0,-.7);this.ab=new a.MVa;this.ab.parent=this;this.ab.setTransform(231.9,341.6);this.hb=new a.ku;this.hb.parent=this;this.hb.setTransform(624.05,314.95,1,1,0,0,180,.4,-.3);this.mb=new a.Ut;this.mb.parent=this;this.mb.setTransform(352,325.5,1, +1,0,0,0,0,-50.5);this.nb=new a.eC;this.nb.parent=this;this.nb.setTransform(401,320.05,1,1,0,0,180,.1,.1);this.rb=new a.ku;this.rb.parent=this;this.rb.setTransform(429.75,314.95,1,1,0,0,0,.4,-.3);this.tb=new a.Ut;this.tb.parent=this;this.tb.setTransform(529.4,152.95,1,1,0,0,0,0,-50.5);this.ub=new a.eC;this.ub.parent=this;this.ub.setTransform(592.45,194,1,1,0,0,0,-.2,.1);this.wb=new a.ku;this.wb.parent=this;this.wb.setTransform(624.05,234.95,1,1,0,0,180,.4,-.3);this.yb=new a.ku;this.yb.parent=this; +this.yb.setTransform(437.75,234.95,1,1,0,0,0,.4,-.3);this.Ab=new a.ju;this.Ab.parent=this;this.Ab.setTransform(576.95,327,1,1,0,0,180,.5,-.1);this.Cb=new a.ju;this.Cb.parent=this;this.Cb.setTransform(479.05,327,1,1,0,0,0,.5,-.1);this.Db=new a.ju;this.Db.parent=this;this.Db.setTransform(563.95,296,1,1,0,0,180,.5,-.1);this.Eb=new a.df;this.Eb.parent=this;this.Eb.setTransform(578.1,277.95,1,1,0,0,0,0,-14);this.Fb=new a.df;this.Fb.parent=this;this.Fb.setTransform(213.1,335.95,1,1,0,0,0,0,-14);this.Gb= +new a.df;this.Gb.parent=this;this.Gb.setTransform(250.1,335.95,1,1,0,0,0,0,-14);this.Hb=new a.ju;this.Hb.parent=this;this.Hb.setTransform(204,371.95,1,1,0,0,180,-.4,-.5);this.Jb=new a.ju;this.Jb.parent=this;this.Jb.setTransform(259.95,371.95,1,1,0,0,0,-.1,-.5);this.Lb=new a.ku;this.Lb.parent=this;this.Lb.setTransform(305,127,1,1,0,0,0,.4,-.3);this.Mb=new a.ku;this.Mb.parent=this;this.Mb.setTransform(175,127,1,1,0,0,180,.4,-.3);this.Pb=new a.eC;this.Pb.parent=this;this.Pb.setTransform(469.35,194,1, +1,0,0,180,-.2,.1);this.Nb=new a.ju;this.Nb.parent=this;this.Nb.setTransform(212,55,1,1,0,0,180,-.4,.2);this.Qb=new a.ju;this.Qb.parent=this;this.Qb.setTransform(285.6,64.95,1,1,0,0,0,16.5,10.5);this.Ob=new a.Ut;this.Ob.parent=this;this.Ob.setTransform(400.1,15.95,1,1,0,0,0,0,-50.5);this.Rb=new a.qg;this.Rb.parent=this;this.Rb.setTransform(152,215,1,1,0,0,0,0,-9);this.Sb=new a.qg;this.Sb.parent=this;this.Sb.setTransform(168,215,1,1,0,0,0,0,-9);this.Tb=new a.qg;this.Tb.parent=this;this.Tb.setTransform(184, +215,1,1,0,0,0,0,-9);this.Ub=new a.qg;this.Ub.parent=this;this.Ub.setTransform(200,215,1,1,0,0,0,0,-9);this.Zb=new a.qg;this.Zb.parent=this;this.Zb.setTransform(216,215,1,1,0,0,0,0,-9);this.Wb=new a.qg;this.Wb.parent=this;this.Wb.setTransform(232,215,1,1,0,0,0,0,-9);this.Xb=new a.qg;this.Xb.parent=this;this.Xb.setTransform(248,215,1,1,0,0,0,0,-9);this.Yb=new a.qg;this.Yb.parent=this;this.Yb.setTransform(264,215,1,1,0,0,0,0,-9);this.$b=new a.qg;this.$b.parent=this;this.$b.setTransform(280,215,1,1,0, +0,0,0,-9);this.ac=new a.qg;this.ac.parent=this;this.ac.setTransform(296,215,1,1,0,0,0,0,-9);this.bc=new a.qg;this.bc.parent=this;this.bc.setTransform(312,215,1,1,0,0,0,0,-9);this.hc=new a.qg;this.hc.parent=this;this.hc.setTransform(328,215,1,1,0,0,0,0,-9);this.jc=new a.qg;this.jc.parent=this;this.jc.setTransform(344,215,1,1,0,0,0,0,-9);this.kc=new a.qg;this.kc.parent=this;this.kc.setTransform(360,220,1,1,0,0,0,0,-9);this.lc=new a.qg;this.lc.parent=this;this.lc.setTransform(376,225,1,1,0,0,0,0,-9); +this.nc=new a.ku;this.nc.parent=this;this.nc.setTransform(176.4,350.85,1,1,0,0,0,.4,-.3);this.tc=new a.ju;this.tc.parent=this;this.tc.setTransform(492.05,296,1,1,0,0,0,.5,-.1);this.uc=new a.ku;this.uc.parent=this;this.uc.setTransform(291,351.05,1,1,0,0,180,.1,-.1);this.xc=new a.df;this.xc.parent=this;this.xc.setTransform(418.4,187.95,1,1,0,0,0,0,-14);this.zc=new a.df;this.zc.parent=this;this.zc.setTransform(397.1,187.95,1,1,0,0,0,0,-14);this.Ac=new a.e6;this.Ac.parent=this;this.Ac.setTransform(529, +260.5,1,1,0,0,0,0,-.5);this.Bc=new a.df;this.Bc.parent=this;this.Bc.setTransform(478.1,278.95,1,1,0,0,0,0,-14);this.yc=new a.Ut;this.yc.parent=this;this.yc.setTransform(344.1,-13.05,1,1,0,0,0,0,-50.5);this.Dc=new a.GEa;this.Dc.parent=this;this.Dc.setTransform(240,-48,1,1,0,0,0,0,-65);this.Ec=new a.Ut;this.Ec.parent=this;this.Ec.setTransform(287.15,-40.95,1,1,0,0,0,0,-50.5);this.Fc=new a.Ut;this.Fc.parent=this;this.Fc.setTransform(202.4,-41.05,1,1,0,0,180,0,-50.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Fc}, +{t:this.Ec},{t:this.Dc},{t:this.yc},{t:this.Bc},{t:this.Ac},{t:this.zc},{t:this.xc},{t:this.uc},{t:this.tc},{t:this.nc},{t:this.lc},{t:this.kc},{t:this.jc},{t:this.hc},{t:this.bc},{t:this.ac},{t:this.$b},{t:this.Yb},{t:this.Xb},{t:this.Wb},{t:this.Zb},{t:this.Ub},{t:this.Tb},{t:this.Sb},{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb},{t:this.Pb},{t:this.Mb},{t:this.Lb},{t:this.Jb},{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub}, +{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa}]}).wait(1));this.Gc=new a.bpa;this.Gc.parent=this;this.Gc.setTransform(359,216.05,1,1,0,0,0,0,-120);this.timeline.addTween(b.Tween.get(this.Gc).wait(1));this.Jc=new a.f3a;this.Jc.parent=this;this.Jc.setTransform(287.5,340,1,1,0,0,0,144.5,124);this.Kc=new a.g3a;this.Kc.parent=this;this.Kc.setTransform(591.5,340,1,1,0,0,0,144.5,124);this.Lc=new a.d3a;this.Lc.parent=this;this.Lc.setTransform(286.5, +107,1,1,0,0,0,144.5,124);this.Ic=new a.e3a;this.Ic.parent=this;this.Ic.setTransform(591.5,169,1,1,0,0,0,144.5,124);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ic},{t:this.Lc},{t:this.Kc},{t:this.Jc}]}).wait(1))}).prototype=k(a.VX,new b.Rectangle(-576,-191.8,1393,767.8),null);(a.vma=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={region:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(626.5, +108.25,4.2669,1.8385,0,0,0,.1,.1);this.g=new a.N;this.g.parent=this;this.g.setTransform(792.65,418.7,7.5342,.5923,0,180,0,.2,-.1);this.i=new a.N;this.i.parent=this;this.i.setTransform(812.75,452.45,.9346,3.4401,0,0,0,.1,.4);this.o=new a.N;this.o.parent=this;this.o.setTransform(829.7,449.5,2.8737,2.9518,0,0,0,.2,.5);this.H=new a.N;this.H.parent=this;this.H.setTransform(754.7,448.6,2.8737,3.046,0,0,0,.2,.4);this.O=new a.N;this.O.parent=this;this.O.setTransform(769.75,452.45,.9346,3.4401,0,0,0,.1,.4); +this.$=new a.N;this.$.parent=this;this.$.setTransform(852.4,316.4,3.5386,9.0127,0,0,0,.2,.5);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(855.9,82.25,16.8025,1.8385,0,0,0,.1,.1);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(863.25,559.05,5.6554,3.5574,0,0,0,.1,.4);this.va=new a.N;this.va.parent=this;this.va.setTransform(672,464.55,4.0416,15.1781,0,0,0,.1,.4);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(718.95,558.7,5.6554,3.5574,0,0,0,.1,.4);this.ya=new a.N;this.ya.parent= +this;this.ya.setTransform(904.45,487.9,3.3819,12.3534,0,0,0,.1,.5);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(785,316.1,11.9854,8.9946,0,0,0,.1,.5);this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(707.75,316.4,7.0771,9.0127,0,0,0,.1,.5);this.Da=new a.N;this.Da.parent=this;this.Da.setTransform(854.4,308.4,3.2717,8.0352,0,0,0,.1,.5);this.Ea=new a.N;this.Ea.parent=this;this.Ea.setTransform(645.2,80.05,10.4608,1.8385);this.Ga=new a.N;this.Ga.parent=this;this.Ga.setTransform(504.95, +96.25,11.5394,6.0064,0,0,0,.1,.1);this.Ha=new a.N;this.Ha.parent=this;this.Ha.setTransform(338.55,205.7,10.4608,9.2802);this.Ia=new a.N;this.Ia.parent=this;this.Ia.setTransform(332.35,351.1,10.4608,9.2802);this.Ja=new a.N;this.Ja.parent=this;this.Ja.setTransform(322.7,479.5,10.4608,9.2802,0,0,0,.1,.8);this.Ka=new a.N;this.Ka.parent=this;this.Ka.setTransform(322.6,600.5,10.4608,9.2802,0,0,0,.1,.8);this.La=new a.N;this.La.parent=this;this.La.setTransform(326.65,752.5,11.0114,9.2802,0,0,0,.1,.8);this.Ma= +new a.N;this.Ma.parent=this;this.Ma.setTransform(462.65,774.65,11.0114,6.2351,0,0,0,.1,.8);this.Na=new a.N;this.Na.parent=this;this.Na.setTransform(606.35,774.65,11.0114,6.2351,0,0,0,.1,.8);this.Oa=new a.N;this.Oa.parent=this;this.Oa.setTransform(766,763.75,11.0114,4.9118,0,0,0,.1,.8);this.Qa=new a.N;this.Qa.parent=this;this.Qa.setTransform(894.9,770.85,8.1553,5.7421,0,0,0,.1,.8);this.Ua=new a.N;this.Ua.parent=this;this.Ua.setTransform(920.1,70.15,4.9743,3.3469,0,0,0,.1,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ua}, +{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.Va=new a.Nka;this.Va.parent=this;this.Va.setTransform(621.9,173.5,1,1,0,0,0,0,-10);this.Wa=new a.bja;this.Wa.parent=this;this.Wa.setTransform(841.4,476.85,1,1,0,0,0,0,-.6); +this.Xa=new a.bja;this.Xa.parent=this;this.Xa.setTransform(741.3,476.8,1,1,0,0,0,0,-.6);this.Ya=new a.q2a;this.Ya.parent=this;this.Ya.setTransform(769.3,106.45,1,1,0,0,0,0,-.5);this.Za=new a.QTa;this.Za.parent=this;this.Za.setTransform(847.4,118.55,1,1,0,0,0,0,-.6);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va}]}).wait(1));this.$a=new a.Hx;this.$a.parent=this;this.$a.setTransform(621,339,1,1,0,0,180,0,-38.5);this.ab=new a.Hx;this.ab.parent= +this;this.ab.setTransform(573,355,1,1,0,0,180,0,-38.5);this.hb=new a.NJ;this.hb.parent=this;this.hb.setTransform(798.7,479.3,1,1,0,0,0,8,8);this.mb=new a.NJ;this.mb.parent=this;this.mb.setTransform(782.7,479.3,1,1,0,0,0,8,8);this.nb=new a.NJ;this.nb.parent=this;this.nb.setTransform(798.7,431.3,1,1,0,0,0,8,8);this.rb=new a.NJ;this.rb.parent=this;this.rb.setTransform(782.7,431.3,1,1,0,0,0,8,8);this.tb=new a.NJ;this.tb.parent=this;this.tb.setTransform(798.7,447.3,1,1,0,0,0,8,8);this.ub=new a.NJ;this.ub.parent= +this;this.ub.setTransform(782.7,447.3,1,1,0,0,0,8,8);this.wb=new a.NJ;this.wb.parent=this;this.wb.setTransform(798.7,463.3,1,1,0,0,0,8,8);this.yb=new a.NJ;this.yb.parent=this;this.yb.setTransform(782.7,463.3,1,1,0,0,0,8,8);this.Ab=new a.h2a;this.Ab.parent=this;this.Ab.setTransform(790.65,392.35,1,1,0,0,0,0,-30.6);this.Cb=new a.$Sa;this.Cb.parent=this;this.Cb.setTransform(932.8,243.95,1,1,0,0,0,0,-.6);this.Db=new a.hja;this.Db.parent=this;this.Db.setTransform(444.7,465,1,1,0,0,0,0,-.7);this.Eb=new a.hja; +this.Eb.parent=this;this.Eb.setTransform(551.7,465,1,1,0,0,0,0,-.7);this.Fb=new a.iya;this.Fb.parent=this;this.Fb.setTransform(499.15,388.3,1,1,0,0,0,0,-65);this.Gb=new a.r6a;this.Gb.parent=this;this.Gb.setTransform(929,86.45,1,1,0,0,0,-.5,-34.6);this.Hb=new a.WK;this.Hb.parent=this;this.Hb.setTransform(793,669.1,1,1,0,0,0,0,-12.1);this.Jb=new a.lB;this.Jb.parent=this;this.Jb.setTransform(891.45,610.55,1,1,0,0,0,0,-8.5);this.Lb=new a.LB;this.Lb.parent=this;this.Lb.setTransform(829,556,1,1,0,0,180, +0,-51);this.Mb=new a.lB;this.Mb.parent=this;this.Mb.setTransform(698.45,606.55,1,1,0,0,0,0,-8.5);this.Pb=new a.LB;this.Pb.parent=this;this.Pb.setTransform(754.1,556.05,1,1,0,0,0,0,-51);this.Nb=new a.lB;this.Nb.parent=this;this.Nb.setTransform(727.75,422.85,1,1,0,0,0,0,-8.5);this.Qb=new a.lB;this.Qb.parent=this;this.Qb.setTransform(864.4,429.55,1,1,0,0,0,0,-8.5);this.Ob=new a.lB;this.Ob.parent=this;this.Ob.setTransform(728.75,460.85,1,1,0,0,0,0,-8.5);this.Rb=new a.lB;this.Rb.parent=this;this.Rb.setTransform(862.4, +461.55,1,1,0,0,0,0,-8.5);this.Sb=new a.Vfa;this.Sb.parent=this;this.Sb.setTransform(793,669.1,1,1,0,0,0,0,-12.1);this.Tb=new a.Nka;this.Tb.parent=this;this.Tb.setTransform(676,617,1,1,0,0,0,0,-10);this.Ub=new a.Mka;this.Ub.parent=this;this.Ub.setTransform(650.75,607.8,1,1,0,0,0,0,-64);this.Zb=new a.LB;this.Zb.parent=this;this.Zb.setTransform(907.55,219.35,1,1,0,0,0,0,-51);this.Wb=new a.PZ;this.Wb.parent=this;this.Wb.setTransform(827,103.3,1,1,0,0,180,0,-.2);this.Xb=new a.PZ;this.Xb.parent=this;this.Xb.setTransform(708, +50.25);this.Yb=new a.n6a;this.Yb.parent=this;this.Yb.setTransform(852.95,62.05,1,1,0,0,0,.2,-.2);this.$b=new a.PZ;this.$b.parent=this;this.$b.setTransform(834,50.3,1,1,0,0,180,0,-.2);this.ac=new a.PZ;this.ac.parent=this;this.ac.setTransform(715,103.25);this.bc=new a.df;this.bc.parent=this;this.bc.setTransform(761.9,468.05,1,1,0,0,0,0,-14);this.hc=new a.df;this.hc.parent=this;this.hc.setTransform(817.4,468.15,1,1,0,0,0,0,-14);this.jc=new a.Mt;this.jc.parent=this;this.jc.setTransform(298,628,1,1,0, +0,180,0,-90.5);this.kc=new a.Fp;this.kc.parent=this;this.kc.setTransform(328.5,525.5,1,1,0,0,180,4,-50);this.lc=new a.Lw;this.lc.parent=this;this.lc.setTransform(292.5,426.5,1,1,0,0,0,0,-70);this.nc=new a.Tf;this.nc.parent=this;this.nc.setTransform(302.5,402.5,1,1,0,0,180,-3,-19.5);this.tc=new a.Mt;this.tc.parent=this;this.tc.setTransform(295.5,256.5,1,1,0,0,0,0,-90.5);this.uc=new a.q1;this.uc.parent=this;this.uc.setTransform(561.95,783.3,1,1,0,0,0,-1,-14);this.xc=new a.Fp;this.xc.parent=this;this.xc.setTransform(471.6, +778,1,1,0,0,0,4,-50);this.zc=new a.Tf;this.zc.parent=this;this.zc.setTransform(950,758,1,1,0,0,0,-3,-19.5);this.Ac=new a.Tf;this.Ac.parent=this;this.Ac.setTransform(682.85,763.4,1,1,0,0,0,-3,-19.5);this.Bc=new a.Fp;this.Bc.parent=this;this.Bc.setTransform(622.95,766.3,1,1,0,0,180,4,-50);this.yc=new a.Wf;this.yc.parent=this;this.yc.setTransform(756.5,783.5,1,1,0,0,0,-.5,-34.6);this.Dc=new a.Fp;this.Dc.parent=this;this.Dc.setTransform(842.35,769.7,1,1,0,0,0,4,-50);this.Ec=new a.LB;this.Ec.parent=this; +this.Ec.setTransform(553.05,728.35,1,1,0,0,0,0,-51);this.Fc=new a.vX;this.Fc.parent=this;this.Fc.setTransform(478,538,1,1,0,0,180,0,-46);this.Gc=new a.vX;this.Gc.parent=this;this.Gc.setTransform(430,570,1,1,0,0,180,0,-46);this.Jc=new a.vX;this.Jc.parent=this;this.Jc.setTransform(478,543,1,1,0,0,180,0,-46);this.Kc=new a.vX;this.Kc.parent=this;this.Kc.setTransform(430,575,1,1,0,0,180,0,-46);this.Lc=new a.Hx;this.Lc.parent=this;this.Lc.setTransform(444,355,1,1,0,0,0,0,-38.5);this.Ic=new a.Hx;this.Ic.parent= +this;this.Ic.setTransform(492,371,1,1,0,0,0,0,-38.5);this.Nc=new a.Hx;this.Nc.parent=this;this.Nc.setTransform(444,347,1,1,0,0,0,0,-38.5);this.Oc=new a.Hx;this.Oc.parent=this;this.Oc.setTransform(492,363,1,1,0,0,0,0,-38.5);this.Rc=new a.Hx;this.Rc.parent=this;this.Rc.setTransform(508,90,1,1,0,0,180,0,-38.5);this.Uc=new a.Hx;this.Uc.parent=this;this.Uc.setTransform(460,106,1,1,0,0,180,0,-38.5);this.Xc=new a.Hx;this.Xc.parent=this;this.Xc.setTransform(621,339,1,1,0,0,180,0,-38.5);this.jd=new a.Hx;this.jd.parent= +this;this.jd.setTransform(573,355,1,1,0,0,180,0,-38.5);this.$c=new a.Hx;this.$c.parent=this;this.$c.setTransform(617,434,1,1,0,0,180,0,-38.5);this.kd=new a.Hx;this.kd.parent=this;this.kd.setTransform(569,450,1,1,0,0,180,0,-38.5);this.hd=new a.Hx;this.hd.parent=this;this.hd.setTransform(437,494.5,1,1,0,0,0,0,-38.5);this.ld=new a.Hx;this.ld.parent=this;this.ld.setTransform(485,510.5,1,1,0,0,0,0,-38.5);this.nd=new a.LB;this.nd.parent=this;this.nd.setTransform(509,559,1,1,0,0,0,0,-51);this.od=new a.LB; +this.od.parent=this;this.od.setTransform(535,132,1,1,0,0,0,0,-51);this.rd=new a.Tf;this.rd.parent=this;this.rd.setTransform(430,738,1,1,0,0,0,-3,-19.5);this.vd=new a.Tf;this.vd.parent=this;this.vd.setTransform(517,763,1,1,0,0,0,-3,-19.5);this.wd=new a.bZ;this.wd.parent=this;this.wd.setTransform(608,745,1,1,0,0,0,-1,-14);this.xd=new a.Lf;this.xd.parent=this;this.xd.setTransform(417,698,1,1,0,0,0,0,-61.5);this.Gd=new a.Lw;this.Gd.parent=this;this.Gd.setTransform(373,640,1,1,0,0,0,0,-70);this.Hd=new a.Mt; +this.Hd.parent=this;this.Hd.setTransform(383.5,501.5,1,1,0,0,180,0,-90.5);this.Fd=new a.Fp;this.Fd.parent=this;this.Fd.setTransform(384,455,1,1,0,0,180,4,-50);this.Jd=new a.Lw;this.Jd.parent=this;this.Jd.setTransform(378,335,1,1,0,0,0,0,-70);this.Kd=new a.Tf;this.Kd.parent=this;this.Kd.setTransform(388,311,1,1,0,0,180,-3,-19.5);this.Id=new a.Wf;this.Id.parent=this;this.Id.setTransform(293,249.95,1,1,0,0,0,-.5,-34.6);this.Ld=new a.Lf;this.Ld.parent=this;this.Ld.setTransform(527,389,1,1,0,0,0,0,-61.5); +this.Md=new a.Wf;this.Md.parent=this;this.Md.setTransform(426,411.95,1,1,0,0,0,-.5,-34.6);this.Nd=new a.Mt;this.Nd.parent=this;this.Nd.setTransform(383,165,1,1,0,0,0,0,-90.5);this.Od=new a.Lf;this.Od.parent=this;this.Od.setTransform(563,109,1,1,0,0,180,0,-61.5);this.Pd=new a.Fp;this.Pd.parent=this;this.Pd.setTransform(621.45,75.2,1,1,0,0,180,-.5,-50);this.Qd=new a.Tf;this.Qd.parent=this;this.Qd.setTransform(871,752,1,1,0,0,0,-3,-19.5);this.Rd=new a.Tf;this.Rd.parent=this;this.Rd.setTransform(746.15, +740.4,1,1,0,0,0,-3,-19.5);this.Td=new a.Fp;this.Td.parent=this;this.Td.setTransform(685.25,723.3,1,1,0,0,180,4,-50);this.Ud=new a.Wf;this.Ud.parent=this;this.Ud.setTransform(819.8,740.5,1,1,0,0,0,-.5,-34.6);this.Vd=new a.Fp;this.Vd.parent=this;this.Vd.setTransform(931.65,726.7,1,1,0,0,0,4,-50);this.he=new a.LB;this.he.parent=this;this.he.setTransform(880,89.25,1,1,0,0,180,0,-51);this.qe=new a.LB;this.qe.parent=this;this.qe.setTransform(672,89.25,1,1,0,0,0,0,-51);this.re=new a.LB;this.re.parent=this; +this.re.setTransform(877.1,725.05,1,1,0,0,180,0,-51);this.te=new a.EZ;this.te.parent=this;this.te.setTransform(905,548.4,1,1,0,0,180,0,-61.5);this.ue=new a.Lf;this.ue.parent=this;this.ue.setTransform(896.35,497.4,1,1,0,0,180,0,-61.5);this.we=new a.Fp;this.we.parent=this;this.we.setTransform(920,517);this.ze=new a.EZ;this.ze.parent=this;this.ze.setTransform(674.1,549.4,1,1,0,0,0,0,-61.5);this.Ge=new a.Lf;this.Ge.parent=this;this.Ge.setTransform(684.75,498.4,1,1,0,0,0,0,-61.5);this.He=new a.Fp;this.He.parent= +this;this.He.setTransform(663,422,1,1,0,0,180,4,-50);this.Ie=new a.Mt;this.Ie.parent=this;this.Ie.setTransform(677.55,269.05,1,1,0,0,0,0,-90.5);this.Ae=new a.Wf;this.Ae.parent=this;this.Ae.setTransform(610.75,276.9,1,1,0,0,0,-.5,-34.6);this.Be=new a.Mka;this.Be.parent=this;this.Be.setTransform(600,174,1,1,0,0,0,0,-64);this.Ce=new a.Mt;this.Ce.parent=this;this.Ce.setTransform(920.4,319,1,1,0,0,180,0,-90.5);this.De=new a.vra;this.De.parent=this;this.De.setTransform(571.45,567.2,1,1,0,0,0,-.5,-34.6); +this.Ee=new a.KEa;this.Ee.parent=this;this.Ee.setTransform(535,280.3,1,1,0,0,0,-.5,-34.6);this.Fe=new a.LJ;this.Fe.parent=this;this.Fe.setTransform(788.3,273.1,1,1,0,0,0,3.5,-64.5);this.Je=new a.TY;this.Je.parent=this;this.Je.setTransform(467,135.95,1,1,0,0,0,-.5,-34.6);this.Ke=new a.Tf;this.Ke.parent=this;this.Ke.setTransform(411,133,1,1,0,0,180,-3,-19.5);this.Le=new a.Fp;this.Le.parent=this;this.Le.setTransform(858,334,1,1,0,0,180,4,-50);this.Me=new a.Fp;this.Me.parent=this;this.Me.setTransform(849, +256,1,1,0,0,180,4,-50);this.Ne=new a.Fp;this.Ne.parent=this;this.Ne.setTransform(730,248,1,1,0,0,0,4,-50);this.Oe=new a.Wf;this.Oe.parent=this;this.Oe.setTransform(494,714.95,1,1,0,0,0,-.5,-34.6);this.Pe=new a.LJ;this.Pe.parent=this;this.Pe.setTransform(326,83,1,1,0,0,0,0,-118.5);this.Qe=new a.Lw;this.Qe.parent=this;this.Qe.setTransform(471,88,1,1,0,0,0,0,-70);this.Re=new a.jg;this.Re.parent=this;this.Re.setTransform(284,36,1,1,0,0,180,15.9,-37.8);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Re}, +{t:this.Qe},{t:this.Pe},{t:this.Oe},{t:this.Ne},{t:this.Me},{t:this.Le},{t:this.Ke},{t:this.Je},{t:this.Fe},{t:this.Ee},{t:this.De},{t:this.Ce},{t:this.Be},{t:this.Ae},{t:this.Ie},{t:this.He},{t:this.Ge},{t:this.ze},{t:this.we},{t:this.ue},{t:this.te},{t:this.re},{t:this.qe},{t:this.he},{t:this.Vd},{t:this.Ud},{t:this.Td},{t:this.Rd},{t:this.Qd},{t:this.Pd},{t:this.Od},{t:this.Nd},{t:this.Md},{t:this.Ld},{t:this.Id},{t:this.Kd},{t:this.Jd},{t:this.Fd},{t:this.Hd},{t:this.Gd},{t:this.xd},{t:this.wd}, +{t:this.vd},{t:this.rd},{t:this.od},{t:this.nd},{t:this.ld},{t:this.hd},{t:this.kd},{t:this.$c},{t:this.jd},{t:this.Xc},{t:this.Uc},{t:this.Rc},{t:this.Oc},{t:this.Nc},{t:this.Ic},{t:this.Lc},{t:this.Kc},{t:this.Jc},{t:this.Gc},{t:this.Fc},{t:this.Ec},{t:this.Dc},{t:this.yc},{t:this.Bc},{t:this.Ac},{t:this.zc},{t:this.xc},{t:this.uc},{t:this.tc},{t:this.nc},{t:this.lc},{t:this.kc},{t:this.jc},{t:this.hc},{t:this.bc},{t:this.ac},{t:this.$b},{t:this.Yb},{t:this.Xb},{t:this.Wb},{t:this.Zb},{t:this.Ub}, +{t:this.Tb},{t:this.Sb},{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb},{t:this.Pb},{t:this.Mb},{t:this.Lb},{t:this.Jb},{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a}]}).wait(1));this.Se=new a.dna;this.Se.parent=this;this.Se.setTransform(795,645,1,1,0,0,0,168,136);this.Te=new a.cna;this.Te.parent=this;this.Te.setTransform(456,645,1,1,0,0,0,168, +136);this.ff=new a.bna;this.ff.parent=this;this.ff.setTransform(795,337,1,1,0,0,0,168,136);this.hf=new a.ana;this.hf.parent=this;this.hf.setTransform(456,337,1,1,0,0,0,168,136);this.jf=new a.$ma;this.jf.parent=this;this.jf.setTransform(795,30,1,1,0,0,0,168,136);this.kf=new a.Zma;this.kf.parent=this;this.kf.setTransform(456,88,1,1,0,0,0,168,136);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.kf},{t:this.jf},{t:this.hf},{t:this.ff},{t:this.Te},{t:this.Se}]}).wait(1))}).prototype=k(a.vma, +new b.Rectangle(217.5,-106,1222.5,935.3),null);(a.uma=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={region:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(1084.85,282.6,1.5746,5.8223,0,0,0,.2,.6);this.g=new a.N;this.g.parent=this;this.g.setTransform(1109.2,221.35,3.6286,7.6358,0,0,0,.1,.6);this.i=new a.N;this.i.parent=this;this.i.setTransform(1064.4,99.8,4.7375,7.6358,0,0,0,.1,.4); +this.o=new a.N;this.o.parent=this;this.o.setTransform(1446.7,5.95,1.1638,11.9912,0,0,0,.1,.5);this.H=new a.N;this.H.parent=this;this.H.setTransform(1100.4,139.8,4.7375,7.6358,0,0,0,.1,.4);this.O=new a.N;this.O.parent=this;this.O.setTransform(1072.9,773.15,14.3835,6.0611,0,0,0,.2,.8);this.$=new a.N;this.$.parent=this;this.$.setTransform(1213.4,754.9,8.9433,8.3347,0,0,0,.1,.6);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(1305.35,727.25,6.931,12.0276,0,0,0,.2,.6);this.ta=new a.N;this.ta.parent= +this;this.ta.setTransform(1345.05,670.7,5.9994,19.5865,0,0,0,.2,.6);this.va=new a.N;this.va.parent=this;this.va.setTransform(1360.55,512.7,3.9748,15.6556,0,0,0,.1,.4);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(1322.85,212.35,8.7373,8.9621,0,0,0,.1,.4);this.ya=new a.N;this.ya.parent=this;this.ya.setTransform(1393.55,72.6,5.7294,3.0527,0,0,0,.1,.4);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(1360.4,328.3,3.9748,15.6556,0,0,0,.1,.4);this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(1322.7, +138.4,8.7373,6.9177,0,0,0,.1,.4);this.Da=new a.N;this.Da.parent=this;this.Da.setTransform(1298.2,-56.65,3.4939,5.3605,0,0,0,.1,.3);this.Ea=new a.N;this.Ea.parent=this;this.Ea.setTransform(1095.4,-10.1,4.7375,10.3962,0,0,0,.1,.3);this.Ga=new a.N;this.Ga.parent=this;this.Ga.setTransform(1047.75,70.15,10.8074,3.3469,0,0,0,.1,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$}, +{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.Ha=new a.uSa;this.Ha.parent=this;this.Ha.setTransform(1232,-135.9,1,1,0,0,0,0,-5);this.Ia=new a.tSa;this.Ia.parent=this;this.Ia.setTransform(1168,-134.9,1,1,0,0,0,0,-5);this.Ja=new a.WM;this.Ja.parent=this;this.Ja.setTransform(1426.85,40.05,1,1,0,0,0,0,.8);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ja},{t:this.Ia},{t:this.Ha}]}).wait(1));this.Ka=new a.xoa;this.Ka.parent=this;this.Ka.setTransform(1086.6, +379.75,.814,1,90,0,0,0,-11.7);this.La=new a.yoa;this.La.parent=this;this.La.setTransform(1063.6,379.75,.814,1,90,0,0,0,-11.7);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.La},{t:this.Ka}]}).wait(1));this.Ma=new a.QSa;this.Ma.parent=this;this.Ma.setTransform(1246.75,322.25,1,1,0,0,180,0,-1.1);this.Na=new a.OSa;this.Na.parent=this;this.Na.setTransform(1280.75,613.25,1,1,0,0,0,0,-.6);this.Oa=new a.Lw;this.Oa.parent=this;this.Oa.setTransform(1282.75,537.05,1,1,0,0,0,0,-70);this.Qa=new a.Lf; +this.Qa.parent=this;this.Qa.setTransform(1323.4,442.4,1,1,0,0,0,0,-61.5);this.Ua=new a.jg;this.Ua.parent=this;this.Ua.setTransform(1324.05,398,1,1,0,0,180,-.1,.5);this.Va=new a.lB;this.Va.parent=this;this.Va.setTransform(1199.75,308.55,1,1,0,0,0,0,-8.5);this.Wa=new a.lB;this.Wa.parent=this;this.Wa.setTransform(1195.75,187.4,1,1,0,0,180,0,-8.5);this.Xa=new a.uAa;this.Xa.parent=this;this.Xa.setTransform(1283.2,298.25,1,1,0,0,180,-.1,.5);this.Ya=new a.Wf;this.Ya.parent=this;this.Ya.setTransform(1060.1, +750,1,1,0,0,0,-.5,-34.6);this.Za=new a.Lw;this.Za.parent=this;this.Za.setTransform(1128.4,688.95,1,1,0,0,0,0,-70);this.$a=new a.lB;this.$a.parent=this;this.$a.setTransform(1192.75,242.95,1,1,0,0,180,0,-8.5);this.ab=new a.bTa;this.ab.parent=this;this.ab.setTransform(1246.75,479.95,1,1,0,0,180,-.1,-1.2);this.hb=new a.i4;this.hb.parent=this;this.hb.setTransform(1039.8,655.6,1,1,0,0,0,0,-.6);this.mb=new a.NSa;this.mb.parent=this;this.mb.setTransform(1153.1,322.25,1,1,0,0,0,0,-1.1);this.nb=new a.uTa;this.nb.parent= +this;this.nb.setTransform(1228.9,155.95,1,1,0,0,0,0,-.6);this.rb=new a.aM;this.rb.parent=this;this.rb.setTransform(1269.5,218,1,1,0,0,180);this.tb=new a.lB;this.tb.parent=this;this.tb.setTransform(1198.8,-46.35,1,1,0,0,0,0,-8.5);this.ub=new a.XX;this.ub.parent=this;this.ub.setTransform(1119.75,507.85,1,1,0,0,0,0,-8.5);this.wb=new a.XX;this.wb.parent=this;this.wb.setTransform(1159.75,-96.8,1,1,0,0,0,0,-8.5);this.yb=new a.XX;this.yb.parent=this;this.yb.setTransform(1087.75,507.85,1,1,0,0,0,0,-8.5); +this.Ab=new a.lB;this.Ab.parent=this;this.Ab.setTransform(1199.75,134.6,1,1,0,0,0,0,-8.5);this.Cb=new a.lB;this.Cb.parent=this;this.Cb.setTransform(1192.75,74.8,1,1,0,0,180,0,-8.5);this.Db=new a.lB;this.Db.parent=this;this.Db.setTransform(1201.75,25,1,1,0,0,0,0,-8.5);this.Eb=new a.XX;this.Eb.parent=this;this.Eb.setTransform(1239.75,-96.8,1,1,0,0,0,0,-8.5);this.Fb=new a.q1;this.Fb.parent=this;this.Fb.setTransform(1067.6,301.35,1,1,0,0,0,-.5,-34.6);this.Gb=new a.df;this.Gb.parent=this;this.Gb.setTransform(1152.2, +395.05,1,1,0,0,0,0,-14);this.Hb=new a.df;this.Hb.parent=this;this.Hb.setTransform(1246.7,395.15,1,1,0,0,0,0,-14);this.Jb=new a.LB;this.Jb.parent=this;this.Jb.setTransform(1137,507,1,1,0,0,180,0,-51);this.Lb=new a.EZ;this.Lb.parent=this;this.Lb.setTransform(1119.4,245.25,1,1,0,0,0,0,-61.5);this.Mb=new a.LB;this.Mb.parent=this;this.Mb.setTransform(1080.4,169.95,1,1,0,0,0,0,-51);this.Pb=new a.mUa;this.Pb.parent=this;this.Pb.setTransform(1071.75,138.4,1,1,0,0,0,15.9,-37.8);this.Nb=new a.LB;this.Nb.parent= +this;this.Nb.setTransform(1042.4,79.95,1,1,0,0,0,0,-51);this.Qb=new a.mHa;this.Qb.parent=this;this.Qb.setTransform(1004.5,89.5,1,1,0,0,180,-1,-14);this.Ob=new a.E1;this.Ob.parent=this;this.Ob.setTransform(1138,156,1,1,0,0,180,-6.5,-22);this.Rb=new a.Fp;this.Rb.parent=this;this.Rb.setTransform(1035,559,1,1,0,0,180);this.Sb=new a.Wf;this.Sb.parent=this;this.Sb.setTransform(1104,463.95,1,1,0,0,0,-.5,-34.6);this.Tb=new a.aM;this.Tb.parent=this;this.Tb.setTransform(1045.5,461,1,1,0,0,180);this.Ub=new a.Tf; +this.Ub.parent=this;this.Ub.setTransform(1152.05,703.05,1,1,0,0,0,-3,-19.5);this.Zb=new a.Wf;this.Zb.parent=this;this.Zb.setTransform(1200.4,669,1,1,0,0,0,-.5,-34.6);this.Wb=new a.Tf;this.Wb.parent=this;this.Wb.setTransform(1336.75,287.7,1,1,0,0,0,-3,-19.5);this.Xb=new a.Tf;this.Xb.parent=this;this.Xb.setTransform(1269.55,110.05,1,1,0,0,180,-3,-19.5);this.Yb=new a.sC;this.Yb.parent=this;this.Yb.setTransform(1326.4,211.2,1,1,0,0,0,-3,-19.5);this.$b=new a.sC;this.$b.parent=this;this.$b.setTransform(1316.4, +167.2,1,1,0,0,0,-3,-19.5);this.ac=new a.aM;this.ac.parent=this;this.ac.setTransform(1341.5,158);this.bc=new a.sC;this.bc.parent=this;this.bc.setTransform(1303.4,132.2,1,1,0,0,0,-3,-19.5);this.hc=new a.sC;this.hc.parent=this;this.hc.setTransform(1322.05,93.2,1,1,0,0,180,-3,-19.5);this.jc=new a.aM;this.jc.parent=this;this.jc.setTransform(1277.5,98);this.kc=new a.E1;this.kc.parent=this;this.kc.setTransform(1268,4,1,1,0,0,0,-6.5,-22);this.lc=new a.b2a;this.lc.parent=this;this.lc.setTransform(1385,-30, +1,1,0,0,180,-1,-14);this.nc=new a.XX;this.nc.parent=this;this.nc.setTransform(1361,-7.5,1,1,0,0,0,0,-8.5);this.tc=new a.p2a;this.tc.parent=this;this.tc.setTransform(1200,374.5,1,1,0,0,0,0,-.5);this.uc=new a.Nda;this.uc.parent=this;this.uc.setTransform(1116.75,84.4,1,1,0,0,0,0,-16.5);this.xc=new a.sC;this.xc.parent=this;this.xc.setTransform(1055.4,52.95,1,1,0,0,0,-3,-19.5);this.zc=new a.jg;this.zc.parent=this;this.zc.setTransform(1124.6,12.9,1,1,0,0,0,15.9,-37.8);this.Ac=new a.lB;this.Ac.parent=this; +this.Ac.setTransform(1194.75,-15.8,1,1,0,0,180,0,-8.5);this.Bc=new a.bZ;this.Bc.parent=this;this.Bc.setTransform(1008,55,1,1,0,0,0,-1,-14);this.yc=new a.sC;this.yc.parent=this;this.yc.setTransform(1051.5,-12.5,1,1,0,0,0,-3,-19.5);this.Dc=new a.bZ;this.Dc.parent=this;this.Dc.setTransform(1008,-20,1,1,0,0,0,-1,-14);this.Ec=new a.KJ;this.Ec.parent=this;this.Ec.setTransform(1083.1,-40.95,1,1,0,0,180,-3.5,-16);this.Fc=new a.Tf;this.Fc.parent=this;this.Fc.setTransform(1029.55,-72.95,1,1,0,0,0,-3,-19.5); +this.Gc=new a.Tf;this.Gc.parent=this;this.Gc.setTransform(998.1,723.05,1,1,0,0,0,-3,-19.5);this.Jc=new a.jg;this.Jc.parent=this;this.Jc.setTransform(1286,-37.75,1,1,0,0,180,-.5,-.1);this.Kc=new a.sC;this.Kc.parent=this;this.Kc.setTransform(1335,-74,1,1,0,0,180,-3,-19.5);this.Lc=new a.sC;this.Lc.parent=this;this.Lc.setTransform(1422,-84,1,1,0,0,180,-3,-19.5);this.Ic=new a.bZ;this.Ic.parent=this;this.Ic.setTransform(1364.2,-71.65,1,1,0,0,180,-1,-14);this.Nc=new a.aM;this.Nc.parent=this;this.Nc.setTransform(1403.5, +-97);this.Oc=new a.sC;this.Oc.parent=this;this.Oc.setTransform(1344,-130,1,1,0,0,180,-3,-19.5);this.Rc=new a.jg;this.Rc.parent=this;this.Rc.setTransform(1130,-76,1,1,0,0,0,15.9,-37.8);this.Uc=new a.q1;this.Uc.parent=this;this.Uc.setTransform(1089.55,-66.65,1,1,0,0,0,-1,-14);this.Xc=new a.sC;this.Xc.parent=this;this.Xc.setTransform(1058,-130,1,1,0,0,0,-3,-19.5);this.jd=new a.aM;this.jd.parent=this;this.jd.setTransform(1103.5,-117);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.jd},{t:this.Xc}, +{t:this.Uc},{t:this.Rc},{t:this.Oc},{t:this.Nc},{t:this.Ic},{t:this.Lc},{t:this.Kc},{t:this.Jc},{t:this.Gc},{t:this.Fc},{t:this.Ec},{t:this.Dc},{t:this.yc},{t:this.Bc},{t:this.Ac},{t:this.zc},{t:this.xc},{t:this.uc},{t:this.tc},{t:this.nc},{t:this.lc},{t:this.kc},{t:this.jc},{t:this.hc},{t:this.bc},{t:this.ac},{t:this.$b},{t:this.Yb},{t:this.Xb},{t:this.Wb},{t:this.Zb},{t:this.Ub},{t:this.Tb},{t:this.Sb},{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb},{t:this.Pb},{t:this.Mb},{t:this.Lb},{t:this.Jb}, +{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma}]}).wait(1));this.$c=new a.ima;this.$c.parent=this;this.$c.setTransform(1392,96,1,1,0,0,0,0,-4);this.timeline.addTween(b.Tween.get(this.$c).wait(1));this.kd=new a.Yma;this.kd.parent= +this;this.kd.setTransform(1202,664,1,1,0,0,0,242,152);this.hd=new a.Xma;this.hd.parent=this;this.hd.setTransform(1202,360,1,1,0,0,0,242,152);this.ld=new a.c3a;this.ld.parent=this;this.ld.setTransform(1202,56,1,1,0,0,0,242,152);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ld},{t:this.hd},{t:this.kd}]}).wait(1))}).prototype=k(a.uma,new b.Rectangle(240,-186,1215.9,1002.9),null);(a.Hla=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={region:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); +this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(441.5,54.4,1.3103,2.7605,0,0,0,1.6,-1);this.g=new a.N;this.g.parent=this;this.g.setTransform(521.25,-16.15,1.0061,1.9924,0,0,0,1.1,-.1);this.i=new a.N;this.i.parent=this;this.i.setTransform(457.25,-16.15,1.0061,1.9924,0,0,0,1.1,-.1);this.o=new a.N;this.o.parent=this;this.o.setTransform(441.25,-32.15,1.0061,1.9924,0,0,0,1.1,-.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(491.15,-61.8,3.0008,2.245,0,0,0,1,.1);this.O= +new a.N;this.O.parent=this;this.O.setTransform(493.1,-39.75,5.0069,2.9933,0,0,0,1,.1);this.$=new a.N;this.$.parent=this;this.$.setTransform(393.85,-3.1,1.0104,1.8159,0,0,0,1.5,-1);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(818.85,312,6.1213,3,0,0,0,.7,0);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(659.05,185.9,1.99,2.9958,0,0,0,1.5,.6);this.va=new a.N;this.va.parent=this;this.va.setTransform(675.05,201.9,1.99,2.9958,0,0,0,1.5,.6);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(700.4, +194.85,3.0038,5.9917,0,0,0,1.4,.5);this.ya=new a.N;this.ya.parent=this;this.ya.setTransform(652.4,154.35,3.0038,4.9801,0,0,0,1.4,.5);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(645.2,65,4.0051,4.0536,0,0,0,1.3,.4);this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(638.05,49,4.9868,4.0536,0,0,0,1.2,.4);this.Da=new a.N;this.Da.parent=this;this.Da.setTransform(802.25,8.6,8.9935,3.0308,0,0,0,1.2,.4);this.Ea=new a.N;this.Ea.parent=this;this.Ea.setTransform(747.95,72,6.5581,3.0308,0, +0,0,1.2,.2);this.Ga=new a.N;this.Ga.parent=this;this.Ga.setTransform(852.5,72,1.2402,3.0308,0,0,0,1.2,.2);this.Ha=new a.N;this.Ha.parent=this;this.Ha.setTransform(636.95,-154.3,4.9069,2.9342,0,0,0,.9,-.7);this.Ia=new a.N;this.Ia.parent=this;this.Ia.setTransform(741.5,-112.1,3.975,1.9919,0,0,0,1.4,-.1);this.Ja=new a.N;this.Ja.parent=this;this.Ja.setTransform(326.05,179.2,3.9826,7.6306,0,0,0,1.5,-.9);this.Ka=new a.N;this.Ka.parent=this;this.Ka.setTransform(325.95,76.3,3.9826,6.1817,0,0,0,1.5,-1);this.La= +new a.N;this.La.parent=this;this.La.setTransform(714,312,9.5552,3,0,0,0,.7,0);this.Ma=new a.N;this.Ma.parent=this;this.Ma.setTransform(565.7,312,9.5552,3,0,0,0,.7,0);this.Na=new a.N;this.Na.parent=this;this.Na.setTransform(520.05,-117.9,.9473,2.7019,0,0,0,.7,.1);this.Oa=new a.N;this.Oa.parent=this;this.Oa.setTransform(680.1,-88.9,.9812,.9875);this.Qa=new a.N;this.Qa.parent=this;this.Qa.setTransform(724,-104,3.975,.9929,0,0,0,1.3,.1);this.Ua=new a.N;this.Ua.parent=this;this.Ua.setTransform(727.6,-71.8, +5.9734,2.9974,0,0,0,1.3,.1);this.Va=new a.N;this.Va.parent=this;this.Va.setTransform(789.1,24,11.0296,3.0308,0,0,0,1.2,.2);this.Wa=new a.N;this.Wa.parent=this;this.Wa.setTransform(631.35,32.6,5.9992,4.0536,0,0,0,1.2,.3);this.Xa=new a.N;this.Xa.parent=this;this.Xa.setTransform(602.5,-48,2.9878,5.9867,0,0,0,.8,.2);this.Ya=new a.N;this.Ya.parent=this;this.Ya.setTransform(580.9,1.2,5.9756,5.9867,0,0,0,.8,.2);this.Za=new a.N;this.Za.parent=this;this.Za.setTransform(335.1,-45.75,4.9588,6.1817,0,0,0,1.5, +-1);this.$a=new a.N;this.$a.parent=this;this.$a.setTransform(396.8,-53.25,5.453,5.7901,0,0,0,1.5,-1);this.ab=new a.N;this.ab.parent=this;this.ab.setTransform(448.75,-109.45,7.2414,2.0007,0,0,0,1.4,-.8);this.hb=new a.N;this.hb.parent=this;this.hb.setTransform(475.6,-129.4,10.1635,2.0007,0,0,0,1.4,-.8);this.mb=new a.N;this.mb.parent=this;this.mb.setTransform(504.8,-136.65,3.122,1.0058,0,0,0,1.2,-.7);this.nb=new a.N;this.nb.parent=this;this.nb.setTransform(555.3,-158.65,3.0635,3.4986,0,0,0,1.2,-.8); +this.rb=new a.N;this.rb.parent=this;this.rb.setTransform(569.1,-147.3,1.0103,5.9235,0,0,0,1,-.7);this.tb=new a.N;this.tb.parent=this;this.tb.setTransform(626.8,-248.1,2.9558,.9382,0,0,0,1,-.7);this.ub=new a.N;this.ub.parent=this;this.ub.setTransform(601,-169,3.091,2.9342,0,0,0,.9,-.6);this.wb=new a.N;this.wb.parent=this;this.wb.setTransform(603.2,-217.7,2.9558,2.9342,0,0,0,1,-.7);this.yb=new a.N;this.yb.parent=this;this.yb.setTransform(793.4,-201.7,9.9634,2.9342,0,0,0,.9,-.7);this.Ab=new a.N;this.Ab.parent= +this;this.Ab.setTransform(779.7,-186.25,12.0115,2.9342,0,0,0,1,-.6);this.Cb=new a.N;this.Cb.parent=this;this.Cb.setTransform(723.45,-169.55,3.9727,2.9342,0,0,0,1,-.7);this.Db=new a.N;this.Db.parent=this;this.Db.setTransform(762.45,-217.25,14.1371,2.9342,0,0,0,.8,-.6);this.Eb=new a.N;this.Eb.parent=this;this.Eb.setTransform(622.35,295.8,6.6868,3,0,0,0,.6,-.1);this.Fb=new a.N;this.Fb.parent=this;this.Fb.setTransform(553.5,263.8,2.9433,3,0,0,0,.6,-.1);this.Gb=new a.N;this.Gb.parent=this;this.Gb.setTransform(537.5, +247.8,2.9433,3,0,0,0,.6,-.1);this.Hb=new a.N;this.Hb.parent=this;this.Hb.setTransform(521.2,232.2,2.9433,3,0,0,0,.6,-.1);this.Jb=new a.N;this.Jb.parent=this;this.Jb.setTransform(504.5,215.5,2.9433,3,0,0,0,.7,-.1);this.Lb=new a.N;this.Lb.parent=this;this.Lb.setTransform(472.5,199.85,2.9433,3,0,0,0,.7,-.1);this.Mb=new a.N;this.Mb.parent=this;this.Mb.setTransform(457.5,167.5,2.9433,3,0,0,0,.7,-.1);this.Pb=new a.N;this.Pb.parent=this;this.Pb.setTransform(425.5,151.5,2.9433,3,0,0,0,.7,-.1);this.Nb=new a.N; +this.Nb.parent=this;this.Nb.setTransform(408.5,119.5,2.9433,3,0,0,0,.7,-.1);this.Qb=new a.N;this.Qb.parent=this;this.Qb.setTransform(361.8,96.05,2.9983,3.9469,0,0,0,.7,.1);this.Ob=new a.N;this.Ob.parent=this;this.Ob.setTransform(419.45,312,9.5552,3,0,0,0,.7,0);this.Rb=new a.N;this.Rb.parent=this;this.Rb.setTransform(352,264,7.3214,3,0,0,0,.7,0);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb},{t:this.Pb},{t:this.Mb},{t:this.Lb},{t:this.Jb},{t:this.Hb}, +{t:this.Gb},{t:this.Fb},{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$}, +{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.Sb=new a.GSa;this.Sb.parent=this;this.Sb.setTransform(604.95,237.55,1,1,0,0,0,-2.5,-8.7);this.Tb=new a.oZa;this.Tb.parent=this;this.Tb.setTransform(816.85,167.65,1,1,0,0,0,0,-21.4);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Tb},{t:this.Sb}]}).wait(1));this.Ub=new a.hpa;this.Ub.parent=this;this.Ub.setTransform(439,38,1,1,0,0,0,0,-10);this.Zb=new a.vx;this.Zb.parent=this;this.Zb.setTransform(380, +172.95,1,1,0,0,0,.5,0);this.Wb=new a.vx;this.Wb.parent=this;this.Wb.setTransform(412,-55.05,1,1,0,0,0,.5,0);this.Xb=new a.vx;this.Xb.parent=this;this.Xb.setTransform(352,-61.05,1,1,0,0,0,.5,0);this.Yb=new a.vx;this.Yb.parent=this;this.Yb.setTransform(322,148.95,1,1,0,0,0,.5,0);this.$b=new a.vx;this.$b.parent=this;this.$b.setTransform(353,108.95,1,1,0,0,0,.5,0);this.ac=new a.vx;this.ac.parent=this;this.ac.setTransform(599,195,1,1,0,0,0,.5,0);this.bc=new a.vx;this.bc.parent=this;this.bc.setTransform(303, +-1.05,1,1,0,0,0,.5,0);this.hc=new a.vx;this.hc.parent=this;this.hc.setTransform(353,-11.05,1,1,0,0,0,.5,0);this.jc=new a.vx;this.jc.parent=this;this.jc.setTransform(313,88.95,1,1,0,0,0,.5,0);this.kc=new a.kB;this.kc.parent=this;this.kc.setTransform(779.5,82,1,1,0,0,0,0,-16.5);this.lc=new a.kB;this.lc.parent=this;this.lc.setTransform(853.5,82,1,1,0,0,0,0,-16.5);this.nc=new a.kB;this.nc.parent=this;this.nc.setTransform(736,82,1,1,0,0,0,0,-16.5);this.tc=new a.WK;this.tc.parent=this;this.tc.setTransform(817, +221.9,1,1,0,0,0,0,-29.9);this.uc=new a.kB;this.uc.parent=this;this.uc.setTransform(816.5,122,1,1,0,0,0,0,-16.5);this.xc=new a.kB;this.xc.parent=this;this.xc.setTransform(773.5,232,1,1,0,0,0,0,-16.5);this.zc=new a.kB;this.zc.parent=this;this.zc.setTransform(859.5,232,1,1,0,0,0,0,-16.5);this.Ac=new a.kB;this.Ac.parent=this;this.Ac.setTransform(730,232,1,1,0,0,0,0,-16.5);this.Bc=new a.VYa;this.Bc.parent=this;this.Bc.setTransform(817.1,-79.85,1,1,0,0,0,.1,-7.4);this.yc=new a.b1a;this.yc.parent=this;this.yc.setTransform(487, +-9.5,1,1,0,0,0,0,-.5);this.Dc=new a.kB;this.Dc.parent=this;this.Dc.setTransform(773.5,122,1,1,0,0,0,0,-16.5);this.Ec=new a.kB;this.Ec.parent=this;this.Ec.setTransform(859.5,122,1,1,0,0,0,0,-16.5);this.Fc=new a.kB;this.Fc.parent=this;this.Fc.setTransform(730,122,1,1,0,0,0,0,-16.5);this.Gc=new a.U0a;this.Gc.parent=this;this.Gc.setTransform(817,23,1,1,0,0,0,0,-37.9);this.Jc=new a.vx;this.Jc.parent=this;this.Jc.setTransform(550,128,1,1,0,0,0,.5,0);this.Kc=new a.vx;this.Kc.parent=this;this.Kc.setTransform(550, +56);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Kc},{t:this.Jc},{t:this.Gc},{t:this.Fc},{t:this.Ec},{t:this.Dc},{t:this.yc},{t:this.Bc},{t:this.Ac},{t:this.zc},{t:this.xc},{t:this.uc},{t:this.tc},{t:this.nc},{t:this.lc},{t:this.kc},{t:this.jc},{t:this.hc},{t:this.bc},{t:this.ac},{t:this.$b},{t:this.Yb},{t:this.Xb},{t:this.Wb},{t:this.Zb},{t:this.Ub}]}).wait(1));this.Lc=new a.Wma;this.Lc.parent=this;this.Lc.setTransform(744,171,1,1,0,0,0,144,138);this.Ic=new a.Vma;this.Ic.parent=this; +this.Ic.setTransform(480,171,1,1,0,0,0,144,138);this.Nc=new a.Uma;this.Nc.parent=this;this.Nc.setTransform(744,-105.5,1,1,0,0,0,144,138.5);this.Oc=new a.Tma;this.Oc.parent=this;this.Oc.setTransform(480,-9.5,1,1,0,0,0,144,138.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Oc},{t:this.Nc},{t:this.Ic},{t:this.Lc}]}).wait(1));this.Rc=new a.Bsa;this.Rc.parent=this;this.Rc.setTransform(681,208,1,1,0,0,0,24,24);this.timeline.addTween(b.Tween.get(this.Rc).wait(1))}).prototype=k(a.Hla,new b.Rectangle(95.4, +-254.9,1440.6,591),null);(a.bT=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={region:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(621,228.1,1.875,2.5117);this.g=new a.N;this.g.parent=this;this.g.setTransform(595,228.05,1.875,2.4965);this.i=new a.N;this.i.parent=this;this.i.setTransform(641,228.05,1.875,2.4965);this.o=new a.N;this.o.parent=this;this.o.setTransform(643.8,-5.35,5.4017, +4.1945,0,0,0,.6,.4);this.H=new a.N;this.H.parent=this;this.H.setTransform(593.25,13.55,5.4017,6.5476,0,0,0,.5,.4);this.O=new a.N;this.O.parent=this;this.O.setTransform(342.75,14.3,10.9518,6.9506,0,0,0,.8,.1);this.$=new a.N;this.$.parent=this;this.$.setTransform(205.55,39.1,3.6429,1,0,0,0,.1,.1);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(631.85,416.2,3,1.9274,0,0,0,-.1,.4);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(503.7,408.35,3,2.9231,0,0,0,-.1,.3);this.va=new a.N;this.va.parent= +this;this.va.setTransform(540.3,424.1,26.6208,1.025,0,0,0,.8,-.1);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(728,407.2,1,3.0469,0,0,0,0,.2);this.ya=new a.N;this.ya.parent=this;this.ya.setTransform(709.4,376,3.875,1,0,0,0,.1,0);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(680,340.1,1,5.4844);this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(704,295.5,4,1);this.Da=new a.N;this.Da.parent=this;this.Da.setTransform(730.45,320.15);this.Ea=new a.N;this.Ea.parent=this;this.Ea.setTransform(728, +265.5,1,3.6875);this.Ga=new a.N;this.Ga.parent=this;this.Ga.setTransform(764.5,232,5.5625,1);this.Ha=new a.N;this.Ha.parent=this;this.Ha.setTransform(808,265,1,5.125);this.Ia=new a.N;this.Ia.parent=this;this.Ia.setTransform(917.35,295.5,12.25,1,0,0,0,.6,0);this.Ja=new a.N;this.Ja.parent=this;this.Ja.setTransform(985,218.55,1,9.616,0,0,0,0,.1);this.Ka=new a.N;this.Ka.parent=this;this.Ka.setTransform(915.05,166.1,12.8881,1,0,0,0,.2,.1);this.La=new a.N;this.La.parent=this;this.La.setTransform(808,170.4, +1,3.875,0,0,0,0,.1);this.Ma=new a.N;this.Ma.parent=this;this.Ma.setTransform(771.55,200,5.625,1,0,0,0,.1,0);this.Na=new a.N;this.Na.parent=this;this.Na.setTransform(728,126.55,1,10.429,0,0,0,0,.2);this.Oa=new a.N;this.Oa.parent=this;this.Oa.setTransform(712.25,40,2.9688,1);this.Qa=new a.N;this.Qa.parent=this;this.Qa.setTransform(680,22.85,1,3.2035,0,0,0,0,.1);this.Ua=new a.N;this.Ua.parent=this;this.Ua.setTransform(535.25,38.85,5.4017,9.6112,0,0,0,.5,.4);this.Va=new a.N;this.Va.parent=this;this.Va.setTransform(344.1, +20.6,1,3.0393,0,0,0,.1,.1);this.Wa=new a.N;this.Wa.parent=this;this.Wa.setTransform(232,22,1,3.0085);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1)); +this.Xa=new a.VGa;this.Xa.parent=this;this.Xa.setTransform(401,240.95,1,1,0,0,0,0,-13);this.Ya=new a.SGa;this.Ya.parent=this;this.Ya.setTransform(508,253.95);this.Za=new a.TGa;this.Za.parent=this;this.Za.setTransform(508,181.95,1,1,0,0,0,0,-13);this.$a=new a.UGa;this.$a.parent=this;this.$a.setTransform(401,181.95,1,1,0,0,0,0,-13);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa}]}).wait(1));this.ab=new a.wX;this.ab.parent=this;this.ab.setTransform(401, +240.95,1,1,0,0,0,0,-13);this.hb=new a.wX;this.hb.parent=this;this.hb.setTransform(508,181.95,1,1,0,0,0,0,-13);this.mb=new a.wX;this.mb.parent=this;this.mb.setTransform(401,181.95,1,1,0,0,0,0,-13);this.nb=new a.wX;this.nb.parent=this;this.nb.setTransform(508,240.95,1,1,0,0,0,0,-13);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab}]}).wait(1));this.rb=new a.df;this.rb.parent=this;this.rb.setTransform(66.85,528.95);this.tb=new a.df;this.tb.parent=this; +this.tb.setTransform(138.85,528.95);this.ub=new a.df;this.ub.parent=this;this.ub.setTransform(430,.95,1,1,0,0,0,0,-13);this.wb=new a.df;this.wb.parent=this;this.wb.setTransform(480,.95,1,1,0,0,0,0,-13);this.yb=new a.df;this.yb.parent=this;this.yb.setTransform(430,50.95,1,1,0,0,0,0,-13);this.Ab=new a.df;this.Ab.parent=this;this.Ab.setTransform(480,50.95,1,1,0,0,0,0,-13);this.Cb=new a.df;this.Cb.parent=this;this.Cb.setTransform(430,100.95,1,1,0,0,0,0,-13);this.Db=new a.df;this.Db.parent=this;this.Db.setTransform(480, +100.95,1,1,0,0,0,0,-13);this.Eb=new a.df;this.Eb.parent=this;this.Eb.setTransform(53.65,313.95);this.Fb=new a.df;this.Fb.parent=this;this.Fb.setTransform(155.65,313.95);this.Gb=new a.df;this.Gb.parent=this;this.Gb.setTransform(53.65,380.95);this.Hb=new a.df;this.Hb.parent=this;this.Hb.setTransform(155.65,380.95);this.Jb=new a.S8a;this.Jb.parent=this;this.Jb.setTransform(401,253.95);this.Lb=new a.P8a;this.Lb.parent=this;this.Lb.setTransform(508,240.95,1,1,0,0,0,0,-13);this.Mb=new a.Q8a;this.Mb.parent= +this;this.Mb.setTransform(508,181.95,1,1,0,0,0,0,-13);this.Pb=new a.R8a;this.Pb.parent=this;this.Pb.setTransform(401,181.95,1,1,0,0,0,0,-13);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Pb},{t:this.Mb},{t:this.Lb},{t:this.Jb},{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb}]}).wait(1));this.Nb=new a.HFa;this.Nb.parent=this;this.Nb.setTransform(455.85,269.65,1,1,0,0,0,0,-18.4);this.Qb=new a.IFa; +this.Qb.parent=this;this.Qb.setTransform(709.85,389.65,1,1,0,0,0,0,-18.4);this.Ob=new a.zUa;this.Ob.parent=this;this.Ob.setTransform(299,75,1,1,0,0,0,0,-.5);this.Rb=new a.FZa;this.Rb.parent=this;this.Rb.setTransform(735.95,207.95,1,1,0,0,180,-.1,-.1);this.Sb=new a.GZa;this.Sb.parent=this;this.Sb.setTransform(771,232,1,1,0,0,0,0,-24);this.Tb=new a.O8a;this.Tb.parent=this;this.Tb.setTransform(910,167.7);this.Ub=new a.MEa;this.Ub.parent=this;this.Ub.setTransform(457.15,250.95);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ub}, +{t:this.Tb},{t:this.Sb},{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb}]}).wait(1));this.Zb=new a.xp;this.Zb.parent=this;this.Zb.setTransform(995,241,1,1,0,0,0,0,-33);this.Wb=new a.xp;this.Wb.parent=this;this.Wb.setTransform(997,224,1,1,0,0,180,0,-33);this.Xb=new a.xp;this.Xb.parent=this;this.Xb.setTransform(1E3,191,1,1,0,0,0,0,-33);this.Yb=new a.xp;this.Yb.parent=this;this.Yb.setTransform(999,153,1,1,0,0,180,0,-33);this.$b=new a.xp;this.$b.parent=this;this.$b.setTransform(770,134,1,1,0,0,180,0,-33); +this.ac=new a.xp;this.ac.parent=this;this.ac.setTransform(780,264,1,1,0,0,180,0,-33);this.bc=new a.hT;this.bc.parent=this;this.bc.setTransform(317,74,1,1,0,0,0,0,-8);this.hc=new a.Mx;this.hc.parent=this;this.hc.setTransform(592,72,1,1,0,0,0,0,-12);this.jc=new a.hT;this.jc.parent=this;this.jc.setTransform(397.5,355.95,1,1,0,0,0,0,-8);this.kc=new a.hT;this.kc.parent=this;this.kc.setTransform(517.5,355.95,1,1,0,0,0,0,-8);this.lc=new a.Mx;this.lc.parent=this;this.lc.setTransform(607.65,331.85,1,1,0,0, +0,0,-12);this.nc=new a.DC;this.nc.parent=this;this.nc.setTransform(700,192.5,1,1,0,0,0,0,-3.5);this.tc=new a.cja;this.tc.parent=this;this.tc.setTransform(688,97.25,1,1,0,0,0,0,-.6);this.uc=new a.cja;this.uc.parent=this;this.uc.setTransform(637,97.25,1,1,0,0,0,0,-.6);this.xc=new a.xp;this.xc.parent=this;this.xc.setTransform(251.5,418.65,1,1,0,0,180,0,-33);this.zc=new a.xp;this.zc.parent=this;this.zc.setTransform(312.5,356,1,1,0,0,0,0,-33);this.Ac=new a.xp;this.Ac.parent=this;this.Ac.setTransform(355, +411.95,1,1,0,0,0,0,-33);this.Bc=new a.xp;this.Bc.parent=this;this.Bc.setTransform(637,411.95,1,1,0,0,180,0,-33);this.yc=new a.Us;this.yc.parent=this;this.yc.setTransform(700,308.65,1,1,0,0,0,-1,-58);this.Dc=new a.Fm;this.Dc.parent=this;this.Dc.setTransform(494.35,420.95,1,1,0,0,0,0,-38);this.Ec=new a.Fm;this.Ec.parent=this;this.Ec.setTransform(580.35,421.95,1,1,0,0,0,0,-38);this.Fc=new a.Fm;this.Fc.parent=this;this.Fc.setTransform(414,421.95,1,1,0,0,0,0,-38);this.Gc=new a.Fm;this.Gc.parent=this;this.Gc.setTransform(960, +295.95,1,1,0,0,0,0,-38);this.Jc=new a.Fm;this.Jc.parent=this;this.Jc.setTransform(870.35,295.95,1,1,0,0,0,0,-38);this.Kc=new a.a$a;this.Kc.parent=this;this.Kc.setTransform(661.25,33.35,1,1,0,0,0,0,-45.5);this.Lc=new a.Us;this.Lc.parent=this;this.Lc.setTransform(704,121.95,1,1,0,0,0,-1,-58);this.Ic=new a.xp;this.Ic.parent=this;this.Ic.setTransform(679,293.95,1,1,0,0,0,0,-33);this.Nc=new a.xp;this.Nc.parent=this;this.Nc.setTransform(591.95,342.2,1,1,0,0,180,0,-33);this.Oc=new a.WK;this.Oc.parent=this; +this.Oc.setTransform(489.3,368.9,1,1,0,0,0,33,24.5);this.Rc=new a.I0;this.Rc.parent=this;this.Rc.setTransform(354,311.95,1,1,0,0,0,-.5,-36);this.Uc=new a.B2;this.Uc.parent=this;this.Uc.setTransform(550.25,296.95,1,1,0,0,0,-.5,-36);this.Xc=new a.Jqa;this.Xc.parent=this;this.Xc.setTransform(618,215.95,1,1,0,0,0,-.5,-36);this.jd=new a.I0;this.jd.parent=this;this.jd.setTransform(342,122.45,1,1,0,0,0,-.5,-36);this.$c=new a.Fm;this.$c.parent=this;this.$c.setTransform(623.5,192,1,1,0,0,0,0,-38);this.kd= +new a.I0;this.kd.parent=this;this.kd.setTransform(570,122.45,1,1,0,0,0,-.5,-36);this.hd=new a.Cka;this.hd.parent=this;this.hd.setTransform(909,216,1,1,0,0,0,0,-4.5);this.ld=new a.ila;this.ld.parent=this;this.ld.setTransform(456,216,1,1,0,0,0,0,-4.5);this.nd=new a.Fm;this.nd.parent=this;this.nd.setTransform(532.35,65.95,1,1,0,0,0,0,-38);this.od=new a.Fm;this.od.parent=this;this.od.setTransform(379,67.95,1,1,0,0,180,0,-38);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.od},{t:this.nd},{t:this.ld}, +{t:this.hd},{t:this.kd},{t:this.$c},{t:this.jd},{t:this.Xc},{t:this.Uc},{t:this.Rc},{t:this.Oc},{t:this.Nc},{t:this.Ic},{t:this.Lc},{t:this.Kc},{t:this.Jc},{t:this.Gc},{t:this.Fc},{t:this.Ec},{t:this.Dc},{t:this.yc},{t:this.Bc},{t:this.Ac},{t:this.zc},{t:this.xc},{t:this.uc},{t:this.tc},{t:this.nc},{t:this.lc},{t:this.kc},{t:this.jc},{t:this.hc},{t:this.bc},{t:this.ac},{t:this.$b},{t:this.Yb},{t:this.Xb},{t:this.Wb},{t:this.Zb}]}).wait(1));this.rd=new a.b3a;this.rd.parent=this;this.rd.setTransform(896, +348,1,1,0,0,0,217,149);this.vd=new a.a3a;this.vd.parent=this;this.vd.setTransform(513.5,348,1,1,0,0,0,216.5,149);this.wd=new a.Nma;this.wd.parent=this;this.wd.setTransform(896,187,1,1,0,0,0,217,149);this.xd=new a.Mma;this.xd.parent=this;this.xd.setTransform(513.5,98,1,1,0,0,0,216.5,149);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.xd},{t:this.wd},{t:this.vd},{t:this.rd}]}).wait(1))}).prototype=k(a.bT,new b.Rectangle(-241,-288,1345,884),null);(a.qka=function(d,e,f){this.initialize(d,e, +f,{});this.u=function(){this.T={region:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(570.25,-270.65,5.4357,10.3514,0,0,0,.4,.2);this.g=new a.N;this.g.parent=this;this.g.setTransform(340.25,-270.65,5.4357,10.3514,0,0,0,.4,.2);this.i=new a.N;this.i.parent=this;this.i.setTransform(462.45,-366.15,15.0331,2.6635,0,0,0,.4,.2);this.o=new a.N;this.o.parent=this;this.o.setTransform(370.25,-155.45,5.4357,4.1616, +0,0,0,.4,.3);this.H=new a.N;this.H.parent=this;this.H.setTransform(545.25,-155.45,5.4357,4.1616,0,0,0,.4,.3);this.O=new a.N;this.O.parent=this;this.O.setTransform(380.25,-76.5,5.4357,8.6094,0,0,0,.4,.3);this.$=new a.N;this.$.parent=this;this.$.setTransform(535.25,-76.5,5.4357,8.6094,0,0,0,.4,.3);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(380.25,-18.3,5.4357,2.3675,0,0,0,.4,.3);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(622,-8,7.7188,1,0,0,0,.1,0);this.va=new a.N;this.va.parent= +this;this.va.setTransform(535.25,-18.3,5.4357,2.3675,0,0,0,.4,.3);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(296.75,-8,7.6563,1);this.ya=new a.N;this.ya.parent=this;this.ya.setTransform(232,-24.5,1,2.9925,0,0,0,0,-.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.Aa=new a.EC;this.Aa.parent=this;this.Aa.setTransform(492,-230, +1,1,0,0,180,0,-13);this.Ba=new a.EC;this.Ba.parent=this;this.Ba.setTransform(420,-230,1,1,0,0,0,0,-13);this.Da=new a.df;this.Da.parent=this;this.Da.setTransform(430,-149.05,1,1,0,0,0,0,-13);this.Ea=new a.df;this.Ea.parent=this;this.Ea.setTransform(480,-149.05,1,1,0,0,0,0,-13);this.Ga=new a.df;this.Ga.parent=this;this.Ga.setTransform(430,-99.05,1,1,0,0,0,0,-13);this.Ha=new a.df;this.Ha.parent=this;this.Ha.setTransform(480,-99.05,1,1,0,0,0,0,-13);this.Ia=new a.df;this.Ia.parent=this;this.Ia.setTransform(430, +-49.05,1,1,0,0,0,0,-13);this.Ja=new a.df;this.Ja.parent=this;this.Ja.setTransform(480,-49.05,1,1,0,0,0,0,-13);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa}]}).wait(1));this.Ka=new a.p_a;this.Ka.parent=this;this.Ka.setTransform(456,-351.95,1,1,0,0,0,0,-18.9);this.La=new a.Fm;this.La.parent=this;this.La.setTransform(369,-182.05,1,1,0,0,180,0,-38);this.Ma=new a.Fm;this.Ma.parent=this;this.Ma.setTransform(542.35, +-184.05,1,1,0,0,0,0,-38);this.Na=new a.J4a;this.Na.parent=this;this.Na.setTransform(456,-274.05,1,1,0,0,0,0,-37.9);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka}]}).wait(1));this.Oa=new a.Kma;this.Oa.parent=this;this.Oa.setTransform(499.5,-120,1,1,0,0,0,178.5,120);this.Qa=new a.Jma;this.Qa.parent=this;this.Qa.setTransform(142,-120,1,1,0,0,0,179,120);this.Ua=new a.Ima;this.Ua.parent=this;this.Ua.setTransform(499.5,-291,1,1,0,0,0,178.5,120);this.Va= +new a.Hma;this.Va.parent=this;this.Va.setTransform(142,-360,1,1,0,0,0,179,120);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa}]}).wait(1))}).prototype=k(a.qka,new b.Rectangle(-37,-490,1141,998),null);(a.Kia=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={region:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(155.1,83.05,4.8599,.9281,0, +0,0,.4,.3);this.g=new a.N;this.g.parent=this;this.g.setTransform(-21.9,27.8,3.0033,2.9649,0,0,0,.1,1.2);this.i=new a.N;this.i.parent=this;this.i.setTransform(270.85,337.7,15.8329,1,0,0,0,.4,.1);this.o=new a.N;this.o.parent=this;this.o.setTransform(193,66.15,.1777,6.2358,0,0,0,.3,.7);this.H=new a.N;this.H.parent=this;this.H.setTransform(288,174.2,.1777,2.6626,0,0,0,.3,.7);this.O=new a.N;this.O.parent=this;this.O.setTransform(241,132.6,.1777,3.4777,0,0,0,.3,.7);this.$=new a.N;this.$.parent=this;this.$.setTransform(216.15, +109.95,2.9566,.9281,0,0,0,.4,.2);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(265.8,158.2,2.9566,.9281,0,0,0,.4,.2);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(337.6,192.2,6.0851,.9281,0,0,0,.4,.2);this.va=new a.N;this.va.parent=this;this.va.setTransform(293.55,7.15,12.0988,.9281,0,0,0,.6,.3);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(97.9,168,5.995,3.75,0,0,0,.3,-1.6);this.ya=new a.N;this.ya.parent=this;this.ya.setTransform(97.8,318,6.0047,12.003,0,0,0,.2,-1.5); +this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(152.6,-55.55,.9909,1.0049,0,0,0,.5,.3);this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(25.5,142.85,3.0033,10.3126,0,0,0,.2,1.2);this.Da=new a.N;this.Da.parent=this;this.Da.setTransform(97.05,216.5,12.0094,3.75,0,0,0,.1,-1.6);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g}, +{t:this.instance}]}).wait(1));this.Ea=new a.BYa;this.Ea.parent=this;this.Ea.setTransform(265.15,161.6,1,1,0,0,0,0,-18.7);this.timeline.addTween(b.Tween.get(this.Ea).wait(1));this.Ga=new a.FX;this.Ga.parent=this;this.Ga.setTransform(129.5,240.5,1,1,0,0,0,-3,-22);this.Ha=new a.FX;this.Ha.parent=this;this.Ha.setTransform(94.5,250.5,1,1,0,0,0,-3,-22);this.Ia=new a.FX;this.Ia.parent=this;this.Ia.setTransform(66.5,232.5,1,1,0,0,0,-3,-22);this.Ja=new a.FX;this.Ja.parent=this;this.Ja.setTransform(102.5,227.5, +1,1,0,0,180,-3,-22);this.Ka=new a.rJ;this.Ka.parent=this;this.Ka.setTransform(67.75,194.6,1,1,0,0,0,2,-31);this.La=new a.$s;this.La.parent=this;this.La.setTransform(82.15,163.35,1,1,0,0,0,-3.5,-27);this.Ma=new a.Vw;this.Ma.parent=this;this.Ma.setTransform(72.7,126.2,1,1,0,0,180,-8.7,-27.1);this.Na=new a.Nw;this.Na.parent=this;this.Na.setTransform(164.9,-11.55,1,1,0,0,0,-3.5,-22.5);this.Oa=new a.rJ;this.Oa.parent=this;this.Oa.setTransform(32.9,9.1,1,1,0,0,0,2,-31);this.Qa=new a.Nw;this.Qa.parent=this; +this.Qa.setTransform(126.9,19.45,1,1,0,0,0,-3.5,-22.5);this.Ua=new a.nHa;this.Ua.parent=this;this.Ua.setTransform(168,280,1,1,0,0,0,0,-8);this.Va=new a.SOa;this.Va.parent=this;this.Va.setTransform(232.3,253.95,1,1,0,0,0,0,-.5);this.Wa=new a.WK;this.Wa.parent=this;this.Wa.setTransform(345,196.95,1,1,0,0,0,0,-12.1);this.Xa=new a.Vw;this.Xa.parent=this;this.Xa.setTransform(264.05,120.95,1,1,0,0,180,-8.7,-27.1);this.Ya=new a.Vw;this.Ya.parent=this;this.Ya.setTransform(391.05,147.45,1,1,0,0,180,-8.7,-27.1); +this.Za=new a.Vw;this.Za.parent=this;this.Za.setTransform(312.95,150.95,1,1,0,0,0,-8.7,-27.1);this.$a=new a.Nw;this.$a.parent=this;this.$a.setTransform(94.9,208.15,1,1,0,0,0,-3.5,-22.5);this.ab=new a.Nw;this.ab.parent=this;this.ab.setTransform(125,156,1,1,0,0,0,-3.5,-22.5);this.hb=new a.Nw;this.hb.parent=this;this.hb.setTransform(207,73,1,1,0,0,0,-3.5,-22.5);this.mb=new a.Nw;this.mb.parent=this;this.mb.setTransform(270,93,1,1,0,0,0,-3.5,-22.5);this.nb=new a.rJ;this.nb.parent=this;this.nb.setTransform(336, +119,1,1,0,0,0,2,-31);this.rb=new a.rJ;this.rb.parent=this;this.rb.setTransform(251,51,1,1,0,0,0,2,-31);this.tb=new a.$s;this.tb.parent=this;this.tb.setTransform(147,194,1,1,0,0,0,-3.5,-27);this.ub=new a.$s;this.ub.parent=this;this.ub.setTransform(362,72,1,1,0,0,0,-3.5,-27);this.wb=new a.$s;this.wb.parent=this;this.wb.setTransform(362,24,1,1,0,0,0,-3.5,-27);this.yb=new a.$s;this.yb.parent=this;this.yb.setTransform(307,60,1,1,0,0,0,-3.5,-27);this.Ab=new a.$s;this.Ab.parent=this;this.Ab.setTransform(266, +13,1,1,0,0,0,-3.5,-27);this.Cb=new a.$s;this.Cb.parent=this;this.Cb.setTransform(226,12,1,1,0,0,0,-3.5,-27);this.Db=new a.Lk;this.Db.parent=this;this.Db.setTransform(263,161,1,1,0,0,0,14.5,10);this.Eb=new a.Lk;this.Eb.parent=this;this.Eb.setTransform(295,161,1,1,0,0,0,14.5,10);this.Fb=new a.Lk;this.Fb.parent=this;this.Fb.setTransform(312,194,1,1,0,0,0,14.5,10);this.Gb=new a.Lk;this.Gb.parent=this;this.Gb.setTransform(344,194,1,1,0,0,0,14.5,10);this.Hb=new a.Lk;this.Hb.parent=this;this.Hb.setTransform(376, +194,1,1,0,0,0,14.5,10);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga}]}).wait(1));this.Jb=new a.Z2a;this.Jb.parent= +this;this.Jb.setTransform(198.5,251,1,1,0,0,0,204.5,98);this.Lb=new a.Y2a;this.Lb.parent=this;this.Lb.setTransform(199.5,67,1,1,0,0,0,204.5,98);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Lb},{t:this.Jb}]}).wait(1))}).prototype=k(a.Kia,new b.Rectangle(-48,-191.9,1200.2,720.1),null);(a.Jia=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={region:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(513.75, +18.15,37.5893,.9281,0,0,0,.6,.3);this.g=new a.N;this.g.parent=this;this.g.setTransform(559.3,191.75,7.4242,.9281,0,0,0,.5,.3);this.i=new a.N;this.i.parent=this;this.i.setTransform(-21.9,27.8,3.0033,2.9649,0,0,0,.1,1.2);this.o=new a.N;this.o.parent=this;this.o.setTransform(696.65,337.7,9.4008,1,0,0,0,.4,.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(507.9,337.7,15.8329,1,0,0,0,.4,.1);this.O=new a.N;this.O.parent=this;this.O.setTransform(270.85,337.7,15.8329,1,0,0,0,.4,.1);this.$=new a.N; +this.$.parent=this;this.$.setTransform(193,66.15,.1777,6.2358,0,0,0,.3,.7);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(288,174.2,.1777,2.6626,0,0,0,.3,.7);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(241,132.6,.1777,3.4777,0,0,0,.3,.7);this.va=new a.N;this.va.parent=this;this.va.setTransform(216.15,109.95,2.9566,.9281,0,0,0,.4,.2);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(265.8,158.2,2.9566,.9281,0,0,0,.4,.2);this.ya=new a.N;this.ya.parent=this;this.ya.setTransform(379.2, +192.2,11.0013,.9281,0,0,0,.4,.2);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(513.75,40.15,37.5893,.9281,0,0,0,.6,.3);this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(713.9,191.75,7.832,.9281,0,0,0,.4,.3);this.Da=new a.N;this.Da.parent=this;this.Da.setTransform(97.9,168,5.995,3.75,0,0,0,.3,-1.6);this.Ea=new a.N;this.Ea.parent=this;this.Ea.setTransform(97.8,318,6.0047,12.003,0,0,0,.2,-1.5);this.Ga=new a.N;this.Ga.parent=this;this.Ga.setTransform(152.6,-55.55,.9909,1.0049,0,0,0, +.5,.3);this.Ha=new a.N;this.Ha.parent=this;this.Ha.setTransform(25.5,142.85,3.0033,10.3126,0,0,0,.2,1.2);this.Ia=new a.N;this.Ia.parent=this;this.Ia.setTransform(97.05,216.5,12.0094,3.75,0,0,0,.1,-1.6);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.Ja=new a.rSa; +this.Ja.parent=this;this.Ja.setTransform(758.75,305.2,1,1,0,0,0,0,-3.9);this.Ka=new a.xYa;this.Ka.parent=this;this.Ka.setTransform(716.15,187.9,1,1,0,0,0,0,-18.7);this.La=new a.yYa;this.La.parent=this;this.La.setTransform(689,204.9,1,1,0,0,0,0,-3.9);this.Ma=new a.qSa;this.Ma.parent=this;this.Ma.setTransform(415,322.25,1,1,0,0,0,0,-3.9);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja}]}).wait(1));this.Na=new a.hcb;this.Na.parent=this;this.Na.setTransform(520.2, +223.2);this.timeline.addTween(b.Tween.get(this.Na).wait(1));this.Oa=new a.$1a;this.Oa.parent=this;this.Oa.setTransform(632.95,137.05,1,1,0,0,0,-.5,-26.6);this.Qa=new a.Vw;this.Qa.parent=this;this.Qa.setTransform(724.95,52.95,1,1,0,0,0,-8.7,-27.1);this.Ua=new a.Vw;this.Ua.parent=this;this.Ua.setTransform(699.05,134.95,1,1,0,0,180,-8.7,-27.1);this.Va=new a.Vw;this.Va.parent=this;this.Va.setTransform(635.05,86.95,1,1,0,0,180,-8.7,-27.1);this.Wa=new a.Vw;this.Wa.parent=this;this.Wa.setTransform(577.95, +143.95,1,1,0,0,0,-8.7,-27.1);this.Xa=new a.Vw;this.Xa.parent=this;this.Xa.setTransform(391.05,147.45,1,1,0,0,180,-8.7,-27.1);this.Ya=new a.Nw;this.Ya.parent=this;this.Ya.setTransform(601,122,1,1,0,0,0,-3.5,-22.5);this.Za=new a.Nw;this.Za.parent=this;this.Za.setTransform(701,26,1,1,0,0,0,-3.5,-22.5);this.$a=new a.Nw;this.$a.parent=this;this.$a.setTransform(768,23,1,1,0,0,180,-3.5,-22.5);this.ab=new a.Nw;this.ab.parent=this;this.ab.setTransform(648,139,1,1,0,0,0,-3.5,-22.5);this.hb=new a.rJ;this.hb.parent= +this;this.hb.setTransform(755,133,1,1,0,0,0,2,-31);this.mb=new a.rJ;this.mb.parent=this;this.mb.setTransform(553,96,1,1,0,0,0,2,-31);this.nb=new a.rJ;this.nb.parent=this;this.nb.setTransform(409,96,1,1,0,0,0,2,-31);this.rb=new a.$s;this.rb.parent=this;this.rb.setTransform(691,80,1,1,0,0,0,-3.5,-27);this.tb=new a.$s;this.tb.parent=this;this.tb.setTransform(589,72,1,1,0,0,0,-3.5,-27);this.ub=new a.$s;this.ub.parent=this;this.ub.setTransform(636,24,1,1,0,0,0,-3.5,-27);this.wb=new a.$s;this.wb.parent= +this;this.wb.setTransform(528,72,1,1,0,0,0,-3.5,-27);this.yb=new a.$s;this.yb.parent=this;this.yb.setTransform(469,46,1,1,0,0,0,-3.5,-27);this.Ab=new a.Lk;this.Ab.parent=this;this.Ab.setTransform(710,194,1,1,0,0,0,14.5,10);this.Cb=new a.Lk;this.Cb.parent=this;this.Cb.setTransform(742,194,1,1,0,0,0,14.5,10);this.Db=new a.Lk;this.Db.parent=this;this.Db.setTransform(773,194,1,1,0,0,0,14.5,10);this.Eb=new a.Lk;this.Eb.parent=this;this.Eb.setTransform(615,194,1,1,0,0,0,14.5,10);this.Fb=new a.Lk;this.Fb.parent= +this;this.Fb.setTransform(678,194,1,1,0,0,0,14.5,10);this.Gb=new a.Lk;this.Gb.parent=this;this.Gb.setTransform(519,194,1,1,0,0,0,14.5,10);this.Hb=new a.Lk;this.Hb.parent=this;this.Hb.setTransform(551,194,1,1,0,0,0,14.5,10);this.Jb=new a.Lk;this.Jb.parent=this;this.Jb.setTransform(582,194,1,1,0,0,0,14.5,10);this.Lb=new a.Lk;this.Lb.parent=this;this.Lb.setTransform(408,194,1,1,0,0,0,14.5,10);this.Mb=new a.Lk;this.Mb.parent=this;this.Mb.setTransform(440,194,1,1,0,0,0,14.5,10);this.Pb=new a.Lk;this.Pb.parent= +this;this.Pb.setTransform(471,194,1,1,0,0,0,14.5,10);this.Nb=new a.LUa;this.Nb.parent=this;this.Nb.setTransform(480.95,137.05,1,1,0,0,0,-.5,-26.6);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Nb},{t:this.Pb},{t:this.Mb},{t:this.Lb},{t:this.Jb},{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa}, +{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa}]}).wait(1));this.Qb=new a.$2a;this.Qb.parent=this;this.Qb.setTransform(585,251,1,1,0,0,0,204,98);this.Ob=new a.Gma;this.Ob.parent=this;this.Ob.setTransform(586,67,1,1,0,0,0,204,98);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ob},{t:this.Qb}]}).wait(1))}).prototype=k(a.Jia,new b.Rectangle(-48,-191.9,1200.2,720.1),null);(a.Dda=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={region:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); +this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(139.05,363.25,.6208,.6196,0,0,0,.1,.4);this.g=new a.N;this.g.parent=this;this.g.setTransform(69.05,363.25,.6208,.6196,0,0,0,.1,.4);this.i=new a.N;this.i.parent=this;this.i.setTransform(-106.95,283.25,.6208,.6196,0,0,0,.1,.4);this.o=new a.N;this.o.parent=this;this.o.setTransform(-90.95,299.25,.6208,.6196,0,0,0,.1,.4);this.H=new a.N;this.H.parent=this;this.H.setTransform(156.1,270.6,1.3703,4.5343,0,0,0,.3,.7);this.O=new a.N; +this.O.parent=this;this.O.setTransform(54.1,270.6,1.3703,4.5343,0,0,0,.3,.7);this.$=new a.N;this.$.parent=this;this.$.setTransform(325,213.2,.6208,.6196,0,0,0,.1,.4);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(293,229.2,.6208,.6196,0,0,0,.1,.4);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(254,235.2,.6208,.6196,0,0,0,.1,.4);this.va=new a.N;this.va.parent=this;this.va.setTransform(267,219.2,.6208,.6196,0,0,0,.1,.4);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(296.35, +216.3,3,1.0013,0,0,0,.1,.2);this.ya=new a.N;this.ya.parent=this;this.ya.setTransform(272.35,232.5,2.0056,1.0013,0,0,0,.1,.4);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(264.35,283.9,3,5.3404,0,0,0,.1,.2);this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(409.8,320.45,2.8231,2.0251,0,0,0,.1,.1);this.Da=new a.N;this.Da.parent=this;this.Da.setTransform(-173.2,273.15,3.6674,1.9867,0,0,0,.1,.6);this.Ea=new a.N;this.Ea.parent=this;this.Ea.setTransform(-260.9,-135.75,2.5295,1.0216,0,0, +0,-.1,.2);this.Ga=new a.N;this.Ga.parent=this;this.Ga.setTransform(313.95,-135.85,2.8552,1.0001,0,0,0,.3,0);this.Ha=new a.N;this.Ha.parent=this;this.Ha.setTransform(71.7,247.55,.9179,3.5905,0,0,0,.4,.7);this.Ia=new a.N;this.Ia.parent=this;this.Ia.setTransform(137.85,247.55,.9265,3.5905,0,0,0,.4,.7);this.Ja=new a.N;this.Ja.parent=this;this.Ja.setTransform(456.65,251.05,3.0096,4.9094,0,0,0,.2,.7);this.Ka=new a.N;this.Ka.parent=this;this.Ka.setTransform(105.4,225.35,5.5548,1.981,0,0,0,.4,.7);this.La= +new a.N;this.La.parent=this;this.La.setTransform(304.4,328.05,1.9937,1.0004,0,0,0,.2,.1);this.Ma=new a.N;this.Ma.parent=this;this.Ma.setTransform(20.9,360.1,5.446,1,0,0,0,.1,.1);this.Na=new a.N;this.Na.parent=this;this.Na.setTransform(45.6,376.1,5.8592,1,0,0,0,.2,.1);this.Oa=new a.N;this.Oa.parent=this;this.Oa.setTransform(-221.2,273.15,3.6674,1.9867,0,0,0,.1,.6);this.Qa=new a.N;this.Qa.parent=this;this.Qa.setTransform(-167.75,313.6,2.9768,2.9895,0,0,0,.1,.5);this.Ua=new a.N;this.Ua.parent=this;this.Ua.setTransform(-62.55, +361.4,9.9843,2.9895,0,0,0,.1,.5);this.Va=new a.N;this.Va.parent=this;this.Va.setTransform(184.7,360,5.0062,1,0,0,0,.1,0);this.Wa=new a.N;this.Wa.parent=this;this.Wa.setTransform(163.4,376.1,5.6156,1,0,0,0,.1,.1);this.Xa=new a.N;this.Xa.parent=this;this.Xa.setTransform(240.05,328,2.0062,1);this.Ya=new a.N;this.Ya.parent=this;this.Ya.setTransform(344.1,328,3,1);this.Za=new a.N;this.Za.parent=this;this.Za.setTransform(416.3,272.9,1.9969,8.0156,0,0,0,.1,.1);this.$a=new a.N;this.$a.parent=this;this.$a.setTransform(-80.75, +311,2.0204,1,0,0,0,-.5,-1);this.ab=new a.N;this.ab.parent=this;this.ab.setTransform(-71.75,328);this.hb=new a.N;this.hb.parent=this;this.hb.setTransform(-96.15,312,4.0125,1);this.mb=new a.N;this.mb.parent=this;this.mb.setTransform(-112.25,304,2,2);this.nb=new a.N;this.nb.parent=this;this.nb.setTransform(-120,288,1,2);this.rb=new a.N;this.rb.parent=this;this.rb.setTransform(-265.1,255.55,2.9449,5.0431,0,0,0,-.5,1.4);this.tb=new a.N;this.tb.parent=this;this.tb.setTransform(289,361.3,11.9324,2.9895, +0,0,0,.1,.4);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i}, +{t:this.g},{t:this.instance}]}).wait(1));this.ub=new a.RAa;this.ub.parent=this;this.ub.setTransform(105.45,259);this.wb=new a.NTa;this.wb.parent=this;this.wb.setTransform(-60,228,1,1,0,0,0,8,10);this.yb=new a.kSa;this.yb.parent=this;this.yb.setTransform(-103,276.85,1,1,0,0,0,8,10);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.yb},{t:this.wb},{t:this.ub}]}).wait(1));this.Ab=new a.hZa;this.Ab.parent=this;this.Ab.setTransform(338.6,308.8,1,1,0,0,0,0,-21.4);this.Cb=new a.Pc;this.Cb.parent= +this;this.Cb.setTransform(-3.5,346,1,1,0,0,180,0,-22);this.Db=new a.Pc;this.Db.parent=this;this.Db.setTransform(274.5,328,1,1,0,0,0,0,-22);this.Eb=new a.Pc;this.Eb.parent=this;this.Eb.setTransform(-208.5,260,1,1,0,0,180,0,-22);this.Fb=new a.Pc;this.Fb.parent=this;this.Fb.setTransform(-174.5,288,1,1,0,0,180,0,-22);this.Gb=new a.Pc;this.Gb.parent=this;this.Gb.setTransform(-123.5,344,1,1,0,0,180,0,-22);this.Hb=new a.Pc;this.Hb.parent=this;this.Hb.setTransform(-37.5,350,1,1,0,0,180,0,-22);this.Jb=new a.Pc; +this.Jb.parent=this;this.Jb.setTransform(60.5,362,1,1,0,0,180,0,-22);this.Lb=new a.Pc;this.Lb.parent=this;this.Lb.setTransform(147.5,362,1,1,0,0,0,0,-22);this.Mb=new a.Pc;this.Mb.parent=this;this.Mb.setTransform(211,338,1,1,0,0,0,0,-22);this.Pb=new a.WK;this.Pb.parent=this;this.Pb.setTransform(-24.55,299.4,1,1,0,0,0,0,-12.9);this.Nb=new a.jZa;this.Nb.parent=this;this.Nb.setTransform(156,325,1,1,0,0,0,0,-20.5);this.Qb=new a.lZa;this.Qb.parent=this;this.Qb.setTransform(198.5,256.3,1,1,0,0,0,0,-20.5); +this.Ob=new a.df;this.Ob.parent=this;this.Ob.setTransform(423.8,-142,1,1,0,0,0,0,-13);this.Rb=new a.og;this.Rb.parent=this;this.Rb.setTransform(-134.25,252.45,1,1,0,0,0,0,-21.5);this.Sb=new a.og;this.Sb.parent=this;this.Sb.setTransform(-230,203.3,1,1,0,0,0,0,-21.5);this.Tb=new a.og;this.Tb.parent=this;this.Tb.setTransform(34.25,232.5,1,1,0,0,0,0,-21.5);this.Ub=new a.vPa;this.Ub.parent=this;this.Ub.setTransform(333.5,246.95,1,1,0,0,0,-.5,-36);this.Zb=new a.Ok;this.Zb.parent=this;this.Zb.setTransform(227.1, +239.35,1,1,0,0,0,0,-12.8);this.Wb=new a.og;this.Wb.parent=this;this.Wb.setTransform(174.1,205.3,1,1,0,0,0,0,-21.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Wb},{t:this.Zb},{t:this.Ub},{t:this.Tb},{t:this.Sb},{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb},{t:this.Pb},{t:this.Mb},{t:this.Lb},{t:this.Jb},{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab}]}).wait(1));this.Xb=new a.V2a;this.Xb.parent=this;this.Xb.setTransform(288,296,1,1,0,0,0,192,88); +this.Yb=new a.U2a;this.Yb.parent=this;this.Yb.setTransform(-103,296,1,1,0,0,0,192,88);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Yb},{t:this.Xb}]}).wait(1))}).prototype=k(a.Dda,new b.Rectangle(-295,-159,782,550),null);(a.TU=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={region:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(233.25,705.1,1.0302,3.0103,0,0,0,.7,.4);this.g= +new a.N;this.g.parent=this;this.g.setTransform(813.9,746.85,7.3361,1.3242,0,0,0,.1,.2);this.i=new a.N;this.i.parent=this;this.i.setTransform(803.9,746.8,7.3361,.918,0,0,0,.1,.1);this.o=new a.N;this.o.parent=this;this.o.setTransform(821.9,744.55,7.3361,3.0028,0,0,0,.1,.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(710.05,589.8,2.7544,8.3856,0,0,0,0,1.3);this.O=new a.N;this.O.parent=this;this.O.setTransform(350.3,493,5.5431,5.3187,0,0,0,.3,1.4);this.$=new a.N;this.$.parent=this;this.$.setTransform(184.3, +493,4.9958,5.3187,0,0,0,.1,1.4);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(145.15,505.85,.1032,6.3079,0,0,0,-.5,1.2);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(384.15,505.85,.1032,6.3079,0,0,0,-.5,1.2);this.va=new a.N;this.va.parent=this;this.va.setTransform(206.6,413.25,3.9576,1.4274,0,0,0,-.4,1.2);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(327.25,413.25,4.8154,1.4274,0,0,0,-.4,1.2);this.ya=new a.N;this.ya.parent=this;this.ya.setTransform(247,313.4,1.0329, +.5426,0,0,0,-.2,1.9);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(280,313.4,1.0329,.5426,0,0,0,-.2,1.9);this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(184.5,321.15,5.4842,1.8602,0,0,0,-.4,1.2);this.Da=new a.N;this.Da.parent=this;this.Da.setTransform(338.5,321.15,5.4842,1.8602,0,0,0,-.4,1.2);this.Ea=new a.N;this.Ea.parent=this;this.Ea.setTransform(258.25,303.6,14.9994,.0544,0,0,0,-.4,.9);this.Ga=new a.N;this.Ga.parent=this;this.Ga.setTransform(257.25,335.35,14.9994,.793,0,0,0, +-.4,1.1);this.Ha=new a.N;this.Ha.parent=this;this.Ha.setTransform(634.8,588.95,2.6187,8.3856,0,0,0,-.1,1.2);this.Ia=new a.N;this.Ia.parent=this;this.Ia.setTransform(664.7,561.75,11.3674,9.0042,0,0,0,-.1,1.1);this.Ja=new a.N;this.Ja.parent=this;this.Ja.setTransform(658.3,541.15,15.7892,8.5257,0,0,0,0,1.1);this.Ka=new a.N;this.Ka.parent=this;this.Ka.setTransform(660.1,513.75,19.0182,9.0042,0,0,0,-.2,1.1);this.La=new a.N;this.La.parent=this;this.La.setTransform(423.25,262.1,3.3777,1,0,0,0,-.1,0);this.Ma= +new a.N;this.Ma.parent=this;this.Ma.setTransform(169.7,649.1,2.9221,3.0103,0,0,0,.6,.4);this.Na=new a.N;this.Na.parent=this;this.Na.setTransform(491,431.65,.9741,4.9937,0,0,0,-.1,.3);this.Oa=new a.N;this.Oa.parent=this;this.Oa.setTransform(490.9,393.55,.9741,4.9937,0,0,0,-.1,.3);this.Qa=new a.N;this.Qa.parent=this;this.Qa.setTransform(490.75,313.35,.9741,4.9937,0,0,0,-.1,.3);this.Ua=new a.N;this.Ua.parent=this;this.Ua.setTransform(468.25,277.1,3.3777,1,0,0,0,-.1,0);this.Va=new a.N;this.Va.parent= +this;this.Va.setTransform(468.25,277.1,3.3777,1,0,0,0,-.1,0);this.Wa=new a.N;this.Wa.parent=this;this.Wa.setTransform(363.4,277.1,7.0186,1,0,0,0,-.1,0);this.Xa=new a.N;this.Xa.parent=this;this.Xa.setTransform(306.4,277.1,7.0186,1,0,0,0,-.1,0);this.Ya=new a.N;this.Ya.parent=this;this.Ya.setTransform(196.4,277.1,7.0186,1,0,0,0,-.1,0);this.Za=new a.N;this.Za.parent=this;this.Za.setTransform(94.9,398.75,5.9742,10.5626,0,0,0,-.1,1);this.$a=new a.N;this.$a.parent=this;this.$a.setTransform(421.2,398.75, +4.7587,10.5626,0,0,0,-.2,1);this.ab=new a.N;this.ab.parent=this;this.ab.setTransform(566.95,497.75,9.5091,9.0042,0,0,0,-.2,1.1);this.hb=new a.N;this.hb.parent=this;this.hb.setTransform(508.55,487.65,3.239,3.9579,0,0,0,-.2,1);this.mb=new a.N;this.mb.parent=this;this.mb.setTransform(258.25,410.35,14.9994,.793,0,0,0,-.4,1.1);this.nb=new a.N;this.nb.parent=this;this.nb.setTransform(421.3,486.35,4.716,4.2053,0,0,0,-.2,1.1);this.rb=new a.N;this.rb.parent=this;this.rb.setTransform(196.6,665.1,5.9942,3.0103, +0,0,0,.7,.4);this.tb=new a.N;this.tb.parent=this;this.tb.setTransform(311.25,743.75,8.6812,3.0593,0,0,0,.2,.1);this.ub=new a.N;this.ub.parent=this;this.ub.setTransform(433.25,743.75,8.6812,3.0593,0,0,0,.2,.1);this.wb=new a.N;this.wb.parent=this;this.wb.setTransform(556.25,743.75,8.6812,3.0593,0,0,0,.2,.1);this.yb=new a.N;this.yb.parent=this;this.yb.setTransform(868.7,648.9,1.4387,9,0,0,0,.1,.1);this.Ab=new a.N;this.Ab.parent=this;this.Ab.setTransform(794.6,541.75,10.6224,4.2145,0,0,0,0,.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ab}, +{t:this.yb},{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1)); +this.Cb=new a.pYa;this.Cb.parent=this;this.Cb.setTransform(216.5,555.3,1,1,0,0,0,0,-.6);this.Db=new a.W0;this.Db.parent=this;this.Db.setTransform(673,638);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Db},{t:this.Cb}]}).wait(1));this.Eb=new a.eB;this.Eb.parent=this;this.Eb.setTransform(800,731.05,1,1,0,0,0,26,30);this.Fb=new a.VB;this.Fb.parent=this;this.Fb.setTransform(816,665,1,1,0,0,180);this.Gb=new a.Gm;this.Gb.parent=this;this.Gb.setTransform(211,416,1,1,0,0,0,0,-16.5);this.Hb=new a.Gm; +this.Hb.parent=this;this.Hb.setTransform(317,416,1,1,0,0,0,0,-16.5);this.Jb=new a.xm;this.Jb.parent=this;this.Jb.setTransform(226,525.5,1,1,0,0,0,2,-1.5);this.Lb=new a.xm;this.Lb.parent=this;this.Lb.setTransform(226,508.5,1,1,0,0,0,2,-1.5);this.Mb=new a.xm;this.Mb.parent=this;this.Mb.setTransform(226,491.5,1,1,0,0,0,2,-1.5);this.Pb=new a.xm;this.Pb.parent=this;this.Pb.setTransform(226,474.5,1,1,0,0,0,2,-1.5);this.Nb=new a.xm;this.Nb.parent=this;this.Nb.setTransform(226,457.5,1,1,0,0,0,2,-1.5);this.Qb= +new a.xm;this.Qb.parent=this;this.Qb.setTransform(243,525.5,1,1,0,0,0,2,-1.5);this.Ob=new a.xm;this.Ob.parent=this;this.Ob.setTransform(243,508.5,1,1,0,0,0,2,-1.5);this.Rb=new a.xm;this.Rb.parent=this;this.Rb.setTransform(243,491.5,1,1,0,0,0,2,-1.5);this.Sb=new a.xm;this.Sb.parent=this;this.Sb.setTransform(243,474.5,1,1,0,0,0,2,-1.5);this.Tb=new a.xm;this.Tb.parent=this;this.Tb.setTransform(243,457.5,1,1,0,0,0,2,-1.5);this.Ub=new a.xm;this.Ub.parent=this;this.Ub.setTransform(290,525.5,1,1,0,0,0,2, +-1.5);this.Zb=new a.xm;this.Zb.parent=this;this.Zb.setTransform(290,508.5,1,1,0,0,0,2,-1.5);this.Wb=new a.xm;this.Wb.parent=this;this.Wb.setTransform(290,491.5,1,1,0,0,0,2,-1.5);this.Xb=new a.xm;this.Xb.parent=this;this.Xb.setTransform(290,474.5,1,1,0,0,0,2,-1.5);this.Yb=new a.xm;this.Yb.parent=this;this.Yb.setTransform(290,457.5,1,1,0,0,0,2,-1.5);this.$b=new a.xm;this.$b.parent=this;this.$b.setTransform(307,525.5,1,1,0,0,0,2,-1.5);this.ac=new a.xm;this.ac.parent=this;this.ac.setTransform(307,508.5, +1,1,0,0,0,2,-1.5);this.bc=new a.xm;this.bc.parent=this;this.bc.setTransform(307,491.5,1,1,0,0,0,2,-1.5);this.hc=new a.xm;this.hc.parent=this;this.hc.setTransform(307,474.5,1,1,0,0,0,2,-1.5);this.jc=new a.xm;this.jc.parent=this;this.jc.setTransform(307,457.5,1,1,0,0,0,2,-1.5);this.kc=new a.fZa;this.kc.parent=this;this.kc.setTransform(241,336);this.lc=new a.sba;this.lc.parent=this;this.lc.setTransform(262.5,313.5,1,1,0,0,0,0,-7.5);this.nc=new a.vba;this.nc.parent=this;this.nc.setTransform(202,308.5, +1,1,0,0,0,0,-36.5);this.tc=new a.oYa;this.tc.parent=this;this.tc.setTransform(837.15,576,1,1,0,0,0,0,-10.2);this.uc=new a.nYa;this.uc.parent=this;this.uc.setTransform(468.15,286,1,1,0,0,0,0,-10.2);this.xc=new a.kYa;this.xc.parent=this;this.xc.setTransform(265.15,559.55,1,1,0,0,0,0,-10.2);this.zc=new a.vC;this.zc.parent=this;this.zc.setTransform(737.1,608.4,1,1,0,0,0,0,-8.5);this.Ac=new a.vC;this.Ac.parent=this;this.Ac.setTransform(609.1,608.4,1,1,0,0,0,0,-8.5);this.Bc=new a.vC;this.Bc.parent=this; +this.Bc.setTransform(641.1,592.4,1,1,0,0,0,0,-8.5);this.yc=new a.vC;this.yc.parent=this;this.yc.setTransform(673.1,586.4,1,1,0,0,0,0,-8.5);this.Dc=new a.vC;this.Dc.parent=this;this.Dc.setTransform(705.1,592.4,1,1,0,0,0,0,-8.5);this.Ec=new a.fB;this.Ec.parent=this;this.Ec.setTransform(593,575,1,1,0,0,0,0,-13);this.Fc=new a.fB;this.Fc.parent=this;this.Fc.setTransform(753,575,1,1,0,0,0,0,-13);this.Gc=new a.fB;this.Gc.parent=this;this.Gc.setTransform(721,567,1,1,0,0,0,0,-13);this.Jc=new a.fB;this.Jc.parent= +this;this.Jc.setTransform(625,567,1,1,0,0,0,0,-13);this.Kc=new a.fB;this.Kc.parent=this;this.Kc.setTransform(657,559,1,1,0,0,0,0,-13);this.Lc=new a.fB;this.Lc.parent=this;this.Lc.setTransform(689,559,1,1,0,0,0,0,-13);this.Ic=new a.R0;this.Ic.parent=this;this.Ic.setTransform(437.6,533.35,1,1,90,0,0,.3,.5);this.Nc=new a.Sw;this.Nc.parent=this;this.Nc.setTransform(406.35,546.65,1,1,0,-90,90,.3,.5);this.Oc=new a.Gm;this.Oc.parent=this;this.Oc.setTransform(297,412.3,1,1,0,0,0,0,-16.5);this.Rc=new a.Gm; +this.Rc.parent=this;this.Rc.setTransform(233,413.3,1,1,0,0,0,0,-16.5);this.Uc=new a.f$a;this.Uc.parent=this;this.Uc.setTransform(265,391.5,1,1,0,0,0,0,-29.5);this.Xc=new a.DK;this.Xc.parent=this;this.Xc.setTransform(368,709.4,1,1,0,0,180,0,.4);this.jd=new a.Gm;this.jd.parent=this;this.jd.setTransform(211,517,1,1,0,0,0,0,-16.5);this.$c=new a.Gm;this.$c.parent=this;this.$c.setTransform(317,517,1,1,0,0,0,0,-16.5);this.kd=new a.eB;this.kd.parent=this;this.kd.setTransform(357.4,595.3,1,1,0,0,0,26,30); +this.hd=new a.Sw;this.hd.parent=this;this.hd.setTransform(480.35,660.65,1,1,0,-90,90,.1,.5);this.ld=new a.Sw;this.ld.parent=this;this.ld.setTransform(323.95,257,1,1,90,0,0,.5,-.1);this.nd=new a.gx;this.nd.parent=this;this.nd.setTransform(523.35,281,1,1,0,-90,90,0,.5);this.od=new a.Sw;this.od.parent=this;this.od.setTransform(447.35,415,1,1,0,-90,90,16.5,17.5);this.rd=new a.gx;this.rd.parent=this;this.rd.setTransform(512.35,479,1,1,0,-90,90,0,.5);this.vd=new a.qsa;this.vd.parent=this;this.vd.setTransform(431, +277,1,1,0,0,0,0,.5);this.wd=new a.Apa;this.wd.parent=this;this.wd.setTransform(266,213.5,1,1,0,0,0,0,-85.5);this.xd=new a.gx;this.xd.parent=this;this.xd.setTransform(158,594,1,1,0,-90,90);this.Gd=new a.VB;this.Gd.parent=this;this.Gd.setTransform(275,656.05,1,1,0,0,0,0,.4);this.Hd=new a.Sw;this.Hd.parent=this;this.Hd.setTransform(416.95,702.95,1,1,0,-90,90,.1,.1);this.Fd=new a.RY;this.Fd.parent=this;this.Fd.setTransform(154.95,549.95,1,1,0,0,0,-.4,-.4);this.Jd=new a.uS;this.Jd.parent=this;this.Jd.setTransform(414, +527,1,1,0,0,0,.3,-.4);this.Kd=new a.Sw;this.Kd.parent=this;this.Kd.setTransform(196.05,612,1,1,0,-90,90,.5,-.1);this.Id=new a.Sw;this.Id.parent=this;this.Id.setTransform(333,591.95,1,1,0,-90,90,.1,.5);this.Ld=new a.VB;this.Ld.parent=this;this.Ld.setTransform(440,515,1,1,0,0,180);this.Md=new a.DK;this.Md.parent=this;this.Md.setTransform(273,704.95,1,1,0,0,0,0,-.4);this.Nd=new a.Gm;this.Nd.parent=this;this.Nd.setTransform(448,647.9,1,1,0,0,0,0,-16.5);this.Od=new a.Gm;this.Od.parent=this;this.Od.setTransform(378.65, +583.7,1,1,0,0,0,0,-16.5);this.Pd=new a.Gm;this.Pd.parent=this;this.Pd.setTransform(231,586.3,1,1,0,0,0,0,-16.5);this.Qd=new a.Gm;this.Qd.parent=this;this.Qd.setTransform(297,586.3,1,1,0,0,0,0,-16.5);this.Rd=new a.R0;this.Rd.parent=this;this.Rd.setTransform(359.95,573,1,1,90,0,0,.3,.5);this.Td=new a.VB;this.Td.parent=this;this.Td.setTransform(452.05,604.05,1,1,0,0,0,.4,.4);this.Ud=new a.eB;this.Ud.parent=this;this.Ud.setTransform(486.7,587.8,1,1,0,0,180,.3,-.2);this.Vd=new a.uS;this.Vd.parent=this; +this.Vd.setTransform(470,641.35,1,1,0,0,180,0,-.4);this.he=new a.eB;this.he.parent=this;this.he.setTransform(325,681.7,1,1,0,0,180,0,.4);this.qe=new a.eB;this.qe.parent=this;this.qe.setTransform(196,552,1,1,0,0,180,.2,.2);this.re=new a.VB;this.re.parent=this;this.re.setTransform(365.65,550.35,1,1,0,0,180);this.te=new a.gx;this.te.parent=this;this.te.setTransform(310.6,644.4,1,1,0,-90,90,.4,.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.te},{t:this.re},{t:this.qe},{t:this.he},{t:this.Vd}, +{t:this.Ud},{t:this.Td},{t:this.Rd},{t:this.Qd},{t:this.Pd},{t:this.Od},{t:this.Nd},{t:this.Md},{t:this.Ld},{t:this.Id},{t:this.Kd},{t:this.Jd},{t:this.Fd},{t:this.Hd},{t:this.Gd},{t:this.xd},{t:this.wd},{t:this.vd},{t:this.rd},{t:this.od},{t:this.nd},{t:this.ld},{t:this.hd},{t:this.kd},{t:this.$c},{t:this.jd},{t:this.Xc},{t:this.Uc},{t:this.Rc},{t:this.Oc},{t:this.Nc},{t:this.Ic},{t:this.Lc},{t:this.Kc},{t:this.Jc},{t:this.Gc},{t:this.Fc},{t:this.Ec},{t:this.Dc},{t:this.yc},{t:this.Bc},{t:this.Ac}, +{t:this.zc},{t:this.xc},{t:this.uc},{t:this.tc},{t:this.nc},{t:this.lc},{t:this.kc},{t:this.jc},{t:this.hc},{t:this.bc},{t:this.ac},{t:this.$b},{t:this.Yb},{t:this.Xb},{t:this.Wb},{t:this.Zb},{t:this.Ub},{t:this.Tb},{t:this.Sb},{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb},{t:this.Pb},{t:this.Mb},{t:this.Lb},{t:this.Jb},{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb}]}).wait(1));this.ue=new a.K2a;this.ue.parent=this;this.ue.setTransform(723,680.5,1,1,0,0,0,222,132.5);this.we=new a.J2a;this.we.parent= +this;this.we.setTransform(366,660.5,1,1,0,0,0,222,132.5);this.ze=new a.zma;this.ze.parent=this;this.ze.setTransform(357.85,420.5,1,1,0,0,0,222,132.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ze},{t:this.we},{t:this.ue}]}).wait(1))}).prototype=k(a.TU,new b.Rectangle(47.8,-27.1,976.3,799.1),null);(a.Aba=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={region:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent= +this;this.instance.setTransform(86.8,647.7,6.9988,3.045,0,0,0,-.2,.2);this.g=new a.N;this.g.parent=this;this.g.setTransform(145.15,505.85,.1032,6.3079,0,0,0,-.5,1.2);this.i=new a.N;this.i.parent=this;this.i.setTransform(13,264,7.0186,1,0,0,0,-.1,0);this.o=new a.N;this.o.parent=this;this.o.setTransform(81.6,275,8.6757,1,0,0,0,-.1,0);this.H=new a.N;this.H.parent=this;this.H.setTransform(-46.7,275.1,4.5182,1,0,0,0,-.1,0);this.O=new a.N;this.O.parent=this;this.O.setTransform(30.95,319.5,14.0645,2.0135, +0,0,0,0,1);this.$=new a.N;this.$.parent=this;this.$.setTransform(94.9,398.75,5.9742,10.5626,0,0,0,-.1,1);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(89.1,465.75,4.8224,2.1848,0,0,0,-.5,.9);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(120.85,486.3,2.7669,4.1992,0,0,0,-.2,1.1);this.va=new a.N;this.va.parent=this;this.va.setTransform(81.1,463.75,4.8224,2.1848,0,0,0,-.5,.9);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(36.1,499.75,4.8224,2.1848,0,0,0,-.5,.9);this.ya= +new a.N;this.ya.parent=this;this.ya.setTransform(-60.3,499.55,3.1884,2.1848,0,0,0,-.6,.8);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(-22.8,439.95,2.9527,.9445,0,0,0,-.4,.5);this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(-5.6,482.9,1.1349,4.4531,0,0,0,-.5,.8);this.Da=new a.N;this.Da.parent=this;this.Da.setTransform(-61.8,451.95,2.9527,.9445,0,0,0,-.4,.5);this.Ea=new a.N;this.Ea.parent=this;this.Ea.setTransform(-76.4,431.45,1.0416,3.6858,0,0,0,-.4,.5);this.Ga=new a.N;this.Ga.parent= +this;this.Ga.setTransform(-24.3,351.95,1.4485,2.2937,0,0,0,-.5,.6);this.Ha=new a.N;this.Ha.parent=this;this.Ha.setTransform(-46.4,408.65,5.3033,.9812,0,0,0,-.8,.5);this.Ia=new a.N;this.Ia.parent=this;this.Ia.setTransform(-4.3,387.95,1.4485,2.2937,0,0,0,-.5,.6);this.Ja=new a.N;this.Ja.parent=this;this.Ja.setTransform(-60.05,371.65,3.2642,.9812,0,0,0,-.6,.5);this.Ka=new a.N;this.Ka.parent=this;this.Ka.setTransform(-76.4,353.95,1.0416,3.9747,0,0,0,-.4,.5);this.La=new a.N;this.La.parent=this;this.La.setTransform(-136.6, +275.1,7.0186,1,0,0,0,-.1,0);this.Ma=new a.N;this.Ma.parent=this;this.Ma.setTransform(-184.15,294.2,1.0416,1.9508,0,0,0,-.4,.3);this.Na=new a.N;this.Na.parent=this;this.Na.setTransform(-104.5,311.05,2.9344,1.2563);this.Oa=new a.N;this.Oa.parent=this;this.Oa.setTransform(-168.5,311.05,2.9344,1.2563);this.Qa=new a.N;this.Qa.parent=this;this.Qa.setTransform(-238.15,327.8,5.464,1.4041,0,0,0,-.4,.2);this.Ua=new a.N;this.Ua.parent=this;this.Ua.setTransform(-293.5,374,2.9728,5.6874,0,0,0,-.2,.2);this.Va= +new a.N;this.Va.parent=this;this.Va.setTransform(-246.5,414,2.9728,5.6874,0,0,0,-.2,.2);this.Wa=new a.N;this.Wa.parent=this;this.Wa.setTransform(-216.5,414,2.9728,5.6874,0,0,0,-.2,.2);this.Xa=new a.N;this.Xa.parent=this;this.Xa.setTransform(-216.5,488,2.9728,5.6874,0,0,0,-.2,.2);this.Ya=new a.N;this.Ya.parent=this;this.Ya.setTransform(-168.6,574.6,2.9728,5.6874,0,0,0,-.2,.2);this.Za=new a.N;this.Za.parent=this;this.Za.setTransform(-92.4,599.9,6.6062,3.05,0,0,0,-.2,.1);this.$a=new a.N;this.$a.parent= +this;this.$a.setTransform(-.65,599.7,5.9406,3.045,0,0,0,-.2,.2);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1)); +this.ab=new a.dZa;this.ab.parent=this;this.ab.setTransform(-178.7,360.15,1,1,0,0,0,0,-.6);this.timeline.addTween(b.Tween.get(this.ab).wait(1));this.hb=new a.WK;this.hb.parent=this;this.hb.setTransform(-160.75,484.8,1,1,0,0,0,0,-12.9);this.mb=new a.yZa;this.mb.parent=this;this.mb.setTransform(87.5,426.9,1,1,0,0,0,0,-41.5);this.nb=new a.xZa;this.nb.parent=this;this.nb.setTransform(88.4,530.15,1,1,0,0,0,0,-16.1);this.rb=new a.mYa;this.rb.parent=this;this.rb.setTransform(-164.85,286,1,1,0,0,0,0,-10.2); +this.tb=new a.lYa;this.tb.parent=this;this.tb.setTransform(116.5,519,1,1,0,0,0,0,-10.2);this.ub=new a.gx;this.ub.parent=this;this.ub.setTransform(64.35,276.4,1,1,0,-90,90,.4,-.5);this.wb=new a.Sw;this.wb.parent=this;this.wb.setTransform(47.6,336,1,1,90,0,0,.5,-.1);this.yb=new a.gx;this.yb.parent=this;this.yb.setTransform(113.65,408.35,1,1,0,-90,90);this.Ab=new a.J9a;this.Ab.parent=this;this.Ab.setTransform(1,283,1,1,0,0,0,0,.5);this.Cb=new a.gx;this.Cb.parent=this;this.Cb.setTransform(52.95,520.95, +1,1,90,0,0,-.4,-.1);this.Db=new a.gx;this.Db.parent=this;this.Db.setTransform(-124,566,1,1,0,-90,90,0,-.5);this.Eb=new a.VB;this.Eb.parent=this;this.Eb.setTransform(-85.6,517,1,1,0,0,180,-.4,0);this.Fb=new a.Sw;this.Fb.parent=this;this.Fb.setTransform(-56,527.95,1,1,0,-90,90,2.1,-.5);this.Gb=new a.rya;this.Gb.parent=this;this.Gb.setTransform(-25,379,1,1,0,0,0,0,.5);this.Hb=new a.DK;this.Hb.parent=this;this.Hb.setTransform(-166.05,406.95,1,1,0,0,180,.4,-.4);this.Jb=new a.gx;this.Jb.parent=this;this.Jb.setTransform(-239, +359,1,1,0,-90,90,0,-.5);this.Lb=new a.eB;this.Lb.parent=this;this.Lb.setTransform(-179.65,373.65,1,1,0,0,0,26,30);this.Mb=new a.gx;this.Mb.parent=this;this.Mb.setTransform(-169,271.05,1,1,0,-90,90,.4,-.5);this.Pb=new a.Sw;this.Pb.parent=this;this.Pb.setTransform(-295.35,368.6,1,1,90,0,0,.1,.5);this.Nb=new a.gx;this.Nb.parent=this;this.Nb.setTransform(-217,431.95,1,1,90,0,0,-.4,.5);this.Qb=new a.gx;this.Qb.parent=this;this.Qb.setTransform(-312.95,407.95,1,1,0,-90,90,-.4,-.1);this.Ob=new a.DK;this.Ob.parent= +this;this.Ob.setTransform(-247.95,450.95,1,1,0,0,180,-.4,-.4);this.Rb=new a.DK;this.Rb.parent=this;this.Rb.setTransform(-228.05,494.95,1,1,0,0,0,-.4,-.4);this.Sb=new a.VB;this.Sb.parent=this;this.Sb.setTransform(16,516,1,1,0,0,0,.4,.3);this.Tb=new a.RY;this.Tb.parent=this;this.Tb.setTransform(-175.05,465.05,1,1,0,0,0,-.4,.4);this.Ub=new a.Sw;this.Ub.parent=this;this.Ub.setTransform(-152,447,1,1,90,0,0,.5,.5);this.Zb=new a.Gm;this.Zb.parent=this;this.Zb.setTransform(-159.95,327.9,1,1,0,0,0,0,-16.5); +this.Wb=new a.Gm;this.Wb.parent=this;this.Wb.setTransform(-111.95,327.9,1,1,0,0,0,0,-16.5);this.Xb=new a.qya;this.Xb.parent=this;this.Xb.setTransform(-25,461,1,1,0,0,0,-.2,.4);this.Yb=new a.eB;this.Yb.parent=this;this.Yb.setTransform(67.8,603.55,1,1,0,0,180,.2,.2);this.$b=new a.Sw;this.$b.parent=this;this.$b.setTransform(-195,293,1,1,0,0,0,-.5,.5);this.ac=new a.DK;this.ac.parent=this;this.ac.setTransform(-96,378.05,1,1,0,0,0,0,.4);this.bc=new a.Sw;this.bc.parent=this;this.bc.setTransform(-84.65,258, +1,1,0,0,180,.5,.5);this.hc=new a.DK;this.hc.parent=this;this.hc.setTransform(117.35,613,1,1,0,0,0,.3,0);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.hc},{t:this.bc},{t:this.ac},{t:this.$b},{t:this.Yb},{t:this.Xb},{t:this.Wb},{t:this.Zb},{t:this.Ub},{t:this.Tb},{t:this.Sb},{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb},{t:this.Pb},{t:this.Mb},{t:this.Lb},{t:this.Jb},{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub}, +{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb}]}).wait(1));this.jc=new a.N2a;this.jc.parent=this;this.jc.setTransform(37.5,573,1,1,0,0,0,106.5,96);this.kc=new a.M2a;this.kc.parent=this;this.kc.setTransform(-96.5,573,1,1,0,0,0,106.5,96);this.lc=new a.Ama;this.lc.parent=this;this.lc.setTransform(37.5,381,1,1,0,0,0,106.5,96);this.nc=new a.L2a;this.nc.parent=this;this.nc.setTransform(-175.5,381,1,1,0,0,0,106.5,96);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.nc},{t:this.lc}, +{t:this.kc},{t:this.jc}]}).wait(1))}).prototype=k(a.Aba,new b.Rectangle(-329.8,215.5,1241.8,552.5),null);(a.OYa=function(d,e,f){this.initialize(d,e,f,{on:0,off:1});this.u=function(){this.T={storageSprite:{condition1:"$CONSTRUCTION == 'active'",frame1:"on",condition2:"",frame2:"off",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.NYa;this.instance.parent=this;this.instance.setTransform(0,-17, +1,1,0,0,0,0,.8);this.timeline.addTween(b.Tween.get(this.instance).to({_off:!0},1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-16.9,-29.8,34,44.9);(a.C8a=function(d,e,f){this.initialize(d,e,f,{active:0,inactive:1});this.u=function(){this.T={storageSprite:{condition1:"$TUTORIAL_DONE",frame1:"inactive",condition2:"$TUTORIAL_DONE == null",frame2:"active",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}};this.stop()};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2)); +this.instance=new a.dY;this.instance.parent=this;this.instance.setTransform(-.6,-17.5,1,1,0,0,0,-.5,-13);this.instance._off=!0;this.timeline.addTween(b.Tween.get(this.instance).wait(1).to({_off:!1},0).wait(1));this.g=new a.B8a;this.g.parent=this;this.g.setTransform(0,-5,1,1,0,0,0,0,-.5);this.timeline.addTween(b.Tween.get(this.g).to({_off:!0},1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-40,-45.5,80,73);(a.e5a=function(d,e,f){this.initialize(d,e,f,{unlocked:0,locked:1});this.u=function(){this.T= +{storageSprite:{condition1:"$PLAYER_TEAM == 'red'",frame1:"unlocked",condition2:"",frame2:"locked",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.o0a;this.instance.parent=this;this.instance.setTransform(1,-37.85,1,1,0,0,0,0,-37.9);this.g=new a.n0a;this.g.parent=this;this.g.setTransform(1,-37.85,1,1,0,0,0,0,-37.9);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.instance}]}).to({state:[{t:this.g}]}, +1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-68,-97.9,136,129.9);(a.CZa=function(d,e,f){this.initialize(d,e,f,{on:0,off:1});this.u=function(){this.T={storageSprite:{condition1:"!$RACE",frame1:"off",condition2:"",frame2:"on",condition3:"",frame3:"",condition4:"",frame4:"",condition5:"",frame5:""}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(2));this.instance=new a.BZa;this.instance.parent=this;this.instance.setTransform(0,-3.7,1,1,0,0,0,0,-3.9);this.timeline.addTween(b.Tween.get(this.instance).to({_off:!0}, +1).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-17,-16,34,34);(a.Yoa=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={region:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(228.85,416.75,3.9959,1.4806,0,0,0,1.2,-2.2);this.g=new a.N;this.g.parent=this;this.g.setTransform(108.85,416.75,3.9959,1.4806,0,0,0,1.2,-2.2);this.i=new a.N;this.i.parent=this;this.i.setTransform(242, +402.45,3.9425,2.7088,0,0,0,.1,.1);this.o=new a.N;this.o.parent=this;this.o.setTransform(97,402.45,3.9425,2.7088,0,0,0,.1,.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(185.75,870.3,.6322,7.2661,0,0,0,1.2,-2.2);this.O=new a.N;this.O.parent=this;this.O.setTransform(149.7,870.9,.6322,7.2661,0,0,0,1.2,-2.2);this.$=new a.N;this.$.parent=this;this.$.setTransform(418.75,715.95,1.998,6.0179,0,0,0,1.4,-2);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(418.75,611.95,1.998,6.0179,0,0,0, +1.4,-2);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(309.65,411.6,3.9959,5.2469,0,0,0,1.4,-2);this.va=new a.N;this.va.parent=this;this.va.setTransform(36.85,464.9,3.9959,1.4806,0,0,0,1.2,-2.2);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(53,448.1,3.9959,1.4806,0,0,0,1.2,-2.2);this.ya=new a.N;this.ya.parent=this;this.ya.setTransform(68.85,432.75,3.9959,1.4806,0,0,0,1.2,-2.2);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(294,448.1,3.9959,1.4806,0,0,0,1.2,-2.2);this.Ba= +new a.N;this.Ba.parent=this;this.Ba.setTransform(308.65,463.85,3.9959,1.4806,0,0,0,1.2,-2.2);this.Da=new a.N;this.Da.parent=this;this.Da.setTransform(-52.35,623.5,3.8759,4.0499,0,0,0,1.2,-2.1);this.Ea=new a.N;this.Ea.parent=this;this.Ea.setTransform(-3.35,593.5,3.8759,4.0499,0,0,0,1.2,-2.1);this.Ga=new a.N;this.Ga.parent=this;this.Ga.setTransform(387.65,631.5,3.8759,4.0499,0,0,0,1.2,-2.1);this.Ha=new a.N;this.Ha.parent=this;this.Ha.setTransform(351.5,583.5,3.8759,4.0499,0,0,0,1.2,-2.1);this.Ia=new a.N; +this.Ia.parent=this;this.Ia.setTransform(409,684.4,1.6234,4.0499,0,0,0,1.2,-2.1);this.Ja=new a.N;this.Ja.parent=this;this.Ja.setTransform(302,774,9.9899,1.2783,0,0,0,1.2,-2.2);this.Ka=new a.N;this.Ka.parent=this;this.Ka.setTransform(272,792,9.9899,1.2783,0,0,0,1.2,-2.2);this.La=new a.N;this.La.parent=this;this.La.setTransform(80,792,9.9899,1.2783,0,0,0,1.2,-2.2);this.Ma=new a.N;this.Ma.parent=this;this.Ma.setTransform(60,775,9.9899,1.2783,0,0,0,1.2,-2.2);this.Na=new a.N;this.Na.parent=this;this.Na.setTransform(186, +949,9.9899,1.2783,0,0,0,1.2,-2.2);this.Oa=new a.N;this.Oa.parent=this;this.Oa.setTransform(324.2,743,11.0513,4.0499,0,0,0,1.2,-2.2);this.Qa=new a.N;this.Qa.parent=this;this.Qa.setTransform(185.75,809.3,.6322,7.2661,0,0,0,1.2,-2.2);this.Ua=new a.N;this.Ua.parent=this;this.Ua.setTransform(149.7,809.9,.6322,7.2661,0,0,0,1.2,-2.2);this.Va=new a.N;this.Va.parent=this;this.Va.setTransform(-68.7,675.1,2.9864,6.1002,0,0,0,1.1,-2);this.Wa=new a.N;this.Wa.parent=this;this.Wa.setTransform(43,743,9.9899,4.0499, +0,0,0,1.2,-2.2);this.Xa=new a.N;this.Xa.parent=this;this.Xa.setTransform(342.25,520.85,5.9753,6.9676,0,0,0,1.2,-2.2);this.Ya=new a.N;this.Ya.parent=this;this.Ya.setTransform(7.25,518.15,5.9753,7.2109,0,0,0,1.2,-2.2);this.Za=new a.N;this.Za.parent=this;this.Za.setTransform(7.25,424.75,5.9753,7.0782,0,0,0,1.2,-2.2);this.$a=new a.N;this.$a.parent=this;this.$a.setTransform(272,415.35,3.9425,4.2911,0,0,0,.1,.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa}, +{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.ab=new a.c4;this.ab.parent=this;this.ab.setTransform(136,771,1,1,0,0,0,0,-5);this.hb=new a.b4;this.hb.parent=this;this.hb.setTransform(200, +771,1,1,0,0,0,0,-5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.hb},{t:this.ab}]}).wait(1));this.mb=new a.bY;this.mb.parent=this;this.mb.setTransform(169,770.9,1,4.6776,0,0,0,24,8.1);this.nb=new a.bY;this.nb.parent=this;this.nb.setTransform(138.15,829.65,1,3.6687,0,0,0,24,8.1);this.rb=new a.bY;this.rb.parent=this;this.rb.setTransform(197.8,829.65,1,3.6687,0,0,0,24,8.1);this.tb=new a.bY;this.tb.parent=this;this.tb.setTransform(168.8,867.1,1,5.759,0,0,0,24,8.2);this.ub=new a.voa;this.ub.parent= +this;this.ub.setTransform(168.8,779.3,1,1.5891,0,0,0,24,8.1);this.wb=new a.woa;this.wb.parent=this;this.wb.setTransform(172.2,828.15,1.4803,1.5903,0,0,0,28,8.4);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb}]}).wait(1));this.yb=new a.y8a;this.yb.parent=this;this.yb.setTransform(253,834.35,1,1,0,0,0,0,-23.9);this.Ab=new a.F8a;this.Ab.parent=this;this.Ab.setTransform(166.25,433);this.Cb=new a.E8a;this.Cb.parent=this;this.Cb.setTransform(168.05, +760.95);this.Db=new a.z8a;this.Db.parent=this;this.Db.setTransform(89.9,837.65,1,1,0,0,0,42.9,21.3);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb}]}).wait(1));this.Eb=new a.Fbb;this.Eb.parent=this;this.Eb.setTransform(332.6,664.4,1,1,0,0,0,-.5,-26.6);this.Fb=new a.Ww;this.Fb.parent=this;this.Fb.setTransform(82.05,659.4,1,1,0,0,0,0,-25.5);this.Gb=new a.Ww;this.Gb.parent=this;this.Gb.setTransform(89.05,476.05,1,1,0,0,0,0,-25.5);this.Hb=new a.Ww;this.Hb.parent= +this;this.Hb.setTransform(254.05,498.4,1,1,0,0,0,0,-25.5);this.Jb=new a.C8a;this.Jb.parent=this;this.Jb.setTransform(168,614);this.Lb=new a.D8a;this.Lb.parent=this;this.Lb.setTransform(167.4,535.6,1,1,0,0,0,0,-31.5);this.Mb=new a.Mx;this.Mb.parent=this;this.Mb.setTransform(73,510,1,1,0,0,0,0,-12);this.Pb=new a.Mx;this.Pb.parent=this;this.Pb.setTransform(262,623,1,1,0,0,180,0,-12);this.Nb=new a.Ok;this.Nb.parent=this;this.Nb.setTransform(108,453.05,1,1,0,0,0,0,-12.8);this.Qb=new a.Ok;this.Qb.parent= +this;this.Qb.setTransform(71.1,604.15,1,1,0,0,0,0,-12.8);this.Ob=new a.Ok;this.Ob.parent=this;this.Ob.setTransform(103.1,652.5,1,1,0,0,0,0,-12.8);this.Rb=new a.rza;this.Rb.parent=this;this.Rb.setTransform(158.95,950.3,1,1,0,0,0,-.1,.2);this.Sb=new a.Ok;this.Sb.parent=this;this.Sb.setTransform(44,593.05,1,1,0,0,0,0,-12.8);this.Tb=new a.Ok;this.Tb.parent=this;this.Tb.setTransform(363,701.05,1,1,0,0,0,0,-12.8);this.Ub=new a.Ok;this.Ub.parent=this;this.Ub.setTransform(285,685.05,1,1,0,0,0,0,-12.8);this.Zb= +new a.Ok;this.Zb.parent=this;this.Zb.setTransform(103,684.65,1,1,0,0,0,0,-12.8);this.Wb=new a.og;this.Wb.parent=this;this.Wb.setTransform(60,557,1,1,0,0,0,0,-21.5);this.Xb=new a.og;this.Xb.parent=this;this.Xb.setTransform(60,461,1,1,0,0,0,0,-21.5);this.Yb=new a.og;this.Yb.parent=this;this.Yb.setTransform(119,493,1,1,0,0,0,0,-21.5);this.$b=new a.og;this.$b.parent=this;this.$b.setTransform(269,470,1,1,0,0,0,0,-21.5);this.ac=new a.og;this.ac.parent=this;this.ac.setTransform(244,461,1,1,0,0,0,0,-21.5); +this.bc=new a.og;this.bc.parent=this;this.bc.setTransform(214,477,1,1,0,0,0,0,-21.5);this.hc=new a.og;this.hc.parent=this;this.hc.setTransform(262,557,1,1,0,0,0,0,-21.5);this.jc=new a.og;this.jc.parent=this;this.jc.setTransform(293,590,1,1,0,0,0,0,-21.5);this.kc=new a.og;this.kc.parent=this;this.kc.setTransform(253,661.6,1,1,0,0,0,0,-21.5);this.lc=new a.og;this.lc.parent=this;this.lc.setTransform(223.8,638.6,1,1,0,0,0,0,-21.5);this.nc=new a.df;this.nc.parent=this;this.nc.setTransform(105,600,1,1, +0,0,0,0,-16.5);this.tc=new a.df;this.tc.parent=this;this.tc.setTransform(105,520,1,1,0,0,0,0,-16.5);this.uc=new a.df;this.uc.parent=this;this.uc.setTransform(232,523,1,1,0,0,0,0,-16.5);this.xc=new a.df;this.xc.parent=this;this.xc.setTransform(233,600,1,1,0,0,0,0,-16.5);this.zc=new a.Gbb;this.zc.parent=this;this.zc.setTransform(19.6,664.4,1,1,0,0,0,-.5,-26.6);this.Ac=new a.Gm;this.Ac.parent=this;this.Ac.setTransform(132,716,1,1,0,0,0,0,-16.5);this.Bc=new a.Gm;this.Bc.parent=this;this.Bc.setTransform(199, +716,1,1,0,0,0,0,-16.5);this.yc=new a.Gm;this.yc.parent=this;this.yc.setTransform(132,635,1,1,0,0,0,0,-16.5);this.Dc=new a.Gm;this.Dc.parent=this;this.Dc.setTransform(132,676,1,1,0,0,0,0,-16.5);this.Ec=new a.Gm;this.Ec.parent=this;this.Ec.setTransform(199,676,1,1,0,0,0,0,-16.5);this.Fc=new a.Gm;this.Fc.parent=this;this.Fc.setTransform(199,635,1,1,0,0,0,0,-16.5);this.Gc=new a.Gm;this.Gc.parent=this;this.Gc.setTransform(132,411,1,1,0,0,0,0,-16.5);this.Jc=new a.Gm;this.Jc.parent=this;this.Jc.setTransform(119, +411,1,1,0,0,0,0,-16.5);this.Kc=new a.Gm;this.Kc.parent=this;this.Kc.setTransform(107,411,1,1,0,0,0,0,-16.5);this.Lc=new a.Gm;this.Lc.parent=this;this.Lc.setTransform(224,411,1,1,0,0,0,0,-16.5);this.Ic=new a.Gm;this.Ic.parent=this;this.Ic.setTransform(211,411,1,1,0,0,0,0,-16.5);this.Nc=new a.Gm;this.Nc.parent=this;this.Nc.setTransform(199,411,1,1,0,0,0,0,-16.5);this.Oc=new a.og;this.Oc.parent=this;this.Oc.setTransform(-41,653,1,1,0,0,0,0,-21.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Oc}, +{t:this.Nc},{t:this.Ic},{t:this.Lc},{t:this.Kc},{t:this.Jc},{t:this.Gc},{t:this.Fc},{t:this.Ec},{t:this.Dc},{t:this.yc},{t:this.Bc},{t:this.Ac},{t:this.zc},{t:this.xc},{t:this.uc},{t:this.tc},{t:this.nc},{t:this.lc},{t:this.kc},{t:this.jc},{t:this.hc},{t:this.bc},{t:this.ac},{t:this.$b},{t:this.Yb},{t:this.Xb},{t:this.Wb},{t:this.Zb},{t:this.Ub},{t:this.Tb},{t:this.Sb},{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb},{t:this.Pb},{t:this.Mb},{t:this.Lb},{t:this.Jb},{t:this.Hb},{t:this.Gb},{t:this.Fb}, +{t:this.Eb}]}).wait(1));this.Rc=new a.h3a;this.Rc.parent=this;this.Rc.setTransform(190.5,800.5,1,1,0,0,0,242.5,140.5);this.Uc=new a.jna;this.Uc.parent=this;this.Uc.setTransform(198.5,520.5,1,1,0,0,0,242.5,140.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Uc},{t:this.Rc}]}).wait(1))}).prototype=k(a.Yoa,new b.Rectangle(-288,-192,864,1154.1),null);(a.Gla=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={region:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1)); +this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(901.1,71,4.0211,3.0308,0,0,0,1.2,.2);this.g=new a.N;this.g.parent=this;this.g.setTransform(1209.5,263.45,6.6868,3.015,0,0,0,.6,-.1);this.i=new a.N;this.i.parent=this;this.i.setTransform(1097.3,-87.9,1.0018,.9882,0,0,0,1.2,.1);this.o=new a.N;this.o.parent=this;this.o.setTransform(1113.3,-95.75,1.0018,1.995,0,0,0,1.2,.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(1177.3,-39.9,1.0018,.9882,0,0,0,1.2,.1);this.O=new a.N; +this.O.parent=this;this.O.setTransform(893.9,312,3.4339,3,0,0,0,.7,0);this.$=new a.N;this.$.parent=this;this.$.setTransform(892.15,8.6,3.0373,3.0308,0,0,0,1.2,.4);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(972.5,176.9,2.9882,4.0027,0,0,0,1.5,.2);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(956.5,192.9,2.9882,4.0027,0,0,0,1.5,.2);this.va=new a.N;this.va.parent=this;this.va.setTransform(988.8,153.05,2.9882,5.0033,0,0,0,1.6,.2);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(940.5, +208.9,2.9882,4.0027,0,0,0,1.5,.2);this.ya=new a.N;this.ya.parent=this;this.ya.setTransform(968.3,168.4,5.9764,3.0067,0,0,0,1.4,.1);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(1038.2,47.45,4.9934,4.1294,0,0,0,1.3,.1);this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(1054.2,31.45,4.9934,4.1294,0,0,0,1.3,.1);this.Da=new a.N;this.Da.parent=this;this.Da.setTransform(1009,49.35,6.9751,6.0005,0,0,0,1.3,.2);this.Ea=new a.N;this.Ea.parent=this;this.Ea.setTransform(961.4,-160.55,1.9983, +2.0076,0,0,0,.7,-.4);this.Ga=new a.N;this.Ga.parent=this;this.Ga.setTransform(1009.4,-144.55,1.9983,2.0076,0,0,0,.7,-.4);this.Ha=new a.N;this.Ha.parent=this;this.Ha.setTransform(1033.3,-210.1,2.8935,4.0661,0,0,0,.7,-.4);this.Ia=new a.N;this.Ia.parent=this;this.Ia.setTransform(906.75,-169.55,2.9547,2.9342,0,0,0,1,-.7);this.Ja=new a.N;this.Ja.parent=this;this.Ja.setTransform(901.5,-112.1,3.975,1.9919,0,0,0,1.4,-.1);this.Ka=new a.N;this.Ka.parent=this;this.Ka.setTransform(1254.05,312,9.5552,3,0,0,0, +.7,0);this.La=new a.N;this.La.parent=this;this.La.setTransform(1128.7,312,9.5552,3,0,0,0,.7,0);this.Ma=new a.N;this.Ma.parent=this;this.Ma.setTransform(995,312,9.5552,3,0,0,0,.7,0);this.Na=new a.N;this.Na.parent=this;this.Na.setTransform(917.1,-103.95,3.975,.9929,0,0,0,1.3,.1);this.Oa=new a.N;this.Oa.parent=this;this.Oa.setTransform(920.15,-71.65,5.9827,2.9974,0,0,0,1.4,.1);this.Qa=new a.N;this.Qa.parent=this;this.Qa.setTransform(1067.45,8.95,5.3596,3.0308,0,0,0,1.2,.2);this.Ua=new a.N;this.Ua.parent= +this;this.Ua.setTransform(1038.2,1.45,4.9934,4.1294,0,0,0,1.3,.1);this.Va=new a.N;this.Va.parent=this;this.Va.setTransform(1035.8,-30.3,2.9867,4.1294,0,0,0,1.2,.1);this.Wa=new a.N;this.Wa.parent=this;this.Wa.setTransform(1014.8,72.25,6.0491,3.0308,0,0,0,1.2,.2);this.Xa=new a.N;this.Xa.parent=this;this.Xa.setTransform(1035.3,24,10.0297,3.0308,0,0,0,1.2,.2);this.Ya=new a.N;this.Ya.parent=this;this.Ya.setTransform(901.1,24,4.0211,3.0308,0,0,0,1.2,.2);this.Za=new a.N;this.Za.parent=this;this.Za.setTransform(983.15, +-248.05,2.9558,.9382,0,0,0,1,-.7);this.$a=new a.N;this.$a.parent=this;this.$a.setTransform(919,-201.7,6.0888,2.9342,0,0,0,1,-.7);this.ab=new a.N;this.ab.parent=this;this.ab.setTransform(909.85,-186.25,5.1078,2.9342,0,0,0,1,-.6);this.hb=new a.N;this.hb.parent=this;this.hb.setTransform(925.1,-217.25,6.9591,2.9342,0,0,0,.8,-.6);this.mb=new a.N;this.mb.parent=this;this.mb.setTransform(1025.8,-224.05,3.8904,1.944,0,0,0,.7,-.3);this.nb=new a.N;this.nb.parent=this;this.nb.setTransform(1049.3,-178.1,2.8935, +4.0661,0,0,0,.7,-.4);this.rb=new a.N;this.rb.parent=this;this.rb.setTransform(1124.7,-122.2,7.9804,3.1735,0,0,0,.6,-.2);this.tb=new a.N;this.tb.parent=this;this.tb.setTransform(1209.65,-103.35,6.6868,6.8156,0,0,0,.6,-.1);this.ub=new a.N;this.ub.parent=this;this.ub.setTransform(1257.65,-61.35,6.6868,6.8156,0,0,0,.6,-.1);this.wb=new a.N;this.wb.parent=this;this.wb.setTransform(1305.65,43.2,6.6868,6.8156,0,0,0,.6,-.1);this.yb=new a.N;this.yb.parent=this;this.yb.setTransform(1209.5,119.45,6.6868,3.015, +0,0,0,.6,-.1);this.Ab=new a.N;this.Ab.parent=this;this.Ab.setTransform(1206,197.75,.6895,6.8156,0,0,0,.6,-.1);this.Cb=new a.N;this.Cb.parent=this;this.Cb.setTransform(1113.5,263.7,6.6868,3,0,0,0,.6,-.1);this.Db=new a.N;this.Db.parent=this;this.Db.setTransform(1018.65,295.8,6.6868,3,0,0,0,.6,-.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a}, +{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.Eb=new a.FSa;this.Eb.parent=this;this.Eb.setTransform(988.95,-208.45,1,1,0,0,0,-2.5,-8.7);this.Fb=new a.eja; +this.Fb.parent=this;this.Fb.setTransform(1076.85,216.05,1,1,0,0,0,0,-.6);this.Gb=new a.eja;this.Gb.parent=this;this.Gb.setTransform(1161.2,217.05,1,1,0,0,0,0,-.6);this.Hb=new a.IZa;this.Hb.parent=this;this.Hb.setTransform(1088.65,72.05,1,1,0,0,0,.7,-3.3);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb}]}).wait(1));this.Jb=new a.e5a;this.Jb.parent=this;this.Jb.setTransform(1121.45,161.95,1,1.0004,0,0,0,0,-33);this.Lb=new a.kB;this.Lb.parent=this;this.Lb.setTransform(897, +82,1,1,0,0,0,0,-16.5);this.Mb=new a.kB;this.Mb.parent=this;this.Mb.setTransform(903,232,1,1,0,0,0,0,-16.5);this.Pb=new a.kB;this.Pb.parent=this;this.Pb.setTransform(903,122,1,1,0,0,0,0,-16.5);this.Nb=new a.bHa;this.Nb.parent=this;this.Nb.setTransform(1191,3.95,1,1,0,0,0,-.5,-36);this.Qb=new a.kVa;this.Qb.parent=this;this.Qb.setTransform(1112,-114.05,1,1,0,0,0,-.5,-36);this.Ob=new a.vx;this.Ob.parent=this;this.Ob.setTransform(962,206,1,1,0,0,0,12.5,12);this.Rb=new a.vx;this.Rb.parent=this;this.Rb.setTransform(1039, +128,1,1,0,0,0,.5,0);this.Sb=new a.vx;this.Sb.parent=this;this.Sb.setTransform(1060,38,1,1,0,0,0,12.5,12);this.Tb=new a.vx;this.Tb.parent=this;this.Tb.setTransform(926,-54,1,1,0,0,0,12.5,12);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Tb},{t:this.Sb},{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb},{t:this.Pb},{t:this.Mb},{t:this.Lb},{t:this.Jb}]}).wait(1));this.Ub=new a.Sma;this.Ub.parent=this;this.Ub.setTransform(1156,171,1,1,0,0,0,97,138);this.Zb=new a.Rma;this.Zb.parent=this;this.Zb.setTransform(961.5, +171,1,1,0,0,0,97.5,138);this.Wb=new a.Qma;this.Wb.parent=this;this.Wb.setTransform(1156,-1.5,1,1,0,0,0,97,138.5);this.Xb=new a.Pma;this.Xb.parent=this;this.Xb.setTransform(961.5,-105.5,1,1,0,0,0,97.5,138.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Xb},{t:this.Wb},{t:this.Zb},{t:this.Ub}]}).wait(1));this.Yb=new a.Csa;this.Yb.parent=this;this.Yb.setTransform(916.4,64.1,1,1,0,0,0,-9,-106.5);this.timeline.addTween(b.Tween.get(this.Yb).wait(1))}).prototype=k(a.Gla,new b.Rectangle(95.4, +-254.9,1440.6,591),null);(a.Gia=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={region:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(934.65,37.15,19.5479,.9281,0,0,0,.5,.3);this.g=new a.N;this.g.parent=this;this.g.setTransform(922.9,337.7,18.3564,1,0,0,0,.4,.1);this.i=new a.N;this.i.parent=this;this.i.setTransform(1236,40.15,18.2903,.9281,0,0,0,.5,.3);this.o=new a.N;this.o.parent=this; +this.o.setTransform(1361,205.25,1,26.1237,0,0,0,0,-.1);this.H=new a.N;this.H.parent=this;this.H.setTransform(1280.8,337.7,18.3564,1,0,0,0,.4,.1);this.O=new a.N;this.O.parent=this;this.O.setTransform(1003.9,337.7,18.3564,1,0,0,0,.4,.1);this.$=new a.N;this.$.parent=this;this.$.setTransform(973.25,198.25,1.0174,23.4925,0,0,0,.5,.5);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(1062.25,191.95,12.0578,.9281,0,0,0,.5,.1);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(1144,205.25,1, +26.1237,0,0,0,0,-.1);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.va=new a.aTa;this.va.parent=this;this.va.setTransform(1333,218.6,1,1,0,0,0,8,10);this.wa=new a.a4;this.wa.parent=this;this.wa.setTransform(1219,304.5,1,1,0,0,0,0,-.6);this.ya=new a.CZa;this.ya.parent=this;this.ya.setTransform(855,211,1,1,0,0,0,0,.4);this.Aa=new a.DYa;this.Aa.parent=this;this.Aa.setTransform(829.15, +49.9,1,1,0,0,0,0,-18.7);this.Ba=new a.cZa;this.Ba.parent=this;this.Ba.setTransform(942.85,253.95,1,1,0,0,0,0,-.6);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va}]}).wait(1));this.Da=new a.jcb;this.Da.parent=this;this.Da.setTransform(923,312.95,1,1,0,0,0,0,-14.8);this.Ea=new a.lcb;this.Ea.parent=this;this.Ea.setTransform(1305,312.95,1,1,0,0,0,0,-14.8);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ea},{t:this.Da}]}).wait(1)); +this.Ga=new a.q$a;this.Ga.parent=this;this.Ga.setTransform(1250.3,253.95,1,1,0,0,0,0,-.5);this.Ha=new a.JYa;this.Ha.parent=this;this.Ha.setTransform(924.6,306.45,1,1,0,0,0,0,-20.5);this.Ia=new a.Lk;this.Ia.parent=this;this.Ia.setTransform(1216.85,194.95,1,1,0,0,0,14.5,10);this.Ja=new a.Lk;this.Ja.parent=this;this.Ja.setTransform(1287.85,193.95,1,1,0,0,0,14.5,10);this.Ka=new a.Lk;this.Ka.parent=this;this.Ka.setTransform(1312.85,193.95,1,1,0,0,0,14.5,10);this.La=new a.Lk;this.La.parent=this;this.La.setTransform(1241.85, +193.95,1,1,0,0,0,14.5,10);this.Ma=new a.dta;this.Ma.parent=this;this.Ma.setTransform(1247.85,70.95,1,1,0,0,0,0,-49);this.Na=new a.$s;this.Na.parent=this;this.Na.setTransform(1348.5,110.95,1,1,0,0,180,-3.5,-27);this.Oa=new a.$s;this.Oa.parent=this;this.Oa.setTransform(1152.85,119.95,1,1,0,0,180,-3.5,-27);this.Qa=new a.$s;this.Qa.parent=this;this.Qa.setTransform(1318.8,34.65,1,1,0,0,180,-3.5,-27);this.Ua=new a.$s;this.Ua.parent=this;this.Ua.setTransform(1194.85,34.65,1,1,0,0,180,-3.5,-27);this.Va=new a.Nw; +this.Va.parent=this;this.Va.setTransform(1363,139,1,1,0,0,0,-3.5,-22.5);this.Wa=new a.$s;this.Wa.parent=this;this.Wa.setTransform(1371.85,266.75,1,1,0,0,180,-3.5,-27);this.Xa=new a.$s;this.Xa.parent=this;this.Xa.setTransform(1371.85,196.75,1,1,0,0,180,-3.5,-27);this.Ya=new a.Lk;this.Ya.parent=this;this.Ya.setTransform(1343.85,193.95,1,1,0,0,0,14.5,10);this.Za=new a.$s;this.Za.parent=this;this.Za.setTransform(1132.85,266.75,1,1,0,0,180,-3.5,-27);this.$a=new a.$s;this.$a.parent=this;this.$a.setTransform(983.85, +266.75,1,1,0,0,180,-3.5,-27);this.ab=new a.$s;this.ab.parent=this;this.ab.setTransform(1132.85,196.75,1,1,0,0,180,-3.5,-27);this.hb=new a.Lk;this.hb.parent=this;this.hb.setTransform(1183.85,194.95,1,1,0,0,0,14.5,10);this.mb=new a.$s;this.mb.parent=this;this.mb.setTransform(983.85,196.75,1,1,0,0,180,-3.5,-27);this.nb=new a.Lk;this.nb.parent=this;this.nb.setTransform(1141,313,1,1,0,0,0,.5,0);this.rb=new a.Lk;this.rb.parent=this;this.rb.setTransform(980,312,1,1,0,0,0,.5,0);this.tb=new a.Lk;this.tb.parent= +this;this.tb.setTransform(969,293,1,1,-90,0,0,.5,0);this.ub=new a.Lk;this.ub.parent=this;this.ub.setTransform(969,261,1,1,-90,0,0,.5,0);this.wb=new a.Lk;this.wb.parent=this;this.wb.setTransform(969,229,1,1,-90,0,0,.5,0);this.yb=new a.cta;this.yb.parent=this;this.yb.setTransform(903,71,1,1,0,0,0,0,-49);this.Ab=new a.Vw;this.Ab.parent=this;this.Ab.setTransform(792.95,120.95,1,1,0,0,0,-8.7,-27.1);this.Cb=new a.Nw;this.Cb.parent=this;this.Cb.setTransform(844,139,1,1,0,0,180,-3.5,-22.5);this.Db=new a.Nw; +this.Db.parent=this;this.Db.setTransform(973,139,1,1,0,0,0,-3.5,-22.5);this.Eb=new a.$s;this.Eb.parent=this;this.Eb.setTransform(778,70,1,1,0,0,180,-3.5,-27);this.Fb=new a.Lk;this.Fb.parent=this;this.Fb.setTransform(969,197,1,1,-90,0,0,.5,0);this.Gb=new a.Lk;this.Gb.parent=this;this.Gb.setTransform(892,194,1,1,0,0,0,14.5,10);this.Hb=new a.Lk;this.Hb.parent=this;this.Hb.setTransform(940,194,1,1,0,0,0,14.5,10);this.Jb=new a.Lk;this.Jb.parent=this;this.Jb.setTransform(965,194,1,1,0,0,0,14.5,10);this.Lb= +new a.Lk;this.Lb.parent=this;this.Lb.setTransform(806,194,1,1,0,0,0,14.5,10);this.Mb=new a.Lk;this.Mb.parent=this;this.Mb.setTransform(838,194,1,1,0,0,0,14.5,10);this.Pb=new a.Lk;this.Pb.parent=this;this.Pb.setTransform(869,194,1,1,0,0,0,14.5,10);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Pb},{t:this.Mb},{t:this.Lb},{t:this.Jb},{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb}, +{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga}]}).wait(1));this.Nb=new a.W2a;this.Nb.parent=this;this.Nb.setTransform(959,243.5,1,1,0,0,0,192,85.5);this.Qb=new a.X2a;this.Qb.parent=this;this.Qb.setTransform(1351,244.25,1,.9969,0,0,0,192,85.5);this.Ob=new a.Fma;this.Ob.parent=this;this.Ob.setTransform(1352,62.5, +1,1,0,0,0,192,85.5);this.Rb=new a.Ema;this.Rb.parent=this;this.Rb.setTransform(959,60.5,1,1,0,0,0,192,85.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb}]}).wait(1))}).prototype=k(a.Gia,new b.Rectangle(0,-191.9,1553,720.1),null);(a.Cda=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){this.T={region:{}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.N;this.instance.parent=this;this.instance.setTransform(440.15, +194.6,.9975,1.7503,0,0,0,.1,.4);this.g=new a.N;this.g.parent=this;this.g.setTransform(-96.3,-10.8,1.987,1.4911,0,0,0,-.2,.1);this.i=new a.N;this.i.parent=this;this.i.setTransform(-104.6,-33.15,2.9853,1.3042,0,0,0,-.2,.3);this.o=new a.N;this.o.parent=this;this.o.setTransform(232.85,112.4,7.0025,1.9845,0,0,0,.1,.2);this.H=new a.N;this.H.parent=this;this.H.setTransform(283,130.2,.6208,.6196,0,0,0,.1,.4);this.O=new a.N;this.O.parent=this;this.O.setTransform(291,109.2,.6208,.6196,0,0,0,.1,.4);this.$=new a.N; +this.$.parent=this;this.$.setTransform(307,125.2,.6208,.6196,0,0,0,.1,.4);this.ka=new a.N;this.ka.parent=this;this.ka.setTransform(323,141.2,.6208,.6196,0,0,0,.1,.4);this.ta=new a.N;this.ta.parent=this;this.ta.setTransform(312.15,150.15,3.0109,.7521,0,0,0,.1,.1);this.va=new a.N;this.va.parent=this;this.va.setTransform(283,203.2,.6208,.6196,0,0,0,.1,.4);this.wa=new a.N;this.wa.parent=this;this.wa.setTransform(408.8,200.2,2.9483,.9844,0,0,0,.1,.1);this.ya=new a.N;this.ya.parent=this;this.ya.setTransform(-146.75, +144.75,2.223,.6881,0,0,0,-.3,.4);this.Aa=new a.N;this.Aa.parent=this;this.Aa.setTransform(-109.55,152.6,2.3633,.3092,0,0,0,-.2,.3);this.Ba=new a.N;this.Ba.parent=this;this.Ba.setTransform(-260.9,-135.75,2.5295,1.0216,0,0,0,-.1,.2);this.Da=new a.N;this.Da.parent=this;this.Da.setTransform(-207.55,-65.8,1.9864,9.5662,0,0,0,.1,.2);this.Ea=new a.N;this.Ea.parent=this;this.Ea.setTransform(-40.7,-25.5,5.0009,3.8769,0,0,0,-.1,.4);this.Ga=new a.N;this.Ga.parent=this;this.Ga.setTransform(45.05,-22.9,5.5759, +2.9895,0,0,0,.1,.4);this.Ha=new a.N;this.Ha.parent=this;this.Ha.setTransform(64.25,-76.8,2.0038,5.7547,0,0,0,.1,.2);this.Ia=new a.N;this.Ia.parent=this;this.Ia.setTransform(45.05,-118.9,5.5759,2.9895,0,0,0,.1,.4);this.Ja=new a.N;this.Ja.parent=this;this.Ja.setTransform(-35.2,-119,5.5759,2.9895,0,0,0,.1,.4);this.Ka=new a.N;this.Ka.parent=this;this.Ka.setTransform(-115.2,-119,5.5759,2.9895,0,0,0,.1,.4);this.La=new a.N;this.La.parent=this;this.La.setTransform(-227.2,-119,5.5759,2.9895,0,0,0,.1,.4);this.Ma= +new a.N;this.Ma.parent=this;this.Ma.setTransform(327.65,-72,.67,3.5519,0,0,0,.2,.1);this.Na=new a.N;this.Na.parent=this;this.Na.setTransform(279.95,-84.25,2.8552,5.3931,0,0,0,.3,0);this.Oa=new a.N;this.Oa.parent=this;this.Oa.setTransform(313.95,-135.85,2.8552,1.0001,0,0,0,.3,0);this.Qa=new a.N;this.Qa.parent=this;this.Qa.setTransform(460.75,-106.5,2.1613,4.6302,0,0,0,.2,.1);this.Ua=new a.N;this.Ua.parent=this;this.Ua.setTransform(450.75,63.7,3.6477,1.7524,0,0,0,.2,.4);this.Va=new a.N;this.Va.parent= +this;this.Va.setTransform(433.95,82.65,3.6477,1.7524,0,0,0,.2,.4);this.Wa=new a.N;this.Wa.parent=this;this.Wa.setTransform(330.45,65,5.1359,1.9996,0,0,0,.2,.5);this.Xa=new a.N;this.Xa.parent=this;this.Xa.setTransform(352.65,78.05,3.7523,1.192,0,0,0,.4,.5);this.Ya=new a.N;this.Ya.parent=this;this.Ya.setTransform(464.3,163.3,2.0064,6.0359,0,0,0,.1,.6);this.Za=new a.N;this.Za.parent=this;this.Za.setTransform(-265.45,81.8,2.9449,7.0165,0,0,0,-.5,1.4);this.$a=new a.N;this.$a.parent=this;this.$a.setTransform(-265.45, +161.8,2.9449,7.0165,0,0,0,-.5,1.4);this.ab=new a.N;this.ab.parent=this;this.ab.setTransform(105.1,72,5.6219,6.5655,0,0,0,.2,.6);this.hb=new a.N;this.hb.parent=this;this.hb.setTransform(105.1,163,5.6219,6.5655,0,0,0,.2,.6);this.mb=new a.N;this.mb.parent=this;this.mb.setTransform(441,1.7,1.8284,5.932,0,0,0,.2,.4);this.nb=new a.N;this.nb.parent=this;this.nb.setTransform(396.1,-61.6,8.9604,2.2373,0,0,0,.2,.2);this.rb=new a.N;this.rb.parent=this;this.rb.setTransform(262.3,14.3,3.8756,6.7699,0,0,0,.3,.7); +this.tb=new a.N;this.tb.parent=this;this.tb.setTransform(176.6,27.5,7.5044,3.2603,0,0,0,.2,.5);this.ub=new a.N;this.ub.parent=this;this.ub.setTransform(-216.85,25,6.8102,2.9895,0,0,0,.1,.4);this.wb=new a.N;this.wb.parent=this;this.wb.setTransform(-109.75,25,3.8591,2.9895,0,0,0,.1,.4);this.yb=new a.N;this.yb.parent=this;this.yb.setTransform(18.55,25.4,6.0035,2.9895,0,0,0,.1,.4);this.Ab=new a.N;this.Ab.parent=this;this.Ab.setTransform(-63.1,57.3,6.0035,2.9895,0,0,0,.1,.4);this.Cb=new a.N;this.Cb.parent= +this;this.Cb.setTransform(288,120.05,1.9969,.9846);this.Db=new a.N;this.Db.parent=this;this.Db.setTransform(304.1,142.35,1.9969,1.7262,0,0,0,.1,.1);this.Eb=new a.N;this.Eb.parent=this;this.Eb.setTransform(312.3,194.1,3,1.8064,0,0,0,.1,.3);this.Fb=new a.N;this.Fb.parent=this;this.Fb.setTransform(-192,120.05,1.9844,1.0046,0,0,0,0,.1);this.Gb=new a.N;this.Gb.parent=this;this.Gb.setTransform(-176.15,112.3,1.9844,1.9844,0,0,0,0,.1);this.Hb=new a.N;this.Hb.parent=this;this.Hb.setTransform(464.3,72.95,2.0064, +8.5464,0,0,0,.1,.6);this.Jb=new a.N;this.Jb.parent=this;this.Jb.setTransform(-39.95,-101.3,5.0182,2.9895,0,0,0,.1,.3);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Jb},{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa},{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma}, +{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g},{t:this.instance}]}).wait(1));this.Lb=new a.rYa;this.Lb.parent=this;this.Lb.setTransform(22.5,-92.05,1,1,0,0,0,-.4,-11.1);this.Mb=new a.ASa;this.Mb.parent=this;this.Mb.setTransform(362.45,-132.35,1,1,0,0,0,0,.8);this.Pb=new a.BSa;this.Pb.parent=this;this.Pb.setTransform(348.45, +21.95,1,1,0,0,0,0,.8);this.Nb=new a.zSa;this.Nb.parent=this;this.Nb.setTransform(406.4,-111.05,1,1,0,0,0,0,.8);this.Qb=new a.TYa;this.Qb.parent=this;this.Qb.setTransform(361.55,131.1,1,1,0,0,0,0,.8);this.Ob=new a.OYa;this.Ob.parent=this;this.Ob.setTransform(333.1,-20.35,1,1,0,0,0,0,-17);this.Rb=new a.ySa;this.Rb.parent=this;this.Rb.setTransform(399.9,-7.9,1,1,0,0,0,0,.8);this.Sb=new a.WM;this.Sb.parent=this;this.Sb.setTransform(-216,64,1,1,0,0,0,8,8);this.Tb=new a.WSa;this.Tb.parent=this;this.Tb.setTransform(269.8, +209.45,1,1,0,0,0,8,10);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Tb},{t:this.Sb},{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb},{t:this.Pb},{t:this.Mb},{t:this.Lb}]}).wait(1));this.Ub=new a.ZSa;this.Ub.parent=this;this.Ub.setTransform(14,154.35,1,1,0,0,0,0,-1.1);this.Zb=new a.kEa;this.Zb.parent=this;this.Zb.setTransform(-190.05,182.75,1,1,0,0,0,9.5,-20.6);this.Wb=new a.$K;this.Wb.parent=this;this.Wb.setTransform(-88,-35,1,1,0,0,0,8,8);this.Xb=new a.$K;this.Xb.parent=this;this.Xb.setTransform(-72, +-35,1,1,0,0,0,8,8);this.Yb=new a.$K;this.Yb.parent=this;this.Yb.setTransform(-40,-35,1,1,0,0,0,8,8);this.$b=new a.N;this.$b.parent=this;this.$b.setTransform(-196.95,107.25,.6208,.6196,0,0,0,.1,.4);this.ac=new a.Pc;this.ac.parent=this;this.ac.setTransform(433,57,1,1,0,0,180,0,-22);this.bc=new a.Vb;this.bc.parent=this;this.bc.setTransform(421.9,-82.8,1,1,0,-90,90,0,-24);this.hc=new a.Pc;this.hc.parent=this;this.hc.setTransform(339.95,-81.85,1,1,0,0,0,0,-22);this.jc=new a.Vb;this.jc.parent=this;this.jc.setTransform(373.9, +-82.8,1,1,0,-90,90,0,-24);this.kc=new a.$e;this.kc.parent=this;this.kc.setTransform(407.9,59.2,1,1,0,0,0,0,-13.5);this.lc=new a.Pc;this.lc.parent=this;this.lc.setTransform(308,35,1,1,0,0,0,0,-22);this.nc=new a.$e;this.nc.parent=this;this.nc.setTransform(327.95,-103.5,1,1,0,0,0,0,-13.5);this.tc=new a.Ok;this.tc.parent=this;this.tc.setTransform(-236.85,83,1,1,0,0,0,0,-12.8);this.uc=new a.DAa;this.uc.parent=this;this.uc.setTransform(224.5,126.25);this.xc=new a.nZa;this.xc.parent=this;this.xc.setTransform(369.85, +196.65,1,1,0,0,0,0,-20.5);this.zc=new a.$K;this.zc.parent=this;this.zc.setTransform(-88,34,1,1,0,0,0,8,8);this.Ac=new a.$K;this.Ac.parent=this;this.Ac.setTransform(-72,34,1,1,0,0,0,8,8);this.Bc=new a.Pc;this.Bc.parent=this;this.Bc.setTransform(412.8,-68.05,1,1,0,0,0,0,-22);this.yc=new a.$e;this.yc.parent=this;this.yc.setTransform(342.1,-80.05,1,1,0,0,0,0,-13.5);this.Dc=new a.$e;this.Dc.parent=this;this.Dc.setTransform(421,55.5,1,1,0,0,0,0,-13.5);this.Ec=new a.Pc;this.Ec.parent=this;this.Ec.setTransform(345, +57,1,1,0,0,0,0,-22);this.Fc=new a.og;this.Fc.parent=this;this.Fc.setTransform(433.8,143.65,1,1,0,0,0,0,-21.5);this.Gc=new a.Ok;this.Gc.parent=this;this.Gc.setTransform(207.1,181.35,1,1,0,0,0,0,-12.8);this.Jc=new a.df;this.Jc.parent=this;this.Jc.setTransform(423.8,-142,1,1,0,0,0,0,-13);this.Kc=new a.df;this.Kc.parent=this;this.Kc.setTransform(394.8,-33,1,1,0,0,0,0,-13);this.Lc=new a.WYa;this.Lc.parent=this;this.Lc.setTransform(392.5,98.5,1,1,0,0,0,0,-13.5);this.Ic=new a.df;this.Ic.parent=this;this.Ic.setTransform(411.9, +94.1,1,1,0,0,0,0,-13);this.Nc=new a.df;this.Nc.parent=this;this.Nc.setTransform(371.9,94.1,1,1,0,0,0,0,-13);this.Oc=new a.Pc;this.Oc.parent=this;this.Oc.setTransform(362,47,1,1,0,0,180,0,-22);this.Rc=new a.Mx;this.Rc.parent=this;this.Rc.setTransform(339.9,-16.9,1,1,0,0,0,0,-12);this.Uc=new a.DC;this.Uc.parent=this;this.Uc.setTransform(323.9,16.4,1,1,0,0,0,0,-3.5);this.Xc=new a.Ok;this.Xc.parent=this;this.Xc.setTransform(24,-78.2,1,1,0,0,0,0,-12.8);this.jd=new a.og;this.jd.parent=this;this.jd.setTransform(-200.15, +31.4,1,1,0,0,0,0,-21.5);this.$c=new a.og;this.$c.parent=this;this.$c.setTransform(8.5,40.5,1,1,0,0,0,0,-21.5);this.kd=new a.og;this.kd.parent=this;this.kd.setTransform(34.1,78.95,1,1,0,0,0,0,-21.5);this.hd=new a.DC;this.hd.parent=this;this.hd.setTransform(-175.85,45.3,1,1,0,0,0,0,-3.5);this.ld=new a.mEa;this.ld.parent=this;this.ld.setTransform(-112.5,104.95,1,1,0,0,0,-.5,-36);this.nd=new a.og;this.nd.parent=this;this.nd.setTransform(-124.15,25.05,1,1,0,0,0,0,-21.5);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.nd}, +{t:this.ld},{t:this.hd},{t:this.kd},{t:this.$c},{t:this.jd},{t:this.Xc},{t:this.Uc},{t:this.Rc},{t:this.Oc},{t:this.Nc},{t:this.Ic},{t:this.Lc},{t:this.Kc},{t:this.Jc},{t:this.Gc},{t:this.Fc},{t:this.Ec},{t:this.Dc},{t:this.yc},{t:this.Bc},{t:this.Ac},{t:this.zc},{t:this.xc},{t:this.uc},{t:this.tc},{t:this.nc},{t:this.lc},{t:this.kc},{t:this.jc},{t:this.hc},{t:this.bc},{t:this.ac},{t:this.$b},{t:this.Yb},{t:this.Xb},{t:this.Wb},{t:this.Zb},{t:this.Ub}]}).wait(1));this.od=new a.T2a;this.od.parent= +this;this.od.setTransform(288,120,1,1,0,0,0,192,88);this.rd=new a.S2a;this.rd.parent=this;this.rd.setTransform(-103,120,1,1,0,0,0,192,88);this.vd=new a.R2a;this.vd.parent=this;this.vd.setTransform(288,-55,1,1,0,0,0,192,88);this.wd=new a.Q2a;this.wd.parent=this;this.wd.setTransform(-96,-55,1,1,0,0,0,192,88);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.wd},{t:this.vd},{t:this.rd},{t:this.od}]}).wait(1))}).prototype=k(a.Cda,new b.Rectangle(-295,-159,782,544),null);(a.jqa=function(d,e,f){this.initialize(d, +e,f,{});this.u=function(){this.T={map:{positionalDrawOrder:!1},cannonWorld:{},camera:{pos:{x:0,y:0},ease:.6,speed:120}}};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.Player;this.instance.parent=this;this.instance.setTransform(-9.8,714.95);this.timeline.addTween(b.Tween.get(this.instance).wait(1));this.g=new a.xW;this.g.parent=this;this.g.setTransform(-2098,172,1,1,0,0,0,0,-10);this.i=new a.Cga;this.i.parent=this;this.i.setTransform(-1689,-124,1,1,0,0,0,0,-10); +this.o=new a.Ega;this.o.parent=this;this.o.setTransform(-1476,-204,1,1,0,0,0,0,-10);this.H=new a.wha;this.H.parent=this;this.H.setTransform(-2099,-103,1,1,0,0,0,0,-10);this.O=new a.Bga;this.O.parent=this;this.O.setTransform(-1780,-16,1,1,0,0,0,0,-10);this.$=new a.yW;this.$.parent=this;this.$.setTransform(-1483,102,1,1,0,0,0,0,-10);this.ka=new a.vha;this.ka.parent=this;this.ka.setTransform(-1186,22,1,1,0,0,0,0,-10);this.ta=new a.zga;this.ta.parent=this;this.ta.setTransform(-1200.9,786.95,1,1,0,0,0, +0,-10);this.va=new a.dga;this.va.parent=this;this.va.setTransform(-1238.9,1074.95,1,1,0,0,0,0,-10);this.wa=new a.xga;this.wa.parent=this;this.wa.setTransform(277.35,-1028.2,1,1,0,0,0,0,-10);this.ya=new a.Tga;this.ya.parent=this;this.ya.setTransform(1460.05,-98.1,1,1.0001,0,0,0,0,-10);this.Aa=new a.Aha;this.Aa.parent=this;this.Aa.setTransform(1250.85,-762.2,1,1,0,0,0,0,-10);this.Ba=new a.kga;this.Ba.parent=this;this.Ba.setTransform(-1310.3,944.15,1,1,0,0,0,0,-10);this.Da=new a.Qga;this.Da.parent=this; +this.Da.setTransform(220.35,-523.2,1,1,0,0,0,0,-10);this.Ea=new a.Oga;this.Ea.parent=this;this.Ea.setTransform(-807.9,598.95,1,1,0,0,0,0,-10);this.Ga=new a.vW;this.Ga.parent=this;this.Ga.setTransform(-329.65,-1105.2,1,1,0,0,0,0,-10);this.Ha=new a.eha;this.Ha.parent=this;this.Ha.setTransform(1565.05,211.35,1,1.0001,0,0,0,0,-10);this.Ia=new a.fga;this.Ia.parent=this;this.Ia.setTransform(-1120.65,-845.2,1,1,0,0,0,0,-10);this.Ja=new a.xha;this.Ja.parent=this;this.Ja.setTransform(-883.9,598.95,1,1,0,0, +0,0,-10);this.Ka=new a.tW;this.Ka.parent=this;this.Ka.setTransform(1595.25,566.3,1,1,0,0,0,0,-10);this.La=new a.Mga;this.La.parent=this;this.La.setTransform(155.1,590.95,1,1,0,0,0,0,-10);this.Ma=new a.Lga;this.Ma.parent=this;this.Ma.setTransform(-167.9,590.95,1,1,0,0,0,0,-10);this.Na=new a.sW;this.Na.parent=this;this.Na.setTransform(1251.25,566.3,1,1,0,0,0,0,-10);this.Oa=new a.Aga;this.Oa.parent=this;this.Oa.setTransform(830.25,602.35,1,1,0,0,0,0,-10);this.Qa=new a.Yga;this.Qa.parent=this;this.Qa.setTransform(1501.2, +-630.05,1,1,0,0,0,0,-10);this.Ua=new a.Zga;this.Ua.parent=this;this.Ua.setTransform(1045.2,-1090.05,1,1,0,0,0,0,-10);this.Va=new a.cha;this.Va.parent=this;this.Va.setTransform(944.2,-523.05,1,1,0,0,0,0,-10);this.Wa=new a.bha;this.Wa.parent=this;this.Wa.setTransform(1207.2,-622.05,1,1,0,0,0,0,-10);this.Xa=new a.aha;this.Xa.parent=this;this.Xa.setTransform(1159.2,-716.05,1,1,0,0,0,0,-10);this.Ya=new a.$ga;this.Ya.parent=this;this.Ya.setTransform(931.2,-716.05,1,1,0,0,0,0,-10);this.Za=new a.Xga;this.Za.parent= +this;this.Za.setTransform(1046.2,-608.05,1,1,0,0,0,0,-10);this.$a=new a.nha;this.$a.parent=this;this.$a.setTransform(981.05,602.35,1,1,0,0,0,0,-10);this.ab=new a.Nga;this.ab.parent=this;this.ab.setTransform(1636.05,42.35,1,1.0001,0,0,0,0,-10);this.hb=new a.Sga;this.hb.parent=this;this.hb.setTransform(1558.05,-72.65,1,1.0001,0,0,0,0,-10);this.mb=new a.kha;this.mb.parent=this;this.mb.setTransform(1262.05,77.35,1,1.0001,0,0,0,0,-10);this.nb=new a.tga;this.nb.parent=this;this.nb.setTransform(131.35,-693.2, +1,1,0,0,0,0,-10);this.rb=new a.wW;this.rb.parent=this;this.rb.setTransform(-210.65,-1241.2,1,1,0,0,0,0,-10);this.tb=new a.uW;this.tb.parent=this;this.tb.setTransform(-130.65,-1008.2,1,1,0,0,0,0,-10);this.ub=new a.Dga;this.ub.parent=this;this.ub.setTransform(-156.65,-688.2,1,1,0,0,0,0,-10);this.wb=new a.wga;this.wb.parent=this;this.wb.setTransform(-314.65,-610.2,1,1,0,0,0,0,-10);this.yb=new a.iga;this.yb.parent=this;this.yb.setTransform(-953.65,-877.2,1,1,0,0,0,0,-10);this.Ab=new a.qga;this.Ab.parent= +this;this.Ab.setTransform(-1407.65,-691.2,1,1,0,0,0,0,-10);this.Cb=new a.pga;this.Cb.parent=this;this.Cb.setTransform(-1408.65,-776.2,1,1,0,0,0,0,-10);this.Db=new a.oga;this.Db.parent=this;this.Db.setTransform(-1382.65,-874.2,1,1,0,0,0,0,-10);this.Eb=new a.dha;this.Eb.parent=this;this.Eb.setTransform(-1295.65,-660.2,1,1,0,0,0,0,-10);this.Fb=new a.ega;this.Fb.parent=this;this.Fb.setTransform(-1120.65,-730.2,1,1,0,0,0,0,-10);this.Gb=new a.qha;this.Gb.parent=this;this.Gb.setTransform(-1042.75,589.35, +1,1,0,0,0,0,-10);this.Hb=new a.jga;this.Hb.parent=this;this.Hb.setTransform(-1346.9,640.95,1,1,0,0,0,0,-10);this.Jb=new a.rha;this.Jb.parent=this;this.Jb.setTransform(-1019.9,935.95,1,1,0,0,0,0,-10);this.Lb=new a.rga;this.Lb.parent=this;this.Lb.setTransform(-742.9,830.3,1,1,0,0,0,0,-10);this.Mb=new a.Jga;this.Mb.parent=this;this.Mb.setTransform(-1277.9,790.95,1,1,0,0,0,0,-10);this.Pb=new a.Rga;this.Pb.parent=this;this.Pb.setTransform(-761.9,682.95,1,1,0,0,0,0,-10);this.Nb=new a.yga;this.Nb.parent= +this;this.Nb.setTransform(-705.9,965.95,1,1,0,0,0,0,-10);this.Qb=new a.oha;this.Qb.parent=this;this.Qb.setTransform(-411.9,476.95,1,1,0,0,0,0,-10);this.Ob=new a.yha;this.Ob.parent=this;this.Ob.setTransform(90.1,-147.95,1,1,0,0,0,0,-10);this.Rb=new a.Pga;this.Rb.parent=this;this.Rb.setTransform(581.25,682.3,1,1,0,0,0,0,-10);this.Sb=new a.Wga;this.Sb.parent=this;this.Sb.setTransform(693.2,-483.05,1,1,0,0,0,0,-10);this.Tb=new a.sga;this.Tb.parent=this;this.Tb.setTransform(-9.9,-558.9,1,1,0,0,0,0,-10); +this.Ub=new a.xba;this.Ub.parent=this;this.Ub.setTransform(-712.65,-510.2,1,1,0,0,0,0,-10);this.Zb=new a.pha;this.Zb.parent=this;this.Zb.setTransform(-610.75,853.35,1,1,0,0,0,0,-10);this.Wb=new a.jha;this.Wb.parent=this;this.Wb.setTransform(931.05,-6.65,1,1.0001,0,0,0,0,-10);this.Xb=new a.Kga;this.Xb.parent=this;this.Xb.setTransform(-10.9,.05,1,1,0,0,0,0,-10);this.Yb=new a.zha;this.Yb.parent=this;this.Yb.setTransform(-9.9,424.95,1,1,0,0,0,0,-10);this.$b=new a.uha;this.$b.parent=this;this.$b.setTransform(-10.35, +717.95);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.$b},{t:this.Yb},{t:this.Xb},{t:this.Wb},{t:this.Zb},{t:this.Ub},{t:this.Tb},{t:this.Sb},{t:this.Rb},{t:this.Ob},{t:this.Qb},{t:this.Nb},{t:this.Pb},{t:this.Mb},{t:this.Lb},{t:this.Jb},{t:this.Hb},{t:this.Gb},{t:this.Fb},{t:this.Eb},{t:this.Db},{t:this.Cb},{t:this.Ab},{t:this.yb},{t:this.wb},{t:this.ub},{t:this.tb},{t:this.rb},{t:this.nb},{t:this.mb},{t:this.hb},{t:this.ab},{t:this.$a},{t:this.Za},{t:this.Ya},{t:this.Xa},{t:this.Wa}, +{t:this.Va},{t:this.Ua},{t:this.Qa},{t:this.Oa},{t:this.Na},{t:this.Ma},{t:this.La},{t:this.Ka},{t:this.Ja},{t:this.Ia},{t:this.Ha},{t:this.Ga},{t:this.Ea},{t:this.Da},{t:this.Ba},{t:this.Aa},{t:this.ya},{t:this.wa},{t:this.va},{t:this.ta},{t:this.ka},{t:this.$},{t:this.O},{t:this.H},{t:this.o},{t:this.i},{t:this.g}]}).wait(1));this.ac=new a.vma;this.ac.parent=this;this.ac.setTransform(-1205.6,830.55,1,.9997,0,0,0,605.5,361.7);this.timeline.addTween(b.Tween.get(this.ac).wait(1));this.bc=new a.uma; +this.bc.parent=this;this.bc.setTransform(-1787,493.1,1,1.0002,0,0,0,24,24.1);this.timeline.addTween(b.Tween.get(this.bc).wait(1));this.hc=new a.Bba;this.hc.parent=this;this.hc.setTransform(-6.65,725.25);this.jc=new a.Yoa;this.jc.parent=this;this.jc.setTransform(-154,-78,1,1,0,0,0,24,24);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.jc},{t:this.hc}]}).wait(1));this.kc=new a.Jia;this.kc.parent=this;this.kc.setTransform(373,446,1,1,0,0,0,24,24);this.lc=new a.Kia;this.lc.parent=this;this.lc.setTransform(373, +446,1,1,0,0,0,24,24);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.lc},{t:this.kc}]}).wait(1));this.nc=new a.Gia;this.nc.parent=this;this.nc.setTransform(373,446,1,1,0,0,0,24,24);this.timeline.addTween(b.Tween.get(this.nc).wait(1));this.tc=new a.qpa;this.tc.parent=this;this.tc.setTransform(-156,-78,1,1,0,0,0,24,24);this.uc=new a.opa;this.uc.parent=this;this.uc.setTransform(-156,-78,1,1,0,0,0,24,24);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.uc},{t:this.tc}]}).wait(1));this.xc= +new a.mpa;this.xc.parent=this;this.xc.setTransform(-156,-78,1,1,0,0,0,24,24);this.zc=new a.npa;this.zc.parent=this;this.zc.setTransform(-156,-78,1,1,0,0,0,24,24);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.zc},{t:this.xc}]}).wait(1));this.Ac=new a.f_;this.Ac.parent=this;this.Ac.setTransform(-156,-78,1,1,0,0,0,24,24);this.Bc=new a.ppa;this.Bc.parent=this;this.Bc.setTransform(-156,-78,1,1,0,0,0,24,24);this.shape=new b.Shape;this.shape.graphics.f("#E0F1F4").s().p("AAAAHIgEgDIgBgCQgCgCADgEQACgCACAAQAEAAACAEIABACIAAABIgBADQgCADgEAAIAAAAg"); +this.shape.setTransform(-428.6864,448.4341);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.shape},{t:this.Bc},{t:this.Ac}]}).wait(1));this.yc=new a.Sna;this.yc.parent=this;this.yc.setTransform(-1926.4,-49.8,1,1,0,0,0,-210.4,201.2);this.timeline.addTween(b.Tween.get(this.yc).wait(1));this.Dc=new a.VX;this.Dc.parent=this;this.Dc.setTransform(-1236,-35,1,1,0,0,0,479,216);this.timeline.addTween(b.Tween.get(this.Dc).wait(1));this.Ec=new a.Hla;this.Ec.parent=this;this.Ec.setTransform(468,13.95, +1,1.0001,0,0,0,24,24);this.timeline.addTween(b.Tween.get(this.Ec).wait(1));this.Fc=new a.Gla;this.Fc.parent=this;this.Fc.setTransform(468,13.95,1,1.0001,0,0,0,24,24);this.timeline.addTween(b.Tween.get(this.Fc).wait(1));this.Gc=new a.TU;this.Gc.parent=this;this.Gc.setTransform(-1361,-1138.15,1,.9984,0,0,0,24,23.9);this.timeline.addTween(b.Tween.get(this.Gc).wait(1));this.Jc=new a.Aba;this.Jc.parent=this;this.Jc.setTransform(-1360,-1135.05,1,.9989,0,0,0,24,24);this.timeline.addTween(b.Tween.get(this.Jc).wait(1)); +this.Kc=new a.Bda;this.Kc.parent=this;this.Kc.setTransform(-115,-816,1,1,0,0,0,0,8);this.timeline.addTween(b.Tween.get(this.Kc).wait(1));this.Lc=new a.Cda;this.Lc.parent=this;this.Lc.setTransform(-115,-817,1,1,0,0,0,0,8);this.Ic=new a.Dda;this.Ic.parent=this;this.Ic.setTransform(-115,-817,1,1,0,0,0,0,8);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Ic},{t:this.Lc}]}).wait(1));this.Nc=new a.qka;this.Nc.parent=this;this.Nc.setTransform(613,-847,1,1,0,0,0,24,24);this.timeline.addTween(b.Tween.get(this.Nc).wait(1)); +this.Oc=new a.bT;this.Oc.parent=this;this.Oc.setTransform(613,-848,1,1,0,0,0,24,24);this.Rc=new a.rka;this.Rc.parent=this;this.Rc.setTransform(613,-847,1,1,0,0,0,24,24);this.timeline.addTween(b.Tween.get({}).to({state:[{t:this.Rc},{t:this.Oc}]}).wait(1))}).prototype=k(a.jqa,new b.Rectangle(-2323.9,-1496,4225.9,2793.9),null);(a.oU=function(d,e,f){this.initialize(d,e,f,{});this.u=function(){};this.timeline.addTween(b.Tween.get(this).call(this.u).wait(1));this.instance=new a.bca;this.instance.parent= +this;this.instance.setTransform(0,0,3,3);this.instance.alpha=0;this.timeline.addTween(b.Tween.get(this.instance).wait(1));this.g=new a.mAa;this.g.parent=this;this.g.setTransform(0,0,3,3);this.timeline.addTween(b.Tween.get(this.g).wait(1));this.i=new a.oAa;this.i.parent=this;this.i.setTransform(480,270,1,1,0,0,0,0,-270);this.timeline.addTween(b.Tween.get(this.i).wait(1));this.o=new a.jqa;this.o.parent=this;this.o.setTransform(502.05,-1958.55,3,3);this.timeline.addTween(b.Tween.get(this.o).wait(1)); +this.H=new a.w9a;this.H.parent=this;this.H.setTransform(0,0,3,3);this.timeline.addTween(b.Tween.get(this.H).wait(1))}).prototype=c=new b.MovieClip;c.j=new b.Rectangle(-5989.8,-6176.4,12197.900000000001,8111.7);a.properties={id:"6B325686132B46298EE25D130F14A658",width:960,height:540,fps:25,color:"#CCCCCC",opacity:1,aB:[{src:"images_overworld/_1x1DarkSand.png",id:"_1x1DarkSand"},{src:"images_overworld/_1x1waveedge.png",id:"_1x1waveedge"},{src:"images_overworld/_3TargetsArt.png",id:"_3TargetsArt"},{src:"images_overworld/_3x3Syncwater.png", +id:"_3x3Syncwater"},{src:"images_overworld/_3x3water.png",id:"_3x3water"},{src:"images_overworld/AdanTree.png",id:"AdanTree"},{src:"images_overworld/ArcadeArt.png",id:"ArcadeArt"},{src:"images_overworld/ArcheryArrowBoulder1Art.png",id:"ArcheryArrowBoulder1Art"},{src:"images_overworld/ArcheryBoatDojoArt.png",id:"ArcheryBoatDojoArt"},{src:"images_overworld/ArcheryBoatDoor2Art.png",id:"ArcheryBoatDoor2Art"},{src:"images_overworld/ArcheryBoatHouse1Art.png",id:"ArcheryBoatHouse1Art"},{src:"images_overworld/ArcheryBoulder1Art.png", +id:"ArcheryBoulder1Art"},{src:"images_overworld/ArcheryBoulder2Art.png",id:"ArcheryBoulder2Art"},{src:"images_overworld/ArcheryBoulder3Art.png",id:"ArcheryBoulder3Art"},{src:"images_overworld/ArcheryBoulder4Art.png",id:"ArcheryBoulder4Art"},{src:"images_overworld/ArcheryDock1Art.png",id:"ArcheryDock1Art"},{src:"images_overworld/ArcheryDojoBalconyArt.png",id:"ArcheryDojoBalconyArt"},{src:"images_overworld/ArcheryDojoRoofArt.png",id:"ArcheryDojoRoofArt"},{src:"images_overworld/ArcheryE_01.png",id:"ArcheryE_01"}, +{src:"images_overworld/ArcheryE_03.png",id:"ArcheryE_03"},{src:"images_overworld/ArcheryE_04.png",id:"ArcheryE_04"},{src:"images_overworld/ArcheryIconArt.png",id:"ArcheryIconArt"},{src:"images_overworld/ArcherySignArt.png",id:"ArcherySignArt"},{src:"images_overworld/ArcheryTree1Art.png",id:"ArcheryTree1Art"},{src:"images_overworld/ArcheryTree2Art.png",id:"ArcheryTree2Art"},{src:"images_overworld/ArcheryTree3Art.png",id:"ArcheryTree3Art"},{src:"images_overworld/ArcheryW_01.png",id:"ArcheryW_01"},{src:"images_overworld/ArcheryW_02.png", +id:"ArcheryW_02"},{src:"images_overworld/ArcheryW_03.png",id:"ArcheryW_03"},{src:"images_overworld/ArcheryW_04.png",id:"ArcheryW_04"},{src:"images_overworld/ArcheyBoatDoor1Art.png",id:"ArcheyBoatDoor1Art"},{src:"images_overworld/ArrowCollectorArt1.png",id:"ArrowCollectorArt1"},{src:"images_overworld/ArrowCollectorArt2.png",id:"ArrowCollectorArt2"},{src:"images_overworld/BakeryArt.png",id:"BakeryArt"},{src:"images_overworld/BambooTree1Art.png",id:"BambooTree1Art"},{src:"images_overworld/BambooTree2Art.png", +id:"BambooTree2Art"},{src:"images_overworld/BambooTree3Art.png",id:"BambooTree3Art"},{src:"images_overworld/BanyanTreeTop.png",id:"BanyanTreeTop"},{src:"images_overworld/BanyanTreeTrunk.png",id:"BanyanTreeTrunk"},{src:"images_overworld/BeachDoorArt.png",id:"BeachDoorArt"},{src:"images_overworld/BeachWaveArt2.png",id:"BeachWaveArt2"},{src:"images_overworld/BirdIdleSArt.png",id:"BirdIdleSArt"},{src:"images_overworld/Bitmap724.png",id:"Bitmap724"},{src:"images_overworld/Bitmap827.png",id:"Bitmap827"}, +{src:"images_overworld/Bitmap828.png",id:"Bitmap828"},{src:"images_overworld/Bitmap829.png",id:"Bitmap829"},{src:"images_overworld/Bitmap830.png",id:"Bitmap830"},{src:"images_overworld/Bitmap831.png",id:"Bitmap831"},{src:"images_overworld/Bitmap832.png",id:"Bitmap832"},{src:"images_overworld/Bitmap833.png",id:"Bitmap833"},{src:"images_overworld/Bitmap834.png",id:"Bitmap834"},{src:"images_overworld/Bitmap836.png",id:"Bitmap836"},{src:"images_overworld/Bitmap837.png",id:"Bitmap837"},{src:"images_overworld/Bitmap838.png", +id:"Bitmap838"},{src:"images_overworld/Bitmap839.png",id:"Bitmap839"},{src:"images_overworld/Bitmap840.png",id:"Bitmap840"},{src:"images_overworld/Bitmap841.png",id:"Bitmap841"},{src:"images_overworld/Bitmap842.png",id:"Bitmap842"},{src:"images_overworld/Bitmap843.png",id:"Bitmap843"},{src:"images_overworld/Bitmap844.png",id:"Bitmap844"},{src:"images_overworld/Bitmap845.png",id:"Bitmap845"},{src:"images_overworld/Bitmap846.png",id:"Bitmap846"},{src:"images_overworld/Bitmap847.png",id:"Bitmap847"}, +{src:"images_overworld/Bitmap848.png",id:"Bitmap848"},{src:"images_overworld/Bitmap849.png",id:"Bitmap849"},{src:"images_overworld/Bitmap852.png",id:"Bitmap852"},{src:"images_overworld/Bitmap853.png",id:"Bitmap853"},{src:"images_overworld/Bitmap854.png",id:"Bitmap854"},{src:"images_overworld/Bitmap855.png",id:"Bitmap855"},{src:"images_overworld/Bitmap856.png",id:"Bitmap856"},{src:"images_overworld/Bitmap857.png",id:"Bitmap857"},{src:"images_overworld/Bitmap858.png",id:"Bitmap858"},{src:"images_overworld/Bitmap859.png", +id:"Bitmap859"},{src:"images_overworld/Bitmap860.png",id:"Bitmap860"},{src:"images_overworld/Bitmap861.png",id:"Bitmap861"},{src:"images_overworld/Bitmap862.png",id:"Bitmap862"},{src:"images_overworld/Bitmap863.png",id:"Bitmap863"},{src:"images_overworld/Bitmap864.png",id:"Bitmap864"},{src:"images_overworld/Bitmap865.png",id:"Bitmap865"},{src:"images_overworld/Bitmap866.png",id:"Bitmap866"},{src:"images_overworld/Bitmap867.png",id:"Bitmap867"},{src:"images_overworld/Bitmap868.png",id:"Bitmap868"}, +{src:"images_overworld/Bitmap869.png",id:"Bitmap869"},{src:"images_overworld/Bitmap870.png",id:"Bitmap870"},{src:"images_overworld/Bitmap871.png",id:"Bitmap871"},{src:"images_overworld/Bitmap872.png",id:"Bitmap872"},{src:"images_overworld/Bitmap873.png",id:"Bitmap873"},{src:"images_overworld/Bitmap874.png",id:"Bitmap874"},{src:"images_overworld/Bitmap875.png",id:"Bitmap875"},{src:"images_overworld/Bitmap876.png",id:"Bitmap876"},{src:"images_overworld/Bitmap877.png",id:"Bitmap877"},{src:"images_overworld/Bitmap895copy.png", +id:"Bitmap895copy"},{src:"images_overworld/Bitmap896copy.png",id:"Bitmap896copy"},{src:"images_overworld/Bitmap897copy.png",id:"Bitmap897copy"},{src:"images_overworld/Bitmap898copy.png",id:"Bitmap898copy"},{src:"images_overworld/Bitmap899.png",id:"Bitmap899"},{src:"images_overworld/Bitmap900.png",id:"Bitmap900"},{src:"images_overworld/Bitmap901.png",id:"Bitmap901"},{src:"images_overworld/Bitmap902.png",id:"Bitmap902"},{src:"images_overworld/Bitmap903.png",id:"Bitmap903"},{src:"images_overworld/Bitmap904.png", +id:"Bitmap904"},{src:"images_overworld/Bitmap904copy.png",id:"Bitmap904copy"},{src:"images_overworld/Bitmap905.png",id:"Bitmap905"},{src:"images_overworld/Bitmap906.png",id:"Bitmap906"},{src:"images_overworld/Bitmap906copy.png",id:"Bitmap906copy"},{src:"images_overworld/Bitmap907.png",id:"Bitmap907"},{src:"images_overworld/Bitmap907copy.png",id:"Bitmap907copy"},{src:"images_overworld/Bitmap908.png",id:"Bitmap908"},{src:"images_overworld/Bitmap908copy.png",id:"Bitmap908copy"},{src:"images_overworld/Bitmap909.png", +id:"Bitmap909"},{src:"images_overworld/Bitmap910.png",id:"Bitmap910"},{src:"images_overworld/Bitmap911.png",id:"Bitmap911"},{src:"images_overworld/Bitmap912.png",id:"Bitmap912"},{src:"images_overworld/Bitmap913.png",id:"Bitmap913"},{src:"images_overworld/Bitmap914.png",id:"Bitmap914"},{src:"images_overworld/BlueArrowArt.png",id:"BlueArrowArt"},{src:"images_overworld/BlueDoorEntranceArt1.png",id:"BlueDoorEntranceArt1"},{src:"images_overworld/BlueDoorEntranceArt2.png",id:"BlueDoorEntranceArt2"},{src:"images_overworld/BlueHQDoorArt.png", +id:"BlueHQDoorArt"},{src:"images_overworld/BlueHQStatuesArt.png",id:"BlueHQStatuesArt"},{src:"images_overworld/BlueTeamHQArt.png",id:"BlueTeamHQArt"},{src:"images_overworld/BookSignArt.png",id:"BookSignArt"},{src:"images_overworld/BottleLavaArt.png",id:"BottleLavaArt"},{src:"images_overworld/BottleWaterArt.png",id:"BottleWaterArt"},{src:"images_overworld/BoundBitmap.png",id:"BoundBitmap"},{src:"images_overworld/Branch1.png",id:"Branch1"},{src:"images_overworld/Bridgefloor.png",id:"Bridgefloor"},{src:"images_overworld/BuildingARoofArt.png", +id:"BuildingARoofArt"},{src:"images_overworld/BuildingHouseDoorArt.png",id:"BuildingHouseDoorArt"},{src:"images_overworld/BuildingShadowArt.png",id:"BuildingShadowArt"},{src:"images_overworld/Bush.png",id:"Bush"},{src:"images_overworld/CatBoatArt1.png",id:"CatBoatArt1"},{src:"images_overworld/CatBoatArt2.png",id:"CatBoatArt2"},{src:"images_overworld/CaveEntranceArt.png",id:"CaveEntranceArt"},{src:"images_overworld/ChaletHouseArt.png",id:"ChaletHouseArt"},{src:"images_overworld/CharacterShadowArt.png", +id:"CharacterShadowArt"},{src:"images_overworld/CherryBlossomGlow.png",id:"CherryBlossomGlow"},{src:"images_overworld/CityBuilding6Art.png",id:"CityBuilding6Art"},{src:"images_overworld/CityBuilding7Art.png",id:"CityBuilding7Art"},{src:"images_overworld/ClimbIconArt.png",id:"ClimbIconArt"},{src:"images_overworld/ClimbingDojoArt.png",id:"ClimbingDojoArt"},{src:"images_overworld/ClimbingDojoDoorArt.png",id:"ClimbingDojoDoorArt"},{src:"images_overworld/ClimbingHouse1Art.png",id:"ClimbingHouse1Art"}, +{src:"images_overworld/ClimbingN_01.png",id:"ClimbingN_01"},{src:"images_overworld/ClimbingN_02.png",id:"ClimbingN_02"},{src:"images_overworld/ClimbingN_03.png",id:"ClimbingN_03"},{src:"images_overworld/ClimbingN_04.png",id:"ClimbingN_04"},{src:"images_overworld/ClimbingN_05.png",id:"ClimbingN_05"},{src:"images_overworld/ClimbingN_06.png",id:"ClimbingN_06"},{src:"images_overworld/ClimbingS_01.png",id:"ClimbingS_01"},{src:"images_overworld/ClimbingS_02.png",id:"ClimbingS_02"},{src:"images_overworld/ClimbingS_03.png", +id:"ClimbingS_03"},{src:"images_overworld/ClimbingS_04.png",id:"ClimbingS_04"},{src:"images_overworld/ClimbingS_05.png",id:"ClimbingS_05"},{src:"images_overworld/ClimbingS_06.png",id:"ClimbingS_06"},{src:"images_overworld/ClimbingSignArt.png",id:"ClimbingSignArt"},{src:"images_overworld/CrabArmsArt1.png",id:"CrabArmsArt1"},{src:"images_overworld/CrabArmsArt2.png",id:"CrabArmsArt2"},{src:"images_overworld/CrabArmsArt3.png",id:"CrabArmsArt3"},{src:"images_overworld/CrabArmsArt4.png",id:"CrabArmsArt4"}, +{src:"images_overworld/CrabBodyArt.png",id:"CrabBodyArt"},{src:"images_overworld/CrabBuildingArt1.png",id:"CrabBuildingArt1"},{src:"images_overworld/CrabSpriteArt1.png",id:"CrabSpriteArt1"},{src:"images_overworld/CrabSpriteArt2.png",id:"CrabSpriteArt2"},{src:"images_overworld/DangoAntennaBuildingArt.png",id:"DangoAntennaBuildingArt"},{src:"images_overworld/DarkPeirArt.png",id:"DarkPeirArt"},{src:"images_overworld/DarkSandWaveArt1.png",id:"DarkSandWaveArt1"},{src:"images_overworld/DarkSandWaveArt2.png", +id:"DarkSandWaveArt2"},{src:"images_overworld/DarkSandWaveArt3.png",id:"DarkSandWaveArt3"},{src:"images_overworld/DarkSandWaveArt4.png",id:"DarkSandWaveArt4"},{src:"images_overworld/DarkSandWaveArt5.png",id:"DarkSandWaveArt5"},{src:"images_overworld/DarkSandWaveArt6.png",id:"DarkSandWaveArt6"},{src:"images_overworld/deer_sprite_idle_anim_pose1.png",id:"deer_sprite_idle_anim_pose1"},{src:"images_overworld/deer_sprite_idle_anim_pose2.png",id:"deer_sprite_idle_anim_pose2"},{src:"images_overworld/DogIdleSArt.png", +id:"DogIdleSArt"},{src:"images_overworld/door.png",id:"door"},{src:"images_overworld/DoorBubbleArt1.png",id:"DoorBubbleArt1"},{src:"images_overworld/DoorBubbleArt2.png",id:"DoorBubbleArt2"},{src:"images_overworld/ExclaimationMarkBubbleArt1.png",id:"ExclaimationMarkBubbleArt1"},{src:"images_overworld/Exterior_Hut_002.png",id:"Exterior_Hut_002"},{src:"images_overworld/FanArt1.png",id:"FanArt1"},{src:"images_overworld/FanArt2.png",id:"FanArt2"},{src:"images_overworld/FicusTree.png",id:"FicusTree"},{src:"images_overworld/Frond.png", +id:"Frond"},{src:"images_overworld/FukuroBodyArt1.png",id:"FukuroBodyArt1"},{src:"images_overworld/FukuroBodyArt2.png",id:"FukuroBodyArt2"},{src:"images_overworld/FukuroHeadArt1.png",id:"FukuroHeadArt1"},{src:"images_overworld/FukuroHeadArt2.png",id:"FukuroHeadArt2"},{src:"images_overworld/FukuroHeadArt3.png",id:"FukuroHeadArt3"},{src:"images_overworld/FukuroHeadArt4.png",id:"FukuroHeadArt4"},{src:"images_overworld/FukuroHeadArt5.png",id:"FukuroHeadArt5"},{src:"images_overworld/FukuroHeadArt6.png", +id:"FukuroHeadArt6"},{src:"images_overworld/gatekeeper_sprite_idle_anim_pose1.png",id:"gatekeeper_sprite_idle_anim_pose1"},{src:"images_overworld/gatekeeper_sprite_idle_anim_pose2.png",id:"gatekeeper_sprite_idle_anim_pose2"},{src:"images_overworld/GlassDoorArt.png",id:"GlassDoorArt"},{src:"images_overworld/GlassDoorArt2.png",id:"GlassDoorArt2"},{src:"images_overworld/grass1art.png",id:"grass1art"},{src:"images_overworld/Grass1DiagonalCornerEdge1Art.png",id:"Grass1DiagonalCornerEdge1Art"},{src:"images_overworld/greenteamstatues.png", +id:"greenteamstatues"},{src:"images_overworld/greenteamdoor.png",id:"greenteamdoor"},{src:"images_overworld/GreenTeamHWArt.png",id:"GreenTeamHWArt"},{src:"images_overworld/HalfPavement1Art.png",id:"HalfPavement1Art"},{src:"images_overworld/HotSpringTowelArt1.png",id:"HotSpringTowelArt1"},{src:"images_overworld/inariArt.png",id:"inariArt"},{src:"images_overworld/InariArt2.png",id:"InariArt2"},{src:"images_overworld/InstructionBuildingArt1.png",id:"InstructionBuildingArt1"},{src:"images_overworld/KappaArt.png", +id:"KappaArt"},{src:"images_overworld/KappaArt2.png",id:"KappaArt2"},{src:"images_overworld/KarasuArt.png",id:"KarasuArt"},{src:"images_overworld/KarasuArt2.png",id:"KarasuArt2"},{src:"images_overworld/KijimunaIdleArt1.png",id:"KijimunaIdleArt1"},{src:"images_overworld/KijimunaIdleArt2.png",id:"KijimunaIdleArt2"},{src:"images_overworld/Koma1Art11.png",id:"Koma1Art11"},{src:"images_overworld/Koma1Art2.png",id:"Koma1Art2"},{src:"images_overworld/Koma2Art1.png",id:"Koma2Art1"},{src:"images_overworld/Koma2Art2.png", +id:"Koma2Art2"},{src:"images_overworld/LanternLightArt1.png",id:"LanternLightArt1"},{src:"images_overworld/LanternLightArt2.png",id:"LanternLightArt2"},{src:"images_overworld/LanternStringBlueArt.png",id:"LanternStringBlueArt"},{src:"images_overworld/LanternStringGreenArt.png",id:"LanternStringGreenArt"},{src:"images_overworld/LanternStringRedArt.png",id:"LanternStringRedArt"},{src:"images_overworld/LanternStringWhiteArt.png",id:"LanternStringWhiteArt"},{src:"images_overworld/LanternStringYellowArt.png", +id:"LanternStringYellowArt"},{src:"images_overworld/LargeGardenGrassBottomEdgeArt.png",id:"LargeGardenGrassBottomEdgeArt"},{src:"images_overworld/LargeGrass1Side1Art.png",id:"LargeGrass1Side1Art"},{src:"images_overworld/LargeHotSpringArt1.png",id:"LargeHotSpringArt1"},{src:"images_overworld/LargeHotSpringArt2.png",id:"LargeHotSpringArt2"},{src:"images_overworld/LargeHotSpringArt3.png",id:"LargeHotSpringArt3"},{src:"images_overworld/LargeLavaArt.png",id:"LargeLavaArt"},{src:"images_overworld/LargeLavaArt2.png", +id:"LargeLavaArt2"},{src:"images_overworld/LArgeMountainBottomEdgeWaterArt1.png",id:"LArgeMountainBottomEdgeWaterArt1"},{src:"images_overworld/LargeMountainBottomEdgeWaterArt2.png",id:"LargeMountainBottomEdgeWaterArt2"},{src:"images_overworld/LargeVolcanoFloorBottomEdgeArt.png",id:"LargeVolcanoFloorBottomEdgeArt"},{src:"images_overworld/LargeWa.png",id:"LargeWa"},{src:"images_overworld/LargeWater1Art5.png",id:"LargeWater1Art5"},{src:"images_overworld/LargeWater2Art1.png",id:"LargeWater2Art1"},{src:"images_overworld/LArgeWater2Art3.png", +id:"LArgeWater2Art3"},{src:"images_overworld/LargeWater3Art1.png",id:"LargeWater3Art1"},{src:"images_overworld/LargeWater3Art2.png",id:"LargeWater3Art2"},{src:"images_overworld/Lava1Waterfall1Art2.png",id:"Lava1Waterfall1Art2"},{src:"images_overworld/Lava1Waterfall1Art3.png",id:"Lava1Waterfall1Art3"},{src:"images_overworld/Lava1Waterfall1Art4.png",id:"Lava1Waterfall1Art4"},{src:"images_overworld/Lava1Waterfall1HighlightArt1.png",id:"Lava1Waterfall1HighlightArt1"},{src:"images_overworld/Lava1Waterfall1HighlightArt2.png", +id:"Lava1Waterfall1HighlightArt2"},{src:"images_overworld/Lava1Waterfall1HighlightArt3.png",id:"Lava1Waterfall1HighlightArt3"},{src:"images_overworld/Lava1Waterfall1HighlightArt4.png",id:"Lava1Waterfall1HighlightArt4"},{src:"images_overworld/Lava1WaterfallArt1.png",id:"Lava1WaterfallArt1"},{src:"images_overworld/LavafallBottomArt1.png",id:"LavafallBottomArt1"},{src:"images_overworld/LavafallBottomArt2.png",id:"LavafallBottomArt2"},{src:"images_overworld/LavafallBottomArt3.png",id:"LavafallBottomArt3"}, +{src:"images_overworld/LavafallBottomArt4.png",id:"LavafallBottomArt4"},{src:"images_overworld/LeaderboardGlowArt.png",id:"LeaderboardGlowArt"},{src:"images_overworld/LeaderboardNoGlow2.png",id:"LeaderboardNoGlow2"},{src:"images_overworld/LightBeachWaveArt1.png",id:"LightBeachWaveArt1"},{src:"images_overworld/LightBeachWaveArt2.png",id:"LightBeachWaveArt2"},{src:"images_overworld/LightBeachWaveArt3.png",id:"LightBeachWaveArt3"},{src:"images_overworld/LightBeachWaveArt4.png",id:"LightBeachWaveArt4"}, +{src:"images_overworld/LightBeachWaveArt5.png",id:"LightBeachWaveArt5"},{src:"images_overworld/LightBeachWaveArt6.png",id:"LightBeachWaveArt6"},{src:"images_overworld/LittleStoneHouseArt.png",id:"LittleStoneHouseArt"},{src:"images_overworld/LostPaddleArt.png",id:"LostPaddleArt"},{src:"images_overworld/LuckRollWArt3.png",id:"LuckRollWArt3"},{src:"images_overworld/LuckyArrowArt.png",id:"LuckyArrowArt"},{src:"images_overworld/LuckyIdleEArt.png",id:"LuckyIdleEArt"},{src:"images_overworld/LuckyIdleNArt.png", +id:"LuckyIdleNArt"},{src:"images_overworld/LuckyIdleS.png",id:"LuckyIdleS"},{src:"images_overworld/LuckyIdleSArt2.png",id:"LuckyIdleSArt2"},{src:"images_overworld/LuckyIdleSArt3.png",id:"LuckyIdleSArt3"},{src:"images_overworld/LuckyIdleWArt.png",id:"LuckyIdleWArt"},{src:"images_overworld/LuckyRoll1.png",id:"LuckyRoll1"},{src:"images_overworld/LuckyRollE1.png",id:"LuckyRollE1"},{src:"images_overworld/LuckyRollE2.png",id:"LuckyRollE2"},{src:"images_overworld/LuckyRollEArt3.png",id:"LuckyRollEArt3"}, +{src:"images_overworld/LuckyRollEArt5.png",id:"LuckyRollEArt5"},{src:"images_overworld/LuckyRollNArt1.png",id:"LuckyRollNArt1"},{src:"images_overworld/LuckyRollNArt3.png",id:"LuckyRollNArt3"},{src:"images_overworld/LuckyRollNArt4.png",id:"LuckyRollNArt4"},{src:"images_overworld/LuckyRollS2.png",id:"LuckyRollS2"},{src:"images_overworld/LuckyRollSArt2.png",id:"LuckyRollSArt2"},{src:"images_overworld/LuckyRollSArt3.png",id:"LuckyRollSArt3"},{src:"images_overworld/LuckyRollsNArt5.png",id:"LuckyRollsNArt5"}, +{src:"images_overworld/LuckyRollWArt1.png",id:"LuckyRollWArt1"},{src:"images_overworld/LuckyRollWArt2.png",id:"LuckyRollWArt2"},{src:"images_overworld/LuckyRollWArt4.png",id:"LuckyRollWArt4"},{src:"images_overworld/LuckyStatueArt.png",id:"LuckyStatueArt"},{src:"images_overworld/LuckyWalkEArt1.png",id:"LuckyWalkEArt1"},{src:"images_overworld/LuckyWalkEArt2.png",id:"LuckyWalkEArt2"},{src:"images_overworld/LuckyWalkEArt3.png",id:"LuckyWalkEArt3"},{src:"images_overworld/LuckyWalkEArt4.png",id:"LuckyWalkEArt4"}, +{src:"images_overworld/LuckyWalkEArt5.png",id:"LuckyWalkEArt5"},{src:"images_overworld/LuckyWalkEArt6.png",id:"LuckyWalkEArt6"},{src:"images_overworld/LuckyWalkNArt1.png",id:"LuckyWalkNArt1"},{src:"images_overworld/LuckyWalkNArt2.png",id:"LuckyWalkNArt2"},{src:"images_overworld/LuckyWalkNArt3.png",id:"LuckyWalkNArt3"},{src:"images_overworld/LuckyWalkNArt4.png",id:"LuckyWalkNArt4"},{src:"images_overworld/LuckyWalknArt5.png",id:"LuckyWalknArt5"},{src:"images_overworld/LuckyWalkSArt1.png",id:"LuckyWalkSArt1"}, +{src:"images_overworld/LuckyWalkSArt2.png",id:"LuckyWalkSArt2"},{src:"images_overworld/LuckyWalkSArt3.png",id:"LuckyWalkSArt3"},{src:"images_overworld/LuckyWalkSArt4.png",id:"LuckyWalkSArt4"},{src:"images_overworld/LuckyWalkSArt5.png",id:"LuckyWalkSArt5"},{src:"images_overworld/LuckyWalkSArt6.png",id:"LuckyWalkSArt6"},{src:"images_overworld/LuckyWalkSArt7.png",id:"LuckyWalkSArt7"},{src:"images_overworld/LuckyWalkSArt8.png",id:"LuckyWalkSArt8"},{src:"images_overworld/LuckyWalkWArt1.png",id:"LuckyWalkWArt1"}, +{src:"images_overworld/LuckyWalkWArt2.png",id:"LuckyWalkWArt2"},{src:"images_overworld/LuckyWalkWArt3.png",id:"LuckyWalkWArt3"},{src:"images_overworld/LuckyWalkWArt4.png",id:"LuckyWalkWArt4"},{src:"images_overworld/LuckyWalkWArt5.png",id:"LuckyWalkWArt5"},{src:"images_overworld/LuckyWalkWArt6.png",id:"LuckyWalkWArt6"},{src:"images_overworld/MapleTree.png",id:"MapleTree"},{src:"images_overworld/MapleTree2.png",id:"MapleTree2"},{src:"images_overworld/MarathonE_01.png",id:"MarathonE_01"},{src:"images_overworld/MarathonE_02.png", +id:"MarathonE_02"},{src:"images_overworld/MarathonE_03.png",id:"MarathonE_03"},{src:"images_overworld/MarathonE_04.png",id:"MarathonE_04"},{src:"images_overworld/MarathonIconArt.png",id:"MarathonIconArt"},{src:"images_overworld/MarathonSignArt.png",id:"MarathonSignArt"},{src:"images_overworld/MarathonW_01.png",id:"MarathonW_01"},{src:"images_overworld/MarathonW_02.png",id:"MarathonW_02"},{src:"images_overworld/MarathonW_03.png",id:"MarathonW_03"},{src:"images_overworld/MarathonW_04.png",id:"MarathonW_04"}, +{src:"images_overworld/MediumDangoArt.png",id:"MediumDangoArt"},{src:"images_overworld/MediumLanternBlueArt.png",id:"MediumLanternBlueArt"},{src:"images_overworld/MediumLanternGreenArt.png",id:"MediumLanternGreenArt"},{src:"images_overworld/MediumLanternRedArt.png",id:"MediumLanternRedArt"},{src:"images_overworld/MediumLanternWhiteArt.png",id:"MediumLanternWhiteArt"},{src:"images_overworld/MediumLanternYellowArt.png",id:"MediumLanternYellowArt"},{src:"images_overworld/ModernBuilding1Art.png",id:"ModernBuilding1Art"}, +{src:"images_overworld/ModernBuilding2Art.png",id:"ModernBuilding2Art"},{src:"images_overworld/ModernBuilding3Art.png",id:"ModernBuilding3Art"},{src:"images_overworld/ModernCityBuildingCluster2Art1.png",id:"ModernCityBuildingCluster2Art1"},{src:"images_overworld/ModernCityBuildingClusterArt1.png",id:"ModernCityBuildingClusterArt1"},{src:"images_overworld/MomotaroArt2.png",id:"MomotaroArt2"},{src:"images_overworld/MomotaroIdleSArt.png",id:"MomotaroIdleSArt"},{src:"images_overworld/MonkeyArt1.png", +id:"MonkeyArt1"},{src:"images_overworld/MonkeyArt2.png",id:"MonkeyArt2"},{src:"images_overworld/MonkeyIsleSArt.png",id:"MonkeyIsleSArt"},{src:"images_overworld/MonkeyWaterArt1.png",id:"MonkeyWaterArt1"},{src:"images_overworld/MonkeyWaterArt2.png",id:"MonkeyWaterArt2"},{src:"images_overworld/MossyRockArt.png",id:"MossyRockArt"},{src:"images_overworld/MountainBottomEdgeWaterArt1.png",id:"MountainBottomEdgeWaterArt1"},{src:"images_overworld/MountainBottomEdgeWaterArt2.png",id:"MountainBottomEdgeWaterArt2"}, +{src:"images_overworld/NewLArgeWater1Art1.png",id:"NewLArgeWater1Art1"},{src:"images_overworld/NewLargeWater1Art2.png",id:"NewLargeWater1Art2"},{src:"images_overworld/NewLargeWater2Art.png",id:"NewLargeWater2Art"},{src:"images_overworld/NoodleShopArt.png",id:"NoodleShopArt"},{src:"images_overworld/NoodleSignArt.png",id:"NoodleSignArt"},{src:"images_overworld/NPCBlackWolfieFrame1.png",id:"NPCBlackWolfieFrame1"},{src:"images_overworld/NPCBlackWolfieFrame2.png",id:"NPCBlackWolfieFrame2"},{src:"images_overworld/NPCFroggyframe1.png", +id:"NPCFroggyframe1"},{src:"images_overworld/NPCFroggyframe2.png",id:"NPCFroggyframe2"},{src:"images_overworld/NPCKijiDad.png",id:"NPCKijiDad"},{src:"images_overworld/NPCKijiDadframe2.png",id:"NPCKijiDadframe2"},{src:"images_overworld/NPCKijiKid.png",id:"NPCKijiKid"},{src:"images_overworld/NPCKijiKidframe2.png",id:"NPCKijiKidframe2"},{src:"images_overworld/NPCmomotarodadframe1.png",id:"NPCmomotarodadframe1"},{src:"images_overworld/NPCmomotarodadframe2.png",id:"NPCmomotarodadframe2"},{src:"images_overworld/NPCmomotaromomframe1.png", +id:"NPCmomotaromomframe1"},{src:"images_overworld/NPCmomotaromomframe2.png",id:"NPCmomotaromomframe2"},{src:"images_overworld/NPCRacerAframe1.png",id:"NPCRacerAframe1"},{src:"images_overworld/NPCRacerAframe2.png",id:"NPCRacerAframe2"},{src:"images_overworld/NPCRacerBframe1.png",id:"NPCRacerBframe1"},{src:"images_overworld/NPCRacerBframe2.png",id:"NPCRacerBframe2"},{src:"images_overworld/NPCWolfieFrame1.png",id:"NPCWolfieFrame1"},{src:"images_overworld/NPCWolfieFrame2.png",id:"NPCWolfieFrame2"},{src:"images_overworld/OctupusIdleArt1.png", +id:"OctupusIdleArt1"},{src:"images_overworld/OctupusIdleArt2.png",id:"OctupusIdleArt2"},{src:"images_overworld/OldBuildingArt1.png",id:"OldBuildingArt1"},{src:"images_overworld/OldBuildingArt2.png",id:"OldBuildingArt2"},{src:"images_overworld/OldBuildingArt3.png",id:"OldBuildingArt3"},{src:"images_overworld/OldBuildingArt4.png",id:"OldBuildingArt4"},{src:"images_overworld/OldBuildingArt5.png",id:"OldBuildingArt5"},{src:"images_overworld/OldDoorArt.png",id:"OldDoorArt"},{src:"images_overworld/OldHouseRoofBackArt1.png", +id:"OldHouseRoofBackArt1"},{src:"images_overworld/OldHouseWallDoorOpenArt.png",id:"OldHouseWallDoorOpenArt"},{src:"images_overworld/OldHouseWallOpenDoorArt.png",id:"OldHouseWallOpenDoorArt"},{src:"images_overworld/OldHouseWallWindowsArt1.png",id:"OldHouseWallWindowsArt1"},{src:"images_overworld/OldRoofFrontArt1.png",id:"OldRoofFrontArt1"},{src:"images_overworld/OniIslandRock1Art.png",id:"OniIslandRock1Art"},{src:"images_overworld/Pagoda.png",id:"Pagoda"},{src:"images_overworld/PeachPowerupArt.png", +id:"PeachPowerupArt"},{src:"images_overworld/PineTree2Art.png",id:"PineTree2Art"},{src:"images_overworld/PineTree3Art.png",id:"PineTree3Art"},{src:"images_overworld/PineTreeArt1.png",id:"PineTreeArt1"},{src:"images_overworld/PingPongIconArt.png",id:"PingPongIconArt"},{src:"images_overworld/PingPongTable1Art.png",id:"PingPongTable1Art"},{src:"images_overworld/Plant1.png",id:"Plant1"},{src:"images_overworld/PlayButtonArt1.png",id:"PlayButtonArt1"},{src:"images_overworld/PongN_01.png",id:"PongN_01"}, +{src:"images_overworld/PongN_02.png",id:"PongN_02"},{src:"images_overworld/PongN_03.png",id:"PongN_03"},{src:"images_overworld/PongN_04.png",id:"PongN_04"},{src:"images_overworld/PongS_01.png",id:"PongS_01"},{src:"images_overworld/PongS_02.png",id:"PongS_02"},{src:"images_overworld/PongS_03.png",id:"PongS_03"},{src:"images_overworld/PongS_04.png",id:"PongS_04"},{src:"images_overworld/PongS_05.png",id:"PongS_05"},{src:"images_overworld/PongS_06.png",id:"PongS_06"},{src:"images_overworld/PongTableBlackArt.png", +id:"PongTableBlackArt"},{src:"images_overworld/PongTableRedArt.png",id:"PongTableRedArt"},{src:"images_overworld/PortalCircle.png",id:"PortalCircle"},{src:"images_overworld/PortalGlowArt.png",id:"PortalGlowArt"},{src:"images_overworld/PortalSparklesArt1.png",id:"PortalSparklesArt1"},{src:"images_overworld/PortalSparklesArt2.png",id:"PortalSparklesArt2"},{src:"images_overworld/PortalSparklesArt3.png",id:"PortalSparklesArt3"},{src:"images_overworld/Powerline1Art.png",id:"Powerline1Art"},{src:"images_overworld/Powerline2Art.png", +id:"Powerline2Art"},{src:"images_overworld/PowerlinePoleArt.png",id:"PowerlinePoleArt"},{src:"images_overworld/QuestCoachShoesArt.png",id:"QuestCoachShoesArt"},{src:"images_overworld/QuestConstructionWorkerArt.png",id:"QuestConstructionWorkerArt"},{src:"images_overworld/RailroadCrossingPoleArt.png",id:"RailroadCrossingPoleArt"},{src:"images_overworld/RailroadCrsssLightGlow1.png",id:"RailroadCrsssLightGlow1"},{src:"images_overworld/RainBoyIdleArt1.png",id:"RainBoyIdleArt1"},{src:"images_overworld/RainBoyIdleArt2.png", +id:"RainBoyIdleArt2"},{src:"images_overworld/RainLoopArt1.png",id:"RainLoopArt1"},{src:"images_overworld/RainLoopArt2.png",id:"RainLoopArt2"},{src:"images_overworld/RampRail1Art.png",id:"RampRail1Art"},{src:"images_overworld/RedTeamHQExterior.png",id:"RedTeamHQExterior"},{src:"images_overworld/RedBridgeRail1Art.png",id:"RedBridgeRail1Art"},{src:"images_overworld/RedCircleArt.png",id:"RedCircleArt"},{src:"images_overworld/RedGate1Art.png",id:"RedGate1Art"},{src:"images_overworld/RedLanternArt.png", +id:"RedLanternArt"},{src:"images_overworld/RedOniArt1.png",id:"RedOniArt1"},{src:"images_overworld/RedOniArt2.png",id:"RedOniArt2"},{src:"images_overworld/RedRoofBuilding.png",id:"RedRoofBuilding"},{src:"images_overworld/RedTeamHQStatues.png",id:"RedTeamHQStatues"},{src:"images_overworld/RockPeak1Art.png",id:"RockPeak1Art"},{src:"images_overworld/RockPeak2Art.png",id:"RockPeak2Art"},{src:"images_overworld/RockSideEdge1Art.png",id:"RockSideEdge1Art"},{src:"images_overworld/RockTop1NoShadowArt.png", +id:"RockTop1NoShadowArt"},{src:"images_overworld/RockTopEdge1Art.png",id:"RockTopEdge1Art"},{src:"images_overworld/Roof1FullArt.png",id:"Roof1FullArt"},{src:"images_overworld/Roof2FullArt.png",id:"Roof2FullArt"},{src:"images_overworld/RugbyBirdArt2.png",id:"RugbyBirdArt2"},{src:"images_overworld/RugbyDogArt2.png",id:"RugbyDogArt2"},{src:"images_overworld/RugbyDojoArt.png",id:"RugbyDojoArt"},{src:"images_overworld/RugbyDojoDoorArt.png",id:"RugbyDojoDoorArt"},{src:"images_overworld/RugbyE_01.png",id:"RugbyE_01"}, +{src:"images_overworld/RugbyE_02.png",id:"RugbyE_02"},{src:"images_overworld/RugbyE_03.png",id:"RugbyE_03"},{src:"images_overworld/RugbyE_04.png",id:"RugbyE_04"},{src:"images_overworld/RugbyIconArt.png",id:"RugbyIconArt"},{src:"images_overworld/RugbyMonkeyArt2.png",id:"RugbyMonkeyArt2"},{src:"images_overworld/RugbySignArt.png",id:"RugbySignArt"},{src:"images_overworld/RugbyW_01.png",id:"RugbyW_01"},{src:"images_overworld/RugbyW_02.png",id:"RugbyW_02"},{src:"images_overworld/RugbyW_03.png",id:"RugbyW_03"}, +{src:"images_overworld/RugbyW_04.png",id:"RugbyW_04"},{src:"images_overworld/RyugujoPart1.png",id:"RyugujoPart1"},{src:"images_overworld/RyugujoPart2.png",id:"RyugujoPart2"},{src:"images_overworld/RyugujoPart3.png",id:"RyugujoPart3"},{src:"images_overworld/RyugujoPart4.png",id:"RyugujoPart4"},{src:"images_overworld/SakteDojoArt.png",id:"SakteDojoArt"},{src:"images_overworld/Sand2WaveArt.png",id:"Sand2WaveArt"},{src:"images_overworld/Sand2WaveArt2.png",id:"Sand2WaveArt2"},{src:"images_overworld/Sand2WaveArt3.png", +id:"Sand2WaveArt3"},{src:"images_overworld/Sand2WaveArt4.png",id:"Sand2WaveArt4"},{src:"images_overworld/ScrollRotateArt0.png",id:"ScrollRotateArt0"},{src:"images_overworld/ScrollRotateArt1.png",id:"ScrollRotateArt1"},{src:"images_overworld/ScrollRotateArt2.png",id:"ScrollRotateArt2"},{src:"images_overworld/ScrollRotateArt3.png",id:"ScrollRotateArt3"},{src:"images_overworld/ScrollRotateArt4.png",id:"ScrollRotateArt4"},{src:"images_overworld/ScrollRotateArt5.png",id:"ScrollRotateArt5"},{src:"images_overworld/ScrollRotateArt6.png", +id:"ScrollRotateArt6"},{src:"images_overworld/ScrollRotateArt7.png",id:"ScrollRotateArt7"},{src:"images_overworld/SignBubbleArt1.png",id:"SignBubbleArt1"},{src:"images_overworld/SignBubbleArt2.png",id:"SignBubbleArt2"},{src:"images_overworld/SignBubbleArt3.png",id:"SignBubbleArt3"},{src:"images_overworld/SignBubbleArt4.png",id:"SignBubbleArt4"},{src:"images_overworld/SignSideArt.png",id:"SignSideArt"},{src:"images_overworld/SignUpArt.png",id:"SignUpArt"},{src:"images_overworld/sister1_sprite_idle_anim_pose1.png", +id:"sister1_sprite_idle_anim_pose1"},{src:"images_overworld/sister1_sprite_idle_anim_pose2.png",id:"sister1_sprite_idle_anim_pose2"},{src:"images_overworld/sister2_sprite_idle_anim_pose1.png",id:"sister2_sprite_idle_anim_pose1"},{src:"images_overworld/sister2_sprite_idle_anim_pose2.png",id:"sister2_sprite_idle_anim_pose2"},{src:"images_overworld/sister3_sprite_idle_anim_pose1.png",id:"sister3_sprite_idle_anim_pose1"},{src:"images_overworld/sister3_sprite_idle_anim_pose2.png",id:"sister3_sprite_idle_anim_pose2"}, +{src:"images_overworld/SkateDojoShadowArt.png",id:"SkateDojoShadowArt"},{src:"images_overworld/SkateDojoShadowArt2.png",id:"SkateDojoShadowArt2"},{src:"images_overworld/SkateE_01.png",id:"SkateE_01"},{src:"images_overworld/SkateE_02.png",id:"SkateE_02"},{src:"images_overworld/SkateE_03.png",id:"SkateE_03"},{src:"images_overworld/SkateIconArt.png",id:"SkateIconArt"},{src:"images_overworld/SkateSignArt.png",id:"SkateSignArt"},{src:"images_overworld/SkateW_01.png",id:"SkateW_01"},{src:"images_overworld/SkateW_02.png", +id:"SkateW_02"},{src:"images_overworld/SkateW_03.png",id:"SkateW_03"},{src:"images_overworld/SkateW_04.png",id:"SkateW_04"},{src:"images_overworld/SkateW_05.png",id:"SkateW_05"},{src:"images_overworld/SkateW_06.png",id:"SkateW_06"},{src:"images_overworld/SleepyCatArt1.png",id:"SleepyCatArt1"},{src:"images_overworld/SleepyCatArt2.png",id:"SleepyCatArt2"},{src:"images_overworld/SmallTree.png",id:"SmallTree"},{src:"images_overworld/SmileSignArt.png",id:"SmileSignArt"},{src:"images_overworld/SmokeEntranceArt1.png", +id:"SmokeEntranceArt1"},{src:"images_overworld/SmokeEntranceArt2.png",id:"SmokeEntranceArt2"},{src:"images_overworld/SmokeEntranceArt3.png",id:"SmokeEntranceArt3"},{src:"images_overworld/SmokeEntranceArt4.png",id:"SmokeEntranceArt4"},{src:"images_overworld/SmokeEntranceArt5.png",id:"SmokeEntranceArt5"},{src:"images_overworld/SmokeEntranceArt6.png",id:"SmokeEntranceArt6"},{src:"images_overworld/Snow1BottomEdge2Art.png",id:"Snow1BottomEdge2Art"},{src:"images_overworld/SnowballArt.png",id:"SnowballArt"}, +{src:"images_overworld/Sparkle1.png",id:"Sparkle1"},{src:"images_overworld/Sparkle2.png",id:"Sparkle2"},{src:"images_overworld/SpeechBubbleArt1.png",id:"SpeechBubbleArt1"},{src:"images_overworld/SpeechBubbleArt2.png",id:"SpeechBubbleArt2"},{src:"images_overworld/SpeechBubbleArt3.png",id:"SpeechBubbleArt3"},{src:"images_overworld/SpeechBubbleArt4.png",id:"SpeechBubbleArt4"},{src:"images_overworld/Stairs1Art.png",id:"Stairs1Art"},{src:"images_overworld/StarSignArt.png",id:"StarSignArt"},{src:"images_overworld/StatueArcheryArt.png", +id:"StatueArcheryArt"},{src:"images_overworld/StatueClimbingArt.png",id:"StatueClimbingArt"},{src:"images_overworld/StatueMararthonArt.png",id:"StatueMararthonArt"},{src:"images_overworld/StatuePingPongArt.png",id:"StatuePingPongArt"},{src:"images_overworld/StatueRugbyArt.png",id:"StatueRugbyArt"},{src:"images_overworld/StatueShadowArt.png",id:"StatueShadowArt"},{src:"images_overworld/StatueSkaeboardingArt.png",id:"StatueSkaeboardingArt"},{src:"images_overworld/StatueSwimmingArt.png",id:"StatueSwimmingArt"}, +{src:"images_overworld/Stone3Art.png",id:"Stone3Art"},{src:"images_overworld/StoneGateArt.png",id:"StoneGateArt"},{src:"images_overworld/StoneInariArt.png",id:"StoneInariArt"},{src:"images_overworld/StoneLantern1Art.png",id:"StoneLantern1Art"},{src:"images_overworld/SunkenGateArt.png",id:"SunkenGateArt"},{src:"images_overworld/supermountaingirlframe1.png",id:"supermountaingirlframe1"},{src:"images_overworld/SwimE_01.png",id:"SwimE_01"},{src:"images_overworld/SwimE_02.png",id:"SwimE_02"},{src:"images_overworld/SwimE_03.png", +id:"SwimE_03"},{src:"images_overworld/SwimE_04.png",id:"SwimE_04"},{src:"images_overworld/SwimIconArt.png",id:"SwimIconArt"},{src:"images_overworld/SwimSignArt.png",id:"SwimSignArt"},{src:"images_overworld/SwimW_01.png",id:"SwimW_01"},{src:"images_overworld/SwimW_02.png",id:"SwimW_02"},{src:"images_overworld/SwimW_03.png",id:"SwimW_03"},{src:"images_overworld/SwimW_04.png",id:"SwimW_04"},{src:"images_overworld/TableTennisDojoStatueArt.png",id:"TableTennisDojoStatueArt"},{src:"images_overworld/TableTennisSignArt.png", +id:"TableTennisSignArt"},{src:"images_overworld/TargetArt2.png",id:"TargetArt2"},{src:"images_overworld/TargetArt2copy.png",id:"TargetArt2copy"},{src:"images_overworld/TennisRacketArt1.png",id:"TennisRacketArt1"},{src:"images_overworld/TennisRacketArt2.png",id:"TennisRacketArt2"},{src:"images_overworld/TennisRacketArt3.png",id:"TennisRacketArt3"},{src:"images_overworld/TennisRacketArt4.png",id:"TennisRacketArt4"},{src:"images_overworld/TennisRacketArt5.png",id:"TennisRacketArt5"},{src:"images_overworld/TennisRacketHandleArt.png", +id:"TennisRacketHandleArt"},{src:"images_overworld/ThreeScreenArt1.png",id:"ThreeScreenArt1"},{src:"images_overworld/ThreeScreenArt2.png",id:"ThreeScreenArt2"},{src:"images_overworld/ThreeScreenArt3.png",id:"ThreeScreenArt3"},{src:"images_overworld/ThreeScreenArt4.png",id:"ThreeScreenArt4"},{src:"images_overworld/ToichiCastleEntranceArt.png",id:"ToichiCastleEntranceArt"},{src:"images_overworld/Town_people_fish_handicap_small_01.png",id:"Town_people_fish_handicap_small_01"},{src:"images_overworld/Town_people_fish_handicap_small_02.png", +id:"Town_people_fish_handicap_small_02"},{src:"images_overworld/Town_people_grandpa_small_001.png",id:"Town_people_grandpa_small_001"},{src:"images_overworld/Town_people_grandpa_small_002.png",id:"Town_people_grandpa_small_002"},{src:"images_overworld/Town_people_hare_small_01.png",id:"Town_people_hare_small_01"},{src:"images_overworld/Town_people_hare_small_02.png",id:"Town_people_hare_small_02"},{src:"images_overworld/Town_people_kid_small_001.png",id:"Town_people_kid_small_001"},{src:"images_overworld/Town_people_kid_small_002.png", +id:"Town_people_kid_small_002"},{src:"images_overworld/Town_people_nova_small_001.png",id:"Town_people_nova_small_001"},{src:"images_overworld/Town_people_nova_small_002.png",id:"Town_people_nova_small_002"},{src:"images_overworld/Town_people_pango_small_01.png",id:"Town_people_pango_small_01"},{src:"images_overworld/Town_people_pango_small_02.png",id:"Town_people_pango_small_02"},{src:"images_overworld/TrafficConeArt.png",id:"TrafficConeArt"},{src:"images_overworld/TrainCar1Art1.png",id:"TrainCar1Art1"}, +{src:"images_overworld/TrainStationArt.png",id:"TrainStationArt"},{src:"images_overworld/TriggerBitmap.png",id:"TriggerBitmap"},{src:"images_overworld/TrophyHouseArt.png",id:"TrophyHouseArt"},{src:"images_overworld/Tutorial_01.png",id:"Tutorial_01"},{src:"images_overworld/Tutorial_02.png",id:"Tutorial_02"},{src:"images_overworld/TutorialPingPongTableArt1.png",id:"TutorialPingPongTableArt1"},{src:"images_overworld/UrashimaLetterArt1.png",id:"UrashimaLetterArt1"},{src:"images_overworld/UshiArt.png", +id:"UshiArt"},{src:"images_overworld/UshiArt2.png",id:"UshiArt2"},{src:"images_overworld/VolcanoFloorBottomEdgeArt.png",id:"VolcanoFloorBottomEdgeArt"},{src:"images_overworld/VolcanoFloorSideEdgeArt.png",id:"VolcanoFloorSideEdgeArt"},{src:"images_overworld/volcanoFloorTopEdgeArt.png",id:"volcanoFloorTopEdgeArt"},{src:"images_overworld/VolcanoGround1Art.png",id:"VolcanoGround1Art"},{src:"images_overworld/Water.png",id:"Water"},{src:"images_overworld/Water1WaterfallHighlight1.png",id:"Water1WaterfallHighlight1"}, +{src:"images_overworld/Water1WaterfallHighlight3.png",id:"Water1WaterfallHighlight3"},{src:"images_overworld/Water1WaterfallHighlightArt1.png",id:"Water1WaterfallHighlightArt1"},{src:"images_overworld/Water1WaterfallHighlightArt4.png",id:"Water1WaterfallHighlightArt4"},{src:"images_overworld/Waterfall1Art1.png",id:"Waterfall1Art1"},{src:"images_overworld/Waterfall1Art2.png",id:"Waterfall1Art2"},{src:"images_overworld/Waterfall1Art3.png",id:"Waterfall1Art3"},{src:"images_overworld/WaterfallBottomArt2.png", +id:"WaterfallBottomArt2"},{src:"images_overworld/WaterfallBottomArt3.png",id:"WaterfallBottomArt3"},{src:"images_overworld/WaterfallBottomArt4.png",id:"WaterfallBottomArt4"},{src:"images_overworld/WaterfallBtoomArt1.png",id:"WaterfallBtoomArt1"},{src:"images_overworld/Welcome_01.png",id:"Welcome_01"},{src:"images_overworld/Welcome_02.png",id:"Welcome_02"},{src:"images_overworld/Welcome_03.png",id:"Welcome_03"},{src:"images_overworld/WelcomeE_01.png",id:"WelcomeE_01"},{src:"images_overworld/WelcomeE_02.png", +id:"WelcomeE_02"},{src:"images_overworld/WelcomeE_03.png",id:"WelcomeE_03"},{src:"images_overworld/WelcomeW_01.png",id:"WelcomeW_01"},{src:"images_overworld/WelcomeW_02.png",id:"WelcomeW_02"},{src:"images_overworld/WelcomeW_03.png",id:"WelcomeW_03"},{src:"images_overworld/WhiteDoorEntranceArt1.png",id:"WhiteDoorEntranceArt1"},{src:"images_overworld/WhiteDoorEntranceArt2.png",id:"WhiteDoorEntranceArt2"},{src:"images_overworld/WillowTree1Art.png",id:"WillowTree1Art"},{src:"images_overworld/WoodLanternPoleArt.png", +id:"WoodLanternPoleArt"},{src:"images_overworld/YellowRoofArt.png",id:"YellowRoofArt"},{src:"images_overworld/YoichiShipCastleArt.png",id:"YoichiShipCastleArt"},{src:"images_overworld/YoungArcherArt1.png",id:"YoungArcherArt1"},{src:"images_overworld/YoungArcherArt2.png",id:"YoungArcherArt2"}],tB:[]};(a.Stage=function(d){createjs.Stage.call(this,d)}).prototype=c=new createjs.Stage;c.Ca=function(d){this.tickEnabled=d};c.play=function(){this.tickEnabled=!0;this.getChildAt(0).gotoAndPlay(this.vp())}; +c.stop=function(d){d&&this.seek(d);this.tickEnabled=!1};c.seek=function(d){this.tickEnabled=!0;this.getChildAt(0).gotoAndStop(a.properties.fps*d/1E3)};c.getDuration=function(){return this.getChildAt(0).totalFrames/a.properties.fps*1E3};c.vp=function(){return this.getChildAt(0).currentFrame/a.properties.fps*1E3};g.Zd=g.Zd||[];g.Ve||(g.Ve=[]);g.oB=function(d){g.Ve.push(d);if(0