diff --git a/.gitmodules b/.gitmodules
new file mode 100755
index 0000000..89539fb
--- /dev/null
+++ b/.gitmodules
@@ -0,0 +1,3 @@
+[submodule "monkeydo"]
+ path = assets/js/modules/monkeydo
+ url = https://github.com/VictorWesterlund/monkeydo.git
\ No newline at end of file
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..b393571
--- /dev/null
+++ b/README.md
@@ -0,0 +1,3 @@
+
Still Alive
+A JavaScript implementation of the end credits from the video game Portal
+Take me to the demo 🍰
diff --git a/assets/css/player.css b/assets/css/player.css
new file mode 100644
index 0000000..7d59357
--- /dev/null
+++ b/assets/css/player.css
@@ -0,0 +1,46 @@
+html,
+body {
+ --padding: 40px;
+ display: initial;
+ overflow: hidden;
+ padding: var(--padding);
+ box-sizing: border-box;
+}
+
+#player {
+ position: absolute;
+}
+
+body.credits #player {
+ bottom: var(--padding);
+}
+
+body.art {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+#player pre,
+#player p {
+ font-size: 16px;
+ color: rgb(var(--color-accent));
+}
+
+body.art #player pre {
+ font-size: clamp(0px,3vw,3vh);
+}
+
+#player p {
+ margin: 0;
+ height: 23px;
+}
+
+#player p:last-child::after {
+ content: "_";
+ animation: blink 500ms alternate infinite;
+}
+
+@keyframes blink {
+ to { opacity: 0; }
+}
\ No newline at end of file
diff --git a/assets/css/style.css b/assets/css/style.css
new file mode 100755
index 0000000..92313a4
--- /dev/null
+++ b/assets/css/style.css
@@ -0,0 +1,61 @@
+:root {
+ --color-background: 0,0,0;
+ --color-contrast: 255,255,255;
+ --color-accent: 255,212,0;
+}
+
+html,
+body {
+ margin: 0;
+ width: 100%;
+ height: 100%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ background-color: rgb(var(--color-background));
+ color: rgba(var(--color-contrast));
+ font-family: "Courier New", Courier, monospace;
+}
+
+a {
+ text-decoration: none;
+ color: inherit;
+}
+
+#play {
+ display: inline-block;
+ background-color: rgb(var(--color-contrast));
+ color: rgba(var(--color-background));
+ padding: 20px;
+ font-size: 18px;
+}
+
+footer {
+ position: fixed;
+ box-sizing: border-box;
+ padding: 0 20px;
+ left: 0;
+ bottom: 0;
+}
+
+@media (pointer: fine) {
+ #play:not(.unsupported) {
+ cursor: pointer;
+ }
+}
+
+@media (hover: hover) {
+ #play:not(.unsupported) {
+ transition: 100ms background-color,100ms color;
+ cursor: pointer;
+ }
+
+ #play:not(.unsupported):hover {
+ background-color: rgba(var(--color-contrast),.15);
+ color: rgb(var(--color-contrast));
+ }
+
+ a:hover {
+ text-decoration: underline;
+ }
+}
\ No newline at end of file
diff --git a/assets/js/modules/PlayerManager.mjs b/assets/js/modules/PlayerManager.mjs
new file mode 100644
index 0000000..2af9e03
--- /dev/null
+++ b/assets/js/modules/PlayerManager.mjs
@@ -0,0 +1,116 @@
+import { default as PlayerWindow } from "./PlayerWindow.mjs";
+import { default as Monkeydo } from "./monkeydo/Monkeydo.mjs";
+
+export default class WindowManager {
+ constructor(mediaElement) {
+ const self = this;
+ this.mediaElement = mediaElement;
+
+ // Bi-directional communcation to player windows
+ this.channels = {
+ "#lyrics": new BroadcastChannel("#lyrics"),
+ "#credits": new BroadcastChannel("#credits"),
+ "#art": new BroadcastChannel("#art")
+ };
+
+ for(const channel of Object.values(this.channels)) {
+ channel.addEventListener("message",event => this.message(event));
+ }
+
+ // Monkeydo methods
+ const methods = {
+ blank: (target) => {
+ self.channels[target].postMessage(["BLANK",target]);
+ },
+ lineFeed: (target) => {
+ self.channels[target].postMessage(["LINE_FEED"]);
+ },
+ textFeed: (text,target = "#lyrics") => {
+ self.channels[target].postMessage(["TEXT_FEED",text]);
+ },
+ drawArt: (index,target = "#art") => {
+ self.channels[target].postMessage(["DRAW_ART",index]);
+ },
+ playCredits: () => {
+ self.players.credits.do();
+ }
+ }
+
+ this.players = {
+ lyrics: new Monkeydo(methods),
+ credits: new Monkeydo(methods)
+ }
+ }
+
+ playbackFailed(promiseObject = false) {
+ console.log(promiseObject);
+ }
+
+ // Attempt to open a new window
+ async spawnPlayer(type) {
+ if(!type in this.channels) {
+ throw new Error(`Inavlid player type "${type}"`);
+ }
+
+ return await new Promise((resolve,reject) => {
+ const player = new PlayerWindow(type).open();
+ const channel = this.channels[type];
+
+ // Wait for window to emit ready state message before resolving
+ const ack = channel.addEventListener("message",event => {
+ if(event.data[0] === "WINDOW_READY" || event.data[1] === type) {
+ resolve("WINDOW_READY");
+ }
+ // Window failed to initialize
+ if(event.data[0] === "WINDOW_ERROR" || event.data[1][0] === type) {
+ reject(event.data[1]);
+ }
+ return false;
+ });
+ channel.removeEventListener("message",ack);
+ });
+ }
+
+ async play() {
+ for(const [key,player] of Object.entries(this.players)) {
+ const manifest = new URL(window.location.href + `monkeydo_${key}.json`);
+
+ await player.load(manifest.toString());
+ }
+ this.players.lyrics.do();
+ this.mediaElement.play();
+ }
+
+ // Open player windows and start playback
+ async init() {
+ const art = this.spawnPlayer("#art");
+ const credits = this.spawnPlayer("#credits");
+ const lyrics = this.spawnPlayer("#lyrics");
+
+ const timeout = new Promise(resolve => setTimeout(() => resolve("TIMEOUT")),3000);
+ const windows = await Promise.allSettled([lyrics,credits,art]);
+
+ // Wait for all windows to open and initialize (or timout and fail)
+ const status = Promise.race([windows,timeout]);
+ status.then(promises => {
+ promises.forEach(promiseObject => {
+ if(promiseObject.status !== "fulfilled") {
+ this.playbackFailed(promiseObject);
+ }
+ });
+
+ // Load Monkeydo manifest and start playback
+ this.play();
+ });
+ }
+
+ message(event) {
+ const type = event.data[0];
+ const data = event.data[1];
+
+ switch(type) {
+ case "PLAY": console.log("PLAY",event); break;
+ case "WINDOW_CLOSED": console.log("WINDOW_CLOSED",event); break;
+ }
+ }
+}
\ No newline at end of file
diff --git a/assets/js/modules/PlayerWindow.mjs b/assets/js/modules/PlayerWindow.mjs
new file mode 100644
index 0000000..7216c7b
--- /dev/null
+++ b/assets/js/modules/PlayerWindow.mjs
@@ -0,0 +1,61 @@
+const windowPositions = {
+ "#lyrics": {
+ width: window.innerWidth / 2,
+ height: window.innerHeight,
+ top: 0,
+ left: 0
+ },
+ "#credits": {
+ width: window.innerWidth / 2,
+ height: window.innerHeight / 2,
+ top: 0,
+ left: window.innerWidth / 2
+ },
+ "#art": {
+ width: window.innerWidth / 2,
+ height: window.innerHeight / 2,
+ top: window.innerHeight / 2,
+ left: window.innerWidth / 2
+ }
+}
+
+export default class PlayerWindow {
+ constructor(name) {
+ this.features = {
+ menubar: false,
+ location: false,
+ resizable: false,
+ scrollbar: false,
+ status: false
+ }
+
+ this.url = new URL(window.location.href + "player");
+ this.url.hash = name;
+
+ // Copy window size rect into windowFeatures
+ Object.assign(this.features,windowPositions[this.url.hash]);
+ }
+
+ // Convert windowFeatures object into a CSV DOMString
+ windowFeatures() {
+ let output = [];
+ for(let [key,value] of Object.entries(this.features)) {
+ if(typeof key === "boolean") {
+ value = value ? "yes" : "no";
+ }
+ output.push(`${key}=${value}`);
+ }
+ return output.join(",");
+ }
+
+ open() {
+ const features = this.windowFeatures();
+ const open = window.open(this.url.toString(),this.url.hash,features);
+
+ // Window failed to open (usually due to pop-up blocking), tell the WindowManager about this
+ if(!open) {
+ const channel = new BroadcastChannel(this.url.hash);
+ channel.postMessage(["WINDOW_ERROR",[this.url.hash,"BLOCKED"]]);
+ }
+ }
+}
diff --git a/assets/js/modules/StillAlivePlayer.mjs b/assets/js/modules/StillAlivePlayer.mjs
new file mode 100644
index 0000000..124fb55
--- /dev/null
+++ b/assets/js/modules/StillAlivePlayer.mjs
@@ -0,0 +1,62 @@
+// Encoded in order from: https://blog.kazitor.com/2014/12/portal-ascii/
+const artset = [
+ "%20%20%20%20%20%20%20%20%20%20%20%20%20.%2C-%3A%3B%2F%2F%3B%3A%3D%2C%0A%20%20%20%20%20%20%20%20%20.%20%3AH%40%40%40MM%40M%23H%2F.%2C%2B%25%3B%2C%0A%20%20%20%20%20%20%2C%2FX%2B%20%2BM%40%40M%40MM%25%3D%2C-%25HMMM%40X%2F%2C%0A%20%20%20%20%20-%2B%40MM%3B%20%24M%40%40MH%2B-%2C%3BXMMMM%40MMMM%40%2B-%0A%20%20%20%20%3B%40M%40%40M-%20XM%40X%3B.%20-%2BXXXXXHHH%40M%40M%23%40%2F.%0A%20%20%2C%25MM%40%40MH%20%2C%40%25%3D%20%20%20%20%20%20%20%20%20%20%20%20.---%3D-%3D%3A%3D%2C.%0A%20%20-%40%23%40%40%40MX%20.%2C%20%20%20%20%20%20%20%20%20%20%20%20%20%20-%25HX%24%24%25%25%25%2B%3B%0A%20%3D-.%2F%40M%40M%24%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%3B%40MMMM%40MM%3A%0A%20X%40%2F%20-%24MM%2F%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%2BMM%40%40%40M%24%0A%2C%40M%40H%3A%20%3A%40%3A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%20-X%23%40%40%40%40-%0A%2C%40%40%40MMX%2C%20.%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2FH-%20%3B%40M%40M%3D%0A.H%40%40%40%40M%40%2B%2C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%25MM%2B..%25%23%24.%0A%20%2FMMMM%40MMH%2F.%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20XM%40MH%3B%20-%3B%0A%20%20%2F%25%2B%25%24XHH%40%24%3D%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%20.H%40%40%40%40MX%2C%0A%20%20%20.%3D--------.%20%20%20%20%20%20%20%20%20%20%20-%25H.%2C%40%40%40%40%40MX%2C%0A%20%20%20.%25MM%40%40%40HHHXX%24%24%24%25%2B-%20.%3A%24MMX%20-M%40%40MM%25.%0A%20%20%20%20%20%3DXMMM%40MM%40MM%23H%3B%2C-%2BHMM%40M%2B%20%2FMMMX%3D%0A%20%20%20%20%20%20%20%3D%25%40M%40M%23%40%24-.%3D%24%40MM%40%40%40M%3B%20%25M%25%3D%0A%20%20%20%20%20%20%20%20%20%2C%3A%2B%24%2B-%2C%2FH%23MMMMMMM%40-%20-%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3D%2B%2B%25%25%25%25%2B%2F%3A-.",
+ "%20%20%20%20%20%20%20%20%20%20%20%20%20%3D%2B%24HM%23%23%23%23%40H%25%3B%2C%0A%20%20%20%20%20%20%20%20%20%20%2FH%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23M%24%2C%0A%20%20%20%20%20%20%20%20%20%20%2C%40%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2B%0A%20%20%20%20%20%20%20%20%20%20%20.H%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20X%23%23%23%23%23%23%23%23%23%23%23%23%2F%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%24%23%23%23%23%23%23%23%23%23%23%2F%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%25%23%23%23%23%23%23%23%23%2F%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2FX%2F%3B%3B%2BX%2F%0A%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20-XHHX-%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%23%23%23%23%23%23%2C%0A%23%23%23%23%23%23%23%23%23%23%23%23%23X%20%20.M%23%23%23%23M.%20%20X%23%23%23%23%23%23%23%23%23%23%23%23%23%0A%23%23%23%23%23%23%23%23%23%23%23%23%23%23-%20%20%20-%2F%2F-%20%20%20-%23%23%23%23%23%23%23%23%23%23%23%23%23%23%0AX%23%23%23%23%23%23%23%23%23%23%23%23%23%23%25%2C%20%20%20%20%20%20%2C%2B%23%23%23%23%23%23%23%23%23%23%23%23%23%23X%0A-%23%23%23%23%23%23%23%23%23%23%23%23%23%23X%20%20%20%20%20%20%20%20X%23%23%23%23%23%23%23%23%23%23%23%23%23%23-%0A%20%25%23%23%23%23%23%23%23%23%23%23%23%23%25%20%20%20%20%20%20%20%20%20%20%25%23%23%23%23%23%23%23%23%23%23%23%23%25%0A%20%20%25%23%23%23%23%23%23%23%23%23%23%3B%20%20%20%20%20%20%20%20%20%20%20%20%3B%23%23%23%23%23%23%23%23%23%23%25%0A%20%20%20%3B%23%23%23%23%23%23%23M%3D%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3DM%23%23%23%23%23%23%23%3B%0A%20%20%20%20.%2BM%23%23%23%40%2C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%40%23%23%23M%2B.%0A%20%20%20%20%20%20%20%3AXH.%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.HX%3A",
+ "%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3D%2F%3B%3B%2F-%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2B%3A%20%20%20%20%2F%2F%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%3B%20%20%20%20%20%20%2F%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20-X%20%20%20%20%20%20%20%20H.%0A.%2F%2F%3B%3B%3B%3A%3B%3B-%2C%20%20%20X%3D%20%20%20%20%20%20%20%20%3A%2B%20%20%20.-%3B%3A%3D%3B%3A%3B%25%3B.%0AM-%20%20%20%20%20%20%20%2C%3D%3B%3B%3B%23%3A%2C%20%20%20%20%20%20%2C%3A%23%3B%3B%3A%3D%2C%20%20%20%20%20%20%20%2C%40%0A%3A%25%20%20%20%20%20%20%20%20%20%20%20%3A%25.%3D%2F%2B%2B%2B%2B%2F%3D.%24%3D%20%20%20%20%20%20%20%20%20%20%20%25%3D%0A%20%2C%25%3B%20%20%20%20%20%20%20%20%20%25%2F%3A%2B%2F%3B%2C%2C%2F%2B%2B%3A%2B%2F%20%20%20%20%20%20%20%20%20%3B%2B.%0A%20%20%20%2C%2B%2F.%20%20%20%20%2C%3B%40%2B%2C%20%20%20%20%20%20%20%20%2C%25H%3B%2C%20%20%20%20%2C%2F%2B%2C%0A%20%20%20%20%20%20%3B%2B%3B%3B%2F%3D%20%40.%20%20.H%23%23X%20%20%20-X%20%3A%2F%2F%2F%2B%3B%0A%20%20%20%20%20%20%3B%2B%3D%3B%3B%3B.%40%2C%20%20.XM%40%24.%20%20%3DX.%2F%2F%3B%3D%25%2F.%0A%20%20%20%2C%3B%3A%20%20%20%20%20%20%3A%40%25%3D%20%20%20%20%20%20%20%20%3D%24H%3A%20%20%20%20%20.%2B%25-%0A%20%2C%25%3D%20%20%20%20%20%20%20%20%20%25%3B-%2F%2F%2F%3D%3D%2F%2F%2F-%2F%2F%20%20%20%20%20%20%20%20%20%3D%25%2C%0A%3B%2B%20%20%20%20%20%20%20%20%20%20%20%3A%25-%3B%3B%3B%3B%3B%3B%3B%3B-X-%20%20%20%20%20%20%20%20%20%20%20%2B%3A%0A%40-%20%20%20%20%20%20.-%3B%3B%3B%3BM-%20%20%20%20%20%20%20%20%3DM%2F%3B%3B%3B-.%20%20%20%20%20%20-X%0A%20%3A%3B%3B%3A%3A%3B%3B-.%20%20%20%20%25-%20%20%20%20%20%20%20%20%3A%2B%20%20%20%20%2C-%3B%3B-%3B%3A%3D%3D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2CX%20%20%20%20%20%20%20%20H.%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3B%2F%20%20%20%20%20%20%25%3D%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2F%2F%20%20%20%20%2B%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%2F%2F%2F%2F%2C",
+ "%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%2C---.%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%2FXM%23MMMX%3B%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20-%25%23%23%23%23%23%23%23%23%23%23M%25%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20-%40%23%23%23%23%23%23%25%20%20%24%23%23%23%40%3D%0A%20%20%20%20%20%20.%2C--%2C%20%20%20%20%20%20%20%20%20-H%23%23%23%23%23%23%23%24%20%20%20%24%23%23%23M%3A%0A%20%20%20%2C%3B%24M%23%23%23MMX%3B%20%20%20%20%20.%3B%23%23%23%23%23%23%23%23%23%23%24%3BHM%23%23%23X%3D%0A%2C%2F%40%23%23%23%23%23%23%23%23%23%23%23H%3D%20%20%20%20%20%20%3B%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2B%0A-%2B%23%23%23%23%23%23%23%23%23%23%23%23%23M%2F%2C%20%20%20%20%20%20%25%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2B%0A%25M%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%3D%20%20%20%20%20%20%2F%23%23%23%23%23%23%23%23%23%23%23%23%23%23%3A%0AH%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%20%20%20%20%20%20.M%23%23%23%23%23%23%23%23%23%23%23%23%23%3B.%0A%40%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23M%20%20%20%20%20%20%2C%40%23%23%23%23%23%23%23%23%23%23%23M%3A.%0AX%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2C%20%20%20%20%20%20-%24%3DX%23%23%23%23%23%23%23%40%3A%0A%2F%40%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%25-%20%20%20%20%20%2B%23%23%23%23%23%23%24-%0A.%3B%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23X%20%20%20%20%20.X%23%23%23%23%23%2B%2C%0A%20.%3BH%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2F%20%20%20%20%20-X%23%23%23%23%2B.%0A%20%20%20%2C%3BX%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2C%20%20%20%20%20%20%20.MM%2F%0A%20%20%20%20%20%20%2C%3A%2B%24H%40M%23%23%23%23%23%23%23M%23%24-%20%20%20%20.%24%24%3D%0A%20%20%20%20%20%20%20%20%20%20%20.%2C-%3D%3B%2B%24%40%23%23%23X%3A%20%20%20%20%3B%2F%3D.%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%2C%2FX%24%3B%20%20%20.%3A%3A%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%2C%20%20%20%20..",
+ "%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20-%24-%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.H%23%23H%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2B%23%23%23%23%23%23%2B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%2B%23%23%23%23%23%23%23%23%23H.%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20-%24%23%23%23%23%23%23%23%23%23%23%23%23%40.%0A%20%20%20%20%20%20%20%20%20%20%20%20%3DH%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%40%20%20-X%3A%0A%20%20%20%20%20%20%20%20%20%20.%24%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%3A%20%20%40%23%40-%0A%20%20%20%20%20%2C%3B%20%20.M%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%3B%20%20H%23%23%23%3B%0A%20%20%20%3B%40%23%3A%20%20%40%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%40%20%20%2C%23%23%23%23%23%3A%0A%20-M%23%23%23.%20%20M%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%40.%20%20%3B%23%23%23%23%23%23H%0A%20M%23%23%23%23-%20%20%2B%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%24%20%20%20%3D%40%23%23%23%23%23%23%23X%0A%20H%23%23%23%23%24%20%20%20-M%23%23%23%23%23%23%23%23%23%23%23%2B%20%20%20%3A%23%23%23%23%23%23%23%23%23M%2C%0A%20%20%2F%23%23%23%23X-%20%20%20%3D%23%23%23%23%23%23%23%23%25%20%20%20%3AM%23%23%23%23%23%23%23%23%40%2F.%0A%20%20%20%20%2C%3B%25H%40X%3B%20%20%20.%24%23%23%23X%20%20%20%3A%23%23MM%40%25%2B%3B%3A-%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20..%0A%20%20-%2F%3B%3A-%2C.%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%2C-%3D%3D%2BM%23%23%23%23%23%23%23%23H%0A%20-%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%40HX%25%25%2B%25%25%24%25%25%25%2B%3A%2C%2C%0A%20%20%20%20.-%2FH%25%25%25%2B%25%25%24H%40%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23M%40%2B%3D%3A%2F%2B%3A%0A%2FXHX%25%3A%23%23%23%23%23MH%25%3D%20%20%20%20%2C---%3A%3B%3B%3B%3B%2F%26%26XHM%2C%3A%23%23%23%24%0A%24%40%23MX%20%25%2B%3B-%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.",
+ "%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3AX-%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3AX%23%23%23%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3B%40%23%23%23%23%40%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3BM%23%23%23%23%23%23X%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20-%40%23%23%23%23%23%23%23%23%24%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%24%23%23%23%23%23%23%23%23%23%23%40%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3DM%23%23%23%23%23%23%23%23%23%23%23%23-%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2B%23%23%23%23%23%23%23%23%23%23%23%23%23%23%24%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.H%23%23%23%23%23%23%23%23%23%23%23%23%24%3D.%0A%20%20%20%20%20%20%20%20%20%2C%2F%3A%20%20%20%20%20%20%20%20%20%2CM%23%23%23%23%23%23%23%23%23%23M%3B.%0A%20%20%20%20%20%20-%2B%40%23%23%23%3B%20%20%20%20%20%20%20%3D%23%23%23%23%23%23%23%23%23%23M%3B%0A%20%20%20%3D%25M%23%23%23%23%23%23%23%3B%20%20%20%20%20%3A%23%23%23%23%23%23%23%23%23M%2F%0A-%24M%23%23%23%23%23%23%23%23%23%23%23%3B%20%20%20%3A%23%23%23%23%23%23%23%23%2F%0A%20%2C%3BX%23%23%23%23%23%23%23%23%23%23%23%3B%20%3D%23%23%23%23%23%23%23%24.%0A%20%20%20%20%20%3BH%23%23%23%23%23%23%23%23%23%2B%23%23%23%23%23%23M%3D%0A%20%20%20%20%20%20%20%2C%2B%23%23%23%23%23%23%23%23%23%23%23%23%23%2B%0A%20%20%20%20%20%20%20%20%20%20%2FM%23%23%23%23%23%23%23%23%40-%0A%20%20%20%20%20%20%20%20%20%20%20%20%3BM%23%23%23%23%23%25%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2B%23%23%23%23%3A%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%24M-",
+ "%20%20%20%20%20%20%20%20%20%20%20%20.%2B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%2FM%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20H%23%40%3A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3B%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20-%23%23%23H-%20%20%20%20%20%20%20%20%20%20-%40%2F%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%25%23%23%23%23%24.%20%20-%3B%20%20.%25%23X%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20M%23%23%23%23%23%2B%3B%23H%20%3AM%23M.%0A..%20%20%20%20%20%20%20%20%20%20.%2B%2F%3B%25%23%23%23%23%23%23%23%23%23%23%23%23%23-%0A%20-%2F%25H%25%2B%3B-%2C%20%20%20%20%2B%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2F%0A%20%20%20%20.%3A%24M%23%23%23MH%24%25%2B%23%23%23%23%23%23%23%23%23%23%23%23X%20%20%2C--%3D%3B-%0A%20%20%20%20%20%20%20%20-%2FH%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23H%2B%3D.%0A%20%20%20%20%20%20%20%20%20%20%20.%2B%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23X.%0A%20%20%20%20%20%20%20%20%20%3D%25M%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23H%3B.%0A%20%20%20%20%20%20%20%20%20%20%20%20%2F%40%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%2B%3B%3B%2F%25%25%3B%2C%0A%20%20%20%20%20%20%20%20%20-%25%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%24%0A%20%20%20%20%20%20%20%3BH%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23M%3D%0A%20%20%20%20%2C%25%23%23%23%23%23MH%24%25%3B%2B%23%23%23%23%23M%23%23%23-%2F%40%23%23%23%23%25%0A%20%20%3A%24H%25%2B%3B%3D-%20%20%20%20%20%20-%23%23%23%23X.%2CH%23%20%20%20-%2BM%23%23%40-%0A%20.%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%23%23%23%3B%20%20%20%20%3B%20%20%20%20%20%20%3D%24%23%23%2B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%23H%2C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3AXH%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2B%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%3B-",
+ "%20%20%20%20%20%20%20%20%20%20%20.-%3B%2B%24XHHHHHHX%24%2B%3B-.%0A%20%20%20%20%20%20%20%20%2C%3BX%40%40X%25%2F%3B%3D----%3D%3A%2F%25X%40%40X%2F%2C%0A%20%20%20%20%20%20%3D%24%40%40%25%3D.%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%3D%2BH%40X%3A%0A%20%20%20%20-XMX%3A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3DXMX%3D%0A%20%20%20%2F%40%40%3A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3DH%40%2B%0A%20%20%25%40X%2C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%24%40%24%0A%20%2B%40X.%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%24%40%25%0A-%40%40%2C%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%40%40%3D%0A%25%40%25%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2B%40%24%0AH%40%3A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3A%40H%0AH%40%3A%20%20%20%20%20%20%20%20%20%3AHHHHHHHHHHHHHHHHHHX%2C%20%20%20%20%3D%40H%0A%25%40%25%20%20%20%20%20%20%20%20%20%3B%40M%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40H-%20%20%20%2B%40%24%0A%3D%40%40%2C%20%20%20%20%20%20%20%20%3A%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%3D%20.%40%40%3A%0A%20%2B%40X%20%20%20%20%20%20%20%20%3A%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40M%40%40%40%40%40%40%3A%25%40%25%0A%20%20%24%40%24%2C%20%20%20%20%20%20%3B%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40M%40%40%40%40%40%40%24.%0A%20%20%20%2B%40%40HHHHHHH%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%2B%0A%20%20%20%20%3DX%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40X%3D%0A%20%20%20%20%20%20%3A%24%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40M%40%40%40%40%24%3A%0A%20%20%20%20%20%20%20%20%2C%3B%24%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40%40X%2F-%0A%20%20%20%20%20%20%20%20%20%20%20.-%3B%2B%24XXHHHHHX%24%2B%3B-.",
+ "%20%20%20%20%20%20%20%20%20%20%20%20%2C%3A%2F%2B%2F-%0A%20%20%20%20%20%20%20%20%20%20%20%20%2FM%2F%20%20%20%20%20%20%20%20%20%20%20%20%20%20.%2C-%3D%3B%2F%2F%3B-%0A%20%20%20%20%20%20%20.%3A%2F%3D%20%3BMH%2F%2C%20%20%20%20%2C%3D%2F%2B%25%24XH%40MM%23%40%3A%0A%20%20%20%20%20%20-%24%23%23%40%2B%24%23%23%23%40H%40MMM%23%23%23%23%23%23%23H%3A.%20%20%20%20-%2FH%23%0A%20.%2CH%40H%40%20X%23%23%23%23%23%23%40%20-H%23%23%23%23%23%40%2B-%20%20%20%20%20-%2BH%23%23%23%40X%0A%20%20.%2C%40%23%23H%3B%20%20%20%20%20%20%2BXM%23%23M%2F%2C%20%20%20%20%20%3D%25%40%23%23%23%40X%3B-%0AX%25-%20%20%3AM%23%23%23%23%23%23%23%23%23%23%24.%20%20%20%20.%3A%25M%23%23%23%40%25%3A%0AM%23%23H%2C%20%20%20%2BH%40%40%40%24%2F-.%20%20%2C%3B%24M%23%23%23%40%25%2C%20%20%20%20%20%20%20%20%20%20-%0AM%23%23%23%23M%3D%2C%2C---%2C.-%25%25H%23%23%23%23M%24%3A%20%20%20%20%20%20%20%20%20%20%2C%2B%40%23%23%0A%40%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%40%2F.%20%20%20%20%20%20%20%20%20%3A%25H%23%23%40%24-%0AM%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23H%2C%20%20%20%20%20%20%20%20%20%3BHM%23%23M%24%3D%0A%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23.%20%20%20%20.%3D%24M%23%23M%24%3D%0A%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23H..%3BXM%23%23M%24%3D%20%20%20%20%20%20%20%20%20%20.%3A%2B%0AM%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%40%25%3D%20%20%20%20%20%20%20%20%20%20%20%3D%2B%40MH%25%0A%40%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23M%2F.%20%20%20%20%20%20%20%20%20%3D%2BH%23X%25%3D%0A%3D%2BM%23%23%23%23%23%23%23%23%23%23%23%23%23%23%23M%2C%20%20%20%20%20%20%2C%2FX%23H%2B%3A%2C%0A%20%20.%3BXM%23%23%23%23%23%23%23%23%23%23%23H%3D%20%20%20%2C%2FX%23H%2B%3A%3B%0A%20%20%20%20%20.%3D%2BHM%23%23%23%23%23%23%23M%2B%2F%2BHM%40%2B%3D.%0A%20%20%20%20%20%20%20%20%20%2C%3A%2F%25XM%23%23%23%23H%2F.%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C.%3A%3D-.",
+ "%20%20%20%20%20%20%20%23%2B%20%40%20%20%20%20%20%20%23%20%23%20%20%20%20%20%20%20%20%20%20%20%20%20%20M%23%40%0A%20.%20%20%20%20.X%20%20X.%25%23%23%40%3B%23%20%23%20%20%20%2B%40%23%23%23%23%23%23%23X.%20%40H%25%0A%20%20%20%2C%3D%3D.%20%20%20%2C%23%23%23%23%23%23M%2B%20%20-%23%23%23%23%23%25M%23%23%23%23M-%20%20%20%20%23%0A%20%20%3AH%23%23M%25%3A%3D%23%23%2B%20.M%23%23M%2C%3B%23%23%23%23%23%2F%2B%23%23%23%23%23%23%23%25%20%2CM%23%0A%20.M%23%23%23%23%23%23%23%23%3D%20%20%3D%40%23%40.%3D%23%23%23%23%23M%3DM%23%23%23%23%23%23%23%3D%20%20X%23%0A%20%3A%40%40MMM%23%23M.%20%20-%23%23M.%2C%23%23%23%23%23%23%23M%23%23%23%23%23%23%23.%20%3D%20%20M%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%40%23%23..%23%23%23%3A.%20%20%20%20.H%23%23%23%23.%20%40%40%20X%2C%0A%20%20%20%23%23%23%23%23%23%23%23%23%23%23%23%3A%20%23%23%23%2C%2F%23%23%23%23%3B%20%20%2F%23%23%3D%20%40%23.%20M%0A%20%20%20%20%20%20%20%20%20%20%20%2CM%23%23%20%3B%23%23%2C%40%23M%3B%2FM%23M%20%20%40%23%20X%23%25%20X%23%0A.%25%3D%20%20%20%23%23%23%23%23%23M%23%23%20%23%23.M%23%3A%20%20%20.%2F%23M%20%2CM%20%23M%20%2C%23%24%0A%23%23%2F%20%20%20%20%20%20%20%20%20%24%23%23%20%23%2B%3B%23%3A%20%23%23%23%23%20%3B%23%2F%20M%20M-%20%40%23%20%3A%0A%23%2B%20%23M%40MM%23%23%23M-%3BM%20%23%3A%24%23-%23%23%24H%23%20.%23X%20%40%20%2B%20%24%23.%20%23%0A%20%20%20%20%20%20%23%23%23%23%23%23%2F.%3A%20%23%25%3D%23%20M%23%3AMM.%2F%23.-%23%20%20%40%23%3A%20H%23%0A%2B%2C.%3D%20%20%20%40%23%23%23%3A%20%2F%40%20%25%23%2C%40%20%20%23%23%40X%20%23%2C-%23%40.%23%23%25%20.%40%23%0A%23%23%23%23%23%2B%3B%2F%23%23%2F%20%40%23%23%20%20%40%23%2C%2B%20%20%20%20%20%20%20%2F%23M%20%20%20%20.%20X%2C%0A%20%20%20%3B%23%23%23M%23%40%20M%23%23%23H%20.%23M-%20%20%20%20%20%2C%23%23M%20%20%3B%40%40%3B%20%23%23%23%0A%20%20%20.M%23M%23%23H%20%3B%23%23%23%23X%20%2C%40%23%23%23%23%23%23%23M%2F%20-M%23%23%23%24%20%20-H%0A%20%20%20%20.M%23%23%23%25%20%20X%23%23%23%23H%20%20.%40%40MM%40%3B%20%20%3B%40%23M%40%0A%20%20%20%20%20%20H%23M%20%20%20%20%2F%40%23%23%23%23%2F%20%20%20%20%20%20%2C%2B%2B.%20%20%2F%20%3D%3D-%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%2C%3D%2F%3A%2C%20.%2BX%40MMH%40%23H%20%20%23%23%23%23%23%24%3D"
+];
+
+export default class StillAlivePlayer {
+ constructor(element) {
+ this.channel = new BroadcastChannel(window.location.hash);
+ this.channel.addEventListener("message",event => this.message(event));
+
+ this.player = element;
+
+ this.channel.postMessage(["WINDOW_READY",window.location.hash]);
+ }
+
+ // Clear the screen from elements
+ blank() {
+ while(this.player.firstChild) {
+ this.player.removeChild(this.player.lastChild);
+ }
+ }
+
+ // Create a new paragraph and make it the target for textFeed calls
+ lineFeed() {
+ this.target = document.createElement("p");
+ this.player.appendChild(this.target);
+ }
+
+ // Append text to the current target element
+ textFeed(text) {
+ this.target.innerText = this.target.innerText + text;
+ }
+
+ // Decode and draw art from artset by key
+ drawArt(key) {
+ this.blank();
+ this.target = document.createElement("pre");
+ this.target.innerText = window.decodeURIComponent(artset[key]);
+ this.player.appendChild(this.target);
+ }
+
+ message(event) {
+ const type = event.data[0];
+ const data = event.data[1];
+
+ switch(type) {
+ case "LINE_FEED": this.lineFeed(); break;
+ case "TEXT_FEED": this.textFeed(data); break;
+ case "DRAW_ART": this.drawArt(data); break;
+ case "BLANK": this.blank(); break;
+ }
+ }
+}
\ No newline at end of file
diff --git a/assets/js/player.mjs b/assets/js/player.mjs
new file mode 100644
index 0000000..2462732
--- /dev/null
+++ b/assets/js/player.mjs
@@ -0,0 +1,18 @@
+import { default as Player } from "./modules/StillAlivePlayer.mjs";
+
+// Go to start page if location.hash is omitted
+if(!window.location.hash) {
+ // Close this window, if we can
+ window.close();
+
+ // Otherwise redirect to main page
+ const page = window.location.pathname.split("/");
+ const url = window.location.href.replace(page[page.length - 1],"");
+ window.location.replace(url);
+}
+
+// Add location.hash to body classList
+document.body.classList.add(window.location.hash.substring(1));
+
+const element = document.getElementById("player");
+const player = new Player(element);
\ No newline at end of file
diff --git a/assets/js/script.mjs b/assets/js/script.mjs
new file mode 100755
index 0000000..2e112be
--- /dev/null
+++ b/assets/js/script.mjs
@@ -0,0 +1,21 @@
+import { default as Player } from "./modules/PlayerManager.mjs";
+
+const play = document.getElementById("play");
+
+try {
+ if(typeof BroadcastChannel !== "function") {
+ throw new Error("BroadcastChannel API is not supported");
+ }
+
+ const mediaElement = document.getElementById("still-alive");
+
+ const player = new Player(mediaElement);
+ play.addEventListener("click",() => player.init());
+} catch(error) {
+ const message = document.getElementById("message");
+
+ play.classList.add("unsupported");
+ play.innerText = "Your browser can not play this demo";
+
+ message.innerText = error;
+}
\ No newline at end of file
diff --git a/assets/media/still-alive.webm b/assets/media/still-alive.webm
new file mode 100644
index 0000000..58cf039
Binary files /dev/null and b/assets/media/still-alive.webm differ
diff --git a/index.html b/index.html
new file mode 100755
index 0000000..d5d17c5
--- /dev/null
+++ b/index.html
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+ Still Alive
+
+
+
+
+ Still Alive
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/monkeydo_credits.json b/monkeydo_credits.json
new file mode 100644
index 0000000..8ea6f0a
--- /dev/null
+++ b/monkeydo_credits.json
@@ -0,0 +1 @@
+{"tasks": [[0, "lineFeed", "#credits"], [70, "textFeed", ">", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "O", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "L", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", " ", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", " ", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "y", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "p", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "Y", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "m", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "z", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "z", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "k", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "-", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "p", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "y", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "o", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "k", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "z", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "Q", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "k", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "t", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "g", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "F", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "z", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "k", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "F", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "F", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "F", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "p", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "g", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "V", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "g", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "m", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "x", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "x", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "h", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "g", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "y", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "w", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "F", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "y", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "i", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "j", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "y", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "y", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "z", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "y", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "I", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "w", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "o", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "O", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "p", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "u", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "y", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "p", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "o", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "W", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "y", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "p", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "y", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "t", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "U", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "V", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "V", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "V", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "x", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "V", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "W", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "W", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "W", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "W", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "W", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "p", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "w", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "W", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", ".", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "W", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "W", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "t", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "W", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "t", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "Z", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "i", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "Z", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "a", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "'", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "'", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", ":", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "J", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "V", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", ":", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "-", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "O", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", ",", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "-", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "E", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "V", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", ":", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "\\", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "F", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "V", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", ":", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", ",", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", ",", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "W", "#credits"], [70, "textFeed", "A", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "V", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "g", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", ":", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", ",", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "o", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", ":", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "L", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", ":", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "y", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "Q", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "b", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "h", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "d", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "B", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "u", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "f", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", ":", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "-", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "p", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "k", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "y", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", ":", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "e", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "I", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "l", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "F", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "r", "#credits"], [70, "textFeed", "t", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "w", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", "t", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "v", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "k", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "O", "#credits"], [70, "textFeed", "F", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "G", "#credits"], [70, "textFeed", "E", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "a", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "d", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "D", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "m", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "s", "#credits"], [70, "textFeed", ",", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "S", "#credits"], [70, "textFeed", "L", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "c", "#credits"], [70, "textFeed", "h", "#credits"], [70, "textFeed", "n", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "l", "#credits"], [70, "textFeed", "o", "#credits"], [70, "textFeed", "g", "#credits"], [70, "textFeed", "i", "#credits"], [70, "textFeed", "e", "#credits"], [70, "textFeed", "s", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "K", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "Y", "#credits"], [70, "textFeed", "O", "#credits"], [70, "textFeed", "U", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "F", "#credits"], [70, "textFeed", "O", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "P", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "G", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "S", "#credits"], [70, "lineFeed", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "H", "#credits"], [70, "textFeed", "M", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "N", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "E", "#credits"], [70, "textFeed", "R", "#credits"], [70, "textFeed", " ", "#credits"], [70, "textFeed", "A", "#credits"], [70, "textFeed", "C", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "V", "#credits"], [70, "textFeed", "I", "#credits"], [70, "textFeed", "T", "#credits"], [70, "textFeed", "Y", "#credits"], [70, "textFeed", "!", "#credits"], [70, "textFeed", "!", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"], [70, "lineFeed", "#credits"]]}
\ No newline at end of file
diff --git a/monkeydo_lyrics.json b/monkeydo_lyrics.json
new file mode 100644
index 0000000..dba558d
--- /dev/null
+++ b/monkeydo_lyrics.json
@@ -0,0 +1,10022 @@
+{
+ "tasks": [
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "F",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "F",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "O",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "R",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "M",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "-",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "2",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "9",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "8",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "2",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "7",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "2",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "8",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "1",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "-",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "1",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "2",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ ":",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "T",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "A",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "R",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "p",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 2300,
+ "textFeed",
+ "T",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "w",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "p",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "playCredits"
+ ],
+ [
+ 1300,
+ "textFeed",
+ "I",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "'",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "k",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "g",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ ":",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 200,
+ "textFeed",
+ "H",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "U",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "G",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "E",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "S",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "U",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "C",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "C",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "E",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "S",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "S",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 1300,
+ "textFeed",
+ "I",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "'",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "v",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "y",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 180,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 180,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 180,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 180,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 180,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 180,
+ "textFeed",
+ "f",
+ "#lyrics"
+ ],
+ [
+ 180,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 180,
+ "textFeed",
+ "c",
+ "#lyrics"
+ ],
+ [
+ 180,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 180,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 180,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 180,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 180,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 1800,
+ "drawArt",
+ 0
+ ],
+ [
+ 100,
+ "textFeed",
+ "A",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "p",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "S",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "c",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "c",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 1600,
+ "textFeed",
+ "W",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "w",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "w",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "b",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "c",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 200,
+ "textFeed",
+ "w",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "c",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 2000,
+ "textFeed",
+ "F",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "g",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "f",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "f",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "drawArt",
+ 1
+ ],
+ [
+ 70,
+ "textFeed",
+ "E",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "x",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "c",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "p",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "w",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "drawArt",
+ 0
+ ],
+ [
+ 70,
+ "textFeed",
+ "B",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "'",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "c",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "y",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "g",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "v",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "v",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "y",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "k",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 300,
+ "textFeed",
+ "Y",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "j",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "k",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "p",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "y",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "g",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 120,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "y",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "f",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "c",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "k",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "drawArt",
+ 2
+ ],
+ [
+ 300,
+ "textFeed",
+ "A",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "c",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "c",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "g",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "A",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "y",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "k",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "g",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "drawArt",
+ 0
+ ],
+ [
+ 300,
+ "textFeed",
+ "F",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "p",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "p",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "w",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 200,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "v",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 2700,
+ "blank",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "F",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "F",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "O",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "R",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "M",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "-",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "5",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "5",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "5",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "5",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "5",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "1",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "-",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "5",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ ":",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 170,
+ "textFeed",
+ "P",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "F",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "A",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ ":",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "D",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "<",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "<",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "S",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "b",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "j",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "c",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "N",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "H",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ">",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ">",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ",",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "I",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "'",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "v",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "g",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "y",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 2800,
+ "textFeed",
+ "I",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "'",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "b",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "g",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 300,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "c",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "g",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 150,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 150,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 150,
+ "textFeed",
+ "w",
+ "#lyrics"
+ ],
+ [
+ 150,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 2100,
+ "textFeed",
+ "E",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "v",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "g",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "y",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "drawArt",
+ 3
+ ],
+ [
+ 0,
+ "textFeed",
+ "b",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "k",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "y",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 200,
+ "textFeed",
+ "A",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "k",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 150,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 2300,
+ "drawArt",
+ 6
+ ],
+ [
+ 0,
+ "textFeed",
+ "A",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "p",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "c",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 2000,
+ "textFeed",
+ "A",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "w",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "v",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "y",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "p",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "c",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 500,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 300,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "drawArt",
+ 4
+ ],
+ [
+ 130,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "f",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 2000,
+ "textFeed",
+ "A",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "y",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "b",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "b",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "c",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 500,
+ "drawArt",
+ 5
+ ],
+ [
+ 0,
+ "textFeed",
+ "I",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "w",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "p",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "p",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "y",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "f",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "y",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "!",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 300,
+ "textFeed",
+ "N",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "w",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "p",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "f",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "k",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "b",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "f",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 230,
+ "textFeed",
+ "A",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "w",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "'",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "f",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "b",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 400,
+ "textFeed",
+ "W",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "'",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "g",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "drawArt",
+ 6
+ ],
+ [
+ 0,
+ "textFeed",
+ "S",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "I",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "'",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "G",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "L",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "D",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "I",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "g",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "b",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "drawArt",
+ 2
+ ],
+ [
+ 0,
+ "textFeed",
+ "T",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "k",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "f",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "g",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "w",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "drawArt",
+ 0
+ ],
+ [
+ 0,
+ "textFeed",
+ "f",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "p",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "p",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 170,
+ "textFeed",
+ "w",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 200,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 170,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 170,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 170,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 170,
+ "textFeed",
+ "v",
+ "#lyrics"
+ ],
+ [
+ 170,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 170,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 170,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 2800,
+ "blank",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "F",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "F",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "O",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "R",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "M",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "-",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "5",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "5",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "5",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "5",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "5",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "1",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "-",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "6",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ ":",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "P",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "F",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "A",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "A",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ ":",
+ "#lyrics"
+ ],
+ [
+ 300,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "O",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "g",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ":",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "textFeed",
+ "G",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "v",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 170,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 170,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 170,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 2500,
+ "textFeed",
+ "I",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "k",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "I",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "'",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "p",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "f",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "y",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 130,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 1900,
+ "textFeed",
+ "M",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "y",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "b",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "y",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "'",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "f",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "p",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "y",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 2100,
+ "textFeed",
+ "M",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "y",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "b",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "drawArt",
+ 7
+ ],
+ [
+ 70,
+ "textFeed",
+ "B",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "c",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "k",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 200,
+ "textFeed",
+ "M",
+ "#lyrics"
+ ],
+ [
+ 200,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 200,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 200,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 200,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 500,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 500,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 1400,
+ "textFeed",
+ "T",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "H",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "A",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "T",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "W",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "A",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "S",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "A",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "J",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "O",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "K",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "E",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 1300,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "F",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "A",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "T",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "C",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "H",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "A",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "N",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "C",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "E",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 1300,
+ "textFeed",
+ "A",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "y",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "w",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "y",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ ",",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "drawArt",
+ 8
+ ],
+ [
+ 100,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "c",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "k",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "g",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 100,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 500,
+ "textFeed",
+ "I",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "'",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "c",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "drawArt",
+ 9
+ ],
+ [
+ 200,
+ "textFeed",
+ "L",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "k",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "k",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "g",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "drawArt",
+ 1
+ ],
+ [
+ 100,
+ "textFeed",
+ "w",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "'",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "c",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "c",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "drawArt",
+ 0
+ ],
+ [
+ 300,
+ "textFeed",
+ "W",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "I",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "k",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ",",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "k",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "G",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "L",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "D",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "I",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "'",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "y",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "drawArt",
+ 2
+ ],
+ [
+ 200,
+ "textFeed",
+ "I",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "'",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "v",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "x",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "p",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "drawArt",
+ 6
+ ],
+ [
+ 200,
+ "textFeed",
+ "T",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "c",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "b",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "drawArt",
+ 0
+ ],
+ [
+ 200,
+ "textFeed",
+ "O",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "p",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "p",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "w",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 200,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 200,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 200,
+ "textFeed",
+ "v",
+ "#lyrics"
+ ],
+ [
+ 200,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 200,
+ "textFeed",
+ ".",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 400,
+ "blank",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "P",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "S",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ ":",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "A",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "b",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "v",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "I",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "v",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 1200,
+ "textFeed",
+ "P",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "P",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "S",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ ":",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "I",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "'",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "g",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "c",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "c",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "I",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "'",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "v",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 1200,
+ "textFeed",
+ "P",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "P",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "P",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "S",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ ":",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "I",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "f",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "f",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "c",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "I",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "'",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "m",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "v",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 1200,
+ "textFeed",
+ "F",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "I",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "N",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "A",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "L",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "T",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "H",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "O",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "U",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "G",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "H",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "T",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ ":",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "W",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "y",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "'",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "y",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "g",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "I",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "'",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "b",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "v",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 500,
+ "textFeed",
+ "F",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "I",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "N",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "A",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "L",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "T",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "H",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "O",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "U",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "G",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "H",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "T",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "P",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ "S",
+ "#lyrics"
+ ],
+ [
+ 30,
+ "textFeed",
+ ":",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "A",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "w",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "h",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "n",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "y",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "o",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "u",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "'",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "r",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "d",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "I",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "w",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "b",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "s",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "t",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "a",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "l",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "i",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "v",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "e",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 500,
+ "textFeed",
+ "S",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "T",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "I",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "L",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "L",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ " ",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "A",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "L",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "I",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "V",
+ "#lyrics"
+ ],
+ [
+ 70,
+ "textFeed",
+ "E",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ],
+ [
+ 400,
+ "blank",
+ "#lyrics"
+ ],
+ [
+ 0,
+ "lineFeed",
+ "#lyrics"
+ ]
+ ]
+}
\ No newline at end of file
diff --git a/player.html b/player.html
new file mode 100755
index 0000000..1a61a3d
--- /dev/null
+++ b/player.html
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+ ​
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/robots.txt b/robots.txt
new file mode 100644
index 0000000..97b12d0
--- /dev/null
+++ b/robots.txt
@@ -0,0 +1,5 @@
+User-Agent: *
+
+Allow: /
+
+Disallow: /player
\ No newline at end of file