diff --git a/.eslintrc.cjs b/.eslintrc.cjs
index a6015b2cc1361e0d78812fff919c1da121fec500..fd70cac48a628330d41056a0eabbb9b048fe2fd5 100644
--- a/.eslintrc.cjs
+++ b/.eslintrc.cjs
@@ -78,6 +78,7 @@ module.exports = {
 		ZIndices: "readonly",
 		Time: "readonly",
 		EventSystem: "readonly",
+		Weather: "readonly",
 		// DoL functions
 		assignDefaults: "readonly",
 		between: "readonly",
diff --git a/.gitattributes b/.gitattributes
index d85c387ffeabdd5d288b6efc1e4d6ba711828b8e..93d6b56d16c05938ec6d854080faa954a0760f96 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -9,4 +9,4 @@ devTools/androidsdk/image text eol=lf
 *.twee	text eol=lf
 *.py	text eol=lf
 *.txt	text eol=lf
-
+*.bat	text eol=lf
diff --git a/game/03-JavaScript/02-Helpers/colour-utils.js b/game/03-JavaScript/02-Helpers/colour-utils.js
index 04a86c93f20612b3635abc2aaa25b74ba12561a7..2e2940cbd54588cac2141e93ee319b4ca48c93fe 100644
--- a/game/03-JavaScript/02-Helpers/colour-utils.js
+++ b/game/03-JavaScript/02-Helpers/colour-utils.js
@@ -141,6 +141,39 @@ const ColourUtils = (() => {
 		return hslToFilter(hsl);
 	}
 
+	function interpolateColor(color1, color2, factor) {
+		factor = Math.max(0, Math.min(factor, 1));
+	
+		// Convert hex colors to RGBA
+		const parseColor = (color) => {
+			let rgb = parseInt(color.slice(1, 7), 16);
+			let r = (rgb >> 16) & 0xff;
+			let g = (rgb >> 8) & 0xff;
+			let b = rgb & 0xff;
+			let a = color.length > 7 ? parseInt(color.slice(7), 16) / 255 : 1; // Normalize alpha to [0, 1]
+			return [r, g, b, a];
+		};
+	
+		const [r1, g1, b1, a1] = parseColor(color1);
+		const [r2, g2, b2, a2] = parseColor(color2);
+	
+		// Interpolate RGBA
+		const r = Math.round(r1 + (r2 - r1) * factor);
+		const g = Math.round(g1 + (g2 - g1) * factor);
+		const b = Math.round(b1 + (b2 - b1) * factor);
+		const a = Math.round((a1 + (a2 - a1) * factor) * 255); // Denormalize alpha to [0, 255]
+	
+		// Convert each component to a two-digit hexadecimal string and concatenate
+		let hex = `#${r.toString(16).padStart(2, '0')}${g.toString(16).padStart(2, '0')}${b.toString(16).padStart(2, '0')}`;
+	
+		// Append alpha to hex string only if it's less than full opacity
+		if (a < 255) {
+			hex += a.toString(16).padStart(2, '0');
+		}
+	
+		return hex;
+	}
+
 	/* Export module */
 	return Object.seal({
 		partToFilter,
@@ -152,6 +185,7 @@ const ColourUtils = (() => {
 		rgbToHex,
 		intToHex,
 		invertHex,
+		interpolateColor,
 	});
 })();
 
diff --git a/game/03-JavaScript/02-Helpers/macros.js b/game/03-JavaScript/02-Helpers/macros.js
index 596f072811d8fcc7d594957d2ca6ccd4e9011705..9dd73616d2d0d08a7573758d604e7c62f98fb835 100644
--- a/game/03-JavaScript/02-Helpers/macros.js
+++ b/game/03-JavaScript/02-Helpers/macros.js
@@ -59,26 +59,6 @@ const ErrorSystem = ((Scripting, Errors) => {
 		},
 	});
 
-	/**
-	 * DEPRECATED: Time should no longer be able to desynchronise, so this check is unnecessary.
-	 *
-	 * Jimmy: checkTimeSystem macro to print a message if time desynchronises.
-	 *  	   Potential to place time correction code here instead of in backComp.
-	 */
-	Macro.add("checkTimeSystem", {
-		handler() {
-			if (V.time !== undefined && V.hour !== undefined && V.minute !== undefined) {
-				if (V.time !== V.hour * 60 + V.minute) {
-					const message = `$time: ${V.time} desynchronised from $hour: ${V.hour} and $minute: ${V.minute}. Total: ${V.hour * 60 + V.minute}.`;
-					const source = `Caught in Passage ${this.args[0]}. ${V.passage}, <<checkTimeSystem>>.`;
-					throwError(this.output, message, source);
-				}
-			} else {
-				console.debug(`One of the time variables is not accessible yet: ${V.passage}: ${DOL.Stack}.`);
-			}
-		},
-	});
-
 	/**
 	 * Jimmy: defer Macro, to be used to defer execution of the provided contents until after the passage has been processed.
 	 * 		   For example, let's say you create <div id="myDiv"></div> in a widget. And you want to use $('#myDiv') in that
diff --git a/game/03-JavaScript/base.js b/game/03-JavaScript/base.js
index ed3df62e13bf61deff8641cd9e916b3e6a12fa01..43a5a78752894b1f0ef6ea91970036c32a8d39c4 100644
--- a/game/03-JavaScript/base.js
+++ b/game/03-JavaScript/base.js
@@ -1,3 +1,4 @@
+/* eslint-disable no-undef */
 /* eslint-disable jsdoc/require-description-complete-sentence */
 // adjust mousetrap behavior, see mousetrap.js
 Mousetrap.prototype.stopCallback = function (e, element, combo) {
@@ -216,27 +217,27 @@ function integrityWord(worn, slot) {
 				T.text_output = "";
 		}
 	}
-    let colorClass;
-    switch (kw) {
-        case "full":
-            colorClass = "green";
-            break;
-        case "tattered":
-            colorClass = "red";
-            break;
-        case "torn":
-            colorClass = "purple";
-            break;
-        case "frayed":
-            colorClass = "teal";
-            break;
-        default:
-            colorClass = ""; // default without color
-    }
-    if (T.text_output) {
-        T.text_output = `<span class="${colorClass}">${T.text_output.trim()}</span> `;
-    }
-    return T.text_output;
+	let colorClass;
+	switch (kw) {
+		case "full":
+			colorClass = "green";
+			break;
+		case "tattered":
+			colorClass = "red";
+			break;
+		case "torn":
+			colorClass = "purple";
+			break;
+		case "frayed":
+			colorClass = "teal";
+			break;
+		default:
+			colorClass = ""; // default without color
+	}
+	if (T.text_output) {
+		T.text_output = `<span class="${colorClass}">${T.text_output.trim()}</span> `;
+	}
+	return T.text_output;
 }
 window.integrityWord = integrityWord;
 DefineMacroS("integrityWord", integrityWord);
@@ -309,7 +310,12 @@ function outfitChecks() {
 	T.underNaked = V.worn.under_lower.name === "naked" && V.worn.under_upper.name === "naked";
 	T.middleNaked = V.worn.lower.name === "naked" && V.worn.upper.name === "naked";
 	T.overNaked = V.worn.over_lower.name === "naked" && V.worn.over_upper.name === "naked";
-	T.topless = V.worn.over_upper.name === "naked" && V.worn.upper.name === "naked" && V.worn.under_upper.name === "naked" && (V.worn.lower.name !== "plaid school pinafore" && V.worn.lower.name !== "school pinafore");
+	T.topless =
+		V.worn.over_upper.name === "naked" &&
+		V.worn.upper.name === "naked" &&
+		V.worn.under_upper.name === "naked" &&
+		V.worn.lower.name !== "plaid school pinafore" &&
+		V.worn.lower.name !== "school pinafore";
 	T.bottomless = V.worn.over_lower.name === "naked" && V.worn.lower.name === "naked" && V.worn.under_lower.name === "naked";
 	T.fullyNaked = T.topless && T.bottomless;
 }
@@ -503,6 +509,43 @@ function normalise(value, max, min = 0) {
 }
 window.normalise = normalise;
 
+/**
+ * Selects a random item from an array of weighted options. Each option is an array with
+ * two elements: the item, and its weight.
+ * Works similar to eventpool, but more generic and lightweight, and works with any data types.
+ *
+ * Options with a higher weight have a higher chance of being chosen.
+ *
+ * @param {Array} options Each option is an array where the first item is a value, and the second item is its weight.
+ * Example: ["apple", 1], ["banana", 2], ["cherry", 3]
+ * @returns {*} The selected item
+ * @example
+ *     console.log(weightedRandom(["apple", 1], ["banana", 2], ["cherry", 3]));  // Relative probability for these will be: apple: 16.67%, banana: 33.33%, cherry: 50%
+ */
+function weightedRandom(...options) {
+	if (!Array.isArray(options) || options.length === 0) {
+		throw new Error("Options must be a non-empty array.");
+	}
+	let totalWeight = 0;
+	const processedOptions = options.map(([value, weight]) => {
+		if (typeof weight !== "number") {
+			throw new Error("Weight must be a number.");
+		}
+		totalWeight += weight;
+		return [value, totalWeight];
+	});
+
+	const random = Math.random() * totalWeight;
+	for (const [value, cumulativeWeight] of processedOptions) {
+		if (cumulativeWeight >= random) {
+			return value;
+		}
+	}
+	console.error("weightedRandom: Unreachable code reached. Returning " + options[0][0]);
+	return options[0][0];
+}
+window.weightedRandom = weightedRandom;
+
 /**
  * This macro sets $rng. If the variable $rngOverride is set, $rng will always be set to that.
  * Set $rngOverride in the console for bugtesting purposes. Remember to unset it after testing is finished.
diff --git a/game/03-JavaScript/weather/00-canvasElement.js b/game/03-JavaScript/weather/00-canvasElement.js
new file mode 100644
index 0000000000000000000000000000000000000000..c41e3c431edea3e7046c70fdba50a19769387295
--- /dev/null
+++ b/game/03-JavaScript/weather/00-canvasElement.js
@@ -0,0 +1,75 @@
+/* eslint-disable no-undef */
+class SkyCanvasElement {
+	constructor(name, settings) {
+		if (!arguments[0]) return;
+
+		this.name = name;
+		this.settings = settings;
+
+		this.position = {};
+		this.expandFactor = 0.1;
+		this.createCanvasImage(settings);
+	}
+
+	createCanvasImage() {
+		this.img = new Image();
+		this.img.src = this.settings.imgPath;
+		this.canvas = $("<canvas/>", {
+			id: this.name,
+		});
+		this.canvasElement = this.canvas[0];
+		this.ctx = this.canvasElement.getContext("2d");
+	}
+
+	loaded() {
+		return new Promise((resolve, reject) => {
+			resolve();
+		});
+	}
+
+	interpolate(value1, value2, factor) {
+		return value1 + (value2 - value1) * factor;
+	}
+
+	normalize(value) {
+		return (value + 1) / 2;
+	}
+
+	setOrbit(currentTime) {
+		this.riseTime = this.settings.orbit.riseTime * Time.secondsPerHour;
+		this.setTime = this.settings.orbit.setTime * Time.secondsPerHour;
+
+		// Adjusts for overnight duration if needed
+		if (this.setTime < this.riseTime) {
+			this.setTime += Time.secondsPerDay;
+		}
+
+		const timePercent = this.calculateTimePercent(currentTime);
+		const position = this.getElementPosition(timePercent);
+
+		this.position.adjustedX = position.x;
+		this.position.adjustedY = position.y;
+	}
+
+	calculateTimePercent(currentTime) {
+		const expandedDuration = (this.setTime - this.riseTime) / (1 - 2 * this.expandFactor);
+		let elapsed = currentTime - (this.riseTime - this.expandFactor * expandedDuration);
+		if (elapsed < 0) elapsed += Time.secondsPerDay;
+		return Math.clamp(elapsed / expandedDuration, 0, 1);
+	}
+
+	getElementPosition(timePercent) {
+		timePercent = Math.clamp(timePercent, 0, 1);
+		const adjustedTimePercent = (timePercent - this.expandFactor) / (1 - 2 * this.expandFactor);
+		const x = lerp(Math.clamp(adjustedTimePercent, 0, 1), this.settings.orbit.path.startX, this.settings.orbit.path.endX);
+
+		const amplitude = this.settings.orbit.path.peakY - this.settings.orbit.path.horizon;
+		const factor = 1 - 4 * Math.pow(adjustedTimePercent - 0.5, 2);
+		const y = this.settings.orbit.path.horizon + amplitude * factor;
+
+		return { x, y };
+	}
+
+	draw() {}
+}
+window.SkyCanvasElement = SkyCanvasElement;
diff --git a/game/03-JavaScript/weather/01-cloudsElement.js b/game/03-JavaScript/weather/01-cloudsElement.js
new file mode 100644
index 0000000000000000000000000000000000000000..db70d431b61e83e9cf467b23b978259f19ed8085
--- /dev/null
+++ b/game/03-JavaScript/weather/01-cloudsElement.js
@@ -0,0 +1,193 @@
+/* eslint-disable no-undef */
+class SkyCanvasWeather extends SkyCanvasElement {
+	constructor(name, settings) {
+		super(name, settings);
+		this.currentWeather = "clear";
+
+		this.Cloud = class Cloud {
+			constructor(type, sprite, x, y, movementSpeed) {
+				this.type = type;
+				this.sprite = sprite;
+				this.x = x;
+				this.y = y;
+				this.movementSpeed = movementSpeed;
+				this.destroy = false;
+
+				this._opacity = 0;
+				this.fadeDuration = 20; // Duration for fade in/out in minutes
+			}
+
+			get opacity() {
+				return this._opacity;
+			}
+
+			set opacity(value) {
+				this._opacity = Math.max(0, Math.min(1, value));
+				if (this._opacity === 1) this.fadeIn = false;
+				else if (this._opacity === 0) this.fadeOut = false;
+			}
+
+			move(elapsedTime) {
+				this.x += this.movementSpeed * elapsedTime;
+			}
+
+			updateOpacity(elapsedTime) {
+				this.opacity += ((this.fadeIn ? 1 : -1) * elapsedTime) / this.fadeDuration;
+			}
+
+			create(fadeIn = false) {
+				if (fadeIn) {
+					this._opacity = 0;
+					this.fadeIn = true;
+				} else {
+					this._opacity = 1;
+				}
+			}
+
+			update(elapsedTime) {
+				if (elapsedTime < 1) return;
+				this.move(elapsedTime);
+				if (this.fadeIn || this.fadeOut) this.updateOpacity(elapsedTime);
+			}
+
+			draw(ctx) {
+				ctx.globalAlpha = this.opacity;
+				console.log("GLOBAL ALPHA", ctx.globalAlpha);
+				ctx.drawImage(this.sprite, this.x, this.y);
+				ctx.globalAlpha = 1; // Reset alpha
+			}
+		};
+	}
+
+	createCanvasImage() {
+		this.cloudSprites = [];
+		this.clouds = [];
+		this.loadCloudSprites();
+
+		this.canvas = $("<canvas/>", {
+			id: this.name,
+		});
+		this.canvasElement = this.canvas[0];
+		this.ctx = this.canvasElement.getContext("2d");
+
+		this.canvasElement.width = this.settings.dimensions.width;
+		this.canvasElement.height = this.settings.dimensions.height;
+
+		const x = 0;
+		const y = 0;
+		this.canvas.css({
+			left: `${x}px`,
+			top: `${y}px`,
+		});
+	}
+
+	loadCloudSprites() {
+		this.settings.clouds.images.forEach((value, key) => {
+			const img = new Image();
+			img.src = this.settings.clouds.imgPath + key;
+			this.cloudSprites.push({ img, size: value });
+		});
+		console.log("cloudSprites", this.cloudSprites);
+	}
+
+	loaded() {
+		const loadSprites = this.cloudSprites.map(sprite => {
+			return new Promise((resolve, reject) => {
+				sprite.img.onload = resolve;
+				sprite.img.onerror = e => reject(new Error("Error loading cloud image: " + e.message));
+				this.currentDate = 0;
+			});
+		});
+		return Promise.all(loadSprites);
+	}
+
+	updateWeather(weatherType, instant = false) {
+		if (!instant && this.currentWeather === weatherType) return;
+
+		this.clouds.forEach(cloud => {
+			cloud.movementSpeed *= 2;
+			cloud.destroy = true;
+		});
+
+		let behavior = this.settings.behaviors[weatherType];
+		if (!behavior) behavior = this.settings.behaviors.clear;
+
+		this.currentWeather = weatherType;
+
+		console.log("behavior.count", behavior.count);
+
+		for (const key in behavior.count) {
+			console.log("Object.prototype.hasOwnProperty.call(behavior.count, key)", Object.prototype.hasOwnProperty.call(behavior.count, key));
+			console.log("key", key);
+			if (Object.prototype.hasOwnProperty.call(behavior.count, key)) {
+				const count = behavior.count[key]();
+				console.log("count", count);
+				for (let i = 0; i < count; i++) {
+					this.clouds.push(this.createCloud(key));
+				}
+			}
+		}
+		console.log("CLOUDS1", this.clouds);
+	}
+
+	createCloud(cloudType, fadeIn = true, offScreen = false) {
+		console.log("CreateCloud");
+
+		const spritesOfSameType = this.cloudSprites.filter(sprite => sprite.size === cloudType);
+		const cloudSprite = spritesOfSameType.filter(sprite => !this.clouds.some(cloud => cloud.sprite === sprite.img)).concat(spritesOfSameType)[
+			random(0, spritesOfSameType.length - 1)
+		];
+
+		let xPosition, yPosition, isPositionValid;
+		const maxAttempts = 5;
+		let attempts = 0;
+		do {
+			xPosition = offScreen ? -cloudSprite.img.width - random(0, cloudSprite.img.width) : random(-cloudSprite.img.width, this.settings.dimensions.width);
+			yPosition = random(this.settings.clouds.maxHeight - cloudSprite.img.height / 2, this.settings.clouds.minHeight - cloudSprite.img.height / 2);
+
+			isPositionValid = !this.clouds.some(cloud => {
+				const xOverlap = Math.abs(cloud.x - xPosition) < (cloud.sprite.width + cloudSprite.img.width) / 2;
+				const yOverlap = Math.abs(cloud.y - yPosition) < (cloud.sprite.height + cloudSprite.img.height) / 2;
+				return xOverlap && yOverlap;
+			});
+
+			attempts++;
+		} while (!isPositionValid && attempts < maxAttempts);
+
+		const movementSpeed = randomFloat(this.settings.clouds.movement.speedMin, this.settings.clouds.movement.speedMax);
+
+		const newCloud = new this.Cloud(cloudType, cloudSprite.img, xPosition, yPosition, movementSpeed);
+		newCloud.create(fadeIn);
+		console.log("CREATED CLOUD:", newCloud);
+		return newCloud;
+	}
+
+	draw(date) {
+		console.log("NEW DATE", date);
+		console.log("OLD DATE", this.currentDate);
+		this.ctx.clearRect(0, 0, this.canvasElement.width, this.canvasElement.height);
+		const elapsedTime = this.currentDate === 0 ? 0 : this.currentDate.compareWith(date, true) / Time.secondsPerMinute;
+		this.currentDate = new DateTime(date);
+		console.log("elapsedTime", elapsedTime);
+		console.log("CLOUDS2", this.clouds);
+		// Drawing each cloud
+		this.clouds.forEach(cloud => {
+			cloud.update(elapsedTime);
+			if (cloud.x >= this.canvasElement.width) cloud.opacity = 0;
+			cloud.draw(this.ctx);
+		});
+
+		// Clean the array by removing faded out or hidden clouds
+		for (let i = this.clouds.length - 1; i >= 0; i--) {
+			const cloud = this.clouds[i];
+			if (!cloud.fadeIn && cloud.opacity === 0) {
+				if (!cloud.destroy) {
+					this.clouds.splice(i, 1, this.createCloud(cloud.type, false, true));
+				} else {
+					this.clouds.splice(i, 1);
+				}
+			}
+		}
+	}
+}
+window.SkyCanvasWeather = SkyCanvasWeather;
diff --git a/game/03-JavaScript/weather/01-moonElement.js b/game/03-JavaScript/weather/01-moonElement.js
new file mode 100644
index 0000000000000000000000000000000000000000..b5698641b6db0be3ccff9ca5190ab0d78995171c
--- /dev/null
+++ b/game/03-JavaScript/weather/01-moonElement.js
@@ -0,0 +1,145 @@
+/* eslint-disable no-undef */
+class SkyCanvasMoon extends SkyCanvasElement {
+	loaded() {
+		return new Promise((resolve, reject) => {
+			this.img.onload = () => {
+				this.canvasElement.width = this.img.width + this.settings.glow.size * 2;
+				this.canvasElement.height = this.img.height + this.settings.glow.size * 2;
+				this.position.diameter = this.img.width;
+				this.spriteDiameter = this.position.diameter + 1;
+				this.radius = this.spriteDiameter / 2;
+				this.centerPos = (this.canvasElement.width - this.spriteDiameter) / 2 + this.radius;
+
+				this.offscreenCanvas = $("<canvas/>")[0];
+				this.shadowCanvas = $("<canvas/>")[0];
+				resolve();
+			};
+			this.img.onerror = reject;
+		});
+	}
+
+	updateCanvas(moonPhaseFraction) {
+		this.updateShadow(moonPhaseFraction);
+
+		this.offscreenCanvas.width = this.canvasElement.width;
+		this.offscreenCanvas.height = this.canvasElement.height;
+		const offscreenCtx = this.offscreenCanvas.getContext("2d");
+
+		offscreenCtx.clearRect(0, 0, this.offscreenCanvas.width, this.offscreenCanvas.height);
+
+		// Prepare the glow effect
+		offscreenCtx.fillStyle = this.settings.glow.color;
+		offscreenCtx.beginPath();
+		offscreenCtx.arc(this.centerPos, this.centerPos, this.radius - 1, 0, 2 * Math.PI);
+		offscreenCtx.fill();
+
+		// First shadow-pass
+		offscreenCtx.globalCompositeOperation = "destination-out";
+		offscreenCtx.drawImage(this.shadowCanvas, 0, 0);
+
+		// Cut away most of the inner glow to make the texture appear
+		offscreenCtx.globalCompositeOperation = "destination-out";
+		offscreenCtx.fillStyle = "black";
+		offscreenCtx.beginPath();
+		offscreenCtx.arc(this.centerPos, this.centerPos, this.radius - 3, 0, 2 * Math.PI);
+		offscreenCtx.fill();
+
+		// Draw the texture below the glow
+		offscreenCtx.globalCompositeOperation = "destination-over";
+		offscreenCtx.drawImage(this.img, this.centerPos - this.radius, this.centerPos - this.radius, this.img.width, this.img.height);
+
+		// Second shadow pass - makes the shadow-area completely transparent
+		offscreenCtx.globalCompositeOperation = "destination-out";
+		offscreenCtx.drawImage(this.shadowCanvas, 0, 0);
+	}
+
+	updateShadow(moonPhaseFraction) {
+		this.shadowCanvas.width = this.canvasElement.width;
+		this.shadowCanvas.height = this.canvasElement.height;
+		const shadowCtx = this.shadowCanvas.getContext("2d");
+
+		shadowCtx.clearRect(0, 0, this.shadowCanvas.width, this.shadowCanvas.height);
+
+		// Rotate the canvas based on angle setting
+		shadowCtx.save();
+		shadowCtx.translate(this.centerPos, this.centerPos);
+		shadowCtx.rotate((this.settings.shadow.angle * Math.PI) / 180);
+		shadowCtx.translate(-this.centerPos, -this.centerPos);
+
+		shadowCtx.fillStyle = "black";
+		shadowCtx.beginPath();
+		const radius = this.radius + 2;
+
+		// Calculate the shadow arc offset based on the moon-phase
+		let antiClockwise = false;
+		let flippedRadius = radius;
+		if (moonPhaseFraction > 0.5) {
+			antiClockwise = true;
+			moonPhaseFraction = 1 - moonPhaseFraction;
+			flippedRadius = -radius;
+		}
+		const fraction = moonPhaseFraction * 4;
+
+		// Offset depends on if it's before or after half-moon
+		const offset = fraction <= 1 ? flippedRadius * 2 * (1 - fraction) : flippedRadius * 2 * (0.5 - Math.abs(0.5 - fraction));
+
+		if (fraction === 0) {
+			// New moon
+			shadowCtx.arc(this.centerPos, this.centerPos, radius, 0, 2 * Math.PI);
+		} else if (fraction === 2) {
+			// Full moon
+			return;
+		} else {
+			// Other phases
+			shadowCtx.moveTo(this.centerPos, this.centerPos - radius);
+			if (fraction < 2) {
+				shadowCtx.arc(this.centerPos, this.centerPos, radius, Math.PI / 2, (3 * Math.PI) / 2, antiClockwise);
+			} else {
+				shadowCtx.arc(this.centerPos, this.centerPos, radius, (3 * Math.PI) / 2, Math.PI / 2, !antiClockwise);
+			}
+			shadowCtx.quadraticCurveTo(this.centerPos + offset, this.centerPos, this.centerPos, this.centerPos + radius);
+		}
+
+		shadowCtx.closePath();
+		shadowCtx.fill();
+		shadowCtx.restore();
+	}
+
+	draw(lightFactor) {
+		this.ctx.clearRect(0, 0, this.canvasElement.width, this.canvasElement.height);
+
+		// Set transparency for the whole moon - from settings
+		const interpolatedTransparency = this.interpolate(this.settings.visibility.night, this.settings.visibility.day, this.normalize(lightFactor));
+		this.ctx.globalAlpha = interpolatedTransparency;
+
+		// Glow effect only on non-shadow parts
+		this.ctx.shadowBlur = this.settings.glow.size;
+		this.ctx.shadowColor = this.settings.glow.color;
+		this.ctx.drawImage(this.offscreenCanvas, 0, 0);
+
+		// Apply a transparent texture on top of the shadow-area based on settings
+		this.ctx.shadowBlur = 0;
+		this.ctx.shadowColor = "transparent";
+		this.ctx.globalCompositeOperation = "destination-over";
+		this.ctx.globalAlpha = this.interpolate(
+			this.settings.shadow.opacity.night / interpolatedTransparency,
+			this.settings.shadow.opacity.day / interpolatedTransparency,
+			this.normalize(lightFactor)
+		);
+
+		this.ctx.drawImage(this.img, this.centerPos - this.radius, this.centerPos - this.radius, this.img.width, this.img.height);
+
+		// Reset global settings
+		this.ctx.globalCompositeOperation = "source-over";
+		this.ctx.globalAlpha = 1;
+
+		// Position the canvas
+		this.position.x = this.position.adjustedX - this.canvasElement.width / 2;
+		this.position.y = this.position.adjustedY - this.canvasElement.height / 2;
+		this.canvas.css({
+			left: `${this.position.x}px`,
+			top: `${this.position.y}px`,
+		});
+	}
+}
+window.SkyCanvasMoon = SkyCanvasMoon;
diff --git a/game/03-JavaScript/weather/01-starfieldElement.js b/game/03-JavaScript/weather/01-starfieldElement.js
new file mode 100644
index 0000000000000000000000000000000000000000..ee25308af4021f1a321f27d92c58ae7c902f6b55
--- /dev/null
+++ b/game/03-JavaScript/weather/01-starfieldElement.js
@@ -0,0 +1,176 @@
+/* eslint-disable no-undef */
+class SkyCanvasStars extends SkyCanvasElement {
+	constructor(name, settings) {
+		super(name, settings);
+		this.generateStars();
+	}
+
+	createCanvasImage() {
+		this.starSprites = [];
+		this.loadStarSprites();
+
+		this.canvas = $("<canvas/>", {
+			id: this.name,
+		});
+		this.canvasElement = this.canvas[0];
+		this.ctx = this.canvasElement.getContext("2d");
+
+		this.canvasElement.width = this.settings.dimensions.width;
+		this.canvasElement.height = this.settings.dimensions.height;
+
+		const offsetX = this.settings.pivot.x - this.canvasElement.width / 2;
+		const offsetY = this.settings.pivot.y - this.canvasElement.height / 2;
+
+		this.canvas.css({
+			left: `${offsetX}px`,
+			top: `${offsetY}px`,
+		});
+	}
+
+	loadStarSprites() {
+		this.starSprites = this.settings.stars.spriteChance.slice(1).map(entry => this.loadSprite(entry[0]));
+	}
+
+	loadSprite(src) {
+		const img = new Image();
+		img.src = this.settings.imgPath + src;
+		return img;
+	}
+
+	loaded() {
+		const loadSprites = this.starSprites.map(sprite => {
+			return new Promise((resolve, reject) => {
+				sprite.onload = resolve;
+				sprite.onerror = e => reject(new Error("Error loading star image: " + e.message));
+			});
+		});
+		return Promise.all(loadSprites);
+	}
+
+	generateStars() {
+		this.stars = [];
+		const minDistance = 12;
+
+		for (let i = 0; i < this.settings.stars.count; i++) {
+			let tooClose;
+			let attempts = 0;
+			let newStar;
+
+			// Make sure it doesn't generate stars too close to other stars
+			do {
+				tooClose = false;
+				const spriteIndex = this.getRandomSpriteIndex();
+				newStar = {
+					x: Math.random() * this.canvasElement.width,
+					y: Math.random() * this.canvasElement.height,
+					sprite: spriteIndex === 0 ? null : this.starSprites[spriteIndex - 1],
+					color: this.getRandomStarColor(),
+				};
+
+				// Check distance from all existing stars
+				for (const star of this.stars) {
+					const dx = newStar.x - star.x;
+					const dy = newStar.y - star.y;
+					const distance = Math.sqrt(dx * dx + dy * dy);
+
+					if (distance < minDistance) {
+						tooClose = true;
+						break;
+					}
+				}
+
+				// Failsafe to avoid infinite loops
+				attempts++;
+				if (attempts > 100) {
+					break;
+				}
+			} while (tooClose);
+
+			if (!tooClose) {
+				this.stars.push(newStar);
+			}
+		}
+	}
+
+	getRandomSpriteIndex() {
+		const weights = this.settings.stars.spriteChance.map((element, index) => [index, element[1]]);
+		return weightedRandom(...weights);
+	}
+
+	getRandomStarColor() {
+		if (!this.settings.stars.colorRange.length) return "#ffffff";
+		const interpolateFrom = this.settings.stars.colorRange;
+		const interpolateTo = interpolateFrom.slice(0, -1)[0];
+
+		if (!interpolateFrom.length) return interpolateTo;
+		return ColourUtils.interpolateColor(either(interpolateFrom), interpolateTo, randomFloat(0, 1));
+		// const shading = random(125, 255);
+		// return `rgba(${shading}, ${shading}, 255, ${alpha})`;
+	}
+
+	draw(cullingElement, dayFactor) {
+		const moonRadius = cullingElement.position.diameter / 2;
+		const moonX = cullingElement.position.x - (this.settings.pivot.x - this.canvasElement.width / 2) + cullingElement.position.diameter - moonRadius / 2;
+		const moonY = cullingElement.position.y - (this.settings.pivot.y - this.canvasElement.height / 2) + cullingElement.position.diameter - moonRadius / 2;
+
+		const directionMultiplier = this.settings.rotation.clockwise ? 1 : -1;
+		const radians = directionMultiplier * this.angle * (Math.PI / 180);
+		const cos = Math.cos(radians);
+		const sin = Math.sin(radians);
+
+		this.ctx.clearRect(0, 0, this.canvasElement.width, this.canvasElement.height);
+
+		this.ctx.globalAlpha = this.interpolate(this.settings.stars.opacity.night, this.settings.stars.opacity.day, this.normalize(dayFactor));
+
+		this.ctx.shadowOffsetX = 0;
+		this.ctx.shadowOffsetY = 0;
+
+		this.stars.forEach(star => {
+			const relativeX = star.x - this.canvasElement.width / 2;
+			const relativeY = star.y - this.canvasElement.height / 2;
+			const rotatedX = cos * relativeX - sin * relativeY + this.canvasElement.width / 2;
+			const rotatedY = sin * relativeX + cos * relativeY + this.canvasElement.height / 2;
+
+			// Cull stars if behind a culling object - like the moon
+			const dx = rotatedX - moonX;
+			const dy = rotatedY - moonY;
+			const distanceFromMoonCenter = Math.sqrt(dx * dx + dy * dy);
+			if (distanceFromMoonCenter < moonRadius + 2) {
+				return;
+			}
+
+			if (star.sprite) {
+				// const offscreenCanvas = document.createElement("canvas");
+				const offscreenCanvas = $("<canvas/>")[0];
+				offscreenCanvas.width = star.sprite.width;
+				offscreenCanvas.height = star.sprite.height;
+				const offscreenCtx = offscreenCanvas.getContext("2d");
+
+				offscreenCtx.clearRect(0, 0, offscreenCanvas.width, offscreenCanvas.height);
+				offscreenCtx.drawImage(star.sprite, 0, 0);
+
+				offscreenCtx.globalCompositeOperation = "source-atop";
+				offscreenCtx.fillStyle = star.color;
+
+				this.ctx.shadowBlur = 15;
+				this.ctx.shadowColor = this.settings.stars.glowColor;
+
+				offscreenCtx.fillRect(0, 0, offscreenCanvas.width, offscreenCanvas.height);
+				offscreenCtx.globalCompositeOperation = "source-over";
+
+				this.ctx.drawImage(offscreenCanvas, rotatedX, rotatedY);
+
+				this.ctx.shadowBlur = 0;
+				this.ctx.shadowColor = "transparent";
+			} else {
+				this.ctx.fillStyle = star.color;
+				this.ctx.fillRect(rotatedX, rotatedY, 2, 2); // Drawing a 2x2 pixel star
+			}
+		});
+	}
+
+	updateRotation(newAngle) {
+		this.angle = newAngle;
+	}
+}
+window.SkyCanvasStars = SkyCanvasStars;
diff --git a/game/03-JavaScript/weather/01-sunElement.js b/game/03-JavaScript/weather/01-sunElement.js
new file mode 100644
index 0000000000000000000000000000000000000000..1d75bd1bf38acd56b5e57ce23d2cdc729a3ba44c
--- /dev/null
+++ b/game/03-JavaScript/weather/01-sunElement.js
@@ -0,0 +1,61 @@
+/* eslint-disable no-undef */
+class SkyCanvasSun extends SkyCanvasElement {
+	loaded() {
+		return new Promise((resolve, reject) => {
+			this.img.onload = () => {
+				this.canvasElement.width = this.img.width + this.settings.glow.outerSize * 5;
+				this.canvasElement.height = this.img.height + this.settings.glow.outerSize * 5;
+				this.position.bottom = this.getElementPosition(1);
+				this.position.diameter = this.img.width;
+				this.spriteDiameter = this.position.diameter + 1;
+				this.radius = this.spriteDiameter / 2;
+				this.centerPos = (this.canvasElement.width - this.spriteDiameter) / 2 + this.radius;
+				this.addGlowEffect();
+				resolve();
+			};
+			this.img.onerror = reject;
+		});
+	}
+
+	addGlowEffect() {
+		this.offscreenCanvas = $("<canvas/>")[0];
+		this.offscreenCanvas.width = this.canvasElement.width;
+		this.offscreenCanvas.height = this.canvasElement.height;
+		const offscreenCtx = this.offscreenCanvas.getContext("2d");
+
+		offscreenCtx.clearRect(0, 0, this.offscreenCanvas.width, this.offscreenCanvas.height);
+
+		const glowRadius = this.radius / 2 + this.settings.glow.outerSize;
+		const gradient = offscreenCtx.createRadialGradient(this.centerPos, this.centerPos, 0, this.centerPos, this.centerPos, this.radius + glowRadius);
+		gradient.addColorStop(0, this.settings.glow.dayColor);
+		gradient.addColorStop(0.3, this.settings.glow.dayColor);
+		gradient.addColorStop(1, "transparent");
+
+		offscreenCtx.fillStyle = gradient;
+		offscreenCtx.fillRect(0, 0, this.offscreenCanvas.width, this.offscreenCanvas.height);
+
+		// Cut away most of the inner glow to make the texture appear
+		offscreenCtx.globalCompositeOperation = "destination-out";
+		offscreenCtx.fillStyle = "black";
+		offscreenCtx.beginPath();
+		offscreenCtx.arc(this.centerPos, this.centerPos, this.radius - this.settings.glow.innerSize, 0, 2 * Math.PI);
+		offscreenCtx.fill();
+	}
+
+	draw() {
+		this.ctx.clearRect(0, 0, this.canvasElement.width, this.canvasElement.height);
+
+		this.ctx.drawImage(this.offscreenCanvas, 0, 0);
+
+		this.ctx.globalCompositeOperation = "destination-over";
+		this.ctx.drawImage(this.img, this.centerPos - this.radius, this.centerPos - this.radius, this.img.width, this.img.height);
+
+		const x = this.position.adjustedX - this.canvasElement.width / 2;
+		const y = this.position.adjustedY - this.canvasElement.height / 2;
+		this.canvas.css({
+			left: `${x}px`,
+			top: `${y}px`,
+		});
+	}
+}
+window.SkyCanvasSun = SkyCanvasSun;
diff --git a/game/03-JavaScript/weather/02-weather.js b/game/03-JavaScript/weather/02-weather.js
new file mode 100644
index 0000000000000000000000000000000000000000..09511549e7d400e6634a25a12853124abc269927
--- /dev/null
+++ b/game/03-JavaScript/weather/02-weather.js
@@ -0,0 +1,38 @@
+/* eslint-disable no-undef */
+/* eslint-disable no-unused-vars */
+/*
+
+- Add function:
+	- setWeather: Should replace current weather, but then smoothly transition to a new weather after a while.
+
+	- Only use winter-images after it has snowed once
+	- if it melts (at least 5 hours of warm temperature) back to normal images until it snow again
+*/
+
+const Weather = (() => {
+	/* Helper functions */
+	function generateKeyPoints({ date, minKeys, maxKeys, timeApart, rangeValue, totalSteps }) {
+		const numberOfKeyPoints = random(minKeys - 1, maxKeys - 1);
+		const keyPoints = new Map();
+
+		while (keyPoints.size < numberOfKeyPoints) {
+			const randomUnit = random(timeApart + 1, totalSteps - timeApart);
+
+			const isFarEnough = Array.from(keyPoints.keys()).every(kp => Math.abs(kp - randomUnit) >= timeApart);
+			if (isFarEnough) {
+				keyPoints.set(randomUnit, rangeValue(date));
+			}
+		}
+		// Add the last key point
+		keyPoints.set(totalSteps + 1, rangeValue(date));
+		return new Map([...keyPoints.entries()].sort((a, b) => a[0] - b[0]));
+	}
+
+	return {
+		generateKeyPoints,
+		get currentWeatherType() {
+			return Weather.WeatherConditions.getWeather();
+		},
+	};
+})();
+window.Weather = Weather;
diff --git a/game/03-JavaScript/weather/03-temperature.js b/game/03-JavaScript/weather/03-temperature.js
new file mode 100644
index 0000000000000000000000000000000000000000..7307363bf71bb8331734d620f486751888b30d78
--- /dev/null
+++ b/game/03-JavaScript/weather/03-temperature.js
@@ -0,0 +1,204 @@
+/* eslint-disable no-undef */
+/* eslint-disable no-unused-vars */
+/*
+
+- Add function:
+	- setWeather: Should replace current weather, but then smoothly transition to a new weather after a while.
+
+	- Only use winter-images after it has snowed once
+	- if it melts (at least 5 hours of warm temperature) back to normal images until it snow again
+
+
+	Change variable names - use object - then use getters in Weather namespace 
+*/
+
+Weather.Temperature = (() => {
+	const monthlyTemperatureRanges = [
+		[-8, 7], // Jan
+		[-5, 9], // Feb
+		[4, 12], // Mar
+		[6, 16], // Apr
+		[9, 18], // May
+		[12, 21], // Jun
+		[14, 24], // Jul
+		[14, 22], // Aug
+		[11, 20], // Sep
+		[9, 16], // Oct
+		[-1, 10], // Nov
+		[-4, 7], // Dec
+	];
+
+	// Sets current temperate (at start of day) to this temperature
+	// However, the actual temperature might vary, since it interpolates to the next day's temperature during the day
+	// After this is set it will still interpolate to the next temperature, which shifts midnight
+	// To keep a certain temperature for a longer duration without too much interpolation - set the temperature for the day after too by using the optional date parameter.
+	function set(temperature, date) {
+		if (V.monthlyTemperatures.length < 1) return;
+		if (date === undefined) date = Time.date;
+		const modifiers = calculateModifiers(date.date);
+		V.monthlyTemperatures[0].temperatures[date.monthDay] = temperature - modifiers;
+	}
+
+	function add(temperature, date) {
+		if (V.monthlyTemperatures.length < 1) return;
+		if (date === undefined) date = Time.date;
+		set(V.monthlyTemperature[0].temperatures[date.monthDay] + temperature, date);
+	}
+
+	function getFahrenheit(date) {
+		return Math.round(((getCelcius(date) * 9) / 5 + 32) * 100) / 100;
+	}
+
+	function getCelcius(date) {
+		date = new DateTime(date ?? Time.date);
+
+		// Will only generate if the array doesn't already exist, or if the month doesn't match
+		generateMonthlyTemperatures(date);
+		const baselineTemperature = interpolateDailyTemperature(date);
+		const modifiers = calculateModifiers(date);
+		return Math.round((baselineTemperature + modifiers) * 100) / 100;
+	}
+
+	function interpolateDailyTemperature(date) {
+		const tomorrowDate = new DateTime(date).addDays(1);
+		const tomorrowKey = date.month !== tomorrowDate.month ? 1 : 0;
+
+		const todayTemp = V.monthlyTemperatures[0].temperatures[date.day];
+		const tomorrowTemp = V.monthlyTemperatures[tomorrowKey].temperatures[tomorrowDate.day] || todayTemp;
+
+		const deltaTemp = tomorrowTemp - todayTemp;
+
+		// Linear interpolation
+		return todayTemp + deltaTemp * date.fractionOfDay;
+	}
+
+	function calculateModifiers(date) {
+		const sunModifier = calculateSunModifier(date.fractionOfDay);
+		const seasonModifier = calculateSeasonModifier(date);
+		const weatherModifier = getWeatherModifier("clear");
+		const locationModifier = getLocationModifier();
+		return Math.round(locationModifier + (1.5 * sunModifier + 2 * seasonModifier) * weatherModifier * 100) / 100;
+	}
+
+	function calculateSunModifier(fraction) {
+		return 2 * (1 - Math.abs(fraction - 0.5) * 2) - 1;
+	}
+
+	function calculateSeasonModifier(date) {
+		const totalDaysInYear = DateTime.getDaysOfYear(date.year);
+		return -2 * Math.pow((Time.getDayOfYear(date) - totalDaysInYear / 2) / (totalDaysInYear / 2), 2) + 1;
+	}
+
+	function getWeatherModifier(weatherCondition) {
+		// to Weather (temperatureModifier)
+		const weatherMultipliers = {
+			clear: 2,
+			lightClouds: 1.5,
+			clouds: 1.2,
+			overcast: 1,
+			lightPrecipitation: 1,
+			heavyPrecipitation: 1,
+		};
+		return weatherMultipliers[weatherCondition] || 1.0;
+	}
+
+	function getLocationModifier() {
+		// Location modifiers here
+		switch (V.location) {
+			case "town":
+				return 3;
+			default:
+				return 0;
+		}
+	}
+
+	function generateMonthlyTemperatures(date) {
+		if (V.monthlyTemperatures.length === 2 && V.monthlyTemperatures[0].month === date.month) return;
+
+		// Remove past months and adjust array for the current time
+		while (V.monthlyTemperatures.length > 0 && V.monthlyTemperatures[0].month !== date.month) {
+			V.monthlyTemperatures.shift();
+		}
+
+		// Ensure current and next month data are present
+		while (V.monthlyTemperatures.length < 2) {
+			let monthDate = new DateTime(date);
+			if (V.monthlyTemperatures.length > 0) {
+				monthDate = monthDate.addMonths(1);
+			}
+			V.monthlyTemperatures.push(generateDailyTemperatures(monthDate));
+		}
+	}
+
+	function generateDailyTemperatures(date) {
+		const keyPointsMap = generateTemperatureKeyPoints(date);
+
+		let lastTemp;
+		if (V.monthlyTemperatures.length > 0) {
+			const prevMonthData = V.monthlyTemperatures[V.monthlyTemperatures.length - 1];
+			lastTemp = prevMonthData.temperatures[prevMonthData.temperatures.length - 1];
+		} else {
+			lastTemp = Array.from(keyPointsMap.values()).pop();
+		}
+		const monthlyTemperatures = [];
+		let lastDay = 0;
+		for (const [day, temp] of keyPointsMap) {
+			const interpolatedTemps = interpolateBetweenTemperatureKeys(lastDay, day, lastTemp, temp);
+			for (let d = lastDay; d < day; d++) {
+				monthlyTemperatures[d] = interpolatedTemps[d];
+			}
+			lastDay = day;
+			lastTemp = temp;
+		}
+
+		return { month: date.month, temperatures: monthlyTemperatures };
+	}
+
+	function generateTemperatureKeyPoints(date) {
+		const minDays = 4; // Minimum key points
+		const maxDays = 6; // Max key points - don't set too high if timeApart is a high value
+		const timeApart = 3; // Minimum days between each keypoint
+		const daysInMonth = DateTime.getDaysOfMonthFromYear(date.year)[date.month - 1];
+		const numberOfKeyPoints = random(minDays - 1, maxDays - 1);
+		const keyPoints = new Map();
+
+		while (keyPoints.size < numberOfKeyPoints) {
+			const randomDay = random(timeApart + 1, daysInMonth - timeApart);
+
+			const isFarEnough = Array.from(keyPoints.keys()).every(kp => Math.abs(kp - randomDay) >= timeApart);
+			if (isFarEnough) {
+				keyPoints.set(randomDay, getRandomTemperature(monthlyTemperatureRanges[date.month - 1]));
+			}
+		}
+		// Add the last key point
+		keyPoints.set(daysInMonth + 1, getRandomTemperature(monthlyTemperatureRanges[date.month - 1]));
+		return new Map([...keyPoints.entries()].sort((a, b) => a[0] - b[0]));
+	}
+
+	function getRandomTemperature([minTemp, maxTemp]) {
+		return randomFloat(minTemp, maxTemp);
+	}
+
+	function interpolateBetweenTemperatureKeys(startPoint, endPoint, startTemp, endTemp) {
+		const temperatures = {};
+		const deltaTemp = endTemp - startTemp;
+		const deltaPoint = endPoint - startPoint;
+
+		// Linear interpolation
+		for (let point = startPoint; point <= endPoint; point++) {
+			const t = (point - startPoint) / deltaPoint;
+			temperatures[point] = startTemp + t * deltaTemp;
+		}
+
+		return temperatures;
+	}
+
+	return Object.create({
+		monthlyTemperatureRanges,
+		getCelcius,
+		getFahrenheit,
+		set,
+		add,
+	});
+})();
+// window.Weather.Temperature = Weather.Temperature;
diff --git a/game/03-JavaScript/weather/04-weatherConditions.js b/game/03-JavaScript/weather/04-weatherConditions.js
new file mode 100644
index 0000000000000000000000000000000000000000..51ee4d39a77c933ed863be2f0dfe1a9d80ab94da
--- /dev/null
+++ b/game/03-JavaScript/weather/04-weatherConditions.js
@@ -0,0 +1,213 @@
+/* eslint-disable no-undef */
+/* eslint-disable no-unused-vars */
+/*
+
+- Option to increase number of temp months more than 2
+- Option to increase number of weather days more than 2 - min 2 max 28
+Minimum 2 check
+- Add function:
+	- setWeather: Should replace current weather, but then smoothly transition to a new weather after a while.
+
+	- Only use winter-images after it has snowed once
+	- if it melts (at least 5 hours of warm temperature) back to normal images until it snow again
+*/
+
+Weather.WeatherConditions = (() => {
+	const monthlyTemperatureRanges = [
+		[-8, 7], // Jan
+		[-5, 9], // Feb
+		[4, 12], // Mar
+		[6, 16], // Apr
+		[9, 18], // May
+		[12, 21], // Jun
+		[14, 24], // Jul
+		[14, 22], // Aug
+		[11, 20], // Sep
+		[9, 16], // Oct
+		[-1, 10], // Nov
+		[-4, 7], // Dec
+	];
+
+	const WeatherTypes = {
+		clear: {
+			value: 0,
+			probability: {
+				summer: 0.6,
+				winter: 0.3,
+				spring: 0.5,
+				autumn: 0.4,
+			},
+		},
+		lightClouds: {
+			value: 1,
+			probability: {
+				summer: 0.3,
+				winter: 0.4,
+				spring: 0.4,
+				autumn: 0.3,
+			},
+		},
+		heavyClouds: {
+			value: 2,
+			probability: {
+				summer: 0.1,
+				winter: 0.4,
+				spring: 0.2,
+				autumn: 0.3,
+			},
+		},
+		lightPrecipitation: {
+			value: 3,
+			probability: {
+				summer: 0.05,
+				winter: 0.1,
+				spring: 0.05,
+				autumn: 0.15,
+			},
+		},
+		heavyPrecipitation: {
+			value: 4,
+			probability: {
+				summer: 0.05,
+				winter: 0.1,
+				spring: 0.05,
+				autumn: 0.1,
+			},
+		},
+		thunderstorm: {
+			value: 4,
+			probability: {
+				summer: 0.02,
+				winter: 0.005,
+				spring: 0.015,
+				autumn: 0.01,
+			},
+		},
+	};
+
+	function getWeather(date) {
+		date = new DateTime(date ?? Time.date);
+		generateWeather(date);
+		return interpolateWeather(date);
+	}
+
+	function interpolateWeather(date) {
+		const currentTimeStamp = date.timeStamp;
+
+		// Find the current and next weather key points
+		let currentKeyPoint = null;
+		let nextKeyPoint = null;
+
+		for (const keyPoint of V.weatherKeypointsArr) {
+			if (keyPoint.timestamp <= currentTimeStamp) {
+				currentKeyPoint = keyPoint;
+			}
+			if (keyPoint.timestamp > currentTimeStamp && !nextKeyPoint) {
+				nextKeyPoint = keyPoint;
+			}
+		}
+
+		// If no next key point is found for the day, assume weather stays the same
+		if (!nextKeyPoint) {
+			return currentKeyPoint ? currentKeyPoint.value : "Clear"; // Default to 'Clear' if none found
+		}
+		const currentValueNumeric = WeatherTypes[currentKeyPoint.value].value;
+		const nextValueNumeric = WeatherTypes[nextKeyPoint.value].value;
+		// Calculate the fraction of time passed between the current and next key points
+		const fraction = (currentTimeStamp - currentKeyPoint.timestamp) / (nextKeyPoint.timestamp - currentKeyPoint.timestamp);
+
+		// Interpolate the weather value
+		const interpolatedValueNumeric = Math.round(currentValueNumeric + (nextValueNumeric - currentValueNumeric) * fraction);
+
+		// Find the closest weather type to the interpolated value
+		return findClosestWeatherType(interpolatedValueNumeric);
+	}
+
+	function findClosestWeatherType(interpolatedValue) {
+		const closestTypes = Object.entries(WeatherTypes).reduce(
+			(acc, [key, type]) => {
+				const difference = Math.abs(type.value - interpolatedValue);
+				if (difference < acc.minDifference) {
+					return { minDifference: difference, types: [key] };
+				}
+				if (difference === acc.minDifference) {
+					acc.types.push(key);
+				}
+				return acc;
+			},
+			{ minDifference: Number.MAX_VALUE, types: [] }
+		).types;
+
+		// Randomly choose one type if there are multiple options with the same int value
+		return closestTypes[random(0, closestTypes.length - 1)];
+	}
+
+	function generateWeather(currentDate) {
+		const numDays = 20;
+
+		if (V.weatherKeypointsArr === undefined) {
+			V.weatherKeypointsArr = [];
+			generateWeatherKeypoints(currentDate, numDays);
+		}
+
+		// Trim old keypoints, keeping one before the current time for interpolation
+		while (V.weatherKeypointsArr.length > 1 && V.weatherKeypointsArr[1].timestamp <= currentDate.timeStamp) {
+			V.weatherKeypointsArr.shift();
+		}
+
+		const lastKeypoint = V.weatherKeypointsArr[V.weatherKeypointsArr.length - 1];
+		const lastDate = new DateTime(lastKeypoint.timestamp);
+		const targetDate = new DateTime(currentDate).addDays(numDays);
+		const dayDifferenceFromKeypoint = (targetDate.timeStamp - lastDate.timeStamp) / Time.secondsPerDay;
+
+		if (dayDifferenceFromKeypoint > 0) {
+			generateWeatherKeypoints(lastDate.addDays(1), dayDifferenceFromKeypoint);
+		}
+	}
+
+	function generateWeatherKeypoints(startDate, daysToAdd) {
+		const minKeyPointsPerDay = 2;
+		const maxKeyPointsPerDay = 5;
+		const timeApart = 120; // Minimum time apart in minutes
+
+		for (let dayCount = 0; dayCount < daysToAdd; dayCount++) {
+			const date = new DateTime(startDate).addDays(dayCount);
+			const numKeyPoints = random(minKeyPointsPerDay, maxKeyPointsPerDay);
+			let lastTime = -timeApart;
+			for (let i = 0; i < numKeyPoints; i++) {
+				const timeWindow = 24 * 60 - lastTime - timeApart;
+				const time = lastTime + timeApart + random(1, timeWindow / (numKeyPoints - i));
+				const value = getRandomWeatherValue();
+
+				const timestamp = new DateTime(date.year, date.month, date.day, Math.floor(time / 60), time % 60).timeStamp;
+				V.weatherKeypointsArr.push({ timestamp, value });
+				lastTime = time;
+			}
+		}
+	}
+
+	function getRandomWeatherValue() {
+		const currentSeason = Time.season;
+		const options = Object.entries(WeatherTypes).map(([key, weatherType]) => {
+			const weight = weatherType.probability[currentSeason];
+			return [key, weight];
+		});
+
+		return weightedRandom(...options);
+	}
+
+	return Object.create({
+		get keysObject() {
+			const arr = V.weatherKeypointsArr;
+			return arr.map(item => {
+				const date = new DateTime(item.timestamp);
+				return {
+					date: `${date.day}/${date.month} ${ampm(date.hour, date.minute)}`,
+					value: item.value,
+				};
+			});
+		},
+		getWeather,
+		generateWeatherKeypoints,
+	});
+})();
diff --git a/game/03-JavaScript/weather/05-sky.js b/game/03-JavaScript/weather/05-sky.js
new file mode 100644
index 0000000000000000000000000000000000000000..e182109f76331086fb347880901ecda530546ffa
--- /dev/null
+++ b/game/03-JavaScript/weather/05-sky.js
@@ -0,0 +1,366 @@
+/* eslint-disable no-undef */
+Weather.Sky = (() => {
+	const settings = {
+		sky: {
+			canvasSize: { x: 64, y: 192 },
+			colors: {
+				day: {
+					sky1: "#ccccff",
+					sky2: "#408aca",
+					sunGlow: "#fbffdb25",
+				},
+				dawnDusk: {
+					sky1: "#d47d12",
+					sky2: "#6c6d94",
+					sunGlow: "#f7ff4a50",
+				},
+				night: {
+					sky1: "#010015",
+					sky2: "#0f0f41",
+					sunGlow: "#fd634d00",
+				},
+				cityLights: "#b9a17925",
+			},
+			lightsOnTime: 18,
+			lightsOffTime: 6,
+		},
+		sun: {
+			imgPath: "img/misc/sky/sun2.png",
+			glow: {
+				outerSize: 10,
+				innerSize: 3,
+				dayColor: "#f4ffd3cc",
+				dawnDuskColor: "#f7ff4acc",
+			},
+			orbit: {
+				riseTime: 6,
+				setTime: 18,
+				path: {
+					startX: 0,
+					endX: 64,
+					peakY: 40,
+					horizon: 162,
+				},
+			},
+		},
+		moon: {
+			imgPath: "img/misc/sky/moon2.png",
+			glow: {
+				color: "#ffffffaa",
+				size: 6,
+			},
+			shadow: {
+				color: "#0d001522",
+				opacity: {
+					night: 0.02,
+					day: 0.08,
+				},
+				angle: 10, // In degrees - The angle the shadow eclipse travels (from right to left)
+			},
+			visibility: {
+				night: 1,
+				day: 0.4,
+			},
+			orbit: {
+				riseTime: 18,
+				setTime: 6,
+				path: {
+					startX: 0,
+					endX: 64,
+					peakY: 40,
+					horizon: 162,
+				},
+			},
+		},
+		starfield: {
+			dimensions: {
+				width: 256, // Size of the generated starfield - should be square
+				height: 256,
+			},
+			imgPath: "img/misc/sky/stars/",
+			pivot: { x: 64, y: 128 }, // At which coordinates the starfield rotates around
+			rotation: {
+				clockwise: true, // Set false for anti-clockwise
+			},
+			stars: {
+				count: 100, // Number of stars in the whole canvas (The actual visible stars in the area is less than 20%, since it rotates around a pivot)
+				colorRange: ["#ae9ff5", "#bc91e6", "#7db9e3", "#ffffff"],
+				// Sets the chance of which stars to spawn - The weight (second number) determines the chance based on the other weights
+				spriteChance: [
+					//Change to Map()
+					[0, 10], // Chance of square non-sprite 2x2 stars
+					["star_0.png", 0.8],
+					["star_1.png", 0.3],
+					["star_2.png", 0.15],
+					["star_3.png", 0.02],
+				],
+				opacity: {
+					night: 0.75,
+					day: 0,
+				},
+				glowColor: "#ffffff6a",
+			},
+		},
+		weather: {
+			dimensions: {
+				width: 64, // Size of the canvas
+				height: 192,
+			},
+			behaviors: {
+				clear: {
+					count: {
+						small: () => random(0, 2),
+						large: () => 0,
+					},
+				},
+				lightClouds: {
+					count: {
+						small: () => random(2, 3),
+						large: () => random(0, 1),
+					},
+				},
+				heavyClouds: {
+					count: {
+						small: () => 0,
+						large: () => random(3, 3),
+					},
+				},
+				lightPrecipitation: {
+					count: {
+						small: () => 0,
+						large: () => random(3, 3),
+					},
+				},
+				heavyPrecipitation: {
+					count: {
+						small: () => 0,
+						large: () => random(3, 3),
+					},
+				},
+			},
+			clouds: {
+				maxHeight: 15,
+				minHeight: 128,
+				movement: {
+					speedMin: 0.3, // Pixels per minute of game time
+					speedMax: 0.5,
+					direction: 1,
+				},
+				imgPath: "img/misc/sky/clouds/",
+				images: new Map([
+					["0.png", "small"],
+					["1.png", "small"],
+					["2.png", "small"],
+					["3.png", "large"],
+					["4.png", "large"],
+					["5.png", "large"],
+				]),
+			},
+		},
+		location: {
+			imgPath: {
+				normal: "img/misc/normal_apng/",
+				winter: "img/misc/winter_apng/",
+			},
+		},
+	};
+	let dayFactor = 0;
+	let imagesLoaded = false;
+	const elements = {};
+
+	const canvasElements = {
+		sun: new SkyCanvasSun("sun", settings.sun),
+		moon: new SkyCanvasMoon("moon", settings.moon),
+		stars: new SkyCanvasStars("starField", settings.starfield),
+		clouds: new SkyCanvasWeather("clouds", settings.weather),
+	};
+
+	function getDayFactor() {
+		const sunPositionYPercent =
+			(canvasElements.sun.position.adjustedY - settings.sun.orbit.path.horizon) / (settings.sun.orbit.path.peakY - settings.sun.orbit.path.horizon);
+		if (sunPositionYPercent > 0) {
+			dayFactor = 1 - Math.pow(1 - sunPositionYPercent, 6);
+		} else {
+			dayFactor = -(
+				(canvasElements.sun.position.adjustedY - settings.sun.orbit.path.horizon) /
+				(canvasElements.sun.position.bottom.y - settings.sun.orbit.path.horizon)
+			);
+		}
+	}
+
+	function updateSkyLighting() {
+		const canvasSize = settings.sky.canvasSize;
+		const positionX = (canvasElements.sun.position.adjustedX / canvasSize.x) * 100;
+		const positionY = (canvasElements.sun.position.adjustedY / canvasSize.y) * 100;
+		let background = "";
+		let glow = "";
+
+		if (dayFactor > 0) {
+			const colors = settings.sky.colors;
+			// Adds main sky radial lighting
+			const color1 = ColourUtils.interpolateColor(colors.dawnDusk.sky1, colors.day.sky1, dayFactor);
+			const color2 = ColourUtils.interpolateColor(colors.dawnDusk.sky2, colors.day.sky2, dayFactor);
+
+			// Sun outer glow
+			//todo add to canvas
+			const glowColor1 = ColourUtils.interpolateColor(colors.dawnDusk.sunGlow, colors.day.sunGlow, dayFactor);
+			const glowColor2 = "#ffffff00";
+
+			glow = `radial-gradient(circle at ${positionX}% ${positionY}%, ${glowColor1} 5%, ${glowColor2} 40%)`;
+			background = `radial-gradient(circle at ${positionX}% ${positionY}%, ${color1}, ${color2})`;
+		} else {
+			const nightFactor = 1 - Math.abs(dayFactor);
+			const colors = settings.sky.colors;
+			const transparent = "#ffffff00";
+			const color1 = ColourUtils.interpolateColor(colors.night.sky1, colors.dawnDusk.sky1, nightFactor);
+			const color2 = ColourUtils.interpolateColor(colors.night.sky2, colors.dawnDusk.sky2, nightFactor);
+			const color3 = ColourUtils.interpolateColor(transparent, colors.night.sky1, Math.abs(nightFactor - 1));
+			const color4 = ColourUtils.interpolateColor(transparent, colors.night.sky2, Math.abs(nightFactor - 1));
+			const gradient = `radial-gradient(circle at ${positionX}% ${positionY}%, ${color4}, ${color3})`;
+
+			const glowColor1 = ColourUtils.interpolateColor(colors.night.sunGlow, colors.dawnDusk.sunGlow, nightFactor);
+			const glowColor2 = "#ffffff00";
+
+			glow = `radial-gradient(circle at ${positionX}% ${positionY}%, ${glowColor1} 5%, ${glowColor2} 40%)`;
+			background = `${gradient}, radial-gradient(circle at ${positionX}% ${positionY}%, ${color1}, ${color2})`;
+		}
+		elements.skybox.css("background", background);
+		elements.skyboxGlow.css("background", glow);
+	}
+
+	function updateLocationImage() {
+		// todo --- Change to  if snow
+		const seasonPath = Time.season === "winter" ? settings.location.imgPath.winter : settings.location.imgPath.normal;
+		const dayState = Time.dayState;
+		let imagePath = "";
+
+		switch (V.location) {
+			case "adult_shop":
+				getAdultShopState(); // Assuming getAdultShopState() updates the $adultshopstate
+				if (Time.dayState === "day" && $adultshopstate !== "closed") {
+					imagePath = `${seasonPath}sex_shop_${dayState}_open.apng`;
+				} else {
+					imagePath = `${seasonPath}sex_shop_${dayState}.apng`;
+				}
+				break;
+			case "alex_farm":
+				imagePath = $bus === "woodland" ? `${seasonPath}forest_${dayState}.apng` : `${seasonPath}/alex_farm_${dayState}.apng`;
+				break;
+
+			default:
+				// Default case if $location doesn't match any of the cases
+				imagePath = `${seasonPath}${V.location}_${dayState}.apng`;
+		}
+		elements.skybox.append($("<img>", { id: "location", src: imagePath }));
+	}
+
+	function updateSun(date) {
+		canvasElements.sun.setOrbit(Time.getSecondsSinceMidnight(date));
+		getDayFactor();
+		canvasElements.sun.draw();
+	}
+
+	function updateMoon(date) {
+		canvasElements.moon.setOrbit(Time.getSecondsSinceMidnight(date));
+		canvasElements.moon.draw(dayFactor);
+	}
+
+	function updateStarField(date) {
+		const rotation = date.fractionOfDay * 360;
+		canvasElements.stars.updateRotation(rotation);
+		canvasElements.stars.draw(canvasElements.moon, dayFactor);
+	}
+
+	function updateWeather(date) {
+		canvasElements.clouds.updateWeather(Weather.currentWeatherType);
+		canvasElements.clouds.draw(date);
+	}
+
+	function redraw(date) {
+		updateSun(date);
+		updateSkyLighting();
+		updateMoon(date);
+		updateStarField(date);
+		updateWeather(date);
+	}
+
+	function display(date) {
+		elements.skybox.append(canvasElements.sun.canvas);
+		elements.skybox.append(canvasElements.moon.canvas);
+		elements.skybox.append(canvasElements.stars.canvas);
+		elements.skybox.append(canvasElements.clouds.canvas);
+
+		setMoonPhase(date);
+		canvasElements.clouds.updateWeather(Weather.currentWeatherType, true);
+		redraw(date);
+
+		updateLocationImage();
+
+		// City glow
+		let glow = "";
+		if (dayFactor < 0) {
+			glow = `linear-gradient(#ffffff00 60%, ${settings.sky.colors.cityLights})`;
+		}
+		elements.locationLayer.css("background", glow);
+	}
+
+	function setMoonPhase(date) {
+		canvasElements.moon.updateCanvas(date.moonPhaseFraction);
+	}
+
+	function setWeather() {
+		canvasElements.clouds.updateWeather(Weather.currentWeatherType);
+	}
+
+	return {
+		settings,
+		get canvasElements() {
+			return canvasElements;
+		},
+		get imagesLoaded() {
+			return imagesLoaded;
+		},
+		set imagesLoaded(value) {
+			imagesLoaded = value;
+		},
+		updateSkyLighting,
+		updateLocationImage,
+		dayFactor,
+		display,
+		setMoonPhase,
+		redraw,
+		elements,
+		setWeather,
+	};
+})();
+
+Macro.add("skybox", {
+	handler() {
+		if (!Weather.Sky.imagesLoaded) {
+			Weather.Sky.elements.skybox = $("<div />", { id: "skybox" }).appendTo(this.output);
+			Weather.Sky.elements.skyboxGlow = $("<div />", { id: "skybox-sunGlow" }).appendTo(Weather.Sky.elements.skybox);
+			Weather.Sky.elements.locationLayer = $("<div />", { id: "skybox-location" }).appendTo(Weather.Sky.elements.skybox);
+		}
+		Weather.Sky.elements.skybox.appendTo(this.output);
+		const date = Time.date;
+		// const $locationOverlay = $("#locationOverlay");
+		// const $canvas = $("<canvas/>", {
+		// 	id: "skybox",
+		// }).prop({
+		// 	width: 64,
+		// 	height: 192,
+		// });
+		if (Weather.Sky.imagesLoaded) {
+			Weather.Sky.redraw(date);
+			return;
+		}
+
+		Promise.all(Object.values(Weather.Sky.canvasElements).map(element => element.loaded()))
+			.then(() => {
+				console.log("LOADED");
+				Weather.Sky.imagesLoaded = true;
+				Weather.Sky.display(date);
+			})
+			.catch(error => console.error("Error loading one or more images. Message: ", error));
+	},
+});
diff --git a/game/03-JavaScript/weather/image-guide.txt b/game/03-JavaScript/weather/image-guide.txt
new file mode 100644
index 0000000000000000000000000000000000000000..5bb625f39ae317e5c71962611fb6c4023a50adab
--- /dev/null
+++ b/game/03-JavaScript/weather/image-guide.txt
@@ -0,0 +1,7 @@
+Normal maps are used to get depth in the lighting.
+
+However, there are restrictions to reading image data when loading the game locally.
+To avoid this, we can convert the normal map to a base64 string instead of using the basic image,
+then paste the string into an array.
+
+There are simple online tools that can convert an image to a base64 string, like this one: https://www.base64-image.de
diff --git a/game/04-Variables/variables-start.twee b/game/04-Variables/variables-start.twee
index 33a687d6d03b0684da629aa4916d31cc3cf8dd3a..31036d1781083614eb1dbeaed2861a7d6200a2c1 100644
--- a/game/04-Variables/variables-start.twee
+++ b/game/04-Variables/variables-start.twee
@@ -62,6 +62,8 @@
 	<<set Time.startDate to new DateTime()>>
 	<<set $timeStamp to 0>>
 
+	<<set $monthlyTemperatures to []>>
+
 	<<if StartConfig.enableImages is false>>
 		<<set $options.images to 0>>
 		<<set $options.combatImages to 0>>
diff --git a/game/base-system/caption.twee b/game/base-system/caption.twee
index 983b7c822d83cfab6acaaccb44fc0cc8aa04014e..6c5d2d46b9b2fa07a16c5080394b2ad713d6790f 100644
--- a/game/base-system/caption.twee
+++ b/game/base-system/caption.twee
@@ -339,33 +339,6 @@
 
 :: Widgets Clothing Caption [widget]
 <<widget "sidebarlookdescription">>
-	<!--old version
-	<<clothingcaption>>
-	<br>
-	<<stripcaption>>
-
-	<<if ($player.gender is "m" or $player.gender is "h") and $player.gender_appearance is "f">>
-		<<if $breastindicator is 1>>
-			<span class="pink">Your exposed breasts will make people think you're a girl!</span>
-			<br>
-		<<elseif $exposed gte 2>>
-			<span class="pink">The way you look, people will think you're a girl!</span>
-			<br>
-		<<else>>
-			<span class="pink">The way you're dressed, people will think you're a girl!</span>
-			<br>
-		<</if>>
-	<<elseif ($player.gender is "f" or $player.gender is "h") and $player.gender_appearance is "m">>
-		<<if $breastindicator is 0 and $worn.upper.exposed is 2 and $worn.under_upper.exposed gte 1>>
-			<span class="pink">Your exposed flat chest will make people think you're a boy!</span>
-			<br>
-		<<elseif $exposed gte 2>>
-			<span class="pink">The way you look, people will think you're a boy!</span>
-		<<else>>
-			<span class="pink">The way you're dressed, people will think you're a boy!</span>
-			<br>
-		<</if>>
-	<</if>>-->
 	<<clothingCaptionText>>
 
 	<<switch $body_temperature>>
@@ -486,381 +459,6 @@
 	<<if $makeup.mascara != 0>><<set $attractiveness += 100>><</if>>
 <</widget>>
 
-<!-- NOTE: THIS WIDGET IS UNUSED
-<<widget "clothingcaption">>
-	<<if $worn.upper.name is "naked">>
-		<<if $worn.lower.name is "naked">>
-			<<if $worn.under_lower.name is "naked" and $worn.genitals.name is "naked">>
-				<<if $worn.under_upper.name is "naked">>
-				<span class="red">You are completely naked!</span>
-				<<else>>
-				<span class="red">Your bottom half is completely exposed!</span> <span class="pink">Your <<underupperintegrity>> <<clothescolour 'under_upper'>> $worn.under_upper.name <<if $worn.under_upper.plural is 1>>give<<else>>gives<</if>> little comfort.</span>
-				<</if>>
-			<<elseif $worn.under_lower.name is "naked" and $worn.genitals.name isnot "naked">>
-				<<if $worn.under_upper.name is "naked">>
-					<span class="red">Your <<genitalsintegrity>> $worn.genitals.name <<if playerChastity("anus")>>with an anal shield<</if>> gives you no comfort.</span>
-				<<else>>
-					<span class="red">Other than your <<genitalsintegrity>> $worn.genitals.name <<if playerChastity("anus")>>with an anal shield<</if>>, your bottom half is completely exposed!</span>
-				<</if>>
-			<</if>>
-			<<if $worn.under_lower.name isnot "naked">>
-				<<if $worn.under_upper.name is "naked">>
-				<span class="pink">You are wearing nothing but a<<if $worn.under_lower.name.last() is "s">> pair of<</if>> <<underlowerintegrity>> <<clothescolour 'under_lower'>> $worn.under_lower.name.</span>
-				<<else>>
-					<<if $worn.under_lower.set is $worn.under_upper.set>>
-					<span class="pink">You are wearing nothing but <<underupperword>> <<underupperintegrity>> <<clothescolour 'under_upper'>> $worn.under_upper.name.</span>
-					<<else>>
-					<span class="pink">You are wearing a<<if $worn.under_lower.name.last() is "s">> pair of<</if>> <<underlowerintegrity>> <<clothescolour 'under_lower'>> $worn.under_lower.name and <<underupperword>> <<underupperintegrity>> <<clothescolour 'under_upper'>> $worn.under_upper.name.</span>
-					<</if>>
-				<</if>>
-				<<if $worn.genitals.name isnot "naked">>
-					You wear <<genitalsword>> <<genitalsintegrity>> $worn.genitals.name<<if playerChastity("anus")>> with an anal shield<</if>>.
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $worn.lower.name isnot "naked">>
-			<<if $worn.under_lower.name is "naked">>
-				<<if $worn.under_upper.name is "naked">>
-				<span class="pink">You are topless and wearing no underwear</span> but your lower half is covered by <<lowerword>> <<lowerintegrity>> <<clothescolour 'lower'>> $worn.lower.name.
-				<<else>>
-				<span class="pink">You are wearing <<underupperword>> <<underupperintegrity>> <<clothescolour 'under_upper'>> $worn.under_upper.name</span> and <<lowerword>> <<lowerintegrity>> <<clothescolour 'lower'>> $worn.lower.name, <span class="purple">with nothing underneath.</span>
-				<</if>>
-				<<if $worn.genitals.name isnot "naked">>
-					You wear <<genitalsword>> <<genitalsintegrity>> $worn.genitals.name<<if playerChastity("anus")>> with an anal shield<</if>>.
-				<</if>>
-			<</if>>
-			<<if $worn.under_lower.name isnot "naked">>
-				<<if $worn.under_upper.name is "naked">>
-				<span class="pink">You are topless</span> with <<lowerword>> <<lowerintegrity>> <<clothescolour 'lower'>> $worn.lower.name and <<underlowerword>> <<underlowerintegrity>> <<clothescolour 'under_lower'>> $worn.under_lower.name.
-				<<else>>
-				Your lower half is covered by <<lowerword>> <<lowerintegrity>> <<clothescolour 'lower'>> $worn.lower.name and <<underlowerword>> <<underlowerintegrity>> <<clothescolour 'under_lower'>> $worn.under_lower.name, <span class="pink">but only <<underupperword>> <<underupperintegrity>> <<clothescolour 'under_upper'>> $worn.under_upper.name protects your chest.</span>
-				<</if>>
-				<<if $worn.genitals.name isnot "naked">>
-					You wear <<genitalsword>> <<genitalsintegrity>> $worn.genitals.name<<if playerChastity("anus")>> with an anal shield<</if>>.
-				<</if>>
-			<</if>>
-		<</if>>
-	<<elseif $worn.upper.name isnot "naked">>
-		<<if $worn.lower.name is "naked">>
-			<<if $worn.under_lower.name is "naked">>
-				<<if $worn.upper.one_piece is "broken" and $worn.lower.set isnot $worn.upper.set>>
-					<<if $worn.under_upper.name is "naked">>
-					You are wearing just <<upperword>> <<upperintegrity>> <<clothescolour 'upper'>> $worn.upper.name that <<upperhas>> been torn at the waist <span class="red"> leaving your bottom half completely exposed!</span>
-					<<else>>
-					You are wearing <<underupperword>> <<underupperintegrity>> <<clothescolour 'under_upper'>> $worn.under_upper.name beneath <<upperword>> <<upperintegrity>> <<clothescolour 'upper'>> $worn.upper.name that <<upperhas>> been torn at the waist <span class="red"> leaving your bottom half completely exposed!</span>
-					<</if>>
-				<<else>>
-					<<if $worn.under_upper.name is "naked">>
-					<span class="red">Your bottom half is completely exposed!</span> Your top half is covered by <<upperword>> <<upperintegrity>> <<clothescolour 'upper'>> $worn.upper.name, <span class="purple">with nothing beneath.</span>
-					<<else>>
-					<span class="red">Your bottom half is completely exposed!</span> Your top half is covered by <<upperword>> <<upperintegrity>> <<clothescolour 'upper'>> $worn.upper.name, with <<underupperword>> <<underupperintegrity>> <<clothescolour 'under_upper'>> $worn.under_upper.name beneath.
-					<</if>>
-				<</if>>
-				<<if $worn.genitals.name isnot "naked">>
-					<span class="red">Your <<genitalsintegrity>> $worn.genitals.name<<if playerChastity("anus")>> with an anal shield<</if>> gives you no comfort.</span>
-				<</if>>
-			<</if>>
-			<<if $worn.under_lower.name isnot "naked">>
-				<<if $worn.upper.one_piece is "broken" and $worn.lower.set isnot $worn.upper.set>>
-					<<if $worn.under_upper.name is "naked">>
-					You are wearing <<upperword>> <<upperintegrity>> <<clothescolour 'upper'>> $worn.upper.name that has been torn at the waist <span class="purple"> leaving your <<underlowerword>> <<underlowerintegrity>> <<clothescolour 'under_lower'>> $worn.under_lower.name exposed.</span>
-					<<else>>
-					You are wearing <<underupperword>> <<underupperintegrity>> <<clothescolour 'under_upper'>> $worn.under_upper.name beneath <<upperword>> <<upperintegrity>> <<clothescolour 'upper'>> $worn.upper.name that has been torn at the waist <span class="purple"> leaving your <<underlowerword>> <<underlowerintegrity>> <<clothescolour 'under_lower'>> $worn.under_lower.name exposed.</span>
-					<</if>>
-				<<else>>
-					<<if $worn.under_upper.name is "naked">>
-					You are wearing <<upperword>> <<upperintegrity>> <<clothescolour 'upper'>> $worn.upper.name and <<underlowerword>> <span class="purple">exposed <<underlowerintegrity>> <<clothescolour 'under_lower'>> $worn.under_lower.name.</span>
-					<<else>>
-						<<if $worn.under_upper.one_piece is 1>>
-						You are wearing <<underupperword>> <<underupperintegrity>> <<clothescolour 'under_upper'>> $worn.under_upper.name beneath <<upperword>> <<upperintegrity>> <<clothescolour 'upper'>> $worn.upper.name. <span class="purple">Your $worn.under_upper.name is visible beneath your waist.</span>
-						<<else>>
-						You are wearing <<underupperword>> <<underupperintegrity>> <<clothescolour 'under_upper'>> $worn.under_upper.name beneath <<upperword>> <<upperintegrity>> <<clothescolour 'upper'>> $worn.upper.name and <<underlowerword>> <span class="purple">exposed <<underlowerintegrity>> <<clothescolour 'under_lower'>> $worn.under_lower.name.</span>
-						<</if>>
-					<</if>>
-				<</if>>
-				<<if $worn.genitals.name isnot "naked">>
-					Your <<genitalsintegrity>> $worn.genitals.name<<if playerChastity("anus")>> with an anal shield<</if>> <<if $worn.under_lower.reveal gte 500>>is clearly visible<<else>>can be made out<</if>> underneath.
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $worn.lower.name isnot "naked">>
-			<<if $worn.under_lower.name is "naked">>
-				<<if $worn.under_upper.name is "naked">>
-				You are wearing <<upperword>> <<upperintegrity>> <<clothescolour 'upper'>> $worn.upper.name
-					<<if $worn.lower.one_piece isnot 1>>
-					and <<lowerword>> <<lowerintegrity>> <<clothescolour 'lower'>> $worn.lower.name
-					<</if>>
-				<span class="purple"><<if $worn.lower.type.includes("swim")>>and<<else>>but<</if>> you are not wearing underwear.</span>
-				<<else>>
-					You are wearing <<upperword>> <<upperintegrity>> <<clothescolour 'upper'>> $worn.upper.name
-					<<if $worn.lower.one_piece isnot 1>>
-					and <<lowerword>> <<lowerintegrity>> <<clothescolour 'lower'>> $worn.lower.name
-					<</if>>
-					<<if $worn.under_upper.one_piece is "broken">>
-					<span class="purple">with just <<underupperword>> <<underupperintegrity>> <<clothescolour 'under_upper'>> $worn.under_upper.name that has been torn at the waist beneath.</span>
-					<<else>>
-					<span class="purple">with just <<underupperword>> <<underupperintegrity>> <<clothescolour 'under_upper'>> $worn.under_upper.name beneath.</span>
-					<</if>>
-				<</if>>
-				<<if $worn.genitals.name isnot "naked">>
-					You wear <<genitalsword>> <<genitalsintegrity>> $worn.genitals.name<<if playerChastity("anus")>> with an anal shield<</if>>.
-				<</if>>
-			<</if>>
-			<<if $worn.under_lower.name isnot "naked">>
-				<<if $worn.under_upper.name is "naked">>
-				You are wearing <<upperword>> <<upperintegrity>> <<clothescolour 'upper'>> $worn.upper.name
-					<<if $worn.lower.one_piece isnot 1>>
-					and <<lowerword>> <<lowerintegrity>> <<clothescolour 'lower'>> $worn.lower.name
-					<</if>>
-					<<if $player.breastsize lt 3>>
-						with <<underlowerword>> <<underlowerintegrity>> <<clothescolour 'under_lower'>> $worn.under_lower.name beneath.
-					<<else>>
-						<span class="purple">with just <<underlowerword>> <<underlowerintegrity>> <<clothescolour 'under_lower'>> $worn.under_lower.name beneath.</span>
-					<</if>>
-				<<else>>
-				You are wearing <<upperword>> <<upperintegrity>> <<clothescolour 'upper'>> $worn.upper.name
-					<<if $worn.lower.one_piece isnot 1>>
-					and <<lowerword>> <<lowerintegrity>> <<clothescolour 'lower'>> $worn.lower.name
-					<</if>>
-					<<if $worn.under_lower.one_piece is 1>>
-					with <<underupperword>> <<underupperintegrity>> <<clothescolour 'under_upper'>> $worn.under_upper.name beneath.
-					<<else>>
-					with <<underlowerword>> <<underlowerintegrity>> <<clothescolour 'under_lower'>> $worn.under_lower.name and <<underupperword>> <<underupperintegrity>> <<clothescolour 'under_upper'>> $worn.under_upper.name beneath.
-					<</if>>
-				<</if>>
-				<<if $worn.genitals.name isnot "naked">>
-					You wear <<genitalsword>> <<genitalsintegrity>> $worn.genitals.name<<if playerChastity("anus")>> with an anal shield<</if>>.
-				<</if>>
-			<</if>>
-		<</if>>
-	<</if>>
-
-	<<if $worn.face.type.includes("mask")>>
-	<br>
-	Your identity is concealed by your $worn.face.name.
-	<</if>>
-<</widget>>
--->
-
-<!-- NOTE: THIS WIDGET IS UNUSED
-<<widget "stripcaption">>
-	<<if !$worn.upper.type.includes("naked") and $upperwetstage gte 3 and !$worn.lower.type.includes("naked") and $lowerwetstage gte 3 and !$worn.under_lower.type.includes("naked") and !playerChastity() and $underlowerwetstage gte 3 and !$worn.under_upper.type.includes("naked") and $underupperwetstage gte 3>>
-		<<if $worn.under_upper.set is $worn.under_lower.set>>
-			<<if $worn.upper.set is $worn.lower.set>>
-		<br>
-		Your $worn.upper.name and $worn.under_upper.name are drenched, <span class="pink">revealing your <<breasts>> and <<genitals>>.</span>
-		<br>
-			<<else>>
-		<br>
-		Your $worn.upper.name, $worn.lower.name and $worn.under_upper.name are drenched, <span class="pink">revealing your <<breasts>> and <<genitals>>.</span>
-		<br>
-			<</if>>
-
-		<<else>>
-			<<if $worn.upper.set is $worn.lower.set>>
-		<br>
-		Your $worn.upper.name, $worn.under_lower.name and $worn.under_upper.name are drenched, <span class="pink">revealing your <<breasts>> and <<genitals>>.</span>
-		<br>
-			<<else>>
-		<br>
-		Your $worn.upper.name, $worn.lower.name, $worn.under_lower.name and $worn.under_upper.name are drenched, <span class="pink">revealing your <<breasts>> and <<genitals>>.</span>
-		<br>
-			<</if>>
-		<</if>>
-
-	<<elseif !$worn.upper.type.includes("naked") and $upperwetstage gte 3 and !$worn.lower.type.includes("naked") and $lowerwetstage gte 3 and !$worn.under_lower.type.includes("naked") and !playerChastity() and $underlowerwetstage gte 3>>
-		<<if $worn.upper.set is $worn.lower.set>>
-	<br>
-	Your $worn.upper.name, and $worn.under_lower.name are drenched, <span class="pink">revealing your <<undertop>> and <<genitals>>.</span>
-	<br>
-		<<else>>
-	<br>
-	Your $worn.upper.name, $worn.lower.name and $worn.under_lower.name are drenched, <span class="pink">revealing your <<undertop>> and <<genitals>>.</span>
-	<br>
-		<</if>>
-
-	<<elseif !$worn.upper.type.includes("naked") and $upperwetstage gte 3 and !$worn.under_upper.type.includes("naked") and $underupperwetstage gte 3 and $lowerwetstage gte 3 and !$worn.lower.type.includes("naked")>>
-		<<if $worn.upper.set is $worn.lower.set>>
-		<br>
-		Your $worn.upper.name and $worn.under_upper.name are drenched, <span class="purple">revealing your <<breasts>> and <<undies>>.</span>
-		<br>
-		<<else>>
-		<br>
-		Your $worn.upper.name, $worn.lower.name and $worn.under_upper.name are drenched, <span class="purple">revealing your <<breasts>> and <<undies>>.</span>
-		<br>
-		<</if>>
-
-	<<elseif !$worn.upper.type.includes("naked") and $upperwetstage gte 3 and $lowerwetstage gte 3 and !$worn.lower.type.includes("naked")>>
-		<<if $worn.upper.set is $worn.lower.set>>
-	<br>
-	Your $worn.upper.name is drenched, <span class="purple">revealing your <<undertop>> and <<undies>>.</span>
-	<br>
-		<<else>>
-	<br>
-	Your $worn.upper.name and $worn.lower.name are drenched, <span class="purple">revealing your <<undertop>> and <<undies>>.</span>
-	<br>
-		<</if>>
-
-	<<elseif !$worn.upper.type.includes("naked") and $upperwetstage gte 3>>
-	<br>
-	Your $worn.upper.name <<upperplural>> drenched, <span class="purple">revealing your <<breasts>>.</span>
-	<br>
-
-	<<elseif !$worn.lower.type.includes("naked") and $lowerwetstage gte 3 and !$worn.under_lower.type.includes("naked") and !playerChastity() and $underlowerwetstage gte 3>>
-	<br>
-	Your $worn.lower.name and $worn.under_lower.name are drenched, <span class="pink">revealing your <<genitals>>.</span>
-	<br>
-
-	<<elseif !$worn.lower.type.includes("naked") and $lowerwetstage gte 3>>
-	<br>
-	Your $worn.lower.name <<lowerplural>> drenched, <span class="purple">revealing your <<undies>>.</span>
-	<br>
-
-	<<elseif !$worn.under_lower.type.includes("naked") and !playerChastity() and $underlowerwetstage gte 3>>
-	<br>
-	Your $worn.under_lower.name <<underlowerplural>> drenched, <span class="pink">revealing your <<genitals>>.</span>
-	<br>
-
-	<<elseif !$worn.under_upper.type.includes("naked") and $underupperwetstage gte 3>>
-	<br>
-	Your $worn.under_upper.name <<underupperplural>> drenched, <span class="pink">revealing your <<breasts>>.</span>
-	<br>
-
-	<<elseif !$worn.upper.type.includes("naked") and $worn.upper.exposed is 2 and !$worn.lower.type.includes("naked") and $worn.lower.exposed is 2 and !$worn.under_lower.type.includes("naked") and !playerChastity() and $worn.under_lower.state isnot "waist" and !$worn.under_upper.type.includes("naked") and $worn.under_upper.state isnot setup.clothes.under_upper[clothesIndex('under_upper', $worn.under_upper)].state_base>>
-		<<if $worn.under_upper.set is $worn.under_lower.set>>
-			<<if $worn.upper.set is $worn.lower.set>>
-		<br>
-		Your $worn.upper.name, skirt and $worn.under_upper.name have been pulled aside, <span class="pink">revealing your <<breasts>> and <<genitals>>.</span>
-		<br>
-			<<else>>
-		<br>
-		Your $worn.upper.name, $worn.lower.name and $worn.under_upper.name have been pulled aside, <span class="pink">revealing your <<breasts>> and <<genitals>>.</span>
-		<br>
-			<</if>>
-		<<else>>
-			<<if $worn.upper.set is $worn.lower.set>>
-		<br>
-		Your $worn.upper.name, skirt, $worn.under_upper.name and $worn.under_lower.name have been pulled aside, <span class="pink">revealing your <<breasts>> and <<genitals>>.</span>
-		<br>
-			<<else>>
-		<br>
-		Your $worn.upper.name, $worn.lower.name, $worn.under_upper.name and $worn.under_lower.name have been pulled aside, <span class="pink">revealing your <<breasts>> and <<genitals>>.</span>
-		<br>
-			<</if>>
-		<</if>>
-
-	<<elseif !$worn.upper.type.includes("naked") and $worn.upper.exposed is 2 and !$worn.lower.type.includes("naked") and $worn.lower.exposed is 2 and !$worn.under_lower.type.includes("naked") and !playerChastity() and $worn.under_lower.state isnot "waist">>
-		<<if $worn.upper.set is $worn.lower.set>>
-	<br>
-	Your $worn.upper.name, skirt and $worn.under_lower.name have been pulled aside, <span class="pink">revealing your <<undertop>> and <<genitals>>.</span>
-	<br>
-		<<else>>
-	<br>
-	Your $worn.upper.name, $worn.lower.name and $worn.under_lower.name have been pulled aside, <span class="pink">revealing your <<undertop>> and <<genitals>>.</span>
-	<br>
-		<</if>>
-
-	<<elseif !$worn.upper.type.includes("naked") and $worn.upper.exposed is 2 and $worn.lower.exposed is 2 and !$worn.lower.type.includes("naked") and !$worn.under_upper.type.includes("naked") and $worn.under_upper.state isnot setup.clothes.under_upper[clothesIndex('under_upper', $worn.under_upper)].state_base>>
-		<<if $worn.upper.set is $worn.lower.set>>
-	<br>
-	Your $worn.upper.name, skirt and $worn.under_upper.name have been pulled aside, <span class="purple">revealing your <<breasts>> and <<undies>>.</span>
-	<br>
-		<<else>>
-	<br>
-	Your $worn.upper.name, $worn.lower.name and $worn.under_upper.name have been pulled aside, <span class="purple">revealing your <<breasts>> and <<undies>>.</span>
-	<br>
-		<</if>>
-
-	<<elseif !$worn.upper.type.includes("naked") and $worn.upper.exposed is 2 and $worn.lower.exposed is 2 and !$worn.lower.type.includes("naked")>>
-		<<if $worn.upper.set is $worn.lower.set>>
-	<br>
-	Your $worn.upper.name and skirt have been pulled aside, <span class="purple">revealing your <<undertop>> and <<undies>>.</span>
-	<br>
-		<<else>>
-	<br>
-	Your $worn.upper.name and $worn.lower.name have been pulled aside, <span class="purple">revealing your <<undertop>> and <<undies>>.</span>
-	<br>
-		<</if>>
-
-	<<elseif !$worn.upper.type.includes("naked") and $worn.upper.exposed is 2>>
-	<br>
-	Your $worn.upper.name <<upperhas>> been pulled aside, <span class="purple">revealing your <<breasts>>.</span>
-	<br>
-
-	<<elseif !$worn.lower.type.includes("naked") and $worn.lower.exposed is 2 and !$worn.under_lower.type.includes("naked") and !playerChastity() and $worn.under_lower.state isnot "waist">>
-	<br>
-	Your $worn.lower.name <<lowerhas>> been pulled aside and your $worn.under_lower.name pulled down, <span class="pink">revealing your <<genitals>>.</span>
-	<br>
-
-	<<elseif !$worn.lower.type.includes("naked") and $worn.lower.exposed is 2>>
-	<br>
-	Your $worn.lower.name <<lowerhas>> been pulled aside, <span class="purple">revealing your <<undies>>.</span>
-	<br>
-
-	<<elseif !$worn.under_lower.type.includes("naked") and !playerChastity() and $worn.under_lower.state isnot setup.clothes.under_lower[clothesIndex('under_lower', $worn.under_lower)].state_base>>
-	<br>
-
-	Your $worn.under_lower.name <<underlowerhas>> been pulled
-	<<if $worn.under_lower.state is "totheside">>
-		pulled aside,
-	<<else>>
-		down to your $worn.under_lower.state,
-	<</if>>
-	<span class="pink">revealing your <<genitals>>.</span>
-	<br>
-
-	<<elseif !$worn.under_upper.type.includes("naked") and $worn.under_upper.state isnot setup.clothes.under_upper[clothesIndex('under_upper', $worn.under_upper)].state_base>>
-	<br>
-
-	Your $worn.under_upper.name <<underupperhas>> been pulled to your $worn.under_upper.state, <span class="pink">revealing your <<breasts>>.</span>
-	<br>
-
-	<</if>>
-<</widget>>
--->
-
-/* Obsolete - replaced with js
-<<widget "clock">><<silently>>
-	<<if Time.hour gte 12>>
-		<<set _hour to Time.hour - 12>>
-	<<else>>
-		<<set _hour to Time.hour>>
-	<</if>>
-	<<if Time.minute lt 30>>
-		<<switch _hour>>
-			<<case 1>><<set _text_output to "🕐">>
-			<<case 2>><<set _text_output to "🕑">>
-			<<case 3>><<set _text_output to "🕒">>
-			<<case 4>><<set _text_output to "🕓">>
-			<<case 5>><<set _text_output to "🕔">>
-			<<case 6>><<set _text_output to "🕕">>
-			<<case 7>><<set _text_output to "🕖">>
-			<<case 8>><<set _text_output to "🕗">>
-			<<case 9>><<set _text_output to "🕘">>
-			<<case 10>><<set _text_output to "🕙">>
-			<<case 11>><<set _text_output to "🕚">>
-			<<case 0>><<set _text_output to "🕛">>
-			<<default>><<set _text_output to "OHNO">>
-		<</switch>>
-	<<else>>
-		<<switch _hour>>
-			<<case 1>><<set _text_output to "🕜">>
-			<<case 2>><<set _text_output to "🕝">>
-			<<case 3>><<set _text_output to "🕞">>
-			<<case 4>><<set _text_output to "🕟">>
-			<<case 5>><<set _text_output to "🕠">>
-			<<case 6>><<set _text_output to "🕡">>
-			<<case 7>><<set _text_output to "🕢">>
-			<<case 8>><<set _text_output to "🕣">>
-			<<case 9>><<set _text_output to "🕤">>
-			<<case 10>><<set _text_output to "🕥">>
-			<<case 11>><<set _text_output to "🕦">>
-			<<case 0>><<set _text_output to "🕧">>
-			<<default>><<set _text_output to "OHNO">>
-		<</switch>>
-	<</if>>
-<</silently>><<print _text_output>><</widget>> */
-
 <<widget "statsCaption">>
 	<<printmoney $money true>>
 	&nbsp;
diff --git a/game/base-system/overlays/journal.twee b/game/base-system/overlays/journal.twee
index f8028681b00d609053a64ca38f998c4fd480e6d6..78e0a1c8be826d0ba3ee52489c1e34a71b8e0111 100644
--- a/game/base-system/overlays/journal.twee
+++ b/game/base-system/overlays/journal.twee
@@ -792,9 +792,8 @@
 	<</if>>
 	<<if !_currentPage>><<set _currentPage to "default">><</if>>
 	<<set _listPageName to _currentPage>>
-	<details>
-		<summary style="display:list-item;">Extra</summary>
-		<br>
+	<<foldout false "_journalFoldout">>
+		<span>Extra</span>
 		Page:
 		<<listbox "_listPageName" autoselect>>
 			<<optionsfrom Object.keys($journalNotes)>>
@@ -832,7 +831,7 @@
 			Page names can only contain A-Z, numbers, underscore, dashes and spaces.
 		</span></mouse>
 		<div id="journalNotesMessage"></div>
-	</details>
+	<</foldout>>
 	<br>
 	<div id="journalNotesTextarea"><<journalNotesTextarea>></div>
 <</widget>>
diff --git a/game/base-system/overlays/traits.twee b/game/base-system/overlays/traits.twee
index 7d5f3851f813d6f3457431c229e27e25ec6915ca..9d1d628e0ef48fdc7361e61a42ba0841adb85c70 100644
--- a/game/base-system/overlays/traits.twee
+++ b/game/base-system/overlays/traits.twee
@@ -908,8 +908,8 @@
 <<widget "traitListsSearch">>
 	<<if $options.traitOverlayFormat is undefined>><<set $options.traitOverlayFormat to "table">><</if>>
 	<<set _traitSearch to "">>
-	<details>
-		<summary style="display:list-item;">Filter</summary>
+	<<foldout false "_traitFilterFoldout">>
+		<span>Filter</span>
 		<label>Search: <<textbox "_traitSearch" _traitSearch>></label>
 		<br><br>
 		<label>
@@ -929,7 +929,7 @@
 			<<replace "#traitListsSearch">><<traitListsSearch>><</replace>>
 			<<replace "#traitLists">><<traitLists>><</replace>>
 		<</link>> |
-	</details>
+	<</foldout>>
 <</widget>>
 
 <<widget "traitLists">>
@@ -1008,4 +1008,4 @@
 			<br>
 		<</if>>
 	<</for>>
-<</widget>>
\ No newline at end of file
+<</widget>>
diff --git a/game/base-system/radio.twee b/game/base-system/radio.twee
deleted file mode 100644
index 24022728ef364fd97033acff5d739a1f148abb51..0000000000000000000000000000000000000000
--- a/game/base-system/radio.twee
+++ /dev/null
@@ -1,3990 +0,0 @@
-/*
-Radio mod for Degrees of Lewdity v.1.
-Feb 2019
-(c) khan@buntownik.pl
-*/
-:: RadioDummy
-
-<<radio_listen>><<pass 1>>
-<<radio_listen>><<pass 1>>
-<<radio_listen>><<pass 1>>
-<<radio_listen>><<pass 1>>
-<<radio_listen>><<pass 1>>
-<<link [[Next|previous()]]>><</link>>
-
-:: RadioWidgets [widget]
-
-<<widget "radio_midnight">> /*call every midnight to reduce importance of news, and shift the Tanktracks*/
-	<<set $news1_importance to $news1_importance-1>>
-	<<if $news1_importance lte 0>>
-		<<set $news1 to "gossip">>
-		<<set $news1_importance to 0>>
-		<<set $news1_gen to "person">>
-		<<set $news1_hairc to "dark">>
-		<<set $news1_hairl to "regular">>
-	<</if>>
-	<<set $news2_importance to $news2_importance-1>>
-	<<if $news2_importance lte 0>>
-		<<set $news2 to "gossip">>
-		<<set $news2_importance to 0>>
-		<<set $news2_gen to "person">>
-		<<set $news2_hairc to "dark">>
-		<<set $news2_hairl to "regular">>
-	<</if>>
-	/*move the tank*/
-	<<if $tanktracks is 1>>
-		<<set $tanktracks to 2>>
-	<<elseif $tanktracks is 2>>
-		<<set $tanktracks to 3>>
-	<<elseif $tanktracks is 3>>
-		<<set $tanktracks to 4>>
-	<<elseif $tanktracks is 4>>
-		<<set $tanktracks to 5>>
-	<<elseif $tanktracks is 5>>
-		<<set $tanktracks to 6>>
-	<<else>>
-		<<set $tanktracks to 1>>
-	<</if>>
-<</widget>>
-
-<<widget "radio_placehere">>
-	<<set $_rem_str to getTimeString(Time.hour + 1, 0)>>
-	<<set $loc to passage()>>
-	<<radio_listen>>
-	<<link [[Listen to the radio (0:01)|passage()]]>><<pass 1>><</link>> /*script thing is magically required to link to the same page*/
-	<br>
-	<<link [[Listen for a while (0:05)|passage()]]>><<pass 5>><</link>>
-	<br>
-	<<if Time.minute lte 47>>
-		<<link "Wait for the news ($_rem_str)" $loc>><<advanceToHour>><</link>>
-		<br>
-	<</if>>
-	<br>
-<</widget>>
-
-<<widget "radio_hardreset">> /* call this to reset news. Should be called when fresh new game is initialised */
-	<<set $news1 to "gossip">>
-	<<set $news1_importance to 0>>
-	<<set $news1_gen to "person">>
-	<<set $news1_hairc to "black">>
-	<<set $news1_hairl to "regular">>
-	<<set $news2 to "gossip">>
-	<<set $news2_importance to 0>>
-	<<set $news2_gen to "person">>
-	<<set $news2_hairc to "black">>
-	<<set $news2_hairl to "regular">>
-<</widget>>
-
-<<widget "radio_addnews">>
-	/*sort news*/
-	<<if $news2_importance gt $news1_importance>>
-		<<set $newstemp1 to $news1>>
-		<<set $newstemp2 to $news1_importance>>
-		<<set $newstemp3 to $news1_gen>>
-		<<set $newstemp4 to $news1_hairc>>
-		<<set $newstemp5 to $news1_hairl>>
-		<<set $news1 to $news2>>
-		<<set $news1_importance to $news2_importance>>
-		<<set $news1_gen to $news2_gen>>
-		<<set $news1_hairc to $news2_hairc>>
-		<<set $news1_hairl to $news2_hairl>>
-		<<set $news2 to $newstemp1>>
-		<<set $news2_importance to $newstemp2>>
-		<<set $news2_gen to $newstemp3>>
-		<<set $news2_hairc to $newstemp4>>
-		<<set $news2_hairl to $newstemp5>>
-	<</if>>
-	/*if the incoming news are actually something new*/
-	<<if (_args[0] isnot $news1) and (_args[0] isnot $news1)>>
-		/*if incoming news is more or as important as than news2, but less important than the news1*/
-		<<if (_args[1] gte $news2_importance) and (_args[1] lt $news1_importance)>>
-			/* new news shall replace news2 */
-			<<set $news2 to _args[0]>>
-			<<set $news2_importance to _args[1]>>
-			/* store PC appearance */
-			<<if $player.gender is "m">>
-				<<set $news2_gen to "male">>
-			<<else>>
-				<<set $news2_gen to "female">>
-			<</if>>
-			<<set $news2_hairc to $haircolour>>
-			<<if $hairlength gte 300>>
-				<<set $news2_hairl to "long">>
-			<<else>>
-				<<set $news2_hairl to "short">>
-			<</if>>
-			/* if incoming news is more or as important as both current news */
-		<<elseif (_args[1] gte $news2_importance) and (_args[1] gte $news2_importance)>>
-			/*new1 should replace news2
-			new news should replace news1*/
-			<<set $news2 to $news1>>
-			<<set $news2_importance to $news1_importance>>
-			/* store PC appearance */
-			<<set $news2_gen to $news1_gen>>
-			<<set $news2_hairc to $news1_hairc>>
-			<<set $news2_hairl to $news1_hairl>>
-			<<set $news1 to _args[0]>>
-			<<set $news1_importance to _args[1]>>
-			/* store PC appearance */
-			<<if $player.gender is "m">>
-				<<set $news1_gen to "male">>
-			<<else>>
-				<<set $news1_gen to "female">>
-			<</if>>
-			<<set $news1_hairc to $haircolour>>
-			<<if $hairlength gte 300>>
-				<<set $news1_hairl to "long">>
-			<<else>>
-				<<set $news1_hairl to "short">>
-			<</if>>
-		<</if>>
-		/*if the incoming news already exist*/
-	<<else>>
-		/*if incoming news are the same as news1 but are more important */
-		<<if (_args[0] is $news1) and (_args[1] gt $news1_importance)>>
-			/*refresh importance*/
-			<<set $news1_importance to _args[1]>>
-		<</if>>
-		/*if incoming news are the same as news2 but are more important */
-		<<if (_args[0] is $news2) and (_args[1] gt $news2_importance)>>
-			/*refresh importance*/
-			<<set $news2_importance to _args[1]>>
-		<</if>>
-	<</if>>
-<</widget>>
-
-<<widget "radio_listen">> /* call this to listen to the radio */
-	<<set $radioname to "Sunshine Radio">>
-	<<set $radioslogan to "Your window to the world">>
-	/*-----------------------------------------------------------------------------------------------*/
-	/*create news*/
-	/*default set*/
-	<<set $news1_line1 to "The corruption scandal in the city council continues.">>
-	<<set $news1_line2 to "The investigative commission is in the process of determining what happened to the money earmarked for the renovation of the city's orphanage and asylum.">>
-	<<set $news1_line3 to "As reported by anonymous sources - someone from the city council may be involved in the loss of money.">>
-	<<set $news1_line4 to "In the coming days the mayor is to make a special statement.">>
-	<<silently>><<nnpc_he "Quinn">><</silently>>
-	<<set $news1_line5 to "Until then, "+_text_output+" abstains from comments and states that the whole thing is part of the pre-election provocation.">>
-	<<set $news2_line1 to "The number of wolves in forest areas near the city keep growing.">>
-	<<set $news2_line2 to "Ah gone up in smoke a sheep this week, an' two goats previous one! Lord, far ta cut a path thuh house! - claims one of local farmers.">>
-	<<set $news2_line3 to "According to some commentators, this is the result of recent changes in the law on poaching and hunting.">>
-	<<set $news2_line4 to "The mayor announces that the situation will soon be settled.">>
-	<<set $news2_line5 to "For now, it is recommended to not stay alone in the forest areas after dark.">>
-	<<if $news1 is "meteor_fall">>
-		<<set $news1_line1 to "Meteor fall line one.">>
-		<<set $news1_line2 to "Meteor fall line two.">>
-		<<set $news1_line3 to "Meteor fall line three.">>
-		<<set $news1_line4 to "Meteor fall line four.">>
-		<<set $news1_line5 to "Meteor fall line five.">>
-	<</if>>
-	<<if $news2 is "meteor_fall">>
-		<<set $news2_line1 to "Meteor fall line one.">>
-		<<set $news2_line2 to "Meteor fall line two.">>
-		<<set $news2_line3 to "Meteor fall line three.">>
-		<<set $news2_line4 to "Meteor fall line four.">>
-		<<set $news2_line5 to "Meteor fall line five.">>
-	<</if>>
-	<<if $news1 is "godzilla_awaken">>
-		<<set $news1_line1 to "Godzilla line one.">>
-		<<set $news1_line2 to "Godzilla line two.">>
-		<<set $news1_line3 to "Godzilla line three.">>
-		<<set $news1_line4 to "Godzilla line four.">>
-		<<set $news1_line5 to "Godzilla line five.">>
-	<</if>>
-	<<if $news2 is "godzilla_awaken">>
-		<<set $news2_line1 to "Godzilla line one.">>
-		<<set $news2_line2 to "Godzilla line two.">>
-		<<set $news2_line3 to "Godzilla line three.">>
-		<<set $news2_line4 to "Godzilla line four.">>
-		<<set $news2_line5 to "Godzilla line five.">>
-	<</if>>
-	/*-----------------------------------------------------------------------------------------------*/
-	<<if $hour gte 0 and $hour lt 6>>
-		<<if (($tanktracks is 1) and ($time is 13)) or (($tanktracks is 2) and ($time is 73)) or (($tanktracks is 3) and ($time is 133)) or (($tanktracks is 4) and ($time is 193)) or (($tanktracks is 5) and ($time is 253)) or (($tanktracks is 6) and ($time is 313))>>
-			<i>Night radio, audition 1, line 1</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 14)) or (($tanktracks is 2) and ($time is 74)) or (($tanktracks is 3) and ($time is 134)) or (($tanktracks is 4) and ($time is 194)) or (($tanktracks is 5) and ($time is 254)) or (($tanktracks is 6) and ($time is 314))>>
-			<i>Night radio, audition 1, line 2</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 15)) or (($tanktracks is 2) and ($time is 75)) or (($tanktracks is 3) and ($time is 135)) or (($tanktracks is 4) and ($time is 195)) or (($tanktracks is 5) and ($time is 255)) or (($tanktracks is 6) and ($time is 315))>>
-			<i>Night radio, audition 1, line 3</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 16)) or (($tanktracks is 2) and ($time is 76)) or (($tanktracks is 3) and ($time is 136)) or (($tanktracks is 4) and ($time is 196)) or (($tanktracks is 5) and ($time is 256)) or (($tanktracks is 6) and ($time is 316))>>
-			<i>Night radio, audition 1, line 4</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 17)) or (($tanktracks is 2) and ($time is 77)) or (($tanktracks is 3) and ($time is 137)) or (($tanktracks is 4) and ($time is 197)) or (($tanktracks is 5) and ($time is 257)) or (($tanktracks is 6) and ($time is 317))>>
-			<i>Night radio, audition 1, line 5</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 18)) or (($tanktracks is 2) and ($time is 78)) or (($tanktracks is 3) and ($time is 138)) or (($tanktracks is 4) and ($time is 198)) or (($tanktracks is 5) and ($time is 258)) or (($tanktracks is 6) and ($time is 318))>>
-			<i>Night radio, audition 1, line 6</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 19)) or (($tanktracks is 2) and ($time is 79)) or (($tanktracks is 3) and ($time is 139)) or (($tanktracks is 4) and ($time is 199)) or (($tanktracks is 5) and ($time is 259)) or (($tanktracks is 6) and ($time is 319))>>
-			<i>Night radio, audition 1, line 7</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 20)) or (($tanktracks is 2) and ($time is 80)) or (($tanktracks is 3) and ($time is 140)) or (($tanktracks is 4) and ($time is 200)) or (($tanktracks is 5) and ($time is 260)) or (($tanktracks is 6) and ($time is 320))>>
-			<i>Night radio, audition 1, line 8</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 21)) or (($tanktracks is 2) and ($time is 81)) or (($tanktracks is 3) and ($time is 141)) or (($tanktracks is 4) and ($time is 201)) or (($tanktracks is 5) and ($time is 261)) or (($tanktracks is 6) and ($time is 321))>>
-			<i>Night radio, audition 1, line 9</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 22)) or (($tanktracks is 2) and ($time is 82)) or (($tanktracks is 3) and ($time is 142)) or (($tanktracks is 4) and ($time is 202)) or (($tanktracks is 5) and ($time is 262)) or (($tanktracks is 6) and ($time is 322))>>
-			<i>Night radio, audition 1, line 10</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 23)) or (($tanktracks is 2) and ($time is 83)) or (($tanktracks is 3) and ($time is 143)) or (($tanktracks is 4) and ($time is 203)) or (($tanktracks is 5) and ($time is 263)) or (($tanktracks is 6) and ($time is 323))>>
-			<i>Night radio, audition 1, line 11</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 24)) or (($tanktracks is 2) and ($time is 84)) or (($tanktracks is 3) and ($time is 144)) or (($tanktracks is 4) and ($time is 204)) or (($tanktracks is 5) and ($time is 264)) or (($tanktracks is 6) and ($time is 324))>>
-			<i>Night radio, audition 1, line 12</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 25)) or (($tanktracks is 2) and ($time is 85)) or (($tanktracks is 3) and ($time is 145)) or (($tanktracks is 4) and ($time is 205)) or (($tanktracks is 5) and ($time is 265)) or (($tanktracks is 6) and ($time is 325))>>
-			<i>Night radio, audition 1, line 13</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 26)) or (($tanktracks is 2) and ($time is 86)) or (($tanktracks is 3) and ($time is 146)) or (($tanktracks is 4) and ($time is 206)) or (($tanktracks is 5) and ($time is 266)) or (($tanktracks is 6) and ($time is 326))>>
-			<i>Night radio, audition 1, line 14</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 27)) or (($tanktracks is 2) and ($time is 87)) or (($tanktracks is 3) and ($time is 147)) or (($tanktracks is 4) and ($time is 207)) or (($tanktracks is 5) and ($time is 267)) or (($tanktracks is 6) and ($time is 327))>>
-			<i>Night radio, audition 1, line 15</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 28)) or (($tanktracks is 2) and ($time is 88)) or (($tanktracks is 3) and ($time is 148)) or (($tanktracks is 4) and ($time is 208)) or (($tanktracks is 5) and ($time is 268)) or (($tanktracks is 6) and ($time is 328))>>
-			<i>Night radio, audition 1, line 16</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 29)) or (($tanktracks is 2) and ($time is 89)) or (($tanktracks is 3) and ($time is 149)) or (($tanktracks is 4) and ($time is 209)) or (($tanktracks is 5) and ($time is 269)) or (($tanktracks is 6) and ($time is 329))>>
-			<i>Night radio, audition 1, line 17</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 30)) or (($tanktracks is 2) and ($time is 90)) or (($tanktracks is 3) and ($time is 150)) or (($tanktracks is 4) and ($time is 210)) or (($tanktracks is 5) and ($time is 270)) or (($tanktracks is 6) and ($time is 330))>>
-			<i>Night radio, audition 1, line 18</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 31)) or (($tanktracks is 2) and ($time is 91)) or (($tanktracks is 3) and ($time is 151)) or (($tanktracks is 4) and ($time is 211)) or (($tanktracks is 5) and ($time is 271)) or (($tanktracks is 6) and ($time is 331))>>
-			<i>Night radio, audition 1, line 19</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 32)) or (($tanktracks is 2) and ($time is 92)) or (($tanktracks is 3) and ($time is 152)) or (($tanktracks is 4) and ($time is 212)) or (($tanktracks is 5) and ($time is 272)) or (($tanktracks is 6) and ($time is 332))>>
-			<i>Night radio, audition 1, line 20</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 33)) or (($tanktracks is 2) and ($time is 93)) or (($tanktracks is 3) and ($time is 153)) or (($tanktracks is 4) and ($time is 213)) or (($tanktracks is 5) and ($time is 273)) or (($tanktracks is 6) and ($time is 333))>>
-			<i>Night radio, audition 1, line 21</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 34)) or (($tanktracks is 2) and ($time is 94)) or (($tanktracks is 3) and ($time is 154)) or (($tanktracks is 4) and ($time is 214)) or (($tanktracks is 5) and ($time is 274)) or (($tanktracks is 6) and ($time is 334))>>
-			<i>Night radio, audition 1, line 22</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 35)) or (($tanktracks is 2) and ($time is 95)) or (($tanktracks is 3) and ($time is 155)) or (($tanktracks is 4) and ($time is 215)) or (($tanktracks is 5) and ($time is 275)) or (($tanktracks is 6) and ($time is 335))>>
-			<i>Night radio, audition 1, line 23</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 36)) or (($tanktracks is 2) and ($time is 96)) or (($tanktracks is 3) and ($time is 156)) or (($tanktracks is 4) and ($time is 216)) or (($tanktracks is 5) and ($time is 276)) or (($tanktracks is 6) and ($time is 336))>>
-			<i>Night radio, audition 1, line 24</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 37)) or (($tanktracks is 2) and ($time is 97)) or (($tanktracks is 3) and ($time is 157)) or (($tanktracks is 4) and ($time is 217)) or (($tanktracks is 5) and ($time is 277)) or (($tanktracks is 6) and ($time is 337))>>
-			<i>Night radio, audition 1, line 25</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 38)) or (($tanktracks is 2) and ($time is 98)) or (($tanktracks is 3) and ($time is 158)) or (($tanktracks is 4) and ($time is 218)) or (($tanktracks is 5) and ($time is 278)) or (($tanktracks is 6) and ($time is 338))>>
-			<i>Night radio, audition 1, line 26</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 39)) or (($tanktracks is 2) and ($time is 99)) or (($tanktracks is 3) and ($time is 159)) or (($tanktracks is 4) and ($time is 219)) or (($tanktracks is 5) and ($time is 279)) or (($tanktracks is 6) and ($time is 339))>>
-			<i>Night radio, audition 1, line 27</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 40)) or (($tanktracks is 2) and ($time is 100)) or (($tanktracks is 3) and ($time is 160)) or (($tanktracks is 4) and ($time is 220)) or (($tanktracks is 5) and ($time is 280)) or (($tanktracks is 6) and ($time is 340))>>
-			<i>Night radio, audition 1, line 28</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 41)) or (($tanktracks is 2) and ($time is 101)) or (($tanktracks is 3) and ($time is 161)) or (($tanktracks is 4) and ($time is 221)) or (($tanktracks is 5) and ($time is 281)) or (($tanktracks is 6) and ($time is 341))>>
-			<i>Night radio, audition 1, line 29</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 42)) or (($tanktracks is 2) and ($time is 102)) or (($tanktracks is 3) and ($time is 162)) or (($tanktracks is 4) and ($time is 222)) or (($tanktracks is 5) and ($time is 282)) or (($tanktracks is 6) and ($time is 342))>>
-			<i>Night radio, audition 1, line 30</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 43)) or (($tanktracks is 2) and ($time is 103)) or (($tanktracks is 3) and ($time is 163)) or (($tanktracks is 4) and ($time is 223)) or (($tanktracks is 5) and ($time is 283)) or (($tanktracks is 6) and ($time is 343))>>
-			<i>Night radio, audition 1, line 31</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 44)) or (($tanktracks is 2) and ($time is 104)) or (($tanktracks is 3) and ($time is 164)) or (($tanktracks is 4) and ($time is 224)) or (($tanktracks is 5) and ($time is 284)) or (($tanktracks is 6) and ($time is 344))>>
-			<i>Night radio, audition 1, line 32</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 45)) or (($tanktracks is 2) and ($time is 105)) or (($tanktracks is 3) and ($time is 165)) or (($tanktracks is 4) and ($time is 225)) or (($tanktracks is 5) and ($time is 285)) or (($tanktracks is 6) and ($time is 345))>>
-			<i>Night radio, audition 1, line 33</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 46)) or (($tanktracks is 2) and ($time is 106)) or (($tanktracks is 3) and ($time is 166)) or (($tanktracks is 4) and ($time is 226)) or (($tanktracks is 5) and ($time is 286)) or (($tanktracks is 6) and ($time is 346))>>
-			<i>Night radio, audition 1, line 34</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 47)) or (($tanktracks is 2) and ($time is 107)) or (($tanktracks is 3) and ($time is 167)) or (($tanktracks is 4) and ($time is 227)) or (($tanktracks is 5) and ($time is 287)) or (($tanktracks is 6) and ($time is 347))>>
-			<i>Night radio, audition 1, line 35</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 48)) or (($tanktracks is 2) and ($time is 108)) or (($tanktracks is 3) and ($time is 168)) or (($tanktracks is 4) and ($time is 228)) or (($tanktracks is 5) and ($time is 288)) or (($tanktracks is 6) and ($time is 348))>>
-			<i>Night radio, audition 1, line 36</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 49)) or (($tanktracks is 2) and ($time is 109)) or (($tanktracks is 3) and ($time is 169)) or (($tanktracks is 4) and ($time is 229)) or (($tanktracks is 5) and ($time is 289)) or (($tanktracks is 6) and ($time is 349))>>
-			<i>Night radio, audition 1, line 37</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 50)) or (($tanktracks is 2) and ($time is 110)) or (($tanktracks is 3) and ($time is 170)) or (($tanktracks is 4) and ($time is 230)) or (($tanktracks is 5) and ($time is 290)) or (($tanktracks is 6) and ($time is 350))>>
-			<i>Night radio, audition 1, line 38</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 51)) or (($tanktracks is 2) and ($time is 111)) or (($tanktracks is 3) and ($time is 171)) or (($tanktracks is 4) and ($time is 231)) or (($tanktracks is 5) and ($time is 291)) or (($tanktracks is 6) and ($time is 351))>>
-			<i>Night radio, audition 1, line 39</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 52)) or (($tanktracks is 2) and ($time is 112)) or (($tanktracks is 3) and ($time is 172)) or (($tanktracks is 4) and ($time is 232)) or (($tanktracks is 5) and ($time is 292)) or (($tanktracks is 6) and ($time is 352))>>
-			<i>Night radio, audition 1, line 40</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 53)) or (($tanktracks is 2) and ($time is 113)) or (($tanktracks is 3) and ($time is 173)) or (($tanktracks is 4) and ($time is 233)) or (($tanktracks is 5) and ($time is 293)) or (($tanktracks is 6) and ($time is 353))>>
-			<i>Night radio, audition 1, line 41</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 54)) or (($tanktracks is 2) and ($time is 114)) or (($tanktracks is 3) and ($time is 174)) or (($tanktracks is 4) and ($time is 234)) or (($tanktracks is 5) and ($time is 294)) or (($tanktracks is 6) and ($time is 354))>>
-			<i>Night radio, audition 1, line 42</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 55)) or (($tanktracks is 2) and ($time is 115)) or (($tanktracks is 3) and ($time is 175)) or (($tanktracks is 4) and ($time is 235)) or (($tanktracks is 5) and ($time is 295)) or (($tanktracks is 6) and ($time is 355))>>
-			<i>Night radio, audition 1, line 43</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 56)) or (($tanktracks is 2) and ($time is 116)) or (($tanktracks is 3) and ($time is 176)) or (($tanktracks is 4) and ($time is 236)) or (($tanktracks is 5) and ($time is 296)) or (($tanktracks is 6) and ($time is 356))>>
-			<i>Night radio, audition 1, line 44</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 57)) or (($tanktracks is 2) and ($time is 117)) or (($tanktracks is 3) and ($time is 177)) or (($tanktracks is 4) and ($time is 237)) or (($tanktracks is 5) and ($time is 297)) or (($tanktracks is 6) and ($time is 357))>>
-			<i>Night radio, audition 1, line 45</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 58)) or (($tanktracks is 2) and ($time is 118)) or (($tanktracks is 3) and ($time is 178)) or (($tanktracks is 4) and ($time is 238)) or (($tanktracks is 5) and ($time is 298)) or (($tanktracks is 6) and ($time is 358))>>
-			<i>Night radio, audition 1, line 46</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 59)) or (($tanktracks is 2) and ($time is 119)) or (($tanktracks is 3) and ($time is 179)) or (($tanktracks is 4) and ($time is 239)) or (($tanktracks is 5) and ($time is 299)) or (($tanktracks is 6) and ($time is 359))>>
-			<i>Night radio, audition 1, line 47</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 13)) or (($tanktracks is 3) and ($time is 73)) or (($tanktracks is 4) and ($time is 133)) or (($tanktracks is 5) and ($time is 193)) or (($tanktracks is 6) and ($time is 253)) or (($tanktracks is 1) and ($time is 313))>>
-			<i>Night radio, audition 2, line 1</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 14)) or (($tanktracks is 3) and ($time is 74)) or (($tanktracks is 4) and ($time is 134)) or (($tanktracks is 5) and ($time is 194)) or (($tanktracks is 6) and ($time is 254)) or (($tanktracks is 1) and ($time is 314))>>
-			<i>Night radio, audition 2, line 2</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 15)) or (($tanktracks is 3) and ($time is 75)) or (($tanktracks is 4) and ($time is 135)) or (($tanktracks is 5) and ($time is 195)) or (($tanktracks is 6) and ($time is 255)) or (($tanktracks is 1) and ($time is 315))>>
-			<i>Night radio, audition 2, line 3</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 16)) or (($tanktracks is 3) and ($time is 76)) or (($tanktracks is 4) and ($time is 136)) or (($tanktracks is 5) and ($time is 196)) or (($tanktracks is 6) and ($time is 256)) or (($tanktracks is 1) and ($time is 316))>>
-			<i>Night radio, audition 2, line 4</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 17)) or (($tanktracks is 3) and ($time is 77)) or (($tanktracks is 4) and ($time is 137)) or (($tanktracks is 5) and ($time is 197)) or (($tanktracks is 6) and ($time is 257)) or (($tanktracks is 1) and ($time is 317))>>
-			<i>Night radio, audition 2, line 5</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 18)) or (($tanktracks is 3) and ($time is 78)) or (($tanktracks is 4) and ($time is 138)) or (($tanktracks is 5) and ($time is 198)) or (($tanktracks is 6) and ($time is 258)) or (($tanktracks is 1) and ($time is 318))>>
-			<i>Night radio, audition 2, line 6</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 19)) or (($tanktracks is 3) and ($time is 79)) or (($tanktracks is 4) and ($time is 139)) or (($tanktracks is 5) and ($time is 199)) or (($tanktracks is 6) and ($time is 259)) or (($tanktracks is 1) and ($time is 319))>>
-			<i>Night radio, audition 2, line 7</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 20)) or (($tanktracks is 3) and ($time is 80)) or (($tanktracks is 4) and ($time is 140)) or (($tanktracks is 5) and ($time is 200)) or (($tanktracks is 6) and ($time is 260)) or (($tanktracks is 1) and ($time is 320))>>
-			<i>Night radio, audition 2, line 8</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 21)) or (($tanktracks is 3) and ($time is 81)) or (($tanktracks is 4) and ($time is 141)) or (($tanktracks is 5) and ($time is 201)) or (($tanktracks is 6) and ($time is 261)) or (($tanktracks is 1) and ($time is 321))>>
-			<i>Night radio, audition 2, line 9</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 22)) or (($tanktracks is 3) and ($time is 82)) or (($tanktracks is 4) and ($time is 142)) or (($tanktracks is 5) and ($time is 202)) or (($tanktracks is 6) and ($time is 262)) or (($tanktracks is 1) and ($time is 322))>>
-			<i>Night radio, audition 2, line 10</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 23)) or (($tanktracks is 3) and ($time is 83)) or (($tanktracks is 4) and ($time is 143)) or (($tanktracks is 5) and ($time is 203)) or (($tanktracks is 6) and ($time is 263)) or (($tanktracks is 1) and ($time is 323))>>
-			<i>Night radio, audition 2, line 11</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 24)) or (($tanktracks is 3) and ($time is 84)) or (($tanktracks is 4) and ($time is 144)) or (($tanktracks is 5) and ($time is 204)) or (($tanktracks is 6) and ($time is 264)) or (($tanktracks is 1) and ($time is 324))>>
-			<i>Night radio, audition 2, line 12</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 25)) or (($tanktracks is 3) and ($time is 85)) or (($tanktracks is 4) and ($time is 145)) or (($tanktracks is 5) and ($time is 205)) or (($tanktracks is 6) and ($time is 265)) or (($tanktracks is 1) and ($time is 325))>>
-			<i>Night radio, audition 2, line 13</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 26)) or (($tanktracks is 3) and ($time is 86)) or (($tanktracks is 4) and ($time is 146)) or (($tanktracks is 5) and ($time is 206)) or (($tanktracks is 6) and ($time is 266)) or (($tanktracks is 1) and ($time is 326))>>
-			<i>Night radio, audition 2, line 14</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 27)) or (($tanktracks is 3) and ($time is 87)) or (($tanktracks is 4) and ($time is 147)) or (($tanktracks is 5) and ($time is 207)) or (($tanktracks is 6) and ($time is 267)) or (($tanktracks is 1) and ($time is 327))>>
-			<i>Night radio, audition 2, line 15</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 28)) or (($tanktracks is 3) and ($time is 88)) or (($tanktracks is 4) and ($time is 148)) or (($tanktracks is 5) and ($time is 208)) or (($tanktracks is 6) and ($time is 268)) or (($tanktracks is 1) and ($time is 328))>>
-			<i>Night radio, audition 2, line 16</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 29)) or (($tanktracks is 3) and ($time is 89)) or (($tanktracks is 4) and ($time is 149)) or (($tanktracks is 5) and ($time is 209)) or (($tanktracks is 6) and ($time is 269)) or (($tanktracks is 1) and ($time is 329))>>
-			<i>Night radio, audition 2, line 17</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 30)) or (($tanktracks is 3) and ($time is 90)) or (($tanktracks is 4) and ($time is 150)) or (($tanktracks is 5) and ($time is 210)) or (($tanktracks is 6) and ($time is 270)) or (($tanktracks is 1) and ($time is 330))>>
-			<i>Night radio, audition 2, line 18</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 31)) or (($tanktracks is 3) and ($time is 91)) or (($tanktracks is 4) and ($time is 151)) or (($tanktracks is 5) and ($time is 211)) or (($tanktracks is 6) and ($time is 271)) or (($tanktracks is 1) and ($time is 331))>>
-			<i>Night radio, audition 2, line 19</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 32)) or (($tanktracks is 3) and ($time is 92)) or (($tanktracks is 4) and ($time is 152)) or (($tanktracks is 5) and ($time is 212)) or (($tanktracks is 6) and ($time is 272)) or (($tanktracks is 1) and ($time is 332))>>
-			<i>Night radio, audition 2, line 20</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 33)) or (($tanktracks is 3) and ($time is 93)) or (($tanktracks is 4) and ($time is 153)) or (($tanktracks is 5) and ($time is 213)) or (($tanktracks is 6) and ($time is 273)) or (($tanktracks is 1) and ($time is 333))>>
-			<i>Night radio, audition 2, line 21</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 34)) or (($tanktracks is 3) and ($time is 94)) or (($tanktracks is 4) and ($time is 154)) or (($tanktracks is 5) and ($time is 214)) or (($tanktracks is 6) and ($time is 274)) or (($tanktracks is 1) and ($time is 334))>>
-			<i>Night radio, audition 2, line 22</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 35)) or (($tanktracks is 3) and ($time is 95)) or (($tanktracks is 4) and ($time is 155)) or (($tanktracks is 5) and ($time is 215)) or (($tanktracks is 6) and ($time is 275)) or (($tanktracks is 1) and ($time is 335))>>
-			<i>Night radio, audition 2, line 23</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 36)) or (($tanktracks is 3) and ($time is 96)) or (($tanktracks is 4) and ($time is 156)) or (($tanktracks is 5) and ($time is 216)) or (($tanktracks is 6) and ($time is 276)) or (($tanktracks is 1) and ($time is 336))>>
-			<i>Night radio, audition 2, line 24</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 37)) or (($tanktracks is 3) and ($time is 97)) or (($tanktracks is 4) and ($time is 157)) or (($tanktracks is 5) and ($time is 217)) or (($tanktracks is 6) and ($time is 277)) or (($tanktracks is 1) and ($time is 337))>>
-			<i>Night radio, audition 2, line 25</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 38)) or (($tanktracks is 3) and ($time is 98)) or (($tanktracks is 4) and ($time is 158)) or (($tanktracks is 5) and ($time is 218)) or (($tanktracks is 6) and ($time is 278)) or (($tanktracks is 1) and ($time is 338))>>
-			<i>Night radio, audition 2, line 26</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 39)) or (($tanktracks is 3) and ($time is 99)) or (($tanktracks is 4) and ($time is 159)) or (($tanktracks is 5) and ($time is 219)) or (($tanktracks is 6) and ($time is 279)) or (($tanktracks is 1) and ($time is 339))>>
-			<i>Night radio, audition 2, line 27</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 40)) or (($tanktracks is 3) and ($time is 100)) or (($tanktracks is 4) and ($time is 160)) or (($tanktracks is 5) and ($time is 220)) or (($tanktracks is 6) and ($time is 280)) or (($tanktracks is 1) and ($time is 340))>>
-			<i>Night radio, audition 2, line 28</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 41)) or (($tanktracks is 3) and ($time is 101)) or (($tanktracks is 4) and ($time is 161)) or (($tanktracks is 5) and ($time is 221)) or (($tanktracks is 6) and ($time is 281)) or (($tanktracks is 1) and ($time is 341))>>
-			<i>Night radio, audition 2, line 29</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 42)) or (($tanktracks is 3) and ($time is 102)) or (($tanktracks is 4) and ($time is 162)) or (($tanktracks is 5) and ($time is 222)) or (($tanktracks is 6) and ($time is 282)) or (($tanktracks is 1) and ($time is 342))>>
-			<i>Night radio, audition 2, line 30</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 43)) or (($tanktracks is 3) and ($time is 103)) or (($tanktracks is 4) and ($time is 163)) or (($tanktracks is 5) and ($time is 223)) or (($tanktracks is 6) and ($time is 283)) or (($tanktracks is 1) and ($time is 343))>>
-			<i>Night radio, audition 2, line 31</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 44)) or (($tanktracks is 3) and ($time is 104)) or (($tanktracks is 4) and ($time is 164)) or (($tanktracks is 5) and ($time is 224)) or (($tanktracks is 6) and ($time is 284)) or (($tanktracks is 1) and ($time is 344))>>
-			<i>Night radio, audition 2, line 32</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 45)) or (($tanktracks is 3) and ($time is 105)) or (($tanktracks is 4) and ($time is 165)) or (($tanktracks is 5) and ($time is 225)) or (($tanktracks is 6) and ($time is 285)) or (($tanktracks is 1) and ($time is 345))>>
-			<i>Night radio, audition 2, line 33</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 46)) or (($tanktracks is 3) and ($time is 106)) or (($tanktracks is 4) and ($time is 166)) or (($tanktracks is 5) and ($time is 226)) or (($tanktracks is 6) and ($time is 286)) or (($tanktracks is 1) and ($time is 346))>>
-			<i>Night radio, audition 2, line 34</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 47)) or (($tanktracks is 3) and ($time is 107)) or (($tanktracks is 4) and ($time is 167)) or (($tanktracks is 5) and ($time is 227)) or (($tanktracks is 6) and ($time is 287)) or (($tanktracks is 1) and ($time is 347))>>
-			<i>Night radio, audition 2, line 35</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 48)) or (($tanktracks is 3) and ($time is 108)) or (($tanktracks is 4) and ($time is 168)) or (($tanktracks is 5) and ($time is 228)) or (($tanktracks is 6) and ($time is 288)) or (($tanktracks is 1) and ($time is 348))>>
-			<i>Night radio, audition 2, line 36</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 49)) or (($tanktracks is 3) and ($time is 109)) or (($tanktracks is 4) and ($time is 169)) or (($tanktracks is 5) and ($time is 229)) or (($tanktracks is 6) and ($time is 289)) or (($tanktracks is 1) and ($time is 349))>>
-			<i>Night radio, audition 2, line 37</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 50)) or (($tanktracks is 3) and ($time is 110)) or (($tanktracks is 4) and ($time is 170)) or (($tanktracks is 5) and ($time is 230)) or (($tanktracks is 6) and ($time is 290)) or (($tanktracks is 1) and ($time is 350))>>
-			<i>Night radio, audition 2, line 38</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 51)) or (($tanktracks is 3) and ($time is 111)) or (($tanktracks is 4) and ($time is 171)) or (($tanktracks is 5) and ($time is 231)) or (($tanktracks is 6) and ($time is 291)) or (($tanktracks is 1) and ($time is 351))>>
-			<i>Night radio, audition 2, line 39</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 52)) or (($tanktracks is 3) and ($time is 112)) or (($tanktracks is 4) and ($time is 172)) or (($tanktracks is 5) and ($time is 232)) or (($tanktracks is 6) and ($time is 292)) or (($tanktracks is 1) and ($time is 352))>>
-			<i>Night radio, audition 2, line 40</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 53)) or (($tanktracks is 3) and ($time is 113)) or (($tanktracks is 4) and ($time is 173)) or (($tanktracks is 5) and ($time is 233)) or (($tanktracks is 6) and ($time is 293)) or (($tanktracks is 1) and ($time is 353))>>
-			<i>Night radio, audition 2, line 41</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 54)) or (($tanktracks is 3) and ($time is 114)) or (($tanktracks is 4) and ($time is 174)) or (($tanktracks is 5) and ($time is 234)) or (($tanktracks is 6) and ($time is 294)) or (($tanktracks is 1) and ($time is 354))>>
-			<i>Night radio, audition 2, line 42</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 55)) or (($tanktracks is 3) and ($time is 115)) or (($tanktracks is 4) and ($time is 175)) or (($tanktracks is 5) and ($time is 235)) or (($tanktracks is 6) and ($time is 295)) or (($tanktracks is 1) and ($time is 355))>>
-			<i>Night radio, audition 2, line 43</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 56)) or (($tanktracks is 3) and ($time is 116)) or (($tanktracks is 4) and ($time is 176)) or (($tanktracks is 5) and ($time is 236)) or (($tanktracks is 6) and ($time is 296)) or (($tanktracks is 1) and ($time is 356))>>
-			<i>Night radio, audition 2, line 44</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 57)) or (($tanktracks is 3) and ($time is 117)) or (($tanktracks is 4) and ($time is 177)) or (($tanktracks is 5) and ($time is 237)) or (($tanktracks is 6) and ($time is 297)) or (($tanktracks is 1) and ($time is 357))>>
-			<i>Night radio, audition 2, line 45</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 58)) or (($tanktracks is 3) and ($time is 118)) or (($tanktracks is 4) and ($time is 178)) or (($tanktracks is 5) and ($time is 238)) or (($tanktracks is 6) and ($time is 298)) or (($tanktracks is 1) and ($time is 358))>>
-			<i>Night radio, audition 2, line 46</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 59)) or (($tanktracks is 3) and ($time is 119)) or (($tanktracks is 4) and ($time is 179)) or (($tanktracks is 5) and ($time is 239)) or (($tanktracks is 6) and ($time is 299)) or (($tanktracks is 1) and ($time is 359))>>
-			<i>Night radio, audition 2, line 47</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 13)) or (($tanktracks is 4) and ($time is 73)) or (($tanktracks is 5) and ($time is 133)) or (($tanktracks is 6) and ($time is 193)) or (($tanktracks is 1) and ($time is 253)) or (($tanktracks is 2) and ($time is 313))>>
-			<i>Night radio, audition 3, line 1</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 14)) or (($tanktracks is 4) and ($time is 74)) or (($tanktracks is 5) and ($time is 134)) or (($tanktracks is 6) and ($time is 194)) or (($tanktracks is 1) and ($time is 254)) or (($tanktracks is 2) and ($time is 314))>>
-			<i>Night radio, audition 3, line 2</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 15)) or (($tanktracks is 4) and ($time is 75)) or (($tanktracks is 5) and ($time is 135)) or (($tanktracks is 6) and ($time is 195)) or (($tanktracks is 1) and ($time is 255)) or (($tanktracks is 2) and ($time is 315))>>
-			<i>Night radio, audition 3, line 3</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 16)) or (($tanktracks is 4) and ($time is 76)) or (($tanktracks is 5) and ($time is 136)) or (($tanktracks is 6) and ($time is 196)) or (($tanktracks is 1) and ($time is 256)) or (($tanktracks is 2) and ($time is 316))>>
-			<i>Night radio, audition 3, line 4</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 17)) or (($tanktracks is 4) and ($time is 77)) or (($tanktracks is 5) and ($time is 137)) or (($tanktracks is 6) and ($time is 197)) or (($tanktracks is 1) and ($time is 257)) or (($tanktracks is 2) and ($time is 317))>>
-			<i>Night radio, audition 3, line 5</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 18)) or (($tanktracks is 4) and ($time is 78)) or (($tanktracks is 5) and ($time is 138)) or (($tanktracks is 6) and ($time is 198)) or (($tanktracks is 1) and ($time is 258)) or (($tanktracks is 2) and ($time is 318))>>
-			<i>Night radio, audition 3, line 6</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 19)) or (($tanktracks is 4) and ($time is 79)) or (($tanktracks is 5) and ($time is 139)) or (($tanktracks is 6) and ($time is 199)) or (($tanktracks is 1) and ($time is 259)) or (($tanktracks is 2) and ($time is 319))>>
-			<i>Night radio, audition 3, line 7</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 20)) or (($tanktracks is 4) and ($time is 80)) or (($tanktracks is 5) and ($time is 140)) or (($tanktracks is 6) and ($time is 200)) or (($tanktracks is 1) and ($time is 260)) or (($tanktracks is 2) and ($time is 320))>>
-			<i>Night radio, audition 3, line 8</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 21)) or (($tanktracks is 4) and ($time is 81)) or (($tanktracks is 5) and ($time is 141)) or (($tanktracks is 6) and ($time is 201)) or (($tanktracks is 1) and ($time is 261)) or (($tanktracks is 2) and ($time is 321))>>
-			<i>Night radio, audition 3, line 9</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 22)) or (($tanktracks is 4) and ($time is 82)) or (($tanktracks is 5) and ($time is 142)) or (($tanktracks is 6) and ($time is 202)) or (($tanktracks is 1) and ($time is 262)) or (($tanktracks is 2) and ($time is 322))>>
-			<i>Night radio, audition 3, line 10</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 23)) or (($tanktracks is 4) and ($time is 83)) or (($tanktracks is 5) and ($time is 143)) or (($tanktracks is 6) and ($time is 203)) or (($tanktracks is 1) and ($time is 263)) or (($tanktracks is 2) and ($time is 323))>>
-			<i>Night radio, audition 3, line 11</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 24)) or (($tanktracks is 4) and ($time is 84)) or (($tanktracks is 5) and ($time is 144)) or (($tanktracks is 6) and ($time is 204)) or (($tanktracks is 1) and ($time is 264)) or (($tanktracks is 2) and ($time is 324))>>
-			<i>Night radio, audition 3, line 12</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 25)) or (($tanktracks is 4) and ($time is 85)) or (($tanktracks is 5) and ($time is 145)) or (($tanktracks is 6) and ($time is 205)) or (($tanktracks is 1) and ($time is 265)) or (($tanktracks is 2) and ($time is 325))>>
-			<i>Night radio, audition 3, line 13</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 26)) or (($tanktracks is 4) and ($time is 86)) or (($tanktracks is 5) and ($time is 146)) or (($tanktracks is 6) and ($time is 206)) or (($tanktracks is 1) and ($time is 266)) or (($tanktracks is 2) and ($time is 326))>>
-			<i>Night radio, audition 3, line 14</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 27)) or (($tanktracks is 4) and ($time is 87)) or (($tanktracks is 5) and ($time is 147)) or (($tanktracks is 6) and ($time is 207)) or (($tanktracks is 1) and ($time is 267)) or (($tanktracks is 2) and ($time is 327))>>
-			<i>Night radio, audition 3, line 15</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 28)) or (($tanktracks is 4) and ($time is 88)) or (($tanktracks is 5) and ($time is 148)) or (($tanktracks is 6) and ($time is 208)) or (($tanktracks is 1) and ($time is 268)) or (($tanktracks is 2) and ($time is 328))>>
-			<i>Night radio, audition 3, line 16</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 29)) or (($tanktracks is 4) and ($time is 89)) or (($tanktracks is 5) and ($time is 149)) or (($tanktracks is 6) and ($time is 209)) or (($tanktracks is 1) and ($time is 269)) or (($tanktracks is 2) and ($time is 329))>>
-			<i>Night radio, audition 3, line 17</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 30)) or (($tanktracks is 4) and ($time is 90)) or (($tanktracks is 5) and ($time is 150)) or (($tanktracks is 6) and ($time is 210)) or (($tanktracks is 1) and ($time is 270)) or (($tanktracks is 2) and ($time is 330))>>
-			<i>Night radio, audition 3, line 18</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 31)) or (($tanktracks is 4) and ($time is 91)) or (($tanktracks is 5) and ($time is 151)) or (($tanktracks is 6) and ($time is 211)) or (($tanktracks is 1) and ($time is 271)) or (($tanktracks is 2) and ($time is 331))>>
-			<i>Night radio, audition 3, line 19</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 32)) or (($tanktracks is 4) and ($time is 92)) or (($tanktracks is 5) and ($time is 152)) or (($tanktracks is 6) and ($time is 212)) or (($tanktracks is 1) and ($time is 272)) or (($tanktracks is 2) and ($time is 332))>>
-			<i>Night radio, audition 3, line 20</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 33)) or (($tanktracks is 4) and ($time is 93)) or (($tanktracks is 5) and ($time is 153)) or (($tanktracks is 6) and ($time is 213)) or (($tanktracks is 1) and ($time is 273)) or (($tanktracks is 2) and ($time is 333))>>
-			<i>Night radio, audition 3, line 21</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 34)) or (($tanktracks is 4) and ($time is 94)) or (($tanktracks is 5) and ($time is 154)) or (($tanktracks is 6) and ($time is 214)) or (($tanktracks is 1) and ($time is 274)) or (($tanktracks is 2) and ($time is 334))>>
-			<i>Night radio, audition 3, line 22</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 35)) or (($tanktracks is 4) and ($time is 95)) or (($tanktracks is 5) and ($time is 155)) or (($tanktracks is 6) and ($time is 215)) or (($tanktracks is 1) and ($time is 275)) or (($tanktracks is 2) and ($time is 335))>>
-			<i>Night radio, audition 3, line 23</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 36)) or (($tanktracks is 4) and ($time is 96)) or (($tanktracks is 5) and ($time is 156)) or (($tanktracks is 6) and ($time is 216)) or (($tanktracks is 1) and ($time is 276)) or (($tanktracks is 2) and ($time is 336))>>
-			<i>Night radio, audition 3, line 24</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 37)) or (($tanktracks is 4) and ($time is 97)) or (($tanktracks is 5) and ($time is 157)) or (($tanktracks is 6) and ($time is 217)) or (($tanktracks is 1) and ($time is 277)) or (($tanktracks is 2) and ($time is 337))>>
-			<i>Night radio, audition 3, line 25</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 38)) or (($tanktracks is 4) and ($time is 98)) or (($tanktracks is 5) and ($time is 158)) or (($tanktracks is 6) and ($time is 218)) or (($tanktracks is 1) and ($time is 278)) or (($tanktracks is 2) and ($time is 338))>>
-			<i>Night radio, audition 3, line 26</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 39)) or (($tanktracks is 4) and ($time is 99)) or (($tanktracks is 5) and ($time is 159)) or (($tanktracks is 6) and ($time is 219)) or (($tanktracks is 1) and ($time is 279)) or (($tanktracks is 2) and ($time is 339))>>
-			<i>Night radio, audition 3, line 27</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 40)) or (($tanktracks is 4) and ($time is 100)) or (($tanktracks is 5) and ($time is 160)) or (($tanktracks is 6) and ($time is 220)) or (($tanktracks is 1) and ($time is 280)) or (($tanktracks is 2) and ($time is 340))>>
-			<i>Night radio, audition 3, line 28</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 41)) or (($tanktracks is 4) and ($time is 101)) or (($tanktracks is 5) and ($time is 161)) or (($tanktracks is 6) and ($time is 221)) or (($tanktracks is 1) and ($time is 281)) or (($tanktracks is 2) and ($time is 341))>>
-			<i>Night radio, audition 3, line 29</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 42)) or (($tanktracks is 4) and ($time is 102)) or (($tanktracks is 5) and ($time is 162)) or (($tanktracks is 6) and ($time is 222)) or (($tanktracks is 1) and ($time is 282)) or (($tanktracks is 2) and ($time is 342))>>
-			<i>Night radio, audition 3, line 30</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 43)) or (($tanktracks is 4) and ($time is 103)) or (($tanktracks is 5) and ($time is 163)) or (($tanktracks is 6) and ($time is 223)) or (($tanktracks is 1) and ($time is 283)) or (($tanktracks is 2) and ($time is 343))>>
-			<i>Night radio, audition 3, line 31</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 44)) or (($tanktracks is 4) and ($time is 104)) or (($tanktracks is 5) and ($time is 164)) or (($tanktracks is 6) and ($time is 224)) or (($tanktracks is 1) and ($time is 284)) or (($tanktracks is 2) and ($time is 344))>>
-			<i>Night radio, audition 3, line 32</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 45)) or (($tanktracks is 4) and ($time is 105)) or (($tanktracks is 5) and ($time is 165)) or (($tanktracks is 6) and ($time is 225)) or (($tanktracks is 1) and ($time is 285)) or (($tanktracks is 2) and ($time is 345))>>
-			<i>Night radio, audition 3, line 33</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 46)) or (($tanktracks is 4) and ($time is 106)) or (($tanktracks is 5) and ($time is 166)) or (($tanktracks is 6) and ($time is 226)) or (($tanktracks is 1) and ($time is 286)) or (($tanktracks is 2) and ($time is 346))>>
-			<i>Night radio, audition 3, line 34</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 47)) or (($tanktracks is 4) and ($time is 107)) or (($tanktracks is 5) and ($time is 167)) or (($tanktracks is 6) and ($time is 227)) or (($tanktracks is 1) and ($time is 287)) or (($tanktracks is 2) and ($time is 347))>>
-			<i>Night radio, audition 3, line 35</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 48)) or (($tanktracks is 4) and ($time is 108)) or (($tanktracks is 5) and ($time is 168)) or (($tanktracks is 6) and ($time is 228)) or (($tanktracks is 1) and ($time is 288)) or (($tanktracks is 2) and ($time is 348))>>
-			<i>Night radio, audition 3, line 36</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 49)) or (($tanktracks is 4) and ($time is 109)) or (($tanktracks is 5) and ($time is 169)) or (($tanktracks is 6) and ($time is 229)) or (($tanktracks is 1) and ($time is 289)) or (($tanktracks is 2) and ($time is 349))>>
-			<i>Night radio, audition 3, line 37</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 50)) or (($tanktracks is 4) and ($time is 110)) or (($tanktracks is 5) and ($time is 170)) or (($tanktracks is 6) and ($time is 230)) or (($tanktracks is 1) and ($time is 290)) or (($tanktracks is 2) and ($time is 350))>>
-			<i>Night radio, audition 3, line 38</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 51)) or (($tanktracks is 4) and ($time is 111)) or (($tanktracks is 5) and ($time is 171)) or (($tanktracks is 6) and ($time is 231)) or (($tanktracks is 1) and ($time is 291)) or (($tanktracks is 2) and ($time is 351))>>
-			<i>Night radio, audition 3, line 39</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 52)) or (($tanktracks is 4) and ($time is 112)) or (($tanktracks is 5) and ($time is 172)) or (($tanktracks is 6) and ($time is 232)) or (($tanktracks is 1) and ($time is 292)) or (($tanktracks is 2) and ($time is 352))>>
-			<i>Night radio, audition 3, line 40</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 53)) or (($tanktracks is 4) and ($time is 113)) or (($tanktracks is 5) and ($time is 173)) or (($tanktracks is 6) and ($time is 233)) or (($tanktracks is 1) and ($time is 293)) or (($tanktracks is 2) and ($time is 353))>>
-			<i>Night radio, audition 3, line 41</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 54)) or (($tanktracks is 4) and ($time is 114)) or (($tanktracks is 5) and ($time is 174)) or (($tanktracks is 6) and ($time is 234)) or (($tanktracks is 1) and ($time is 294)) or (($tanktracks is 2) and ($time is 354))>>
-			<i>Night radio, audition 3, line 42</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 55)) or (($tanktracks is 4) and ($time is 115)) or (($tanktracks is 5) and ($time is 175)) or (($tanktracks is 6) and ($time is 235)) or (($tanktracks is 1) and ($time is 295)) or (($tanktracks is 2) and ($time is 355))>>
-			<i>Night radio, audition 3, line 43</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 56)) or (($tanktracks is 4) and ($time is 116)) or (($tanktracks is 5) and ($time is 176)) or (($tanktracks is 6) and ($time is 236)) or (($tanktracks is 1) and ($time is 296)) or (($tanktracks is 2) and ($time is 356))>>
-			<i>Night radio, audition 3, line 44</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 57)) or (($tanktracks is 4) and ($time is 117)) or (($tanktracks is 5) and ($time is 177)) or (($tanktracks is 6) and ($time is 237)) or (($tanktracks is 1) and ($time is 297)) or (($tanktracks is 2) and ($time is 357))>>
-			<i>Night radio, audition 3, line 45</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 58)) or (($tanktracks is 4) and ($time is 118)) or (($tanktracks is 5) and ($time is 178)) or (($tanktracks is 6) and ($time is 238)) or (($tanktracks is 1) and ($time is 298)) or (($tanktracks is 2) and ($time is 358))>>
-			<i>Night radio, audition 3, line 46</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 59)) or (($tanktracks is 4) and ($time is 119)) or (($tanktracks is 5) and ($time is 179)) or (($tanktracks is 6) and ($time is 239)) or (($tanktracks is 1) and ($time is 299)) or (($tanktracks is 2) and ($time is 359))>>
-			<i>Night radio, audition 3, line 47</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 13)) or (($tanktracks is 5) and ($time is 73)) or (($tanktracks is 6) and ($time is 133)) or (($tanktracks is 1) and ($time is 193)) or (($tanktracks is 2) and ($time is 253)) or (($tanktracks is 3) and ($time is 313))>>
-			<i>Night radio, audition 4, line 1</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 14)) or (($tanktracks is 5) and ($time is 74)) or (($tanktracks is 6) and ($time is 134)) or (($tanktracks is 1) and ($time is 194)) or (($tanktracks is 2) and ($time is 254)) or (($tanktracks is 3) and ($time is 314))>>
-			<i>Night radio, audition 4, line 2</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 15)) or (($tanktracks is 5) and ($time is 75)) or (($tanktracks is 6) and ($time is 135)) or (($tanktracks is 1) and ($time is 195)) or (($tanktracks is 2) and ($time is 255)) or (($tanktracks is 3) and ($time is 315))>>
-			<i>Night radio, audition 4, line 3</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 16)) or (($tanktracks is 5) and ($time is 76)) or (($tanktracks is 6) and ($time is 136)) or (($tanktracks is 1) and ($time is 196)) or (($tanktracks is 2) and ($time is 256)) or (($tanktracks is 3) and ($time is 316))>>
-			<i>Night radio, audition 4, line 4</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 17)) or (($tanktracks is 5) and ($time is 77)) or (($tanktracks is 6) and ($time is 137)) or (($tanktracks is 1) and ($time is 197)) or (($tanktracks is 2) and ($time is 257)) or (($tanktracks is 3) and ($time is 317))>>
-			<i>Night radio, audition 4, line 5</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 18)) or (($tanktracks is 5) and ($time is 78)) or (($tanktracks is 6) and ($time is 138)) or (($tanktracks is 1) and ($time is 198)) or (($tanktracks is 2) and ($time is 258)) or (($tanktracks is 3) and ($time is 318))>>
-			<i>Night radio, audition 4, line 6</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 19)) or (($tanktracks is 5) and ($time is 79)) or (($tanktracks is 6) and ($time is 139)) or (($tanktracks is 1) and ($time is 199)) or (($tanktracks is 2) and ($time is 259)) or (($tanktracks is 3) and ($time is 319))>>
-			<i>Night radio, audition 4, line 7</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 20)) or (($tanktracks is 5) and ($time is 80)) or (($tanktracks is 6) and ($time is 140)) or (($tanktracks is 1) and ($time is 200)) or (($tanktracks is 2) and ($time is 260)) or (($tanktracks is 3) and ($time is 320))>>
-			<i>Night radio, audition 4, line 8</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 21)) or (($tanktracks is 5) and ($time is 81)) or (($tanktracks is 6) and ($time is 141)) or (($tanktracks is 1) and ($time is 201)) or (($tanktracks is 2) and ($time is 261)) or (($tanktracks is 3) and ($time is 321))>>
-			<i>Night radio, audition 4, line 9</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 22)) or (($tanktracks is 5) and ($time is 82)) or (($tanktracks is 6) and ($time is 142)) or (($tanktracks is 1) and ($time is 202)) or (($tanktracks is 2) and ($time is 262)) or (($tanktracks is 3) and ($time is 322))>>
-			<i>Night radio, audition 4, line 10</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 23)) or (($tanktracks is 5) and ($time is 83)) or (($tanktracks is 6) and ($time is 143)) or (($tanktracks is 1) and ($time is 203)) or (($tanktracks is 2) and ($time is 263)) or (($tanktracks is 3) and ($time is 323))>>
-			<i>Night radio, audition 4, line 11</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 24)) or (($tanktracks is 5) and ($time is 84)) or (($tanktracks is 6) and ($time is 144)) or (($tanktracks is 1) and ($time is 204)) or (($tanktracks is 2) and ($time is 264)) or (($tanktracks is 3) and ($time is 324))>>
-			<i>Night radio, audition 4, line 12</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 25)) or (($tanktracks is 5) and ($time is 85)) or (($tanktracks is 6) and ($time is 145)) or (($tanktracks is 1) and ($time is 205)) or (($tanktracks is 2) and ($time is 265)) or (($tanktracks is 3) and ($time is 325))>>
-			<i>Night radio, audition 4, line 13</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 26)) or (($tanktracks is 5) and ($time is 86)) or (($tanktracks is 6) and ($time is 146)) or (($tanktracks is 1) and ($time is 206)) or (($tanktracks is 2) and ($time is 266)) or (($tanktracks is 3) and ($time is 326))>>
-			<i>Night radio, audition 4, line 14</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 27)) or (($tanktracks is 5) and ($time is 87)) or (($tanktracks is 6) and ($time is 147)) or (($tanktracks is 1) and ($time is 207)) or (($tanktracks is 2) and ($time is 267)) or (($tanktracks is 3) and ($time is 327))>>
-			<i>Night radio, audition 4, line 15</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 28)) or (($tanktracks is 5) and ($time is 88)) or (($tanktracks is 6) and ($time is 148)) or (($tanktracks is 1) and ($time is 208)) or (($tanktracks is 2) and ($time is 268)) or (($tanktracks is 3) and ($time is 328))>>
-			<i>Night radio, audition 4, line 16</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 29)) or (($tanktracks is 5) and ($time is 89)) or (($tanktracks is 6) and ($time is 149)) or (($tanktracks is 1) and ($time is 209)) or (($tanktracks is 2) and ($time is 269)) or (($tanktracks is 3) and ($time is 329))>>
-			<i>Night radio, audition 4, line 17</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 30)) or (($tanktracks is 5) and ($time is 90)) or (($tanktracks is 6) and ($time is 150)) or (($tanktracks is 1) and ($time is 210)) or (($tanktracks is 2) and ($time is 270)) or (($tanktracks is 3) and ($time is 330))>>
-			<i>Night radio, audition 4, line 18</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 31)) or (($tanktracks is 5) and ($time is 91)) or (($tanktracks is 6) and ($time is 151)) or (($tanktracks is 1) and ($time is 211)) or (($tanktracks is 2) and ($time is 271)) or (($tanktracks is 3) and ($time is 331))>>
-			<i>Night radio, audition 4, line 19</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 32)) or (($tanktracks is 5) and ($time is 92)) or (($tanktracks is 6) and ($time is 152)) or (($tanktracks is 1) and ($time is 212)) or (($tanktracks is 2) and ($time is 272)) or (($tanktracks is 3) and ($time is 332))>>
-			<i>Night radio, audition 4, line 20</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 33)) or (($tanktracks is 5) and ($time is 93)) or (($tanktracks is 6) and ($time is 153)) or (($tanktracks is 1) and ($time is 213)) or (($tanktracks is 2) and ($time is 273)) or (($tanktracks is 3) and ($time is 333))>>
-			<i>Night radio, audition 4, line 21</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 34)) or (($tanktracks is 5) and ($time is 94)) or (($tanktracks is 6) and ($time is 154)) or (($tanktracks is 1) and ($time is 214)) or (($tanktracks is 2) and ($time is 274)) or (($tanktracks is 3) and ($time is 334))>>
-			<i>Night radio, audition 4, line 22</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 35)) or (($tanktracks is 5) and ($time is 95)) or (($tanktracks is 6) and ($time is 155)) or (($tanktracks is 1) and ($time is 215)) or (($tanktracks is 2) and ($time is 275)) or (($tanktracks is 3) and ($time is 335))>>
-			<i>Night radio, audition 4, line 23</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 36)) or (($tanktracks is 5) and ($time is 96)) or (($tanktracks is 6) and ($time is 156)) or (($tanktracks is 1) and ($time is 216)) or (($tanktracks is 2) and ($time is 276)) or (($tanktracks is 3) and ($time is 336))>>
-			<i>Night radio, audition 4, line 24</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 37)) or (($tanktracks is 5) and ($time is 97)) or (($tanktracks is 6) and ($time is 157)) or (($tanktracks is 1) and ($time is 217)) or (($tanktracks is 2) and ($time is 277)) or (($tanktracks is 3) and ($time is 337))>>
-			<i>Night radio, audition 4, line 25</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 38)) or (($tanktracks is 5) and ($time is 98)) or (($tanktracks is 6) and ($time is 158)) or (($tanktracks is 1) and ($time is 218)) or (($tanktracks is 2) and ($time is 278)) or (($tanktracks is 3) and ($time is 338))>>
-			<i>Night radio, audition 4, line 26</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 39)) or (($tanktracks is 5) and ($time is 99)) or (($tanktracks is 6) and ($time is 159)) or (($tanktracks is 1) and ($time is 219)) or (($tanktracks is 2) and ($time is 279)) or (($tanktracks is 3) and ($time is 339))>>
-			<i>Night radio, audition 4, line 27</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 40)) or (($tanktracks is 5) and ($time is 100)) or (($tanktracks is 6) and ($time is 160)) or (($tanktracks is 1) and ($time is 220)) or (($tanktracks is 2) and ($time is 280)) or (($tanktracks is 3) and ($time is 340))>>
-			<i>Night radio, audition 4, line 28</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 41)) or (($tanktracks is 5) and ($time is 101)) or (($tanktracks is 6) and ($time is 161)) or (($tanktracks is 1) and ($time is 221)) or (($tanktracks is 2) and ($time is 281)) or (($tanktracks is 3) and ($time is 341))>>
-			<i>Night radio, audition 4, line 29</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 42)) or (($tanktracks is 5) and ($time is 102)) or (($tanktracks is 6) and ($time is 162)) or (($tanktracks is 1) and ($time is 222)) or (($tanktracks is 2) and ($time is 282)) or (($tanktracks is 3) and ($time is 342))>>
-			<i>Night radio, audition 4, line 30</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 43)) or (($tanktracks is 5) and ($time is 103)) or (($tanktracks is 6) and ($time is 163)) or (($tanktracks is 1) and ($time is 223)) or (($tanktracks is 2) and ($time is 283)) or (($tanktracks is 3) and ($time is 343))>>
-			<i>Night radio, audition 4, line 31</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 44)) or (($tanktracks is 5) and ($time is 104)) or (($tanktracks is 6) and ($time is 164)) or (($tanktracks is 1) and ($time is 224)) or (($tanktracks is 2) and ($time is 284)) or (($tanktracks is 3) and ($time is 344))>>
-			<i>Night radio, audition 4, line 32</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 45)) or (($tanktracks is 5) and ($time is 105)) or (($tanktracks is 6) and ($time is 165)) or (($tanktracks is 1) and ($time is 225)) or (($tanktracks is 2) and ($time is 285)) or (($tanktracks is 3) and ($time is 345))>>
-			<i>Night radio, audition 4, line 33</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 46)) or (($tanktracks is 5) and ($time is 106)) or (($tanktracks is 6) and ($time is 166)) or (($tanktracks is 1) and ($time is 226)) or (($tanktracks is 2) and ($time is 286)) or (($tanktracks is 3) and ($time is 346))>>
-			<i>Night radio, audition 4, line 34</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 47)) or (($tanktracks is 5) and ($time is 107)) or (($tanktracks is 6) and ($time is 167)) or (($tanktracks is 1) and ($time is 227)) or (($tanktracks is 2) and ($time is 287)) or (($tanktracks is 3) and ($time is 347))>>
-			<i>Night radio, audition 4, line 35</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 48)) or (($tanktracks is 5) and ($time is 108)) or (($tanktracks is 6) and ($time is 168)) or (($tanktracks is 1) and ($time is 228)) or (($tanktracks is 2) and ($time is 288)) or (($tanktracks is 3) and ($time is 348))>>
-			<i>Night radio, audition 4, line 36</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 49)) or (($tanktracks is 5) and ($time is 109)) or (($tanktracks is 6) and ($time is 169)) or (($tanktracks is 1) and ($time is 229)) or (($tanktracks is 2) and ($time is 289)) or (($tanktracks is 3) and ($time is 349))>>
-			<i>Night radio, audition 4, line 37</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 50)) or (($tanktracks is 5) and ($time is 110)) or (($tanktracks is 6) and ($time is 170)) or (($tanktracks is 1) and ($time is 230)) or (($tanktracks is 2) and ($time is 290)) or (($tanktracks is 3) and ($time is 350))>>
-			<i>Night radio, audition 4, line 38</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 51)) or (($tanktracks is 5) and ($time is 111)) or (($tanktracks is 6) and ($time is 171)) or (($tanktracks is 1) and ($time is 231)) or (($tanktracks is 2) and ($time is 291)) or (($tanktracks is 3) and ($time is 351))>>
-			<i>Night radio, audition 4, line 39</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 52)) or (($tanktracks is 5) and ($time is 112)) or (($tanktracks is 6) and ($time is 172)) or (($tanktracks is 1) and ($time is 232)) or (($tanktracks is 2) and ($time is 292)) or (($tanktracks is 3) and ($time is 352))>>
-			<i>Night radio, audition 4, line 40</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 53)) or (($tanktracks is 5) and ($time is 113)) or (($tanktracks is 6) and ($time is 173)) or (($tanktracks is 1) and ($time is 233)) or (($tanktracks is 2) and ($time is 293)) or (($tanktracks is 3) and ($time is 353))>>
-			<i>Night radio, audition 4, line 41</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 54)) or (($tanktracks is 5) and ($time is 114)) or (($tanktracks is 6) and ($time is 174)) or (($tanktracks is 1) and ($time is 234)) or (($tanktracks is 2) and ($time is 294)) or (($tanktracks is 3) and ($time is 354))>>
-			<i>Night radio, audition 4, line 42</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 55)) or (($tanktracks is 5) and ($time is 115)) or (($tanktracks is 6) and ($time is 175)) or (($tanktracks is 1) and ($time is 235)) or (($tanktracks is 2) and ($time is 295)) or (($tanktracks is 3) and ($time is 355))>>
-			<i>Night radio, audition 4, line 43</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 56)) or (($tanktracks is 5) and ($time is 116)) or (($tanktracks is 6) and ($time is 176)) or (($tanktracks is 1) and ($time is 236)) or (($tanktracks is 2) and ($time is 296)) or (($tanktracks is 3) and ($time is 356))>>
-			<i>Night radio, audition 4, line 44</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 57)) or (($tanktracks is 5) and ($time is 117)) or (($tanktracks is 6) and ($time is 177)) or (($tanktracks is 1) and ($time is 237)) or (($tanktracks is 2) and ($time is 297)) or (($tanktracks is 3) and ($time is 357))>>
-			<i>Night radio, audition 4, line 45</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 58)) or (($tanktracks is 5) and ($time is 118)) or (($tanktracks is 6) and ($time is 178)) or (($tanktracks is 1) and ($time is 238)) or (($tanktracks is 2) and ($time is 298)) or (($tanktracks is 3) and ($time is 358))>>
-			<i>Night radio, audition 4, line 46</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 59)) or (($tanktracks is 5) and ($time is 119)) or (($tanktracks is 6) and ($time is 179)) or (($tanktracks is 1) and ($time is 239)) or (($tanktracks is 2) and ($time is 299)) or (($tanktracks is 3) and ($time is 359))>>
-			<i>Night radio, audition 4, line 47</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 13)) or (($tanktracks is 6) and ($time is 73)) or (($tanktracks is 1) and ($time is 133)) or (($tanktracks is 2) and ($time is 193)) or (($tanktracks is 3) and ($time is 253)) or (($tanktracks is 4) and ($time is 313))>>
-			<i>Night radio, audition 5, line 1</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 14)) or (($tanktracks is 6) and ($time is 74)) or (($tanktracks is 1) and ($time is 134)) or (($tanktracks is 2) and ($time is 194)) or (($tanktracks is 3) and ($time is 254)) or (($tanktracks is 4) and ($time is 314))>>
-			<i>Night radio, audition 5, line 2</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 15)) or (($tanktracks is 6) and ($time is 75)) or (($tanktracks is 1) and ($time is 135)) or (($tanktracks is 2) and ($time is 195)) or (($tanktracks is 3) and ($time is 255)) or (($tanktracks is 4) and ($time is 315))>>
-			<i>Night radio, audition 5, line 3</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 16)) or (($tanktracks is 6) and ($time is 76)) or (($tanktracks is 1) and ($time is 136)) or (($tanktracks is 2) and ($time is 196)) or (($tanktracks is 3) and ($time is 256)) or (($tanktracks is 4) and ($time is 316))>>
-			<i>Night radio, audition 5, line 4</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 17)) or (($tanktracks is 6) and ($time is 77)) or (($tanktracks is 1) and ($time is 137)) or (($tanktracks is 2) and ($time is 197)) or (($tanktracks is 3) and ($time is 257)) or (($tanktracks is 4) and ($time is 317))>>
-			<i>Night radio, audition 5, line 5</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 18)) or (($tanktracks is 6) and ($time is 78)) or (($tanktracks is 1) and ($time is 138)) or (($tanktracks is 2) and ($time is 198)) or (($tanktracks is 3) and ($time is 258)) or (($tanktracks is 4) and ($time is 318))>>
-			<i>Night radio, audition 5, line 6</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 19)) or (($tanktracks is 6) and ($time is 79)) or (($tanktracks is 1) and ($time is 139)) or (($tanktracks is 2) and ($time is 199)) or (($tanktracks is 3) and ($time is 259)) or (($tanktracks is 4) and ($time is 319))>>
-			<i>Night radio, audition 5, line 7</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 20)) or (($tanktracks is 6) and ($time is 80)) or (($tanktracks is 1) and ($time is 140)) or (($tanktracks is 2) and ($time is 200)) or (($tanktracks is 3) and ($time is 260)) or (($tanktracks is 4) and ($time is 320))>>
-			<i>Night radio, audition 5, line 8</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 21)) or (($tanktracks is 6) and ($time is 81)) or (($tanktracks is 1) and ($time is 141)) or (($tanktracks is 2) and ($time is 201)) or (($tanktracks is 3) and ($time is 261)) or (($tanktracks is 4) and ($time is 321))>>
-			<i>Night radio, audition 5, line 9</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 22)) or (($tanktracks is 6) and ($time is 82)) or (($tanktracks is 1) and ($time is 142)) or (($tanktracks is 2) and ($time is 202)) or (($tanktracks is 3) and ($time is 262)) or (($tanktracks is 4) and ($time is 322))>>
-			<i>Night radio, audition 5, line 10</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 23)) or (($tanktracks is 6) and ($time is 83)) or (($tanktracks is 1) and ($time is 143)) or (($tanktracks is 2) and ($time is 203)) or (($tanktracks is 3) and ($time is 263)) or (($tanktracks is 4) and ($time is 323))>>
-			<i>Night radio, audition 5, line 11</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 24)) or (($tanktracks is 6) and ($time is 84)) or (($tanktracks is 1) and ($time is 144)) or (($tanktracks is 2) and ($time is 204)) or (($tanktracks is 3) and ($time is 264)) or (($tanktracks is 4) and ($time is 324))>>
-			<i>Night radio, audition 5, line 12</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 25)) or (($tanktracks is 6) and ($time is 85)) or (($tanktracks is 1) and ($time is 145)) or (($tanktracks is 2) and ($time is 205)) or (($tanktracks is 3) and ($time is 265)) or (($tanktracks is 4) and ($time is 325))>>
-			<i>Night radio, audition 5, line 13</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 26)) or (($tanktracks is 6) and ($time is 86)) or (($tanktracks is 1) and ($time is 146)) or (($tanktracks is 2) and ($time is 206)) or (($tanktracks is 3) and ($time is 266)) or (($tanktracks is 4) and ($time is 326))>>
-			<i>Night radio, audition 5, line 14</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 27)) or (($tanktracks is 6) and ($time is 87)) or (($tanktracks is 1) and ($time is 147)) or (($tanktracks is 2) and ($time is 207)) or (($tanktracks is 3) and ($time is 267)) or (($tanktracks is 4) and ($time is 327))>>
-			<i>Night radio, audition 5, line 15</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 28)) or (($tanktracks is 6) and ($time is 88)) or (($tanktracks is 1) and ($time is 148)) or (($tanktracks is 2) and ($time is 208)) or (($tanktracks is 3) and ($time is 268)) or (($tanktracks is 4) and ($time is 328))>>
-			<i>Night radio, audition 5, line 16</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 29)) or (($tanktracks is 6) and ($time is 89)) or (($tanktracks is 1) and ($time is 149)) or (($tanktracks is 2) and ($time is 209)) or (($tanktracks is 3) and ($time is 269)) or (($tanktracks is 4) and ($time is 329))>>
-			<i>Night radio, audition 5, line 17</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 30)) or (($tanktracks is 6) and ($time is 90)) or (($tanktracks is 1) and ($time is 150)) or (($tanktracks is 2) and ($time is 210)) or (($tanktracks is 3) and ($time is 270)) or (($tanktracks is 4) and ($time is 330))>>
-			<i>Night radio, audition 5, line 18</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 31)) or (($tanktracks is 6) and ($time is 91)) or (($tanktracks is 1) and ($time is 151)) or (($tanktracks is 2) and ($time is 211)) or (($tanktracks is 3) and ($time is 271)) or (($tanktracks is 4) and ($time is 331))>>
-			<i>Night radio, audition 5, line 19</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 32)) or (($tanktracks is 6) and ($time is 92)) or (($tanktracks is 1) and ($time is 152)) or (($tanktracks is 2) and ($time is 212)) or (($tanktracks is 3) and ($time is 272)) or (($tanktracks is 4) and ($time is 332))>>
-			<i>Night radio, audition 5, line 20</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 33)) or (($tanktracks is 6) and ($time is 93)) or (($tanktracks is 1) and ($time is 153)) or (($tanktracks is 2) and ($time is 213)) or (($tanktracks is 3) and ($time is 273)) or (($tanktracks is 4) and ($time is 333))>>
-			<i>Night radio, audition 5, line 21</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 34)) or (($tanktracks is 6) and ($time is 94)) or (($tanktracks is 1) and ($time is 154)) or (($tanktracks is 2) and ($time is 214)) or (($tanktracks is 3) and ($time is 274)) or (($tanktracks is 4) and ($time is 334))>>
-			<i>Night radio, audition 5, line 22</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 35)) or (($tanktracks is 6) and ($time is 95)) or (($tanktracks is 1) and ($time is 155)) or (($tanktracks is 2) and ($time is 215)) or (($tanktracks is 3) and ($time is 275)) or (($tanktracks is 4) and ($time is 335))>>
-			<i>Night radio, audition 5, line 23</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 36)) or (($tanktracks is 6) and ($time is 96)) or (($tanktracks is 1) and ($time is 156)) or (($tanktracks is 2) and ($time is 216)) or (($tanktracks is 3) and ($time is 276)) or (($tanktracks is 4) and ($time is 336))>>
-			<i>Night radio, audition 5, line 24</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 37)) or (($tanktracks is 6) and ($time is 97)) or (($tanktracks is 1) and ($time is 157)) or (($tanktracks is 2) and ($time is 217)) or (($tanktracks is 3) and ($time is 277)) or (($tanktracks is 4) and ($time is 337))>>
-			<i>Night radio, audition 5, line 25</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 38)) or (($tanktracks is 6) and ($time is 98)) or (($tanktracks is 1) and ($time is 158)) or (($tanktracks is 2) and ($time is 218)) or (($tanktracks is 3) and ($time is 278)) or (($tanktracks is 4) and ($time is 338))>>
-			<i>Night radio, audition 5, line 26</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 39)) or (($tanktracks is 6) and ($time is 99)) or (($tanktracks is 1) and ($time is 159)) or (($tanktracks is 2) and ($time is 219)) or (($tanktracks is 3) and ($time is 279)) or (($tanktracks is 4) and ($time is 339))>>
-			<i>Night radio, audition 5, line 27</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 40)) or (($tanktracks is 6) and ($time is 100)) or (($tanktracks is 1) and ($time is 160)) or (($tanktracks is 2) and ($time is 220)) or (($tanktracks is 3) and ($time is 280)) or (($tanktracks is 4) and ($time is 340))>>
-			<i>Night radio, audition 5, line 28</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 41)) or (($tanktracks is 6) and ($time is 101)) or (($tanktracks is 1) and ($time is 161)) or (($tanktracks is 2) and ($time is 221)) or (($tanktracks is 3) and ($time is 281)) or (($tanktracks is 4) and ($time is 341))>>
-			<i>Night radio, audition 5, line 29</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 42)) or (($tanktracks is 6) and ($time is 102)) or (($tanktracks is 1) and ($time is 162)) or (($tanktracks is 2) and ($time is 222)) or (($tanktracks is 3) and ($time is 282)) or (($tanktracks is 4) and ($time is 342))>>
-			<i>Night radio, audition 5, line 30</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 43)) or (($tanktracks is 6) and ($time is 103)) or (($tanktracks is 1) and ($time is 163)) or (($tanktracks is 2) and ($time is 223)) or (($tanktracks is 3) and ($time is 283)) or (($tanktracks is 4) and ($time is 343))>>
-			<i>Night radio, audition 5, line 31</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 44)) or (($tanktracks is 6) and ($time is 104)) or (($tanktracks is 1) and ($time is 164)) or (($tanktracks is 2) and ($time is 224)) or (($tanktracks is 3) and ($time is 284)) or (($tanktracks is 4) and ($time is 344))>>
-			<i>Night radio, audition 5, line 32</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 45)) or (($tanktracks is 6) and ($time is 105)) or (($tanktracks is 1) and ($time is 165)) or (($tanktracks is 2) and ($time is 225)) or (($tanktracks is 3) and ($time is 285)) or (($tanktracks is 4) and ($time is 345))>>
-			<i>Night radio, audition 5, line 33</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 46)) or (($tanktracks is 6) and ($time is 106)) or (($tanktracks is 1) and ($time is 166)) or (($tanktracks is 2) and ($time is 226)) or (($tanktracks is 3) and ($time is 286)) or (($tanktracks is 4) and ($time is 346))>>
-			<i>Night radio, audition 5, line 34</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 47)) or (($tanktracks is 6) and ($time is 107)) or (($tanktracks is 1) and ($time is 167)) or (($tanktracks is 2) and ($time is 227)) or (($tanktracks is 3) and ($time is 287)) or (($tanktracks is 4) and ($time is 347))>>
-			<i>Night radio, audition 5, line 35</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 48)) or (($tanktracks is 6) and ($time is 108)) or (($tanktracks is 1) and ($time is 168)) or (($tanktracks is 2) and ($time is 228)) or (($tanktracks is 3) and ($time is 288)) or (($tanktracks is 4) and ($time is 348))>>
-			<i>Night radio, audition 5, line 36</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 49)) or (($tanktracks is 6) and ($time is 109)) or (($tanktracks is 1) and ($time is 169)) or (($tanktracks is 2) and ($time is 229)) or (($tanktracks is 3) and ($time is 289)) or (($tanktracks is 4) and ($time is 349))>>
-			<i>Night radio, audition 5, line 37</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 50)) or (($tanktracks is 6) and ($time is 110)) or (($tanktracks is 1) and ($time is 170)) or (($tanktracks is 2) and ($time is 230)) or (($tanktracks is 3) and ($time is 290)) or (($tanktracks is 4) and ($time is 350))>>
-			<i>Night radio, audition 5, line 38</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 51)) or (($tanktracks is 6) and ($time is 111)) or (($tanktracks is 1) and ($time is 171)) or (($tanktracks is 2) and ($time is 231)) or (($tanktracks is 3) and ($time is 291)) or (($tanktracks is 4) and ($time is 351))>>
-			<i>Night radio, audition 5, line 39</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 52)) or (($tanktracks is 6) and ($time is 112)) or (($tanktracks is 1) and ($time is 172)) or (($tanktracks is 2) and ($time is 232)) or (($tanktracks is 3) and ($time is 292)) or (($tanktracks is 4) and ($time is 352))>>
-			<i>Night radio, audition 5, line 40</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 53)) or (($tanktracks is 6) and ($time is 113)) or (($tanktracks is 1) and ($time is 173)) or (($tanktracks is 2) and ($time is 233)) or (($tanktracks is 3) and ($time is 293)) or (($tanktracks is 4) and ($time is 353))>>
-			<i>Night radio, audition 5, line 41</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 54)) or (($tanktracks is 6) and ($time is 114)) or (($tanktracks is 1) and ($time is 174)) or (($tanktracks is 2) and ($time is 234)) or (($tanktracks is 3) and ($time is 294)) or (($tanktracks is 4) and ($time is 354))>>
-			<i>Night radio, audition 5, line 42</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 55)) or (($tanktracks is 6) and ($time is 115)) or (($tanktracks is 1) and ($time is 175)) or (($tanktracks is 2) and ($time is 235)) or (($tanktracks is 3) and ($time is 295)) or (($tanktracks is 4) and ($time is 355))>>
-			<i>Night radio, audition 5, line 43</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 56)) or (($tanktracks is 6) and ($time is 116)) or (($tanktracks is 1) and ($time is 176)) or (($tanktracks is 2) and ($time is 236)) or (($tanktracks is 3) and ($time is 296)) or (($tanktracks is 4) and ($time is 356))>>
-			<i>Night radio, audition 5, line 44</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 57)) or (($tanktracks is 6) and ($time is 117)) or (($tanktracks is 1) and ($time is 177)) or (($tanktracks is 2) and ($time is 237)) or (($tanktracks is 3) and ($time is 297)) or (($tanktracks is 4) and ($time is 357))>>
-			<i>Night radio, audition 5, line 45</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 58)) or (($tanktracks is 6) and ($time is 118)) or (($tanktracks is 1) and ($time is 178)) or (($tanktracks is 2) and ($time is 238)) or (($tanktracks is 3) and ($time is 298)) or (($tanktracks is 4) and ($time is 358))>>
-			<i>Night radio, audition 5, line 46</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 59)) or (($tanktracks is 6) and ($time is 119)) or (($tanktracks is 1) and ($time is 179)) or (($tanktracks is 2) and ($time is 239)) or (($tanktracks is 3) and ($time is 299)) or (($tanktracks is 4) and ($time is 359))>>
-			<i>Night radio, audition 5, line 47</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 13)) or (($tanktracks is 1) and ($time is 73)) or (($tanktracks is 2) and ($time is 133)) or (($tanktracks is 3) and ($time is 193)) or (($tanktracks is 4) and ($time is 253)) or (($tanktracks is 5) and ($time is 313))>>
-			<i>Night radio, audition 6, line 1</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 14)) or (($tanktracks is 1) and ($time is 74)) or (($tanktracks is 2) and ($time is 134)) or (($tanktracks is 3) and ($time is 194)) or (($tanktracks is 4) and ($time is 254)) or (($tanktracks is 5) and ($time is 314))>>
-			<i>Night radio, audition 6, line 2</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 15)) or (($tanktracks is 1) and ($time is 75)) or (($tanktracks is 2) and ($time is 135)) or (($tanktracks is 3) and ($time is 195)) or (($tanktracks is 4) and ($time is 255)) or (($tanktracks is 5) and ($time is 315))>>
-			<i>Night radio, audition 6, line 3</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 16)) or (($tanktracks is 1) and ($time is 76)) or (($tanktracks is 2) and ($time is 136)) or (($tanktracks is 3) and ($time is 196)) or (($tanktracks is 4) and ($time is 256)) or (($tanktracks is 5) and ($time is 316))>>
-			<i>Night radio, audition 6, line 4</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 17)) or (($tanktracks is 1) and ($time is 77)) or (($tanktracks is 2) and ($time is 137)) or (($tanktracks is 3) and ($time is 197)) or (($tanktracks is 4) and ($time is 257)) or (($tanktracks is 5) and ($time is 317))>>
-			<i>Night radio, audition 6, line 5</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 18)) or (($tanktracks is 1) and ($time is 78)) or (($tanktracks is 2) and ($time is 138)) or (($tanktracks is 3) and ($time is 198)) or (($tanktracks is 4) and ($time is 258)) or (($tanktracks is 5) and ($time is 318))>>
-			<i>Night radio, audition 6, line 6</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 19)) or (($tanktracks is 1) and ($time is 79)) or (($tanktracks is 2) and ($time is 139)) or (($tanktracks is 3) and ($time is 199)) or (($tanktracks is 4) and ($time is 259)) or (($tanktracks is 5) and ($time is 319))>>
-			<i>Night radio, audition 6, line 7</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 20)) or (($tanktracks is 1) and ($time is 80)) or (($tanktracks is 2) and ($time is 140)) or (($tanktracks is 3) and ($time is 200)) or (($tanktracks is 4) and ($time is 260)) or (($tanktracks is 5) and ($time is 320))>>
-			<i>Night radio, audition 6, line 8</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 21)) or (($tanktracks is 1) and ($time is 81)) or (($tanktracks is 2) and ($time is 141)) or (($tanktracks is 3) and ($time is 201)) or (($tanktracks is 4) and ($time is 261)) or (($tanktracks is 5) and ($time is 321))>>
-			<i>Night radio, audition 6, line 9</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 22)) or (($tanktracks is 1) and ($time is 82)) or (($tanktracks is 2) and ($time is 142)) or (($tanktracks is 3) and ($time is 202)) or (($tanktracks is 4) and ($time is 262)) or (($tanktracks is 5) and ($time is 322))>>
-			<i>Night radio, audition 6, line 10</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 23)) or (($tanktracks is 1) and ($time is 83)) or (($tanktracks is 2) and ($time is 143)) or (($tanktracks is 3) and ($time is 203)) or (($tanktracks is 4) and ($time is 263)) or (($tanktracks is 5) and ($time is 323))>>
-			<i>Night radio, audition 6, line 11</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 24)) or (($tanktracks is 1) and ($time is 84)) or (($tanktracks is 2) and ($time is 144)) or (($tanktracks is 3) and ($time is 204)) or (($tanktracks is 4) and ($time is 264)) or (($tanktracks is 5) and ($time is 324))>>
-			<i>Night radio, audition 6, line 12</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 25)) or (($tanktracks is 1) and ($time is 85)) or (($tanktracks is 2) and ($time is 145)) or (($tanktracks is 3) and ($time is 205)) or (($tanktracks is 4) and ($time is 265)) or (($tanktracks is 5) and ($time is 325))>>
-			<i>Night radio, audition 6, line 13</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 26)) or (($tanktracks is 1) and ($time is 86)) or (($tanktracks is 2) and ($time is 146)) or (($tanktracks is 3) and ($time is 206)) or (($tanktracks is 4) and ($time is 266)) or (($tanktracks is 5) and ($time is 326))>>
-			<i>Night radio, audition 6, line 14</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 27)) or (($tanktracks is 1) and ($time is 87)) or (($tanktracks is 2) and ($time is 147)) or (($tanktracks is 3) and ($time is 207)) or (($tanktracks is 4) and ($time is 267)) or (($tanktracks is 5) and ($time is 327))>>
-			<i>Night radio, audition 6, line 15</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 28)) or (($tanktracks is 1) and ($time is 88)) or (($tanktracks is 2) and ($time is 148)) or (($tanktracks is 3) and ($time is 208)) or (($tanktracks is 4) and ($time is 268)) or (($tanktracks is 5) and ($time is 328))>>
-			<i>Night radio, audition 6, line 16</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 29)) or (($tanktracks is 1) and ($time is 89)) or (($tanktracks is 2) and ($time is 149)) or (($tanktracks is 3) and ($time is 209)) or (($tanktracks is 4) and ($time is 269)) or (($tanktracks is 5) and ($time is 329))>>
-			<i>Night radio, audition 6, line 17</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 30)) or (($tanktracks is 1) and ($time is 90)) or (($tanktracks is 2) and ($time is 150)) or (($tanktracks is 3) and ($time is 210)) or (($tanktracks is 4) and ($time is 270)) or (($tanktracks is 5) and ($time is 330))>>
-			<i>Night radio, audition 6, line 18</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 31)) or (($tanktracks is 1) and ($time is 91)) or (($tanktracks is 2) and ($time is 151)) or (($tanktracks is 3) and ($time is 211)) or (($tanktracks is 4) and ($time is 271)) or (($tanktracks is 5) and ($time is 331))>>
-			<i>Night radio, audition 6, line 19</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 32)) or (($tanktracks is 1) and ($time is 92)) or (($tanktracks is 2) and ($time is 152)) or (($tanktracks is 3) and ($time is 212)) or (($tanktracks is 4) and ($time is 272)) or (($tanktracks is 5) and ($time is 332))>>
-			<i>Night radio, audition 6, line 20</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 33)) or (($tanktracks is 1) and ($time is 93)) or (($tanktracks is 2) and ($time is 153)) or (($tanktracks is 3) and ($time is 213)) or (($tanktracks is 4) and ($time is 273)) or (($tanktracks is 5) and ($time is 333))>>
-			<i>Night radio, audition 6, line 21</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 34)) or (($tanktracks is 1) and ($time is 94)) or (($tanktracks is 2) and ($time is 154)) or (($tanktracks is 3) and ($time is 214)) or (($tanktracks is 4) and ($time is 274)) or (($tanktracks is 5) and ($time is 334))>>
-			<i>Night radio, audition 6, line 22</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 35)) or (($tanktracks is 1) and ($time is 95)) or (($tanktracks is 2) and ($time is 155)) or (($tanktracks is 3) and ($time is 215)) or (($tanktracks is 4) and ($time is 275)) or (($tanktracks is 5) and ($time is 335))>>
-			<i>Night radio, audition 6, line 23</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 36)) or (($tanktracks is 1) and ($time is 96)) or (($tanktracks is 2) and ($time is 156)) or (($tanktracks is 3) and ($time is 216)) or (($tanktracks is 4) and ($time is 276)) or (($tanktracks is 5) and ($time is 336))>>
-			<i>Night radio, audition 6, line 24</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 37)) or (($tanktracks is 1) and ($time is 97)) or (($tanktracks is 2) and ($time is 157)) or (($tanktracks is 3) and ($time is 217)) or (($tanktracks is 4) and ($time is 277)) or (($tanktracks is 5) and ($time is 337))>>
-			<i>Night radio, audition 6, line 25</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 38)) or (($tanktracks is 1) and ($time is 98)) or (($tanktracks is 2) and ($time is 158)) or (($tanktracks is 3) and ($time is 218)) or (($tanktracks is 4) and ($time is 278)) or (($tanktracks is 5) and ($time is 338))>>
-			<i>Night radio, audition 6, line 26</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 39)) or (($tanktracks is 1) and ($time is 99)) or (($tanktracks is 2) and ($time is 159)) or (($tanktracks is 3) and ($time is 219)) or (($tanktracks is 4) and ($time is 279)) or (($tanktracks is 5) and ($time is 339))>>
-			<i>Night radio, audition 6, line 27</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 40)) or (($tanktracks is 1) and ($time is 100)) or (($tanktracks is 2) and ($time is 160)) or (($tanktracks is 3) and ($time is 220)) or (($tanktracks is 4) and ($time is 280)) or (($tanktracks is 5) and ($time is 340))>>
-			<i>Night radio, audition 6, line 28</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 41)) or (($tanktracks is 1) and ($time is 101)) or (($tanktracks is 2) and ($time is 161)) or (($tanktracks is 3) and ($time is 221)) or (($tanktracks is 4) and ($time is 281)) or (($tanktracks is 5) and ($time is 341))>>
-			<i>Night radio, audition 6, line 29</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 42)) or (($tanktracks is 1) and ($time is 102)) or (($tanktracks is 2) and ($time is 162)) or (($tanktracks is 3) and ($time is 222)) or (($tanktracks is 4) and ($time is 282)) or (($tanktracks is 5) and ($time is 342))>>
-			<i>Night radio, audition 6, line 30</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 43)) or (($tanktracks is 1) and ($time is 103)) or (($tanktracks is 2) and ($time is 163)) or (($tanktracks is 3) and ($time is 223)) or (($tanktracks is 4) and ($time is 283)) or (($tanktracks is 5) and ($time is 343))>>
-			<i>Night radio, audition 6, line 31</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 44)) or (($tanktracks is 1) and ($time is 104)) or (($tanktracks is 2) and ($time is 164)) or (($tanktracks is 3) and ($time is 224)) or (($tanktracks is 4) and ($time is 284)) or (($tanktracks is 5) and ($time is 344))>>
-			<i>Night radio, audition 6, line 32</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 45)) or (($tanktracks is 1) and ($time is 105)) or (($tanktracks is 2) and ($time is 165)) or (($tanktracks is 3) and ($time is 225)) or (($tanktracks is 4) and ($time is 285)) or (($tanktracks is 5) and ($time is 345))>>
-			<i>Night radio, audition 6, line 33</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 46)) or (($tanktracks is 1) and ($time is 106)) or (($tanktracks is 2) and ($time is 166)) or (($tanktracks is 3) and ($time is 226)) or (($tanktracks is 4) and ($time is 286)) or (($tanktracks is 5) and ($time is 346))>>
-			<i>Night radio, audition 6, line 34</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 47)) or (($tanktracks is 1) and ($time is 107)) or (($tanktracks is 2) and ($time is 167)) or (($tanktracks is 3) and ($time is 227)) or (($tanktracks is 4) and ($time is 287)) or (($tanktracks is 5) and ($time is 347))>>
-			<i>Night radio, audition 6, line 35</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 48)) or (($tanktracks is 1) and ($time is 108)) or (($tanktracks is 2) and ($time is 168)) or (($tanktracks is 3) and ($time is 228)) or (($tanktracks is 4) and ($time is 288)) or (($tanktracks is 5) and ($time is 348))>>
-			<i>Night radio, audition 6, line 36</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 49)) or (($tanktracks is 1) and ($time is 109)) or (($tanktracks is 2) and ($time is 169)) or (($tanktracks is 3) and ($time is 229)) or (($tanktracks is 4) and ($time is 289)) or (($tanktracks is 5) and ($time is 349))>>
-			<i>Night radio, audition 6, line 37</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 50)) or (($tanktracks is 1) and ($time is 110)) or (($tanktracks is 2) and ($time is 170)) or (($tanktracks is 3) and ($time is 230)) or (($tanktracks is 4) and ($time is 290)) or (($tanktracks is 5) and ($time is 350))>>
-			<i>Night radio, audition 6, line 38</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 51)) or (($tanktracks is 1) and ($time is 111)) or (($tanktracks is 2) and ($time is 171)) or (($tanktracks is 3) and ($time is 231)) or (($tanktracks is 4) and ($time is 291)) or (($tanktracks is 5) and ($time is 351))>>
-			<i>Night radio, audition 6, line 39</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 52)) or (($tanktracks is 1) and ($time is 112)) or (($tanktracks is 2) and ($time is 172)) or (($tanktracks is 3) and ($time is 232)) or (($tanktracks is 4) and ($time is 292)) or (($tanktracks is 5) and ($time is 352))>>
-			<i>Night radio, audition 6, line 40</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 53)) or (($tanktracks is 1) and ($time is 113)) or (($tanktracks is 2) and ($time is 173)) or (($tanktracks is 3) and ($time is 233)) or (($tanktracks is 4) and ($time is 293)) or (($tanktracks is 5) and ($time is 353))>>
-			<i>Night radio, audition 6, line 41</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 54)) or (($tanktracks is 1) and ($time is 114)) or (($tanktracks is 2) and ($time is 174)) or (($tanktracks is 3) and ($time is 234)) or (($tanktracks is 4) and ($time is 294)) or (($tanktracks is 5) and ($time is 354))>>
-			<i>Night radio, audition 6, line 42</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 55)) or (($tanktracks is 1) and ($time is 115)) or (($tanktracks is 2) and ($time is 175)) or (($tanktracks is 3) and ($time is 235)) or (($tanktracks is 4) and ($time is 295)) or (($tanktracks is 5) and ($time is 355))>>
-			<i>Night radio, audition 6, line 43</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 56)) or (($tanktracks is 1) and ($time is 116)) or (($tanktracks is 2) and ($time is 176)) or (($tanktracks is 3) and ($time is 236)) or (($tanktracks is 4) and ($time is 296)) or (($tanktracks is 5) and ($time is 356))>>
-			<i>Night radio, audition 6, line 44</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 57)) or (($tanktracks is 1) and ($time is 117)) or (($tanktracks is 2) and ($time is 177)) or (($tanktracks is 3) and ($time is 237)) or (($tanktracks is 4) and ($time is 297)) or (($tanktracks is 5) and ($time is 357))>>
-			<i>Night radio, audition 6, line 45</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 58)) or (($tanktracks is 1) and ($time is 118)) or (($tanktracks is 2) and ($time is 178)) or (($tanktracks is 3) and ($time is 238)) or (($tanktracks is 4) and ($time is 298)) or (($tanktracks is 5) and ($time is 358))>>
-			<i>Night radio, audition 6, line 46</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 59)) or (($tanktracks is 1) and ($time is 119)) or (($tanktracks is 2) and ($time is 179)) or (($tanktracks is 3) and ($time is 239)) or (($tanktracks is 4) and ($time is 299)) or (($tanktracks is 5) and ($time is 359))>>
-			<i>Night radio, audition 6, line 47</i>
-			<br>
-		<</if>>
-	<</if>>
-	<<if $hour gte 6 and $hour lt 12>>
-		<<if (($tanktracks is 1) and ($time is 373)) or (($tanktracks is 2) and ($time is 433)) or (($tanktracks is 3) and ($time is 493)) or (($tanktracks is 4) and ($time is 553)) or (($tanktracks is 5) and ($time is 613)) or (($tanktracks is 6) and ($time is 673))>>
-			<i>Morning radio, audition 1, line 1</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 374)) or (($tanktracks is 2) and ($time is 434)) or (($tanktracks is 3) and ($time is 494)) or (($tanktracks is 4) and ($time is 554)) or (($tanktracks is 5) and ($time is 614)) or (($tanktracks is 6) and ($time is 674))>>
-			<i>Morning radio, audition 1, line 2</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 375)) or (($tanktracks is 2) and ($time is 435)) or (($tanktracks is 3) and ($time is 495)) or (($tanktracks is 4) and ($time is 555)) or (($tanktracks is 5) and ($time is 615)) or (($tanktracks is 6) and ($time is 675))>>
-			<i>Morning radio, audition 1, line 3</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 376)) or (($tanktracks is 2) and ($time is 436)) or (($tanktracks is 3) and ($time is 496)) or (($tanktracks is 4) and ($time is 556)) or (($tanktracks is 5) and ($time is 616)) or (($tanktracks is 6) and ($time is 676))>>
-			<i>Morning radio, audition 1, line 4</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 377)) or (($tanktracks is 2) and ($time is 437)) or (($tanktracks is 3) and ($time is 497)) or (($tanktracks is 4) and ($time is 557)) or (($tanktracks is 5) and ($time is 617)) or (($tanktracks is 6) and ($time is 677))>>
-			<i>Morning radio, audition 1, line 5</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 378)) or (($tanktracks is 2) and ($time is 438)) or (($tanktracks is 3) and ($time is 498)) or (($tanktracks is 4) and ($time is 558)) or (($tanktracks is 5) and ($time is 618)) or (($tanktracks is 6) and ($time is 678))>>
-			<i>Morning radio, audition 1, line 6</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 379)) or (($tanktracks is 2) and ($time is 439)) or (($tanktracks is 3) and ($time is 499)) or (($tanktracks is 4) and ($time is 559)) or (($tanktracks is 5) and ($time is 619)) or (($tanktracks is 6) and ($time is 679))>>
-			<i>Morning radio, audition 1, line 7</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 380)) or (($tanktracks is 2) and ($time is 440)) or (($tanktracks is 3) and ($time is 500)) or (($tanktracks is 4) and ($time is 560)) or (($tanktracks is 5) and ($time is 620)) or (($tanktracks is 6) and ($time is 680))>>
-			<i>Morning radio, audition 1, line 8</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 381)) or (($tanktracks is 2) and ($time is 441)) or (($tanktracks is 3) and ($time is 501)) or (($tanktracks is 4) and ($time is 561)) or (($tanktracks is 5) and ($time is 621)) or (($tanktracks is 6) and ($time is 681))>>
-			<i>Morning radio, audition 1, line 9</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 382)) or (($tanktracks is 2) and ($time is 442)) or (($tanktracks is 3) and ($time is 502)) or (($tanktracks is 4) and ($time is 562)) or (($tanktracks is 5) and ($time is 622)) or (($tanktracks is 6) and ($time is 682))>>
-			<i>Morning radio, audition 1, line 10</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 383)) or (($tanktracks is 2) and ($time is 443)) or (($tanktracks is 3) and ($time is 503)) or (($tanktracks is 4) and ($time is 563)) or (($tanktracks is 5) and ($time is 623)) or (($tanktracks is 6) and ($time is 683))>>
-			<i>Morning radio, audition 1, line 11</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 384)) or (($tanktracks is 2) and ($time is 444)) or (($tanktracks is 3) and ($time is 504)) or (($tanktracks is 4) and ($time is 564)) or (($tanktracks is 5) and ($time is 624)) or (($tanktracks is 6) and ($time is 684))>>
-			<i>Morning radio, audition 1, line 12</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 385)) or (($tanktracks is 2) and ($time is 445)) or (($tanktracks is 3) and ($time is 505)) or (($tanktracks is 4) and ($time is 565)) or (($tanktracks is 5) and ($time is 625)) or (($tanktracks is 6) and ($time is 685))>>
-			<i>Morning radio, audition 1, line 13</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 386)) or (($tanktracks is 2) and ($time is 446)) or (($tanktracks is 3) and ($time is 506)) or (($tanktracks is 4) and ($time is 566)) or (($tanktracks is 5) and ($time is 626)) or (($tanktracks is 6) and ($time is 686))>>
-			<i>Morning radio, audition 1, line 14</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 387)) or (($tanktracks is 2) and ($time is 447)) or (($tanktracks is 3) and ($time is 507)) or (($tanktracks is 4) and ($time is 567)) or (($tanktracks is 5) and ($time is 627)) or (($tanktracks is 6) and ($time is 687))>>
-			<i>Morning radio, audition 1, line 15</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 388)) or (($tanktracks is 2) and ($time is 448)) or (($tanktracks is 3) and ($time is 508)) or (($tanktracks is 4) and ($time is 568)) or (($tanktracks is 5) and ($time is 628)) or (($tanktracks is 6) and ($time is 688))>>
-			<i>Morning radio, audition 1, line 16</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 389)) or (($tanktracks is 2) and ($time is 449)) or (($tanktracks is 3) and ($time is 509)) or (($tanktracks is 4) and ($time is 569)) or (($tanktracks is 5) and ($time is 629)) or (($tanktracks is 6) and ($time is 689))>>
-			<i>Morning radio, audition 1, line 17</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 390)) or (($tanktracks is 2) and ($time is 450)) or (($tanktracks is 3) and ($time is 510)) or (($tanktracks is 4) and ($time is 570)) or (($tanktracks is 5) and ($time is 630)) or (($tanktracks is 6) and ($time is 690))>>
-			<i>Morning radio, audition 1, line 18</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 391)) or (($tanktracks is 2) and ($time is 451)) or (($tanktracks is 3) and ($time is 511)) or (($tanktracks is 4) and ($time is 571)) or (($tanktracks is 5) and ($time is 631)) or (($tanktracks is 6) and ($time is 691))>>
-			<i>Morning radio, audition 1, line 19</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 392)) or (($tanktracks is 2) and ($time is 452)) or (($tanktracks is 3) and ($time is 512)) or (($tanktracks is 4) and ($time is 572)) or (($tanktracks is 5) and ($time is 632)) or (($tanktracks is 6) and ($time is 692))>>
-			<i>Morning radio, audition 1, line 20</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 393)) or (($tanktracks is 2) and ($time is 453)) or (($tanktracks is 3) and ($time is 513)) or (($tanktracks is 4) and ($time is 573)) or (($tanktracks is 5) and ($time is 633)) or (($tanktracks is 6) and ($time is 693))>>
-			<i>Morning radio, audition 1, line 21</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 394)) or (($tanktracks is 2) and ($time is 454)) or (($tanktracks is 3) and ($time is 514)) or (($tanktracks is 4) and ($time is 574)) or (($tanktracks is 5) and ($time is 634)) or (($tanktracks is 6) and ($time is 694))>>
-			<i>Morning radio, audition 1, line 22</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 395)) or (($tanktracks is 2) and ($time is 455)) or (($tanktracks is 3) and ($time is 515)) or (($tanktracks is 4) and ($time is 575)) or (($tanktracks is 5) and ($time is 635)) or (($tanktracks is 6) and ($time is 695))>>
-			<i>Morning radio, audition 1, line 23</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 396)) or (($tanktracks is 2) and ($time is 456)) or (($tanktracks is 3) and ($time is 516)) or (($tanktracks is 4) and ($time is 576)) or (($tanktracks is 5) and ($time is 636)) or (($tanktracks is 6) and ($time is 696))>>
-			<i>Morning radio, audition 1, line 24</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 397)) or (($tanktracks is 2) and ($time is 457)) or (($tanktracks is 3) and ($time is 517)) or (($tanktracks is 4) and ($time is 577)) or (($tanktracks is 5) and ($time is 637)) or (($tanktracks is 6) and ($time is 697))>>
-			<i>Morning radio, audition 1, line 25</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 398)) or (($tanktracks is 2) and ($time is 458)) or (($tanktracks is 3) and ($time is 518)) or (($tanktracks is 4) and ($time is 578)) or (($tanktracks is 5) and ($time is 638)) or (($tanktracks is 6) and ($time is 698))>>
-			<i>Morning radio, audition 1, line 26</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 399)) or (($tanktracks is 2) and ($time is 459)) or (($tanktracks is 3) and ($time is 519)) or (($tanktracks is 4) and ($time is 579)) or (($tanktracks is 5) and ($time is 639)) or (($tanktracks is 6) and ($time is 699))>>
-			<i>Morning radio, audition 1, line 27</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 400)) or (($tanktracks is 2) and ($time is 460)) or (($tanktracks is 3) and ($time is 520)) or (($tanktracks is 4) and ($time is 580)) or (($tanktracks is 5) and ($time is 640)) or (($tanktracks is 6) and ($time is 700))>>
-			<i>Morning radio, audition 1, line 28</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 401)) or (($tanktracks is 2) and ($time is 461)) or (($tanktracks is 3) and ($time is 521)) or (($tanktracks is 4) and ($time is 581)) or (($tanktracks is 5) and ($time is 641)) or (($tanktracks is 6) and ($time is 701))>>
-			<i>Morning radio, audition 1, line 29</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 402)) or (($tanktracks is 2) and ($time is 462)) or (($tanktracks is 3) and ($time is 522)) or (($tanktracks is 4) and ($time is 582)) or (($tanktracks is 5) and ($time is 642)) or (($tanktracks is 6) and ($time is 702))>>
-			<i>Morning radio, audition 1, line 30</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 403)) or (($tanktracks is 2) and ($time is 463)) or (($tanktracks is 3) and ($time is 523)) or (($tanktracks is 4) and ($time is 583)) or (($tanktracks is 5) and ($time is 643)) or (($tanktracks is 6) and ($time is 703))>>
-			<i>Morning radio, audition 1, line 31</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 404)) or (($tanktracks is 2) and ($time is 464)) or (($tanktracks is 3) and ($time is 524)) or (($tanktracks is 4) and ($time is 584)) or (($tanktracks is 5) and ($time is 644)) or (($tanktracks is 6) and ($time is 704))>>
-			<i>Morning radio, audition 1, line 32</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 405)) or (($tanktracks is 2) and ($time is 465)) or (($tanktracks is 3) and ($time is 525)) or (($tanktracks is 4) and ($time is 585)) or (($tanktracks is 5) and ($time is 645)) or (($tanktracks is 6) and ($time is 705))>>
-			<i>Morning radio, audition 1, line 33</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 406)) or (($tanktracks is 2) and ($time is 466)) or (($tanktracks is 3) and ($time is 526)) or (($tanktracks is 4) and ($time is 586)) or (($tanktracks is 5) and ($time is 646)) or (($tanktracks is 6) and ($time is 706))>>
-			<i>Morning radio, audition 1, line 34</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 407)) or (($tanktracks is 2) and ($time is 467)) or (($tanktracks is 3) and ($time is 527)) or (($tanktracks is 4) and ($time is 587)) or (($tanktracks is 5) and ($time is 647)) or (($tanktracks is 6) and ($time is 707))>>
-			<i>Morning radio, audition 1, line 35</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 408)) or (($tanktracks is 2) and ($time is 468)) or (($tanktracks is 3) and ($time is 528)) or (($tanktracks is 4) and ($time is 588)) or (($tanktracks is 5) and ($time is 648)) or (($tanktracks is 6) and ($time is 708))>>
-			<i>Morning radio, audition 1, line 36</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 409)) or (($tanktracks is 2) and ($time is 469)) or (($tanktracks is 3) and ($time is 529)) or (($tanktracks is 4) and ($time is 589)) or (($tanktracks is 5) and ($time is 649)) or (($tanktracks is 6) and ($time is 709))>>
-			<i>Morning radio, audition 1, line 37</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 410)) or (($tanktracks is 2) and ($time is 470)) or (($tanktracks is 3) and ($time is 530)) or (($tanktracks is 4) and ($time is 590)) or (($tanktracks is 5) and ($time is 650)) or (($tanktracks is 6) and ($time is 710))>>
-			<i>Morning radio, audition 1, line 38</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 411)) or (($tanktracks is 2) and ($time is 471)) or (($tanktracks is 3) and ($time is 531)) or (($tanktracks is 4) and ($time is 591)) or (($tanktracks is 5) and ($time is 651)) or (($tanktracks is 6) and ($time is 711))>>
-			<i>Morning radio, audition 1, line 39</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 412)) or (($tanktracks is 2) and ($time is 472)) or (($tanktracks is 3) and ($time is 532)) or (($tanktracks is 4) and ($time is 592)) or (($tanktracks is 5) and ($time is 652)) or (($tanktracks is 6) and ($time is 712))>>
-			<i>Morning radio, audition 1, line 40</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 413)) or (($tanktracks is 2) and ($time is 473)) or (($tanktracks is 3) and ($time is 533)) or (($tanktracks is 4) and ($time is 593)) or (($tanktracks is 5) and ($time is 653)) or (($tanktracks is 6) and ($time is 713))>>
-			<i>Morning radio, audition 1, line 41</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 414)) or (($tanktracks is 2) and ($time is 474)) or (($tanktracks is 3) and ($time is 534)) or (($tanktracks is 4) and ($time is 594)) or (($tanktracks is 5) and ($time is 654)) or (($tanktracks is 6) and ($time is 714))>>
-			<i>Morning radio, audition 1, line 42</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 415)) or (($tanktracks is 2) and ($time is 475)) or (($tanktracks is 3) and ($time is 535)) or (($tanktracks is 4) and ($time is 595)) or (($tanktracks is 5) and ($time is 655)) or (($tanktracks is 6) and ($time is 715))>>
-			<i>Morning radio, audition 1, line 43</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 416)) or (($tanktracks is 2) and ($time is 476)) or (($tanktracks is 3) and ($time is 536)) or (($tanktracks is 4) and ($time is 596)) or (($tanktracks is 5) and ($time is 656)) or (($tanktracks is 6) and ($time is 716))>>
-			<i>Morning radio, audition 1, line 44</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 417)) or (($tanktracks is 2) and ($time is 477)) or (($tanktracks is 3) and ($time is 537)) or (($tanktracks is 4) and ($time is 597)) or (($tanktracks is 5) and ($time is 657)) or (($tanktracks is 6) and ($time is 717))>>
-			<i>Morning radio, audition 1, line 45</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 418)) or (($tanktracks is 2) and ($time is 478)) or (($tanktracks is 3) and ($time is 538)) or (($tanktracks is 4) and ($time is 598)) or (($tanktracks is 5) and ($time is 658)) or (($tanktracks is 6) and ($time is 718))>>
-			<i>Morning radio, audition 1, line 46</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 419)) or (($tanktracks is 2) and ($time is 479)) or (($tanktracks is 3) and ($time is 539)) or (($tanktracks is 4) and ($time is 599)) or (($tanktracks is 5) and ($time is 659)) or (($tanktracks is 6) and ($time is 719))>>
-			<i>Morning radio, audition 1, line 47</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 373)) or (($tanktracks is 3) and ($time is 433)) or (($tanktracks is 4) and ($time is 493)) or (($tanktracks is 5) and ($time is 553)) or (($tanktracks is 6) and ($time is 613)) or (($tanktracks is 1) and ($time is 673))>>
-			<i>Morning radio, audition 2, line 1</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 374)) or (($tanktracks is 3) and ($time is 434)) or (($tanktracks is 4) and ($time is 494)) or (($tanktracks is 5) and ($time is 554)) or (($tanktracks is 6) and ($time is 614)) or (($tanktracks is 1) and ($time is 674))>>
-			<i>Morning radio, audition 2, line 2</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 375)) or (($tanktracks is 3) and ($time is 435)) or (($tanktracks is 4) and ($time is 495)) or (($tanktracks is 5) and ($time is 555)) or (($tanktracks is 6) and ($time is 615)) or (($tanktracks is 1) and ($time is 675))>>
-			<i>Morning radio, audition 2, line 3</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 376)) or (($tanktracks is 3) and ($time is 436)) or (($tanktracks is 4) and ($time is 496)) or (($tanktracks is 5) and ($time is 556)) or (($tanktracks is 6) and ($time is 616)) or (($tanktracks is 1) and ($time is 676))>>
-			<i>Morning radio, audition 2, line 4</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 377)) or (($tanktracks is 3) and ($time is 437)) or (($tanktracks is 4) and ($time is 497)) or (($tanktracks is 5) and ($time is 557)) or (($tanktracks is 6) and ($time is 617)) or (($tanktracks is 1) and ($time is 677))>>
-			<i>Morning radio, audition 2, line 5</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 378)) or (($tanktracks is 3) and ($time is 438)) or (($tanktracks is 4) and ($time is 498)) or (($tanktracks is 5) and ($time is 558)) or (($tanktracks is 6) and ($time is 618)) or (($tanktracks is 1) and ($time is 678))>>
-			<i>Morning radio, audition 2, line 6</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 379)) or (($tanktracks is 3) and ($time is 439)) or (($tanktracks is 4) and ($time is 499)) or (($tanktracks is 5) and ($time is 559)) or (($tanktracks is 6) and ($time is 619)) or (($tanktracks is 1) and ($time is 679))>>
-			<i>Morning radio, audition 2, line 7</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 380)) or (($tanktracks is 3) and ($time is 440)) or (($tanktracks is 4) and ($time is 500)) or (($tanktracks is 5) and ($time is 560)) or (($tanktracks is 6) and ($time is 620)) or (($tanktracks is 1) and ($time is 680))>>
-			<i>Morning radio, audition 2, line 8</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 381)) or (($tanktracks is 3) and ($time is 441)) or (($tanktracks is 4) and ($time is 501)) or (($tanktracks is 5) and ($time is 561)) or (($tanktracks is 6) and ($time is 621)) or (($tanktracks is 1) and ($time is 681))>>
-			<i>Morning radio, audition 2, line 9</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 382)) or (($tanktracks is 3) and ($time is 442)) or (($tanktracks is 4) and ($time is 502)) or (($tanktracks is 5) and ($time is 562)) or (($tanktracks is 6) and ($time is 622)) or (($tanktracks is 1) and ($time is 682))>>
-			<i>Morning radio, audition 2, line 10</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 383)) or (($tanktracks is 3) and ($time is 443)) or (($tanktracks is 4) and ($time is 503)) or (($tanktracks is 5) and ($time is 563)) or (($tanktracks is 6) and ($time is 623)) or (($tanktracks is 1) and ($time is 683))>>
-			<i>Morning radio, audition 2, line 11</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 384)) or (($tanktracks is 3) and ($time is 444)) or (($tanktracks is 4) and ($time is 504)) or (($tanktracks is 5) and ($time is 564)) or (($tanktracks is 6) and ($time is 624)) or (($tanktracks is 1) and ($time is 684))>>
-			<i>Morning radio, audition 2, line 12</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 385)) or (($tanktracks is 3) and ($time is 445)) or (($tanktracks is 4) and ($time is 505)) or (($tanktracks is 5) and ($time is 565)) or (($tanktracks is 6) and ($time is 625)) or (($tanktracks is 1) and ($time is 685))>>
-			<i>Morning radio, audition 2, line 13</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 386)) or (($tanktracks is 3) and ($time is 446)) or (($tanktracks is 4) and ($time is 506)) or (($tanktracks is 5) and ($time is 566)) or (($tanktracks is 6) and ($time is 626)) or (($tanktracks is 1) and ($time is 686))>>
-			<i>Morning radio, audition 2, line 14</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 387)) or (($tanktracks is 3) and ($time is 447)) or (($tanktracks is 4) and ($time is 507)) or (($tanktracks is 5) and ($time is 567)) or (($tanktracks is 6) and ($time is 627)) or (($tanktracks is 1) and ($time is 687))>>
-			<i>Morning radio, audition 2, line 15</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 388)) or (($tanktracks is 3) and ($time is 448)) or (($tanktracks is 4) and ($time is 508)) or (($tanktracks is 5) and ($time is 568)) or (($tanktracks is 6) and ($time is 628)) or (($tanktracks is 1) and ($time is 688))>>
-			<i>Morning radio, audition 2, line 16</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 389)) or (($tanktracks is 3) and ($time is 449)) or (($tanktracks is 4) and ($time is 509)) or (($tanktracks is 5) and ($time is 569)) or (($tanktracks is 6) and ($time is 629)) or (($tanktracks is 1) and ($time is 689))>>
-			<i>Morning radio, audition 2, line 17</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 390)) or (($tanktracks is 3) and ($time is 450)) or (($tanktracks is 4) and ($time is 510)) or (($tanktracks is 5) and ($time is 570)) or (($tanktracks is 6) and ($time is 630)) or (($tanktracks is 1) and ($time is 690))>>
-			<i>Morning radio, audition 2, line 18</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 391)) or (($tanktracks is 3) and ($time is 451)) or (($tanktracks is 4) and ($time is 511)) or (($tanktracks is 5) and ($time is 571)) or (($tanktracks is 6) and ($time is 631)) or (($tanktracks is 1) and ($time is 691))>>
-			<i>Morning radio, audition 2, line 19</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 392)) or (($tanktracks is 3) and ($time is 452)) or (($tanktracks is 4) and ($time is 512)) or (($tanktracks is 5) and ($time is 572)) or (($tanktracks is 6) and ($time is 632)) or (($tanktracks is 1) and ($time is 692))>>
-			<i>Morning radio, audition 2, line 20</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 393)) or (($tanktracks is 3) and ($time is 453)) or (($tanktracks is 4) and ($time is 513)) or (($tanktracks is 5) and ($time is 573)) or (($tanktracks is 6) and ($time is 633)) or (($tanktracks is 1) and ($time is 693))>>
-			<i>Morning radio, audition 2, line 21</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 394)) or (($tanktracks is 3) and ($time is 454)) or (($tanktracks is 4) and ($time is 514)) or (($tanktracks is 5) and ($time is 574)) or (($tanktracks is 6) and ($time is 634)) or (($tanktracks is 1) and ($time is 694))>>
-			<i>Morning radio, audition 2, line 22</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 395)) or (($tanktracks is 3) and ($time is 455)) or (($tanktracks is 4) and ($time is 515)) or (($tanktracks is 5) and ($time is 575)) or (($tanktracks is 6) and ($time is 635)) or (($tanktracks is 1) and ($time is 695))>>
-			<i>Morning radio, audition 2, line 23</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 396)) or (($tanktracks is 3) and ($time is 456)) or (($tanktracks is 4) and ($time is 516)) or (($tanktracks is 5) and ($time is 576)) or (($tanktracks is 6) and ($time is 636)) or (($tanktracks is 1) and ($time is 696))>>
-			<i>Morning radio, audition 2, line 24</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 397)) or (($tanktracks is 3) and ($time is 457)) or (($tanktracks is 4) and ($time is 517)) or (($tanktracks is 5) and ($time is 577)) or (($tanktracks is 6) and ($time is 637)) or (($tanktracks is 1) and ($time is 697))>>
-			<i>Morning radio, audition 2, line 25</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 398)) or (($tanktracks is 3) and ($time is 458)) or (($tanktracks is 4) and ($time is 518)) or (($tanktracks is 5) and ($time is 578)) or (($tanktracks is 6) and ($time is 638)) or (($tanktracks is 1) and ($time is 698))>>
-			<i>Morning radio, audition 2, line 26</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 399)) or (($tanktracks is 3) and ($time is 459)) or (($tanktracks is 4) and ($time is 519)) or (($tanktracks is 5) and ($time is 579)) or (($tanktracks is 6) and ($time is 639)) or (($tanktracks is 1) and ($time is 699))>>
-			<i>Morning radio, audition 2, line 27</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 400)) or (($tanktracks is 3) and ($time is 460)) or (($tanktracks is 4) and ($time is 520)) or (($tanktracks is 5) and ($time is 580)) or (($tanktracks is 6) and ($time is 640)) or (($tanktracks is 1) and ($time is 700))>>
-			<i>Morning radio, audition 2, line 28</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 401)) or (($tanktracks is 3) and ($time is 461)) or (($tanktracks is 4) and ($time is 521)) or (($tanktracks is 5) and ($time is 581)) or (($tanktracks is 6) and ($time is 641)) or (($tanktracks is 1) and ($time is 701))>>
-			<i>Morning radio, audition 2, line 29</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 402)) or (($tanktracks is 3) and ($time is 462)) or (($tanktracks is 4) and ($time is 522)) or (($tanktracks is 5) and ($time is 582)) or (($tanktracks is 6) and ($time is 642)) or (($tanktracks is 1) and ($time is 702))>>
-			<i>Morning radio, audition 2, line 30</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 403)) or (($tanktracks is 3) and ($time is 463)) or (($tanktracks is 4) and ($time is 523)) or (($tanktracks is 5) and ($time is 583)) or (($tanktracks is 6) and ($time is 643)) or (($tanktracks is 1) and ($time is 703))>>
-			<i>Morning radio, audition 2, line 31</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 404)) or (($tanktracks is 3) and ($time is 464)) or (($tanktracks is 4) and ($time is 524)) or (($tanktracks is 5) and ($time is 584)) or (($tanktracks is 6) and ($time is 644)) or (($tanktracks is 1) and ($time is 704))>>
-			<i>Morning radio, audition 2, line 32</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 405)) or (($tanktracks is 3) and ($time is 465)) or (($tanktracks is 4) and ($time is 525)) or (($tanktracks is 5) and ($time is 585)) or (($tanktracks is 6) and ($time is 645)) or (($tanktracks is 1) and ($time is 705))>>
-			<i>Morning radio, audition 2, line 33</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 406)) or (($tanktracks is 3) and ($time is 466)) or (($tanktracks is 4) and ($time is 526)) or (($tanktracks is 5) and ($time is 586)) or (($tanktracks is 6) and ($time is 646)) or (($tanktracks is 1) and ($time is 706))>>
-			<i>Morning radio, audition 2, line 34</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 407)) or (($tanktracks is 3) and ($time is 467)) or (($tanktracks is 4) and ($time is 527)) or (($tanktracks is 5) and ($time is 587)) or (($tanktracks is 6) and ($time is 647)) or (($tanktracks is 1) and ($time is 707))>>
-			<i>Morning radio, audition 2, line 35</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 408)) or (($tanktracks is 3) and ($time is 468)) or (($tanktracks is 4) and ($time is 528)) or (($tanktracks is 5) and ($time is 588)) or (($tanktracks is 6) and ($time is 648)) or (($tanktracks is 1) and ($time is 708))>>
-			<i>Morning radio, audition 2, line 36</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 409)) or (($tanktracks is 3) and ($time is 469)) or (($tanktracks is 4) and ($time is 529)) or (($tanktracks is 5) and ($time is 589)) or (($tanktracks is 6) and ($time is 649)) or (($tanktracks is 1) and ($time is 709))>>
-			<i>Morning radio, audition 2, line 37</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 410)) or (($tanktracks is 3) and ($time is 470)) or (($tanktracks is 4) and ($time is 530)) or (($tanktracks is 5) and ($time is 590)) or (($tanktracks is 6) and ($time is 650)) or (($tanktracks is 1) and ($time is 710))>>
-			<i>Morning radio, audition 2, line 38</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 411)) or (($tanktracks is 3) and ($time is 471)) or (($tanktracks is 4) and ($time is 531)) or (($tanktracks is 5) and ($time is 591)) or (($tanktracks is 6) and ($time is 651)) or (($tanktracks is 1) and ($time is 711))>>
-			<i>Morning radio, audition 2, line 39</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 412)) or (($tanktracks is 3) and ($time is 472)) or (($tanktracks is 4) and ($time is 532)) or (($tanktracks is 5) and ($time is 592)) or (($tanktracks is 6) and ($time is 652)) or (($tanktracks is 1) and ($time is 712))>>
-			<i>Morning radio, audition 2, line 40</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 413)) or (($tanktracks is 3) and ($time is 473)) or (($tanktracks is 4) and ($time is 533)) or (($tanktracks is 5) and ($time is 593)) or (($tanktracks is 6) and ($time is 653)) or (($tanktracks is 1) and ($time is 713))>>
-			<i>Morning radio, audition 2, line 41</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 414)) or (($tanktracks is 3) and ($time is 474)) or (($tanktracks is 4) and ($time is 534)) or (($tanktracks is 5) and ($time is 594)) or (($tanktracks is 6) and ($time is 654)) or (($tanktracks is 1) and ($time is 714))>>
-			<i>Morning radio, audition 2, line 42</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 415)) or (($tanktracks is 3) and ($time is 475)) or (($tanktracks is 4) and ($time is 535)) or (($tanktracks is 5) and ($time is 595)) or (($tanktracks is 6) and ($time is 655)) or (($tanktracks is 1) and ($time is 715))>>
-			<i>Morning radio, audition 2, line 43</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 416)) or (($tanktracks is 3) and ($time is 476)) or (($tanktracks is 4) and ($time is 536)) or (($tanktracks is 5) and ($time is 596)) or (($tanktracks is 6) and ($time is 656)) or (($tanktracks is 1) and ($time is 716))>>
-			<i>Morning radio, audition 2, line 44</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 417)) or (($tanktracks is 3) and ($time is 477)) or (($tanktracks is 4) and ($time is 537)) or (($tanktracks is 5) and ($time is 597)) or (($tanktracks is 6) and ($time is 657)) or (($tanktracks is 1) and ($time is 717))>>
-			<i>Morning radio, audition 2, line 45</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 418)) or (($tanktracks is 3) and ($time is 478)) or (($tanktracks is 4) and ($time is 538)) or (($tanktracks is 5) and ($time is 598)) or (($tanktracks is 6) and ($time is 658)) or (($tanktracks is 1) and ($time is 718))>>
-			<i>Morning radio, audition 2, line 46</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 419)) or (($tanktracks is 3) and ($time is 479)) or (($tanktracks is 4) and ($time is 539)) or (($tanktracks is 5) and ($time is 599)) or (($tanktracks is 6) and ($time is 659)) or (($tanktracks is 1) and ($time is 719))>>
-			<i>Morning radio, audition 2, line 47</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 373)) or (($tanktracks is 4) and ($time is 433)) or (($tanktracks is 5) and ($time is 493)) or (($tanktracks is 6) and ($time is 553)) or (($tanktracks is 1) and ($time is 613)) or (($tanktracks is 2) and ($time is 673))>>
-			<i>Morning radio, audition 3, line 1</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 374)) or (($tanktracks is 4) and ($time is 434)) or (($tanktracks is 5) and ($time is 494)) or (($tanktracks is 6) and ($time is 554)) or (($tanktracks is 1) and ($time is 614)) or (($tanktracks is 2) and ($time is 674))>>
-			<i>Morning radio, audition 3, line 2</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 375)) or (($tanktracks is 4) and ($time is 435)) or (($tanktracks is 5) and ($time is 495)) or (($tanktracks is 6) and ($time is 555)) or (($tanktracks is 1) and ($time is 615)) or (($tanktracks is 2) and ($time is 675))>>
-			<i>Morning radio, audition 3, line 3</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 376)) or (($tanktracks is 4) and ($time is 436)) or (($tanktracks is 5) and ($time is 496)) or (($tanktracks is 6) and ($time is 556)) or (($tanktracks is 1) and ($time is 616)) or (($tanktracks is 2) and ($time is 676))>>
-			<i>Morning radio, audition 3, line 4</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 377)) or (($tanktracks is 4) and ($time is 437)) or (($tanktracks is 5) and ($time is 497)) or (($tanktracks is 6) and ($time is 557)) or (($tanktracks is 1) and ($time is 617)) or (($tanktracks is 2) and ($time is 677))>>
-			<i>Morning radio, audition 3, line 5</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 378)) or (($tanktracks is 4) and ($time is 438)) or (($tanktracks is 5) and ($time is 498)) or (($tanktracks is 6) and ($time is 558)) or (($tanktracks is 1) and ($time is 618)) or (($tanktracks is 2) and ($time is 678))>>
-			<i>Morning radio, audition 3, line 6</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 379)) or (($tanktracks is 4) and ($time is 439)) or (($tanktracks is 5) and ($time is 499)) or (($tanktracks is 6) and ($time is 559)) or (($tanktracks is 1) and ($time is 619)) or (($tanktracks is 2) and ($time is 679))>>
-			<i>Morning radio, audition 3, line 7</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 380)) or (($tanktracks is 4) and ($time is 440)) or (($tanktracks is 5) and ($time is 500)) or (($tanktracks is 6) and ($time is 560)) or (($tanktracks is 1) and ($time is 620)) or (($tanktracks is 2) and ($time is 680))>>
-			<i>Morning radio, audition 3, line 8</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 381)) or (($tanktracks is 4) and ($time is 441)) or (($tanktracks is 5) and ($time is 501)) or (($tanktracks is 6) and ($time is 561)) or (($tanktracks is 1) and ($time is 621)) or (($tanktracks is 2) and ($time is 681))>>
-			<i>Morning radio, audition 3, line 9</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 382)) or (($tanktracks is 4) and ($time is 442)) or (($tanktracks is 5) and ($time is 502)) or (($tanktracks is 6) and ($time is 562)) or (($tanktracks is 1) and ($time is 622)) or (($tanktracks is 2) and ($time is 682))>>
-			<i>Morning radio, audition 3, line 10</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 383)) or (($tanktracks is 4) and ($time is 443)) or (($tanktracks is 5) and ($time is 503)) or (($tanktracks is 6) and ($time is 563)) or (($tanktracks is 1) and ($time is 623)) or (($tanktracks is 2) and ($time is 683))>>
-			<i>Morning radio, audition 3, line 11</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 384)) or (($tanktracks is 4) and ($time is 444)) or (($tanktracks is 5) and ($time is 504)) or (($tanktracks is 6) and ($time is 564)) or (($tanktracks is 1) and ($time is 624)) or (($tanktracks is 2) and ($time is 684))>>
-			<i>Morning radio, audition 3, line 12</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 385)) or (($tanktracks is 4) and ($time is 445)) or (($tanktracks is 5) and ($time is 505)) or (($tanktracks is 6) and ($time is 565)) or (($tanktracks is 1) and ($time is 625)) or (($tanktracks is 2) and ($time is 685))>>
-			<i>Morning radio, audition 3, line 13</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 386)) or (($tanktracks is 4) and ($time is 446)) or (($tanktracks is 5) and ($time is 506)) or (($tanktracks is 6) and ($time is 566)) or (($tanktracks is 1) and ($time is 626)) or (($tanktracks is 2) and ($time is 686))>>
-			<i>Morning radio, audition 3, line 14</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 387)) or (($tanktracks is 4) and ($time is 447)) or (($tanktracks is 5) and ($time is 507)) or (($tanktracks is 6) and ($time is 567)) or (($tanktracks is 1) and ($time is 627)) or (($tanktracks is 2) and ($time is 687))>>
-			<i>Morning radio, audition 3, line 15</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 388)) or (($tanktracks is 4) and ($time is 448)) or (($tanktracks is 5) and ($time is 508)) or (($tanktracks is 6) and ($time is 568)) or (($tanktracks is 1) and ($time is 628)) or (($tanktracks is 2) and ($time is 688))>>
-			<i>Morning radio, audition 3, line 16</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 389)) or (($tanktracks is 4) and ($time is 449)) or (($tanktracks is 5) and ($time is 509)) or (($tanktracks is 6) and ($time is 569)) or (($tanktracks is 1) and ($time is 629)) or (($tanktracks is 2) and ($time is 689))>>
-			<i>Morning radio, audition 3, line 17</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 390)) or (($tanktracks is 4) and ($time is 450)) or (($tanktracks is 5) and ($time is 510)) or (($tanktracks is 6) and ($time is 570)) or (($tanktracks is 1) and ($time is 630)) or (($tanktracks is 2) and ($time is 690))>>
-			<i>Morning radio, audition 3, line 18</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 391)) or (($tanktracks is 4) and ($time is 451)) or (($tanktracks is 5) and ($time is 511)) or (($tanktracks is 6) and ($time is 571)) or (($tanktracks is 1) and ($time is 631)) or (($tanktracks is 2) and ($time is 691))>>
-			<i>Morning radio, audition 3, line 19</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 392)) or (($tanktracks is 4) and ($time is 452)) or (($tanktracks is 5) and ($time is 512)) or (($tanktracks is 6) and ($time is 572)) or (($tanktracks is 1) and ($time is 632)) or (($tanktracks is 2) and ($time is 692))>>
-			<i>Morning radio, audition 3, line 20</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 393)) or (($tanktracks is 4) and ($time is 453)) or (($tanktracks is 5) and ($time is 513)) or (($tanktracks is 6) and ($time is 573)) or (($tanktracks is 1) and ($time is 633)) or (($tanktracks is 2) and ($time is 693))>>
-			<i>Morning radio, audition 3, line 21</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 394)) or (($tanktracks is 4) and ($time is 454)) or (($tanktracks is 5) and ($time is 514)) or (($tanktracks is 6) and ($time is 574)) or (($tanktracks is 1) and ($time is 634)) or (($tanktracks is 2) and ($time is 694))>>
-			<i>Morning radio, audition 3, line 22</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 395)) or (($tanktracks is 4) and ($time is 455)) or (($tanktracks is 5) and ($time is 515)) or (($tanktracks is 6) and ($time is 575)) or (($tanktracks is 1) and ($time is 635)) or (($tanktracks is 2) and ($time is 695))>>
-			<i>Morning radio, audition 3, line 23</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 396)) or (($tanktracks is 4) and ($time is 456)) or (($tanktracks is 5) and ($time is 516)) or (($tanktracks is 6) and ($time is 576)) or (($tanktracks is 1) and ($time is 636)) or (($tanktracks is 2) and ($time is 696))>>
-			<i>Morning radio, audition 3, line 24</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 397)) or (($tanktracks is 4) and ($time is 457)) or (($tanktracks is 5) and ($time is 517)) or (($tanktracks is 6) and ($time is 577)) or (($tanktracks is 1) and ($time is 637)) or (($tanktracks is 2) and ($time is 697))>>
-			<i>Morning radio, audition 3, line 25</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 398)) or (($tanktracks is 4) and ($time is 458)) or (($tanktracks is 5) and ($time is 518)) or (($tanktracks is 6) and ($time is 578)) or (($tanktracks is 1) and ($time is 638)) or (($tanktracks is 2) and ($time is 698))>>
-			<i>Morning radio, audition 3, line 26</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 399)) or (($tanktracks is 4) and ($time is 459)) or (($tanktracks is 5) and ($time is 519)) or (($tanktracks is 6) and ($time is 579)) or (($tanktracks is 1) and ($time is 639)) or (($tanktracks is 2) and ($time is 699))>>
-			<i>Morning radio, audition 3, line 27</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 400)) or (($tanktracks is 4) and ($time is 460)) or (($tanktracks is 5) and ($time is 520)) or (($tanktracks is 6) and ($time is 580)) or (($tanktracks is 1) and ($time is 640)) or (($tanktracks is 2) and ($time is 700))>>
-			<i>Morning radio, audition 3, line 28</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 401)) or (($tanktracks is 4) and ($time is 461)) or (($tanktracks is 5) and ($time is 521)) or (($tanktracks is 6) and ($time is 581)) or (($tanktracks is 1) and ($time is 641)) or (($tanktracks is 2) and ($time is 701))>>
-			<i>Morning radio, audition 3, line 29</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 402)) or (($tanktracks is 4) and ($time is 462)) or (($tanktracks is 5) and ($time is 522)) or (($tanktracks is 6) and ($time is 582)) or (($tanktracks is 1) and ($time is 642)) or (($tanktracks is 2) and ($time is 702))>>
-			<i>Morning radio, audition 3, line 30</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 403)) or (($tanktracks is 4) and ($time is 463)) or (($tanktracks is 5) and ($time is 523)) or (($tanktracks is 6) and ($time is 583)) or (($tanktracks is 1) and ($time is 643)) or (($tanktracks is 2) and ($time is 703))>>
-			<i>Morning radio, audition 3, line 31</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 404)) or (($tanktracks is 4) and ($time is 464)) or (($tanktracks is 5) and ($time is 524)) or (($tanktracks is 6) and ($time is 584)) or (($tanktracks is 1) and ($time is 644)) or (($tanktracks is 2) and ($time is 704))>>
-			<i>Morning radio, audition 3, line 32</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 405)) or (($tanktracks is 4) and ($time is 465)) or (($tanktracks is 5) and ($time is 525)) or (($tanktracks is 6) and ($time is 585)) or (($tanktracks is 1) and ($time is 645)) or (($tanktracks is 2) and ($time is 705))>>
-			<i>Morning radio, audition 3, line 33</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 406)) or (($tanktracks is 4) and ($time is 466)) or (($tanktracks is 5) and ($time is 526)) or (($tanktracks is 6) and ($time is 586)) or (($tanktracks is 1) and ($time is 646)) or (($tanktracks is 2) and ($time is 706))>>
-			<i>Morning radio, audition 3, line 34</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 407)) or (($tanktracks is 4) and ($time is 467)) or (($tanktracks is 5) and ($time is 527)) or (($tanktracks is 6) and ($time is 587)) or (($tanktracks is 1) and ($time is 647)) or (($tanktracks is 2) and ($time is 707))>>
-			<i>Morning radio, audition 3, line 35</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 408)) or (($tanktracks is 4) and ($time is 468)) or (($tanktracks is 5) and ($time is 528)) or (($tanktracks is 6) and ($time is 588)) or (($tanktracks is 1) and ($time is 648)) or (($tanktracks is 2) and ($time is 708))>>
-			<i>Morning radio, audition 3, line 36</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 409)) or (($tanktracks is 4) and ($time is 469)) or (($tanktracks is 5) and ($time is 529)) or (($tanktracks is 6) and ($time is 589)) or (($tanktracks is 1) and ($time is 649)) or (($tanktracks is 2) and ($time is 709))>>
-			<i>Morning radio, audition 3, line 37</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 410)) or (($tanktracks is 4) and ($time is 470)) or (($tanktracks is 5) and ($time is 530)) or (($tanktracks is 6) and ($time is 590)) or (($tanktracks is 1) and ($time is 650)) or (($tanktracks is 2) and ($time is 710))>>
-			<i>Morning radio, audition 3, line 38</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 411)) or (($tanktracks is 4) and ($time is 471)) or (($tanktracks is 5) and ($time is 531)) or (($tanktracks is 6) and ($time is 591)) or (($tanktracks is 1) and ($time is 651)) or (($tanktracks is 2) and ($time is 711))>>
-			<i>Morning radio, audition 3, line 39</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 412)) or (($tanktracks is 4) and ($time is 472)) or (($tanktracks is 5) and ($time is 532)) or (($tanktracks is 6) and ($time is 592)) or (($tanktracks is 1) and ($time is 652)) or (($tanktracks is 2) and ($time is 712))>>
-			<i>Morning radio, audition 3, line 40</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 413)) or (($tanktracks is 4) and ($time is 473)) or (($tanktracks is 5) and ($time is 533)) or (($tanktracks is 6) and ($time is 593)) or (($tanktracks is 1) and ($time is 653)) or (($tanktracks is 2) and ($time is 713))>>
-			<i>Morning radio, audition 3, line 41</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 414)) or (($tanktracks is 4) and ($time is 474)) or (($tanktracks is 5) and ($time is 534)) or (($tanktracks is 6) and ($time is 594)) or (($tanktracks is 1) and ($time is 654)) or (($tanktracks is 2) and ($time is 714))>>
-			<i>Morning radio, audition 3, line 42</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 415)) or (($tanktracks is 4) and ($time is 475)) or (($tanktracks is 5) and ($time is 535)) or (($tanktracks is 6) and ($time is 595)) or (($tanktracks is 1) and ($time is 655)) or (($tanktracks is 2) and ($time is 715))>>
-			<i>Morning radio, audition 3, line 43</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 416)) or (($tanktracks is 4) and ($time is 476)) or (($tanktracks is 5) and ($time is 536)) or (($tanktracks is 6) and ($time is 596)) or (($tanktracks is 1) and ($time is 656)) or (($tanktracks is 2) and ($time is 716))>>
-			<i>Morning radio, audition 3, line 44</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 417)) or (($tanktracks is 4) and ($time is 477)) or (($tanktracks is 5) and ($time is 537)) or (($tanktracks is 6) and ($time is 597)) or (($tanktracks is 1) and ($time is 657)) or (($tanktracks is 2) and ($time is 717))>>
-			<i>Morning radio, audition 3, line 45</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 418)) or (($tanktracks is 4) and ($time is 478)) or (($tanktracks is 5) and ($time is 538)) or (($tanktracks is 6) and ($time is 598)) or (($tanktracks is 1) and ($time is 658)) or (($tanktracks is 2) and ($time is 718))>>
-			<i>Morning radio, audition 3, line 46</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 419)) or (($tanktracks is 4) and ($time is 479)) or (($tanktracks is 5) and ($time is 539)) or (($tanktracks is 6) and ($time is 599)) or (($tanktracks is 1) and ($time is 659)) or (($tanktracks is 2) and ($time is 719))>>
-			<i>Morning radio, audition 3, line 47</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 373)) or (($tanktracks is 5) and ($time is 433)) or (($tanktracks is 6) and ($time is 493)) or (($tanktracks is 1) and ($time is 553)) or (($tanktracks is 2) and ($time is 613)) or (($tanktracks is 3) and ($time is 673))>>
-			<i>Morning radio, audition 4, line 1</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 374)) or (($tanktracks is 5) and ($time is 434)) or (($tanktracks is 6) and ($time is 494)) or (($tanktracks is 1) and ($time is 554)) or (($tanktracks is 2) and ($time is 614)) or (($tanktracks is 3) and ($time is 674))>>
-			<i>Morning radio, audition 4, line 2</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 375)) or (($tanktracks is 5) and ($time is 435)) or (($tanktracks is 6) and ($time is 495)) or (($tanktracks is 1) and ($time is 555)) or (($tanktracks is 2) and ($time is 615)) or (($tanktracks is 3) and ($time is 675))>>
-			<i>Morning radio, audition 4, line 3</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 376)) or (($tanktracks is 5) and ($time is 436)) or (($tanktracks is 6) and ($time is 496)) or (($tanktracks is 1) and ($time is 556)) or (($tanktracks is 2) and ($time is 616)) or (($tanktracks is 3) and ($time is 676))>>
-			<i>Morning radio, audition 4, line 4</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 377)) or (($tanktracks is 5) and ($time is 437)) or (($tanktracks is 6) and ($time is 497)) or (($tanktracks is 1) and ($time is 557)) or (($tanktracks is 2) and ($time is 617)) or (($tanktracks is 3) and ($time is 677))>>
-			<i>Morning radio, audition 4, line 5</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 378)) or (($tanktracks is 5) and ($time is 438)) or (($tanktracks is 6) and ($time is 498)) or (($tanktracks is 1) and ($time is 558)) or (($tanktracks is 2) and ($time is 618)) or (($tanktracks is 3) and ($time is 678))>>
-			<i>Morning radio, audition 4, line 6</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 379)) or (($tanktracks is 5) and ($time is 439)) or (($tanktracks is 6) and ($time is 499)) or (($tanktracks is 1) and ($time is 559)) or (($tanktracks is 2) and ($time is 619)) or (($tanktracks is 3) and ($time is 679))>>
-			<i>Morning radio, audition 4, line 7</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 380)) or (($tanktracks is 5) and ($time is 440)) or (($tanktracks is 6) and ($time is 500)) or (($tanktracks is 1) and ($time is 560)) or (($tanktracks is 2) and ($time is 620)) or (($tanktracks is 3) and ($time is 680))>>
-			<i>Morning radio, audition 4, line 8</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 381)) or (($tanktracks is 5) and ($time is 441)) or (($tanktracks is 6) and ($time is 501)) or (($tanktracks is 1) and ($time is 561)) or (($tanktracks is 2) and ($time is 621)) or (($tanktracks is 3) and ($time is 681))>>
-			<i>Morning radio, audition 4, line 9</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 382)) or (($tanktracks is 5) and ($time is 442)) or (($tanktracks is 6) and ($time is 502)) or (($tanktracks is 1) and ($time is 562)) or (($tanktracks is 2) and ($time is 622)) or (($tanktracks is 3) and ($time is 682))>>
-			<i>Morning radio, audition 4, line 10</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 383)) or (($tanktracks is 5) and ($time is 443)) or (($tanktracks is 6) and ($time is 503)) or (($tanktracks is 1) and ($time is 563)) or (($tanktracks is 2) and ($time is 623)) or (($tanktracks is 3) and ($time is 683))>>
-			<i>Morning radio, audition 4, line 11</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 384)) or (($tanktracks is 5) and ($time is 444)) or (($tanktracks is 6) and ($time is 504)) or (($tanktracks is 1) and ($time is 564)) or (($tanktracks is 2) and ($time is 624)) or (($tanktracks is 3) and ($time is 684))>>
-			<i>Morning radio, audition 4, line 12</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 385)) or (($tanktracks is 5) and ($time is 445)) or (($tanktracks is 6) and ($time is 505)) or (($tanktracks is 1) and ($time is 565)) or (($tanktracks is 2) and ($time is 625)) or (($tanktracks is 3) and ($time is 685))>>
-			<i>Morning radio, audition 4, line 13</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 386)) or (($tanktracks is 5) and ($time is 446)) or (($tanktracks is 6) and ($time is 506)) or (($tanktracks is 1) and ($time is 566)) or (($tanktracks is 2) and ($time is 626)) or (($tanktracks is 3) and ($time is 686))>>
-			<i>Morning radio, audition 4, line 14</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 387)) or (($tanktracks is 5) and ($time is 447)) or (($tanktracks is 6) and ($time is 507)) or (($tanktracks is 1) and ($time is 567)) or (($tanktracks is 2) and ($time is 627)) or (($tanktracks is 3) and ($time is 687))>>
-			<i>Morning radio, audition 4, line 15</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 388)) or (($tanktracks is 5) and ($time is 448)) or (($tanktracks is 6) and ($time is 508)) or (($tanktracks is 1) and ($time is 568)) or (($tanktracks is 2) and ($time is 628)) or (($tanktracks is 3) and ($time is 688))>>
-			<i>Morning radio, audition 4, line 16</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 389)) or (($tanktracks is 5) and ($time is 449)) or (($tanktracks is 6) and ($time is 509)) or (($tanktracks is 1) and ($time is 569)) or (($tanktracks is 2) and ($time is 629)) or (($tanktracks is 3) and ($time is 689))>>
-			<i>Morning radio, audition 4, line 17</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 390)) or (($tanktracks is 5) and ($time is 450)) or (($tanktracks is 6) and ($time is 510)) or (($tanktracks is 1) and ($time is 570)) or (($tanktracks is 2) and ($time is 630)) or (($tanktracks is 3) and ($time is 690))>>
-			<i>Morning radio, audition 4, line 18</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 391)) or (($tanktracks is 5) and ($time is 451)) or (($tanktracks is 6) and ($time is 511)) or (($tanktracks is 1) and ($time is 571)) or (($tanktracks is 2) and ($time is 631)) or (($tanktracks is 3) and ($time is 691))>>
-			<i>Morning radio, audition 4, line 19</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 392)) or (($tanktracks is 5) and ($time is 452)) or (($tanktracks is 6) and ($time is 512)) or (($tanktracks is 1) and ($time is 572)) or (($tanktracks is 2) and ($time is 632)) or (($tanktracks is 3) and ($time is 692))>>
-			<i>Morning radio, audition 4, line 20</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 393)) or (($tanktracks is 5) and ($time is 453)) or (($tanktracks is 6) and ($time is 513)) or (($tanktracks is 1) and ($time is 573)) or (($tanktracks is 2) and ($time is 633)) or (($tanktracks is 3) and ($time is 693))>>
-			<i>Morning radio, audition 4, line 21</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 394)) or (($tanktracks is 5) and ($time is 454)) or (($tanktracks is 6) and ($time is 514)) or (($tanktracks is 1) and ($time is 574)) or (($tanktracks is 2) and ($time is 634)) or (($tanktracks is 3) and ($time is 694))>>
-			<i>Morning radio, audition 4, line 22</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 395)) or (($tanktracks is 5) and ($time is 455)) or (($tanktracks is 6) and ($time is 515)) or (($tanktracks is 1) and ($time is 575)) or (($tanktracks is 2) and ($time is 635)) or (($tanktracks is 3) and ($time is 695))>>
-			<i>Morning radio, audition 4, line 23</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 396)) or (($tanktracks is 5) and ($time is 456)) or (($tanktracks is 6) and ($time is 516)) or (($tanktracks is 1) and ($time is 576)) or (($tanktracks is 2) and ($time is 636)) or (($tanktracks is 3) and ($time is 696))>>
-			<i>Morning radio, audition 4, line 24</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 397)) or (($tanktracks is 5) and ($time is 457)) or (($tanktracks is 6) and ($time is 517)) or (($tanktracks is 1) and ($time is 577)) or (($tanktracks is 2) and ($time is 637)) or (($tanktracks is 3) and ($time is 697))>>
-			<i>Morning radio, audition 4, line 25</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 398)) or (($tanktracks is 5) and ($time is 458)) or (($tanktracks is 6) and ($time is 518)) or (($tanktracks is 1) and ($time is 578)) or (($tanktracks is 2) and ($time is 638)) or (($tanktracks is 3) and ($time is 698))>>
-			<i>Morning radio, audition 4, line 26</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 399)) or (($tanktracks is 5) and ($time is 459)) or (($tanktracks is 6) and ($time is 519)) or (($tanktracks is 1) and ($time is 579)) or (($tanktracks is 2) and ($time is 639)) or (($tanktracks is 3) and ($time is 699))>>
-			<i>Morning radio, audition 4, line 27</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 400)) or (($tanktracks is 5) and ($time is 460)) or (($tanktracks is 6) and ($time is 520)) or (($tanktracks is 1) and ($time is 580)) or (($tanktracks is 2) and ($time is 640)) or (($tanktracks is 3) and ($time is 700))>>
-			<i>Morning radio, audition 4, line 28</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 401)) or (($tanktracks is 5) and ($time is 461)) or (($tanktracks is 6) and ($time is 521)) or (($tanktracks is 1) and ($time is 581)) or (($tanktracks is 2) and ($time is 641)) or (($tanktracks is 3) and ($time is 701))>>
-			<i>Morning radio, audition 4, line 29</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 402)) or (($tanktracks is 5) and ($time is 462)) or (($tanktracks is 6) and ($time is 522)) or (($tanktracks is 1) and ($time is 582)) or (($tanktracks is 2) and ($time is 642)) or (($tanktracks is 3) and ($time is 702))>>
-			<i>Morning radio, audition 4, line 30</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 403)) or (($tanktracks is 5) and ($time is 463)) or (($tanktracks is 6) and ($time is 523)) or (($tanktracks is 1) and ($time is 583)) or (($tanktracks is 2) and ($time is 643)) or (($tanktracks is 3) and ($time is 703))>>
-			<i>Morning radio, audition 4, line 31</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 404)) or (($tanktracks is 5) and ($time is 464)) or (($tanktracks is 6) and ($time is 524)) or (($tanktracks is 1) and ($time is 584)) or (($tanktracks is 2) and ($time is 644)) or (($tanktracks is 3) and ($time is 704))>>
-			<i>Morning radio, audition 4, line 32</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 405)) or (($tanktracks is 5) and ($time is 465)) or (($tanktracks is 6) and ($time is 525)) or (($tanktracks is 1) and ($time is 585)) or (($tanktracks is 2) and ($time is 645)) or (($tanktracks is 3) and ($time is 705))>>
-			<i>Morning radio, audition 4, line 33</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 406)) or (($tanktracks is 5) and ($time is 466)) or (($tanktracks is 6) and ($time is 526)) or (($tanktracks is 1) and ($time is 586)) or (($tanktracks is 2) and ($time is 646)) or (($tanktracks is 3) and ($time is 706))>>
-			<i>Morning radio, audition 4, line 34</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 407)) or (($tanktracks is 5) and ($time is 467)) or (($tanktracks is 6) and ($time is 527)) or (($tanktracks is 1) and ($time is 587)) or (($tanktracks is 2) and ($time is 647)) or (($tanktracks is 3) and ($time is 707))>>
-			<i>Morning radio, audition 4, line 35</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 408)) or (($tanktracks is 5) and ($time is 468)) or (($tanktracks is 6) and ($time is 528)) or (($tanktracks is 1) and ($time is 588)) or (($tanktracks is 2) and ($time is 648)) or (($tanktracks is 3) and ($time is 708))>>
-			<i>Morning radio, audition 4, line 36</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 409)) or (($tanktracks is 5) and ($time is 469)) or (($tanktracks is 6) and ($time is 529)) or (($tanktracks is 1) and ($time is 589)) or (($tanktracks is 2) and ($time is 649)) or (($tanktracks is 3) and ($time is 709))>>
-			<i>Morning radio, audition 4, line 37</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 410)) or (($tanktracks is 5) and ($time is 470)) or (($tanktracks is 6) and ($time is 530)) or (($tanktracks is 1) and ($time is 590)) or (($tanktracks is 2) and ($time is 650)) or (($tanktracks is 3) and ($time is 710))>>
-			<i>Morning radio, audition 4, line 38</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 411)) or (($tanktracks is 5) and ($time is 471)) or (($tanktracks is 6) and ($time is 531)) or (($tanktracks is 1) and ($time is 591)) or (($tanktracks is 2) and ($time is 651)) or (($tanktracks is 3) and ($time is 711))>>
-			<i>Morning radio, audition 4, line 39</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 412)) or (($tanktracks is 5) and ($time is 472)) or (($tanktracks is 6) and ($time is 532)) or (($tanktracks is 1) and ($time is 592)) or (($tanktracks is 2) and ($time is 652)) or (($tanktracks is 3) and ($time is 712))>>
-			<i>Morning radio, audition 4, line 40</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 413)) or (($tanktracks is 5) and ($time is 473)) or (($tanktracks is 6) and ($time is 533)) or (($tanktracks is 1) and ($time is 593)) or (($tanktracks is 2) and ($time is 653)) or (($tanktracks is 3) and ($time is 713))>>
-			<i>Morning radio, audition 4, line 41</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 414)) or (($tanktracks is 5) and ($time is 474)) or (($tanktracks is 6) and ($time is 534)) or (($tanktracks is 1) and ($time is 594)) or (($tanktracks is 2) and ($time is 654)) or (($tanktracks is 3) and ($time is 714))>>
-			<i>Morning radio, audition 4, line 42</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 415)) or (($tanktracks is 5) and ($time is 475)) or (($tanktracks is 6) and ($time is 535)) or (($tanktracks is 1) and ($time is 595)) or (($tanktracks is 2) and ($time is 655)) or (($tanktracks is 3) and ($time is 715))>>
-			<i>Morning radio, audition 4, line 43</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 416)) or (($tanktracks is 5) and ($time is 476)) or (($tanktracks is 6) and ($time is 536)) or (($tanktracks is 1) and ($time is 596)) or (($tanktracks is 2) and ($time is 656)) or (($tanktracks is 3) and ($time is 716))>>
-			<i>Morning radio, audition 4, line 44</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 417)) or (($tanktracks is 5) and ($time is 477)) or (($tanktracks is 6) and ($time is 537)) or (($tanktracks is 1) and ($time is 597)) or (($tanktracks is 2) and ($time is 657)) or (($tanktracks is 3) and ($time is 717))>>
-			<i>Morning radio, audition 4, line 45</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 418)) or (($tanktracks is 5) and ($time is 478)) or (($tanktracks is 6) and ($time is 538)) or (($tanktracks is 1) and ($time is 598)) or (($tanktracks is 2) and ($time is 658)) or (($tanktracks is 3) and ($time is 718))>>
-			<i>Morning radio, audition 4, line 46</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 419)) or (($tanktracks is 5) and ($time is 479)) or (($tanktracks is 6) and ($time is 539)) or (($tanktracks is 1) and ($time is 599)) or (($tanktracks is 2) and ($time is 659)) or (($tanktracks is 3) and ($time is 719))>>
-			<i>Morning radio, audition 4, line 47</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 373)) or (($tanktracks is 6) and ($time is 433)) or (($tanktracks is 1) and ($time is 493)) or (($tanktracks is 2) and ($time is 553)) or (($tanktracks is 3) and ($time is 613)) or (($tanktracks is 4) and ($time is 673))>>
-			<i>Morning radio, audition 5, line 1</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 374)) or (($tanktracks is 6) and ($time is 434)) or (($tanktracks is 1) and ($time is 494)) or (($tanktracks is 2) and ($time is 554)) or (($tanktracks is 3) and ($time is 614)) or (($tanktracks is 4) and ($time is 674))>>
-			<i>Morning radio, audition 5, line 2</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 375)) or (($tanktracks is 6) and ($time is 435)) or (($tanktracks is 1) and ($time is 495)) or (($tanktracks is 2) and ($time is 555)) or (($tanktracks is 3) and ($time is 615)) or (($tanktracks is 4) and ($time is 675))>>
-			<i>Morning radio, audition 5, line 3</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 376)) or (($tanktracks is 6) and ($time is 436)) or (($tanktracks is 1) and ($time is 496)) or (($tanktracks is 2) and ($time is 556)) or (($tanktracks is 3) and ($time is 616)) or (($tanktracks is 4) and ($time is 676))>>
-			<i>Morning radio, audition 5, line 4</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 377)) or (($tanktracks is 6) and ($time is 437)) or (($tanktracks is 1) and ($time is 497)) or (($tanktracks is 2) and ($time is 557)) or (($tanktracks is 3) and ($time is 617)) or (($tanktracks is 4) and ($time is 677))>>
-			<i>Morning radio, audition 5, line 5</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 378)) or (($tanktracks is 6) and ($time is 438)) or (($tanktracks is 1) and ($time is 498)) or (($tanktracks is 2) and ($time is 558)) or (($tanktracks is 3) and ($time is 618)) or (($tanktracks is 4) and ($time is 678))>>
-			<i>Morning radio, audition 5, line 6</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 379)) or (($tanktracks is 6) and ($time is 439)) or (($tanktracks is 1) and ($time is 499)) or (($tanktracks is 2) and ($time is 559)) or (($tanktracks is 3) and ($time is 619)) or (($tanktracks is 4) and ($time is 679))>>
-			<i>Morning radio, audition 5, line 7</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 380)) or (($tanktracks is 6) and ($time is 440)) or (($tanktracks is 1) and ($time is 500)) or (($tanktracks is 2) and ($time is 560)) or (($tanktracks is 3) and ($time is 620)) or (($tanktracks is 4) and ($time is 680))>>
-			<i>Morning radio, audition 5, line 8</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 381)) or (($tanktracks is 6) and ($time is 441)) or (($tanktracks is 1) and ($time is 501)) or (($tanktracks is 2) and ($time is 561)) or (($tanktracks is 3) and ($time is 621)) or (($tanktracks is 4) and ($time is 681))>>
-			<i>Morning radio, audition 5, line 9</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 382)) or (($tanktracks is 6) and ($time is 442)) or (($tanktracks is 1) and ($time is 502)) or (($tanktracks is 2) and ($time is 562)) or (($tanktracks is 3) and ($time is 622)) or (($tanktracks is 4) and ($time is 682))>>
-			<i>Morning radio, audition 5, line 10</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 383)) or (($tanktracks is 6) and ($time is 443)) or (($tanktracks is 1) and ($time is 503)) or (($tanktracks is 2) and ($time is 563)) or (($tanktracks is 3) and ($time is 623)) or (($tanktracks is 4) and ($time is 683))>>
-			<i>Morning radio, audition 5, line 11</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 384)) or (($tanktracks is 6) and ($time is 444)) or (($tanktracks is 1) and ($time is 504)) or (($tanktracks is 2) and ($time is 564)) or (($tanktracks is 3) and ($time is 624)) or (($tanktracks is 4) and ($time is 684))>>
-			<i>Morning radio, audition 5, line 12</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 385)) or (($tanktracks is 6) and ($time is 445)) or (($tanktracks is 1) and ($time is 505)) or (($tanktracks is 2) and ($time is 565)) or (($tanktracks is 3) and ($time is 625)) or (($tanktracks is 4) and ($time is 685))>>
-			<i>Morning radio, audition 5, line 13</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 386)) or (($tanktracks is 6) and ($time is 446)) or (($tanktracks is 1) and ($time is 506)) or (($tanktracks is 2) and ($time is 566)) or (($tanktracks is 3) and ($time is 626)) or (($tanktracks is 4) and ($time is 686))>>
-			<i>Morning radio, audition 5, line 14</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 387)) or (($tanktracks is 6) and ($time is 447)) or (($tanktracks is 1) and ($time is 507)) or (($tanktracks is 2) and ($time is 567)) or (($tanktracks is 3) and ($time is 627)) or (($tanktracks is 4) and ($time is 687))>>
-			<i>Morning radio, audition 5, line 15</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 388)) or (($tanktracks is 6) and ($time is 448)) or (($tanktracks is 1) and ($time is 508)) or (($tanktracks is 2) and ($time is 568)) or (($tanktracks is 3) and ($time is 628)) or (($tanktracks is 4) and ($time is 688))>>
-			<i>Morning radio, audition 5, line 16</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 389)) or (($tanktracks is 6) and ($time is 449)) or (($tanktracks is 1) and ($time is 509)) or (($tanktracks is 2) and ($time is 569)) or (($tanktracks is 3) and ($time is 629)) or (($tanktracks is 4) and ($time is 689))>>
-			<i>Morning radio, audition 5, line 17</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 390)) or (($tanktracks is 6) and ($time is 450)) or (($tanktracks is 1) and ($time is 510)) or (($tanktracks is 2) and ($time is 570)) or (($tanktracks is 3) and ($time is 630)) or (($tanktracks is 4) and ($time is 690))>>
-			<i>Morning radio, audition 5, line 18</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 391)) or (($tanktracks is 6) and ($time is 451)) or (($tanktracks is 1) and ($time is 511)) or (($tanktracks is 2) and ($time is 571)) or (($tanktracks is 3) and ($time is 631)) or (($tanktracks is 4) and ($time is 691))>>
-			<i>Morning radio, audition 5, line 19</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 392)) or (($tanktracks is 6) and ($time is 452)) or (($tanktracks is 1) and ($time is 512)) or (($tanktracks is 2) and ($time is 572)) or (($tanktracks is 3) and ($time is 632)) or (($tanktracks is 4) and ($time is 692))>>
-			<i>Morning radio, audition 5, line 20</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 393)) or (($tanktracks is 6) and ($time is 453)) or (($tanktracks is 1) and ($time is 513)) or (($tanktracks is 2) and ($time is 573)) or (($tanktracks is 3) and ($time is 633)) or (($tanktracks is 4) and ($time is 693))>>
-			<i>Morning radio, audition 5, line 21</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 394)) or (($tanktracks is 6) and ($time is 454)) or (($tanktracks is 1) and ($time is 514)) or (($tanktracks is 2) and ($time is 574)) or (($tanktracks is 3) and ($time is 634)) or (($tanktracks is 4) and ($time is 694))>>
-			<i>Morning radio, audition 5, line 22</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 395)) or (($tanktracks is 6) and ($time is 455)) or (($tanktracks is 1) and ($time is 515)) or (($tanktracks is 2) and ($time is 575)) or (($tanktracks is 3) and ($time is 635)) or (($tanktracks is 4) and ($time is 695))>>
-			<i>Morning radio, audition 5, line 23</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 396)) or (($tanktracks is 6) and ($time is 456)) or (($tanktracks is 1) and ($time is 516)) or (($tanktracks is 2) and ($time is 576)) or (($tanktracks is 3) and ($time is 636)) or (($tanktracks is 4) and ($time is 696))>>
-			<i>Morning radio, audition 5, line 24</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 397)) or (($tanktracks is 6) and ($time is 457)) or (($tanktracks is 1) and ($time is 517)) or (($tanktracks is 2) and ($time is 577)) or (($tanktracks is 3) and ($time is 637)) or (($tanktracks is 4) and ($time is 697))>>
-			<i>Morning radio, audition 5, line 25</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 398)) or (($tanktracks is 6) and ($time is 458)) or (($tanktracks is 1) and ($time is 518)) or (($tanktracks is 2) and ($time is 578)) or (($tanktracks is 3) and ($time is 638)) or (($tanktracks is 4) and ($time is 698))>>
-			<i>Morning radio, audition 5, line 26</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 399)) or (($tanktracks is 6) and ($time is 459)) or (($tanktracks is 1) and ($time is 519)) or (($tanktracks is 2) and ($time is 579)) or (($tanktracks is 3) and ($time is 639)) or (($tanktracks is 4) and ($time is 699))>>
-			<i>Morning radio, audition 5, line 27</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 400)) or (($tanktracks is 6) and ($time is 460)) or (($tanktracks is 1) and ($time is 520)) or (($tanktracks is 2) and ($time is 580)) or (($tanktracks is 3) and ($time is 640)) or (($tanktracks is 4) and ($time is 700))>>
-			<i>Morning radio, audition 5, line 28</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 401)) or (($tanktracks is 6) and ($time is 461)) or (($tanktracks is 1) and ($time is 521)) or (($tanktracks is 2) and ($time is 581)) or (($tanktracks is 3) and ($time is 641)) or (($tanktracks is 4) and ($time is 701))>>
-			<i>Morning radio, audition 5, line 29</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 402)) or (($tanktracks is 6) and ($time is 462)) or (($tanktracks is 1) and ($time is 522)) or (($tanktracks is 2) and ($time is 582)) or (($tanktracks is 3) and ($time is 642)) or (($tanktracks is 4) and ($time is 702))>>
-			<i>Morning radio, audition 5, line 30</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 403)) or (($tanktracks is 6) and ($time is 463)) or (($tanktracks is 1) and ($time is 523)) or (($tanktracks is 2) and ($time is 583)) or (($tanktracks is 3) and ($time is 643)) or (($tanktracks is 4) and ($time is 703))>>
-			<i>Morning radio, audition 5, line 31</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 404)) or (($tanktracks is 6) and ($time is 464)) or (($tanktracks is 1) and ($time is 524)) or (($tanktracks is 2) and ($time is 584)) or (($tanktracks is 3) and ($time is 644)) or (($tanktracks is 4) and ($time is 704))>>
-			<i>Morning radio, audition 5, line 32</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 405)) or (($tanktracks is 6) and ($time is 465)) or (($tanktracks is 1) and ($time is 525)) or (($tanktracks is 2) and ($time is 585)) or (($tanktracks is 3) and ($time is 645)) or (($tanktracks is 4) and ($time is 705))>>
-			<i>Morning radio, audition 5, line 33</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 406)) or (($tanktracks is 6) and ($time is 466)) or (($tanktracks is 1) and ($time is 526)) or (($tanktracks is 2) and ($time is 586)) or (($tanktracks is 3) and ($time is 646)) or (($tanktracks is 4) and ($time is 706))>>
-			<i>Morning radio, audition 5, line 34</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 407)) or (($tanktracks is 6) and ($time is 467)) or (($tanktracks is 1) and ($time is 527)) or (($tanktracks is 2) and ($time is 587)) or (($tanktracks is 3) and ($time is 647)) or (($tanktracks is 4) and ($time is 707))>>
-			<i>Morning radio, audition 5, line 35</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 408)) or (($tanktracks is 6) and ($time is 468)) or (($tanktracks is 1) and ($time is 528)) or (($tanktracks is 2) and ($time is 588)) or (($tanktracks is 3) and ($time is 648)) or (($tanktracks is 4) and ($time is 708))>>
-			<i>Morning radio, audition 5, line 36</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 409)) or (($tanktracks is 6) and ($time is 469)) or (($tanktracks is 1) and ($time is 529)) or (($tanktracks is 2) and ($time is 589)) or (($tanktracks is 3) and ($time is 649)) or (($tanktracks is 4) and ($time is 709))>>
-			<i>Morning radio, audition 5, line 37</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 410)) or (($tanktracks is 6) and ($time is 470)) or (($tanktracks is 1) and ($time is 530)) or (($tanktracks is 2) and ($time is 590)) or (($tanktracks is 3) and ($time is 650)) or (($tanktracks is 4) and ($time is 710))>>
-			<i>Morning radio, audition 5, line 38</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 411)) or (($tanktracks is 6) and ($time is 471)) or (($tanktracks is 1) and ($time is 531)) or (($tanktracks is 2) and ($time is 591)) or (($tanktracks is 3) and ($time is 651)) or (($tanktracks is 4) and ($time is 711))>>
-			<i>Morning radio, audition 5, line 39</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 412)) or (($tanktracks is 6) and ($time is 472)) or (($tanktracks is 1) and ($time is 532)) or (($tanktracks is 2) and ($time is 592)) or (($tanktracks is 3) and ($time is 652)) or (($tanktracks is 4) and ($time is 712))>>
-			<i>Morning radio, audition 5, line 40</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 413)) or (($tanktracks is 6) and ($time is 473)) or (($tanktracks is 1) and ($time is 533)) or (($tanktracks is 2) and ($time is 593)) or (($tanktracks is 3) and ($time is 653)) or (($tanktracks is 4) and ($time is 713))>>
-			<i>Morning radio, audition 5, line 41</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 414)) or (($tanktracks is 6) and ($time is 474)) or (($tanktracks is 1) and ($time is 534)) or (($tanktracks is 2) and ($time is 594)) or (($tanktracks is 3) and ($time is 654)) or (($tanktracks is 4) and ($time is 714))>>
-			<i>Morning radio, audition 5, line 42</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 415)) or (($tanktracks is 6) and ($time is 475)) or (($tanktracks is 1) and ($time is 535)) or (($tanktracks is 2) and ($time is 595)) or (($tanktracks is 3) and ($time is 655)) or (($tanktracks is 4) and ($time is 715))>>
-			<i>Morning radio, audition 5, line 43</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 416)) or (($tanktracks is 6) and ($time is 476)) or (($tanktracks is 1) and ($time is 536)) or (($tanktracks is 2) and ($time is 596)) or (($tanktracks is 3) and ($time is 656)) or (($tanktracks is 4) and ($time is 716))>>
-			<i>Morning radio, audition 5, line 44</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 417)) or (($tanktracks is 6) and ($time is 477)) or (($tanktracks is 1) and ($time is 537)) or (($tanktracks is 2) and ($time is 597)) or (($tanktracks is 3) and ($time is 657)) or (($tanktracks is 4) and ($time is 717))>>
-			<i>Morning radio, audition 5, line 45</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 418)) or (($tanktracks is 6) and ($time is 478)) or (($tanktracks is 1) and ($time is 538)) or (($tanktracks is 2) and ($time is 598)) or (($tanktracks is 3) and ($time is 658)) or (($tanktracks is 4) and ($time is 718))>>
-			<i>Morning radio, audition 5, line 46</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 419)) or (($tanktracks is 6) and ($time is 479)) or (($tanktracks is 1) and ($time is 539)) or (($tanktracks is 2) and ($time is 599)) or (($tanktracks is 3) and ($time is 659)) or (($tanktracks is 4) and ($time is 719))>>
-			<i>Morning radio, audition 5, line 47</i>
-			<br>
-		<</if>>
-	<</if>>
-	<<if $hour gte 12 and $hour lt 18>>
-		<<if (($tanktracks is 6) and ($time is 373)) or (($tanktracks is 1) and ($time is 433)) or (($tanktracks is 2) and ($time is 493)) or (($tanktracks is 3) and ($time is 553)) or (($tanktracks is 4) and ($time is 613)) or (($tanktracks is 5) and ($time is 673))>>
-			<i>Morning radio, audition 6, line 1</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 374)) or (($tanktracks is 1) and ($time is 434)) or (($tanktracks is 2) and ($time is 494)) or (($tanktracks is 3) and ($time is 554)) or (($tanktracks is 4) and ($time is 614)) or (($tanktracks is 5) and ($time is 674))>>
-			<i>Morning radio, audition 6, line 2</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 375)) or (($tanktracks is 1) and ($time is 435)) or (($tanktracks is 2) and ($time is 495)) or (($tanktracks is 3) and ($time is 555)) or (($tanktracks is 4) and ($time is 615)) or (($tanktracks is 5) and ($time is 675))>>
-			<i>Morning radio, audition 6, line 3</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 376)) or (($tanktracks is 1) and ($time is 436)) or (($tanktracks is 2) and ($time is 496)) or (($tanktracks is 3) and ($time is 556)) or (($tanktracks is 4) and ($time is 616)) or (($tanktracks is 5) and ($time is 676))>>
-			<i>Morning radio, audition 6, line 4</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 377)) or (($tanktracks is 1) and ($time is 437)) or (($tanktracks is 2) and ($time is 497)) or (($tanktracks is 3) and ($time is 557)) or (($tanktracks is 4) and ($time is 617)) or (($tanktracks is 5) and ($time is 677))>>
-			<i>Morning radio, audition 6, line 5</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 378)) or (($tanktracks is 1) and ($time is 438)) or (($tanktracks is 2) and ($time is 498)) or (($tanktracks is 3) and ($time is 558)) or (($tanktracks is 4) and ($time is 618)) or (($tanktracks is 5) and ($time is 678))>>
-			<i>Morning radio, audition 6, line 6</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 379)) or (($tanktracks is 1) and ($time is 439)) or (($tanktracks is 2) and ($time is 499)) or (($tanktracks is 3) and ($time is 559)) or (($tanktracks is 4) and ($time is 619)) or (($tanktracks is 5) and ($time is 679))>>
-			<i>Morning radio, audition 6, line 7</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 380)) or (($tanktracks is 1) and ($time is 440)) or (($tanktracks is 2) and ($time is 500)) or (($tanktracks is 3) and ($time is 560)) or (($tanktracks is 4) and ($time is 620)) or (($tanktracks is 5) and ($time is 680))>>
-			<i>Morning radio, audition 6, line 8</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 381)) or (($tanktracks is 1) and ($time is 441)) or (($tanktracks is 2) and ($time is 501)) or (($tanktracks is 3) and ($time is 561)) or (($tanktracks is 4) and ($time is 621)) or (($tanktracks is 5) and ($time is 681))>>
-			<i>Morning radio, audition 6, line 9</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 382)) or (($tanktracks is 1) and ($time is 442)) or (($tanktracks is 2) and ($time is 502)) or (($tanktracks is 3) and ($time is 562)) or (($tanktracks is 4) and ($time is 622)) or (($tanktracks is 5) and ($time is 682))>>
-			<i>Morning radio, audition 6, line 10</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 383)) or (($tanktracks is 1) and ($time is 443)) or (($tanktracks is 2) and ($time is 503)) or (($tanktracks is 3) and ($time is 563)) or (($tanktracks is 4) and ($time is 623)) or (($tanktracks is 5) and ($time is 683))>>
-			<i>Morning radio, audition 6, line 11</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 384)) or (($tanktracks is 1) and ($time is 444)) or (($tanktracks is 2) and ($time is 504)) or (($tanktracks is 3) and ($time is 564)) or (($tanktracks is 4) and ($time is 624)) or (($tanktracks is 5) and ($time is 684))>>
-			<i>Morning radio, audition 6, line 12</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 385)) or (($tanktracks is 1) and ($time is 445)) or (($tanktracks is 2) and ($time is 505)) or (($tanktracks is 3) and ($time is 565)) or (($tanktracks is 4) and ($time is 625)) or (($tanktracks is 5) and ($time is 685))>>
-			<i>Morning radio, audition 6, line 13</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 386)) or (($tanktracks is 1) and ($time is 446)) or (($tanktracks is 2) and ($time is 506)) or (($tanktracks is 3) and ($time is 566)) or (($tanktracks is 4) and ($time is 626)) or (($tanktracks is 5) and ($time is 686))>>
-			<i>Morning radio, audition 6, line 14</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 387)) or (($tanktracks is 1) and ($time is 447)) or (($tanktracks is 2) and ($time is 507)) or (($tanktracks is 3) and ($time is 567)) or (($tanktracks is 4) and ($time is 627)) or (($tanktracks is 5) and ($time is 687))>>
-			<i>Morning radio, audition 6, line 15</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 388)) or (($tanktracks is 1) and ($time is 448)) or (($tanktracks is 2) and ($time is 508)) or (($tanktracks is 3) and ($time is 568)) or (($tanktracks is 4) and ($time is 628)) or (($tanktracks is 5) and ($time is 688))>>
-			<i>Morning radio, audition 6, line 16</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 389)) or (($tanktracks is 1) and ($time is 449)) or (($tanktracks is 2) and ($time is 509)) or (($tanktracks is 3) and ($time is 569)) or (($tanktracks is 4) and ($time is 629)) or (($tanktracks is 5) and ($time is 689))>>
-			<i>Morning radio, audition 6, line 17</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 390)) or (($tanktracks is 1) and ($time is 450)) or (($tanktracks is 2) and ($time is 510)) or (($tanktracks is 3) and ($time is 570)) or (($tanktracks is 4) and ($time is 630)) or (($tanktracks is 5) and ($time is 690))>>
-			<i>Morning radio, audition 6, line 18</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 391)) or (($tanktracks is 1) and ($time is 451)) or (($tanktracks is 2) and ($time is 511)) or (($tanktracks is 3) and ($time is 571)) or (($tanktracks is 4) and ($time is 631)) or (($tanktracks is 5) and ($time is 691))>>
-			<i>Morning radio, audition 6, line 19</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 392)) or (($tanktracks is 1) and ($time is 452)) or (($tanktracks is 2) and ($time is 512)) or (($tanktracks is 3) and ($time is 572)) or (($tanktracks is 4) and ($time is 632)) or (($tanktracks is 5) and ($time is 692))>>
-			<i>Morning radio, audition 6, line 20</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 393)) or (($tanktracks is 1) and ($time is 453)) or (($tanktracks is 2) and ($time is 513)) or (($tanktracks is 3) and ($time is 573)) or (($tanktracks is 4) and ($time is 633)) or (($tanktracks is 5) and ($time is 693))>>
-			<i>Morning radio, audition 6, line 21</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 394)) or (($tanktracks is 1) and ($time is 454)) or (($tanktracks is 2) and ($time is 514)) or (($tanktracks is 3) and ($time is 574)) or (($tanktracks is 4) and ($time is 634)) or (($tanktracks is 5) and ($time is 694))>>
-			<i>Morning radio, audition 6, line 22</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 395)) or (($tanktracks is 1) and ($time is 455)) or (($tanktracks is 2) and ($time is 515)) or (($tanktracks is 3) and ($time is 575)) or (($tanktracks is 4) and ($time is 635)) or (($tanktracks is 5) and ($time is 695))>>
-			<i>Morning radio, audition 6, line 23</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 396)) or (($tanktracks is 1) and ($time is 456)) or (($tanktracks is 2) and ($time is 516)) or (($tanktracks is 3) and ($time is 576)) or (($tanktracks is 4) and ($time is 636)) or (($tanktracks is 5) and ($time is 696))>>
-			<i>Morning radio, audition 6, line 24</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 397)) or (($tanktracks is 1) and ($time is 457)) or (($tanktracks is 2) and ($time is 517)) or (($tanktracks is 3) and ($time is 577)) or (($tanktracks is 4) and ($time is 637)) or (($tanktracks is 5) and ($time is 697))>>
-			<i>Morning radio, audition 6, line 25</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 398)) or (($tanktracks is 1) and ($time is 458)) or (($tanktracks is 2) and ($time is 518)) or (($tanktracks is 3) and ($time is 578)) or (($tanktracks is 4) and ($time is 638)) or (($tanktracks is 5) and ($time is 698))>>
-			<i>Morning radio, audition 6, line 26</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 399)) or (($tanktracks is 1) and ($time is 459)) or (($tanktracks is 2) and ($time is 519)) or (($tanktracks is 3) and ($time is 579)) or (($tanktracks is 4) and ($time is 639)) or (($tanktracks is 5) and ($time is 699))>>
-			<i>Morning radio, audition 6, line 27</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 400)) or (($tanktracks is 1) and ($time is 460)) or (($tanktracks is 2) and ($time is 520)) or (($tanktracks is 3) and ($time is 580)) or (($tanktracks is 4) and ($time is 640)) or (($tanktracks is 5) and ($time is 700))>>
-			<i>Morning radio, audition 6, line 28</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 401)) or (($tanktracks is 1) and ($time is 461)) or (($tanktracks is 2) and ($time is 521)) or (($tanktracks is 3) and ($time is 581)) or (($tanktracks is 4) and ($time is 641)) or (($tanktracks is 5) and ($time is 701))>>
-			<i>Morning radio, audition 6, line 29</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 402)) or (($tanktracks is 1) and ($time is 462)) or (($tanktracks is 2) and ($time is 522)) or (($tanktracks is 3) and ($time is 582)) or (($tanktracks is 4) and ($time is 642)) or (($tanktracks is 5) and ($time is 702))>>
-			<i>Morning radio, audition 6, line 30</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 403)) or (($tanktracks is 1) and ($time is 463)) or (($tanktracks is 2) and ($time is 523)) or (($tanktracks is 3) and ($time is 583)) or (($tanktracks is 4) and ($time is 643)) or (($tanktracks is 5) and ($time is 703))>>
-			<i>Morning radio, audition 6, line 31</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 404)) or (($tanktracks is 1) and ($time is 464)) or (($tanktracks is 2) and ($time is 524)) or (($tanktracks is 3) and ($time is 584)) or (($tanktracks is 4) and ($time is 644)) or (($tanktracks is 5) and ($time is 704))>>
-			<i>Morning radio, audition 6, line 32</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 405)) or (($tanktracks is 1) and ($time is 465)) or (($tanktracks is 2) and ($time is 525)) or (($tanktracks is 3) and ($time is 585)) or (($tanktracks is 4) and ($time is 645)) or (($tanktracks is 5) and ($time is 705))>>
-			<i>Morning radio, audition 6, line 33</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 406)) or (($tanktracks is 1) and ($time is 466)) or (($tanktracks is 2) and ($time is 526)) or (($tanktracks is 3) and ($time is 586)) or (($tanktracks is 4) and ($time is 646)) or (($tanktracks is 5) and ($time is 706))>>
-			<i>Morning radio, audition 6, line 34</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 407)) or (($tanktracks is 1) and ($time is 467)) or (($tanktracks is 2) and ($time is 527)) or (($tanktracks is 3) and ($time is 587)) or (($tanktracks is 4) and ($time is 647)) or (($tanktracks is 5) and ($time is 707))>>
-			<i>Morning radio, audition 6, line 35</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 408)) or (($tanktracks is 1) and ($time is 468)) or (($tanktracks is 2) and ($time is 528)) or (($tanktracks is 3) and ($time is 588)) or (($tanktracks is 4) and ($time is 648)) or (($tanktracks is 5) and ($time is 708))>>
-			<i>Morning radio, audition 6, line 36</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 409)) or (($tanktracks is 1) and ($time is 469)) or (($tanktracks is 2) and ($time is 529)) or (($tanktracks is 3) and ($time is 589)) or (($tanktracks is 4) and ($time is 649)) or (($tanktracks is 5) and ($time is 709))>>
-			<i>Morning radio, audition 6, line 37</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 410)) or (($tanktracks is 1) and ($time is 470)) or (($tanktracks is 2) and ($time is 530)) or (($tanktracks is 3) and ($time is 590)) or (($tanktracks is 4) and ($time is 650)) or (($tanktracks is 5) and ($time is 710))>>
-			<i>Morning radio, audition 6, line 38</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 411)) or (($tanktracks is 1) and ($time is 471)) or (($tanktracks is 2) and ($time is 531)) or (($tanktracks is 3) and ($time is 591)) or (($tanktracks is 4) and ($time is 651)) or (($tanktracks is 5) and ($time is 711))>>
-			<i>Morning radio, audition 6, line 39</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 412)) or (($tanktracks is 1) and ($time is 472)) or (($tanktracks is 2) and ($time is 532)) or (($tanktracks is 3) and ($time is 592)) or (($tanktracks is 4) and ($time is 652)) or (($tanktracks is 5) and ($time is 712))>>
-			<i>Morning radio, audition 6, line 40</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 413)) or (($tanktracks is 1) and ($time is 473)) or (($tanktracks is 2) and ($time is 533)) or (($tanktracks is 3) and ($time is 593)) or (($tanktracks is 4) and ($time is 653)) or (($tanktracks is 5) and ($time is 713))>>
-			<i>Morning radio, audition 6, line 41</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 414)) or (($tanktracks is 1) and ($time is 474)) or (($tanktracks is 2) and ($time is 534)) or (($tanktracks is 3) and ($time is 594)) or (($tanktracks is 4) and ($time is 654)) or (($tanktracks is 5) and ($time is 714))>>
-			<i>Morning radio, audition 6, line 42</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 415)) or (($tanktracks is 1) and ($time is 475)) or (($tanktracks is 2) and ($time is 535)) or (($tanktracks is 3) and ($time is 595)) or (($tanktracks is 4) and ($time is 655)) or (($tanktracks is 5) and ($time is 715))>>
-			<i>Morning radio, audition 6, line 43</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 416)) or (($tanktracks is 1) and ($time is 476)) or (($tanktracks is 2) and ($time is 536)) or (($tanktracks is 3) and ($time is 596)) or (($tanktracks is 4) and ($time is 656)) or (($tanktracks is 5) and ($time is 716))>>
-			<i>Morning radio, audition 6, line 44</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 417)) or (($tanktracks is 1) and ($time is 477)) or (($tanktracks is 2) and ($time is 537)) or (($tanktracks is 3) and ($time is 597)) or (($tanktracks is 4) and ($time is 657)) or (($tanktracks is 5) and ($time is 717))>>
-			<i>Morning radio, audition 6, line 45</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 418)) or (($tanktracks is 1) and ($time is 478)) or (($tanktracks is 2) and ($time is 538)) or (($tanktracks is 3) and ($time is 598)) or (($tanktracks is 4) and ($time is 658)) or (($tanktracks is 5) and ($time is 718))>>
-			<i>Morning radio, audition 6, line 46</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 419)) or (($tanktracks is 1) and ($time is 479)) or (($tanktracks is 2) and ($time is 539)) or (($tanktracks is 3) and ($time is 599)) or (($tanktracks is 4) and ($time is 659)) or (($tanktracks is 5) and ($time is 719))>>
-			<i>Morning radio, audition 6, line 47</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 733)) or (($tanktracks is 2) and ($time is 793)) or (($tanktracks is 3) and ($time is 853)) or (($tanktracks is 4) and ($time is 913)) or (($tanktracks is 5) and ($time is 973)) or (($tanktracks is 6) and ($time is 1033))>>
-			<i>Afternoon radio, audition 1, line 1</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 734)) or (($tanktracks is 2) and ($time is 794)) or (($tanktracks is 3) and ($time is 854)) or (($tanktracks is 4) and ($time is 914)) or (($tanktracks is 5) and ($time is 974)) or (($tanktracks is 6) and ($time is 1034))>>
-			<i>Afternoon radio, audition 1, line 2</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 735)) or (($tanktracks is 2) and ($time is 795)) or (($tanktracks is 3) and ($time is 855)) or (($tanktracks is 4) and ($time is 915)) or (($tanktracks is 5) and ($time is 975)) or (($tanktracks is 6) and ($time is 1035))>>
-			<i>Afternoon radio, audition 1, line 3</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 736)) or (($tanktracks is 2) and ($time is 796)) or (($tanktracks is 3) and ($time is 856)) or (($tanktracks is 4) and ($time is 916)) or (($tanktracks is 5) and ($time is 976)) or (($tanktracks is 6) and ($time is 1036))>>
-			<i>Afternoon radio, audition 1, line 4</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 737)) or (($tanktracks is 2) and ($time is 797)) or (($tanktracks is 3) and ($time is 857)) or (($tanktracks is 4) and ($time is 917)) or (($tanktracks is 5) and ($time is 977)) or (($tanktracks is 6) and ($time is 1037))>>
-			<i>Afternoon radio, audition 1, line 5</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 738)) or (($tanktracks is 2) and ($time is 798)) or (($tanktracks is 3) and ($time is 858)) or (($tanktracks is 4) and ($time is 918)) or (($tanktracks is 5) and ($time is 978)) or (($tanktracks is 6) and ($time is 1038))>>
-			<i>Afternoon radio, audition 1, line 6</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 739)) or (($tanktracks is 2) and ($time is 799)) or (($tanktracks is 3) and ($time is 859)) or (($tanktracks is 4) and ($time is 919)) or (($tanktracks is 5) and ($time is 979)) or (($tanktracks is 6) and ($time is 1039))>>
-			<i>Afternoon radio, audition 1, line 7</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 740)) or (($tanktracks is 2) and ($time is 800)) or (($tanktracks is 3) and ($time is 860)) or (($tanktracks is 4) and ($time is 920)) or (($tanktracks is 5) and ($time is 980)) or (($tanktracks is 6) and ($time is 1040))>>
-			<i>Afternoon radio, audition 1, line 8</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 741)) or (($tanktracks is 2) and ($time is 801)) or (($tanktracks is 3) and ($time is 861)) or (($tanktracks is 4) and ($time is 921)) or (($tanktracks is 5) and ($time is 981)) or (($tanktracks is 6) and ($time is 1041))>>
-			<i>Afternoon radio, audition 1, line 9</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 742)) or (($tanktracks is 2) and ($time is 802)) or (($tanktracks is 3) and ($time is 862)) or (($tanktracks is 4) and ($time is 922)) or (($tanktracks is 5) and ($time is 982)) or (($tanktracks is 6) and ($time is 1042))>>
-			<i>Afternoon radio, audition 1, line 10</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 743)) or (($tanktracks is 2) and ($time is 803)) or (($tanktracks is 3) and ($time is 863)) or (($tanktracks is 4) and ($time is 923)) or (($tanktracks is 5) and ($time is 983)) or (($tanktracks is 6) and ($time is 1043))>>
-			<i>Afternoon radio, audition 1, line 11</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 744)) or (($tanktracks is 2) and ($time is 804)) or (($tanktracks is 3) and ($time is 864)) or (($tanktracks is 4) and ($time is 924)) or (($tanktracks is 5) and ($time is 984)) or (($tanktracks is 6) and ($time is 1044))>>
-			<i>Afternoon radio, audition 1, line 12</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 745)) or (($tanktracks is 2) and ($time is 805)) or (($tanktracks is 3) and ($time is 865)) or (($tanktracks is 4) and ($time is 925)) or (($tanktracks is 5) and ($time is 985)) or (($tanktracks is 6) and ($time is 1045))>>
-			<i>Afternoon radio, audition 1, line 13</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 746)) or (($tanktracks is 2) and ($time is 806)) or (($tanktracks is 3) and ($time is 866)) or (($tanktracks is 4) and ($time is 926)) or (($tanktracks is 5) and ($time is 986)) or (($tanktracks is 6) and ($time is 1046))>>
-			<i>Afternoon radio, audition 1, line 14</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 747)) or (($tanktracks is 2) and ($time is 807)) or (($tanktracks is 3) and ($time is 867)) or (($tanktracks is 4) and ($time is 927)) or (($tanktracks is 5) and ($time is 987)) or (($tanktracks is 6) and ($time is 1047))>>
-			<i>Afternoon radio, audition 1, line 15</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 748)) or (($tanktracks is 2) and ($time is 808)) or (($tanktracks is 3) and ($time is 868)) or (($tanktracks is 4) and ($time is 928)) or (($tanktracks is 5) and ($time is 988)) or (($tanktracks is 6) and ($time is 1048))>>
-			<i>Afternoon radio, audition 1, line 16</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 749)) or (($tanktracks is 2) and ($time is 809)) or (($tanktracks is 3) and ($time is 869)) or (($tanktracks is 4) and ($time is 929)) or (($tanktracks is 5) and ($time is 989)) or (($tanktracks is 6) and ($time is 1049))>>
-			<i>Afternoon radio, audition 1, line 17</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 750)) or (($tanktracks is 2) and ($time is 810)) or (($tanktracks is 3) and ($time is 870)) or (($tanktracks is 4) and ($time is 930)) or (($tanktracks is 5) and ($time is 990)) or (($tanktracks is 6) and ($time is 1050))>>
-			<i>Afternoon radio, audition 1, line 18</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 751)) or (($tanktracks is 2) and ($time is 811)) or (($tanktracks is 3) and ($time is 871)) or (($tanktracks is 4) and ($time is 931)) or (($tanktracks is 5) and ($time is 991)) or (($tanktracks is 6) and ($time is 1051))>>
-			<i>Afternoon radio, audition 1, line 19</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 752)) or (($tanktracks is 2) and ($time is 812)) or (($tanktracks is 3) and ($time is 872)) or (($tanktracks is 4) and ($time is 932)) or (($tanktracks is 5) and ($time is 992)) or (($tanktracks is 6) and ($time is 1052))>>
-			<i>Afternoon radio, audition 1, line 20</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 753)) or (($tanktracks is 2) and ($time is 813)) or (($tanktracks is 3) and ($time is 873)) or (($tanktracks is 4) and ($time is 933)) or (($tanktracks is 5) and ($time is 993)) or (($tanktracks is 6) and ($time is 1053))>>
-			<i>Afternoon radio, audition 1, line 21</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 754)) or (($tanktracks is 2) and ($time is 814)) or (($tanktracks is 3) and ($time is 874)) or (($tanktracks is 4) and ($time is 934)) or (($tanktracks is 5) and ($time is 994)) or (($tanktracks is 6) and ($time is 1054))>>
-			<i>Afternoon radio, audition 1, line 22</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 755)) or (($tanktracks is 2) and ($time is 815)) or (($tanktracks is 3) and ($time is 875)) or (($tanktracks is 4) and ($time is 935)) or (($tanktracks is 5) and ($time is 995)) or (($tanktracks is 6) and ($time is 1055))>>
-			<i>Afternoon radio, audition 1, line 23</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 756)) or (($tanktracks is 2) and ($time is 816)) or (($tanktracks is 3) and ($time is 876)) or (($tanktracks is 4) and ($time is 936)) or (($tanktracks is 5) and ($time is 996)) or (($tanktracks is 6) and ($time is 1056))>>
-			<i>Afternoon radio, audition 1, line 24</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 757)) or (($tanktracks is 2) and ($time is 817)) or (($tanktracks is 3) and ($time is 877)) or (($tanktracks is 4) and ($time is 937)) or (($tanktracks is 5) and ($time is 997)) or (($tanktracks is 6) and ($time is 1057))>>
-			<i>Afternoon radio, audition 1, line 25</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 758)) or (($tanktracks is 2) and ($time is 818)) or (($tanktracks is 3) and ($time is 878)) or (($tanktracks is 4) and ($time is 938)) or (($tanktracks is 5) and ($time is 998)) or (($tanktracks is 6) and ($time is 1058))>>
-			<i>Afternoon radio, audition 1, line 26</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 759)) or (($tanktracks is 2) and ($time is 819)) or (($tanktracks is 3) and ($time is 879)) or (($tanktracks is 4) and ($time is 939)) or (($tanktracks is 5) and ($time is 999)) or (($tanktracks is 6) and ($time is 1059))>>
-			<i>Afternoon radio, audition 1, line 27</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 760)) or (($tanktracks is 2) and ($time is 820)) or (($tanktracks is 3) and ($time is 880)) or (($tanktracks is 4) and ($time is 940)) or (($tanktracks is 5) and ($time is 1000)) or (($tanktracks is 6) and ($time is 1060))>>
-			<i>Afternoon radio, audition 1, line 28</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 761)) or (($tanktracks is 2) and ($time is 821)) or (($tanktracks is 3) and ($time is 881)) or (($tanktracks is 4) and ($time is 941)) or (($tanktracks is 5) and ($time is 1001)) or (($tanktracks is 6) and ($time is 1061))>>
-			<i>Afternoon radio, audition 1, line 29</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 762)) or (($tanktracks is 2) and ($time is 822)) or (($tanktracks is 3) and ($time is 882)) or (($tanktracks is 4) and ($time is 942)) or (($tanktracks is 5) and ($time is 1002)) or (($tanktracks is 6) and ($time is 1062))>>
-			<i>Afternoon radio, audition 1, line 30</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 763)) or (($tanktracks is 2) and ($time is 823)) or (($tanktracks is 3) and ($time is 883)) or (($tanktracks is 4) and ($time is 943)) or (($tanktracks is 5) and ($time is 1003)) or (($tanktracks is 6) and ($time is 1063))>>
-			<i>Afternoon radio, audition 1, line 31</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 764)) or (($tanktracks is 2) and ($time is 824)) or (($tanktracks is 3) and ($time is 884)) or (($tanktracks is 4) and ($time is 944)) or (($tanktracks is 5) and ($time is 1004)) or (($tanktracks is 6) and ($time is 1064))>>
-			<i>Afternoon radio, audition 1, line 32</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 765)) or (($tanktracks is 2) and ($time is 825)) or (($tanktracks is 3) and ($time is 885)) or (($tanktracks is 4) and ($time is 945)) or (($tanktracks is 5) and ($time is 1005)) or (($tanktracks is 6) and ($time is 1065))>>
-			<i>Afternoon radio, audition 1, line 33</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 766)) or (($tanktracks is 2) and ($time is 826)) or (($tanktracks is 3) and ($time is 886)) or (($tanktracks is 4) and ($time is 946)) or (($tanktracks is 5) and ($time is 1006)) or (($tanktracks is 6) and ($time is 1066))>>
-			<i>Afternoon radio, audition 1, line 34</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 767)) or (($tanktracks is 2) and ($time is 827)) or (($tanktracks is 3) and ($time is 887)) or (($tanktracks is 4) and ($time is 947)) or (($tanktracks is 5) and ($time is 1007)) or (($tanktracks is 6) and ($time is 1067))>>
-			<i>Afternoon radio, audition 1, line 35</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 768)) or (($tanktracks is 2) and ($time is 828)) or (($tanktracks is 3) and ($time is 888)) or (($tanktracks is 4) and ($time is 948)) or (($tanktracks is 5) and ($time is 1008)) or (($tanktracks is 6) and ($time is 1068))>>
-			<i>Afternoon radio, audition 1, line 36</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 769)) or (($tanktracks is 2) and ($time is 829)) or (($tanktracks is 3) and ($time is 889)) or (($tanktracks is 4) and ($time is 949)) or (($tanktracks is 5) and ($time is 1009)) or (($tanktracks is 6) and ($time is 1069))>>
-			<i>Afternoon radio, audition 1, line 37</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 770)) or (($tanktracks is 2) and ($time is 830)) or (($tanktracks is 3) and ($time is 890)) or (($tanktracks is 4) and ($time is 950)) or (($tanktracks is 5) and ($time is 1010)) or (($tanktracks is 6) and ($time is 1070))>>
-			<i>Afternoon radio, audition 1, line 38</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 771)) or (($tanktracks is 2) and ($time is 831)) or (($tanktracks is 3) and ($time is 891)) or (($tanktracks is 4) and ($time is 951)) or (($tanktracks is 5) and ($time is 1011)) or (($tanktracks is 6) and ($time is 1071))>>
-			<i>Afternoon radio, audition 1, line 39</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 772)) or (($tanktracks is 2) and ($time is 832)) or (($tanktracks is 3) and ($time is 892)) or (($tanktracks is 4) and ($time is 952)) or (($tanktracks is 5) and ($time is 1012)) or (($tanktracks is 6) and ($time is 1072))>>
-			<i>Afternoon radio, audition 1, line 40</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 773)) or (($tanktracks is 2) and ($time is 833)) or (($tanktracks is 3) and ($time is 893)) or (($tanktracks is 4) and ($time is 953)) or (($tanktracks is 5) and ($time is 1013)) or (($tanktracks is 6) and ($time is 1073))>>
-			<i>Afternoon radio, audition 1, line 41</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 774)) or (($tanktracks is 2) and ($time is 834)) or (($tanktracks is 3) and ($time is 894)) or (($tanktracks is 4) and ($time is 954)) or (($tanktracks is 5) and ($time is 1014)) or (($tanktracks is 6) and ($time is 1074))>>
-			<i>Afternoon radio, audition 1, line 42</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 775)) or (($tanktracks is 2) and ($time is 835)) or (($tanktracks is 3) and ($time is 895)) or (($tanktracks is 4) and ($time is 955)) or (($tanktracks is 4) and ($time is 1015)) or (($tanktracks is 6) and ($time is 1075))>>
-			<i>Afternoon radio, audition 1, line 43</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 776)) or (($tanktracks is 2) and ($time is 836)) or (($tanktracks is 3) and ($time is 896)) or (($tanktracks is 4) and ($time is 956)) or (($tanktracks is 5) and ($time is 1016)) or (($tanktracks is 6) and ($time is 1076))>>
-			<i>Afternoon radio, audition 1, line 44</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 777)) or (($tanktracks is 2) and ($time is 837)) or (($tanktracks is 3) and ($time is 897)) or (($tanktracks is 4) and ($time is 957)) or (($tanktracks is 5) and ($time is 1017)) or (($tanktracks is 6) and ($time is 1077))>>
-			<i>Afternoon radio, audition 1, line 45</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 778)) or (($tanktracks is 2) and ($time is 838)) or (($tanktracks is 3) and ($time is 898)) or (($tanktracks is 4) and ($time is 958)) or (($tanktracks is 5) and ($time is 1018)) or (($tanktracks is 6) and ($time is 1078))>>
-			<i>Afternoon radio, audition 1, line 46</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 779)) or (($tanktracks is 2) and ($time is 839)) or (($tanktracks is 3) and ($time is 899)) or (($tanktracks is 4) and ($time is 959)) or (($tanktracks is 5) and ($time is 1019)) or (($tanktracks is 6) and ($time is 1079))>>
-			<i>Afternoon radio, audition 1, line 47</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 733)) or (($tanktracks is 3) and ($time is 793)) or (($tanktracks is 4) and ($time is 853)) or (($tanktracks is 5) and ($time is 913)) or (($tanktracks is 6) and ($time is 973)) or (($tanktracks is 1) and ($time is 1033))>>
-			<i>Afternoon radio, audition 2, line 1</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 734)) or (($tanktracks is 3) and ($time is 794)) or (($tanktracks is 4) and ($time is 854)) or (($tanktracks is 5) and ($time is 914)) or (($tanktracks is 6) and ($time is 974)) or (($tanktracks is 1) and ($time is 1034))>>
-			<i>Afternoon radio, audition 2, line 2</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 735)) or (($tanktracks is 3) and ($time is 795)) or (($tanktracks is 4) and ($time is 855)) or (($tanktracks is 5) and ($time is 915)) or (($tanktracks is 6) and ($time is 975)) or (($tanktracks is 1) and ($time is 1035))>>
-			<i>Afternoon radio, audition 2, line 3</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 736)) or (($tanktracks is 3) and ($time is 796)) or (($tanktracks is 4) and ($time is 856)) or (($tanktracks is 5) and ($time is 916)) or (($tanktracks is 6) and ($time is 976)) or (($tanktracks is 1) and ($time is 1036))>>
-			<i>Afternoon radio, audition 2, line 4</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 737)) or (($tanktracks is 3) and ($time is 797)) or (($tanktracks is 4) and ($time is 857)) or (($tanktracks is 5) and ($time is 917)) or (($tanktracks is 6) and ($time is 977)) or (($tanktracks is 1) and ($time is 1037))>>
-			<i>Afternoon radio, audition 2, line 5</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 738)) or (($tanktracks is 3) and ($time is 798)) or (($tanktracks is 4) and ($time is 858)) or (($tanktracks is 5) and ($time is 918)) or (($tanktracks is 6) and ($time is 978)) or (($tanktracks is 1) and ($time is 1038))>>
-			<i>Afternoon radio, audition 2, line 6</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 739)) or (($tanktracks is 3) and ($time is 799)) or (($tanktracks is 4) and ($time is 859)) or (($tanktracks is 5) and ($time is 919)) or (($tanktracks is 6) and ($time is 979)) or (($tanktracks is 1) and ($time is 1039))>>
-			<i>Afternoon radio, audition 2, line 7</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 740)) or (($tanktracks is 3) and ($time is 800)) or (($tanktracks is 4) and ($time is 860)) or (($tanktracks is 5) and ($time is 920)) or (($tanktracks is 6) and ($time is 980)) or (($tanktracks is 1) and ($time is 1040))>>
-			<i>Afternoon radio, audition 2, line 8</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 741)) or (($tanktracks is 3) and ($time is 801)) or (($tanktracks is 4) and ($time is 861)) or (($tanktracks is 5) and ($time is 921)) or (($tanktracks is 6) and ($time is 981)) or (($tanktracks is 1) and ($time is 1041))>>
-			<i>Afternoon radio, audition 2, line 9</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 742)) or (($tanktracks is 3) and ($time is 802)) or (($tanktracks is 4) and ($time is 862)) or (($tanktracks is 5) and ($time is 922)) or (($tanktracks is 6) and ($time is 982)) or (($tanktracks is 1) and ($time is 1042))>>
-			<i>Afternoon radio, audition 2, line 10</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 743)) or (($tanktracks is 3) and ($time is 803)) or (($tanktracks is 4) and ($time is 863)) or (($tanktracks is 5) and ($time is 923)) or (($tanktracks is 6) and ($time is 983)) or (($tanktracks is 1) and ($time is 1043))>>
-			<i>Afternoon radio, audition 2, line 11</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 744)) or (($tanktracks is 3) and ($time is 804)) or (($tanktracks is 4) and ($time is 864)) or (($tanktracks is 5) and ($time is 924)) or (($tanktracks is 6) and ($time is 984)) or (($tanktracks is 1) and ($time is 1044))>>
-			<i>Afternoon radio, audition 2, line 12</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 745)) or (($tanktracks is 3) and ($time is 805)) or (($tanktracks is 4) and ($time is 865)) or (($tanktracks is 5) and ($time is 925)) or (($tanktracks is 6) and ($time is 985)) or (($tanktracks is 1) and ($time is 1045))>>
-			<i>Afternoon radio, audition 2, line 13</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 746)) or (($tanktracks is 3) and ($time is 806)) or (($tanktracks is 4) and ($time is 866)) or (($tanktracks is 5) and ($time is 926)) or (($tanktracks is 6) and ($time is 986)) or (($tanktracks is 1) and ($time is 1046))>>
-			<i>Afternoon radio, audition 2, line 14</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 747)) or (($tanktracks is 3) and ($time is 807)) or (($tanktracks is 4) and ($time is 867)) or (($tanktracks is 5) and ($time is 927)) or (($tanktracks is 6) and ($time is 987)) or (($tanktracks is 1) and ($time is 1047))>>
-			<i>Afternoon radio, audition 2, line 15</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 748)) or (($tanktracks is 3) and ($time is 808)) or (($tanktracks is 4) and ($time is 868)) or (($tanktracks is 5) and ($time is 928)) or (($tanktracks is 6) and ($time is 988)) or (($tanktracks is 1) and ($time is 1048))>>
-			<i>Afternoon radio, audition 2, line 16</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 749)) or (($tanktracks is 3) and ($time is 809)) or (($tanktracks is 4) and ($time is 869)) or (($tanktracks is 5) and ($time is 929)) or (($tanktracks is 6) and ($time is 989)) or (($tanktracks is 1) and ($time is 1049))>>
-			<i>Afternoon radio, audition 2, line 17</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 750)) or (($tanktracks is 3) and ($time is 810)) or (($tanktracks is 4) and ($time is 870)) or (($tanktracks is 5) and ($time is 930)) or (($tanktracks is 6) and ($time is 990)) or (($tanktracks is 1) and ($time is 1050))>>
-			<i>Afternoon radio, audition 2, line 18</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 751)) or (($tanktracks is 3) and ($time is 811)) or (($tanktracks is 4) and ($time is 871)) or (($tanktracks is 5) and ($time is 931)) or (($tanktracks is 6) and ($time is 991)) or (($tanktracks is 1) and ($time is 1051))>>
-			<i>Afternoon radio, audition 2, line 19</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 752)) or (($tanktracks is 3) and ($time is 812)) or (($tanktracks is 4) and ($time is 872)) or (($tanktracks is 5) and ($time is 932)) or (($tanktracks is 6) and ($time is 992)) or (($tanktracks is 1) and ($time is 1052))>>
-			<i>Afternoon radio, audition 2, line 20</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 753)) or (($tanktracks is 3) and ($time is 813)) or (($tanktracks is 4) and ($time is 873)) or (($tanktracks is 5) and ($time is 933)) or (($tanktracks is 6) and ($time is 993)) or (($tanktracks is 1) and ($time is 1053))>>
-			<i>Afternoon radio, audition 2, line 21</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 754)) or (($tanktracks is 3) and ($time is 814)) or (($tanktracks is 4) and ($time is 874)) or (($tanktracks is 5) and ($time is 934)) or (($tanktracks is 6) and ($time is 994)) or (($tanktracks is 1) and ($time is 1054))>>
-			<i>Afternoon radio, audition 2, line 22</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 755)) or (($tanktracks is 3) and ($time is 815)) or (($tanktracks is 4) and ($time is 875)) or (($tanktracks is 5) and ($time is 935)) or (($tanktracks is 6) and ($time is 995)) or (($tanktracks is 1) and ($time is 1055))>>
-			<i>Afternoon radio, audition 2, line 23</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 756)) or (($tanktracks is 3) and ($time is 816)) or (($tanktracks is 4) and ($time is 876)) or (($tanktracks is 5) and ($time is 936)) or (($tanktracks is 6) and ($time is 996)) or (($tanktracks is 1) and ($time is 1056))>>
-			<i>Afternoon radio, audition 2, line 24</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 757)) or (($tanktracks is 3) and ($time is 817)) or (($tanktracks is 4) and ($time is 877)) or (($tanktracks is 5) and ($time is 937)) or (($tanktracks is 6) and ($time is 997)) or (($tanktracks is 1) and ($time is 1057))>>
-			<i>Afternoon radio, audition 2, line 25</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 758)) or (($tanktracks is 3) and ($time is 818)) or (($tanktracks is 4) and ($time is 878)) or (($tanktracks is 5) and ($time is 938)) or (($tanktracks is 6) and ($time is 998)) or (($tanktracks is 1) and ($time is 1058))>>
-			<i>Afternoon radio, audition 2, line 26</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 759)) or (($tanktracks is 3) and ($time is 819)) or (($tanktracks is 4) and ($time is 879)) or (($tanktracks is 5) and ($time is 939)) or (($tanktracks is 6) and ($time is 999)) or (($tanktracks is 1) and ($time is 1059))>>
-			<i>Afternoon radio, audition 2, line 27</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 760)) or (($tanktracks is 3) and ($time is 820)) or (($tanktracks is 4) and ($time is 880)) or (($tanktracks is 5) and ($time is 940)) or (($tanktracks is 6) and ($time is 1000)) or (($tanktracks is 1) and ($time is 1060))>>
-			<i>Afternoon radio, audition 2, line 28</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 761)) or (($tanktracks is 3) and ($time is 821)) or (($tanktracks is 4) and ($time is 881)) or (($tanktracks is 5) and ($time is 941)) or (($tanktracks is 6) and ($time is 1001)) or (($tanktracks is 1) and ($time is 1061))>>
-			<i>Afternoon radio, audition 2, line 29</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 762)) or (($tanktracks is 3) and ($time is 822)) or (($tanktracks is 4) and ($time is 882)) or (($tanktracks is 5) and ($time is 942)) or (($tanktracks is 6) and ($time is 1002)) or (($tanktracks is 1) and ($time is 1062))>>
-			<i>Afternoon radio, audition 2, line 30</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 763)) or (($tanktracks is 3) and ($time is 823)) or (($tanktracks is 4) and ($time is 883)) or (($tanktracks is 5) and ($time is 943)) or (($tanktracks is 6) and ($time is 1003)) or (($tanktracks is 1) and ($time is 1063))>>
-			<i>Afternoon radio, audition 2, line 31</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 764)) or (($tanktracks is 3) and ($time is 824)) or (($tanktracks is 4) and ($time is 884)) or (($tanktracks is 5) and ($time is 944)) or (($tanktracks is 6) and ($time is 1004)) or (($tanktracks is 1) and ($time is 1064))>>
-			<i>Afternoon radio, audition 2, line 32</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 765)) or (($tanktracks is 3) and ($time is 825)) or (($tanktracks is 4) and ($time is 885)) or (($tanktracks is 5) and ($time is 945)) or (($tanktracks is 6) and ($time is 1005)) or (($tanktracks is 1) and ($time is 1065))>>
-			<i>Afternoon radio, audition 2, line 33</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 766)) or (($tanktracks is 3) and ($time is 826)) or (($tanktracks is 4) and ($time is 886)) or (($tanktracks is 5) and ($time is 946)) or (($tanktracks is 6) and ($time is 1006)) or (($tanktracks is 1) and ($time is 1066))>>
-			<i>Afternoon radio, audition 2, line 34</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 767)) or (($tanktracks is 3) and ($time is 827)) or (($tanktracks is 4) and ($time is 887)) or (($tanktracks is 5) and ($time is 947)) or (($tanktracks is 6) and ($time is 1007)) or (($tanktracks is 1) and ($time is 1067))>>
-			<i>Afternoon radio, audition 2, line 35</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 768)) or (($tanktracks is 3) and ($time is 828)) or (($tanktracks is 4) and ($time is 888)) or (($tanktracks is 5) and ($time is 948)) or (($tanktracks is 6) and ($time is 1008)) or (($tanktracks is 1) and ($time is 1068))>>
-			<i>Afternoon radio, audition 2, line 36</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 769)) or (($tanktracks is 3) and ($time is 829)) or (($tanktracks is 4) and ($time is 889)) or (($tanktracks is 5) and ($time is 949)) or (($tanktracks is 6) and ($time is 1009)) or (($tanktracks is 1) and ($time is 1069))>>
-			<i>Afternoon radio, audition 2, line 37</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 770)) or (($tanktracks is 3) and ($time is 830)) or (($tanktracks is 4) and ($time is 890)) or (($tanktracks is 5) and ($time is 950)) or (($tanktracks is 6) and ($time is 1010)) or (($tanktracks is 1) and ($time is 1070))>>
-			<i>Afternoon radio, audition 2, line 38</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 771)) or (($tanktracks is 3) and ($time is 831)) or (($tanktracks is 4) and ($time is 891)) or (($tanktracks is 5) and ($time is 951)) or (($tanktracks is 6) and ($time is 1011)) or (($tanktracks is 1) and ($time is 1071))>>
-			<i>Afternoon radio, audition 2, line 39</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 772)) or (($tanktracks is 3) and ($time is 832)) or (($tanktracks is 4) and ($time is 892)) or (($tanktracks is 5) and ($time is 952)) or (($tanktracks is 6) and ($time is 1012)) or (($tanktracks is 1) and ($time is 1072))>>
-			<i>Afternoon radio, audition 2, line 40</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 773)) or (($tanktracks is 3) and ($time is 833)) or (($tanktracks is 4) and ($time is 893)) or (($tanktracks is 5) and ($time is 953)) or (($tanktracks is 6) and ($time is 1013)) or (($tanktracks is 1) and ($time is 1073))>>
-			<i>Afternoon radio, audition 2, line 41</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 774)) or (($tanktracks is 3) and ($time is 834)) or (($tanktracks is 4) and ($time is 894)) or (($tanktracks is 5) and ($time is 954)) or (($tanktracks is 6) and ($time is 1014)) or (($tanktracks is 1) and ($time is 1074))>>
-			<i>Afternoon radio, audition 2, line 42</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 775)) or (($tanktracks is 3) and ($time is 835)) or (($tanktracks is 4) and ($time is 895)) or (($tanktracks is 5) and ($time is 955)) or (($tanktracks is 6) and ($time is 1015)) or (($tanktracks is 1) and ($time is 1075))>>
-			<i>Afternoon radio, audition 2, line 43</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 776)) or (($tanktracks is 3) and ($time is 836)) or (($tanktracks is 4) and ($time is 896)) or (($tanktracks is 5) and ($time is 956)) or (($tanktracks is 6) and ($time is 1016)) or (($tanktracks is 1) and ($time is 1076))>>
-			<i>Afternoon radio, audition 2, line 44</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 777)) or (($tanktracks is 3) and ($time is 837)) or (($tanktracks is 4) and ($time is 897)) or (($tanktracks is 5) and ($time is 957)) or (($tanktracks is 6) and ($time is 1017)) or (($tanktracks is 1) and ($time is 1077))>>
-			<i>Afternoon radio, audition 2, line 45</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 778)) or (($tanktracks is 3) and ($time is 838)) or (($tanktracks is 4) and ($time is 898)) or (($tanktracks is 5) and ($time is 958)) or (($tanktracks is 6) and ($time is 1018)) or (($tanktracks is 1) and ($time is 1078))>>
-			<i>Afternoon radio, audition 2, line 46</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 779)) or (($tanktracks is 3) and ($time is 839)) or (($tanktracks is 4) and ($time is 899)) or (($tanktracks is 5) and ($time is 959)) or (($tanktracks is 6) and ($time is 1019)) or (($tanktracks is 1) and ($time is 1079))>>
-			<i>Afternoon radio, audition 2, line 47</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 733)) or (($tanktracks is 4) and ($time is 793)) or (($tanktracks is 5) and ($time is 853)) or (($tanktracks is 6) and ($time is 913)) or (($tanktracks is 1) and ($time is 973)) or (($tanktracks is 2) and ($time is 1033))>>
-			<i>Afternoon radio, audition 3, line 1</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 734)) or (($tanktracks is 4) and ($time is 794)) or (($tanktracks is 5) and ($time is 854)) or (($tanktracks is 6) and ($time is 914)) or (($tanktracks is 1) and ($time is 974)) or (($tanktracks is 2) and ($time is 1034))>>
-			<i>Afternoon radio, audition 3, line 2</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 735)) or (($tanktracks is 4) and ($time is 795)) or (($tanktracks is 5) and ($time is 855)) or (($tanktracks is 6) and ($time is 915)) or (($tanktracks is 1) and ($time is 975)) or (($tanktracks is 2) and ($time is 1035))>>
-			<i>Afternoon radio, audition 3, line 3</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 736)) or (($tanktracks is 4) and ($time is 796)) or (($tanktracks is 5) and ($time is 856)) or (($tanktracks is 6) and ($time is 916)) or (($tanktracks is 1) and ($time is 976)) or (($tanktracks is 2) and ($time is 1036))>>
-			<i>Afternoon radio, audition 3, line 4</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 737)) or (($tanktracks is 4) and ($time is 797)) or (($tanktracks is 5) and ($time is 857)) or (($tanktracks is 6) and ($time is 917)) or (($tanktracks is 1) and ($time is 977)) or (($tanktracks is 2) and ($time is 1037))>>
-			<i>Afternoon radio, audition 3, line 5</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 738)) or (($tanktracks is 4) and ($time is 798)) or (($tanktracks is 5) and ($time is 858)) or (($tanktracks is 6) and ($time is 918)) or (($tanktracks is 1) and ($time is 978)) or (($tanktracks is 2) and ($time is 1038))>>
-			<i>Afternoon radio, audition 3, line 6</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 739)) or (($tanktracks is 4) and ($time is 799)) or (($tanktracks is 5) and ($time is 859)) or (($tanktracks is 6) and ($time is 919)) or (($tanktracks is 1) and ($time is 979)) or (($tanktracks is 2) and ($time is 1039))>>
-			<i>Afternoon radio, audition 3, line 7</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 740)) or (($tanktracks is 4) and ($time is 800)) or (($tanktracks is 5) and ($time is 860)) or (($tanktracks is 6) and ($time is 920)) or (($tanktracks is 1) and ($time is 980)) or (($tanktracks is 2) and ($time is 1040))>>
-			<i>Afternoon radio, audition 3, line 8</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 741)) or (($tanktracks is 4) and ($time is 801)) or (($tanktracks is 5) and ($time is 861)) or (($tanktracks is 6) and ($time is 921)) or (($tanktracks is 1) and ($time is 981)) or (($tanktracks is 2) and ($time is 1041))>>
-			<i>Afternoon radio, audition 3, line 9</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 742)) or (($tanktracks is 4) and ($time is 802)) or (($tanktracks is 5) and ($time is 862)) or (($tanktracks is 6) and ($time is 922)) or (($tanktracks is 1) and ($time is 982)) or (($tanktracks is 2) and ($time is 1042))>>
-			<i>Afternoon radio, audition 3, line 10</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 743)) or (($tanktracks is 4) and ($time is 803)) or (($tanktracks is 5) and ($time is 863)) or (($tanktracks is 6) and ($time is 923)) or (($tanktracks is 1) and ($time is 983)) or (($tanktracks is 2) and ($time is 1043))>>
-			<i>Afternoon radio, audition 3, line 11</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 744)) or (($tanktracks is 4) and ($time is 804)) or (($tanktracks is 5) and ($time is 864)) or (($tanktracks is 6) and ($time is 924)) or (($tanktracks is 1) and ($time is 984)) or (($tanktracks is 2) and ($time is 1044))>>
-			<i>Afternoon radio, audition 3, line 12</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 745)) or (($tanktracks is 4) and ($time is 805)) or (($tanktracks is 5) and ($time is 865)) or (($tanktracks is 6) and ($time is 925)) or (($tanktracks is 1) and ($time is 985)) or (($tanktracks is 2) and ($time is 1045))>>
-			<i>Afternoon radio, audition 3, line 13</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 746)) or (($tanktracks is 4) and ($time is 806)) or (($tanktracks is 5) and ($time is 866)) or (($tanktracks is 6) and ($time is 926)) or (($tanktracks is 1) and ($time is 986)) or (($tanktracks is 2) and ($time is 1046))>>
-			<i>Afternoon radio, audition 3, line 14</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 747)) or (($tanktracks is 4) and ($time is 807)) or (($tanktracks is 5) and ($time is 867)) or (($tanktracks is 6) and ($time is 927)) or (($tanktracks is 1) and ($time is 987)) or (($tanktracks is 2) and ($time is 1047))>>
-			<i>Afternoon radio, audition 3, line 15</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 748)) or (($tanktracks is 4) and ($time is 808)) or (($tanktracks is 5) and ($time is 868)) or (($tanktracks is 6) and ($time is 928)) or (($tanktracks is 1) and ($time is 988)) or (($tanktracks is 2) and ($time is 1048))>>
-			<i>Afternoon radio, audition 3, line 16</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 749)) or (($tanktracks is 4) and ($time is 809)) or (($tanktracks is 5) and ($time is 869)) or (($tanktracks is 6) and ($time is 929)) or (($tanktracks is 1) and ($time is 989)) or (($tanktracks is 2) and ($time is 1049))>>
-			<i>Afternoon radio, audition 3, line 17</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 750)) or (($tanktracks is 4) and ($time is 810)) or (($tanktracks is 5) and ($time is 870)) or (($tanktracks is 6) and ($time is 930)) or (($tanktracks is 1) and ($time is 990)) or (($tanktracks is 2) and ($time is 1050))>>
-			<i>Afternoon radio, audition 3, line 18</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 751)) or (($tanktracks is 4) and ($time is 811)) or (($tanktracks is 5) and ($time is 871)) or (($tanktracks is 6) and ($time is 931)) or (($tanktracks is 1) and ($time is 991)) or (($tanktracks is 2) and ($time is 1051))>>
-			<i>Afternoon radio, audition 3, line 19</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 752)) or (($tanktracks is 4) and ($time is 812)) or (($tanktracks is 5) and ($time is 872)) or (($tanktracks is 6) and ($time is 932)) or (($tanktracks is 1) and ($time is 992)) or (($tanktracks is 2) and ($time is 1052))>>
-			<i>Afternoon radio, audition 3, line 20</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 753)) or (($tanktracks is 4) and ($time is 813)) or (($tanktracks is 5) and ($time is 873)) or (($tanktracks is 6) and ($time is 933)) or (($tanktracks is 1) and ($time is 993)) or (($tanktracks is 2) and ($time is 1053))>>
-			<i>Afternoon radio, audition 3, line 21</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 754)) or (($tanktracks is 4) and ($time is 814)) or (($tanktracks is 5) and ($time is 874)) or (($tanktracks is 6) and ($time is 934)) or (($tanktracks is 1) and ($time is 994)) or (($tanktracks is 2) and ($time is 1054))>>
-			<i>Afternoon radio, audition 3, line 22</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 755)) or (($tanktracks is 4) and ($time is 815)) or (($tanktracks is 5) and ($time is 875)) or (($tanktracks is 6) and ($time is 935)) or (($tanktracks is 1) and ($time is 995)) or (($tanktracks is 2) and ($time is 1055))>>
-			<i>Afternoon radio, audition 3, line 23</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 756)) or (($tanktracks is 4) and ($time is 816)) or (($tanktracks is 5) and ($time is 876)) or (($tanktracks is 6) and ($time is 936)) or (($tanktracks is 1) and ($time is 996)) or (($tanktracks is 2) and ($time is 1056))>>
-			<i>Afternoon radio, audition 3, line 24</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 757)) or (($tanktracks is 4) and ($time is 817)) or (($tanktracks is 5) and ($time is 877)) or (($tanktracks is 6) and ($time is 937)) or (($tanktracks is 1) and ($time is 997)) or (($tanktracks is 2) and ($time is 1057))>>
-			<i>Afternoon radio, audition 3, line 25</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 758)) or (($tanktracks is 4) and ($time is 818)) or (($tanktracks is 5) and ($time is 878)) or (($tanktracks is 6) and ($time is 938)) or (($tanktracks is 1) and ($time is 998)) or (($tanktracks is 2) and ($time is 1058))>>
-			<i>Afternoon radio, audition 3, line 26</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 759)) or (($tanktracks is 4) and ($time is 819)) or (($tanktracks is 5) and ($time is 879)) or (($tanktracks is 6) and ($time is 939)) or (($tanktracks is 1) and ($time is 999)) or (($tanktracks is 2) and ($time is 1059))>>
-			<i>Afternoon radio, audition 3, line 27</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 760)) or (($tanktracks is 4) and ($time is 820)) or (($tanktracks is 5) and ($time is 880)) or (($tanktracks is 6) and ($time is 940)) or (($tanktracks is 1) and ($time is 1000)) or (($tanktracks is 2) and ($time is 1060))>>
-			<i>Afternoon radio, audition 3, line 28</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 761)) or (($tanktracks is 4) and ($time is 821)) or (($tanktracks is 5) and ($time is 881)) or (($tanktracks is 6) and ($time is 941)) or (($tanktracks is 1) and ($time is 1001)) or (($tanktracks is 2) and ($time is 1061))>>
-			<i>Afternoon radio, audition 3, line 29</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 762)) or (($tanktracks is 4) and ($time is 822)) or (($tanktracks is 5) and ($time is 882)) or (($tanktracks is 6) and ($time is 942)) or (($tanktracks is 1) and ($time is 1002)) or (($tanktracks is 2) and ($time is 1062))>>
-			<i>Afternoon radio, audition 3, line 30</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 763)) or (($tanktracks is 4) and ($time is 823)) or (($tanktracks is 5) and ($time is 883)) or (($tanktracks is 6) and ($time is 943)) or (($tanktracks is 1) and ($time is 1003)) or (($tanktracks is 2) and ($time is 1063))>>
-			<i>Afternoon radio, audition 3, line 31</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 764)) or (($tanktracks is 4) and ($time is 824)) or (($tanktracks is 5) and ($time is 884)) or (($tanktracks is 6) and ($time is 944)) or (($tanktracks is 1) and ($time is 1004)) or (($tanktracks is 2) and ($time is 1064))>>
-			<i>Afternoon radio, audition 3, line 32</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 765)) or (($tanktracks is 4) and ($time is 825)) or (($tanktracks is 5) and ($time is 885)) or (($tanktracks is 6) and ($time is 945)) or (($tanktracks is 1) and ($time is 1005)) or (($tanktracks is 2) and ($time is 1065))>>
-			<i>Afternoon radio, audition 3, line 33</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 766)) or (($tanktracks is 4) and ($time is 826)) or (($tanktracks is 5) and ($time is 886)) or (($tanktracks is 6) and ($time is 946)) or (($tanktracks is 1) and ($time is 1006)) or (($tanktracks is 2) and ($time is 1066))>>
-			<i>Afternoon radio, audition 3, line 34</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 767)) or (($tanktracks is 4) and ($time is 827)) or (($tanktracks is 5) and ($time is 887)) or (($tanktracks is 6) and ($time is 947)) or (($tanktracks is 1) and ($time is 1007)) or (($tanktracks is 2) and ($time is 1067))>>
-			<i>Afternoon radio, audition 3, line 35</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 768)) or (($tanktracks is 4) and ($time is 828)) or (($tanktracks is 5) and ($time is 888)) or (($tanktracks is 6) and ($time is 948)) or (($tanktracks is 1) and ($time is 1008)) or (($tanktracks is 2) and ($time is 1068))>>
-			<i>Afternoon radio, audition 3, line 36</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 769)) or (($tanktracks is 4) and ($time is 829)) or (($tanktracks is 5) and ($time is 889)) or (($tanktracks is 6) and ($time is 949)) or (($tanktracks is 1) and ($time is 1009)) or (($tanktracks is 2) and ($time is 1069))>>
-			<i>Afternoon radio, audition 3, line 37</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 770)) or (($tanktracks is 4) and ($time is 830)) or (($tanktracks is 5) and ($time is 890)) or (($tanktracks is 6) and ($time is 950)) or (($tanktracks is 1) and ($time is 1010)) or (($tanktracks is 2) and ($time is 1070))>>
-			<i>Afternoon radio, audition 3, line 38</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 771)) or (($tanktracks is 4) and ($time is 831)) or (($tanktracks is 5) and ($time is 891)) or (($tanktracks is 6) and ($time is 951)) or (($tanktracks is 1) and ($time is 1011)) or (($tanktracks is 2) and ($time is 1071))>>
-			<i>Afternoon radio, audition 3, line 39</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 772)) or (($tanktracks is 4) and ($time is 832)) or (($tanktracks is 5) and ($time is 892)) or (($tanktracks is 6) and ($time is 952)) or (($tanktracks is 1) and ($time is 1012)) or (($tanktracks is 2) and ($time is 1072))>>
-			<i>Afternoon radio, audition 3, line 40</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 773)) or (($tanktracks is 4) and ($time is 833)) or (($tanktracks is 5) and ($time is 893)) or (($tanktracks is 6) and ($time is 953)) or (($tanktracks is 1) and ($time is 1013)) or (($tanktracks is 2) and ($time is 1073))>>
-			<i>Afternoon radio, audition 3, line 41</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 774)) or (($tanktracks is 4) and ($time is 834)) or (($tanktracks is 5) and ($time is 894)) or (($tanktracks is 6) and ($time is 954)) or (($tanktracks is 1) and ($time is 1014)) or (($tanktracks is 2) and ($time is 1074))>>
-			<i>Afternoon radio, audition 3, line 42</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 775)) or (($tanktracks is 4) and ($time is 835)) or (($tanktracks is 5) and ($time is 895)) or (($tanktracks is 6) and ($time is 955)) or (($tanktracks is 1) and ($time is 1015)) or (($tanktracks is 2) and ($time is 1075))>>
-			<i>Afternoon radio, audition 3, line 43</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 776)) or (($tanktracks is 4) and ($time is 836)) or (($tanktracks is 5) and ($time is 896)) or (($tanktracks is 6) and ($time is 956)) or (($tanktracks is 1) and ($time is 1016)) or (($tanktracks is 2) and ($time is 1076))>>
-			<i>Afternoon radio, audition 3, line 44</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 777)) or (($tanktracks is 4) and ($time is 837)) or (($tanktracks is 5) and ($time is 897)) or (($tanktracks is 6) and ($time is 957)) or (($tanktracks is 1) and ($time is 1017)) or (($tanktracks is 2) and ($time is 1077))>>
-			<i>Afternoon radio, audition 3, line 45</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 778)) or (($tanktracks is 4) and ($time is 838)) or (($tanktracks is 5) and ($time is 898)) or (($tanktracks is 6) and ($time is 958)) or (($tanktracks is 1) and ($time is 1018)) or (($tanktracks is 2) and ($time is 1078))>>
-			<i>Afternoon radio, audition 3, line 46</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 779)) or (($tanktracks is 4) and ($time is 839)) or (($tanktracks is 5) and ($time is 899)) or (($tanktracks is 6) and ($time is 959)) or (($tanktracks is 1) and ($time is 1019)) or (($tanktracks is 2) and ($time is 1079))>>
-			<i>Afternoon radio, audition 3, line 47</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 733)) or (($tanktracks is 5) and ($time is 793)) or (($tanktracks is 6) and ($time is 853)) or (($tanktracks is 1) and ($time is 913)) or (($tanktracks is 2) and ($time is 973)) or (($tanktracks is 3) and ($time is 1033))>>
-			<i>Afternoon radio, audition 4, line 1</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 734)) or (($tanktracks is 5) and ($time is 794)) or (($tanktracks is 6) and ($time is 854)) or (($tanktracks is 1) and ($time is 914)) or (($tanktracks is 2) and ($time is 974)) or (($tanktracks is 3) and ($time is 1034))>>
-			<i>Afternoon radio, audition 4, line 2</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 735)) or (($tanktracks is 5) and ($time is 795)) or (($tanktracks is 6) and ($time is 855)) or (($tanktracks is 1) and ($time is 915)) or (($tanktracks is 2) and ($time is 975)) or (($tanktracks is 3) and ($time is 1035))>>
-			<i>Afternoon radio, audition 4, line 3</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 736)) or (($tanktracks is 5) and ($time is 796)) or (($tanktracks is 6) and ($time is 856)) or (($tanktracks is 1) and ($time is 916)) or (($tanktracks is 2) and ($time is 976)) or (($tanktracks is 3) and ($time is 1036))>>
-			<i>Afternoon radio, audition 4, line 4</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 737)) or (($tanktracks is 5) and ($time is 797)) or (($tanktracks is 6) and ($time is 857)) or (($tanktracks is 1) and ($time is 917)) or (($tanktracks is 2) and ($time is 977)) or (($tanktracks is 3) and ($time is 1037))>>
-			<i>Afternoon radio, audition 4, line 5</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 738)) or (($tanktracks is 5) and ($time is 798)) or (($tanktracks is 6) and ($time is 858)) or (($tanktracks is 1) and ($time is 918)) or (($tanktracks is 2) and ($time is 978)) or (($tanktracks is 3) and ($time is 1038))>>
-			<i>Afternoon radio, audition 4, line 6</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 739)) or (($tanktracks is 5) and ($time is 799)) or (($tanktracks is 6) and ($time is 859)) or (($tanktracks is 1) and ($time is 919)) or (($tanktracks is 2) and ($time is 979)) or (($tanktracks is 3) and ($time is 1039))>>
-			<i>Afternoon radio, audition 4, line 7</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 740)) or (($tanktracks is 5) and ($time is 800)) or (($tanktracks is 6) and ($time is 860)) or (($tanktracks is 1) and ($time is 920)) or (($tanktracks is 2) and ($time is 980)) or (($tanktracks is 3) and ($time is 1040))>>
-			<i>Afternoon radio, audition 4, line 8</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 741)) or (($tanktracks is 5) and ($time is 801)) or (($tanktracks is 6) and ($time is 861)) or (($tanktracks is 1) and ($time is 921)) or (($tanktracks is 2) and ($time is 981)) or (($tanktracks is 3) and ($time is 1041))>>
-			<i>Afternoon radio, audition 4, line 9</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 742)) or (($tanktracks is 5) and ($time is 802)) or (($tanktracks is 6) and ($time is 862)) or (($tanktracks is 1) and ($time is 922)) or (($tanktracks is 2) and ($time is 982)) or (($tanktracks is 3) and ($time is 1042))>>
-			<i>Afternoon radio, audition 4, line 10</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 743)) or (($tanktracks is 5) and ($time is 803)) or (($tanktracks is 6) and ($time is 863)) or (($tanktracks is 1) and ($time is 923)) or (($tanktracks is 2) and ($time is 983)) or (($tanktracks is 3) and ($time is 1043))>>
-			<i>Afternoon radio, audition 4, line 11</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 744)) or (($tanktracks is 5) and ($time is 804)) or (($tanktracks is 6) and ($time is 864)) or (($tanktracks is 1) and ($time is 924)) or (($tanktracks is 2) and ($time is 984)) or (($tanktracks is 3) and ($time is 1044))>>
-			<i>Afternoon radio, audition 4, line 12</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 745)) or (($tanktracks is 5) and ($time is 805)) or (($tanktracks is 6) and ($time is 865)) or (($tanktracks is 1) and ($time is 925)) or (($tanktracks is 2) and ($time is 985)) or (($tanktracks is 3) and ($time is 1045))>>
-			<i>Afternoon radio, audition 4, line 13</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 746)) or (($tanktracks is 5) and ($time is 806)) or (($tanktracks is 6) and ($time is 866)) or (($tanktracks is 1) and ($time is 926)) or (($tanktracks is 2) and ($time is 986)) or (($tanktracks is 3) and ($time is 1046))>>
-			<i>Afternoon radio, audition 4, line 14</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 747)) or (($tanktracks is 5) and ($time is 807)) or (($tanktracks is 6) and ($time is 867)) or (($tanktracks is 1) and ($time is 927)) or (($tanktracks is 2) and ($time is 987)) or (($tanktracks is 3) and ($time is 1047))>>
-			<i>Afternoon radio, audition 4, line 15</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 748)) or (($tanktracks is 5) and ($time is 808)) or (($tanktracks is 6) and ($time is 868)) or (($tanktracks is 1) and ($time is 928)) or (($tanktracks is 2) and ($time is 988)) or (($tanktracks is 3) and ($time is 1048))>>
-			<i>Afternoon radio, audition 4, line 16</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 749)) or (($tanktracks is 5) and ($time is 809)) or (($tanktracks is 6) and ($time is 869)) or (($tanktracks is 1) and ($time is 929)) or (($tanktracks is 2) and ($time is 989)) or (($tanktracks is 3) and ($time is 1049))>>
-			<i>Afternoon radio, audition 4, line 17</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 750)) or (($tanktracks is 5) and ($time is 810)) or (($tanktracks is 6) and ($time is 870)) or (($tanktracks is 1) and ($time is 930)) or (($tanktracks is 2) and ($time is 990)) or (($tanktracks is 3) and ($time is 1050))>>
-			<i>Afternoon radio, audition 4, line 18</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 751)) or (($tanktracks is 5) and ($time is 811)) or (($tanktracks is 6) and ($time is 871)) or (($tanktracks is 1) and ($time is 931)) or (($tanktracks is 2) and ($time is 991)) or (($tanktracks is 3) and ($time is 1051))>>
-			<i>Afternoon radio, audition 4, line 19</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 752)) or (($tanktracks is 5) and ($time is 812)) or (($tanktracks is 6) and ($time is 872)) or (($tanktracks is 1) and ($time is 932)) or (($tanktracks is 2) and ($time is 992)) or (($tanktracks is 3) and ($time is 1052))>>
-			<i>Afternoon radio, audition 4, line 20</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 753)) or (($tanktracks is 5) and ($time is 813)) or (($tanktracks is 6) and ($time is 873)) or (($tanktracks is 1) and ($time is 933)) or (($tanktracks is 2) and ($time is 993)) or (($tanktracks is 3) and ($time is 1053))>>
-			<i>Afternoon radio, audition 4, line 21</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 754)) or (($tanktracks is 5) and ($time is 814)) or (($tanktracks is 6) and ($time is 874)) or (($tanktracks is 1) and ($time is 934)) or (($tanktracks is 2) and ($time is 994)) or (($tanktracks is 3) and ($time is 1054))>>
-			<i>Afternoon radio, audition 4, line 22</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 755)) or (($tanktracks is 5) and ($time is 815)) or (($tanktracks is 6) and ($time is 875)) or (($tanktracks is 1) and ($time is 935)) or (($tanktracks is 2) and ($time is 995)) or (($tanktracks is 3) and ($time is 1055))>>
-			<i>Afternoon radio, audition 4, line 23</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 756)) or (($tanktracks is 5) and ($time is 816)) or (($tanktracks is 6) and ($time is 876)) or (($tanktracks is 1) and ($time is 936)) or (($tanktracks is 2) and ($time is 996)) or (($tanktracks is 3) and ($time is 1056))>>
-			<i>Afternoon radio, audition 4, line 24</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 757)) or (($tanktracks is 5) and ($time is 817)) or (($tanktracks is 6) and ($time is 877)) or (($tanktracks is 1) and ($time is 937)) or (($tanktracks is 2) and ($time is 997)) or (($tanktracks is 3) and ($time is 1057))>>
-			<i>Afternoon radio, audition 4, line 25</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 758)) or (($tanktracks is 5) and ($time is 818)) or (($tanktracks is 6) and ($time is 878)) or (($tanktracks is 1) and ($time is 938)) or (($tanktracks is 2) and ($time is 998)) or (($tanktracks is 3) and ($time is 1058))>>
-			<i>Afternoon radio, audition 4, line 26</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 759)) or (($tanktracks is 5) and ($time is 819)) or (($tanktracks is 6) and ($time is 879)) or (($tanktracks is 1) and ($time is 939)) or (($tanktracks is 2) and ($time is 999)) or (($tanktracks is 3) and ($time is 1059))>>
-			<i>Afternoon radio, audition 4, line 27</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 760)) or (($tanktracks is 5) and ($time is 820)) or (($tanktracks is 6) and ($time is 880)) or (($tanktracks is 1) and ($time is 940)) or (($tanktracks is 2) and ($time is 1000)) or (($tanktracks is 3) and ($time is 1060))>>
-			<i>Afternoon radio, audition 4, line 28</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 761)) or (($tanktracks is 5) and ($time is 821)) or (($tanktracks is 6) and ($time is 881)) or (($tanktracks is 1) and ($time is 941)) or (($tanktracks is 2) and ($time is 1001)) or (($tanktracks is 3) and ($time is 1061))>>
-			<i>Afternoon radio, audition 4, line 29</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 762)) or (($tanktracks is 5) and ($time is 822)) or (($tanktracks is 6) and ($time is 882)) or (($tanktracks is 1) and ($time is 942)) or (($tanktracks is 2) and ($time is 1002)) or (($tanktracks is 3) and ($time is 1062))>>
-			<i>Afternoon radio, audition 4, line 30</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 763)) or (($tanktracks is 5) and ($time is 823)) or (($tanktracks is 6) and ($time is 883)) or (($tanktracks is 1) and ($time is 943)) or (($tanktracks is 2) and ($time is 1003)) or (($tanktracks is 3) and ($time is 1063))>>
-			<i>Afternoon radio, audition 4, line 31</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 764)) or (($tanktracks is 5) and ($time is 824)) or (($tanktracks is 6) and ($time is 884)) or (($tanktracks is 1) and ($time is 944)) or (($tanktracks is 2) and ($time is 1004)) or (($tanktracks is 3) and ($time is 1064))>>
-			<i>Afternoon radio, audition 4, line 32</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 765)) or (($tanktracks is 5) and ($time is 825)) or (($tanktracks is 6) and ($time is 885)) or (($tanktracks is 1) and ($time is 945)) or (($tanktracks is 2) and ($time is 1005)) or (($tanktracks is 3) and ($time is 1065))>>
-			<i>Afternoon radio, audition 4, line 33</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 766)) or (($tanktracks is 5) and ($time is 826)) or (($tanktracks is 6) and ($time is 886)) or (($tanktracks is 1) and ($time is 946)) or (($tanktracks is 2) and ($time is 1006)) or (($tanktracks is 3) and ($time is 1066))>>
-			<i>Afternoon radio, audition 4, line 34</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 767)) or (($tanktracks is 5) and ($time is 827)) or (($tanktracks is 6) and ($time is 887)) or (($tanktracks is 1) and ($time is 947)) or (($tanktracks is 2) and ($time is 1007)) or (($tanktracks is 3) and ($time is 1067))>>
-			<i>Afternoon radio, audition 4, line 35</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 768)) or (($tanktracks is 5) and ($time is 828)) or (($tanktracks is 6) and ($time is 888)) or (($tanktracks is 1) and ($time is 948)) or (($tanktracks is 2) and ($time is 1008)) or (($tanktracks is 3) and ($time is 1068))>>
-			<i>Afternoon radio, audition 4, line 36</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 769)) or (($tanktracks is 5) and ($time is 829)) or (($tanktracks is 6) and ($time is 889)) or (($tanktracks is 1) and ($time is 949)) or (($tanktracks is 2) and ($time is 1009)) or (($tanktracks is 3) and ($time is 1069))>>
-			<i>Afternoon radio, audition 4, line 37</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 770)) or (($tanktracks is 5) and ($time is 830)) or (($tanktracks is 6) and ($time is 890)) or (($tanktracks is 1) and ($time is 950)) or (($tanktracks is 2) and ($time is 1010)) or (($tanktracks is 3) and ($time is 1070))>>
-			<i>Afternoon radio, audition 4, line 38</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 771)) or (($tanktracks is 5) and ($time is 831)) or (($tanktracks is 6) and ($time is 891)) or (($tanktracks is 1) and ($time is 951)) or (($tanktracks is 2) and ($time is 1011)) or (($tanktracks is 3) and ($time is 1071))>>
-			<i>Afternoon radio, audition 4, line 39</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 772)) or (($tanktracks is 5) and ($time is 832)) or (($tanktracks is 6) and ($time is 892)) or (($tanktracks is 1) and ($time is 952)) or (($tanktracks is 2) and ($time is 1012)) or (($tanktracks is 3) and ($time is 1072))>>
-			<i>Afternoon radio, audition 4, line 40</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 773)) or (($tanktracks is 5) and ($time is 833)) or (($tanktracks is 6) and ($time is 893)) or (($tanktracks is 1) and ($time is 953)) or (($tanktracks is 2) and ($time is 1013)) or (($tanktracks is 3) and ($time is 1073))>>
-			<i>Afternoon radio, audition 4, line 41</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 774)) or (($tanktracks is 5) and ($time is 834)) or (($tanktracks is 6) and ($time is 894)) or (($tanktracks is 1) and ($time is 954)) or (($tanktracks is 2) and ($time is 1014)) or (($tanktracks is 3) and ($time is 1074))>>
-			<i>Afternoon radio, audition 4, line 42</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 775)) or (($tanktracks is 5) and ($time is 835)) or (($tanktracks is 6) and ($time is 895)) or (($tanktracks is 1) and ($time is 955)) or (($tanktracks is 2) and ($time is 1015)) or (($tanktracks is 3) and ($time is 1075))>>
-			<i>Afternoon radio, audition 4, line 43</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 776)) or (($tanktracks is 5) and ($time is 836)) or (($tanktracks is 6) and ($time is 896)) or (($tanktracks is 1) and ($time is 956)) or (($tanktracks is 2) and ($time is 1016)) or (($tanktracks is 3) and ($time is 1076))>>
-			<i>Afternoon radio, audition 4, line 44</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 777)) or (($tanktracks is 5) and ($time is 837)) or (($tanktracks is 6) and ($time is 897)) or (($tanktracks is 1) and ($time is 957)) or (($tanktracks is 2) and ($time is 1017)) or (($tanktracks is 3) and ($time is 1077))>>
-			<i>Afternoon radio, audition 4, line 45</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 778)) or (($tanktracks is 5) and ($time is 838)) or (($tanktracks is 6) and ($time is 898)) or (($tanktracks is 1) and ($time is 958)) or (($tanktracks is 2) and ($time is 1018)) or (($tanktracks is 3) and ($time is 1078))>>
-			<i>Afternoon radio, audition 4, line 46</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 779)) or (($tanktracks is 5) and ($time is 839)) or (($tanktracks is 6) and ($time is 899)) or (($tanktracks is 1) and ($time is 959)) or (($tanktracks is 2) and ($time is 1019)) or (($tanktracks is 3) and ($time is 1079))>>
-			<i>Afternoon radio, audition 4, line 47</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 733)) or (($tanktracks is 6) and ($time is 793)) or (($tanktracks is 1) and ($time is 853)) or (($tanktracks is 2) and ($time is 913)) or (($tanktracks is 3) and ($time is 973)) or (($tanktracks is 4) and ($time is 1033))>>
-			<i>Afternoon radio, audition 5, line 1</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 734)) or (($tanktracks is 6) and ($time is 794)) or (($tanktracks is 1) and ($time is 854)) or (($tanktracks is 2) and ($time is 914)) or (($tanktracks is 3) and ($time is 974)) or (($tanktracks is 4) and ($time is 1034))>>
-			<i>Afternoon radio, audition 5, line 2</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 735)) or (($tanktracks is 6) and ($time is 795)) or (($tanktracks is 1) and ($time is 855)) or (($tanktracks is 2) and ($time is 915)) or (($tanktracks is 3) and ($time is 975)) or (($tanktracks is 4) and ($time is 1035))>>
-			<i>Afternoon radio, audition 5, line 3</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 736)) or (($tanktracks is 6) and ($time is 796)) or (($tanktracks is 1) and ($time is 856)) or (($tanktracks is 2) and ($time is 916)) or (($tanktracks is 3) and ($time is 976)) or (($tanktracks is 4) and ($time is 1036))>>
-			<i>Afternoon radio, audition 5, line 4</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 737)) or (($tanktracks is 6) and ($time is 797)) or (($tanktracks is 1) and ($time is 857)) or (($tanktracks is 2) and ($time is 917)) or (($tanktracks is 3) and ($time is 977)) or (($tanktracks is 4) and ($time is 1037))>>
-			<i>Afternoon radio, audition 5, line 5</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 738)) or (($tanktracks is 6) and ($time is 798)) or (($tanktracks is 1) and ($time is 858)) or (($tanktracks is 2) and ($time is 918)) or (($tanktracks is 3) and ($time is 978)) or (($tanktracks is 4) and ($time is 1038))>>
-			<i>Afternoon radio, audition 5, line 6</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 739)) or (($tanktracks is 6) and ($time is 799)) or (($tanktracks is 1) and ($time is 859)) or (($tanktracks is 2) and ($time is 919)) or (($tanktracks is 3) and ($time is 979)) or (($tanktracks is 4) and ($time is 1039))>>
-			<i>Afternoon radio, audition 5, line 7</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 740)) or (($tanktracks is 6) and ($time is 800)) or (($tanktracks is 1) and ($time is 860)) or (($tanktracks is 2) and ($time is 920)) or (($tanktracks is 3) and ($time is 980)) or (($tanktracks is 4) and ($time is 1040))>>
-			<i>Afternoon radio, audition 5, line 8</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 741)) or (($tanktracks is 6) and ($time is 801)) or (($tanktracks is 1) and ($time is 861)) or (($tanktracks is 2) and ($time is 921)) or (($tanktracks is 3) and ($time is 981)) or (($tanktracks is 4) and ($time is 1041))>>
-			<i>Afternoon radio, audition 5, line 9</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 742)) or (($tanktracks is 6) and ($time is 802)) or (($tanktracks is 1) and ($time is 862)) or (($tanktracks is 2) and ($time is 922)) or (($tanktracks is 3) and ($time is 982)) or (($tanktracks is 4) and ($time is 1042))>>
-			<i>Afternoon radio, audition 5, line 10</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 743)) or (($tanktracks is 6) and ($time is 803)) or (($tanktracks is 1) and ($time is 863)) or (($tanktracks is 2) and ($time is 923)) or (($tanktracks is 3) and ($time is 983)) or (($tanktracks is 4) and ($time is 1043))>>
-			<i>Afternoon radio, audition 5, line 11</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 744)) or (($tanktracks is 6) and ($time is 804)) or (($tanktracks is 1) and ($time is 864)) or (($tanktracks is 2) and ($time is 924)) or (($tanktracks is 3) and ($time is 984)) or (($tanktracks is 4) and ($time is 1044))>>
-			<i>Afternoon radio, audition 5, line 12</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 745)) or (($tanktracks is 6) and ($time is 805)) or (($tanktracks is 1) and ($time is 865)) or (($tanktracks is 2) and ($time is 925)) or (($tanktracks is 3) and ($time is 985)) or (($tanktracks is 4) and ($time is 1045))>>
-			<i>Afternoon radio, audition 5, line 13</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 746)) or (($tanktracks is 6) and ($time is 806)) or (($tanktracks is 1) and ($time is 866)) or (($tanktracks is 2) and ($time is 926)) or (($tanktracks is 3) and ($time is 986)) or (($tanktracks is 4) and ($time is 1046))>>
-			<i>Afternoon radio, audition 5, line 14</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 747)) or (($tanktracks is 6) and ($time is 807)) or (($tanktracks is 1) and ($time is 867)) or (($tanktracks is 2) and ($time is 927)) or (($tanktracks is 3) and ($time is 987)) or (($tanktracks is 4) and ($time is 1047))>>
-			<i>Afternoon radio, audition 5, line 15</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 748)) or (($tanktracks is 6) and ($time is 808)) or (($tanktracks is 1) and ($time is 868)) or (($tanktracks is 2) and ($time is 928)) or (($tanktracks is 3) and ($time is 988)) or (($tanktracks is 4) and ($time is 1048))>>
-			<i>Afternoon radio, audition 5, line 16</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 749)) or (($tanktracks is 6) and ($time is 809)) or (($tanktracks is 1) and ($time is 869)) or (($tanktracks is 2) and ($time is 929)) or (($tanktracks is 3) and ($time is 989)) or (($tanktracks is 4) and ($time is 1049))>>
-			<i>Afternoon radio, audition 5, line 17</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 750)) or (($tanktracks is 6) and ($time is 810)) or (($tanktracks is 1) and ($time is 870)) or (($tanktracks is 2) and ($time is 930)) or (($tanktracks is 3) and ($time is 990)) or (($tanktracks is 4) and ($time is 1050))>>
-			<i>Afternoon radio, audition 5, line 18</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 751)) or (($tanktracks is 6) and ($time is 811)) or (($tanktracks is 1) and ($time is 871)) or (($tanktracks is 2) and ($time is 931)) or (($tanktracks is 3) and ($time is 991)) or (($tanktracks is 4) and ($time is 1051))>>
-			<i>Afternoon radio, audition 5, line 19</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 752)) or (($tanktracks is 6) and ($time is 812)) or (($tanktracks is 1) and ($time is 872)) or (($tanktracks is 2) and ($time is 932)) or (($tanktracks is 3) and ($time is 992)) or (($tanktracks is 4) and ($time is 1052))>>
-			<i>Afternoon radio, audition 5, line 20</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 753)) or (($tanktracks is 6) and ($time is 813)) or (($tanktracks is 1) and ($time is 873)) or (($tanktracks is 2) and ($time is 933)) or (($tanktracks is 3) and ($time is 993)) or (($tanktracks is 4) and ($time is 1053))>>
-			<i>Afternoon radio, audition 5, line 21</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 754)) or (($tanktracks is 6) and ($time is 814)) or (($tanktracks is 1) and ($time is 874)) or (($tanktracks is 2) and ($time is 934)) or (($tanktracks is 3) and ($time is 994)) or (($tanktracks is 4) and ($time is 1054))>>
-			<i>Afternoon radio, audition 5, line 22</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 755)) or (($tanktracks is 6) and ($time is 815)) or (($tanktracks is 1) and ($time is 875)) or (($tanktracks is 2) and ($time is 935)) or (($tanktracks is 3) and ($time is 995)) or (($tanktracks is 4) and ($time is 1055))>>
-			<i>Afternoon radio, audition 5, line 23</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 756)) or (($tanktracks is 6) and ($time is 816)) or (($tanktracks is 1) and ($time is 876)) or (($tanktracks is 2) and ($time is 936)) or (($tanktracks is 3) and ($time is 996)) or (($tanktracks is 4) and ($time is 1056))>>
-			<i>Afternoon radio, audition 5, line 24</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 757)) or (($tanktracks is 6) and ($time is 817)) or (($tanktracks is 1) and ($time is 877)) or (($tanktracks is 2) and ($time is 937)) or (($tanktracks is 3) and ($time is 997)) or (($tanktracks is 4) and ($time is 1057))>>
-			<i>Afternoon radio, audition 5, line 25</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 758)) or (($tanktracks is 6) and ($time is 818)) or (($tanktracks is 1) and ($time is 878)) or (($tanktracks is 2) and ($time is 938)) or (($tanktracks is 3) and ($time is 998)) or (($tanktracks is 4) and ($time is 1058))>>
-			<i>Afternoon radio, audition 5, line 26</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 759)) or (($tanktracks is 6) and ($time is 819)) or (($tanktracks is 1) and ($time is 879)) or (($tanktracks is 2) and ($time is 939)) or (($tanktracks is 3) and ($time is 999)) or (($tanktracks is 4) and ($time is 1059))>>
-			<i>Afternoon radio, audition 5, line 27</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 760)) or (($tanktracks is 6) and ($time is 820)) or (($tanktracks is 1) and ($time is 880)) or (($tanktracks is 2) and ($time is 940)) or (($tanktracks is 3) and ($time is 1000)) or (($tanktracks is 4) and ($time is 1060))>>
-			<i>Afternoon radio, audition 5, line 28</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 761)) or (($tanktracks is 6) and ($time is 821)) or (($tanktracks is 1) and ($time is 881)) or (($tanktracks is 2) and ($time is 941)) or (($tanktracks is 3) and ($time is 1001)) or (($tanktracks is 4) and ($time is 1061))>>
-			<i>Afternoon radio, audition 5, line 29</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 762)) or (($tanktracks is 6) and ($time is 822)) or (($tanktracks is 1) and ($time is 882)) or (($tanktracks is 2) and ($time is 942)) or (($tanktracks is 3) and ($time is 1002)) or (($tanktracks is 4) and ($time is 1062))>>
-			<i>Afternoon radio, audition 5, line 30</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 763)) or (($tanktracks is 6) and ($time is 823)) or (($tanktracks is 1) and ($time is 883)) or (($tanktracks is 2) and ($time is 943)) or (($tanktracks is 3) and ($time is 1003)) or (($tanktracks is 4) and ($time is 1063))>>
-			<i>Afternoon radio, audition 5, line 31</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 764)) or (($tanktracks is 6) and ($time is 824)) or (($tanktracks is 1) and ($time is 884)) or (($tanktracks is 2) and ($time is 944)) or (($tanktracks is 3) and ($time is 1004)) or (($tanktracks is 4) and ($time is 1064))>>
-			<i>Afternoon radio, audition 5, line 32</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 765)) or (($tanktracks is 6) and ($time is 825)) or (($tanktracks is 1) and ($time is 885)) or (($tanktracks is 2) and ($time is 945)) or (($tanktracks is 3) and ($time is 1005)) or (($tanktracks is 4) and ($time is 1065))>>
-			<i>Afternoon radio, audition 5, line 33</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 766)) or (($tanktracks is 6) and ($time is 826)) or (($tanktracks is 1) and ($time is 886)) or (($tanktracks is 2) and ($time is 946)) or (($tanktracks is 3) and ($time is 1006)) or (($tanktracks is 4) and ($time is 1066))>>
-			<i>Afternoon radio, audition 5, line 34</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 767)) or (($tanktracks is 6) and ($time is 827)) or (($tanktracks is 1) and ($time is 887)) or (($tanktracks is 2) and ($time is 947)) or (($tanktracks is 3) and ($time is 1007)) or (($tanktracks is 4) and ($time is 1067))>>
-			<i>Afternoon radio, audition 5, line 35</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 768)) or (($tanktracks is 6) and ($time is 828)) or (($tanktracks is 1) and ($time is 888)) or (($tanktracks is 2) and ($time is 948)) or (($tanktracks is 3) and ($time is 1008)) or (($tanktracks is 4) and ($time is 1068))>>
-			<i>Afternoon radio, audition 5, line 36</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 769)) or (($tanktracks is 6) and ($time is 829)) or (($tanktracks is 1) and ($time is 889)) or (($tanktracks is 2) and ($time is 949)) or (($tanktracks is 3) and ($time is 1009)) or (($tanktracks is 4) and ($time is 1069))>>
-			<i>Afternoon radio, audition 5, line 37</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 770)) or (($tanktracks is 6) and ($time is 830)) or (($tanktracks is 1) and ($time is 890)) or (($tanktracks is 2) and ($time is 950)) or (($tanktracks is 3) and ($time is 1010)) or (($tanktracks is 4) and ($time is 1070))>>
-			<i>Afternoon radio, audition 5, line 38</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 771)) or (($tanktracks is 6) and ($time is 831)) or (($tanktracks is 1) and ($time is 891)) or (($tanktracks is 2) and ($time is 951)) or (($tanktracks is 3) and ($time is 1011)) or (($tanktracks is 4) and ($time is 1071))>>
-			<i>Afternoon radio, audition 5, line 39</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 772)) or (($tanktracks is 6) and ($time is 832)) or (($tanktracks is 1) and ($time is 892)) or (($tanktracks is 2) and ($time is 952)) or (($tanktracks is 3) and ($time is 1012)) or (($tanktracks is 4) and ($time is 1072))>>
-			<i>Afternoon radio, audition 5, line 40</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 773)) or (($tanktracks is 6) and ($time is 833)) or (($tanktracks is 1) and ($time is 893)) or (($tanktracks is 2) and ($time is 953)) or (($tanktracks is 3) and ($time is 1013)) or (($tanktracks is 4) and ($time is 1073))>>
-			<i>Afternoon radio, audition 5, line 41</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 774)) or (($tanktracks is 6) and ($time is 834)) or (($tanktracks is 1) and ($time is 894)) or (($tanktracks is 2) and ($time is 954)) or (($tanktracks is 3) and ($time is 1014)) or (($tanktracks is 4) and ($time is 1074))>>
-			<i>Afternoon radio, audition 5, line 42</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 775)) or (($tanktracks is 6) and ($time is 835)) or (($tanktracks is 1) and ($time is 895)) or (($tanktracks is 2) and ($time is 955)) or (($tanktracks is 3) and ($time is 1015)) or (($tanktracks is 4) and ($time is 1075))>>
-			<i>Afternoon radio, audition 5, line 43</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 776)) or (($tanktracks is 6) and ($time is 836)) or (($tanktracks is 1) and ($time is 896)) or (($tanktracks is 2) and ($time is 956)) or (($tanktracks is 3) and ($time is 1016)) or (($tanktracks is 4) and ($time is 1076))>>
-			<i>Afternoon radio, audition 5, line 44</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 777)) or (($tanktracks is 6) and ($time is 837)) or (($tanktracks is 1) and ($time is 897)) or (($tanktracks is 2) and ($time is 957)) or (($tanktracks is 3) and ($time is 1017)) or (($tanktracks is 4) and ($time is 1077))>>
-			<i>Afternoon radio, audition 5, line 45</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 778)) or (($tanktracks is 6) and ($time is 838)) or (($tanktracks is 1) and ($time is 898)) or (($tanktracks is 2) and ($time is 958)) or (($tanktracks is 3) and ($time is 1018)) or (($tanktracks is 4) and ($time is 1078))>>
-			<i>Afternoon radio, audition 5, line 46</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 779)) or (($tanktracks is 6) and ($time is 839)) or (($tanktracks is 1) and ($time is 899)) or (($tanktracks is 2) and ($time is 959)) or (($tanktracks is 3) and ($time is 1019)) or (($tanktracks is 4) and ($time is 1079))>>
-			<i>Afternoon radio, audition 5, line 47</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 733)) or (($tanktracks is 1) and ($time is 793)) or (($tanktracks is 2) and ($time is 853)) or (($tanktracks is 3) and ($time is 913)) or (($tanktracks is 4) and ($time is 973)) or (($tanktracks is 5) and ($time is 1033))>>
-			<i>Afternoon radio, audition 6, line 1</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 734)) or (($tanktracks is 1) and ($time is 794)) or (($tanktracks is 2) and ($time is 854)) or (($tanktracks is 3) and ($time is 914)) or (($tanktracks is 4) and ($time is 974)) or (($tanktracks is 5) and ($time is 1034))>>
-			<i>Afternoon radio, audition 6, line 2</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 735)) or (($tanktracks is 1) and ($time is 795)) or (($tanktracks is 2) and ($time is 855)) or (($tanktracks is 3) and ($time is 915)) or (($tanktracks is 4) and ($time is 975)) or (($tanktracks is 5) and ($time is 1035))>>
-			<i>Afternoon radio, audition 6, line 3</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 736)) or (($tanktracks is 1) and ($time is 796)) or (($tanktracks is 2) and ($time is 856)) or (($tanktracks is 3) and ($time is 916)) or (($tanktracks is 4) and ($time is 976)) or (($tanktracks is 5) and ($time is 1036))>>
-			<i>Afternoon radio, audition 6, line 4</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 737)) or (($tanktracks is 1) and ($time is 797)) or (($tanktracks is 2) and ($time is 857)) or (($tanktracks is 3) and ($time is 917)) or (($tanktracks is 4) and ($time is 977)) or (($tanktracks is 5) and ($time is 1037))>>
-			<i>Afternoon radio, audition 6, line 5</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 738)) or (($tanktracks is 1) and ($time is 798)) or (($tanktracks is 2) and ($time is 858)) or (($tanktracks is 3) and ($time is 918)) or (($tanktracks is 4) and ($time is 978)) or (($tanktracks is 5) and ($time is 1038))>>
-			<i>Afternoon radio, audition 6, line 6</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 739)) or (($tanktracks is 1) and ($time is 799)) or (($tanktracks is 2) and ($time is 859)) or (($tanktracks is 3) and ($time is 919)) or (($tanktracks is 4) and ($time is 979)) or (($tanktracks is 5) and ($time is 1039))>>
-			<i>Afternoon radio, audition 6, line 7</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 740)) or (($tanktracks is 1) and ($time is 800)) or (($tanktracks is 2) and ($time is 860)) or (($tanktracks is 3) and ($time is 920)) or (($tanktracks is 4) and ($time is 980)) or (($tanktracks is 5) and ($time is 1040))>>
-			<i>Afternoon radio, audition 6, line 8</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 741)) or (($tanktracks is 1) and ($time is 801)) or (($tanktracks is 2) and ($time is 861)) or (($tanktracks is 3) and ($time is 921)) or (($tanktracks is 4) and ($time is 981)) or (($tanktracks is 5) and ($time is 1041))>>
-			<i>Afternoon radio, audition 6, line 9</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 742)) or (($tanktracks is 1) and ($time is 802)) or (($tanktracks is 2) and ($time is 862)) or (($tanktracks is 3) and ($time is 922)) or (($tanktracks is 4) and ($time is 982)) or (($tanktracks is 5) and ($time is 1042))>>
-			<i>Afternoon radio, audition 6, line 10</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 743)) or (($tanktracks is 1) and ($time is 803)) or (($tanktracks is 2) and ($time is 863)) or (($tanktracks is 3) and ($time is 923)) or (($tanktracks is 4) and ($time is 983)) or (($tanktracks is 5) and ($time is 1043))>>
-			<i>Afternoon radio, audition 6, line 11</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 744)) or (($tanktracks is 1) and ($time is 804)) or (($tanktracks is 2) and ($time is 864)) or (($tanktracks is 3) and ($time is 924)) or (($tanktracks is 4) and ($time is 984)) or (($tanktracks is 5) and ($time is 1044))>>
-			<i>Afternoon radio, audition 6, line 12</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 745)) or (($tanktracks is 1) and ($time is 805)) or (($tanktracks is 2) and ($time is 865)) or (($tanktracks is 3) and ($time is 925)) or (($tanktracks is 4) and ($time is 985)) or (($tanktracks is 5) and ($time is 1045))>>
-			<i>Afternoon radio, audition 6, line 13</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 746)) or (($tanktracks is 1) and ($time is 806)) or (($tanktracks is 2) and ($time is 866)) or (($tanktracks is 3) and ($time is 926)) or (($tanktracks is 4) and ($time is 986)) or (($tanktracks is 5) and ($time is 1046))>>
-			<i>Afternoon radio, audition 6, line 14</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 747)) or (($tanktracks is 1) and ($time is 807)) or (($tanktracks is 2) and ($time is 867)) or (($tanktracks is 3) and ($time is 927)) or (($tanktracks is 4) and ($time is 987)) or (($tanktracks is 5) and ($time is 1047))>>
-			<i>Afternoon radio, audition 6, line 15</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 748)) or (($tanktracks is 1) and ($time is 808)) or (($tanktracks is 2) and ($time is 868)) or (($tanktracks is 3) and ($time is 928)) or (($tanktracks is 4) and ($time is 988)) or (($tanktracks is 5) and ($time is 1048))>>
-			<i>Afternoon radio, audition 6, line 16</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 749)) or (($tanktracks is 1) and ($time is 809)) or (($tanktracks is 2) and ($time is 869)) or (($tanktracks is 3) and ($time is 929)) or (($tanktracks is 4) and ($time is 989)) or (($tanktracks is 5) and ($time is 1049))>>
-			<i>Afternoon radio, audition 6, line 17</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 750)) or (($tanktracks is 1) and ($time is 810)) or (($tanktracks is 2) and ($time is 870)) or (($tanktracks is 3) and ($time is 930)) or (($tanktracks is 4) and ($time is 990)) or (($tanktracks is 5) and ($time is 1050))>>
-			<i>Afternoon radio, audition 6, line 18</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 751)) or (($tanktracks is 1) and ($time is 811)) or (($tanktracks is 2) and ($time is 871)) or (($tanktracks is 3) and ($time is 931)) or (($tanktracks is 4) and ($time is 991)) or (($tanktracks is 5) and ($time is 1051))>>
-			<i>Afternoon radio, audition 6, line 19</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 752)) or (($tanktracks is 1) and ($time is 812)) or (($tanktracks is 2) and ($time is 872)) or (($tanktracks is 3) and ($time is 932)) or (($tanktracks is 4) and ($time is 992)) or (($tanktracks is 5) and ($time is 1052))>>
-			<i>Afternoon radio, audition 6, line 20</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 753)) or (($tanktracks is 1) and ($time is 813)) or (($tanktracks is 2) and ($time is 873)) or (($tanktracks is 3) and ($time is 933)) or (($tanktracks is 4) and ($time is 993)) or (($tanktracks is 5) and ($time is 1053))>>
-			<i>Afternoon radio, audition 6, line 21</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 754)) or (($tanktracks is 1) and ($time is 814)) or (($tanktracks is 2) and ($time is 874)) or (($tanktracks is 3) and ($time is 934)) or (($tanktracks is 4) and ($time is 994)) or (($tanktracks is 5) and ($time is 1054))>>
-			<i>Afternoon radio, audition 6, line 22</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 755)) or (($tanktracks is 1) and ($time is 815)) or (($tanktracks is 2) and ($time is 875)) or (($tanktracks is 3) and ($time is 935)) or (($tanktracks is 4) and ($time is 995)) or (($tanktracks is 5) and ($time is 1055))>>
-			<i>Afternoon radio, audition 6, line 23</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 756)) or (($tanktracks is 1) and ($time is 816)) or (($tanktracks is 2) and ($time is 876)) or (($tanktracks is 3) and ($time is 936)) or (($tanktracks is 4) and ($time is 996)) or (($tanktracks is 5) and ($time is 1056))>>
-			<i>Afternoon radio, audition 6, line 24</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 757)) or (($tanktracks is 1) and ($time is 817)) or (($tanktracks is 2) and ($time is 877)) or (($tanktracks is 3) and ($time is 937)) or (($tanktracks is 4) and ($time is 997)) or (($tanktracks is 5) and ($time is 1057))>>
-			<i>Afternoon radio, audition 6, line 25</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 758)) or (($tanktracks is 1) and ($time is 818)) or (($tanktracks is 2) and ($time is 878)) or (($tanktracks is 3) and ($time is 938)) or (($tanktracks is 4) and ($time is 998)) or (($tanktracks is 5) and ($time is 1058))>>
-			<i>Afternoon radio, audition 6, line 26</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 759)) or (($tanktracks is 1) and ($time is 819)) or (($tanktracks is 2) and ($time is 879)) or (($tanktracks is 3) and ($time is 939)) or (($tanktracks is 4) and ($time is 999)) or (($tanktracks is 5) and ($time is 1059))>>
-			<i>Afternoon radio, audition 6, line 27</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 760)) or (($tanktracks is 1) and ($time is 820)) or (($tanktracks is 2) and ($time is 880)) or (($tanktracks is 3) and ($time is 940)) or (($tanktracks is 4) and ($time is 1000)) or (($tanktracks is 5) and ($time is 1060))>>
-			<i>Afternoon radio, audition 6, line 28</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 761)) or (($tanktracks is 1) and ($time is 821)) or (($tanktracks is 2) and ($time is 881)) or (($tanktracks is 3) and ($time is 941)) or (($tanktracks is 4) and ($time is 1001)) or (($tanktracks is 5) and ($time is 1061))>>
-			<i>Afternoon radio, audition 6, line 29</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 762)) or (($tanktracks is 1) and ($time is 822)) or (($tanktracks is 2) and ($time is 882)) or (($tanktracks is 3) and ($time is 942)) or (($tanktracks is 4) and ($time is 1002)) or (($tanktracks is 5) and ($time is 1062))>>
-			<i>Afternoon radio, audition 6, line 30</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 763)) or (($tanktracks is 1) and ($time is 823)) or (($tanktracks is 2) and ($time is 883)) or (($tanktracks is 3) and ($time is 943)) or (($tanktracks is 4) and ($time is 1003)) or (($tanktracks is 5) and ($time is 1063))>>
-			<i>Afternoon radio, audition 6, line 31</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 764)) or (($tanktracks is 1) and ($time is 824)) or (($tanktracks is 2) and ($time is 884)) or (($tanktracks is 3) and ($time is 944)) or (($tanktracks is 4) and ($time is 1004)) or (($tanktracks is 5) and ($time is 1064))>>
-			<i>Afternoon radio, audition 6, line 32</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 765)) or (($tanktracks is 1) and ($time is 825)) or (($tanktracks is 2) and ($time is 885)) or (($tanktracks is 3) and ($time is 945)) or (($tanktracks is 4) and ($time is 1005)) or (($tanktracks is 5) and ($time is 1065))>>
-			<i>Afternoon radio, audition 6, line 33</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 766)) or (($tanktracks is 1) and ($time is 826)) or (($tanktracks is 2) and ($time is 886)) or (($tanktracks is 3) and ($time is 946)) or (($tanktracks is 4) and ($time is 1006)) or (($tanktracks is 5) and ($time is 1066))>>
-			<i>Afternoon radio, audition 6, line 34</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 767)) or (($tanktracks is 1) and ($time is 827)) or (($tanktracks is 2) and ($time is 887)) or (($tanktracks is 3) and ($time is 947)) or (($tanktracks is 4) and ($time is 1007)) or (($tanktracks is 5) and ($time is 1067))>>
-			<i>Afternoon radio, audition 6, line 35</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 768)) or (($tanktracks is 1) and ($time is 828)) or (($tanktracks is 2) and ($time is 888)) or (($tanktracks is 3) and ($time is 948)) or (($tanktracks is 4) and ($time is 1008)) or (($tanktracks is 5) and ($time is 1068))>>
-			<i>Afternoon radio, audition 6, line 36</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 769)) or (($tanktracks is 1) and ($time is 829)) or (($tanktracks is 2) and ($time is 889)) or (($tanktracks is 3) and ($time is 949)) or (($tanktracks is 4) and ($time is 1009)) or (($tanktracks is 5) and ($time is 1069))>>
-			<i>Afternoon radio, audition 6, line 37</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 770)) or (($tanktracks is 1) and ($time is 830)) or (($tanktracks is 2) and ($time is 890)) or (($tanktracks is 3) and ($time is 950)) or (($tanktracks is 4) and ($time is 1010)) or (($tanktracks is 5) and ($time is 1070))>>
-			<i>Afternoon radio, audition 6, line 38</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 771)) or (($tanktracks is 1) and ($time is 831)) or (($tanktracks is 2) and ($time is 891)) or (($tanktracks is 3) and ($time is 951)) or (($tanktracks is 4) and ($time is 1011)) or (($tanktracks is 5) and ($time is 1071))>>
-			<i>Afternoon radio, audition 6, line 39</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 772)) or (($tanktracks is 1) and ($time is 832)) or (($tanktracks is 2) and ($time is 892)) or (($tanktracks is 3) and ($time is 952)) or (($tanktracks is 4) and ($time is 1012)) or (($tanktracks is 5) and ($time is 1072))>>
-			<i>Afternoon radio, audition 6, line 40</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 773)) or (($tanktracks is 1) and ($time is 833)) or (($tanktracks is 2) and ($time is 893)) or (($tanktracks is 3) and ($time is 953)) or (($tanktracks is 4) and ($time is 1013)) or (($tanktracks is 5) and ($time is 1073))>>
-			<i>Afternoon radio, audition 6, line 41</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 774)) or (($tanktracks is 1) and ($time is 834)) or (($tanktracks is 2) and ($time is 894)) or (($tanktracks is 3) and ($time is 954)) or (($tanktracks is 4) and ($time is 1014)) or (($tanktracks is 5) and ($time is 1074))>>
-			<i>Afternoon radio, audition 6, line 42</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 775)) or (($tanktracks is 1) and ($time is 835)) or (($tanktracks is 2) and ($time is 895)) or (($tanktracks is 3) and ($time is 955)) or (($tanktracks is 4) and ($time is 1015)) or (($tanktracks is 5) and ($time is 1075))>>
-			<i>Afternoon radio, audition 6, line 43</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 776)) or (($tanktracks is 1) and ($time is 836)) or (($tanktracks is 2) and ($time is 896)) or (($tanktracks is 3) and ($time is 956)) or (($tanktracks is 4) and ($time is 1016)) or (($tanktracks is 5) and ($time is 1076))>>
-			<i>Afternoon radio, audition 6, line 44</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 777)) or (($tanktracks is 1) and ($time is 837)) or (($tanktracks is 2) and ($time is 897)) or (($tanktracks is 3) and ($time is 957)) or (($tanktracks is 4) and ($time is 1017)) or (($tanktracks is 5) and ($time is 1077))>>
-			<i>Afternoon radio, audition 6, line 45</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 778)) or (($tanktracks is 1) and ($time is 838)) or (($tanktracks is 2) and ($time is 898)) or (($tanktracks is 3) and ($time is 958)) or (($tanktracks is 4) and ($time is 1018)) or (($tanktracks is 5) and ($time is 1078))>>
-			<i>Afternoon radio, audition 6, line 46</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 779)) or (($tanktracks is 1) and ($time is 839)) or (($tanktracks is 2) and ($time is 899)) or (($tanktracks is 3) and ($time is 959)) or (($tanktracks is 4) and ($time is 1019)) or (($tanktracks is 5) and ($time is 1079))>>
-			<i>Afternoon radio, audition 6, line 47</i>
-			<br>
-		<</if>>
-	<</if>>
-	<<if $hour gte 18 and $hour lt 24>>
-		<<if (($tanktracks is 1) and ($time is 1093)) or (($tanktracks is 2) and ($time is 1153)) or (($tanktracks is 3) and ($time is 1213)) or (($tanktracks is 4) and ($time is 1273)) or (($tanktracks is 5) and ($time is 1333)) or (($tanktracks is 6) and ($time is 1393))>>
-			<i>Evening radio, audition 1, line 1</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1094)) or (($tanktracks is 2) and ($time is 1154)) or (($tanktracks is 3) and ($time is 1214)) or (($tanktracks is 4) and ($time is 1274)) or (($tanktracks is 5) and ($time is 1334)) or (($tanktracks is 6) and ($time is 1394))>>
-			<i>Evening radio, audition 1, line 2</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1095)) or (($tanktracks is 2) and ($time is 1155)) or (($tanktracks is 3) and ($time is 1215)) or (($tanktracks is 4) and ($time is 1275)) or (($tanktracks is 5) and ($time is 1335)) or (($tanktracks is 6) and ($time is 1395))>>
-			<i>Evening radio, audition 1, line 3</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1096)) or (($tanktracks is 2) and ($time is 1156)) or (($tanktracks is 3) and ($time is 1216)) or (($tanktracks is 4) and ($time is 1276)) or (($tanktracks is 5) and ($time is 1336)) or (($tanktracks is 6) and ($time is 1396))>>
-			<i>Evening radio, audition 1, line 4</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1097)) or (($tanktracks is 2) and ($time is 1157)) or (($tanktracks is 3) and ($time is 1217)) or (($tanktracks is 4) and ($time is 1277)) or (($tanktracks is 5) and ($time is 1337)) or (($tanktracks is 6) and ($time is 1397))>>
-			<i>Evening radio, audition 1, line 5</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1098)) or (($tanktracks is 2) and ($time is 1158)) or (($tanktracks is 3) and ($time is 1218)) or (($tanktracks is 4) and ($time is 1278)) or (($tanktracks is 5) and ($time is 1338)) or (($tanktracks is 6) and ($time is 1398))>>
-			<i>Evening radio, audition 1, line 6</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1099)) or (($tanktracks is 2) and ($time is 1159)) or (($tanktracks is 3) and ($time is 1219)) or (($tanktracks is 4) and ($time is 1279)) or (($tanktracks is 5) and ($time is 1339)) or (($tanktracks is 6) and ($time is 1399))>>
-			<i>Evening radio, audition 1, line 7</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1100)) or (($tanktracks is 2) and ($time is 1160)) or (($tanktracks is 3) and ($time is 1220)) or (($tanktracks is 4) and ($time is 1280)) or (($tanktracks is 5) and ($time is 1340)) or (($tanktracks is 6) and ($time is 1400))>>
-			<i>Evening radio, audition 1, line 8</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1101)) or (($tanktracks is 2) and ($time is 1161)) or (($tanktracks is 3) and ($time is 1221)) or (($tanktracks is 4) and ($time is 1281)) or (($tanktracks is 5) and ($time is 1341)) or (($tanktracks is 6) and ($time is 1401))>>
-			<i>Evening radio, audition 1, line 9</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1102)) or (($tanktracks is 2) and ($time is 1162)) or (($tanktracks is 3) and ($time is 1222)) or (($tanktracks is 4) and ($time is 1282)) or (($tanktracks is 5) and ($time is 1342)) or (($tanktracks is 6) and ($time is 1402))>>
-			<i>Evening radio, audition 1, line 10</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1103)) or (($tanktracks is 2) and ($time is 1163)) or (($tanktracks is 3) and ($time is 1223)) or (($tanktracks is 4) and ($time is 1283)) or (($tanktracks is 5) and ($time is 1343)) or (($tanktracks is 6) and ($time is 1403))>>
-			<i>Evening radio, audition 1, line 11</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1104)) or (($tanktracks is 2) and ($time is 1164)) or (($tanktracks is 3) and ($time is 1224)) or (($tanktracks is 4) and ($time is 1284)) or (($tanktracks is 5) and ($time is 1344)) or (($tanktracks is 6) and ($time is 1404))>>
-			<i>Evening radio, audition 1, line 12</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1105)) or (($tanktracks is 2) and ($time is 1165)) or (($tanktracks is 3) and ($time is 1225)) or (($tanktracks is 4) and ($time is 1285)) or (($tanktracks is 5) and ($time is 1345)) or (($tanktracks is 6) and ($time is 1405))>>
-			<i>Evening radio, audition 1, line 13</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1106)) or (($tanktracks is 2) and ($time is 1166)) or (($tanktracks is 3) and ($time is 1226)) or (($tanktracks is 4) and ($time is 1286)) or (($tanktracks is 5) and ($time is 1346)) or (($tanktracks is 6) and ($time is 1406))>>
-			<i>Evening radio, audition 1, line 14</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1107)) or (($tanktracks is 2) and ($time is 1167)) or (($tanktracks is 3) and ($time is 1227)) or (($tanktracks is 4) and ($time is 1287)) or (($tanktracks is 5) and ($time is 1347)) or (($tanktracks is 6) and ($time is 1407))>>
-			<i>Evening radio, audition 1, line 15</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1108)) or (($tanktracks is 2) and ($time is 1168)) or (($tanktracks is 3) and ($time is 1228)) or (($tanktracks is 4) and ($time is 1288)) or (($tanktracks is 5) and ($time is 1348)) or (($tanktracks is 6) and ($time is 1408))>>
-			<i>Evening radio, audition 1, line 16</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1109)) or (($tanktracks is 2) and ($time is 1169)) or (($tanktracks is 3) and ($time is 1229)) or (($tanktracks is 4) and ($time is 1289)) or (($tanktracks is 5) and ($time is 1349)) or (($tanktracks is 6) and ($time is 1409))>>
-			<i>Evening radio, audition 1, line 17</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1110)) or (($tanktracks is 2) and ($time is 1170)) or (($tanktracks is 3) and ($time is 1230)) or (($tanktracks is 4) and ($time is 1290)) or (($tanktracks is 5) and ($time is 1350)) or (($tanktracks is 6) and ($time is 1410))>>
-			<i>Evening radio, audition 1, line 18</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1111)) or (($tanktracks is 2) and ($time is 1171)) or (($tanktracks is 3) and ($time is 1231)) or (($tanktracks is 4) and ($time is 1291)) or (($tanktracks is 5) and ($time is 1351)) or (($tanktracks is 6) and ($time is 1411))>>
-			<i>Evening radio, audition 1, line 19</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1112)) or (($tanktracks is 2) and ($time is 1172)) or (($tanktracks is 3) and ($time is 1232)) or (($tanktracks is 4) and ($time is 1292)) or (($tanktracks is 5) and ($time is 1352)) or (($tanktracks is 6) and ($time is 1412))>>
-			<i>Evening radio, audition 1, line 20</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1113)) or (($tanktracks is 2) and ($time is 1173)) or (($tanktracks is 3) and ($time is 1233)) or (($tanktracks is 4) and ($time is 1293)) or (($tanktracks is 5) and ($time is 1353)) or (($tanktracks is 6) and ($time is 1413))>>
-			<i>Evening radio, audition 1, line 21</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1114)) or (($tanktracks is 2) and ($time is 1174)) or (($tanktracks is 3) and ($time is 1234)) or (($tanktracks is 4) and ($time is 1294)) or (($tanktracks is 5) and ($time is 1354)) or (($tanktracks is 6) and ($time is 1414))>>
-			<i>Evening radio, audition 1, line 22</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1115)) or (($tanktracks is 2) and ($time is 1175)) or (($tanktracks is 3) and ($time is 1235)) or (($tanktracks is 4) and ($time is 1295)) or (($tanktracks is 5) and ($time is 1355)) or (($tanktracks is 6) and ($time is 1415))>>
-			<i>Evening radio, audition 1, line 23</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1116)) or (($tanktracks is 2) and ($time is 1176)) or (($tanktracks is 3) and ($time is 1236)) or (($tanktracks is 4) and ($time is 1296)) or (($tanktracks is 5) and ($time is 1356)) or (($tanktracks is 6) and ($time is 1416))>>
-			<i>Evening radio, audition 1, line 24</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1117)) or (($tanktracks is 2) and ($time is 1177)) or (($tanktracks is 3) and ($time is 1237)) or (($tanktracks is 4) and ($time is 1297)) or (($tanktracks is 5) and ($time is 1357)) or (($tanktracks is 6) and ($time is 1417))>>
-			<i>Evening radio, audition 1, line 25</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1118)) or (($tanktracks is 2) and ($time is 1178)) or (($tanktracks is 3) and ($time is 1238)) or (($tanktracks is 4) and ($time is 1298)) or (($tanktracks is 5) and ($time is 1358)) or (($tanktracks is 6) and ($time is 1418))>>
-			<i>Evening radio, audition 1, line 26</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1119)) or (($tanktracks is 2) and ($time is 1179)) or (($tanktracks is 3) and ($time is 1239)) or (($tanktracks is 4) and ($time is 1299)) or (($tanktracks is 5) and ($time is 1359)) or (($tanktracks is 6) and ($time is 1419))>>
-			<i>Evening radio, audition 1, line 27</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1120)) or (($tanktracks is 2) and ($time is 1180)) or (($tanktracks is 3) and ($time is 1240)) or (($tanktracks is 4) and ($time is 1300)) or (($tanktracks is 5) and ($time is 1360)) or (($tanktracks is 6) and ($time is 1420))>>
-			<i>Evening radio, audition 1, line 28</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1121)) or (($tanktracks is 2) and ($time is 1181)) or (($tanktracks is 3) and ($time is 1241)) or (($tanktracks is 4) and ($time is 1301)) or (($tanktracks is 5) and ($time is 1361)) or (($tanktracks is 6) and ($time is 1421))>>
-			<i>Evening radio, audition 1, line 29</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1122)) or (($tanktracks is 2) and ($time is 1182)) or (($tanktracks is 3) and ($time is 1242)) or (($tanktracks is 4) and ($time is 1302)) or (($tanktracks is 5) and ($time is 1362)) or (($tanktracks is 6) and ($time is 1422))>>
-			<i>Evening radio, audition 1, line 30</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1123)) or (($tanktracks is 2) and ($time is 1183)) or (($tanktracks is 3) and ($time is 1243)) or (($tanktracks is 4) and ($time is 1303)) or (($tanktracks is 5) and ($time is 1363)) or (($tanktracks is 6) and ($time is 1423))>>
-			<i>Evening radio, audition 1, line 31</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1124)) or (($tanktracks is 2) and ($time is 1184)) or (($tanktracks is 3) and ($time is 1244)) or (($tanktracks is 4) and ($time is 1304)) or (($tanktracks is 5) and ($time is 1364)) or (($tanktracks is 6) and ($time is 1424))>>
-			<i>Evening radio, audition 1, line 32</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1125)) or (($tanktracks is 2) and ($time is 1185)) or (($tanktracks is 3) and ($time is 1245)) or (($tanktracks is 4) and ($time is 1305)) or (($tanktracks is 5) and ($time is 1365)) or (($tanktracks is 6) and ($time is 1425))>>
-			<i>Evening radio, audition 1, line 33</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1126)) or (($tanktracks is 2) and ($time is 1186)) or (($tanktracks is 3) and ($time is 1246)) or (($tanktracks is 4) and ($time is 1306)) or (($tanktracks is 5) and ($time is 1366)) or (($tanktracks is 6) and ($time is 1426))>>
-			<i>Evening radio, audition 1, line 34</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1127)) or (($tanktracks is 2) and ($time is 1187)) or (($tanktracks is 3) and ($time is 1247)) or (($tanktracks is 4) and ($time is 1307)) or (($tanktracks is 5) and ($time is 1367)) or (($tanktracks is 6) and ($time is 1427))>>
-			<i>Evening radio, audition 1, line 35</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1128)) or (($tanktracks is 2) and ($time is 1188)) or (($tanktracks is 3) and ($time is 1248)) or (($tanktracks is 4) and ($time is 1308)) or (($tanktracks is 5) and ($time is 1368)) or (($tanktracks is 6) and ($time is 1428))>>
-			<i>Evening radio, audition 1, line 36</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1129)) or (($tanktracks is 2) and ($time is 1189)) or (($tanktracks is 3) and ($time is 1249)) or (($tanktracks is 4) and ($time is 1309)) or (($tanktracks is 5) and ($time is 1369)) or (($tanktracks is 6) and ($time is 1429))>>
-			<i>Evening radio, audition 1, line 37</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1130)) or (($tanktracks is 2) and ($time is 1190)) or (($tanktracks is 3) and ($time is 1250)) or (($tanktracks is 4) and ($time is 1310)) or (($tanktracks is 5) and ($time is 1370)) or (($tanktracks is 6) and ($time is 1430))>>
-			<i>Evening radio, audition 1, line 38</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1131)) or (($tanktracks is 2) and ($time is 1191)) or (($tanktracks is 3) and ($time is 1251)) or (($tanktracks is 4) and ($time is 1311)) or (($tanktracks is 5) and ($time is 1371)) or (($tanktracks is 6) and ($time is 1431))>>
-			<i>Evening radio, audition 1, line 39</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1132)) or (($tanktracks is 2) and ($time is 1192)) or (($tanktracks is 3) and ($time is 1252)) or (($tanktracks is 4) and ($time is 1312)) or (($tanktracks is 5) and ($time is 1372)) or (($tanktracks is 6) and ($time is 1432))>>
-			<i>Evening radio, audition 1, line 40</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1133)) or (($tanktracks is 2) and ($time is 1193)) or (($tanktracks is 3) and ($time is 1253)) or (($tanktracks is 4) and ($time is 1313)) or (($tanktracks is 5) and ($time is 1373)) or (($tanktracks is 6) and ($time is 1433))>>
-			<i>Evening radio, audition 1, line 41</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1134)) or (($tanktracks is 2) and ($time is 1194)) or (($tanktracks is 3) and ($time is 1254)) or (($tanktracks is 4) and ($time is 1314)) or (($tanktracks is 5) and ($time is 1374)) or (($tanktracks is 6) and ($time is 1434))>>
-			<i>Evening radio, audition 1, line 42</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1135)) or (($tanktracks is 2) and ($time is 1195)) or (($tanktracks is 3) and ($time is 1255)) or (($tanktracks is 4) and ($time is 1315)) or (($tanktracks is 4) and ($time is 1375)) or (($tanktracks is 6) and ($time is 1435))>>
-			<i>Evening radio, audition 1, line 43</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1136)) or (($tanktracks is 2) and ($time is 1196)) or (($tanktracks is 3) and ($time is 1256)) or (($tanktracks is 4) and ($time is 1316)) or (($tanktracks is 5) and ($time is 1376)) or (($tanktracks is 6) and ($time is 1436))>>
-			<i>Evening radio, audition 1, line 44</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1137)) or (($tanktracks is 2) and ($time is 1197)) or (($tanktracks is 3) and ($time is 1257)) or (($tanktracks is 4) and ($time is 1317)) or (($tanktracks is 5) and ($time is 1377)) or (($tanktracks is 6) and ($time is 1437))>>
-			<i>Evening radio, audition 1, line 45</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1138)) or (($tanktracks is 2) and ($time is 1198)) or (($tanktracks is 3) and ($time is 1258)) or (($tanktracks is 4) and ($time is 1318)) or (($tanktracks is 5) and ($time is 1378)) or (($tanktracks is 6) and ($time is 1438))>>
-			<i>Evening radio, audition 1, line 46</i>
-			<br>
-		<<elseif (($tanktracks is 1) and ($time is 1139)) or (($tanktracks is 2) and ($time is 1199)) or (($tanktracks is 3) and ($time is 1259)) or (($tanktracks is 4) and ($time is 1319)) or (($tanktracks is 5) and ($time is 1379)) or (($tanktracks is 6) and ($time is 1439))>>
-			<i>Evening radio, audition 1, line 47</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1093)) or (($tanktracks is 3) and ($time is 1153)) or (($tanktracks is 4) and ($time is 1213)) or (($tanktracks is 5) and ($time is 1273)) or (($tanktracks is 6) and ($time is 1333)) or (($tanktracks is 1) and ($time is 1393))>>
-			<i>Evening radio, audition 2, line 1</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1094)) or (($tanktracks is 3) and ($time is 1154)) or (($tanktracks is 4) and ($time is 1214)) or (($tanktracks is 5) and ($time is 1274)) or (($tanktracks is 6) and ($time is 1334)) or (($tanktracks is 1) and ($time is 1394))>>
-			<i>Evening radio, audition 2, line 2</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1095)) or (($tanktracks is 3) and ($time is 1155)) or (($tanktracks is 4) and ($time is 1215)) or (($tanktracks is 5) and ($time is 1275)) or (($tanktracks is 6) and ($time is 1335)) or (($tanktracks is 1) and ($time is 1395))>>
-			<i>Evening radio, audition 2, line 3</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1096)) or (($tanktracks is 3) and ($time is 1156)) or (($tanktracks is 4) and ($time is 1216)) or (($tanktracks is 5) and ($time is 1276)) or (($tanktracks is 6) and ($time is 1336)) or (($tanktracks is 1) and ($time is 1396))>>
-			<i>Evening radio, audition 2, line 4</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1097)) or (($tanktracks is 3) and ($time is 1157)) or (($tanktracks is 4) and ($time is 1217)) or (($tanktracks is 5) and ($time is 1277)) or (($tanktracks is 6) and ($time is 1337)) or (($tanktracks is 1) and ($time is 1397))>>
-			<i>Evening radio, audition 2, line 5</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1098)) or (($tanktracks is 3) and ($time is 1158)) or (($tanktracks is 4) and ($time is 1218)) or (($tanktracks is 5) and ($time is 1278)) or (($tanktracks is 6) and ($time is 1338)) or (($tanktracks is 1) and ($time is 1398))>>
-			<i>Evening radio, audition 2, line 6</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1099)) or (($tanktracks is 3) and ($time is 1159)) or (($tanktracks is 4) and ($time is 1219)) or (($tanktracks is 5) and ($time is 1279)) or (($tanktracks is 6) and ($time is 1339)) or (($tanktracks is 1) and ($time is 1399))>>
-			<i>Evening radio, audition 2, line 7</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1100)) or (($tanktracks is 3) and ($time is 1160)) or (($tanktracks is 4) and ($time is 1220)) or (($tanktracks is 5) and ($time is 1280)) or (($tanktracks is 6) and ($time is 1340)) or (($tanktracks is 1) and ($time is 1400))>>
-			<i>Evening radio, audition 2, line 8</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1101)) or (($tanktracks is 3) and ($time is 1161)) or (($tanktracks is 4) and ($time is 1221)) or (($tanktracks is 5) and ($time is 1281)) or (($tanktracks is 6) and ($time is 1341)) or (($tanktracks is 1) and ($time is 1401))>>
-			<i>Evening radio, audition 2, line 9</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1102)) or (($tanktracks is 3) and ($time is 1162)) or (($tanktracks is 4) and ($time is 1222)) or (($tanktracks is 5) and ($time is 1282)) or (($tanktracks is 6) and ($time is 1342)) or (($tanktracks is 1) and ($time is 1402))>>
-			<i>Evening radio, audition 2, line 10</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1103)) or (($tanktracks is 3) and ($time is 1163)) or (($tanktracks is 4) and ($time is 1223)) or (($tanktracks is 5) and ($time is 1283)) or (($tanktracks is 6) and ($time is 1343)) or (($tanktracks is 1) and ($time is 1403))>>
-			<i>Evening radio, audition 2, line 11</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1104)) or (($tanktracks is 3) and ($time is 1164)) or (($tanktracks is 4) and ($time is 1224)) or (($tanktracks is 5) and ($time is 1284)) or (($tanktracks is 6) and ($time is 1344)) or (($tanktracks is 1) and ($time is 1404))>>
-			<i>Evening radio, audition 2, line 12</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1105)) or (($tanktracks is 3) and ($time is 1165)) or (($tanktracks is 4) and ($time is 1225)) or (($tanktracks is 5) and ($time is 1285)) or (($tanktracks is 6) and ($time is 1345)) or (($tanktracks is 1) and ($time is 1405))>>
-			<i>Evening radio, audition 2, line 13</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1106)) or (($tanktracks is 3) and ($time is 1166)) or (($tanktracks is 4) and ($time is 1226)) or (($tanktracks is 5) and ($time is 1286)) or (($tanktracks is 6) and ($time is 1346)) or (($tanktracks is 1) and ($time is 1406))>>
-			<i>Evening radio, audition 2, line 14</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1107)) or (($tanktracks is 3) and ($time is 1167)) or (($tanktracks is 4) and ($time is 1227)) or (($tanktracks is 5) and ($time is 1287)) or (($tanktracks is 6) and ($time is 1347)) or (($tanktracks is 1) and ($time is 1407))>>
-			<i>Evening radio, audition 2, line 15</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1108)) or (($tanktracks is 3) and ($time is 1168)) or (($tanktracks is 4) and ($time is 1228)) or (($tanktracks is 5) and ($time is 1288)) or (($tanktracks is 6) and ($time is 1348)) or (($tanktracks is 1) and ($time is 1408))>>
-			<i>Evening radio, audition 2, line 16</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1109)) or (($tanktracks is 3) and ($time is 1169)) or (($tanktracks is 4) and ($time is 1229)) or (($tanktracks is 5) and ($time is 1289)) or (($tanktracks is 6) and ($time is 1349)) or (($tanktracks is 1) and ($time is 1409))>>
-			<i>Evening radio, audition 2, line 17</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1110)) or (($tanktracks is 3) and ($time is 1170)) or (($tanktracks is 4) and ($time is 1230)) or (($tanktracks is 5) and ($time is 1290)) or (($tanktracks is 6) and ($time is 1350)) or (($tanktracks is 1) and ($time is 1410))>>
-			<i>Evening radio, audition 2, line 18</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1111)) or (($tanktracks is 3) and ($time is 1171)) or (($tanktracks is 4) and ($time is 1231)) or (($tanktracks is 5) and ($time is 1291)) or (($tanktracks is 6) and ($time is 1351)) or (($tanktracks is 1) and ($time is 1411))>>
-			<i>Evening radio, audition 2, line 19</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1112)) or (($tanktracks is 3) and ($time is 1172)) or (($tanktracks is 4) and ($time is 1232)) or (($tanktracks is 5) and ($time is 1292)) or (($tanktracks is 6) and ($time is 1352)) or (($tanktracks is 1) and ($time is 1412))>>
-			<i>Evening radio, audition 2, line 20</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1113)) or (($tanktracks is 3) and ($time is 1173)) or (($tanktracks is 4) and ($time is 1233)) or (($tanktracks is 5) and ($time is 1293)) or (($tanktracks is 6) and ($time is 1353)) or (($tanktracks is 1) and ($time is 1413))>>
-			<i>Evening radio, audition 2, line 21</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1114)) or (($tanktracks is 3) and ($time is 1174)) or (($tanktracks is 4) and ($time is 1234)) or (($tanktracks is 5) and ($time is 1294)) or (($tanktracks is 6) and ($time is 1354)) or (($tanktracks is 1) and ($time is 1414))>>
-			<i>Evening radio, audition 2, line 22</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1115)) or (($tanktracks is 3) and ($time is 1175)) or (($tanktracks is 4) and ($time is 1235)) or (($tanktracks is 5) and ($time is 1295)) or (($tanktracks is 6) and ($time is 1355)) or (($tanktracks is 1) and ($time is 1415))>>
-			<i>Evening radio, audition 2, line 23</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1116)) or (($tanktracks is 3) and ($time is 1176)) or (($tanktracks is 4) and ($time is 1236)) or (($tanktracks is 5) and ($time is 1296)) or (($tanktracks is 6) and ($time is 1356)) or (($tanktracks is 1) and ($time is 1416))>>
-			<i>Evening radio, audition 2, line 24</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1117)) or (($tanktracks is 3) and ($time is 1177)) or (($tanktracks is 4) and ($time is 1237)) or (($tanktracks is 5) and ($time is 1297)) or (($tanktracks is 6) and ($time is 1357)) or (($tanktracks is 1) and ($time is 1417))>>
-			<i>Evening radio, audition 2, line 25</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1118)) or (($tanktracks is 3) and ($time is 1178)) or (($tanktracks is 4) and ($time is 1238)) or (($tanktracks is 5) and ($time is 1298)) or (($tanktracks is 6) and ($time is 1358)) or (($tanktracks is 1) and ($time is 1418))>>
-			<i>Evening radio, audition 2, line 26</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1119)) or (($tanktracks is 3) and ($time is 1179)) or (($tanktracks is 4) and ($time is 1239)) or (($tanktracks is 5) and ($time is 1299)) or (($tanktracks is 6) and ($time is 1359)) or (($tanktracks is 1) and ($time is 1419))>>
-			<i>Evening radio, audition 2, line 27</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1120)) or (($tanktracks is 3) and ($time is 1180)) or (($tanktracks is 4) and ($time is 1240)) or (($tanktracks is 5) and ($time is 1300)) or (($tanktracks is 6) and ($time is 1360)) or (($tanktracks is 1) and ($time is 1420))>>
-			<i>Evening radio, audition 2, line 28</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1121)) or (($tanktracks is 3) and ($time is 1181)) or (($tanktracks is 4) and ($time is 1241)) or (($tanktracks is 5) and ($time is 1301)) or (($tanktracks is 6) and ($time is 1361)) or (($tanktracks is 1) and ($time is 1421))>>
-			<i>Evening radio, audition 2, line 29</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1122)) or (($tanktracks is 3) and ($time is 1182)) or (($tanktracks is 4) and ($time is 1242)) or (($tanktracks is 5) and ($time is 1302)) or (($tanktracks is 6) and ($time is 1362)) or (($tanktracks is 1) and ($time is 1422))>>
-			<i>Evening radio, audition 2, line 30</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1123)) or (($tanktracks is 3) and ($time is 1183)) or (($tanktracks is 4) and ($time is 1243)) or (($tanktracks is 5) and ($time is 1303)) or (($tanktracks is 6) and ($time is 1363)) or (($tanktracks is 1) and ($time is 1423))>>
-			<i>Evening radio, audition 2, line 31</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1124)) or (($tanktracks is 3) and ($time is 1184)) or (($tanktracks is 4) and ($time is 1244)) or (($tanktracks is 5) and ($time is 1304)) or (($tanktracks is 6) and ($time is 1364)) or (($tanktracks is 1) and ($time is 1424))>>
-			<i>Evening radio, audition 2, line 32</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1125)) or (($tanktracks is 3) and ($time is 1185)) or (($tanktracks is 4) and ($time is 1245)) or (($tanktracks is 5) and ($time is 1305)) or (($tanktracks is 6) and ($time is 1365)) or (($tanktracks is 1) and ($time is 1425))>>
-			<i>Evening radio, audition 2, line 33</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1126)) or (($tanktracks is 3) and ($time is 1186)) or (($tanktracks is 4) and ($time is 1246)) or (($tanktracks is 5) and ($time is 1306)) or (($tanktracks is 6) and ($time is 1366)) or (($tanktracks is 1) and ($time is 1426))>>
-			<i>Evening radio, audition 2, line 34</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1127)) or (($tanktracks is 3) and ($time is 1187)) or (($tanktracks is 4) and ($time is 1247)) or (($tanktracks is 5) and ($time is 1307)) or (($tanktracks is 6) and ($time is 1367)) or (($tanktracks is 1) and ($time is 1427))>>
-			<i>Evening radio, audition 2, line 35</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1128)) or (($tanktracks is 3) and ($time is 1188)) or (($tanktracks is 4) and ($time is 1248)) or (($tanktracks is 5) and ($time is 1308)) or (($tanktracks is 6) and ($time is 1368)) or (($tanktracks is 1) and ($time is 1428))>>
-			<i>Evening radio, audition 2, line 36</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1129)) or (($tanktracks is 3) and ($time is 1189)) or (($tanktracks is 4) and ($time is 1249)) or (($tanktracks is 5) and ($time is 1309)) or (($tanktracks is 6) and ($time is 1369)) or (($tanktracks is 1) and ($time is 1429))>>
-			<i>Evening radio, audition 2, line 37</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1130)) or (($tanktracks is 3) and ($time is 1190)) or (($tanktracks is 4) and ($time is 1250)) or (($tanktracks is 5) and ($time is 1310)) or (($tanktracks is 6) and ($time is 1370)) or (($tanktracks is 1) and ($time is 1430))>>
-			<i>Evening radio, audition 2, line 38</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1131)) or (($tanktracks is 3) and ($time is 1191)) or (($tanktracks is 4) and ($time is 1251)) or (($tanktracks is 5) and ($time is 1311)) or (($tanktracks is 6) and ($time is 1371)) or (($tanktracks is 1) and ($time is 1431))>>
-			<i>Evening radio, audition 2, line 39</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1132)) or (($tanktracks is 3) and ($time is 1192)) or (($tanktracks is 4) and ($time is 1252)) or (($tanktracks is 5) and ($time is 1312)) or (($tanktracks is 6) and ($time is 1372)) or (($tanktracks is 1) and ($time is 1432))>>
-			<i>Evening radio, audition 2, line 40</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1133)) or (($tanktracks is 3) and ($time is 1193)) or (($tanktracks is 4) and ($time is 1253)) or (($tanktracks is 5) and ($time is 1313)) or (($tanktracks is 6) and ($time is 1373)) or (($tanktracks is 1) and ($time is 1433))>>
-			<i>Evening radio, audition 2, line 41</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1134)) or (($tanktracks is 3) and ($time is 1194)) or (($tanktracks is 4) and ($time is 1254)) or (($tanktracks is 5) and ($time is 1314)) or (($tanktracks is 6) and ($time is 1374)) or (($tanktracks is 1) and ($time is 1434))>>
-			<i>Evening radio, audition 2, line 42</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1135)) or (($tanktracks is 3) and ($time is 1195)) or (($tanktracks is 4) and ($time is 1255)) or (($tanktracks is 5) and ($time is 1315)) or (($tanktracks is 6) and ($time is 1375)) or (($tanktracks is 1) and ($time is 1435))>>
-			<i>Evening radio, audition 2, line 43</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1136)) or (($tanktracks is 3) and ($time is 1196)) or (($tanktracks is 4) and ($time is 1256)) or (($tanktracks is 5) and ($time is 1316)) or (($tanktracks is 6) and ($time is 1376)) or (($tanktracks is 1) and ($time is 1436))>>
-			<i>Evening radio, audition 2, line 44</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1137)) or (($tanktracks is 3) and ($time is 1197)) or (($tanktracks is 4) and ($time is 1257)) or (($tanktracks is 5) and ($time is 1317)) or (($tanktracks is 6) and ($time is 1377)) or (($tanktracks is 1) and ($time is 1437))>>
-			<i>Evening radio, audition 2, line 45</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1138)) or (($tanktracks is 3) and ($time is 1198)) or (($tanktracks is 4) and ($time is 1258)) or (($tanktracks is 5) and ($time is 1318)) or (($tanktracks is 6) and ($time is 1378)) or (($tanktracks is 1) and ($time is 1438))>>
-			<i>Evening radio, audition 2, line 46</i>
-			<br>
-		<<elseif (($tanktracks is 2) and ($time is 1139)) or (($tanktracks is 3) and ($time is 1199)) or (($tanktracks is 4) and ($time is 1259)) or (($tanktracks is 5) and ($time is 1319)) or (($tanktracks is 6) and ($time is 1379)) or (($tanktracks is 1) and ($time is 1439))>>
-			<i>Evening radio, audition 2, line 47</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1093)) or (($tanktracks is 4) and ($time is 1153)) or (($tanktracks is 5) and ($time is 1213)) or (($tanktracks is 6) and ($time is 1273)) or (($tanktracks is 1) and ($time is 1333)) or (($tanktracks is 2) and ($time is 1393))>>
-			<i>Evening radio, audition 3, line 1</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1094)) or (($tanktracks is 4) and ($time is 1154)) or (($tanktracks is 5) and ($time is 1214)) or (($tanktracks is 6) and ($time is 1274)) or (($tanktracks is 1) and ($time is 1334)) or (($tanktracks is 2) and ($time is 1394))>>
-			<i>Evening radio, audition 3, line 2</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1095)) or (($tanktracks is 4) and ($time is 1155)) or (($tanktracks is 5) and ($time is 1215)) or (($tanktracks is 6) and ($time is 1275)) or (($tanktracks is 1) and ($time is 1335)) or (($tanktracks is 2) and ($time is 1395))>>
-			<i>Evening radio, audition 3, line 3</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1096)) or (($tanktracks is 4) and ($time is 1156)) or (($tanktracks is 5) and ($time is 1216)) or (($tanktracks is 6) and ($time is 1276)) or (($tanktracks is 1) and ($time is 1336)) or (($tanktracks is 2) and ($time is 1396))>>
-			<i>Evening radio, audition 3, line 4</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1097)) or (($tanktracks is 4) and ($time is 1157)) or (($tanktracks is 5) and ($time is 1217)) or (($tanktracks is 6) and ($time is 1277)) or (($tanktracks is 1) and ($time is 1337)) or (($tanktracks is 2) and ($time is 1397))>>
-			<i>Evening radio, audition 3, line 5</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1098)) or (($tanktracks is 4) and ($time is 1158)) or (($tanktracks is 5) and ($time is 1218)) or (($tanktracks is 6) and ($time is 1278)) or (($tanktracks is 1) and ($time is 1338)) or (($tanktracks is 2) and ($time is 1398))>>
-			<i>Evening radio, audition 3, line 6</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1099)) or (($tanktracks is 4) and ($time is 1159)) or (($tanktracks is 5) and ($time is 1219)) or (($tanktracks is 6) and ($time is 1279)) or (($tanktracks is 1) and ($time is 1339)) or (($tanktracks is 2) and ($time is 1399))>>
-			<i>Evening radio, audition 3, line 7</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1100)) or (($tanktracks is 4) and ($time is 1160)) or (($tanktracks is 5) and ($time is 1220)) or (($tanktracks is 6) and ($time is 1280)) or (($tanktracks is 1) and ($time is 1340)) or (($tanktracks is 2) and ($time is 1400))>>
-			<i>Evening radio, audition 3, line 8</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1101)) or (($tanktracks is 4) and ($time is 1161)) or (($tanktracks is 5) and ($time is 1221)) or (($tanktracks is 6) and ($time is 1281)) or (($tanktracks is 1) and ($time is 1341)) or (($tanktracks is 2) and ($time is 1401))>>
-			<i>Evening radio, audition 3, line 9</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1102)) or (($tanktracks is 4) and ($time is 1162)) or (($tanktracks is 5) and ($time is 1222)) or (($tanktracks is 6) and ($time is 1282)) or (($tanktracks is 1) and ($time is 1342)) or (($tanktracks is 2) and ($time is 1402))>>
-			<i>Evening radio, audition 3, line 10</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1103)) or (($tanktracks is 4) and ($time is 1163)) or (($tanktracks is 5) and ($time is 1223)) or (($tanktracks is 6) and ($time is 1283)) or (($tanktracks is 1) and ($time is 1343)) or (($tanktracks is 2) and ($time is 1403))>>
-			<i>Evening radio, audition 3, line 11</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1104)) or (($tanktracks is 4) and ($time is 1164)) or (($tanktracks is 5) and ($time is 1224)) or (($tanktracks is 6) and ($time is 1284)) or (($tanktracks is 1) and ($time is 1344)) or (($tanktracks is 2) and ($time is 1404))>>
-			<i>Evening radio, audition 3, line 12</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1105)) or (($tanktracks is 4) and ($time is 1165)) or (($tanktracks is 5) and ($time is 1225)) or (($tanktracks is 6) and ($time is 1285)) or (($tanktracks is 1) and ($time is 1345)) or (($tanktracks is 2) and ($time is 1405))>>
-			<i>Evening radio, audition 3, line 13</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1106)) or (($tanktracks is 4) and ($time is 1166)) or (($tanktracks is 5) and ($time is 1226)) or (($tanktracks is 6) and ($time is 1286)) or (($tanktracks is 1) and ($time is 1346)) or (($tanktracks is 2) and ($time is 1406))>>
-			<i>Evening radio, audition 3, line 14</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1107)) or (($tanktracks is 4) and ($time is 1167)) or (($tanktracks is 5) and ($time is 1227)) or (($tanktracks is 6) and ($time is 1287)) or (($tanktracks is 1) and ($time is 1347)) or (($tanktracks is 2) and ($time is 1407))>>
-			<i>Evening radio, audition 3, line 15</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1108)) or (($tanktracks is 4) and ($time is 1168)) or (($tanktracks is 5) and ($time is 1228)) or (($tanktracks is 6) and ($time is 1288)) or (($tanktracks is 1) and ($time is 1348)) or (($tanktracks is 2) and ($time is 1408))>>
-			<i>Evening radio, audition 3, line 16</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1109)) or (($tanktracks is 4) and ($time is 1169)) or (($tanktracks is 5) and ($time is 1229)) or (($tanktracks is 6) and ($time is 1289)) or (($tanktracks is 1) and ($time is 1349)) or (($tanktracks is 2) and ($time is 1409))>>
-			<i>Evening radio, audition 3, line 17</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1110)) or (($tanktracks is 4) and ($time is 1170)) or (($tanktracks is 5) and ($time is 1230)) or (($tanktracks is 6) and ($time is 1290)) or (($tanktracks is 1) and ($time is 1350)) or (($tanktracks is 2) and ($time is 1410))>>
-			<i>Evening radio, audition 3, line 18</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1111)) or (($tanktracks is 4) and ($time is 1171)) or (($tanktracks is 5) and ($time is 1231)) or (($tanktracks is 6) and ($time is 1291)) or (($tanktracks is 1) and ($time is 1351)) or (($tanktracks is 2) and ($time is 1411))>>
-			<i>Evening radio, audition 3, line 19</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1112)) or (($tanktracks is 4) and ($time is 1172)) or (($tanktracks is 5) and ($time is 1232)) or (($tanktracks is 6) and ($time is 1292)) or (($tanktracks is 1) and ($time is 1352)) or (($tanktracks is 2) and ($time is 1412))>>
-			<i>Evening radio, audition 3, line 20</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1113)) or (($tanktracks is 4) and ($time is 1173)) or (($tanktracks is 5) and ($time is 1233)) or (($tanktracks is 6) and ($time is 1293)) or (($tanktracks is 1) and ($time is 1353)) or (($tanktracks is 2) and ($time is 1413))>>
-			<i>Evening radio, audition 3, line 21</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1114)) or (($tanktracks is 4) and ($time is 1174)) or (($tanktracks is 5) and ($time is 1234)) or (($tanktracks is 6) and ($time is 1294)) or (($tanktracks is 1) and ($time is 1354)) or (($tanktracks is 2) and ($time is 1414))>>
-			<i>Evening radio, audition 3, line 22</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1115)) or (($tanktracks is 4) and ($time is 1175)) or (($tanktracks is 5) and ($time is 1235)) or (($tanktracks is 6) and ($time is 1295)) or (($tanktracks is 1) and ($time is 1355)) or (($tanktracks is 2) and ($time is 1415))>>
-			<i>Evening radio, audition 3, line 23</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1116)) or (($tanktracks is 4) and ($time is 1176)) or (($tanktracks is 5) and ($time is 1236)) or (($tanktracks is 6) and ($time is 1296)) or (($tanktracks is 1) and ($time is 1356)) or (($tanktracks is 2) and ($time is 1416))>>
-			<i>Evening radio, audition 3, line 24</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1117)) or (($tanktracks is 4) and ($time is 1177)) or (($tanktracks is 5) and ($time is 1237)) or (($tanktracks is 6) and ($time is 1297)) or (($tanktracks is 1) and ($time is 1357)) or (($tanktracks is 2) and ($time is 1417))>>
-			<i>Evening radio, audition 3, line 25</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1118)) or (($tanktracks is 4) and ($time is 1178)) or (($tanktracks is 5) and ($time is 1238)) or (($tanktracks is 6) and ($time is 1298)) or (($tanktracks is 1) and ($time is 1358)) or (($tanktracks is 2) and ($time is 1418))>>
-			<i>Evening radio, audition 3, line 26</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1119)) or (($tanktracks is 4) and ($time is 1179)) or (($tanktracks is 5) and ($time is 1239)) or (($tanktracks is 6) and ($time is 1299)) or (($tanktracks is 1) and ($time is 1359)) or (($tanktracks is 2) and ($time is 1419))>>
-			<i>Evening radio, audition 3, line 27</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1120)) or (($tanktracks is 4) and ($time is 1180)) or (($tanktracks is 5) and ($time is 1240)) or (($tanktracks is 6) and ($time is 1300)) or (($tanktracks is 1) and ($time is 1360)) or (($tanktracks is 2) and ($time is 1420))>>
-			<i>Evening radio, audition 3, line 28</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1121)) or (($tanktracks is 4) and ($time is 1181)) or (($tanktracks is 5) and ($time is 1241)) or (($tanktracks is 6) and ($time is 1301)) or (($tanktracks is 1) and ($time is 1361)) or (($tanktracks is 2) and ($time is 1421))>>
-			<i>Evening radio, audition 3, line 29</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1122)) or (($tanktracks is 4) and ($time is 1182)) or (($tanktracks is 5) and ($time is 1242)) or (($tanktracks is 6) and ($time is 1302)) or (($tanktracks is 1) and ($time is 1362)) or (($tanktracks is 2) and ($time is 1422))>>
-			<i>Evening radio, audition 3, line 30</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1123)) or (($tanktracks is 4) and ($time is 1183)) or (($tanktracks is 5) and ($time is 1243)) or (($tanktracks is 6) and ($time is 1303)) or (($tanktracks is 1) and ($time is 1363)) or (($tanktracks is 2) and ($time is 1423))>>
-			<i>Evening radio, audition 3, line 31</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1124)) or (($tanktracks is 4) and ($time is 1184)) or (($tanktracks is 5) and ($time is 1244)) or (($tanktracks is 6) and ($time is 1304)) or (($tanktracks is 1) and ($time is 1364)) or (($tanktracks is 2) and ($time is 1424))>>
-			<i>Evening radio, audition 3, line 32</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1125)) or (($tanktracks is 4) and ($time is 1185)) or (($tanktracks is 5) and ($time is 1245)) or (($tanktracks is 6) and ($time is 1305)) or (($tanktracks is 1) and ($time is 1365)) or (($tanktracks is 2) and ($time is 1425))>>
-			<i>Evening radio, audition 3, line 33</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1126)) or (($tanktracks is 4) and ($time is 1186)) or (($tanktracks is 5) and ($time is 1246)) or (($tanktracks is 6) and ($time is 1306)) or (($tanktracks is 1) and ($time is 1366)) or (($tanktracks is 2) and ($time is 1426))>>
-			<i>Evening radio, audition 3, line 34</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1127)) or (($tanktracks is 4) and ($time is 1187)) or (($tanktracks is 5) and ($time is 1247)) or (($tanktracks is 6) and ($time is 1307)) or (($tanktracks is 1) and ($time is 1367)) or (($tanktracks is 2) and ($time is 1427))>>
-			<i>Evening radio, audition 3, line 35</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1128)) or (($tanktracks is 4) and ($time is 1188)) or (($tanktracks is 5) and ($time is 1248)) or (($tanktracks is 6) and ($time is 1308)) or (($tanktracks is 1) and ($time is 1368)) or (($tanktracks is 2) and ($time is 1428))>>
-			<i>Evening radio, audition 3, line 36</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1129)) or (($tanktracks is 4) and ($time is 1189)) or (($tanktracks is 5) and ($time is 1249)) or (($tanktracks is 6) and ($time is 1309)) or (($tanktracks is 1) and ($time is 1369)) or (($tanktracks is 2) and ($time is 1429))>>
-			<i>Evening radio, audition 3, line 37</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1130)) or (($tanktracks is 4) and ($time is 1190)) or (($tanktracks is 5) and ($time is 1250)) or (($tanktracks is 6) and ($time is 1310)) or (($tanktracks is 1) and ($time is 1370)) or (($tanktracks is 2) and ($time is 1430))>>
-			<i>Evening radio, audition 3, line 38</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1131)) or (($tanktracks is 4) and ($time is 1191)) or (($tanktracks is 5) and ($time is 1251)) or (($tanktracks is 6) and ($time is 1311)) or (($tanktracks is 1) and ($time is 1371)) or (($tanktracks is 2) and ($time is 1431))>>
-			<i>Evening radio, audition 3, line 39</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1132)) or (($tanktracks is 4) and ($time is 1192)) or (($tanktracks is 5) and ($time is 1252)) or (($tanktracks is 6) and ($time is 1312)) or (($tanktracks is 1) and ($time is 1372)) or (($tanktracks is 2) and ($time is 1432))>>
-			<i>Evening radio, audition 3, line 40</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1133)) or (($tanktracks is 4) and ($time is 1193)) or (($tanktracks is 5) and ($time is 1253)) or (($tanktracks is 6) and ($time is 1313)) or (($tanktracks is 1) and ($time is 1373)) or (($tanktracks is 2) and ($time is 1433))>>
-			<i>Evening radio, audition 3, line 41</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1134)) or (($tanktracks is 4) and ($time is 1194)) or (($tanktracks is 5) and ($time is 1254)) or (($tanktracks is 6) and ($time is 1314)) or (($tanktracks is 1) and ($time is 1374)) or (($tanktracks is 2) and ($time is 1434))>>
-			<i>Evening radio, audition 3, line 42</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1135)) or (($tanktracks is 4) and ($time is 1195)) or (($tanktracks is 5) and ($time is 1255)) or (($tanktracks is 6) and ($time is 1315)) or (($tanktracks is 1) and ($time is 1375)) or (($tanktracks is 2) and ($time is 1435))>>
-			<i>Evening radio, audition 3, line 43</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1136)) or (($tanktracks is 4) and ($time is 1196)) or (($tanktracks is 5) and ($time is 1256)) or (($tanktracks is 6) and ($time is 1316)) or (($tanktracks is 1) and ($time is 1376)) or (($tanktracks is 2) and ($time is 1436))>>
-			<i>Evening radio, audition 3, line 44</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1137)) or (($tanktracks is 4) and ($time is 1197)) or (($tanktracks is 5) and ($time is 1257)) or (($tanktracks is 6) and ($time is 1317)) or (($tanktracks is 1) and ($time is 1377)) or (($tanktracks is 2) and ($time is 1437))>>
-			<i>Evening radio, audition 3, line 45</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1138)) or (($tanktracks is 4) and ($time is 1198)) or (($tanktracks is 5) and ($time is 1258)) or (($tanktracks is 6) and ($time is 1318)) or (($tanktracks is 1) and ($time is 1378)) or (($tanktracks is 2) and ($time is 1438))>>
-			<i>Evening radio, audition 3, line 46</i>
-			<br>
-		<<elseif (($tanktracks is 3) and ($time is 1139)) or (($tanktracks is 4) and ($time is 1199)) or (($tanktracks is 5) and ($time is 1259)) or (($tanktracks is 6) and ($time is 1319)) or (($tanktracks is 1) and ($time is 1379)) or (($tanktracks is 2) and ($time is 1439))>>
-			<i>Evening radio, audition 3, line 47</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1093)) or (($tanktracks is 5) and ($time is 1153)) or (($tanktracks is 6) and ($time is 1213)) or (($tanktracks is 1) and ($time is 1273)) or (($tanktracks is 2) and ($time is 1333)) or (($tanktracks is 3) and ($time is 1393))>>
-			<i>Evening radio, audition 4, line 1</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1094)) or (($tanktracks is 5) and ($time is 1154)) or (($tanktracks is 6) and ($time is 1214)) or (($tanktracks is 1) and ($time is 1274)) or (($tanktracks is 2) and ($time is 1334)) or (($tanktracks is 3) and ($time is 1394))>>
-			<i>Evening radio, audition 4, line 2</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1095)) or (($tanktracks is 5) and ($time is 1155)) or (($tanktracks is 6) and ($time is 1215)) or (($tanktracks is 1) and ($time is 1275)) or (($tanktracks is 2) and ($time is 1335)) or (($tanktracks is 3) and ($time is 1395))>>
-			<i>Evening radio, audition 4, line 3</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1096)) or (($tanktracks is 5) and ($time is 1156)) or (($tanktracks is 6) and ($time is 1216)) or (($tanktracks is 1) and ($time is 1276)) or (($tanktracks is 2) and ($time is 1336)) or (($tanktracks is 3) and ($time is 1396))>>
-			<i>Evening radio, audition 4, line 4</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1097)) or (($tanktracks is 5) and ($time is 1157)) or (($tanktracks is 6) and ($time is 1217)) or (($tanktracks is 1) and ($time is 1277)) or (($tanktracks is 2) and ($time is 1337)) or (($tanktracks is 3) and ($time is 1397))>>
-			<i>Evening radio, audition 4, line 5</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1098)) or (($tanktracks is 5) and ($time is 1158)) or (($tanktracks is 6) and ($time is 1218)) or (($tanktracks is 1) and ($time is 1278)) or (($tanktracks is 2) and ($time is 1338)) or (($tanktracks is 3) and ($time is 1398))>>
-			<i>Evening radio, audition 4, line 6</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1099)) or (($tanktracks is 5) and ($time is 1159)) or (($tanktracks is 6) and ($time is 1219)) or (($tanktracks is 1) and ($time is 1279)) or (($tanktracks is 2) and ($time is 1339)) or (($tanktracks is 3) and ($time is 1399))>>
-			<i>Evening radio, audition 4, line 7</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1100)) or (($tanktracks is 5) and ($time is 1160)) or (($tanktracks is 6) and ($time is 1220)) or (($tanktracks is 1) and ($time is 1280)) or (($tanktracks is 2) and ($time is 1340)) or (($tanktracks is 3) and ($time is 1400))>>
-			<i>Evening radio, audition 4, line 8</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1101)) or (($tanktracks is 5) and ($time is 1161)) or (($tanktracks is 6) and ($time is 1221)) or (($tanktracks is 1) and ($time is 1281)) or (($tanktracks is 2) and ($time is 1341)) or (($tanktracks is 3) and ($time is 1401))>>
-			<i>Evening radio, audition 4, line 9</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1102)) or (($tanktracks is 5) and ($time is 1162)) or (($tanktracks is 6) and ($time is 1222)) or (($tanktracks is 1) and ($time is 1282)) or (($tanktracks is 2) and ($time is 1342)) or (($tanktracks is 3) and ($time is 1402))>>
-			<i>Evening radio, audition 4, line 10</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1103)) or (($tanktracks is 5) and ($time is 1163)) or (($tanktracks is 6) and ($time is 1223)) or (($tanktracks is 1) and ($time is 1283)) or (($tanktracks is 2) and ($time is 1343)) or (($tanktracks is 3) and ($time is 1403))>>
-			<i>Evening radio, audition 4, line 11</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1104)) or (($tanktracks is 5) and ($time is 1164)) or (($tanktracks is 6) and ($time is 1224)) or (($tanktracks is 1) and ($time is 1284)) or (($tanktracks is 2) and ($time is 1344)) or (($tanktracks is 3) and ($time is 1404))>>
-			<i>Evening radio, audition 4, line 12</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1105)) or (($tanktracks is 5) and ($time is 1165)) or (($tanktracks is 6) and ($time is 1225)) or (($tanktracks is 1) and ($time is 1285)) or (($tanktracks is 2) and ($time is 1345)) or (($tanktracks is 3) and ($time is 1405))>>
-			<i>Evening radio, audition 4, line 13</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1106)) or (($tanktracks is 5) and ($time is 1166)) or (($tanktracks is 6) and ($time is 1226)) or (($tanktracks is 1) and ($time is 1286)) or (($tanktracks is 2) and ($time is 1346)) or (($tanktracks is 3) and ($time is 1406))>>
-			<i>Evening radio, audition 4, line 14</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1107)) or (($tanktracks is 5) and ($time is 1167)) or (($tanktracks is 6) and ($time is 1227)) or (($tanktracks is 1) and ($time is 1287)) or (($tanktracks is 2) and ($time is 1347)) or (($tanktracks is 3) and ($time is 1407))>>
-			<i>Evening radio, audition 4, line 15</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1108)) or (($tanktracks is 5) and ($time is 1168)) or (($tanktracks is 6) and ($time is 1228)) or (($tanktracks is 1) and ($time is 1288)) or (($tanktracks is 2) and ($time is 1348)) or (($tanktracks is 3) and ($time is 1408))>>
-			<i>Evening radio, audition 4, line 16</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1109)) or (($tanktracks is 5) and ($time is 1169)) or (($tanktracks is 6) and ($time is 1229)) or (($tanktracks is 1) and ($time is 1289)) or (($tanktracks is 2) and ($time is 1349)) or (($tanktracks is 3) and ($time is 1409))>>
-			<i>Evening radio, audition 4, line 17</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1110)) or (($tanktracks is 5) and ($time is 1170)) or (($tanktracks is 6) and ($time is 1230)) or (($tanktracks is 1) and ($time is 1290)) or (($tanktracks is 2) and ($time is 1350)) or (($tanktracks is 3) and ($time is 1410))>>
-			<i>Evening radio, audition 4, line 18</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1111)) or (($tanktracks is 5) and ($time is 1171)) or (($tanktracks is 6) and ($time is 1231)) or (($tanktracks is 1) and ($time is 1291)) or (($tanktracks is 2) and ($time is 1351)) or (($tanktracks is 3) and ($time is 1411))>>
-			<i>Evening radio, audition 4, line 19</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1112)) or (($tanktracks is 5) and ($time is 1172)) or (($tanktracks is 6) and ($time is 1232)) or (($tanktracks is 1) and ($time is 1292)) or (($tanktracks is 2) and ($time is 1352)) or (($tanktracks is 3) and ($time is 1412))>>
-			<i>Evening radio, audition 4, line 20</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1113)) or (($tanktracks is 5) and ($time is 1173)) or (($tanktracks is 6) and ($time is 1233)) or (($tanktracks is 1) and ($time is 1293)) or (($tanktracks is 2) and ($time is 1353)) or (($tanktracks is 3) and ($time is 1413))>>
-			<i>Evening radio, audition 4, line 21</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1114)) or (($tanktracks is 5) and ($time is 1174)) or (($tanktracks is 6) and ($time is 1234)) or (($tanktracks is 1) and ($time is 1294)) or (($tanktracks is 2) and ($time is 1354)) or (($tanktracks is 3) and ($time is 1414))>>
-			<i>Evening radio, audition 4, line 22</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1115)) or (($tanktracks is 5) and ($time is 1175)) or (($tanktracks is 6) and ($time is 1235)) or (($tanktracks is 1) and ($time is 1295)) or (($tanktracks is 2) and ($time is 1355)) or (($tanktracks is 3) and ($time is 1415))>>
-			<i>Evening radio, audition 4, line 23</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1116)) or (($tanktracks is 5) and ($time is 1176)) or (($tanktracks is 6) and ($time is 1236)) or (($tanktracks is 1) and ($time is 1296)) or (($tanktracks is 2) and ($time is 1356)) or (($tanktracks is 3) and ($time is 1416))>>
-			<i>Evening radio, audition 4, line 24</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1117)) or (($tanktracks is 5) and ($time is 1177)) or (($tanktracks is 6) and ($time is 1237)) or (($tanktracks is 1) and ($time is 1297)) or (($tanktracks is 2) and ($time is 1357)) or (($tanktracks is 3) and ($time is 1417))>>
-			<i>Evening radio, audition 4, line 25</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1118)) or (($tanktracks is 5) and ($time is 1178)) or (($tanktracks is 6) and ($time is 1238)) or (($tanktracks is 1) and ($time is 1298)) or (($tanktracks is 2) and ($time is 1358)) or (($tanktracks is 3) and ($time is 1418))>>
-			<i>Evening radio, audition 4, line 26</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1119)) or (($tanktracks is 5) and ($time is 1179)) or (($tanktracks is 6) and ($time is 1239)) or (($tanktracks is 1) and ($time is 1299)) or (($tanktracks is 2) and ($time is 1359)) or (($tanktracks is 3) and ($time is 1419))>>
-			<i>Evening radio, audition 4, line 27</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1120)) or (($tanktracks is 5) and ($time is 1180)) or (($tanktracks is 6) and ($time is 1240)) or (($tanktracks is 1) and ($time is 1300)) or (($tanktracks is 2) and ($time is 1360)) or (($tanktracks is 3) and ($time is 1420))>>
-			<i>Evening radio, audition 4, line 28</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1121)) or (($tanktracks is 5) and ($time is 1181)) or (($tanktracks is 6) and ($time is 1241)) or (($tanktracks is 1) and ($time is 1301)) or (($tanktracks is 2) and ($time is 1361)) or (($tanktracks is 3) and ($time is 1421))>>
-			<i>Evening radio, audition 4, line 29</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1122)) or (($tanktracks is 5) and ($time is 1182)) or (($tanktracks is 6) and ($time is 1242)) or (($tanktracks is 1) and ($time is 1302)) or (($tanktracks is 2) and ($time is 1362)) or (($tanktracks is 3) and ($time is 1422))>>
-			<i>Evening radio, audition 4, line 30</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1123)) or (($tanktracks is 5) and ($time is 1183)) or (($tanktracks is 6) and ($time is 1243)) or (($tanktracks is 1) and ($time is 1303)) or (($tanktracks is 2) and ($time is 1363)) or (($tanktracks is 3) and ($time is 1423))>>
-			<i>Evening radio, audition 4, line 31</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1124)) or (($tanktracks is 5) and ($time is 1184)) or (($tanktracks is 6) and ($time is 1244)) or (($tanktracks is 1) and ($time is 1304)) or (($tanktracks is 2) and ($time is 1364)) or (($tanktracks is 3) and ($time is 1424))>>
-			<i>Evening radio, audition 4, line 32</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1125)) or (($tanktracks is 5) and ($time is 1185)) or (($tanktracks is 6) and ($time is 1245)) or (($tanktracks is 1) and ($time is 1305)) or (($tanktracks is 2) and ($time is 1365)) or (($tanktracks is 3) and ($time is 1425))>>
-			<i>Evening radio, audition 4, line 33</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1126)) or (($tanktracks is 5) and ($time is 1186)) or (($tanktracks is 6) and ($time is 1246)) or (($tanktracks is 1) and ($time is 1306)) or (($tanktracks is 2) and ($time is 1366)) or (($tanktracks is 3) and ($time is 1426))>>
-			<i>Evening radio, audition 4, line 34</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1127)) or (($tanktracks is 5) and ($time is 1187)) or (($tanktracks is 6) and ($time is 1247)) or (($tanktracks is 1) and ($time is 1307)) or (($tanktracks is 2) and ($time is 1367)) or (($tanktracks is 3) and ($time is 1427))>>
-			<i>Evening radio, audition 4, line 35</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1128)) or (($tanktracks is 5) and ($time is 1188)) or (($tanktracks is 6) and ($time is 1248)) or (($tanktracks is 1) and ($time is 1308)) or (($tanktracks is 2) and ($time is 1368)) or (($tanktracks is 3) and ($time is 1428))>>
-			<i>Evening radio, audition 4, line 36</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1129)) or (($tanktracks is 5) and ($time is 1189)) or (($tanktracks is 6) and ($time is 1249)) or (($tanktracks is 1) and ($time is 1309)) or (($tanktracks is 2) and ($time is 1369)) or (($tanktracks is 3) and ($time is 1429))>>
-			<i>Evening radio, audition 4, line 37</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1130)) or (($tanktracks is 5) and ($time is 1190)) or (($tanktracks is 6) and ($time is 1250)) or (($tanktracks is 1) and ($time is 1310)) or (($tanktracks is 2) and ($time is 1370)) or (($tanktracks is 3) and ($time is 1430))>>
-			<i>Evening radio, audition 4, line 38</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1131)) or (($tanktracks is 5) and ($time is 1191)) or (($tanktracks is 6) and ($time is 1251)) or (($tanktracks is 1) and ($time is 1311)) or (($tanktracks is 2) and ($time is 1371)) or (($tanktracks is 3) and ($time is 1431))>>
-			<i>Evening radio, audition 4, line 39</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1132)) or (($tanktracks is 5) and ($time is 1192)) or (($tanktracks is 6) and ($time is 1252)) or (($tanktracks is 1) and ($time is 1312)) or (($tanktracks is 2) and ($time is 1372)) or (($tanktracks is 3) and ($time is 1432))>>
-			<i>Evening radio, audition 4, line 40</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1133)) or (($tanktracks is 5) and ($time is 1193)) or (($tanktracks is 6) and ($time is 1253)) or (($tanktracks is 1) and ($time is 1313)) or (($tanktracks is 2) and ($time is 1373)) or (($tanktracks is 3) and ($time is 1433))>>
-			<i>Evening radio, audition 4, line 41</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1134)) or (($tanktracks is 5) and ($time is 1194)) or (($tanktracks is 6) and ($time is 1254)) or (($tanktracks is 1) and ($time is 1314)) or (($tanktracks is 2) and ($time is 1374)) or (($tanktracks is 3) and ($time is 1434))>>
-			<i>Evening radio, audition 4, line 42</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1135)) or (($tanktracks is 5) and ($time is 1195)) or (($tanktracks is 6) and ($time is 1255)) or (($tanktracks is 1) and ($time is 1315)) or (($tanktracks is 2) and ($time is 1375)) or (($tanktracks is 3) and ($time is 1435))>>
-			<i>Evening radio, audition 4, line 43</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1136)) or (($tanktracks is 5) and ($time is 1196)) or (($tanktracks is 6) and ($time is 1256)) or (($tanktracks is 1) and ($time is 1316)) or (($tanktracks is 2) and ($time is 1376)) or (($tanktracks is 3) and ($time is 1436))>>
-			<i>Evening radio, audition 4, line 44</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1137)) or (($tanktracks is 5) and ($time is 1197)) or (($tanktracks is 6) and ($time is 1257)) or (($tanktracks is 1) and ($time is 1317)) or (($tanktracks is 2) and ($time is 1377)) or (($tanktracks is 3) and ($time is 1437))>>
-			<i>Evening radio, audition 4, line 45</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1138)) or (($tanktracks is 5) and ($time is 1198)) or (($tanktracks is 6) and ($time is 1258)) or (($tanktracks is 1) and ($time is 1318)) or (($tanktracks is 2) and ($time is 1378)) or (($tanktracks is 3) and ($time is 1438))>>
-			<i>Evening radio, audition 4, line 46</i>
-			<br>
-		<<elseif (($tanktracks is 4) and ($time is 1139)) or (($tanktracks is 5) and ($time is 1199)) or (($tanktracks is 6) and ($time is 1259)) or (($tanktracks is 1) and ($time is 1319)) or (($tanktracks is 2) and ($time is 1379)) or (($tanktracks is 3) and ($time is 1439))>>
-			<i>Evening radio, audition 4, line 47</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1093)) or (($tanktracks is 6) and ($time is 1153)) or (($tanktracks is 1) and ($time is 1213)) or (($tanktracks is 2) and ($time is 1273)) or (($tanktracks is 3) and ($time is 1333)) or (($tanktracks is 4) and ($time is 1393))>>
-			<i>Evening radio, audition 5, line 1</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1094)) or (($tanktracks is 6) and ($time is 1154)) or (($tanktracks is 1) and ($time is 1214)) or (($tanktracks is 2) and ($time is 1274)) or (($tanktracks is 3) and ($time is 1334)) or (($tanktracks is 4) and ($time is 1394))>>
-			<i>Evening radio, audition 5, line 2</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1095)) or (($tanktracks is 6) and ($time is 1155)) or (($tanktracks is 1) and ($time is 1215)) or (($tanktracks is 2) and ($time is 1275)) or (($tanktracks is 3) and ($time is 1335)) or (($tanktracks is 4) and ($time is 1395))>>
-			<i>Evening radio, audition 5, line 3</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1096)) or (($tanktracks is 6) and ($time is 1156)) or (($tanktracks is 1) and ($time is 1216)) or (($tanktracks is 2) and ($time is 1276)) or (($tanktracks is 3) and ($time is 1336)) or (($tanktracks is 4) and ($time is 1396))>>
-			<i>Evening radio, audition 5, line 4</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1097)) or (($tanktracks is 6) and ($time is 1157)) or (($tanktracks is 1) and ($time is 1217)) or (($tanktracks is 2) and ($time is 1277)) or (($tanktracks is 3) and ($time is 1337)) or (($tanktracks is 4) and ($time is 1397))>>
-			<i>Evening radio, audition 5, line 5</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1098)) or (($tanktracks is 6) and ($time is 1158)) or (($tanktracks is 1) and ($time is 1218)) or (($tanktracks is 2) and ($time is 1278)) or (($tanktracks is 3) and ($time is 1338)) or (($tanktracks is 4) and ($time is 1398))>>
-			<i>Evening radio, audition 5, line 6</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1099)) or (($tanktracks is 6) and ($time is 1159)) or (($tanktracks is 1) and ($time is 1219)) or (($tanktracks is 2) and ($time is 1279)) or (($tanktracks is 3) and ($time is 1339)) or (($tanktracks is 4) and ($time is 1399))>>
-			<i>Evening radio, audition 5, line 7</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1100)) or (($tanktracks is 6) and ($time is 1160)) or (($tanktracks is 1) and ($time is 1220)) or (($tanktracks is 2) and ($time is 1280)) or (($tanktracks is 3) and ($time is 1340)) or (($tanktracks is 4) and ($time is 1400))>>
-			<i>Evening radio, audition 5, line 8</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1101)) or (($tanktracks is 6) and ($time is 1161)) or (($tanktracks is 1) and ($time is 1221)) or (($tanktracks is 2) and ($time is 1281)) or (($tanktracks is 3) and ($time is 1341)) or (($tanktracks is 4) and ($time is 1401))>>
-			<i>Evening radio, audition 5, line 9</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1102)) or (($tanktracks is 6) and ($time is 1162)) or (($tanktracks is 1) and ($time is 1222)) or (($tanktracks is 2) and ($time is 1282)) or (($tanktracks is 3) and ($time is 1342)) or (($tanktracks is 4) and ($time is 1402))>>
-			<i>Evening radio, audition 5, line 10</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1103)) or (($tanktracks is 6) and ($time is 1163)) or (($tanktracks is 1) and ($time is 1223)) or (($tanktracks is 2) and ($time is 1283)) or (($tanktracks is 3) and ($time is 1343)) or (($tanktracks is 4) and ($time is 1403))>>
-			<i>Evening radio, audition 5, line 11</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1104)) or (($tanktracks is 6) and ($time is 1164)) or (($tanktracks is 1) and ($time is 1224)) or (($tanktracks is 2) and ($time is 1284)) or (($tanktracks is 3) and ($time is 1344)) or (($tanktracks is 4) and ($time is 1404))>>
-			<i>Evening radio, audition 5, line 12</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1105)) or (($tanktracks is 6) and ($time is 1165)) or (($tanktracks is 1) and ($time is 1225)) or (($tanktracks is 2) and ($time is 1285)) or (($tanktracks is 3) and ($time is 1345)) or (($tanktracks is 4) and ($time is 1405))>>
-			<i>Evening radio, audition 5, line 13</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1106)) or (($tanktracks is 6) and ($time is 1166)) or (($tanktracks is 1) and ($time is 1226)) or (($tanktracks is 2) and ($time is 1286)) or (($tanktracks is 3) and ($time is 1346)) or (($tanktracks is 4) and ($time is 1406))>>
-			<i>Evening radio, audition 5, line 14</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1107)) or (($tanktracks is 6) and ($time is 1167)) or (($tanktracks is 1) and ($time is 1227)) or (($tanktracks is 2) and ($time is 1287)) or (($tanktracks is 3) and ($time is 1347)) or (($tanktracks is 4) and ($time is 1407))>>
-			<i>Evening radio, audition 5, line 15</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1108)) or (($tanktracks is 6) and ($time is 1168)) or (($tanktracks is 1) and ($time is 1228)) or (($tanktracks is 2) and ($time is 1288)) or (($tanktracks is 3) and ($time is 1348)) or (($tanktracks is 4) and ($time is 1408))>>
-			<i>Evening radio, audition 5, line 16</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1109)) or (($tanktracks is 6) and ($time is 1169)) or (($tanktracks is 1) and ($time is 1229)) or (($tanktracks is 2) and ($time is 1289)) or (($tanktracks is 3) and ($time is 1349)) or (($tanktracks is 4) and ($time is 1409))>>
-			<i>Evening radio, audition 5, line 17</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1110)) or (($tanktracks is 6) and ($time is 1170)) or (($tanktracks is 1) and ($time is 1230)) or (($tanktracks is 2) and ($time is 1290)) or (($tanktracks is 3) and ($time is 1350)) or (($tanktracks is 4) and ($time is 1410))>>
-			<i>Evening radio, audition 5, line 18</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1111)) or (($tanktracks is 6) and ($time is 1171)) or (($tanktracks is 1) and ($time is 1231)) or (($tanktracks is 2) and ($time is 1291)) or (($tanktracks is 3) and ($time is 1351)) or (($tanktracks is 4) and ($time is 1411))>>
-			<i>Evening radio, audition 5, line 19</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1112)) or (($tanktracks is 6) and ($time is 1172)) or (($tanktracks is 1) and ($time is 1232)) or (($tanktracks is 2) and ($time is 1292)) or (($tanktracks is 3) and ($time is 1352)) or (($tanktracks is 4) and ($time is 1412))>>
-			<i>Evening radio, audition 5, line 20</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1113)) or (($tanktracks is 6) and ($time is 1173)) or (($tanktracks is 1) and ($time is 1233)) or (($tanktracks is 2) and ($time is 1293)) or (($tanktracks is 3) and ($time is 1353)) or (($tanktracks is 4) and ($time is 1413))>>
-			<i>Evening radio, audition 5, line 21</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1114)) or (($tanktracks is 6) and ($time is 1174)) or (($tanktracks is 1) and ($time is 1234)) or (($tanktracks is 2) and ($time is 1294)) or (($tanktracks is 3) and ($time is 1354)) or (($tanktracks is 4) and ($time is 1414))>>
-			<i>Evening radio, audition 5, line 22</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1115)) or (($tanktracks is 6) and ($time is 1175)) or (($tanktracks is 1) and ($time is 1235)) or (($tanktracks is 2) and ($time is 1295)) or (($tanktracks is 3) and ($time is 1355)) or (($tanktracks is 4) and ($time is 1415))>>
-			<i>Evening radio, audition 5, line 23</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1116)) or (($tanktracks is 6) and ($time is 1176)) or (($tanktracks is 1) and ($time is 1236)) or (($tanktracks is 2) and ($time is 1296)) or (($tanktracks is 3) and ($time is 1356)) or (($tanktracks is 4) and ($time is 1416))>>
-			<i>Evening radio, audition 5, line 24</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1117)) or (($tanktracks is 6) and ($time is 1177)) or (($tanktracks is 1) and ($time is 1237)) or (($tanktracks is 2) and ($time is 1297)) or (($tanktracks is 3) and ($time is 1357)) or (($tanktracks is 4) and ($time is 1417))>>
-			<i>Evening radio, audition 5, line 25</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1118)) or (($tanktracks is 6) and ($time is 1178)) or (($tanktracks is 1) and ($time is 1238)) or (($tanktracks is 2) and ($time is 1298)) or (($tanktracks is 3) and ($time is 1358)) or (($tanktracks is 4) and ($time is 1418))>>
-			<i>Evening radio, audition 5, line 26</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1119)) or (($tanktracks is 6) and ($time is 1179)) or (($tanktracks is 1) and ($time is 1239)) or (($tanktracks is 2) and ($time is 1299)) or (($tanktracks is 3) and ($time is 1359)) or (($tanktracks is 4) and ($time is 1419))>>
-			<i>Evening radio, audition 5, line 27</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1120)) or (($tanktracks is 6) and ($time is 1180)) or (($tanktracks is 1) and ($time is 1240)) or (($tanktracks is 2) and ($time is 1300)) or (($tanktracks is 3) and ($time is 1360)) or (($tanktracks is 4) and ($time is 1420))>>
-			<i>Evening radio, audition 5, line 28</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1121)) or (($tanktracks is 6) and ($time is 1181)) or (($tanktracks is 1) and ($time is 1241)) or (($tanktracks is 2) and ($time is 1301)) or (($tanktracks is 3) and ($time is 1361)) or (($tanktracks is 4) and ($time is 1421))>>
-			<i>Evening radio, audition 5, line 29</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1122)) or (($tanktracks is 6) and ($time is 1182)) or (($tanktracks is 1) and ($time is 1242)) or (($tanktracks is 2) and ($time is 1302)) or (($tanktracks is 3) and ($time is 1362)) or (($tanktracks is 4) and ($time is 1422))>>
-			<i>Evening radio, audition 5, line 30</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1123)) or (($tanktracks is 6) and ($time is 1183)) or (($tanktracks is 1) and ($time is 1243)) or (($tanktracks is 2) and ($time is 1303)) or (($tanktracks is 3) and ($time is 1363)) or (($tanktracks is 4) and ($time is 1423))>>
-			<i>Evening radio, audition 5, line 31</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1124)) or (($tanktracks is 6) and ($time is 1184)) or (($tanktracks is 1) and ($time is 1244)) or (($tanktracks is 2) and ($time is 1304)) or (($tanktracks is 3) and ($time is 1364)) or (($tanktracks is 4) and ($time is 1424))>>
-			<i>Evening radio, audition 5, line 32</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1125)) or (($tanktracks is 6) and ($time is 1185)) or (($tanktracks is 1) and ($time is 1245)) or (($tanktracks is 2) and ($time is 1305)) or (($tanktracks is 3) and ($time is 1365)) or (($tanktracks is 4) and ($time is 1425))>>
-			<i>Evening radio, audition 5, line 33</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1126)) or (($tanktracks is 6) and ($time is 1186)) or (($tanktracks is 1) and ($time is 1246)) or (($tanktracks is 2) and ($time is 1306)) or (($tanktracks is 3) and ($time is 1366)) or (($tanktracks is 4) and ($time is 1426))>>
-			<i>Evening radio, audition 5, line 34</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1127)) or (($tanktracks is 6) and ($time is 1187)) or (($tanktracks is 1) and ($time is 1247)) or (($tanktracks is 2) and ($time is 1307)) or (($tanktracks is 3) and ($time is 1367)) or (($tanktracks is 4) and ($time is 1427))>>
-			<i>Evening radio, audition 5, line 35</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1128)) or (($tanktracks is 6) and ($time is 1188)) or (($tanktracks is 1) and ($time is 1248)) or (($tanktracks is 2) and ($time is 1308)) or (($tanktracks is 3) and ($time is 1368)) or (($tanktracks is 4) and ($time is 1428))>>
-			<i>Evening radio, audition 5, line 36</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1129)) or (($tanktracks is 6) and ($time is 1189)) or (($tanktracks is 1) and ($time is 1249)) or (($tanktracks is 2) and ($time is 1309)) or (($tanktracks is 3) and ($time is 1369)) or (($tanktracks is 4) and ($time is 1429))>>
-			<i>Evening radio, audition 5, line 37</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1130)) or (($tanktracks is 6) and ($time is 1190)) or (($tanktracks is 1) and ($time is 1250)) or (($tanktracks is 2) and ($time is 1310)) or (($tanktracks is 3) and ($time is 1370)) or (($tanktracks is 4) and ($time is 1430))>>
-			<i>Evening radio, audition 5, line 38</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1131)) or (($tanktracks is 6) and ($time is 1191)) or (($tanktracks is 1) and ($time is 1251)) or (($tanktracks is 2) and ($time is 1311)) or (($tanktracks is 3) and ($time is 1371)) or (($tanktracks is 4) and ($time is 1431))>>
-			<i>Evening radio, audition 5, line 39</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1132)) or (($tanktracks is 6) and ($time is 1192)) or (($tanktracks is 1) and ($time is 1252)) or (($tanktracks is 2) and ($time is 1312)) or (($tanktracks is 3) and ($time is 1372)) or (($tanktracks is 4) and ($time is 1432))>>
-			<i>Evening radio, audition 5, line 40</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1133)) or (($tanktracks is 6) and ($time is 1193)) or (($tanktracks is 1) and ($time is 1253)) or (($tanktracks is 2) and ($time is 1313)) or (($tanktracks is 3) and ($time is 1373)) or (($tanktracks is 4) and ($time is 1433))>>
-			<i>Evening radio, audition 5, line 41</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1134)) or (($tanktracks is 6) and ($time is 1194)) or (($tanktracks is 1) and ($time is 1254)) or (($tanktracks is 2) and ($time is 1314)) or (($tanktracks is 3) and ($time is 1374)) or (($tanktracks is 4) and ($time is 1434))>>
-			<i>Evening radio, audition 5, line 42</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1135)) or (($tanktracks is 6) and ($time is 1195)) or (($tanktracks is 1) and ($time is 1255)) or (($tanktracks is 2) and ($time is 1315)) or (($tanktracks is 3) and ($time is 1375)) or (($tanktracks is 4) and ($time is 1435))>>
-			<i>Evening radio, audition 5, line 43</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1136)) or (($tanktracks is 6) and ($time is 1196)) or (($tanktracks is 1) and ($time is 1256)) or (($tanktracks is 2) and ($time is 1316)) or (($tanktracks is 3) and ($time is 1376)) or (($tanktracks is 4) and ($time is 1436))>>
-			<i>Evening radio, audition 5, line 44</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1137)) or (($tanktracks is 6) and ($time is 1197)) or (($tanktracks is 1) and ($time is 1257)) or (($tanktracks is 2) and ($time is 1317)) or (($tanktracks is 3) and ($time is 1377)) or (($tanktracks is 4) and ($time is 1437))>>
-			<i>Evening radio, audition 5, line 45</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1138)) or (($tanktracks is 6) and ($time is 1198)) or (($tanktracks is 1) and ($time is 1258)) or (($tanktracks is 2) and ($time is 1318)) or (($tanktracks is 3) and ($time is 1378)) or (($tanktracks is 4) and ($time is 1438))>>
-			<i>Evening radio, audition 5, line 46</i>
-			<br>
-		<<elseif (($tanktracks is 5) and ($time is 1139)) or (($tanktracks is 6) and ($time is 1199)) or (($tanktracks is 1) and ($time is 1259)) or (($tanktracks is 2) and ($time is 1319)) or (($tanktracks is 3) and ($time is 1379)) or (($tanktracks is 4) and ($time is 1439))>>
-			<i>Evening radio, audition 5, line 47</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1093)) or (($tanktracks is 1) and ($time is 1153)) or (($tanktracks is 2) and ($time is 1213)) or (($tanktracks is 3) and ($time is 1273)) or (($tanktracks is 4) and ($time is 1333)) or (($tanktracks is 5) and ($time is 1393))>>
-			<i>Evening radio, audition 6, line 1</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1094)) or (($tanktracks is 1) and ($time is 1154)) or (($tanktracks is 2) and ($time is 1214)) or (($tanktracks is 3) and ($time is 1274)) or (($tanktracks is 4) and ($time is 1334)) or (($tanktracks is 5) and ($time is 1394))>>
-			<i>Evening radio, audition 6, line 2</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1095)) or (($tanktracks is 1) and ($time is 1155)) or (($tanktracks is 2) and ($time is 1215)) or (($tanktracks is 3) and ($time is 1275)) or (($tanktracks is 4) and ($time is 1335)) or (($tanktracks is 5) and ($time is 1395))>>
-			<i>Evening radio, audition 6, line 3</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1096)) or (($tanktracks is 1) and ($time is 1156)) or (($tanktracks is 2) and ($time is 1216)) or (($tanktracks is 3) and ($time is 1276)) or (($tanktracks is 4) and ($time is 1336)) or (($tanktracks is 5) and ($time is 1396))>>
-			<i>Evening radio, audition 6, line 4</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1097)) or (($tanktracks is 1) and ($time is 1157)) or (($tanktracks is 2) and ($time is 1217)) or (($tanktracks is 3) and ($time is 1277)) or (($tanktracks is 4) and ($time is 1337)) or (($tanktracks is 5) and ($time is 1397))>>
-			<i>Evening radio, audition 6, line 5</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1098)) or (($tanktracks is 1) and ($time is 1158)) or (($tanktracks is 2) and ($time is 1218)) or (($tanktracks is 3) and ($time is 1278)) or (($tanktracks is 4) and ($time is 1338)) or (($tanktracks is 5) and ($time is 1398))>>
-			<i>Evening radio, audition 6, line 6</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1099)) or (($tanktracks is 1) and ($time is 1159)) or (($tanktracks is 2) and ($time is 1219)) or (($tanktracks is 3) and ($time is 1279)) or (($tanktracks is 4) and ($time is 1339)) or (($tanktracks is 5) and ($time is 1399))>>
-			<i>Evening radio, audition 6, line 7</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1100)) or (($tanktracks is 1) and ($time is 1160)) or (($tanktracks is 2) and ($time is 1220)) or (($tanktracks is 3) and ($time is 1280)) or (($tanktracks is 4) and ($time is 1340)) or (($tanktracks is 5) and ($time is 1400))>>
-			<i>Evening radio, audition 6, line 8</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1101)) or (($tanktracks is 1) and ($time is 1161)) or (($tanktracks is 2) and ($time is 1221)) or (($tanktracks is 3) and ($time is 1281)) or (($tanktracks is 4) and ($time is 1341)) or (($tanktracks is 5) and ($time is 1401))>>
-			<i>Evening radio, audition 6, line 9</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1102)) or (($tanktracks is 1) and ($time is 1162)) or (($tanktracks is 2) and ($time is 1222)) or (($tanktracks is 3) and ($time is 1282)) or (($tanktracks is 4) and ($time is 1342)) or (($tanktracks is 5) and ($time is 1402))>>
-			<i>Evening radio, audition 6, line 10</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1103)) or (($tanktracks is 1) and ($time is 1163)) or (($tanktracks is 2) and ($time is 1223)) or (($tanktracks is 3) and ($time is 1283)) or (($tanktracks is 4) and ($time is 1343)) or (($tanktracks is 5) and ($time is 1403))>>
-			<i>Evening radio, audition 6, line 11</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1104)) or (($tanktracks is 1) and ($time is 1164)) or (($tanktracks is 2) and ($time is 1224)) or (($tanktracks is 3) and ($time is 1284)) or (($tanktracks is 4) and ($time is 1344)) or (($tanktracks is 5) and ($time is 1404))>>
-			<i>Evening radio, audition 6, line 12</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1105)) or (($tanktracks is 1) and ($time is 1165)) or (($tanktracks is 2) and ($time is 1225)) or (($tanktracks is 3) and ($time is 1285)) or (($tanktracks is 4) and ($time is 1345)) or (($tanktracks is 5) and ($time is 1405))>>
-			<i>Evening radio, audition 6, line 13</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1106)) or (($tanktracks is 1) and ($time is 1166)) or (($tanktracks is 2) and ($time is 1226)) or (($tanktracks is 3) and ($time is 1286)) or (($tanktracks is 4) and ($time is 1346)) or (($tanktracks is 5) and ($time is 1406))>>
-			<i>Evening radio, audition 6, line 14</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1107)) or (($tanktracks is 1) and ($time is 1167)) or (($tanktracks is 2) and ($time is 1227)) or (($tanktracks is 3) and ($time is 1287)) or (($tanktracks is 4) and ($time is 1347)) or (($tanktracks is 5) and ($time is 1407))>>
-			<i>Evening radio, audition 6, line 15</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1108)) or (($tanktracks is 1) and ($time is 1168)) or (($tanktracks is 2) and ($time is 1228)) or (($tanktracks is 3) and ($time is 1288)) or (($tanktracks is 4) and ($time is 1348)) or (($tanktracks is 5) and ($time is 1408))>>
-			<i>Evening radio, audition 6, line 16</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1109)) or (($tanktracks is 1) and ($time is 1169)) or (($tanktracks is 2) and ($time is 1229)) or (($tanktracks is 3) and ($time is 1289)) or (($tanktracks is 4) and ($time is 1349)) or (($tanktracks is 5) and ($time is 1409))>>
-			<i>Evening radio, audition 6, line 17</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1110)) or (($tanktracks is 1) and ($time is 1170)) or (($tanktracks is 2) and ($time is 1230)) or (($tanktracks is 3) and ($time is 1290)) or (($tanktracks is 4) and ($time is 1350)) or (($tanktracks is 5) and ($time is 1410))>>
-			<i>Evening radio, audition 6, line 18</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1111)) or (($tanktracks is 1) and ($time is 1171)) or (($tanktracks is 2) and ($time is 1231)) or (($tanktracks is 3) and ($time is 1291)) or (($tanktracks is 4) and ($time is 1351)) or (($tanktracks is 5) and ($time is 1411))>>
-			<i>Evening radio, audition 6, line 19</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1112)) or (($tanktracks is 1) and ($time is 1172)) or (($tanktracks is 2) and ($time is 1232)) or (($tanktracks is 3) and ($time is 1292)) or (($tanktracks is 4) and ($time is 1352)) or (($tanktracks is 5) and ($time is 1412))>>
-			<i>Evening radio, audition 6, line 20</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1113)) or (($tanktracks is 1) and ($time is 1173)) or (($tanktracks is 2) and ($time is 1233)) or (($tanktracks is 3) and ($time is 1293)) or (($tanktracks is 4) and ($time is 1353)) or (($tanktracks is 5) and ($time is 1413))>>
-			<i>Evening radio, audition 6, line 21</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1114)) or (($tanktracks is 1) and ($time is 1174)) or (($tanktracks is 2) and ($time is 1234)) or (($tanktracks is 3) and ($time is 1294)) or (($tanktracks is 4) and ($time is 1354)) or (($tanktracks is 5) and ($time is 1414))>>
-			<i>Evening radio, audition 6, line 22</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1115)) or (($tanktracks is 1) and ($time is 1175)) or (($tanktracks is 2) and ($time is 1235)) or (($tanktracks is 3) and ($time is 1295)) or (($tanktracks is 4) and ($time is 1355)) or (($tanktracks is 5) and ($time is 1415))>>
-			<i>Evening radio, audition 6, line 23</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1116)) or (($tanktracks is 1) and ($time is 1176)) or (($tanktracks is 2) and ($time is 1236)) or (($tanktracks is 3) and ($time is 1296)) or (($tanktracks is 4) and ($time is 1356)) or (($tanktracks is 5) and ($time is 1416))>>
-			<i>Evening radio, audition 6, line 24</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1117)) or (($tanktracks is 1) and ($time is 1177)) or (($tanktracks is 2) and ($time is 1237)) or (($tanktracks is 3) and ($time is 1297)) or (($tanktracks is 4) and ($time is 1357)) or (($tanktracks is 5) and ($time is 1417))>>
-			<i>Evening radio, audition 6, line 25</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1118)) or (($tanktracks is 1) and ($time is 1178)) or (($tanktracks is 2) and ($time is 1238)) or (($tanktracks is 3) and ($time is 1298)) or (($tanktracks is 4) and ($time is 1358)) or (($tanktracks is 5) and ($time is 1418))>>
-			<i>Evening radio, audition 6, line 26</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1119)) or (($tanktracks is 1) and ($time is 1179)) or (($tanktracks is 2) and ($time is 1239)) or (($tanktracks is 3) and ($time is 1299)) or (($tanktracks is 4) and ($time is 1359)) or (($tanktracks is 5) and ($time is 1419))>>
-			<i>Evening radio, audition 6, line 27</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1120)) or (($tanktracks is 1) and ($time is 1180)) or (($tanktracks is 2) and ($time is 1240)) or (($tanktracks is 3) and ($time is 1300)) or (($tanktracks is 4) and ($time is 1360)) or (($tanktracks is 5) and ($time is 1420))>>
-			<i>Evening radio, audition 6, line 28</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1121)) or (($tanktracks is 1) and ($time is 1181)) or (($tanktracks is 2) and ($time is 1241)) or (($tanktracks is 3) and ($time is 1301)) or (($tanktracks is 4) and ($time is 1361)) or (($tanktracks is 5) and ($time is 1421))>>
-			<i>Evening radio, audition 6, line 29</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1122)) or (($tanktracks is 1) and ($time is 1182)) or (($tanktracks is 2) and ($time is 1242)) or (($tanktracks is 3) and ($time is 1302)) or (($tanktracks is 4) and ($time is 1362)) or (($tanktracks is 5) and ($time is 1422))>>
-			<i>Evening radio, audition 6, line 30</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1123)) or (($tanktracks is 1) and ($time is 1183)) or (($tanktracks is 2) and ($time is 1243)) or (($tanktracks is 3) and ($time is 1303)) or (($tanktracks is 4) and ($time is 1363)) or (($tanktracks is 5) and ($time is 1423))>>
-			<i>Evening radio, audition 6, line 31</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1124)) or (($tanktracks is 1) and ($time is 1184)) or (($tanktracks is 2) and ($time is 1244)) or (($tanktracks is 3) and ($time is 1304)) or (($tanktracks is 4) and ($time is 1364)) or (($tanktracks is 5) and ($time is 1424))>>
-			<i>Evening radio, audition 6, line 32</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1125)) or (($tanktracks is 1) and ($time is 1185)) or (($tanktracks is 2) and ($time is 1245)) or (($tanktracks is 3) and ($time is 1305)) or (($tanktracks is 4) and ($time is 1365)) or (($tanktracks is 5) and ($time is 1425))>>
-			<i>Evening radio, audition 6, line 33</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1126)) or (($tanktracks is 1) and ($time is 1186)) or (($tanktracks is 2) and ($time is 1246)) or (($tanktracks is 3) and ($time is 1306)) or (($tanktracks is 4) and ($time is 1366)) or (($tanktracks is 5) and ($time is 1426))>>
-			<i>Evening radio, audition 6, line 34</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1127)) or (($tanktracks is 1) and ($time is 1187)) or (($tanktracks is 2) and ($time is 1247)) or (($tanktracks is 3) and ($time is 1307)) or (($tanktracks is 4) and ($time is 1367)) or (($tanktracks is 5) and ($time is 1427))>>
-			<i>Evening radio, audition 6, line 35</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1128)) or (($tanktracks is 1) and ($time is 1188)) or (($tanktracks is 2) and ($time is 1248)) or (($tanktracks is 3) and ($time is 1308)) or (($tanktracks is 4) and ($time is 1368)) or (($tanktracks is 5) and ($time is 1428))>>
-			<i>Evening radio, audition 6, line 36</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1129)) or (($tanktracks is 1) and ($time is 1189)) or (($tanktracks is 2) and ($time is 1249)) or (($tanktracks is 3) and ($time is 1309)) or (($tanktracks is 4) and ($time is 1369)) or (($tanktracks is 5) and ($time is 1429))>>
-			<i>Evening radio, audition 6, line 37</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1130)) or (($tanktracks is 1) and ($time is 1190)) or (($tanktracks is 2) and ($time is 1250)) or (($tanktracks is 3) and ($time is 1310)) or (($tanktracks is 4) and ($time is 1370)) or (($tanktracks is 5) and ($time is 1430))>>
-			<i>Evening radio, audition 6, line 38</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1131)) or (($tanktracks is 1) and ($time is 1191)) or (($tanktracks is 2) and ($time is 1251)) or (($tanktracks is 3) and ($time is 1311)) or (($tanktracks is 4) and ($time is 1371)) or (($tanktracks is 5) and ($time is 1431))>>
-			<i>Evening radio, audition 6, line 39</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1132)) or (($tanktracks is 1) and ($time is 1192)) or (($tanktracks is 2) and ($time is 1252)) or (($tanktracks is 3) and ($time is 1312)) or (($tanktracks is 4) and ($time is 1372)) or (($tanktracks is 5) and ($time is 1432))>>
-			<i>Evening radio, audition 6, line 40</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1133)) or (($tanktracks is 1) and ($time is 1193)) or (($tanktracks is 2) and ($time is 1253)) or (($tanktracks is 3) and ($time is 1313)) or (($tanktracks is 4) and ($time is 1373)) or (($tanktracks is 5) and ($time is 1433))>>
-			<i>Evening radio, audition 6, line 41</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1134)) or (($tanktracks is 1) and ($time is 1194)) or (($tanktracks is 2) and ($time is 1254)) or (($tanktracks is 3) and ($time is 1314)) or (($tanktracks is 4) and ($time is 1374)) or (($tanktracks is 5) and ($time is 1434))>>
-			<i>Evening radio, audition 6, line 42</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1135)) or (($tanktracks is 1) and ($time is 1195)) or (($tanktracks is 2) and ($time is 1255)) or (($tanktracks is 3) and ($time is 1315)) or (($tanktracks is 4) and ($time is 1375)) or (($tanktracks is 5) and ($time is 1435))>>
-			<i>Evening radio, audition 6, line 43</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1136)) or (($tanktracks is 1) and ($time is 1196)) or (($tanktracks is 2) and ($time is 1256)) or (($tanktracks is 3) and ($time is 1316)) or (($tanktracks is 4) and ($time is 1376)) or (($tanktracks is 5) and ($time is 1436))>>
-			<i>Evening radio, audition 6, line 44</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1137)) or (($tanktracks is 1) and ($time is 1197)) or (($tanktracks is 2) and ($time is 1257)) or (($tanktracks is 3) and ($time is 1317)) or (($tanktracks is 4) and ($time is 1377)) or (($tanktracks is 5) and ($time is 1437))>>
-			<i>Evening radio, audition 6, line 45</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1138)) or (($tanktracks is 1) and ($time is 1198)) or (($tanktracks is 2) and ($time is 1258)) or (($tanktracks is 3) and ($time is 1318)) or (($tanktracks is 4) and ($time is 1378)) or (($tanktracks is 5) and ($time is 1438))>>
-			<i>Evening radio, audition 6, line 46</i>
-			<br>
-		<<elseif (($tanktracks is 6) and ($time is 1139)) or (($tanktracks is 1) and ($time is 1199)) or (($tanktracks is 2) and ($time is 1259)) or (($tanktracks is 3) and ($time is 1319)) or (($tanktracks is 4) and ($time is 1379)) or (($tanktracks is 5) and ($time is 1439))>>
-			<i>Evening radio, audition 6, line 47</i>
-			<br>
-		<</if>>
-	<</if>>
-	/*emit news*/
-	<<if ($time is 0) or ($time is 60) or ($time is 120) or ($time is 180) or ($time is 240) or ($time is 300)>>
-		<i><span class="gold">*news jingle*</span>
-		<br>
-		<b>[Jeffrey]</b>:
-		<br>
-		"Jeffrey Hall. It's <<ampm>>, <<print Time.weekDayName>>, <<print ordinalSuffixOf(Time.monthDay)>> of <<print Time.monthName>>. Let's hear the news."</i>
-		<br>
-	<<elseif ($time is 1) or ($time is 61) or ($time is 121) or ($time is 181) or ($time is 241) or ($time is 301)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Jeffrey]</b>:
-		<br>
-		"$news1_line1"</i>
-		<br>
-	<<elseif ($time is 2) or ($time is 62) or ($time is 122) or ($time is 182) or ($time is 242) or ($time is 302)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Jeffrey]</b>:
-		<br>
-		"$news1_line2"</i>
-		<br>
-	<<elseif ($time is 3) or ($time is 63) or ($time is 123) or ($time is 183) or ($time is 243) or ($time is 303)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Jeffrey]</b>:
-		<br>
-		"$news1_line3"</i>
-		<br>
-	<<elseif ($time is 4) or ($time is 64) or ($time is 124) or ($time is 184) or ($time is 244) or ($time is 304)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Jeffrey]</b>:
-		<br>
-		"$news1_line4"</i>
-		<br>
-	<<elseif ($time is 5) or ($time is 65) or ($time is 125) or ($time is 185) or ($time is 245) or ($time is 305)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Jeffrey]</b>:
-		<br>
-		"$news1_line5"</i>
-		<br>
-	<<elseif ($time is 6) or ($time is 66) or ($time is 126) or ($time is 186) or ($time is 246) or ($time is 306)>>
-		<i><span class="gold">*news jingle*</span>
-		<br>
-		<b>[Jeffrey]</b>:
-		<br>
-		"Let's change the topic."</i>
-		<br>
-	<<elseif ($time is 7) or ($time is 67) or ($time is 127) or ($time is 187) or ($time is 247) or ($time is 307)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Jeffrey]</b>:
-		<br>
-		"$news2_line1"</i>
-		<br>
-	<<elseif ($time is 8) or ($time is 68) or ($time is 128) or ($time is 188) or ($time is 248) or ($time is 308)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Jeffrey]</b>:
-		<br>
-		"$news2_line2"</i>
-		<br>
-	<<elseif ($time is 9) or ($time is 69) or ($time is 129) or ($time is 189) or ($time is 249) or ($time is 309)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Jeffrey]</b>:
-		<br>
-		"$news2_line3"</i>
-		<br>
-	<<elseif ($time is 10) or ($time is 70) or ($time is 130) or ($time is 190) or ($time is 250) or ($time is 310)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Jeffrey]</b>:
-		<br>
-		"$news2_line4"</i>
-		<br>
-	<<elseif ($time is 11) or ($time is 71) or ($time is 131) or ($time is 191) or ($time is 251) or ($time is 311)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Jeffrey]</b>:
-		<br>
-		"$news2_line5"</i>
-		<br>
-	<<elseif ($time is 12) or ($time is 72) or ($time is 132) or ($time is 192) or ($time is 252) or ($time is 312)>>
-		<i><span class="gold">*news jingle*</span>
-		<br>
-		<b>[Jeffrey]</b>:
-		<br>
-		"That's all for now. Have a good night."</i>
-		<br>
-	<<elseif ($time is 360) or ($time is 420) or ($time is 480) or ($time is 540) or ($time is 600) or ($time is 660)>>
-		<i><span class="gold">*news jingle*</span>
-		<br>
-		<b>[Evelyn]</b>:
-		<br>
-		"Good morning! It's <<ampm>> and my name is Evelyn Walsh. It's <<print Time.monthName>> <<print ordinalSuffixOf(Time.monthDay)>> and here are the morning news."</i>
-		<br>
-	<<elseif ($time is 361) or ($time is 421) or ($time is 481) or ($time is 541) or ($time is 601) or ($time is 661)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Evelyn]</b>:
-		<br>
-		"$news1_line1"</i>
-		<br>
-	<<elseif ($time is 362) or ($time is 422) or ($time is 482) or ($time is 542) or ($time is 602) or ($time is 662)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Evelyn]</b>:
-		<br>
-		"$news1_line2"</i>
-		<br>
-	<<elseif ($time is 363) or ($time is 423) or ($time is 483) or ($time is 543) or ($time is 603) or ($time is 663)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Evelyn]</b>:
-		<br>
-		"$news1_line3"</i>
-		<br>
-	<<elseif ($time is 364) or ($time is 424) or ($time is 484) or ($time is 544) or ($time is 604) or ($time is 664)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Evelyn]</b>:
-		<br>
-		"$news1_line4"</i>
-		<br>
-	<<elseif ($time is 365) or ($time is 425) or ($time is 485) or ($time is 545) or ($time is 605) or ($time is 665)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Evelyn]</b>:
-		<br>
-		"$news1_line5"</i>
-		<br>
-	<<elseif ($time is 366) or ($time is 426) or ($time is 486) or ($time is 546) or ($time is 606) or ($time is 666)>>
-		<i><span class="gold">*news jingle*</span>
-		<br>
-		<b>[Evelyn]</b>:
-		<br>
-		"Now something different."</i>
-		<br>
-	<<elseif ($time is 367) or ($time is 427) or ($time is 487) or ($time is 547) or ($time is 607) or ($time is 667)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Evelyn]</b>:
-		<br>
-		"$news2_line1"</i>
-		<br>
-	<<elseif ($time is 368) or ($time is 428) or ($time is 488) or ($time is 548) or ($time is 608) or ($time is 668)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Evelyn]</b>:
-		<br>
-		"$news2_line2"</i>
-		<br>
-	<<elseif ($time is 369) or ($time is 429) or ($time is 489) or ($time is 549) or ($time is 609) or ($time is 669)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Evelyn]</b>:
-		<br>
-		"$news2_line3"</i>
-		<br>
-	<<elseif ($time is 370) or ($time is 430) or ($time is 490) or ($time is 550) or ($time is 610) or ($time is 670)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Evelyn]</b>:
-		<br>
-		"$news2_line4"</i>
-		<br>
-	<<elseif ($time is 371) or ($time is 431) or ($time is 491) or ($time is 551) or ($time is 611) or ($time is 671)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Evelyn]</b>:
-		<br>
-		"$news2_line5"</i>
-		<br>
-	<<elseif ($time is 372) or ($time is 432) or ($time is 492) or ($time is 552) or ($time is 612) or ($time is 672)>>
-		<i><span class="gold">*news jingle*</span>
-		<br>
-		<b>[Evelyn]</b>:
-		<br>
-		"That's everything in this release. Have a good <<print Time.weekDayName>> with $radioname!"</i>
-		<br>
-	<<elseif ($time is 720) or ($time is 780) or ($time is 840) or ($time is 900) or ($time is 960) or ($time is 1020)>>
-		<i><span class="gold">*news jingle*</span>
-		<br>
-		<b>[Katherine]</b>:
-		<br>
-		"Good day. Katherine Reynolds."
-		<br>
-		<b>[Jacob]</b>:
-		<br>
-		"And Jacob Ross. We have <<print Time.weekDayName>>, <<print ordinalSuffixOf(Time.monthDay)>> of <<print Time.monthName>>. It's <<ampm>> and you're listening to $radioname News."</i>
-		<br>
-	<<elseif ($time is 721) or ($time is 781) or ($time is 841) or ($time is 901) or ($time is 961) or ($time is 1021)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Katherine]</b>:
-		<br>
-		"$news1_line1"</i>
-		<br>
-	<<elseif ($time is 722) or ($time is 782) or ($time is 842) or ($time is 902) or ($time is 962) or ($time is 1022)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Katherine]</b>:
-		<br>
-		"$news1_line2"</i>
-		<br>
-	<<elseif ($time is 723) or ($time is 783) or ($time is 843) or ($time is 903) or ($time is 963) or ($time is 1023)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Katherine]</b>:
-		<br>
-		"$news1_line3"</i>
-		<br>
-	<<elseif ($time is 724) or ($time is 784) or ($time is 844) or ($time is 904) or ($time is 964) or ($time is 1024)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Katherine]</b>:
-		<br>
-		"$news1_line4"</i>
-		<br>
-	<<elseif ($time is 725) or ($time is 785) or ($time is 845) or ($time is 905) or ($time is 965) or ($time is 1025)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Katherine]</b>:
-		<br>
-		"$news1_line5"</i>
-		<br>
-	<<elseif ($time is 726) or ($time is 786) or ($time is 846) or ($time is 906) or ($time is 966) or ($time is 1026)>>
-		<i><span class="gold">*news jingle*</span>
-		<br>
-		<b>[Jacob]</b>:
-		<br>
-		"Thank you Katherine. Now to the other news."</i>
-		<br>
-	<<elseif ($time is 727) or ($time is 787) or ($time is 847) or ($time is 907) or ($time is 967) or ($time is 1027)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Jacob]</b>:
-		<br>
-		"$news2_line1"</i>
-		<br>
-	<<elseif ($time is 728) or ($time is 788) or ($time is 848) or ($time is 908) or ($time is 968) or ($time is 1028)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Jacob]</b>:
-		<br>
-		"$news2_line2"</i>
-		<br>
-	<<elseif ($time is 729) or ($time is 789) or ($time is 849) or ($time is 909) or ($time is 969) or ($time is 1029)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Jacob]</b>:
-		<br>
-		"$news2_line3"</i>
-		<br>
-	<<elseif ($time is 730) or ($time is 790) or ($time is 850) or ($time is 910) or ($time is 970) or ($time is 1030)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Jacob]</b>:
-		<br>
-		"$news2_line4"</i>
-		<br>
-	<<elseif ($time is 731) or ($time is 791) or ($time is 851) or ($time is 911) or ($time is 971) or ($time is 1031)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Jacob]</b>:
-		<br>
-		"$news2_line5"</i>
-		<br>
-	<<elseif ($time is 732) or ($time is 792) or ($time is 852) or ($time is 912) or ($time is 972) or ($time is 1032)>>
-		<i><span class="gold">*news jingle*</span>
-		<br>
-		<b>[Jacob]</b>:
-		<br>
-		"That's everything in this release. Next in an hour. Stay with $radioname!"
-		<br>
-		<b>[Katherine]</b>:
-		<br>
-		"$radioname - $radioslogan!"</i>
-		<br>
-	<<elseif ($time is 1080) or ($time is 1140) or ($time is 1200) or ($time is 1260) or ($time is 1320) or ($time is 1380)>>
-		<i><span class="gold">*news jingle*</span>
-		<br>
-		<b>[Emma]</b>:
-		<br>
-		"This is Emma Lee. It's <<print Time.monthName>> <<print ordinalSuffixOf(Time.monthDay)>> - <<print Time.weekDayName>>. It's <<print Time.hour>> o'clock. Time for the evening news in $radioname."</i>
-		<br>
-	<<elseif ($time is 1081) or ($time is 1141) or ($time is 1201) or ($time is 1261) or ($time is 1321) or ($time is 1381)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Emma]</b>:
-		<br>
-		"$news1_line1"</i>
-		<br>
-	<<elseif ($time is 1082) or ($time is 1142) or ($time is 1202) or ($time is 1262) or ($time is 1322) or ($time is 1382)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Emma]</b>:
-		<br>
-		"$news1_line2"</i>
-		<br>
-	<<elseif ($time is 1083) or ($time is 1143) or ($time is 1203) or ($time is 1263) or ($time is 1323) or ($time is 1383)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Emma]</b>:
-		<br>
-		"$news1_line3"</i>
-		<br>
-	<<elseif ($time is 1084) or ($time is 1144) or ($time is 1204) or ($time is 1264) or ($time is 1324) or ($time is 1384)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Emma]</b>:
-		<br>
-		"$news1_line4"</i>
-		<br>
-	<<elseif ($time is 1085) or ($time is 1145) or ($time is 1205) or ($time is 1265) or ($time is 1325) or ($time is 1385)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Emma]</b>:
-		<br>
-		"$news1_line5"</i>
-		<br>
-	<<elseif ($time is 1086) or ($time is 1146) or ($time is 1206) or ($time is 1266) or ($time is 1326) or ($time is 1386)>>
-		<i><span class="gold">*news jingle*</span>
-		<br>
-		<b>[Emma]</b>:
-		<br>
-		"But there are some other news too!"</i>
-		<br>
-	<<elseif ($time is 1087) or ($time is 1147) or ($time is 1207) or ($time is 1267) or ($time is 1327) or ($time is 1387)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Emma]</b>:
-		<br>
-		"$news2_line1"</i>
-		<br>
-	<<elseif ($time is 1088) or ($time is 1148) or ($time is 1208) or ($time is 1268) or ($time is 1328) or ($time is 1388)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Emma]</b>:
-		<br>
-		"$news2_line2"</i>
-		<br>
-	<<elseif ($time is 1089) or ($time is 1149) or ($time is 1209) or ($time is 1269) or ($time is 1329) or ($time is 1389)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Emma]</b>:
-		<br>
-		"$news2_line3"</i>
-		<br>
-	<<elseif ($time is 1090) or ($time is 1150) or ($time is 1210) or ($time is 1270) or ($time is 1330) or ($time is 1390)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Emma]</b>:
-		<br>
-		"$news2_line4"</i>
-		<br>
-	<<elseif ($time is 1091) or ($time is 1151) or ($time is 1211) or ($time is 1271) or ($time is 1331) or ($time is 1391)>>
-		<i><span class="black">*news music in the background*</span>
-		<br>
-		<b>[Emma]</b>:
-		<br>
-		"$news2_line5"</i>
-		<br>
-	<<elseif ($time is 1092) or ($time is 1152) or ($time is 1212) or ($time is 1272) or ($time is 1332) or ($time is 1392)>>
-		<i><span class="gold">*news jingle*</span>
-		<br>
-		<b>[Emma]</b>:
-		<br>
-		"We will keep you informed about anything else special happening. For $radioname - Emma Lee."</i>
-		<br>
-	<</if>>
-	<br>
-	/*this part is for debugging only*/
-	/*
-	<span class="green">
-	Debug mode:
-	<br>
-	First news are "$news1" with importance $news1_importance.
-	<br>
-	Witnesses may report that they have seen young $news1_gen with $news1_hairl $news1_hairc hair.
-	<br>
-	Second news are "$news2" with importance $news2_importance.
-	<br>
-	Witnesses may report that they have seen young $news2_gen with $news2_hairl $news2_hairc hair.
-	<br>
-	Tank track value is: $tanktracks.
-	<br><br>
-	</span>
-	*/
-<</widget>>
diff --git a/game/base-system/time/dateTime.js b/game/base-system/time/dateTime.js
index 08a32913b1dfaf69ea88c5d46144dbfd6826f61d..63a24d58330cfb048e07416dfc8b5fa10962ca22 100644
--- a/game/base-system/time/dateTime.js
+++ b/game/base-system/time/dateTime.js
@@ -7,6 +7,7 @@ class DateTime {
 	static leapYearMonths = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
 	static monthNames = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
 	static daysOfWeek = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
+	static synodicMonth = 29.53058867;
 	*/
 
 	constructor(year = 2020, month = 1, day = 1, hour = 0, minute = 0, second = 0) {
@@ -28,7 +29,6 @@ class DateTime {
 			this.fromTimestamp(arguments[0]);
 			return;
 		}
-
 		this.toTimestamp(year, month, day, hour, minute, second);
 	}
 
@@ -105,6 +105,31 @@ class DateTime {
 		this.second = second % 60;
 	}
 
+	// Compares this DateTime object with another DateTime object and returns the difference.
+	compareWith(otherDateTime, getSeconds = false) {
+		let diffSeconds = Math.abs(this.timeStamp - otherDateTime.timeStamp);
+		if (getSeconds) return diffSeconds;
+
+		const years = Math.floor(diffSeconds / (Time.secondsPerDay * 365.25));
+		diffSeconds -= years * Time.secondsPerDay * 365;
+
+		const months = Math.floor(diffSeconds / (Time.secondsPerDay * 30));
+		diffSeconds -= months * Time.secondsPerDay * 30;
+
+		const days = Math.floor(diffSeconds / Time.secondsPerDay);
+		diffSeconds -= days * Time.secondsPerDay;
+
+		const hours = Math.floor(diffSeconds / Time.secondsPerHour);
+		diffSeconds -= hours * Time.secondsPerHour;
+
+		const minutes = Math.floor(diffSeconds / Time.secondsPerMinute);
+		diffSeconds -= minutes * Time.secondsPerMinute;
+
+		const seconds = diffSeconds;
+
+		return { years, months, days, hours, minutes, seconds };
+	}
+
 	// Returns the first occurrence of a given weekday (1-7 for Sun-Sat) in the current month.
 	getFirstWeekdayOfMonth(weekDay) {
 		if (weekDay < 1 || weekDay > 7) throw new Error("Invalid weekDay: Must be between 1-7");
@@ -133,7 +158,7 @@ class DateTime {
 	// Adds the specified number of years to the current date
 	// Adding a negative value (e.g. -1) subtracts the years instead
 	addYears(years) {
-		if (years === 0) return this;
+		if (!years) return this;
 		const newYear = this.year + years;
 		const daysInMonth = DateTime.getDaysOfMonthFromYear(newYear);
 		const newDay = Math.min(this.day, daysInMonth[this.month - 1]);
@@ -145,7 +170,7 @@ class DateTime {
 	// Adds the specified number of months to the current date
 	// Adding a negative value (e.g. -1) subtracts the months instead
 	addMonths(months) {
-		if (months === 0) return this;
+		if (!months) return this;
 		const addedMonths = this.month + months;
 		const newYear = this.year + Math.floor((addedMonths - 1) / 12);
 		const newMonth = ((addedMonths - 1) % 12) + 1;
@@ -158,7 +183,7 @@ class DateTime {
 	// Adds the specified number of days to the current date
 	// Adding a negative value (e.g. -1) subtracts the days instead
 	addDays(days) {
-		if (days === 0) return this;
+		if (!days) return this;
 		this.fromTimestamp(this.timeStamp + days * Time.secondsPerDay);
 		return this;
 	}
@@ -166,7 +191,7 @@ class DateTime {
 	// Adds the specified number of hours to the current date and time
 	// Adding a negative value (e.g. -1) subtracts the hours instead
 	addHours(hours) {
-		if (hours === 0) return this;
+		if (!hours) return this;
 		this.timeStamp += hours * Time.secondsPerHour;
 		this.fromTimestamp(this.timeStamp);
 		return this;
@@ -175,7 +200,7 @@ class DateTime {
 	// Adds the specified number of minutes to the current date and time
 	// Adding a negative value (e.g. -1) subtracts the minutes instead
 	addMinutes(minutes) {
-		if (minutes === 0) return this;
+		if (!minutes) return this;
 		this.timeStamp += minutes * Time.secondsPerMinute;
 		this.fromTimestamp(this.timeStamp);
 		return this;
@@ -184,7 +209,7 @@ class DateTime {
 	// Adds the specified number of seconds to the current date and time
 	// Adding a negative value (e.g. -1) subtracts the seconds instead
 	addSeconds(seconds) {
-		if (seconds === 0) return this;
+		if (!seconds) return this;
 		this.timeStamp += seconds;
 		this.fromTimestamp(this.timeStamp);
 		return this;
@@ -229,5 +254,28 @@ class DateTime {
 		const daysPerMonth = DateTime.getDaysOfMonthFromYear(this.year);
 		return daysPerMonth.slice(0, this.month - 1).reduce((a, b) => a + b, 0) + this.day;
 	}
+
+	// Returns the current moon phase as a fraction (0-1), where 0 is new moon and 0.5 is full moon
+	get moonPhaseFraction() {
+		// Real new moon (in london) as a reference point
+		const referenceNewMoon = new DateTime(2022, 1, 2, 18, 33);
+		let phaseFraction = ((this.timeStamp - referenceNewMoon.timeStamp) / (Time.synodicMonth * Time.secondsPerDay)) % 1;
+
+		// Special rounding cases - to round to a complete new-moon or full-moon more often
+		phaseFraction =
+			phaseFraction >= 0.48 && phaseFraction <= 0.52 ? 0.5 : phaseFraction < 0.02 || phaseFraction > 0.98 ? 0 : Math.round(phaseFraction * 100) / 100;
+
+		return phaseFraction;
+	}
+
+	// Returns a fraction of a day. (0 at 0:00 and 1 at 24:00)
+	get fractionOfDay() {
+		return (this.hour * 60 + this.minute) / (24 * 60);
+	}
+
+	// Returns a fraction of a day, but starting at noon. (0 at 12:00 and 0.99 at 11:59)
+	get fractionOfDayFromNoon() {
+		return (((this.hour + 12) % 24) * 60 + this.minute) / (24 * 60);
+	}
 }
 window.DateTime = DateTime;
diff --git a/game/base-system/time/time.js b/game/base-system/time/time.js
index 238efa185ee0f7f5b8f0984269159f4a5fbc49a3..a41efaa69a668124fb6aa5782452b54f03fe2b40 100644
--- a/game/base-system/time/time.js
+++ b/game/base-system/time/time.js
@@ -58,6 +58,50 @@ const Time = (() => {
 	const secondsPerMinute = 60;
 	const standardYearMonths = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
 	const leapYearMonths = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
+	const synodicMonth = 29.53058867;
+	const moonPhases = {
+		new: {
+			start: 0,
+			end: 0.03,
+			endAlt: 1,
+			description: "New Moon",
+		},
+		waxingCrescent: {
+			start: 0.03,
+			end: 0.22,
+			description: "Waxing Crescent",
+		},
+		firstQuarter: {
+			start: 0.22,
+			end: 0.28,
+			description: "First Quarter",
+		},
+		waxingGibbous: {
+			start: 0.28,
+			end: 0.47,
+			description: "Waxing Gibbous",
+		},
+		full: {
+			start: 0.47,
+			end: 0.53,
+			description: "Full Moon",
+		},
+		waningGibbous: {
+			start: 0.53,
+			end: 0.72,
+			description: "Waning Gibbous",
+		},
+		lastQuarter: {
+			start: 0.72,
+			end: 0.78,
+			description: "Last Quarter",
+		},
+		waningCrescent: {
+			start: 0.78,
+			end: 0.97,
+			description: "Waning Crescent",
+		},
+	};
 	const monthNames = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
 	const daysOfWeek = ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"];
 
@@ -132,25 +176,26 @@ const Time = (() => {
 		return fragment;
 	}
 
-	function nextSchoolTermStartDate(date) {
+	function getNextSchoolTermStartDate(date) {
 		const newDate = new DateTime(date);
 		if (!holidayMonths.includes(newDate.month) && date.day < newDate.getFirstWeekdayOfMonth(2).day) {
 			return newDate.getFirstWeekdayOfMonth(2);
 		}
 
-		newDate.addMonths(holidayMonths.find(e => e > newDate.month) - newDate.month + 1);
+		newDate.addMonths(holidayMonths.find(e => e >= newDate.month) - newDate.month + 1);
 		return newDate.getFirstWeekdayOfMonth(2);
 	}
 
-	function nextSchoolTermEndDate(date) {
+	function getNextSchoolTermEndDate(date) {
 		const newDate = new DateTime(date);
 		newDate.addMonths(holidayMonths.find(e => e >= newDate.month) - newDate.month);
 		return newDate.getFirstWeekdayOfMonth(2).addDays(-3).addHours(15);
 	}
 
 	function isSchoolTerm(date) {
-		let termEndDate = nextSchoolTermEndDate(date);
-		termEndDate = new DateTime(termEndDate.year, termEndDate.month, termEndDate.day + 1);
+		let termEndDate = getNextSchoolTermEndDate(date);
+		termEndDate = new DateTime(termEndDate.year, termEndDate.month, termEndDate.day);
+		termEndDate.addDays(1);
 		const firstMonday = date.getFirstWeekdayOfMonth(2);
 		const prevMonth = ((date.month - 2 + 12) % 12) + 1;
 
@@ -169,6 +214,51 @@ const Time = (() => {
 		return isSchoolDay(date) && date.hour > 8 && date.hour < 15;
 	}
 
+	function getDayOfYear(date) {
+		const start = new DateTime(date.year, 1, 1);
+		const diff = date.timeStamp - start.timeStamp;
+		return Math.floor(diff / Time.secondsPerDay);
+	}
+
+	function getSecondsSinceMidnight(date) {
+		return date.hour * Time.secondsPerHour + date.minute * Time.secondsPerMinute;
+	}
+
+	// Current moon phase
+	function currentMoonPhase(date) {
+		const phaseFraction = date.moonPhaseFraction;
+		for (const phase in moonPhases) {
+			const range = moonPhases[phase];
+			if ((phaseFraction >= range.start && phaseFraction < range.end) || (range.endAlt && phaseFraction >= 0.97)) {
+				return phase;
+			}
+		}
+	}
+	// Previous occurrence of a specific moon phase
+	function previousMoonPhase(targetPhase) {
+		const date = new DateTime(currentDate.year, currentDate.month, currentDate.day, 0, 0);
+		date.setTime(0, 0);
+		do {
+			date.addDays(-1);
+			const currentPhase = currentMoonPhase(date);
+			if (currentPhase === targetPhase) {
+				return date;
+			}
+		} while (true);
+	}
+
+	// Next occurrence of a specific moon phase
+	function nextMoonPhase(targetPhase) {
+		const date = new DateTime(currentDate.year, currentDate.month, currentDate.day, 0, 0);
+		do {
+			date.addDays(1);
+			const currentPhase = currentMoonPhase(date);
+			if (currentPhase === targetPhase) {
+				return date;
+			}
+		} while (true);
+	}
+
 	return Object.create({
 		get date() {
 			return currentDate;
@@ -241,14 +331,23 @@ const Time = (() => {
 			return hour < 6 ? "morning" : hour >= 9 ? "evening" : undefined;
 		},
 		get nextSchoolTermStartDate() {
-			return nextSchoolTermStartDate(currentDate);
+			return getNextSchoolTermStartDate(currentDate);
 		},
 		get nextSchoolTermEndDate() {
-			return nextSchoolTermEndDate(currentDate);
+			return getNextSchoolTermEndDate(currentDate);
 		},
 		get lastDayOfMonth() {
 			return currentDate.lastDayOfMonth;
 		},
+		get dayOfYear() {
+			return getDayOfYear(currentDate);
+		},
+		get secondsSinceMidnight() {
+			return getSecondsSinceMidnight(currentDate);
+		},
+		get currentMoonPhase() {
+			return currentMoonPhase(currentDate);
+		},
 		set,
 		setDate,
 		setTime,
@@ -257,17 +356,23 @@ const Time = (() => {
 		isSchoolTerm,
 		isSchoolDay,
 		isSchoolTime,
+		getDayOfYear,
+		getSecondsSinceMidnight,
+		nextMoonPhase,
+		previousMoonPhase,
 
 		secondsPerDay,
 		secondsPerHour,
 		secondsPerMinute,
 		standardYearMonths,
 		leapYearMonths,
+		synodicMonth,
+		moonPhases,
 		monthNames,
 		daysOfWeek,
 
-		getNextSchoolTermStartDate: nextSchoolTermStartDate,
-		getNextSchoolTermEndDate: nextSchoolTermEndDate,
+		getNextSchoolTermStartDate,
+		getNextSchoolTermEndDate,
 		getNextWeekdayDate: weekDay => currentDate.getNextWeekdayDate(weekDay),
 		getPreviousWeekdayDate: weekDay => currentDate.getPreviousWeekdayDate(weekDay),
 		isWeekEnd: () => currentDate.weekEnd,
@@ -397,6 +502,8 @@ function dayPassed() {
 	fragment.append(wikifier("clearNPC", "pharmNurse"));
 	fragment.append(wikifier("weather_select"));
 
+	Weather.Sky.setMoonPhase(Time.date);
+
 	V.physiquechange = 1;
 	V.home_event_timer--;
 	V.park_fame = Math.clamp(V.park_fame - 7, 0, 100);
@@ -765,6 +872,7 @@ function hourPassed(hours) {
 
 function minutePassed(minutes) {
 	const fragment = document.createDocumentFragment();
+
 	// Stress
 	// decay/rise and crossdresser trait
 	const isCrossdresser = V.backgroundTraits.includes("crossdresser");
diff --git a/game/base-system/time/timeMacros.js b/game/base-system/time/timeMacros.js
index d6a81e306bf43f6d64a31bcf6945bb1fcb6095a3..f30e02a03f13105dfee43520a2b0909355a725e8 100644
--- a/game/base-system/time/timeMacros.js
+++ b/game/base-system/time/timeMacros.js
@@ -33,9 +33,10 @@ Macro.add("advancetohour", {
 });
 
 function passTimeUntil(hour, minute) {
-	const diffHour = (24 - Time.hour + hour) % 24;
-	const diffMinute = (60 + Time.minute - (minute || 0)) % 60;
-	return passTime(diffHour * 60 + diffMinute);
+	const currentSeconds = Time.hour * Time.secondsPerHour + Time.minute * Time.secondsPerMinute;
+	const targetSeconds = hour * Time.secondsPerHour + minute * Time.secondsPerMinute;
+	const secondsToPass = (targetSeconds - currentSeconds + Time.secondsPerDay) % Time.secondsPerDay;
+	return passTime(secondsToPass, "sec");
 }
 Macro.add("passTimeUntil", {
 	handler() {
@@ -118,6 +119,9 @@ function schoolTerm() {
 		}
 	}
 	const date = Time.nextSchoolTermStartDate;
+	if (Time.date.compareWith(date).days === 1) {
+		return "School term starts tomorrow.";
+	}
 	return "School term starts on " + date.weekDayName + " the " + ordinalSuffixOf(date.day) + " of " + date.monthName;
 }
 
diff --git a/game/base-system/widgets.twee b/game/base-system/widgets.twee
index dae98d03fc9e4e34f01f5c1536843d78328c734a..f2df83a9c3d58403acf5598d6214906494dd72e3 100644
--- a/game/base-system/widgets.twee
+++ b/game/base-system/widgets.twee
@@ -1757,6 +1757,7 @@
 <</widget>>
 
 <<widget "weatherdisplay">>
+	<<set _season to (Time.season == "winter" ? "_winter" : "")>>
 	<<set _weather_display to (Time.season == "winter" ? "winter" : "normal")>>
 	<<if $options.images is 1>>
 		<<if Time.dayState is "night" and (isBloodmoon() or $forcedBloodmoon)>>
@@ -1767,54 +1768,53 @@
 		<<set _dayState to "_"+Time.dayState>>
 
 		<<set _imgLoc to 'img/misc/'>>
-		<<set _imgSky to 'img/misc/'>>
-		<<set _imgWeather to 'img/misc/'>>
+		<<set _imgSky to 'img/misc/sky/'>>
 
 		/* sky (upmost part) */
-		<<if $location is "tentworld">>
-			<img id="daystate" @src="_imgSky+'tentsky'+_dayState+'.png'">
+		/* <<if $skyHidden is true>>
+			<<set _skybox to "skybox_blank">>
+		<<elseif $location is "tentworld">>
+			<<set _skybox to "skybox" + _dayState + "_tentacle">>
 		<<else>>
-			<img id="daystate" @src="_imgSky+'sky'+_dayStateWithBloodMoon+'.png'">
-		<</if>>
+			<<set _skybox to "skybox" + _dayStateWithBloodMoon>>
+			<<if $location is "bog">><<set _skybox += "_haze">><</if>>
+			<img id="daystate" @src="_imgSky + 'sun' + _dayState + '.png'">
+			<img id="daystate" @src="_imgSky + 'moon' + _dayStateWithBloodMoon + '.png'">
+		<</if>> */
+
+		<<skybox>>
 
 		/* weather (middle part) */
-		<<if $location is "tentworld">>
-			<img id="weather" @src="_imgWeather+'tentsky'+_dayState+'.png'">
+		/* <<if $location is "tentworld" or $skyHidden is true>>
 		<<else>>
 			<<switch $weather>>
-				<<case "clear">>	<img id="weather" @src="_imgWeather+'clear'+_dayState+'.png'">
-				<<case "overcast">> <img id="weather" @src="_imgWeather+_weather_display + '/overcast'+_dayState+'.png'">
-				<<case "rain">>		<img id="weather" @src="_imgWeather+'rain'+_dayState+'.gif'">
-				<<case "snow">>		<img id="weather" @src="_imgWeather+'winter/snow'+_dayState+'.gif'">
+				<<case "clear">>
+				<<case "overcast">> <img id="weather" @src="_imgSky + 'overcast' + _dayState + _season + '.png'">
+				<<case "rain">>		<img id="weather" @src="_imgSky + 'rain' + _dayState + '.gif'">
+				<<case "snow">>		<img id="weather" @src="_imgSky + 'snow' + _dayState + '.gif'">
 			<</switch>>
-		<</if>>
+		<</if>> */
 
 		/* location (bottom part) */
-		<<switch $location>>
+		/* <<switch $location>>
 			<<case "adult_shop">>
 				<<getadultshopstate>>
-				<<if $adultshopstate is "closed">>
-					<<if Time.dayState is "night" or Time.dayState is "dusk">>
-						<img id="location" @src="_imgLoc + _weather_display + '/sex_shop'+_dayState+'.gif'">
-					<<else>>
-						<img id="location" @src="_imgLoc + _weather_display + '/sex_shop'+_dayState+'.png'">
-					<</if>>
-				<<else>>
+				<<if Time.dayState is "day" and $adultshopstate isnot "closed">>
 					<img id="location" @src="_imgLoc + _weather_display + '/sex_shop'+_dayState+'_open.gif'">
+				<<elseif Time.dayState is "night" or Time.dayState is "dusk">>
+					<img id="location" @src="_imgLoc + _weather_display + '/sex_shop'+_dayState+'.gif'">
+				<<else>>
+					<img id="location" @src="_imgLoc + _weather_display + '/sex_shop'+_dayState+'.png'">
 				<</if>>
 			<<case "alex_cottage">>
 				<img id="location" @src="_imgLoc + _weather_display + '/alex_cottage'+_dayState+'.png'">
 			<<case "alex_farm">>
 				<<if $bus is "woodland">>
-					<<if Time.dayState is "night" or Time.dayState is "dawn">>
-						<img id="location" @src="_imgLoc + _weather_display + '/forest'+_dayState+'.png'">
-					<<else>>
-						<img id="location" @src="_imgLoc + _weather_display + '/forest'+_dayStateWithBloodMoon+'.gif'">
-					<</if>>
+					<img id="location" @src="_imgLoc + _weather_display + '/forest'+_dayStateWithBloodMoon+'.gif'">
 				<<else>>
 					<img id="location" @src="_imgLoc + _weather_display + '/alex_farm'+_dayState+'.png'">
 				<</if>>
-			<<case "alley">>
+	--		<<case "alley">>
 				<<if $bus is "industrial">>
 					<img id="location" @src="_imgLoc + _weather_display + '/indust_alley'+_dayStateWithBloodMoon+'.gif'">
 				<<elseif $bus is "residential">>
@@ -1830,17 +1830,13 @@
 				<<else>>
 					<img id="location" @src="_imgLoc + _weather_display + '/asylum'+_dayState+'slow.gif'">
 				<</if>>
-			<<case "beach" "chalets">>
+	--		<<case "beach" "chalets">>
 				<img id="location" @src="_imgLoc + _weather_display + '/beach'+_dayState+'.gif'">
 			<<case "brothel">>
 				<img id="location" @src="_imgLoc + _weather_display + '/brothel'+_dayState+'.png'">
 			<<case "cabin">>
-				<<if Time.season is "winter">>
-					<img id="location" @src="_imgLoc + _weather_display + '/cabin'+_dayState+'.png'">
-				<<else>>
-					<img id="location" @src="_imgLoc + _weather_display + '/cabin'+_dayState+'.gif'">
-				<</if>>
-			<<case "cafe">>
+				<img id="location" @src="_imgLoc + _weather_display + '/cabin'+_dayState+'.png'">
+	-	-	<<case "cafe">>
 				<<if $chef_state gte 9>>
 					<img id="location" @src="_imgLoc + _weather_display + '/cafe_renovated'+_dayState+'.png'">
 				<<elseif $chef_state gte 7>>
@@ -1862,7 +1858,7 @@
 				<img id="location" @src="_imgLoc + _weather_display + '/docks'+_dayState+'.png'">
 			<<case "drain">>
 				<img id="location" @src="_imgLoc + _weather_display + '/drain.gif'">
-			<<case "estate">>
+	--		<<case "estate">>
 				<img id="location" @src="_imgLoc + _weather_display + '/remy_farm'+_dayState+'.png'">
 			<<case "factory">>
 				<<if Time.dayState is "night">>
@@ -1875,11 +1871,7 @@
 			<<case "flats">>
 				<img id="location" @src="_imgLoc + _weather_display + '/flats'+_dayState+'.png'">
 			<<case "forest">>
-				<<if Time.dayState is "night" or Time.dayState is "dawn">>
-					<img id="location" @src="_imgLoc + _weather_display + '/forest'+_dayState+'.png'">
-				<<else>>
-					<img id="location" @src="_imgLoc + _weather_display + '/forest'+_dayStateWithBloodMoon+'.gif'">
-				<</if>>
+				<img id="location" @src="_imgLoc + _weather_display + '/forest'+_dayStateWithBloodMoon+'.gif'">
 			<<case "forest_shop">>
 				<img id="location" @src="_imgLoc + _weather_display + '/forest_shop'+_dayState+'.png'">
 			<<case "home">>
@@ -1892,13 +1884,13 @@
 				<img id="location" @src="_imgLoc + _weather_display + '/kylar_manor'+_dayState+'.png'">
 			<<case "lake">>
 				<img id="location" @src="_imgLoc + _weather_display + '/lake'+_dayStateWithBloodMoon+'.gif'">
-			<<case "lake_ruin">>
+		-	<<case "lake_ruin">>
 				<img id="location" @src="_imgLoc + _weather_display + '/ruins'+_dayStateWithBloodMoon+'.gif'">
 			<<case "landfill">>
 				<img id="location" @src="_imgLoc + _weather_display + '/landfill'+_dayState+'.png'">
 			<<case "meadow">>
 				<img id="location" @src="_imgLoc + _weather_display + '/meadow'+_dayState+'.gif'">
-			<<case "mines">>
+	--		<<case "mines">>
 				<img id="location" @src="_imgLoc + _weather_display + '/underground'+_dayState+'.png'">
 			<<case "moor">>
 				<img id="location" @src="_imgLoc + _weather_display + '/moor'+_dayState+'.gif'">
@@ -1917,11 +1909,7 @@
 			<<case "police_station">>
 				<img id="location" @src="_imgLoc + _weather_display + '/police_station'+_dayState+'.png'">
 			<<case "pound">>
-				<<if Time.dayState is "night">>
-					<img id="location" @src="_imgLoc + _weather_display + '/dog_pound'+_dayState+'.png'">
-				<<else>>
-					<img id="location" @src="_imgLoc + _weather_display + '/dog_pound'+_dayState+'.gif'">
-				<</if>>
+				<img id="location" @src="_imgLoc + _weather_display + '/dog_pound'+_dayState+'.gif'">
 			<<case "pool">>
 				<img id="location" @src="_imgLoc + _weather_display + '/pool'+_dayState+'.gif'">
 			<<case "prison">>
@@ -1959,17 +1947,13 @@
 			<<case "tower" "castle">>
 				<img id="location" @src="_imgLoc + _weather_display + '/tower'+_dayStateWithBloodMoon+'.gif'">
 			<<case "town">>
-				<<if Time.dayState is "dusk">>
-					<img id="location" @src="_imgLoc + _weather_display + '/town'+_dayState+'.png'">
-				<<else>>
-					<img id="location" @src="_imgLoc + _weather_display + '/town'+_dayState+'.gif'">
-				<</if>>
+				<img id="location" @src="_imgLoc + _weather_display + '/town'+_dayState+'.gif'">
 			<<case "underground">>
 				<img id="location" @src="_imgLoc + _weather_display + '/underground'+_dayState+'.png'">
 			<<case "wolf_cave">>
 				<img id="location" @src="_imgLoc + _weather_display + '/wolf_cave'+_dayState+'.png'">
-
-		<</switch>>
+		<</switch>> */
+		<div id="locationOverlay"></div>
 	<<else>>
 		<<switch Time.dayState>>
 			<<case "day">>
diff --git a/img/misc/icon/clothes/gym_shorts.png b/img/misc/icon/clothes/gym_shorts.png
new file mode 100644
index 0000000000000000000000000000000000000000..2d4fcb6c7df45dd36394f0b750edcfd71a0a6f08
Binary files /dev/null and b/img/misc/icon/clothes/gym_shorts.png differ
diff --git a/img/misc/icon/clothes/loose_socks.png b/img/misc/icon/clothes/loose_socks.png
new file mode 100644
index 0000000000000000000000000000000000000000..1af08c2fdc20758e0e446148d7543c0143e91757
Binary files /dev/null and b/img/misc/icon/clothes/loose_socks.png differ
diff --git a/img/misc/icon/clothes/ribbon_tie.png b/img/misc/icon/clothes/ribbon_tie.png
new file mode 100644
index 0000000000000000000000000000000000000000..6577191786653c1271ac73ab7a3ef3acca4286d3
Binary files /dev/null and b/img/misc/icon/clothes/ribbon_tie.png differ
diff --git a/img/misc/icon/clothes/school_vest.png b/img/misc/icon/clothes/school_vest.png
new file mode 100644
index 0000000000000000000000000000000000000000..baf3483a4ad30bd6f1d37bf989f8f5013020adac
Binary files /dev/null and b/img/misc/icon/clothes/school_vest.png differ
diff --git a/img/misc/icon/clothes/school_vest_acc.png b/img/misc/icon/clothes/school_vest_acc.png
new file mode 100644
index 0000000000000000000000000000000000000000..91efb6b70fa2628428282b2ea5198e4c15a72300
Binary files /dev/null and b/img/misc/icon/clothes/school_vest_acc.png differ
diff --git a/img/misc/icon/clothes/shortalls.png b/img/misc/icon/clothes/shortalls.png
new file mode 100644
index 0000000000000000000000000000000000000000..740a76274d0fb8613c8f3322986343ddd6dfe700
Binary files /dev/null and b/img/misc/icon/clothes/shortalls.png differ
diff --git a/img/misc/icon/clothes/shortalls_acc.png b/img/misc/icon/clothes/shortalls_acc.png
new file mode 100644
index 0000000000000000000000000000000000000000..6c0b71477955815b3d1ee0004113fb923b1805d8
Binary files /dev/null and b/img/misc/icon/clothes/shortalls_acc.png differ
diff --git a/img/misc/icon/ticket.png b/img/misc/icon/ticket.png
new file mode 100644
index 0000000000000000000000000000000000000000..419f096c7863f1e93878f4f8f1dfd6d7ef50f695
Binary files /dev/null and b/img/misc/icon/ticket.png differ
diff --git a/img/misc/normal/alex_cottage_dawn.png b/img/misc/normal/alex_cottage_dawn.png
index 05d16ea01dcfa119b57532703cfdfe5f2af4ccb2..fd0bc264f0e40f8879c2fdd82d215b1a7ea175c4 100644
Binary files a/img/misc/normal/alex_cottage_dawn.png and b/img/misc/normal/alex_cottage_dawn.png differ
diff --git a/img/misc/normal/alex_cottage_day.png b/img/misc/normal/alex_cottage_day.png
index bbb9e49b52f8a34330c93765374f69d7b7fc006d..ce6354ea2f5baf2fdddf769d57ba78cc5b733258 100644
Binary files a/img/misc/normal/alex_cottage_day.png and b/img/misc/normal/alex_cottage_day.png differ
diff --git a/img/misc/normal/alex_cottage_dusk.png b/img/misc/normal/alex_cottage_dusk.png
index 7f6989e3f80e546770182dc7c962b524ff2e26bb..8baaad0f1903ced92cc6f4a933e4171d248c5513 100644
Binary files a/img/misc/normal/alex_cottage_dusk.png and b/img/misc/normal/alex_cottage_dusk.png differ
diff --git a/img/misc/normal/alex_cottage_night.png b/img/misc/normal/alex_cottage_night.png
index a74c41cd2ae210b9468667e0d0fb9c1b544780bc..657c4eaf972c7456994cec6dccba1cf132f60f32 100644
Binary files a/img/misc/normal/alex_cottage_night.png and b/img/misc/normal/alex_cottage_night.png differ
diff --git a/img/misc/normal/alex_farm_dawn.png b/img/misc/normal/alex_farm_dawn.png
index 5e5e156c5c544f71ce386842736695412972dd6a..53ff3ad6656f91545f792114a06514023db079df 100644
Binary files a/img/misc/normal/alex_farm_dawn.png and b/img/misc/normal/alex_farm_dawn.png differ
diff --git a/img/misc/normal/alex_farm_day.png b/img/misc/normal/alex_farm_day.png
index 156ac399cd77d57be6b52000a7372268ffab36d7..65be4aeb9a7e4b78854b212ca26cadbd6d09984b 100644
Binary files a/img/misc/normal/alex_farm_day.png and b/img/misc/normal/alex_farm_day.png differ
diff --git a/img/misc/normal/alex_farm_dusk.png b/img/misc/normal/alex_farm_dusk.png
index a9994eb1bae2face38358dcce851368c6a86bfc8..645c21c6d2a6cf69f745823bc373c6f661ca674c 100644
Binary files a/img/misc/normal/alex_farm_dusk.png and b/img/misc/normal/alex_farm_dusk.png differ
diff --git a/img/misc/normal/alex_farm_night.png b/img/misc/normal/alex_farm_night.png
index f5a7762e5f37d0531226376209edf4807b17aaca..ab27f34c7ac92e45de2d648871a20d9d3fd8f1c4 100644
Binary files a/img/misc/normal/alex_farm_night.png and b/img/misc/normal/alex_farm_night.png differ
diff --git a/img/misc/normal/alley_bloodmoon.gif b/img/misc/normal/alley_bloodmoon.gif
index 3fdf1f9cf8f2620b2b307558bc504fec5c947d2d..faa8e86b4ede6eabd5f1db8dc7be8167f7e1916b 100644
Binary files a/img/misc/normal/alley_bloodmoon.gif and b/img/misc/normal/alley_bloodmoon.gif differ
diff --git a/img/misc/normal/alley_dawn.gif b/img/misc/normal/alley_dawn.gif
index 7eca72f90d154f252234327da599418069dea7ae..11298ac4c0eed9791242711f50c0af6f60137f7c 100644
Binary files a/img/misc/normal/alley_dawn.gif and b/img/misc/normal/alley_dawn.gif differ
diff --git a/img/misc/normal/alley_day.gif b/img/misc/normal/alley_day.gif
index 050bd2db49784d32bdec86ac4e6252cbafefc7d3..f25f311159a3f5be34fd45c32e3a48a94b4c60cd 100644
Binary files a/img/misc/normal/alley_day.gif and b/img/misc/normal/alley_day.gif differ
diff --git a/img/misc/normal/alley_dusk.gif b/img/misc/normal/alley_dusk.gif
index 5d96bae12a3d1195512660e34247d8d1f7f160ff..fef4699b0c543b65cc847b83e3e72c5da6a4e89d 100644
Binary files a/img/misc/normal/alley_dusk.gif and b/img/misc/normal/alley_dusk.gif differ
diff --git a/img/misc/normal/alley_night.gif b/img/misc/normal/alley_night.gif
index b5f593001ea38f06baa7e660f312a16f7d791896..780295959baec79a793466161c6765060c1016f9 100644
Binary files a/img/misc/normal/alley_night.gif and b/img/misc/normal/alley_night.gif differ
diff --git a/img/misc/normal/arcade_dawn.png b/img/misc/normal/arcade_dawn.png
index dbbfee8b99123593dd34942ebeb5709e3f0c1a95..cd1f2fe17ec3328626d288b661d381a0b0dc8939 100644
Binary files a/img/misc/normal/arcade_dawn.png and b/img/misc/normal/arcade_dawn.png differ
diff --git a/img/misc/normal/arcade_day.png b/img/misc/normal/arcade_day.png
index 7738149de286e2248a4f128d1d94f0555f5ff8ca..321dded0b3390bf85b049b5268643c94a9765787 100644
Binary files a/img/misc/normal/arcade_day.png and b/img/misc/normal/arcade_day.png differ
diff --git a/img/misc/normal/arcade_dusk.png b/img/misc/normal/arcade_dusk.png
index d88a765c4b37186cf2a5eac6bc951f77c8c50786..321dded0b3390bf85b049b5268643c94a9765787 100644
Binary files a/img/misc/normal/arcade_dusk.png and b/img/misc/normal/arcade_dusk.png differ
diff --git a/img/misc/normal/arcade_night.png b/img/misc/normal/arcade_night.png
index 1a6892af2fe3262f89f7585431668b6f33cfb7fc..d8f77e355b431d98c293373de48022c596eb4025 100644
Binary files a/img/misc/normal/arcade_night.png and b/img/misc/normal/arcade_night.png differ
diff --git a/img/misc/normal/asylum_dawnslow.gif b/img/misc/normal/asylum_dawnslow.gif
index 7cb086c849316008cd168c7e249883a39eaea21d..67748a21363c8a87568bd72e40a9e3045949aed6 100644
Binary files a/img/misc/normal/asylum_dawnslow.gif and b/img/misc/normal/asylum_dawnslow.gif differ
diff --git a/img/misc/normal/asylum_dawnvfast.gif b/img/misc/normal/asylum_dawnvfast.gif
index dbf029476d6fd62228341a5674abf6f5340da18c..c1c583b69d21184d993c43cbde64fb715da007e3 100644
Binary files a/img/misc/normal/asylum_dawnvfast.gif and b/img/misc/normal/asylum_dawnvfast.gif differ
diff --git a/img/misc/normal/asylum_dayslow.gif b/img/misc/normal/asylum_dayslow.gif
index 9e9430f4ec3c483b4d7f6b5071d10cbcf8ac834c..5724ddffe6fee7f375594b094a60f476b7a8517b 100644
Binary files a/img/misc/normal/asylum_dayslow.gif and b/img/misc/normal/asylum_dayslow.gif differ
diff --git a/img/misc/normal/asylum_dayvfast.gif b/img/misc/normal/asylum_dayvfast.gif
index 6340db4c714476a4d17ac55b30070fab0bf4590f..a8dbd189e16b45ee0e4d57c50943a201b336e065 100644
Binary files a/img/misc/normal/asylum_dayvfast.gif and b/img/misc/normal/asylum_dayvfast.gif differ
diff --git a/img/misc/normal/asylum_duskslow.gif b/img/misc/normal/asylum_duskslow.gif
index 262e19dc326c3f9fb56aed41e4005a4b0e7a763a..67748a21363c8a87568bd72e40a9e3045949aed6 100644
Binary files a/img/misc/normal/asylum_duskslow.gif and b/img/misc/normal/asylum_duskslow.gif differ
diff --git a/img/misc/normal/asylum_duskvfast.gif b/img/misc/normal/asylum_duskvfast.gif
index d7cfdba863394ddec2e3e79598d7daa1f74860d0..fc68fe9fbe7922d64204b71636d62ce34ee9eacf 100644
Binary files a/img/misc/normal/asylum_duskvfast.gif and b/img/misc/normal/asylum_duskvfast.gif differ
diff --git a/img/misc/normal/asylum_nightslow.gif b/img/misc/normal/asylum_nightslow.gif
index 97194c30ea2a2dd593a561c7ef1f035412c4f656..8810db489a0756974552b0ed16a5886968a43d7b 100644
Binary files a/img/misc/normal/asylum_nightslow.gif and b/img/misc/normal/asylum_nightslow.gif differ
diff --git a/img/misc/normal/asylum_nightvfast.gif b/img/misc/normal/asylum_nightvfast.gif
index 0fc050187b2a243feceb2963ad96cb7c63fa2bce..012634f44ebbc719d60e9e671de189bb28ca995c 100644
Binary files a/img/misc/normal/asylum_nightvfast.gif and b/img/misc/normal/asylum_nightvfast.gif differ
diff --git a/img/misc/normal/beach_dawn.gif b/img/misc/normal/beach_dawn.gif
index ec43b7f5b614d2679a86bcc5f7aff06acf3ec201..01e9adb93e9d4048f5d42689b6e13fb423759b81 100644
Binary files a/img/misc/normal/beach_dawn.gif and b/img/misc/normal/beach_dawn.gif differ
diff --git a/img/misc/normal/beach_day.gif b/img/misc/normal/beach_day.gif
index cda9f3f14a26866c9987bd9a9e7a395874e41f5b..9ee2e4e150a9e3a726228e10b59dc1f7fd6ffff6 100644
Binary files a/img/misc/normal/beach_day.gif and b/img/misc/normal/beach_day.gif differ
diff --git a/img/misc/normal/beach_dusk.gif b/img/misc/normal/beach_dusk.gif
index d94911812822a362ab47e6c8b8947e7bc20bac67..9ee2e4e150a9e3a726228e10b59dc1f7fd6ffff6 100644
Binary files a/img/misc/normal/beach_dusk.gif and b/img/misc/normal/beach_dusk.gif differ
diff --git a/img/misc/normal/beach_night.gif b/img/misc/normal/beach_night.gif
index 776a781e8a596f8648baacde0633d99440b96c99..5f3cc65d2c2d071101499da88a40a0fc0c602d33 100644
Binary files a/img/misc/normal/beach_night.gif and b/img/misc/normal/beach_night.gif differ
diff --git a/img/misc/normal/boat_dawn.gif b/img/misc/normal/boat_dawn.gif
deleted file mode 100644
index 7b045b7447bcbd20caec28572669896b30db0da3..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/boat_dawn.gif and /dev/null differ
diff --git a/img/misc/normal/boat_day.gif b/img/misc/normal/boat_day.gif
deleted file mode 100644
index 1c176ec3d85e792d9e3dd6c22030d99f76a71928..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/boat_day.gif and /dev/null differ
diff --git a/img/misc/normal/boat_dusk.gif b/img/misc/normal/boat_dusk.gif
deleted file mode 100644
index 3dcd2a52ac6e1823a6c343b1549abec7ae18503c..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/boat_dusk.gif and /dev/null differ
diff --git a/img/misc/normal/boat_night.gif b/img/misc/normal/boat_night.gif
deleted file mode 100644
index 62249ce03b61c52b97e73259411d5ef63ac63971..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/boat_night.gif and /dev/null differ
diff --git a/img/misc/normal/bog_bloodmoon.gif b/img/misc/normal/bog_bloodmoon.gif
new file mode 100644
index 0000000000000000000000000000000000000000..573079ffe08060a2b675d8f26c5b273c1ec36b25
Binary files /dev/null and b/img/misc/normal/bog_bloodmoon.gif differ
diff --git a/img/misc/normal/bog_dawn.gif b/img/misc/normal/bog_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..4c1f5ae00c25f093903f879f7b159617646db53c
Binary files /dev/null and b/img/misc/normal/bog_dawn.gif differ
diff --git a/img/misc/normal/bog_day.gif b/img/misc/normal/bog_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..cc62509c38c261055e6662012b876ffaeedf32ca
Binary files /dev/null and b/img/misc/normal/bog_day.gif differ
diff --git a/img/misc/normal/bog_dusk.gif b/img/misc/normal/bog_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..7534e7dd9234765ce1a2a6c2ef0da707ad1c85d7
Binary files /dev/null and b/img/misc/normal/bog_dusk.gif differ
diff --git a/img/misc/normal/bog_night.gif b/img/misc/normal/bog_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..9d1a18377307c687da97e044a56674998ae1d5f5
Binary files /dev/null and b/img/misc/normal/bog_night.gif differ
diff --git a/img/misc/normal/brothel_dawn.png b/img/misc/normal/brothel_dawn.png
index 26ff003aedf2a97fd3d7a8f209193c5624499b94..767af9caedc52ff8541362cba4b786917bc159b9 100644
Binary files a/img/misc/normal/brothel_dawn.png and b/img/misc/normal/brothel_dawn.png differ
diff --git a/img/misc/normal/brothel_day.png b/img/misc/normal/brothel_day.png
index d32333c48c5ee4b4d3f7b7361e5c68b9d872aba4..77b516034175a0fdd1d115fd7f6b8b9cbfae96a2 100644
Binary files a/img/misc/normal/brothel_day.png and b/img/misc/normal/brothel_day.png differ
diff --git a/img/misc/normal/brothel_dusk.png b/img/misc/normal/brothel_dusk.png
index 951842184801a8c0c7bca0d62aa9b7f668d95175..77b516034175a0fdd1d115fd7f6b8b9cbfae96a2 100644
Binary files a/img/misc/normal/brothel_dusk.png and b/img/misc/normal/brothel_dusk.png differ
diff --git a/img/misc/normal/brothel_night.png b/img/misc/normal/brothel_night.png
index ce6a27be37409b402d591517bd69ace4080479d2..711eaf2b4a024e5242bb07a3c28a773574199a59 100644
Binary files a/img/misc/normal/brothel_night.png and b/img/misc/normal/brothel_night.png differ
diff --git a/img/misc/normal/cabin_dawn.gif b/img/misc/normal/cabin_dawn.gif
deleted file mode 100644
index cd896653259a3c91e2fab3b9f1718c3d22d1da85..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/cabin_dawn.gif and /dev/null differ
diff --git a/img/misc/normal/cabin_dawn.png b/img/misc/normal/cabin_dawn.png
new file mode 100644
index 0000000000000000000000000000000000000000..de6df4fc25c8bb352cd274960bbc55e30cda0483
Binary files /dev/null and b/img/misc/normal/cabin_dawn.png differ
diff --git a/img/misc/normal/cabin_day.gif b/img/misc/normal/cabin_day.gif
deleted file mode 100644
index ffb806917fe9ca19c5ff84910474332d13f138ee..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/cabin_day.gif and /dev/null differ
diff --git a/img/misc/normal/cabin_day.png b/img/misc/normal/cabin_day.png
new file mode 100644
index 0000000000000000000000000000000000000000..8eaeb00de5e8acc772fc63620581b3ec15e2505d
Binary files /dev/null and b/img/misc/normal/cabin_day.png differ
diff --git a/img/misc/normal/cabin_dusk.gif b/img/misc/normal/cabin_dusk.gif
deleted file mode 100644
index de9d743f9b860f6d4d969426ec9d50ec23ed182d..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/cabin_dusk.gif and /dev/null differ
diff --git a/img/misc/normal/cabin_dusk.png b/img/misc/normal/cabin_dusk.png
new file mode 100644
index 0000000000000000000000000000000000000000..002b234ce197ec6879ee3363b4ea4af1e962d159
Binary files /dev/null and b/img/misc/normal/cabin_dusk.png differ
diff --git a/img/misc/normal/cabin_night.gif b/img/misc/normal/cabin_night.gif
deleted file mode 100644
index 1ee90231ffbd1e72690a81f46e711faa66d8db8a..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/cabin_night.gif and /dev/null differ
diff --git a/img/misc/normal/cabin_night.png b/img/misc/normal/cabin_night.png
new file mode 100644
index 0000000000000000000000000000000000000000..0f837bdf2d3455a0c10916a3992245c1eb4c753b
Binary files /dev/null and b/img/misc/normal/cabin_night.png differ
diff --git a/img/misc/normal/cafe_construction_dawn.png b/img/misc/normal/cafe_construction_dawn.png
index 9d4d55ac7af61affdb34a6f4461f76c818f45e26..90507c08f84aac0591341d314f765596ff4ae739 100644
Binary files a/img/misc/normal/cafe_construction_dawn.png and b/img/misc/normal/cafe_construction_dawn.png differ
diff --git a/img/misc/normal/cafe_construction_day.png b/img/misc/normal/cafe_construction_day.png
index a4c151b7c7e0fde520957bf80cff7670600af2d6..bc0fe9b1895f3e0f1f57901d96c6e2a0c76b6ab1 100644
Binary files a/img/misc/normal/cafe_construction_day.png and b/img/misc/normal/cafe_construction_day.png differ
diff --git a/img/misc/normal/cafe_construction_dusk.png b/img/misc/normal/cafe_construction_dusk.png
index ce132fdef2eaa1a22dedc5e515ffcd35bbb47a90..27ee7b2c4ee73da0aa789236b4551ec7f4fa2f4b 100644
Binary files a/img/misc/normal/cafe_construction_dusk.png and b/img/misc/normal/cafe_construction_dusk.png differ
diff --git a/img/misc/normal/cafe_construction_night.png b/img/misc/normal/cafe_construction_night.png
index 564fd21dc96b62430c3add8641e79f3893fdf207..eb6d8f1d0fd7e401b12ce3eb433881606cc6fd77 100644
Binary files a/img/misc/normal/cafe_construction_night.png and b/img/misc/normal/cafe_construction_night.png differ
diff --git a/img/misc/normal/cafe_dawn.png b/img/misc/normal/cafe_dawn.png
index 52663f45e71a843fd3d957ffe6188a35281219d1..cf97e3dfb3edadb8c096c9913e5f884a3d44a391 100644
Binary files a/img/misc/normal/cafe_dawn.png and b/img/misc/normal/cafe_dawn.png differ
diff --git a/img/misc/normal/cafe_day.png b/img/misc/normal/cafe_day.png
index a985e41224dfe1ae61eb08ab49f5698be360ce0e..9f071e99042241d05550cdf721c9863fae40915f 100644
Binary files a/img/misc/normal/cafe_day.png and b/img/misc/normal/cafe_day.png differ
diff --git a/img/misc/normal/cafe_dusk.png b/img/misc/normal/cafe_dusk.png
index adc1ab7e3d10a7fbd9afd77f724857d20e7b23bf..3fd8bd735844f71a4d8e759dbc73b3d10a38748e 100644
Binary files a/img/misc/normal/cafe_dusk.png and b/img/misc/normal/cafe_dusk.png differ
diff --git a/img/misc/normal/cafe_night.png b/img/misc/normal/cafe_night.png
index d147989fc7cf19d74a55198d71b2bfd93a18e1e8..60ea169324f4015468d081eccf6a17891c8e4f0a 100644
Binary files a/img/misc/normal/cafe_night.png and b/img/misc/normal/cafe_night.png differ
diff --git a/img/misc/normal/cafe_renovated_dawn.png b/img/misc/normal/cafe_renovated_dawn.png
index 0cd92d2ef67f64d7ad1845d74361a29ab478e905..aadcc7e63cf6849085ef970660b2e84f682e57dd 100644
Binary files a/img/misc/normal/cafe_renovated_dawn.png and b/img/misc/normal/cafe_renovated_dawn.png differ
diff --git a/img/misc/normal/cafe_renovated_day.png b/img/misc/normal/cafe_renovated_day.png
index 40c4f78ca77a0f2e7b36bcee8d8bb54e578fc3b7..1d851de9ba246e46805414273086afaff755644f 100644
Binary files a/img/misc/normal/cafe_renovated_day.png and b/img/misc/normal/cafe_renovated_day.png differ
diff --git a/img/misc/normal/cafe_renovated_dusk.png b/img/misc/normal/cafe_renovated_dusk.png
index 069a94f73715acdf28eca17d3898fd567707d7aa..f567e71d2fd27604c6e3cfaa51408ca78a1d9ef1 100644
Binary files a/img/misc/normal/cafe_renovated_dusk.png and b/img/misc/normal/cafe_renovated_dusk.png differ
diff --git a/img/misc/normal/cafe_renovated_night.png b/img/misc/normal/cafe_renovated_night.png
index cb835275554817e876a3a1d89176461c2b388a6a..946509f9651fdce79dd9875f12416f011ad3f3df 100644
Binary files a/img/misc/normal/cafe_renovated_night.png and b/img/misc/normal/cafe_renovated_night.png differ
diff --git a/img/misc/normal/canal_dawn.gif b/img/misc/normal/canal_dawn.gif
index 34f880af08026e417fff5ff27fb599cacc18c8b9..40c740268c7bc616bc681b3701aa06b875486c40 100644
Binary files a/img/misc/normal/canal_dawn.gif and b/img/misc/normal/canal_dawn.gif differ
diff --git a/img/misc/normal/canal_day.gif b/img/misc/normal/canal_day.gif
index ecf7f938da26a8b95a046c7dd615ad22ca8ef84c..cc06638a17b3e28374df91bae0c64ee4f6665694 100644
Binary files a/img/misc/normal/canal_day.gif and b/img/misc/normal/canal_day.gif differ
diff --git a/img/misc/normal/canal_dusk.gif b/img/misc/normal/canal_dusk.gif
index 3937842d339d467338d665a51df7d86a044a5844..2dae01de2797ed4377a113221d6bec065ff5b6a2 100644
Binary files a/img/misc/normal/canal_dusk.gif and b/img/misc/normal/canal_dusk.gif differ
diff --git a/img/misc/normal/canal_night.gif b/img/misc/normal/canal_night.gif
index e89939b4897e6d642e130fc6843d1d8456d463bf..9e85d96985ff8a4fa097f2c12164afd0ad1afe81 100644
Binary files a/img/misc/normal/canal_night.gif and b/img/misc/normal/canal_night.gif differ
diff --git a/img/misc/normal/churchyard_dawn.png b/img/misc/normal/churchyard_dawn.png
index a5b2e69ca1cc96cf7582e00b7bb407d9200fe3d7..541a6786e16307aeb073b3abb5e680e2b3056a4a 100644
Binary files a/img/misc/normal/churchyard_dawn.png and b/img/misc/normal/churchyard_dawn.png differ
diff --git a/img/misc/normal/churchyard_day.png b/img/misc/normal/churchyard_day.png
index 4e25b8025173a9ff8f4e804fe049925ee44d49e6..9f5f26e13933bdea205051d5a5d66397a2ebaf6a 100644
Binary files a/img/misc/normal/churchyard_day.png and b/img/misc/normal/churchyard_day.png differ
diff --git a/img/misc/normal/churchyard_dusk.png b/img/misc/normal/churchyard_dusk.png
index c9abe8673eba9428a79c7d04c89d7d187b428ac1..30323a499311c9a3c5476ee579ffa144a245439e 100644
Binary files a/img/misc/normal/churchyard_dusk.png and b/img/misc/normal/churchyard_dusk.png differ
diff --git a/img/misc/normal/churchyard_night.png b/img/misc/normal/churchyard_night.png
index 21b51d4e69795e80bf7a7b67c0cbba3b0a07c653..e055fca59d0a4e1f8a6d510b0f9fdb57d69901a0 100644
Binary files a/img/misc/normal/churchyard_night.png and b/img/misc/normal/churchyard_night.png differ
diff --git a/img/misc/normal/compound_dawn.gif b/img/misc/normal/compound_dawn.gif
index 8829ee29d37b04ae7d2f3bbf08d9cfffe0891d83..2884f4689fe71c0adb03ee4d29fa26ebb5cd7c1d 100644
Binary files a/img/misc/normal/compound_dawn.gif and b/img/misc/normal/compound_dawn.gif differ
diff --git a/img/misc/normal/compound_day.gif b/img/misc/normal/compound_day.gif
index cc18ee2d1982f115e9b067c33aa4bfc43f6739db..a5e2904df9d553def7eb22e5a12c94d4dcac5e50 100644
Binary files a/img/misc/normal/compound_day.gif and b/img/misc/normal/compound_day.gif differ
diff --git a/img/misc/normal/compound_dusk.gif b/img/misc/normal/compound_dusk.gif
index 7336d82b11d2a03e56b5eaeff575e720b28608b0..cc5d8d238d51f3fb465c5e8c1cc6ddd3d19fbf14 100644
Binary files a/img/misc/normal/compound_dusk.gif and b/img/misc/normal/compound_dusk.gif differ
diff --git a/img/misc/normal/compound_night.gif b/img/misc/normal/compound_night.gif
index 9645bca6bbb345f0fabb2fbf836eaf7f3a992d0e..ca1ec46263ae8c306a9c893b812b125956e35249 100644
Binary files a/img/misc/normal/compound_night.gif and b/img/misc/normal/compound_night.gif differ
diff --git a/img/misc/normal/dance_studio_dawn.png b/img/misc/normal/dance_studio_dawn.png
index 5614c788972943bda63d73c9795282942a452291..40ad99e814eecbda6dfcf58c04b5198940169e8e 100644
Binary files a/img/misc/normal/dance_studio_dawn.png and b/img/misc/normal/dance_studio_dawn.png differ
diff --git a/img/misc/normal/dance_studio_day.png b/img/misc/normal/dance_studio_day.png
index 8130030e91bf4cfa8f1dc3fa29aacc2cc96f5907..0adc03c950105ba4c84fa479d992bd649e863a1f 100644
Binary files a/img/misc/normal/dance_studio_day.png and b/img/misc/normal/dance_studio_day.png differ
diff --git a/img/misc/normal/dance_studio_dusk.png b/img/misc/normal/dance_studio_dusk.png
index ddf06a96c16ff10792a8576b6fa77dd7044860cc..0adc03c950105ba4c84fa479d992bd649e863a1f 100644
Binary files a/img/misc/normal/dance_studio_dusk.png and b/img/misc/normal/dance_studio_dusk.png differ
diff --git a/img/misc/normal/dance_studio_night.png b/img/misc/normal/dance_studio_night.png
index a7b7876108acd02e92498b4105d131b01939253b..6c8455d7b5e36eba7769c53ab561dcb17e6f5e42 100644
Binary files a/img/misc/normal/dance_studio_night.png and b/img/misc/normal/dance_studio_night.png differ
diff --git a/img/misc/normal/dilapidated_shop_dawn.png b/img/misc/normal/dilapidated_shop_dawn.png
index dfec9e2854dc295827a7b5f03d4e6307beb1762b..58dfb36b17d200e5c0ec3fedf4c57e222fa22d6c 100644
Binary files a/img/misc/normal/dilapidated_shop_dawn.png and b/img/misc/normal/dilapidated_shop_dawn.png differ
diff --git a/img/misc/normal/dilapidated_shop_day.png b/img/misc/normal/dilapidated_shop_day.png
index 08193ca53ef4eb7226c75ea923339272480e2a50..3d3f3cf9d3a314f3c77cebb73741a8d51110329f 100644
Binary files a/img/misc/normal/dilapidated_shop_day.png and b/img/misc/normal/dilapidated_shop_day.png differ
diff --git a/img/misc/normal/dilapidated_shop_dusk.png b/img/misc/normal/dilapidated_shop_dusk.png
index 6fbe2581c2e4f98e644034e2a29de7a4f5f44cd9..f6eb060197c1c7d74448b47a7378b01ffd9f56f5 100644
Binary files a/img/misc/normal/dilapidated_shop_dusk.png and b/img/misc/normal/dilapidated_shop_dusk.png differ
diff --git a/img/misc/normal/dilapidated_shop_night.png b/img/misc/normal/dilapidated_shop_night.png
index 732df85fd0e377828d1f2e8b91c09b9c79a206c3..5e22b468ecf03241d4d31de13fb9c92f5b115939 100644
Binary files a/img/misc/normal/dilapidated_shop_night.png and b/img/misc/normal/dilapidated_shop_night.png differ
diff --git a/img/misc/normal/docks_dawn.png b/img/misc/normal/docks_dawn.png
index 881638534fd4d4f9c7740c2f350dbbecb9e33ebb..2c6eabda6aa51a84b0e800877848ef4d50590896 100644
Binary files a/img/misc/normal/docks_dawn.png and b/img/misc/normal/docks_dawn.png differ
diff --git a/img/misc/normal/docks_day.png b/img/misc/normal/docks_day.png
index a020d5859d9186070b26bac871848f48862ea626..8762280397abbfb7f8b263350e711c561077ff30 100644
Binary files a/img/misc/normal/docks_day.png and b/img/misc/normal/docks_day.png differ
diff --git a/img/misc/normal/docks_dusk.png b/img/misc/normal/docks_dusk.png
index f78c567a77e3783fda4f1e4305b4b3b248001683..616e979869bb7c6f3e5db5fa5fc2cabc590b093f 100644
Binary files a/img/misc/normal/docks_dusk.png and b/img/misc/normal/docks_dusk.png differ
diff --git a/img/misc/normal/docks_night.png b/img/misc/normal/docks_night.png
index 3055a9c05240609aff0022e8008ede134cecd85a..0d33ef564b8ddb939f89c19b60365b6f46765389 100644
Binary files a/img/misc/normal/docks_night.png and b/img/misc/normal/docks_night.png differ
diff --git a/img/misc/normal/dog_pound_dawn.gif b/img/misc/normal/dog_pound_dawn.gif
deleted file mode 100644
index d7fc3e0892905ea129b978b7a298f0b8e401f84c..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/dog_pound_dawn.gif and /dev/null differ
diff --git a/img/misc/normal/dog_pound_day.gif b/img/misc/normal/dog_pound_day.gif
deleted file mode 100644
index dac5949885b0dbeedf1288fdf6d86800cffc89d4..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/dog_pound_day.gif and /dev/null differ
diff --git a/img/misc/normal/dog_pound_dusk.gif b/img/misc/normal/dog_pound_dusk.gif
deleted file mode 100644
index f7fdb889c0612ccfb93655d540d6f6475d7223ca..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/dog_pound_dusk.gif and /dev/null differ
diff --git a/img/misc/normal/dog_pound_night.png b/img/misc/normal/dog_pound_night.png
deleted file mode 100644
index 20537fb9b62967a6a0672d99cb1064e668aa6274..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/dog_pound_night.png and /dev/null differ
diff --git a/img/misc/normal/estate_dawn.png b/img/misc/normal/estate_dawn.png
new file mode 100644
index 0000000000000000000000000000000000000000..febb629f14bbac9fc4d9e4187c580ab3bf457a46
Binary files /dev/null and b/img/misc/normal/estate_dawn.png differ
diff --git a/img/misc/normal/estate_day.png b/img/misc/normal/estate_day.png
new file mode 100644
index 0000000000000000000000000000000000000000..f267204ee4ca36106da48e3e3d95634259e5d571
Binary files /dev/null and b/img/misc/normal/estate_day.png differ
diff --git a/img/misc/normal/estate_dusk.png b/img/misc/normal/estate_dusk.png
new file mode 100644
index 0000000000000000000000000000000000000000..335c8b738fd3ab1aa09e957a8984d162db3974ea
Binary files /dev/null and b/img/misc/normal/estate_dusk.png differ
diff --git a/img/misc/normal/estate_night.png b/img/misc/normal/estate_night.png
new file mode 100644
index 0000000000000000000000000000000000000000..43be81b06496037f4b87230b3b499ce83a3cf158
Binary files /dev/null and b/img/misc/normal/estate_night.png differ
diff --git a/img/misc/normal/factory_dawn.gif b/img/misc/normal/factory_dawn.gif
index 23ce23251af9cf750967313a00898aaed8fa71be..a2061f783979c034d0bf2e75dc38f3b67b7b14e3 100644
Binary files a/img/misc/normal/factory_dawn.gif and b/img/misc/normal/factory_dawn.gif differ
diff --git a/img/misc/normal/factory_day.gif b/img/misc/normal/factory_day.gif
index 8ede6da505ef64fb5f842d0a2304768d3627ac61..8105ddd8ac282586383f0edea12557279c1cd9b6 100644
Binary files a/img/misc/normal/factory_day.gif and b/img/misc/normal/factory_day.gif differ
diff --git a/img/misc/normal/factory_dusk.gif b/img/misc/normal/factory_dusk.gif
index 019931fbd1089a6b0af5f4ec43cebbfc2c115f53..932c5584b12968218cbf0b0e6316e2b9786e10e2 100644
Binary files a/img/misc/normal/factory_dusk.gif and b/img/misc/normal/factory_dusk.gif differ
diff --git a/img/misc/normal/factory_night.gif b/img/misc/normal/factory_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..71f4303ebba525e5f8f592e6d4666d13d93e8327
Binary files /dev/null and b/img/misc/normal/factory_night.gif differ
diff --git a/img/misc/normal/factory_night.png b/img/misc/normal/factory_night.png
deleted file mode 100644
index a07132e4f697aa411e723c1d7eee14b3b4b53186..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/factory_night.png and /dev/null differ
diff --git a/img/misc/normal/farm_dawn.png b/img/misc/normal/farm_dawn.png
index c7f2cfdfbef4c54ba0ad5de8b2343fde0ee39b55..052d204feac4cc2cdd4af50a8643f1289873140b 100644
Binary files a/img/misc/normal/farm_dawn.png and b/img/misc/normal/farm_dawn.png differ
diff --git a/img/misc/normal/farm_day.png b/img/misc/normal/farm_day.png
index e34c76fe8a0136fbf1f42b4edd861ad77ce22679..f7c504558350712589bf4fa47a13c7c099d9fabe 100644
Binary files a/img/misc/normal/farm_day.png and b/img/misc/normal/farm_day.png differ
diff --git a/img/misc/normal/farm_dusk.png b/img/misc/normal/farm_dusk.png
index df6829731a15560f201dfd2215b2653e24e5a330..bda7e9c4a37a4baac28d279cecb32cc1df4d86e0 100644
Binary files a/img/misc/normal/farm_dusk.png and b/img/misc/normal/farm_dusk.png differ
diff --git a/img/misc/normal/farm_night.png b/img/misc/normal/farm_night.png
index b3cbc8bffa1aa979f76a5f7471e2576e962caa25..20acb2fe72ea4ae31902133171af05ab8cc70e88 100644
Binary files a/img/misc/normal/farm_night.png and b/img/misc/normal/farm_night.png differ
diff --git a/img/misc/normal/flats_dawn.png b/img/misc/normal/flats_dawn.png
index e6868be04d1528613dc274ce8f1ce344ba83430e..35fdfd47dcccdb9edaab6c7137e7a8485cc54b8b 100644
Binary files a/img/misc/normal/flats_dawn.png and b/img/misc/normal/flats_dawn.png differ
diff --git a/img/misc/normal/flats_day.png b/img/misc/normal/flats_day.png
index 0b525313451b4c00f7d7c40d57accaaf81f28f1c..8b8094afe57e7996fdd355812124f9b21865bcf5 100644
Binary files a/img/misc/normal/flats_day.png and b/img/misc/normal/flats_day.png differ
diff --git a/img/misc/normal/flats_dusk.png b/img/misc/normal/flats_dusk.png
index 644ea6324e6d181e65d3cf70ca93923ece593c5c..40bff954fe60323085cc18e166a755897d990103 100644
Binary files a/img/misc/normal/flats_dusk.png and b/img/misc/normal/flats_dusk.png differ
diff --git a/img/misc/normal/flats_night.png b/img/misc/normal/flats_night.png
index c49685d735d693e27f6495a4161de5fbd02a0ddf..761b65d9cc38562f51f43a315724076127cc5d76 100644
Binary files a/img/misc/normal/flats_night.png and b/img/misc/normal/flats_night.png differ
diff --git a/img/misc/normal/forest_bloodmoon.gif b/img/misc/normal/forest_bloodmoon.gif
index 855a091ae46166d378dee2c192c004f07e15278e..3ff4710e88751e55970e1b51ee47ecb5c9cabf8f 100644
Binary files a/img/misc/normal/forest_bloodmoon.gif and b/img/misc/normal/forest_bloodmoon.gif differ
diff --git a/img/misc/normal/forest_dawn.gif b/img/misc/normal/forest_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..85f74a2a364350b107a19a971c4c558efc946fe1
Binary files /dev/null and b/img/misc/normal/forest_dawn.gif differ
diff --git a/img/misc/normal/forest_dawn.png b/img/misc/normal/forest_dawn.png
deleted file mode 100644
index 34ef58528b3417ef3bba218df71c98e960696911..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/forest_dawn.png and /dev/null differ
diff --git a/img/misc/normal/forest_day.gif b/img/misc/normal/forest_day.gif
index 5877f878e21df9cc2482f44b0bd16297faa649d7..4a163a0458592ebfbc5d4fbb9177c046f028ce4b 100644
Binary files a/img/misc/normal/forest_day.gif and b/img/misc/normal/forest_day.gif differ
diff --git a/img/misc/normal/forest_dusk.gif b/img/misc/normal/forest_dusk.gif
index 3e6e91378b732acec465c1d3e96e873e37bdc2ad..f338621cc48d0ef53ba1abdf9edd2d6733ef9d05 100644
Binary files a/img/misc/normal/forest_dusk.gif and b/img/misc/normal/forest_dusk.gif differ
diff --git a/img/misc/normal/forest_night.gif b/img/misc/normal/forest_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..b37bb8fc9140c2034da7e0f8af2f496361f136de
Binary files /dev/null and b/img/misc/normal/forest_night.gif differ
diff --git a/img/misc/normal/forest_night.png b/img/misc/normal/forest_night.png
deleted file mode 100644
index 30866fe3316b49cd6a65c1d9c263ddce8764996c..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/forest_night.png and /dev/null differ
diff --git a/img/misc/normal/forest_shop_dawn.png b/img/misc/normal/forest_shop_dawn.png
index b0dc56615720588cf05cb4ef27fca79ee7d78e3e..c67c684770150fa4097b0f330344e691706c71fb 100644
Binary files a/img/misc/normal/forest_shop_dawn.png and b/img/misc/normal/forest_shop_dawn.png differ
diff --git a/img/misc/normal/forest_shop_day.png b/img/misc/normal/forest_shop_day.png
index e7dfd9614901c1ce9d9b1a11725fdf07ac15791d..9f4c2c753aae109df051c30e1318d2dc56316608 100644
Binary files a/img/misc/normal/forest_shop_day.png and b/img/misc/normal/forest_shop_day.png differ
diff --git a/img/misc/normal/forest_shop_dusk.png b/img/misc/normal/forest_shop_dusk.png
index a75cb8abfabaa10f955d0b6bd87c2320b37a7f61..be0031dd887276ec2db8c4002342e5cfcd755544 100644
Binary files a/img/misc/normal/forest_shop_dusk.png and b/img/misc/normal/forest_shop_dusk.png differ
diff --git a/img/misc/normal/forest_shop_night.png b/img/misc/normal/forest_shop_night.png
index cc1dd0a0cc61ab326c27fb0f51b25711e4d5f0a9..db9a2a62526eaa9eaaded60cc2e207a7663f8d91 100644
Binary files a/img/misc/normal/forest_shop_night.png and b/img/misc/normal/forest_shop_night.png differ
diff --git a/img/misc/normal/home_bloodmoon.gif b/img/misc/normal/home_bloodmoon.gif
index 81845714d7bf32a3d899bfc461b1a95be271a4c3..a259fb870a804baa3108fbebaa13d2336deca1fc 100644
Binary files a/img/misc/normal/home_bloodmoon.gif and b/img/misc/normal/home_bloodmoon.gif differ
diff --git a/img/misc/normal/home_dawn.gif b/img/misc/normal/home_dawn.gif
index 0caf7fa5ad19557823ad83dbd40fe455bbcff13e..e17b6ce634353c8035413fdabb977eed52d699d8 100644
Binary files a/img/misc/normal/home_dawn.gif and b/img/misc/normal/home_dawn.gif differ
diff --git a/img/misc/normal/home_day.gif b/img/misc/normal/home_day.gif
index 22e4fa8e3aba13fcc7e1bdeaf34d3a80902e5d58..a2fa76cc7390c1f9bef1e6d020abe6142c4138a2 100644
Binary files a/img/misc/normal/home_day.gif and b/img/misc/normal/home_day.gif differ
diff --git a/img/misc/normal/home_dusk.gif b/img/misc/normal/home_dusk.gif
index 7936a4cef33040e274fcaf41be914f86459391a3..e17b6ce634353c8035413fdabb977eed52d699d8 100644
Binary files a/img/misc/normal/home_dusk.gif and b/img/misc/normal/home_dusk.gif differ
diff --git a/img/misc/normal/home_night.gif b/img/misc/normal/home_night.gif
index 289902060c3b1989af065ca4379bce42903e065e..58839efe0fb0aff4c4e080fc054c464dc15f3535 100644
Binary files a/img/misc/normal/home_night.gif and b/img/misc/normal/home_night.gif differ
diff --git a/img/misc/normal/hospital_dawn.png b/img/misc/normal/hospital_dawn.png
index 47812d762664d2a9c7e967373cd80f82efec4c9a..b44c426c89110c7fc4d2064adacdc0f0cc9cccd2 100644
Binary files a/img/misc/normal/hospital_dawn.png and b/img/misc/normal/hospital_dawn.png differ
diff --git a/img/misc/normal/hospital_day.png b/img/misc/normal/hospital_day.png
index 7a6d8f0f1e7ef0a4c04bab394629dc03d03c8c7e..b44c426c89110c7fc4d2064adacdc0f0cc9cccd2 100644
Binary files a/img/misc/normal/hospital_day.png and b/img/misc/normal/hospital_day.png differ
diff --git a/img/misc/normal/hospital_dusk.png b/img/misc/normal/hospital_dusk.png
index 3b3155b3364c500fb98eb1b2566c2a100a4f4f6c..b44c426c89110c7fc4d2064adacdc0f0cc9cccd2 100644
Binary files a/img/misc/normal/hospital_dusk.png and b/img/misc/normal/hospital_dusk.png differ
diff --git a/img/misc/normal/hospital_night.png b/img/misc/normal/hospital_night.png
index 9a5e81d14aa323e2682d786ef735c503f16af253..210d103f27a63bebb432f97d6b318dbff9a6afd4 100644
Binary files a/img/misc/normal/hospital_night.png and b/img/misc/normal/hospital_night.png differ
diff --git a/img/misc/normal/indust_alley_bloodmoon.gif b/img/misc/normal/indust_alley_bloodmoon.gif
index 52a91d78b6cf834a9cf0f7be45daa04b01b2a3d6..5c5eca351aac8e44562d42ffd05480716b7007ba 100644
Binary files a/img/misc/normal/indust_alley_bloodmoon.gif and b/img/misc/normal/indust_alley_bloodmoon.gif differ
diff --git a/img/misc/normal/indust_alley_dawn.gif b/img/misc/normal/indust_alley_dawn.gif
index 2c97e0313961d9f82b7fabb6c91864812b0fdeae..97d44c8630f48c9bcb10ec5635a5092d566e3dd9 100644
Binary files a/img/misc/normal/indust_alley_dawn.gif and b/img/misc/normal/indust_alley_dawn.gif differ
diff --git a/img/misc/normal/indust_alley_day.gif b/img/misc/normal/indust_alley_day.gif
index 1792d9ae496a29c282fbe964a36372a210497f72..bf5d8bae06d78ce6fc5b6ea6a53771388b874ab5 100644
Binary files a/img/misc/normal/indust_alley_day.gif and b/img/misc/normal/indust_alley_day.gif differ
diff --git a/img/misc/normal/indust_alley_dusk.gif b/img/misc/normal/indust_alley_dusk.gif
index fadf6574407e98048589f099fc9902391b87ab36..cb75d9127b6d20baf202d8dbe13920cb8ec50d0f 100644
Binary files a/img/misc/normal/indust_alley_dusk.gif and b/img/misc/normal/indust_alley_dusk.gif differ
diff --git a/img/misc/normal/indust_alley_night.gif b/img/misc/normal/indust_alley_night.gif
index db2907c70d2bccd377e557ac56d3de7fc2a195eb..c704ea85c1aff6e54de53f0c32c674134f992f21 100644
Binary files a/img/misc/normal/indust_alley_night.gif and b/img/misc/normal/indust_alley_night.gif differ
diff --git a/img/misc/normal/island_dawn.gif b/img/misc/normal/island_dawn.gif
index d4809eb9c4402a90496b18c3061c1f569e2a1a66..2f3b5b125f81297dc09e5b1847c79027bbb0da91 100644
Binary files a/img/misc/normal/island_dawn.gif and b/img/misc/normal/island_dawn.gif differ
diff --git a/img/misc/normal/island_day.gif b/img/misc/normal/island_day.gif
index 2e736128493684de35b9612b5494355daa6ed032..2f3b5b125f81297dc09e5b1847c79027bbb0da91 100644
Binary files a/img/misc/normal/island_day.gif and b/img/misc/normal/island_day.gif differ
diff --git a/img/misc/normal/island_dusk.gif b/img/misc/normal/island_dusk.gif
index 4129558e202c061ffa2b8f1548122103a7d6730e..6f1afc1e362832e0af0f506116cf4b413573d6fa 100644
Binary files a/img/misc/normal/island_dusk.gif and b/img/misc/normal/island_dusk.gif differ
diff --git a/img/misc/normal/island_night.gif b/img/misc/normal/island_night.gif
index 4c45ed54126cb86aa4e6473bed07293931afdd06..2a0b44ec73982efa3c92a95f6b7f3b0e85d12fa0 100644
Binary files a/img/misc/normal/island_night.gif and b/img/misc/normal/island_night.gif differ
diff --git a/img/misc/normal/kylar_manor_dawn.png b/img/misc/normal/kylar_manor_dawn.png
index aba996a72224614af238c6fb6a527ff9b2958edc..92cc706d5a07cf0f60c4dacdd54102cc02d01bf6 100644
Binary files a/img/misc/normal/kylar_manor_dawn.png and b/img/misc/normal/kylar_manor_dawn.png differ
diff --git a/img/misc/normal/kylar_manor_day.png b/img/misc/normal/kylar_manor_day.png
index 66685d809f63448d8cc75f427155a0fcb131d6dc..ebaed173c2f2b426949042f82f4e79c064735656 100644
Binary files a/img/misc/normal/kylar_manor_day.png and b/img/misc/normal/kylar_manor_day.png differ
diff --git a/img/misc/normal/kylar_manor_dusk.png b/img/misc/normal/kylar_manor_dusk.png
index 792127c8275d8c0af0682b11a5c5f9cc5a21332b..eb05b412414657b01321d6481e1feadb60af5528 100644
Binary files a/img/misc/normal/kylar_manor_dusk.png and b/img/misc/normal/kylar_manor_dusk.png differ
diff --git a/img/misc/normal/kylar_manor_night.png b/img/misc/normal/kylar_manor_night.png
index 65a18533011d287431d79726312a3bdac8dfe998..421881452d7de10804e46ef4a71fc04fbc83873d 100644
Binary files a/img/misc/normal/kylar_manor_night.png and b/img/misc/normal/kylar_manor_night.png differ
diff --git a/img/misc/normal/lake_bloodmoon.gif b/img/misc/normal/lake_bloodmoon.gif
index 1806f7d59101cffff99b4cb4e627640444607d03..bbe64478d3f4293769d304cbfe4cd9e46be4cad9 100644
Binary files a/img/misc/normal/lake_bloodmoon.gif and b/img/misc/normal/lake_bloodmoon.gif differ
diff --git a/img/misc/normal/lake_dawn.gif b/img/misc/normal/lake_dawn.gif
index 8de375d3a679a89c9c64033a28d41cb30f561982..9248c583c28f7ec4b42ea1ece6e91b5e04e8c9ff 100644
Binary files a/img/misc/normal/lake_dawn.gif and b/img/misc/normal/lake_dawn.gif differ
diff --git a/img/misc/normal/lake_day.gif b/img/misc/normal/lake_day.gif
index d985522f2e877dac08d65063a460bcb408cc7cc6..b41ea96ac678ddd9fa78b84ce6628d02044d5452 100644
Binary files a/img/misc/normal/lake_day.gif and b/img/misc/normal/lake_day.gif differ
diff --git a/img/misc/normal/lake_dusk.gif b/img/misc/normal/lake_dusk.gif
index c57d6bebd7786d2c488ffa879dd9da464b4b5546..009a0e007eeddeeafcb8ae0e077c3244e91fc0a9 100644
Binary files a/img/misc/normal/lake_dusk.gif and b/img/misc/normal/lake_dusk.gif differ
diff --git a/img/misc/normal/lake_night.gif b/img/misc/normal/lake_night.gif
index f442a6649a33e139437a12bbd7628f9802e47aae..f226799e0612663014e33a136e33b9cb3b6f5528 100644
Binary files a/img/misc/normal/lake_night.gif and b/img/misc/normal/lake_night.gif differ
diff --git a/img/misc/normal/lake_ruin_bloodmoon.gif b/img/misc/normal/lake_ruin_bloodmoon.gif
new file mode 100644
index 0000000000000000000000000000000000000000..2588378f01b514ca6cedde8b6c7060531530c0b9
Binary files /dev/null and b/img/misc/normal/lake_ruin_bloodmoon.gif differ
diff --git a/img/misc/normal/lake_ruin_dawn.gif b/img/misc/normal/lake_ruin_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..aac17988d0d76cecaaca74d29537b5efef4d3fea
Binary files /dev/null and b/img/misc/normal/lake_ruin_dawn.gif differ
diff --git a/img/misc/normal/lake_ruin_day.gif b/img/misc/normal/lake_ruin_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..adb3b8a65318fcc5633f0b9b7eabb1206e8076f7
Binary files /dev/null and b/img/misc/normal/lake_ruin_day.gif differ
diff --git a/img/misc/normal/lake_ruin_dusk.gif b/img/misc/normal/lake_ruin_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..f8b264445ac46bd29d2b6210a3c4fc0b4ab096ae
Binary files /dev/null and b/img/misc/normal/lake_ruin_dusk.gif differ
diff --git a/img/misc/normal/lake_ruin_night.gif b/img/misc/normal/lake_ruin_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..164e9d45a69eca8aebd7e50b94439e38313eb55a
Binary files /dev/null and b/img/misc/normal/lake_ruin_night.gif differ
diff --git a/img/misc/normal/landfill_dawn.png b/img/misc/normal/landfill_dawn.png
index 2c23400ccd742596043479259d778ff496c1011f..e10baf8c3d73201b753c4ae36217be3600133bd0 100644
Binary files a/img/misc/normal/landfill_dawn.png and b/img/misc/normal/landfill_dawn.png differ
diff --git a/img/misc/normal/landfill_day.png b/img/misc/normal/landfill_day.png
index 569b3c225672ca3127f8d0e9d2c2dd428a3fda43..ddc6cbd35aae159ddf49471a875fca34d5afb70c 100644
Binary files a/img/misc/normal/landfill_day.png and b/img/misc/normal/landfill_day.png differ
diff --git a/img/misc/normal/landfill_dusk.png b/img/misc/normal/landfill_dusk.png
index 367707115ae0af7134c5c8b5a6a25b00bcee8a13..7a0634803b0539989cab50f1f8e05225b54b19c1 100644
Binary files a/img/misc/normal/landfill_dusk.png and b/img/misc/normal/landfill_dusk.png differ
diff --git a/img/misc/normal/landfill_night.png b/img/misc/normal/landfill_night.png
index 0eb02d371bd9a08c001e24b153898fd8dffc26d6..cd923b1c29875356ad5ec914b0dcc8a7efaaf31d 100644
Binary files a/img/misc/normal/landfill_night.png and b/img/misc/normal/landfill_night.png differ
diff --git a/img/misc/normal/meadow_dawn.gif b/img/misc/normal/meadow_dawn.gif
index 0bf6d2b6cc88473dfb3ad05e2b86fc7fd3b18e46..68e46e7f7cb16424aa3e2f21421cd40574e62086 100644
Binary files a/img/misc/normal/meadow_dawn.gif and b/img/misc/normal/meadow_dawn.gif differ
diff --git a/img/misc/normal/meadow_day.gif b/img/misc/normal/meadow_day.gif
index 8c4a13d7cfb7fc26dacac1b778e151cc65021fe6..68e46e7f7cb16424aa3e2f21421cd40574e62086 100644
Binary files a/img/misc/normal/meadow_day.gif and b/img/misc/normal/meadow_day.gif differ
diff --git a/img/misc/normal/meadow_dusk.gif b/img/misc/normal/meadow_dusk.gif
index 98009e8638c7e7a8d93cf05f0b57d6e43fdd3ae3..fa9b5e95f2ece88d7fc067567c06e1bcf332ffc3 100644
Binary files a/img/misc/normal/meadow_dusk.gif and b/img/misc/normal/meadow_dusk.gif differ
diff --git a/img/misc/normal/meadow_night.gif b/img/misc/normal/meadow_night.gif
index 97ce8437cb08d5426926368009980b9409fb0f00..46bed3589129ae62d3e20614d887a1340d41b7f1 100644
Binary files a/img/misc/normal/meadow_night.gif and b/img/misc/normal/meadow_night.gif differ
diff --git a/img/misc/normal/mines_dawn.png b/img/misc/normal/mines_dawn.png
new file mode 100644
index 0000000000000000000000000000000000000000..709f60c28ef51a8bede8ab79fb40cb70433d2de9
Binary files /dev/null and b/img/misc/normal/mines_dawn.png differ
diff --git a/img/misc/normal/mines_day.png b/img/misc/normal/mines_day.png
new file mode 100644
index 0000000000000000000000000000000000000000..ecc4cd829b4ea9b896495bfc2db940711c450a09
Binary files /dev/null and b/img/misc/normal/mines_day.png differ
diff --git a/img/misc/normal/mines_dusk.png b/img/misc/normal/mines_dusk.png
new file mode 100644
index 0000000000000000000000000000000000000000..49fc7823e87e81a3516f51c082ee1e0ab54e7cae
Binary files /dev/null and b/img/misc/normal/mines_dusk.png differ
diff --git a/img/misc/normal/mines_night.png b/img/misc/normal/mines_night.png
new file mode 100644
index 0000000000000000000000000000000000000000..f0e1ed7ea8ddb0b647faedc4128ff18123637abc
Binary files /dev/null and b/img/misc/normal/mines_night.png differ
diff --git a/img/misc/normal/moor_dawn.gif b/img/misc/normal/moor_dawn.gif
index d03a4d4ed5b86752fd2ea2db82dc5c97e96b8a2d..b6d98b34ea06e689081b1a0fdd277623780398b2 100644
Binary files a/img/misc/normal/moor_dawn.gif and b/img/misc/normal/moor_dawn.gif differ
diff --git a/img/misc/normal/moor_day.gif b/img/misc/normal/moor_day.gif
index 3ce6e617e44eb332e5e99a71c1eb04e3690a4901..8e33420ab73eeaceb5a4226431c29553ec19b2b4 100644
Binary files a/img/misc/normal/moor_day.gif and b/img/misc/normal/moor_day.gif differ
diff --git a/img/misc/normal/moor_dusk.gif b/img/misc/normal/moor_dusk.gif
index 9d8719e366f8bd37b2940897be25a29b61bde72e..3e85602ae97591e4e56a993d76f7bd7dcd66718c 100644
Binary files a/img/misc/normal/moor_dusk.gif and b/img/misc/normal/moor_dusk.gif differ
diff --git a/img/misc/normal/moor_night.gif b/img/misc/normal/moor_night.gif
index 5e35651864fbafd6656ec46724d97133885a2662..46f71245b170c43199c8fe7803410bc5cd618697 100644
Binary files a/img/misc/normal/moor_night.gif and b/img/misc/normal/moor_night.gif differ
diff --git a/img/misc/normal/museum_dawn.png b/img/misc/normal/museum_dawn.png
index 87ae86968f65dd8974e1b2b73f8547995cfefb15..adb5c32609991917a95a31ba248246a526ad67a2 100644
Binary files a/img/misc/normal/museum_dawn.png and b/img/misc/normal/museum_dawn.png differ
diff --git a/img/misc/normal/museum_day.png b/img/misc/normal/museum_day.png
index 4eae6eb2cd16ea11f9d8e260240c8bcacf73ad7c..3b0f0f34c91319c4afabd5d31e61e11296dd8248 100644
Binary files a/img/misc/normal/museum_day.png and b/img/misc/normal/museum_day.png differ
diff --git a/img/misc/normal/museum_dusk.png b/img/misc/normal/museum_dusk.png
index dae1f016a77dcc8159d02eb776f794d72bbefab0..92f493666d685916fd8dac539c555dd6f3ba281d 100644
Binary files a/img/misc/normal/museum_dusk.png and b/img/misc/normal/museum_dusk.png differ
diff --git a/img/misc/normal/museum_night.png b/img/misc/normal/museum_night.png
index 2a802ea6015ebb172e9fc4ebea729c8167e2aca6..ef124d6f7603b057d9148197fa550a6f2f2c725e 100644
Binary files a/img/misc/normal/museum_night.png and b/img/misc/normal/museum_night.png differ
diff --git a/img/misc/normal/night_monster_lair_dawn.gif b/img/misc/normal/night_monster_lair_dawn.gif
index 7b105974b0add227f408231bc3c90ef81e80e910..7a7ae8a760f0958b1636ca6e69fdf585eb3c9375 100644
Binary files a/img/misc/normal/night_monster_lair_dawn.gif and b/img/misc/normal/night_monster_lair_dawn.gif differ
diff --git a/img/misc/normal/night_monster_lair_day.gif b/img/misc/normal/night_monster_lair_day.gif
index 0a9971a3445b1481ec13640832202e41cb0d63f8..f4ea80fbf0954622b7768dc914ddee7faa976e7c 100644
Binary files a/img/misc/normal/night_monster_lair_day.gif and b/img/misc/normal/night_monster_lair_day.gif differ
diff --git a/img/misc/normal/night_monster_lair_dusk.gif b/img/misc/normal/night_monster_lair_dusk.gif
index 0e1ca54e0a1e6afed8707c43cc8662873577cad4..5dfa7479820caa1461227205cc821a0a3dd07d3b 100644
Binary files a/img/misc/normal/night_monster_lair_dusk.gif and b/img/misc/normal/night_monster_lair_dusk.gif differ
diff --git a/img/misc/normal/night_monster_lair_night.gif b/img/misc/normal/night_monster_lair_night.gif
index 264b883772d30b03d235eda1e878c575552c5382..6e15de8c83ebec41f48b43a891afcafd294211ed 100644
Binary files a/img/misc/normal/night_monster_lair_night.gif and b/img/misc/normal/night_monster_lair_night.gif differ
diff --git a/img/misc/normal/ocean_dawn.gif b/img/misc/normal/ocean_dawn.gif
deleted file mode 100644
index 12493afd0caa4e0968b9c8baba19c51ca308a536..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/ocean_dawn.gif and /dev/null differ
diff --git a/img/misc/normal/ocean_day.gif b/img/misc/normal/ocean_day.gif
deleted file mode 100644
index a3f67c595e0e860df970121b4ac512888c73a2bc..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/ocean_day.gif and /dev/null differ
diff --git a/img/misc/normal/ocean_dusk.gif b/img/misc/normal/ocean_dusk.gif
deleted file mode 100644
index 954ce35cc8f6e58ff5f6249f3f041cd7a7b59559..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/ocean_dusk.gif and /dev/null differ
diff --git a/img/misc/normal/ocean_night.gif b/img/misc/normal/ocean_night.gif
deleted file mode 100644
index a568bacc709952117c6196058aac68f661a93aaa..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/ocean_night.gif and /dev/null differ
diff --git a/img/misc/normal/office_building_dawn.png b/img/misc/normal/office_building_dawn.png
new file mode 100644
index 0000000000000000000000000000000000000000..0b4c0dd23e1c8092d81ee3013cae8b6db8d8a843
Binary files /dev/null and b/img/misc/normal/office_building_dawn.png differ
diff --git a/img/misc/normal/office_building_day.png b/img/misc/normal/office_building_day.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e62ace2b21dfc2598850269597789fff363fa7a
Binary files /dev/null and b/img/misc/normal/office_building_day.png differ
diff --git a/img/misc/normal/office_building_dusk.png b/img/misc/normal/office_building_dusk.png
new file mode 100644
index 0000000000000000000000000000000000000000..3e62ace2b21dfc2598850269597789fff363fa7a
Binary files /dev/null and b/img/misc/normal/office_building_dusk.png differ
diff --git a/img/misc/normal/office_building_night.png b/img/misc/normal/office_building_night.png
new file mode 100644
index 0000000000000000000000000000000000000000..8b8e55a2c0789aa3d12009864aad20a81df15319
Binary files /dev/null and b/img/misc/normal/office_building_night.png differ
diff --git a/img/misc/normal/office_dawn.png b/img/misc/normal/office_dawn.png
deleted file mode 100644
index 7f7914519524434147e77dd460d8ccbf4917672a..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/office_dawn.png and /dev/null differ
diff --git a/img/misc/normal/office_day.png b/img/misc/normal/office_day.png
deleted file mode 100644
index 282eb1968f54ae3edb6e387478b766bc6c7aec48..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/office_day.png and /dev/null differ
diff --git a/img/misc/normal/office_dusk.png b/img/misc/normal/office_dusk.png
deleted file mode 100644
index 7a7be74d19344ff5c35ea6f4fe4e3b16c18e60a1..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/office_dusk.png and /dev/null differ
diff --git a/img/misc/normal/office_night.png b/img/misc/normal/office_night.png
deleted file mode 100644
index 800be84ccafa1fb7e6ebb90336d7b3ff60182f8e..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/office_night.png and /dev/null differ
diff --git a/img/misc/normal/park_bloodmoon.gif b/img/misc/normal/park_bloodmoon.gif
index 47fa26f764d61a6f1c5a9610008a74f555032326..5ede4c09db544fcd0b06cabc1f8dd694984a77d6 100644
Binary files a/img/misc/normal/park_bloodmoon.gif and b/img/misc/normal/park_bloodmoon.gif differ
diff --git a/img/misc/normal/park_dawn.gif b/img/misc/normal/park_dawn.gif
index 95da5ef96a8b7ba352af0c3cee6af1ac0de05ed6..58ce48c02b9766eb737ed0986d64472c79c1fd3e 100644
Binary files a/img/misc/normal/park_dawn.gif and b/img/misc/normal/park_dawn.gif differ
diff --git a/img/misc/normal/park_day.gif b/img/misc/normal/park_day.gif
index d01d10a800a68675e5c889fe7766e65568764cb8..0587d9fcd05611bdc98e60ee9732f8198357788a 100644
Binary files a/img/misc/normal/park_day.gif and b/img/misc/normal/park_day.gif differ
diff --git a/img/misc/normal/park_dusk.gif b/img/misc/normal/park_dusk.gif
index a9d5d2d5f2f5c77e3c4972a7b693946704e09b29..8639a8d6ff35d7343b53d426d2e7c9946c67fabd 100644
Binary files a/img/misc/normal/park_dusk.gif and b/img/misc/normal/park_dusk.gif differ
diff --git a/img/misc/normal/park_night.gif b/img/misc/normal/park_night.gif
index b0677c5b09da99c8e30a59dbb04ab7be4fa4350a..079e4366f8aff903ca399ba2bc9459cf772158f6 100644
Binary files a/img/misc/normal/park_night.gif and b/img/misc/normal/park_night.gif differ
diff --git a/img/misc/normal/police_station_dawn.png b/img/misc/normal/police_station_dawn.png
index f3244324632720a4d1189c2ad6c1743f76eb602f..c3ce8a7158e85ba6d5d1e41d6ffc83263dc04051 100644
Binary files a/img/misc/normal/police_station_dawn.png and b/img/misc/normal/police_station_dawn.png differ
diff --git a/img/misc/normal/police_station_day.png b/img/misc/normal/police_station_day.png
index dec6e69ad855424f18b5978f2ccacfef5fec1b79..73acef11bd078e3fee0fdcdd94376d7eb7db7561 100644
Binary files a/img/misc/normal/police_station_day.png and b/img/misc/normal/police_station_day.png differ
diff --git a/img/misc/normal/police_station_dusk.png b/img/misc/normal/police_station_dusk.png
index f9749fc530f373d23f769cc2b0e8d5c103d746e0..7ad26aa38455ddc3c6e071fa9f2ab00a9b2c29de 100644
Binary files a/img/misc/normal/police_station_dusk.png and b/img/misc/normal/police_station_dusk.png differ
diff --git a/img/misc/normal/police_station_night.png b/img/misc/normal/police_station_night.png
index a1fc645d206e4e19c378d65419b6dec2e0c9e324..7b6cdcd81eb098a566516cc8fe6dd10d5831e841 100644
Binary files a/img/misc/normal/police_station_night.png and b/img/misc/normal/police_station_night.png differ
diff --git a/img/misc/normal/pool_dawn.gif b/img/misc/normal/pool_dawn.gif
index 2bc4d1e3638be0369197bdd83d68c377efedbaba..a21696333fcaaa547b0be4040dfe13b80ef57bbb 100644
Binary files a/img/misc/normal/pool_dawn.gif and b/img/misc/normal/pool_dawn.gif differ
diff --git a/img/misc/normal/pool_day.gif b/img/misc/normal/pool_day.gif
index 37e1d9070fbfb4eae6e8e4ba5f46cc5884d502c0..a21696333fcaaa547b0be4040dfe13b80ef57bbb 100644
Binary files a/img/misc/normal/pool_day.gif and b/img/misc/normal/pool_day.gif differ
diff --git a/img/misc/normal/pool_dusk.gif b/img/misc/normal/pool_dusk.gif
index a36fe9219d5f1e1a0ab9baf288facec6eecd96db..baa5d1d3e8cbddfa8579c35083199c66e68be0dd 100644
Binary files a/img/misc/normal/pool_dusk.gif and b/img/misc/normal/pool_dusk.gif differ
diff --git a/img/misc/normal/pool_night.gif b/img/misc/normal/pool_night.gif
index b00c8a87faddaf571788b62636bd311b586955d7..280e4878035485e03ac682e161602ffba49183ae 100644
Binary files a/img/misc/normal/pool_night.gif and b/img/misc/normal/pool_night.gif differ
diff --git a/img/misc/normal/pound_dawn.gif b/img/misc/normal/pound_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..0fde66f3805d5e1fc3067e8bbc09a3c9139b69a2
Binary files /dev/null and b/img/misc/normal/pound_dawn.gif differ
diff --git a/img/misc/normal/pound_day.gif b/img/misc/normal/pound_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..1005ba6630900023e130c55ae25b7336b74a8380
Binary files /dev/null and b/img/misc/normal/pound_day.gif differ
diff --git a/img/misc/normal/pound_dusk.gif b/img/misc/normal/pound_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..0fde66f3805d5e1fc3067e8bbc09a3c9139b69a2
Binary files /dev/null and b/img/misc/normal/pound_dusk.gif differ
diff --git a/img/misc/normal/pound_night.gif b/img/misc/normal/pound_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..0570da99fd2212eaa1fee69af47a091d45947a04
Binary files /dev/null and b/img/misc/normal/pound_night.gif differ
diff --git a/img/misc/normal/prison_bloodmoon.gif b/img/misc/normal/prison_bloodmoon.gif
index d3fac9b4fa919b548b18a493004a9d14d5bad3dc..062f33fb5165da7bca5ee2184d0990dde4a7b213 100644
Binary files a/img/misc/normal/prison_bloodmoon.gif and b/img/misc/normal/prison_bloodmoon.gif differ
diff --git a/img/misc/normal/prison_dawn.gif b/img/misc/normal/prison_dawn.gif
index 227559c6901342f93cbe847f4e3edfdb0382aa6e..4a9c0a6f5bf5795cb1efeae2c68c76c563c80504 100644
Binary files a/img/misc/normal/prison_dawn.gif and b/img/misc/normal/prison_dawn.gif differ
diff --git a/img/misc/normal/prison_day.gif b/img/misc/normal/prison_day.gif
index 9297080438317b4418996e47cb45aa7976e9ed79..4e912817454d2115f489ceb14b8d01e5b15da906 100644
Binary files a/img/misc/normal/prison_day.gif and b/img/misc/normal/prison_day.gif differ
diff --git a/img/misc/normal/prison_dusk.gif b/img/misc/normal/prison_dusk.gif
index 7633349b4e23a3f1c0f169e726fdfe8c68520042..0caade997f1bd6fd54bb55dc91b53630a96d6225 100644
Binary files a/img/misc/normal/prison_dusk.gif and b/img/misc/normal/prison_dusk.gif differ
diff --git a/img/misc/normal/prison_night.gif b/img/misc/normal/prison_night.gif
index ad32ab1b83f3f30e7e49af3a4235b4bb55cef332..20d3c3515db54591e4931a6ab142bfaa7ff26d38 100644
Binary files a/img/misc/normal/prison_night.gif and b/img/misc/normal/prison_night.gif differ
diff --git a/img/misc/normal/promenade_beach_dawn.gif b/img/misc/normal/promenade_beach_dawn.gif
deleted file mode 100644
index 01dc6759b7f18f5b4850d26e9318ffc5b6d05475..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/promenade_beach_dawn.gif and /dev/null differ
diff --git a/img/misc/normal/promenade_beach_day.gif b/img/misc/normal/promenade_beach_day.gif
deleted file mode 100644
index 6a89763e9305c698046b78d011d7c0a30d8e8797..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/promenade_beach_day.gif and /dev/null differ
diff --git a/img/misc/normal/promenade_beach_dusk.gif b/img/misc/normal/promenade_beach_dusk.gif
deleted file mode 100644
index 95e2a129232c33d2ce4e610b0ff4e195e83c780b..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/promenade_beach_dusk.gif and /dev/null differ
diff --git a/img/misc/normal/promenade_beach_night.gif b/img/misc/normal/promenade_beach_night.gif
deleted file mode 100644
index 7099bb3503e564e4809cd6aff31cac3304ca737d..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/promenade_beach_night.gif and /dev/null differ
diff --git a/img/misc/normal/promenade_dawn.gif b/img/misc/normal/promenade_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..d78d5c80922b36da0aada47074ef88894163c879
Binary files /dev/null and b/img/misc/normal/promenade_dawn.gif differ
diff --git a/img/misc/normal/promenade_day.gif b/img/misc/normal/promenade_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..d5e46097d7ed18a93ad4ce55c05aa06789274a3b
Binary files /dev/null and b/img/misc/normal/promenade_day.gif differ
diff --git a/img/misc/normal/promenade_dusk.gif b/img/misc/normal/promenade_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..54a50fe25a419c7d36f9910da7f8f1566b926442
Binary files /dev/null and b/img/misc/normal/promenade_dusk.gif differ
diff --git a/img/misc/normal/promenade_night.gif b/img/misc/normal/promenade_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..fb58c29e8a882b808c2184337d2cc82b528895ae
Binary files /dev/null and b/img/misc/normal/promenade_night.gif differ
diff --git a/img/misc/normal/pub_dawn.png b/img/misc/normal/pub_dawn.png
index bd0b414a36651190776f6894b0447bde221dc022..3c735495ff492ef67bc55e07983d0b68ed310e07 100644
Binary files a/img/misc/normal/pub_dawn.png and b/img/misc/normal/pub_dawn.png differ
diff --git a/img/misc/normal/pub_day.png b/img/misc/normal/pub_day.png
index 0586ee1459fd4a0db61a556d746a5e89e4f127e9..6265b5cff05bbb61541591910dc67abcee17bbe7 100644
Binary files a/img/misc/normal/pub_day.png and b/img/misc/normal/pub_day.png differ
diff --git a/img/misc/normal/pub_dusk.png b/img/misc/normal/pub_dusk.png
index 0b417f2fa63c51f8670605c0aa54ded9e46249ee..6265b5cff05bbb61541591910dc67abcee17bbe7 100644
Binary files a/img/misc/normal/pub_dusk.png and b/img/misc/normal/pub_dusk.png differ
diff --git a/img/misc/normal/pub_night.png b/img/misc/normal/pub_night.png
index 568a9a2b4e4db764a8a020d3f116cfa512374090..2dc5916b0108058f5e06b3817c1015ebdfb8fec8 100644
Binary files a/img/misc/normal/pub_night.png and b/img/misc/normal/pub_night.png differ
diff --git a/img/misc/normal/remy_farm_dawn.png b/img/misc/normal/remy_farm_dawn.png
deleted file mode 100644
index b1ed2da65b9c432aca270b2c1421367c83798d7e..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/remy_farm_dawn.png and /dev/null differ
diff --git a/img/misc/normal/remy_farm_day.png b/img/misc/normal/remy_farm_day.png
deleted file mode 100644
index 4649848f17c1b2d891776c5d3498fa2dd17e748d..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/remy_farm_day.png and /dev/null differ
diff --git a/img/misc/normal/remy_farm_dusk.png b/img/misc/normal/remy_farm_dusk.png
deleted file mode 100644
index b5a3adb052679ed4079ccfe3ee7627e4ee9cb5bd..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/remy_farm_dusk.png and /dev/null differ
diff --git a/img/misc/normal/remy_farm_night.png b/img/misc/normal/remy_farm_night.png
deleted file mode 100644
index 4cb8f1cd6e192b130fbe9060c935c0f8cc97a58f..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/remy_farm_night.png and /dev/null differ
diff --git a/img/misc/normal/resi_alley_bloodmoon.gif b/img/misc/normal/resi_alley_bloodmoon.gif
index 31bad0ba2a91427dd2856cc6e7287bfba1873d4b..a8b64df5791dcc0378ba1d5a42e3dd63402cb2f5 100644
Binary files a/img/misc/normal/resi_alley_bloodmoon.gif and b/img/misc/normal/resi_alley_bloodmoon.gif differ
diff --git a/img/misc/normal/resi_alley_dawn.gif b/img/misc/normal/resi_alley_dawn.gif
index 832207647b87dc0880ba654d1a65a0259b399842..77a653c70d37ea0c6d6c51a93eb8cd912cc6722a 100644
Binary files a/img/misc/normal/resi_alley_dawn.gif and b/img/misc/normal/resi_alley_dawn.gif differ
diff --git a/img/misc/normal/resi_alley_day.gif b/img/misc/normal/resi_alley_day.gif
index 46d6f6b62e8ebef01f4f09798c0fc3afa70bcb1f..9f722b7357e61c3c23ba11137daca8b648978a57 100644
Binary files a/img/misc/normal/resi_alley_day.gif and b/img/misc/normal/resi_alley_day.gif differ
diff --git a/img/misc/normal/resi_alley_dusk.gif b/img/misc/normal/resi_alley_dusk.gif
index f0a6baefb2a48671c700a65c0f998609843678e3..a3a7c42f35120813a9ae5237f9b3593d2b7b6615 100644
Binary files a/img/misc/normal/resi_alley_dusk.gif and b/img/misc/normal/resi_alley_dusk.gif differ
diff --git a/img/misc/normal/resi_alley_night.gif b/img/misc/normal/resi_alley_night.gif
index cb7f1aa8bbfcb6ff95b7c05bb1dcc575ab8a98a3..90e9dad64115e86793ff61fe94fb36511411d095 100644
Binary files a/img/misc/normal/resi_alley_night.gif and b/img/misc/normal/resi_alley_night.gif differ
diff --git a/img/misc/normal/riding_school_dawn.gif b/img/misc/normal/riding_school_dawn.gif
index 2a9429852fc704fceedd7b3c7e7d9014a2e5753d..d45952dbf67f9c350862bb965102e21781dbf55f 100644
Binary files a/img/misc/normal/riding_school_dawn.gif and b/img/misc/normal/riding_school_dawn.gif differ
diff --git a/img/misc/normal/riding_school_day.gif b/img/misc/normal/riding_school_day.gif
index 3cc3d3b8628f35c3507a35f8e693fed6560cfb77..cbb817eb0ac85e906b8524c2b5cb23ff1a430fd5 100644
Binary files a/img/misc/normal/riding_school_day.gif and b/img/misc/normal/riding_school_day.gif differ
diff --git a/img/misc/normal/riding_school_dusk.gif b/img/misc/normal/riding_school_dusk.gif
index fab4f91032e7a494ee3a2551e77f8109852e72a6..c7bed626e16f3f245adc47b01ca0addaef3455db 100644
Binary files a/img/misc/normal/riding_school_dusk.gif and b/img/misc/normal/riding_school_dusk.gif differ
diff --git a/img/misc/normal/riding_school_night.gif b/img/misc/normal/riding_school_night.gif
index 586ba5e964aafeddb8636b447f65e1b7a2afcb57..a7dfd681b405c3e1fc2f6dfbc53a8da5d7160127 100644
Binary files a/img/misc/normal/riding_school_night.gif and b/img/misc/normal/riding_school_night.gif differ
diff --git a/img/misc/normal/ruins_bloodmoon.gif b/img/misc/normal/ruins_bloodmoon.gif
deleted file mode 100644
index 9284d0b23b055f533efd3dd37239860b12c74e05..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/ruins_bloodmoon.gif and /dev/null differ
diff --git a/img/misc/normal/ruins_dawn.gif b/img/misc/normal/ruins_dawn.gif
deleted file mode 100644
index 6374a92f19943b1e8c8ad04f714f5580832007c2..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/ruins_dawn.gif and /dev/null differ
diff --git a/img/misc/normal/ruins_day.gif b/img/misc/normal/ruins_day.gif
deleted file mode 100644
index e8a8527245fa164a57aa7364d136e23c65e57b6e..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/ruins_day.gif and /dev/null differ
diff --git a/img/misc/normal/ruins_dusk.gif b/img/misc/normal/ruins_dusk.gif
deleted file mode 100644
index ef5381871fdbfe5597cb0d26e2c62c0f783b856f..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/ruins_dusk.gif and /dev/null differ
diff --git a/img/misc/normal/ruins_night.gif b/img/misc/normal/ruins_night.gif
deleted file mode 100644
index 6ae123c45ab6315c313e3f47400c9495803ee312..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/ruins_night.gif and /dev/null differ
diff --git a/img/misc/normal/school_dawn.png b/img/misc/normal/school_dawn.png
index ecd6056ba88c3e799aa11ae5ccf8938e3be945ef..995e08a1c257aab8826fa529b1aaecbff5d955d7 100644
Binary files a/img/misc/normal/school_dawn.png and b/img/misc/normal/school_dawn.png differ
diff --git a/img/misc/normal/school_day.png b/img/misc/normal/school_day.png
index 4f6cfaf019a9684c2483437bfad4b24a7b19d253..2cbde52d8db68765a1026a97592fba16b753e6d6 100644
Binary files a/img/misc/normal/school_day.png and b/img/misc/normal/school_day.png differ
diff --git a/img/misc/normal/school_dusk.png b/img/misc/normal/school_dusk.png
index 24b7218aff9a637b22aabda3d9a46b12672547d7..2cbde52d8db68765a1026a97592fba16b753e6d6 100644
Binary files a/img/misc/normal/school_dusk.png and b/img/misc/normal/school_dusk.png differ
diff --git a/img/misc/normal/school_night.png b/img/misc/normal/school_night.png
index ec472aa18b9de97badebde6f81c0f7c421a044c3..95ce79a0b9ba4c69890ac352c162aaef542ee43d 100644
Binary files a/img/misc/normal/school_night.png and b/img/misc/normal/school_night.png differ
diff --git a/img/misc/normal/sea_dawn.gif b/img/misc/normal/sea_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..3f5e500b66f3c21dfadbadaf13e4cd1ca78c5305
Binary files /dev/null and b/img/misc/normal/sea_dawn.gif differ
diff --git a/img/misc/normal/sea_day.gif b/img/misc/normal/sea_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..90809ff6807a64a508e6a69e43caed1fb3d4e5d6
Binary files /dev/null and b/img/misc/normal/sea_day.gif differ
diff --git a/img/misc/normal/sea_dusk.gif b/img/misc/normal/sea_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..bb8be7a7dc9bb8126b0831d03eabb8ee514dad10
Binary files /dev/null and b/img/misc/normal/sea_dusk.gif differ
diff --git a/img/misc/normal/sea_night.gif b/img/misc/normal/sea_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..739fcff49c3e0a543a00e52bdee1ce2a92975f94
Binary files /dev/null and b/img/misc/normal/sea_night.gif differ
diff --git a/img/misc/normal/seapirates_dawn.gif b/img/misc/normal/seapirates_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..3a17aeefdb52cedb7280253effef605e7d72e1f4
Binary files /dev/null and b/img/misc/normal/seapirates_dawn.gif differ
diff --git a/img/misc/normal/seapirates_day.gif b/img/misc/normal/seapirates_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..3a17aeefdb52cedb7280253effef605e7d72e1f4
Binary files /dev/null and b/img/misc/normal/seapirates_day.gif differ
diff --git a/img/misc/normal/seapirates_dusk.gif b/img/misc/normal/seapirates_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..00b68a8ab2fc2d14731a43acf05f2f2d1ae09e42
Binary files /dev/null and b/img/misc/normal/seapirates_dusk.gif differ
diff --git a/img/misc/normal/seapirates_night.gif b/img/misc/normal/seapirates_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..cae8a59b1aa89edaa0e39e45e5eba95580a136c9
Binary files /dev/null and b/img/misc/normal/seapirates_night.gif differ
diff --git a/img/misc/normal/sepulchre_dawn.png b/img/misc/normal/sepulchre_dawn.png
index f2a9d45d01aef964f2a0953c3d4c431b763fcb0f..a5e0c0e22b61a7f3d6d69e8606b8efd5d4a00d5a 100644
Binary files a/img/misc/normal/sepulchre_dawn.png and b/img/misc/normal/sepulchre_dawn.png differ
diff --git a/img/misc/normal/sepulchre_day.png b/img/misc/normal/sepulchre_day.png
index f780f26edb9c21fd89b1fada3ea973c916cddbbb..9c93a5e1ed148a5059f96d1b761b7fb57ff49f96 100644
Binary files a/img/misc/normal/sepulchre_day.png and b/img/misc/normal/sepulchre_day.png differ
diff --git a/img/misc/normal/sepulchre_dusk.png b/img/misc/normal/sepulchre_dusk.png
index e59a6f8e18734123dda5c9e3e653f6b0194e4feb..3c4ab50eac32737145a09e65de4a7fa41bc98d1e 100644
Binary files a/img/misc/normal/sepulchre_dusk.png and b/img/misc/normal/sepulchre_dusk.png differ
diff --git a/img/misc/normal/sepulchre_night.png b/img/misc/normal/sepulchre_night.png
index f40c61a94d7adba6469bf6deb578ac39d9e10a91..6bfbf316ca818feceb36e7ab7e14c73881149af6 100644
Binary files a/img/misc/normal/sepulchre_night.png and b/img/misc/normal/sepulchre_night.png differ
diff --git a/img/misc/normal/sewers_dawn.gif b/img/misc/normal/sewers_dawn.gif
index 2fac34bbfb254ab8020892f836718cc95332b27b..e41fa706f09f58ae21563c8eb54230af01ac3851 100644
Binary files a/img/misc/normal/sewers_dawn.gif and b/img/misc/normal/sewers_dawn.gif differ
diff --git a/img/misc/normal/sewers_day.gif b/img/misc/normal/sewers_day.gif
index 9bef5824f35837cd95d4544ef65da9ebcdde4d8f..e41fa706f09f58ae21563c8eb54230af01ac3851 100644
Binary files a/img/misc/normal/sewers_day.gif and b/img/misc/normal/sewers_day.gif differ
diff --git a/img/misc/normal/sewers_dusk.gif b/img/misc/normal/sewers_dusk.gif
index 5ace9df80a3da398f5fd6b9e35ba8103813dc7b2..e41fa706f09f58ae21563c8eb54230af01ac3851 100644
Binary files a/img/misc/normal/sewers_dusk.gif and b/img/misc/normal/sewers_dusk.gif differ
diff --git a/img/misc/normal/sewers_night.gif b/img/misc/normal/sewers_night.gif
index 82099314b8d5c545733d1e3ac20520dc6e9b2b1d..e41fa706f09f58ae21563c8eb54230af01ac3851 100644
Binary files a/img/misc/normal/sewers_night.gif and b/img/misc/normal/sewers_night.gif differ
diff --git a/img/misc/normal/sex_shop_dawn.png b/img/misc/normal/sex_shop_dawn.png
index 87ea4a34ce3ee03e9201865ba6724ffd5cb892ba..b691e477c2907aa5b4fcc15c3a5332dd4b3c4c84 100644
Binary files a/img/misc/normal/sex_shop_dawn.png and b/img/misc/normal/sex_shop_dawn.png differ
diff --git a/img/misc/normal/sex_shop_day.png b/img/misc/normal/sex_shop_day.png
index 7ac2e24e70dc0475f8712be8f8d7f1d2a9c32419..1b15578a2dfbc5015ad135d576d9b2d4654c4460 100644
Binary files a/img/misc/normal/sex_shop_day.png and b/img/misc/normal/sex_shop_day.png differ
diff --git a/img/misc/normal/sex_shop_day_open.gif b/img/misc/normal/sex_shop_day_open.gif
index ac53dfec00b2bd975c3f72a5f1015d59f7cc4885..ef74a94c845f1659934c2a115f3371089dd828ac 100644
Binary files a/img/misc/normal/sex_shop_day_open.gif and b/img/misc/normal/sex_shop_day_open.gif differ
diff --git a/img/misc/normal/sex_shop_dusk.gif b/img/misc/normal/sex_shop_dusk.gif
index 5d3d1eb8093f45fbc65728c81c827ff7f28f93a6..f7c68a7e6e6e1ce08e1982c57c4dba10f0020784 100644
Binary files a/img/misc/normal/sex_shop_dusk.gif and b/img/misc/normal/sex_shop_dusk.gif differ
diff --git a/img/misc/normal/sex_shop_night.gif b/img/misc/normal/sex_shop_night.gif
index 88cd72e5c2455ba7739d43b146df289b1249b44b..970aa1083ae29b9c06fc3756886241841c5ae42f 100644
Binary files a/img/misc/normal/sex_shop_night.gif and b/img/misc/normal/sex_shop_night.gif differ
diff --git a/img/misc/normal/shopping_centre_dawn.png b/img/misc/normal/shopping_centre_dawn.png
index e557c8e8a2ba64863d256144169af9e57b6d8457..6a57e7ef3a3ee4bd4ca8de9ff8a2bc2d27ae29af 100644
Binary files a/img/misc/normal/shopping_centre_dawn.png and b/img/misc/normal/shopping_centre_dawn.png differ
diff --git a/img/misc/normal/shopping_centre_day.png b/img/misc/normal/shopping_centre_day.png
index d719be906728741360a1ebb690c9d25879d20f5a..3b2af9c834dcd9dc4a35d23e7f4d0400e788fa51 100644
Binary files a/img/misc/normal/shopping_centre_day.png and b/img/misc/normal/shopping_centre_day.png differ
diff --git a/img/misc/normal/shopping_centre_dusk.png b/img/misc/normal/shopping_centre_dusk.png
index 9134829890210317723020320628db4423bdd4bb..ef4f8d2b44dc6f21857a8586a18311b15a61b67c 100644
Binary files a/img/misc/normal/shopping_centre_dusk.png and b/img/misc/normal/shopping_centre_dusk.png differ
diff --git a/img/misc/normal/shopping_centre_night.png b/img/misc/normal/shopping_centre_night.png
index c4a119647fad7c1420a155f9b1634fccf3eda5d8..c75202a9c88dac4e2d8f6eb9f3477ae6b6e2bc48 100644
Binary files a/img/misc/normal/shopping_centre_night.png and b/img/misc/normal/shopping_centre_night.png differ
diff --git a/img/misc/normal/spa_dawn.gif b/img/misc/normal/spa_dawn.gif
index da52a5d312a941a9db2a5574cfa36b82d73495f2..98cdc54d114b03773f7b764a85244c8f29856ccc 100644
Binary files a/img/misc/normal/spa_dawn.gif and b/img/misc/normal/spa_dawn.gif differ
diff --git a/img/misc/normal/spa_day.gif b/img/misc/normal/spa_day.gif
index 17958dd1a2d897fc07a32d5a11d5d2558c781257..2db1592345f8791c69e039e98780821812a09673 100644
Binary files a/img/misc/normal/spa_day.gif and b/img/misc/normal/spa_day.gif differ
diff --git a/img/misc/normal/spa_dusk.gif b/img/misc/normal/spa_dusk.gif
index 1d5e744746dcfda2feeaef5dafb3e4e52cc49a9c..03bd3b1042621756c00117f67fb3704393e242e3 100644
Binary files a/img/misc/normal/spa_dusk.gif and b/img/misc/normal/spa_dusk.gif differ
diff --git a/img/misc/normal/spa_night.gif b/img/misc/normal/spa_night.gif
index 28b7d9bf27101614e7fa44cc0971df522a6df41f..b39d936d3a1821d759bf4f457c11ba56781f388b 100644
Binary files a/img/misc/normal/spa_night.gif and b/img/misc/normal/spa_night.gif differ
diff --git a/img/misc/normal/strip_club_dawn.png b/img/misc/normal/strip_club_dawn.png
index 48cbec469cebf219ce89a2ad730a88bfffb1e391..1398847c9374dc01e154212776b7afefde14fc43 100644
Binary files a/img/misc/normal/strip_club_dawn.png and b/img/misc/normal/strip_club_dawn.png differ
diff --git a/img/misc/normal/strip_club_day.png b/img/misc/normal/strip_club_day.png
index 2597f06d7ad0c3e496e15b57323b33163bac7622..1398847c9374dc01e154212776b7afefde14fc43 100644
Binary files a/img/misc/normal/strip_club_day.png and b/img/misc/normal/strip_club_day.png differ
diff --git a/img/misc/normal/strip_club_dusk.png b/img/misc/normal/strip_club_dusk.png
index 847778c735b14228a29bb78fb0ec2e4c28fefdd2..1398847c9374dc01e154212776b7afefde14fc43 100644
Binary files a/img/misc/normal/strip_club_dusk.png and b/img/misc/normal/strip_club_dusk.png differ
diff --git a/img/misc/normal/strip_club_night.png b/img/misc/normal/strip_club_night.png
index f7b2dc4f17a1db607c2bec66e61201721dc24435..4b0310bb1bc0189c3e968b635f99955c13754476 100644
Binary files a/img/misc/normal/strip_club_night.png and b/img/misc/normal/strip_club_night.png differ
diff --git a/img/misc/normal/temple_dawn.png b/img/misc/normal/temple_dawn.png
index 7879425673582d9af813a68db3a890e7c3f6b2e4..af9ec5596cc96342e803526e51a165c3e21862b6 100644
Binary files a/img/misc/normal/temple_dawn.png and b/img/misc/normal/temple_dawn.png differ
diff --git a/img/misc/normal/temple_dawn_old.png b/img/misc/normal/temple_dawn_old.png
index db280cc6b20b54dcf145212df5a74ece0c7e99a4..32c38a7f221dab6e0d9510c8f9166cf450d0557a 100644
Binary files a/img/misc/normal/temple_dawn_old.png and b/img/misc/normal/temple_dawn_old.png differ
diff --git a/img/misc/normal/temple_day.png b/img/misc/normal/temple_day.png
index fae49314b14aa7ba5d1a4893feab77f9f46f5c84..74715d8d55b44a52fbbab6285401568c6a618bd7 100644
Binary files a/img/misc/normal/temple_day.png and b/img/misc/normal/temple_day.png differ
diff --git a/img/misc/normal/temple_day_old.png b/img/misc/normal/temple_day_old.png
index 0577f2a729179875b2225e1c1911e3a61cc6ae7b..102e481f33ac4088a28768b9101ed71efa89b72c 100644
Binary files a/img/misc/normal/temple_day_old.png and b/img/misc/normal/temple_day_old.png differ
diff --git a/img/misc/normal/temple_dusk.png b/img/misc/normal/temple_dusk.png
index 5397f6453341f83fafa2879d6e428c6b2467070d..c7d20f6ac3aba76eda72a98c164a580a658d776c 100644
Binary files a/img/misc/normal/temple_dusk.png and b/img/misc/normal/temple_dusk.png differ
diff --git a/img/misc/normal/temple_dusk_old.png b/img/misc/normal/temple_dusk_old.png
index 9ef9e8e491ccb575eaee97aae2cd613093a9b7bf..102e481f33ac4088a28768b9101ed71efa89b72c 100644
Binary files a/img/misc/normal/temple_dusk_old.png and b/img/misc/normal/temple_dusk_old.png differ
diff --git a/img/misc/normal/temple_night.png b/img/misc/normal/temple_night.png
index 9bdf255926cb51026185c0df13396bd49b8dd447..f0e3c98e9e850bbe25b770386ed82a128c3cff18 100644
Binary files a/img/misc/normal/temple_night.png and b/img/misc/normal/temple_night.png differ
diff --git a/img/misc/normal/temple_night_old.png b/img/misc/normal/temple_night_old.png
index e10c1b29bdd512612acb5f72db0c0f8f16e7c89d..f0b94c8bd621f8915764582a552239ed61120aef 100644
Binary files a/img/misc/normal/temple_night_old.png and b/img/misc/normal/temple_night_old.png differ
diff --git a/img/misc/normal/tentacles_dawn.gif b/img/misc/normal/tentacles_dawn.gif
index 3b58edf3b4ee111525786a85141b66ad95bcecdc..72093832e3884f6c17ece5ead0b05aacd0395818 100644
Binary files a/img/misc/normal/tentacles_dawn.gif and b/img/misc/normal/tentacles_dawn.gif differ
diff --git a/img/misc/normal/tentacles_day.gif b/img/misc/normal/tentacles_day.gif
index eac8f1b94ea8c39c916efdfdd67892487102e81a..72093832e3884f6c17ece5ead0b05aacd0395818 100644
Binary files a/img/misc/normal/tentacles_day.gif and b/img/misc/normal/tentacles_day.gif differ
diff --git a/img/misc/normal/tentacles_dusk.gif b/img/misc/normal/tentacles_dusk.gif
index eb2c1067b16f1b8cce40e46b7266ac88aeaa2f98..72093832e3884f6c17ece5ead0b05aacd0395818 100644
Binary files a/img/misc/normal/tentacles_dusk.gif and b/img/misc/normal/tentacles_dusk.gif differ
diff --git a/img/misc/normal/tentacles_night.gif b/img/misc/normal/tentacles_night.gif
index 7c092f50d0108f591dfe0ebf8a86eb549f055da4..72093832e3884f6c17ece5ead0b05aacd0395818 100644
Binary files a/img/misc/normal/tentacles_night.gif and b/img/misc/normal/tentacles_night.gif differ
diff --git a/img/misc/normal/tower_bloodmoon.gif b/img/misc/normal/tower_bloodmoon.gif
index 4e13fd7b1f9be67fe6616e5e98a63ad2c3816920..d89e54b3f4b0eb4cd3410b97124eac9f12b9c495 100644
Binary files a/img/misc/normal/tower_bloodmoon.gif and b/img/misc/normal/tower_bloodmoon.gif differ
diff --git a/img/misc/normal/tower_dawn.gif b/img/misc/normal/tower_dawn.gif
index 554ad44010b0f644abbbdb8c3df826bb92a46bc9..c27f525a792b71e6d3bae18ebb2842774f54d0a9 100644
Binary files a/img/misc/normal/tower_dawn.gif and b/img/misc/normal/tower_dawn.gif differ
diff --git a/img/misc/normal/tower_day.gif b/img/misc/normal/tower_day.gif
index 35f3795d0e4e65f39d0a02303dc59856f0521825..c080340192447b3b2905c917447638374c9f1ff7 100644
Binary files a/img/misc/normal/tower_day.gif and b/img/misc/normal/tower_day.gif differ
diff --git a/img/misc/normal/tower_dusk.gif b/img/misc/normal/tower_dusk.gif
index 1bae28932a5762eaa16df18180ffc9934da7f43e..852b56091cf3fc1fd17c668b7d7cbbf789123f17 100644
Binary files a/img/misc/normal/tower_dusk.gif and b/img/misc/normal/tower_dusk.gif differ
diff --git a/img/misc/normal/tower_night.gif b/img/misc/normal/tower_night.gif
index fa7cb9efd44aa93ffdf635348b64216f302f3a19..a6b63744ba5a896b58e49eb133ab4c91c5915781 100644
Binary files a/img/misc/normal/tower_night.gif and b/img/misc/normal/tower_night.gif differ
diff --git a/img/misc/normal/town_dawn.gif b/img/misc/normal/town_dawn.gif
index b7789c01da6b3b062242be8037eb4e29055d9573..1dfc5eeeae1a07dd31f0951f091bd803778088d3 100644
Binary files a/img/misc/normal/town_dawn.gif and b/img/misc/normal/town_dawn.gif differ
diff --git a/img/misc/normal/town_day.gif b/img/misc/normal/town_day.gif
index 55979f454f820ed8f91e740d35b1c05d5c2806fa..eec63f74f36a9f7403dd2d9f8f3dad494a335829 100644
Binary files a/img/misc/normal/town_day.gif and b/img/misc/normal/town_day.gif differ
diff --git a/img/misc/normal/town_dusk.gif b/img/misc/normal/town_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..5b751638b208c20f79acf2bc85bd51f8bfcd5134
Binary files /dev/null and b/img/misc/normal/town_dusk.gif differ
diff --git a/img/misc/normal/town_dusk.png b/img/misc/normal/town_dusk.png
deleted file mode 100644
index 3e147b761869825613b1f809e869f400568eab12..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/town_dusk.png and /dev/null differ
diff --git a/img/misc/normal/town_night.gif b/img/misc/normal/town_night.gif
index d2f447226938ecffb2ae1b7c858010f0ed2399c9..0ee545fa633a695184346b3e4a9e4e55f6374ec0 100644
Binary files a/img/misc/normal/town_night.gif and b/img/misc/normal/town_night.gif differ
diff --git a/img/misc/normal/underground_dawn.png b/img/misc/normal/underground_dawn.png
deleted file mode 100644
index 7e7a3e21a960812bd0edf606b8c4e800d77cf978..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/underground_dawn.png and /dev/null differ
diff --git a/img/misc/normal/underground_day.png b/img/misc/normal/underground_day.png
deleted file mode 100644
index 28de71022db58df1deb3afde9426e8869268aedd..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/underground_day.png and /dev/null differ
diff --git a/img/misc/normal/underground_dusk.png b/img/misc/normal/underground_dusk.png
deleted file mode 100644
index b2676841d0161dea6cff4ec5f265d5f94d2ea57d..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/underground_dusk.png and /dev/null differ
diff --git a/img/misc/normal/underground_night.png b/img/misc/normal/underground_night.png
deleted file mode 100644
index f645ec852ebcaa5550b24fc92b913acae1c525ca..0000000000000000000000000000000000000000
Binary files a/img/misc/normal/underground_night.png and /dev/null differ
diff --git a/img/misc/normal/wolf_cave_dawn.png b/img/misc/normal/wolf_cave_dawn.png
index b76d7825b46d810a78611272bf38db77b2ee8e1f..d8783e59cfd0180c92fef40ce419be54c616a6bb 100644
Binary files a/img/misc/normal/wolf_cave_dawn.png and b/img/misc/normal/wolf_cave_dawn.png differ
diff --git a/img/misc/normal/wolf_cave_day.png b/img/misc/normal/wolf_cave_day.png
index 2a56d3f727968d2242bc6376487c6afb77e58679..870319d49c3a56ec1b538545134771a55d108e3a 100644
Binary files a/img/misc/normal/wolf_cave_day.png and b/img/misc/normal/wolf_cave_day.png differ
diff --git a/img/misc/normal/wolf_cave_dusk.png b/img/misc/normal/wolf_cave_dusk.png
index 3358e9312de198d7e539626d0625f84916f9ee8a..870319d49c3a56ec1b538545134771a55d108e3a 100644
Binary files a/img/misc/normal/wolf_cave_dusk.png and b/img/misc/normal/wolf_cave_dusk.png differ
diff --git a/img/misc/normal/wolf_cave_night.png b/img/misc/normal/wolf_cave_night.png
index 4244c4bf47635bbb99e4fc0e7db82cf341193ac5..587241d7ce2f3da066c381276067b6a3eb6ed6ba 100644
Binary files a/img/misc/normal/wolf_cave_night.png and b/img/misc/normal/wolf_cave_night.png differ
diff --git a/img/misc/normal_apng/alex_cottage_dawn.apng b/img/misc/normal_apng/alex_cottage_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..26640e8ad8af165c035e7510ddd1fd1dc7e380a2
Binary files /dev/null and b/img/misc/normal_apng/alex_cottage_dawn.apng differ
diff --git a/img/misc/normal_apng/alex_cottage_day.apng b/img/misc/normal_apng/alex_cottage_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..63c23eadbc01b4b9eaaf9725123950f7967efeb5
Binary files /dev/null and b/img/misc/normal_apng/alex_cottage_day.apng differ
diff --git a/img/misc/normal_apng/alex_cottage_dusk.apng b/img/misc/normal_apng/alex_cottage_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..449f4cbb07de6c7bc92871d8de96c25321e86467
Binary files /dev/null and b/img/misc/normal_apng/alex_cottage_dusk.apng differ
diff --git a/img/misc/normal_apng/alex_cottage_night.apng b/img/misc/normal_apng/alex_cottage_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..65a68c065e4db708080f5b04f9dae110c3436430
Binary files /dev/null and b/img/misc/normal_apng/alex_cottage_night.apng differ
diff --git a/img/misc/normal_apng/alex_farm_dawn.apng b/img/misc/normal_apng/alex_farm_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..6ed28fb1fe0121b9561f60a3403eebce9672da61
Binary files /dev/null and b/img/misc/normal_apng/alex_farm_dawn.apng differ
diff --git a/img/misc/normal_apng/alex_farm_day.apng b/img/misc/normal_apng/alex_farm_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..820c3d66e9fb29e561c1f374fb81870a787f5c73
Binary files /dev/null and b/img/misc/normal_apng/alex_farm_day.apng differ
diff --git a/img/misc/normal_apng/alex_farm_dusk.apng b/img/misc/normal_apng/alex_farm_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..954e65f9b3244b17e10b1357536b52d9ec0ababd
Binary files /dev/null and b/img/misc/normal_apng/alex_farm_dusk.apng differ
diff --git a/img/misc/normal_apng/alex_farm_night.apng b/img/misc/normal_apng/alex_farm_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..c2a6a4a8c886e3fe97ef76f0b73cead97fa927d8
Binary files /dev/null and b/img/misc/normal_apng/alex_farm_night.apng differ
diff --git a/img/misc/normal_apng/alley_bloodmoon.apng b/img/misc/normal_apng/alley_bloodmoon.apng
new file mode 100644
index 0000000000000000000000000000000000000000..1aba68182d012e66991cd2926078ea216543cc29
Binary files /dev/null and b/img/misc/normal_apng/alley_bloodmoon.apng differ
diff --git a/img/misc/normal_apng/alley_dawn.apng b/img/misc/normal_apng/alley_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..53c448c516f44af3a73c06b1bb64c7a4647c8f5d
Binary files /dev/null and b/img/misc/normal_apng/alley_dawn.apng differ
diff --git a/img/misc/normal_apng/alley_day.apng b/img/misc/normal_apng/alley_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..c0383af32e119745231dc8e1ba98d3046a6c52ce
Binary files /dev/null and b/img/misc/normal_apng/alley_day.apng differ
diff --git a/img/misc/normal_apng/alley_dusk.apng b/img/misc/normal_apng/alley_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..d7236e58ddb9193a6c9c1fe5e0fd14e2a2f8fbbc
Binary files /dev/null and b/img/misc/normal_apng/alley_dusk.apng differ
diff --git a/img/misc/normal_apng/alley_night.apng b/img/misc/normal_apng/alley_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..3cd6480845d20c03747b734ab468d620eb983eb7
Binary files /dev/null and b/img/misc/normal_apng/alley_night.apng differ
diff --git a/img/misc/normal_apng/arcade_dawn.apng b/img/misc/normal_apng/arcade_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..cc8d5ac52e9d2ec398b10165af524c06323b0d23
Binary files /dev/null and b/img/misc/normal_apng/arcade_dawn.apng differ
diff --git a/img/misc/normal_apng/arcade_day.apng b/img/misc/normal_apng/arcade_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..fe995c4a8e688d47a077993b1115b39c5cb84778
Binary files /dev/null and b/img/misc/normal_apng/arcade_day.apng differ
diff --git a/img/misc/normal_apng/arcade_dusk.apng b/img/misc/normal_apng/arcade_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..fe995c4a8e688d47a077993b1115b39c5cb84778
Binary files /dev/null and b/img/misc/normal_apng/arcade_dusk.apng differ
diff --git a/img/misc/normal_apng/arcade_night.apng b/img/misc/normal_apng/arcade_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..db0c13444da269812b732647a646accd3707974c
Binary files /dev/null and b/img/misc/normal_apng/arcade_night.apng differ
diff --git a/img/misc/normal_apng/asylum_dawnslow.apng b/img/misc/normal_apng/asylum_dawnslow.apng
new file mode 100644
index 0000000000000000000000000000000000000000..178b2450cc73e344f820fe0b984cbd6524f5ac80
Binary files /dev/null and b/img/misc/normal_apng/asylum_dawnslow.apng differ
diff --git a/img/misc/normal_apng/asylum_dawnvfast.apng b/img/misc/normal_apng/asylum_dawnvfast.apng
new file mode 100644
index 0000000000000000000000000000000000000000..dfd0f4afa05d57d240d0d87d0b3321347153bc77
Binary files /dev/null and b/img/misc/normal_apng/asylum_dawnvfast.apng differ
diff --git a/img/misc/normal_apng/asylum_dayslow.apng b/img/misc/normal_apng/asylum_dayslow.apng
new file mode 100644
index 0000000000000000000000000000000000000000..db11090f9012048549938b9fca81a7230d25eb86
Binary files /dev/null and b/img/misc/normal_apng/asylum_dayslow.apng differ
diff --git a/img/misc/normal_apng/asylum_dayvfast.apng b/img/misc/normal_apng/asylum_dayvfast.apng
new file mode 100644
index 0000000000000000000000000000000000000000..1e9e04063ed36bca77c5c6d8fb2d87048c0c659f
Binary files /dev/null and b/img/misc/normal_apng/asylum_dayvfast.apng differ
diff --git a/img/misc/normal_apng/asylum_duskslow.apng b/img/misc/normal_apng/asylum_duskslow.apng
new file mode 100644
index 0000000000000000000000000000000000000000..178b2450cc73e344f820fe0b984cbd6524f5ac80
Binary files /dev/null and b/img/misc/normal_apng/asylum_duskslow.apng differ
diff --git a/img/misc/normal_apng/asylum_duskvfast.apng b/img/misc/normal_apng/asylum_duskvfast.apng
new file mode 100644
index 0000000000000000000000000000000000000000..81a04cf2e0f12f60205c0ec6687c085ddf4611d1
Binary files /dev/null and b/img/misc/normal_apng/asylum_duskvfast.apng differ
diff --git a/img/misc/normal_apng/asylum_nightslow.apng b/img/misc/normal_apng/asylum_nightslow.apng
new file mode 100644
index 0000000000000000000000000000000000000000..6cf4fdaf32b8efbea21018217f963ce18eee5231
Binary files /dev/null and b/img/misc/normal_apng/asylum_nightslow.apng differ
diff --git a/img/misc/normal_apng/asylum_nightvfast.apng b/img/misc/normal_apng/asylum_nightvfast.apng
new file mode 100644
index 0000000000000000000000000000000000000000..cb61abc56b705bd4a82353cbdbc2ef10321ad8bd
Binary files /dev/null and b/img/misc/normal_apng/asylum_nightvfast.apng differ
diff --git a/img/misc/normal_apng/beach_dawn.apng b/img/misc/normal_apng/beach_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..a3d5a7ab816b29fae901cf7c8000dfde6c7a2b14
Binary files /dev/null and b/img/misc/normal_apng/beach_dawn.apng differ
diff --git a/img/misc/normal_apng/beach_day.apng b/img/misc/normal_apng/beach_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..af7b1795ea808e682d904d35c459df6b6d07d6ec
Binary files /dev/null and b/img/misc/normal_apng/beach_day.apng differ
diff --git a/img/misc/normal_apng/beach_dusk.apng b/img/misc/normal_apng/beach_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..af7b1795ea808e682d904d35c459df6b6d07d6ec
Binary files /dev/null and b/img/misc/normal_apng/beach_dusk.apng differ
diff --git a/img/misc/normal_apng/beach_night.apng b/img/misc/normal_apng/beach_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..6cf7fcceadb315a6c05889d412653e7acd0e7cd2
Binary files /dev/null and b/img/misc/normal_apng/beach_night.apng differ
diff --git a/img/misc/normal_apng/boat_dawn.apng b/img/misc/normal_apng/boat_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..32e4d9ad4bcec3703e8b63dfab6121e9aae93234
Binary files /dev/null and b/img/misc/normal_apng/boat_dawn.apng differ
diff --git a/img/misc/normal_apng/boat_day.apng b/img/misc/normal_apng/boat_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..32e4d9ad4bcec3703e8b63dfab6121e9aae93234
Binary files /dev/null and b/img/misc/normal_apng/boat_day.apng differ
diff --git a/img/misc/normal_apng/boat_dusk.apng b/img/misc/normal_apng/boat_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..54bf6fb15e064d72942e969a713fb621c864fa90
Binary files /dev/null and b/img/misc/normal_apng/boat_dusk.apng differ
diff --git a/img/misc/normal_apng/boat_night.apng b/img/misc/normal_apng/boat_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..a53a98097544f73d47a6ab9fe8e1ed4a77e2397b
Binary files /dev/null and b/img/misc/normal_apng/boat_night.apng differ
diff --git a/img/misc/normal_apng/bog_bloodmoon.apng b/img/misc/normal_apng/bog_bloodmoon.apng
new file mode 100644
index 0000000000000000000000000000000000000000..cd1cdc94e64b8a25f74282c429aa97ed4b790300
Binary files /dev/null and b/img/misc/normal_apng/bog_bloodmoon.apng differ
diff --git a/img/misc/normal_apng/bog_dawn.apng b/img/misc/normal_apng/bog_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..e48674bc816272562003b4c3217588c724d24a1a
Binary files /dev/null and b/img/misc/normal_apng/bog_dawn.apng differ
diff --git a/img/misc/normal_apng/bog_day.apng b/img/misc/normal_apng/bog_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..bc6665be0da2b49f96c5dd3f0a62a1ccc0fa606d
Binary files /dev/null and b/img/misc/normal_apng/bog_day.apng differ
diff --git a/img/misc/normal_apng/bog_dusk.apng b/img/misc/normal_apng/bog_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..0295a94d58735b9a747f9fe5b86d75be76c425b2
Binary files /dev/null and b/img/misc/normal_apng/bog_dusk.apng differ
diff --git a/img/misc/normal_apng/bog_night.apng b/img/misc/normal_apng/bog_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b3f94d5600173cedc25eb36aaeba8e6a3ffcabae
Binary files /dev/null and b/img/misc/normal_apng/bog_night.apng differ
diff --git a/img/misc/normal_apng/brothel_dawn.apng b/img/misc/normal_apng/brothel_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..f1fd44d94a6f26807405df555a70ed7ba1bff521
Binary files /dev/null and b/img/misc/normal_apng/brothel_dawn.apng differ
diff --git a/img/misc/normal_apng/brothel_day.apng b/img/misc/normal_apng/brothel_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..666acec89444c1d35271b630f67cfb62a95d935a
Binary files /dev/null and b/img/misc/normal_apng/brothel_day.apng differ
diff --git a/img/misc/normal_apng/brothel_dusk.apng b/img/misc/normal_apng/brothel_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..666acec89444c1d35271b630f67cfb62a95d935a
Binary files /dev/null and b/img/misc/normal_apng/brothel_dusk.apng differ
diff --git a/img/misc/normal_apng/brothel_night.apng b/img/misc/normal_apng/brothel_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..8cd9ae06723b726dcefae54d6d622abe6e8d4706
Binary files /dev/null and b/img/misc/normal_apng/brothel_night.apng differ
diff --git a/img/misc/normal_apng/cabin_dawn.apng b/img/misc/normal_apng/cabin_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..01136fd151e80fe76a7aecd283c9e56fdd5bf9a4
Binary files /dev/null and b/img/misc/normal_apng/cabin_dawn.apng differ
diff --git a/img/misc/normal_apng/cabin_day.apng b/img/misc/normal_apng/cabin_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..ab50a126a10a1999d1f20b941cc6f330deeeaa84
Binary files /dev/null and b/img/misc/normal_apng/cabin_day.apng differ
diff --git a/img/misc/normal_apng/cabin_dusk.apng b/img/misc/normal_apng/cabin_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..4faae808dc52d329bb695a62c666326a7d3c3b8b
Binary files /dev/null and b/img/misc/normal_apng/cabin_dusk.apng differ
diff --git a/img/misc/normal_apng/cabin_night.apng b/img/misc/normal_apng/cabin_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..32fdb747fed3dadd5f357e7f1cab97c0788edd20
Binary files /dev/null and b/img/misc/normal_apng/cabin_night.apng differ
diff --git a/img/misc/normal_apng/cafe_construction_dawn.apng b/img/misc/normal_apng/cafe_construction_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..adc67a893c7229fb63e5590b6a8197bae99da991
Binary files /dev/null and b/img/misc/normal_apng/cafe_construction_dawn.apng differ
diff --git a/img/misc/normal_apng/cafe_construction_day.apng b/img/misc/normal_apng/cafe_construction_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..e425b6fa54a641aa0b893cd6bef219999d557fbd
Binary files /dev/null and b/img/misc/normal_apng/cafe_construction_day.apng differ
diff --git a/img/misc/normal_apng/cafe_construction_dusk.apng b/img/misc/normal_apng/cafe_construction_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..027e626a3215e3aa920497c2ce3344ddf42c0f91
Binary files /dev/null and b/img/misc/normal_apng/cafe_construction_dusk.apng differ
diff --git a/img/misc/normal_apng/cafe_construction_night.apng b/img/misc/normal_apng/cafe_construction_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..73b9a67db99dc2dada02107b48543dca95e4bfb1
Binary files /dev/null and b/img/misc/normal_apng/cafe_construction_night.apng differ
diff --git a/img/misc/normal_apng/cafe_dawn.apng b/img/misc/normal_apng/cafe_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..f059c52efef1e95003986fa5d63d781913da5308
Binary files /dev/null and b/img/misc/normal_apng/cafe_dawn.apng differ
diff --git a/img/misc/normal_apng/cafe_day.apng b/img/misc/normal_apng/cafe_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..c0861aee28cf8618e1dab134bee7205d6ff757a5
Binary files /dev/null and b/img/misc/normal_apng/cafe_day.apng differ
diff --git a/img/misc/normal_apng/cafe_dusk.apng b/img/misc/normal_apng/cafe_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..31ba7ce3bb58dfbdd49aef1f762db028c9596f5f
Binary files /dev/null and b/img/misc/normal_apng/cafe_dusk.apng differ
diff --git a/img/misc/normal_apng/cafe_night.apng b/img/misc/normal_apng/cafe_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..1389903ebb95a6197dcafee002a63ee6305832b7
Binary files /dev/null and b/img/misc/normal_apng/cafe_night.apng differ
diff --git a/img/misc/normal_apng/cafe_renovated_dawn.apng b/img/misc/normal_apng/cafe_renovated_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..bdf10eb7ade70b25405d8eb60f22a30e4827f77f
Binary files /dev/null and b/img/misc/normal_apng/cafe_renovated_dawn.apng differ
diff --git a/img/misc/normal_apng/cafe_renovated_day.apng b/img/misc/normal_apng/cafe_renovated_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..6aaa184eec5b15c3cac798b81a21159d4629cbbb
Binary files /dev/null and b/img/misc/normal_apng/cafe_renovated_day.apng differ
diff --git a/img/misc/normal_apng/cafe_renovated_dusk.apng b/img/misc/normal_apng/cafe_renovated_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..f77113ef0422ed0bf602627abbdb6651e2e6038b
Binary files /dev/null and b/img/misc/normal_apng/cafe_renovated_dusk.apng differ
diff --git a/img/misc/normal_apng/cafe_renovated_night.apng b/img/misc/normal_apng/cafe_renovated_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..4d8cfcb93ede348a73355557e0cccd785dd90b46
Binary files /dev/null and b/img/misc/normal_apng/cafe_renovated_night.apng differ
diff --git a/img/misc/normal_apng/canal_dawn.apng b/img/misc/normal_apng/canal_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..1275b712759d5ddcaa7b0f5bb85a352fba33823d
Binary files /dev/null and b/img/misc/normal_apng/canal_dawn.apng differ
diff --git a/img/misc/normal_apng/canal_day.apng b/img/misc/normal_apng/canal_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..fb0104659fba278235808c59363c146ac8660e9f
Binary files /dev/null and b/img/misc/normal_apng/canal_day.apng differ
diff --git a/img/misc/normal_apng/canal_dusk.apng b/img/misc/normal_apng/canal_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..87a9ddbb81ce9ecf58a803245a9dba3afb4f25c1
Binary files /dev/null and b/img/misc/normal_apng/canal_dusk.apng differ
diff --git a/img/misc/normal_apng/canal_night.apng b/img/misc/normal_apng/canal_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..57bfd106dcd4d012ac4324cc48234dd55a86d61c
Binary files /dev/null and b/img/misc/normal_apng/canal_night.apng differ
diff --git a/img/misc/normal_apng/churchyard_dawn.apng b/img/misc/normal_apng/churchyard_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..142337f06f0dc38a1966db7a657046072ca3ebd0
Binary files /dev/null and b/img/misc/normal_apng/churchyard_dawn.apng differ
diff --git a/img/misc/normal_apng/churchyard_day.apng b/img/misc/normal_apng/churchyard_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..87ae927e15ac258c3a171f782ff30e37b3aa433b
Binary files /dev/null and b/img/misc/normal_apng/churchyard_day.apng differ
diff --git a/img/misc/normal_apng/churchyard_dusk.apng b/img/misc/normal_apng/churchyard_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..89d0e4472a1078db4d9261c3fb9fd0639bd203b1
Binary files /dev/null and b/img/misc/normal_apng/churchyard_dusk.apng differ
diff --git a/img/misc/normal_apng/churchyard_night.apng b/img/misc/normal_apng/churchyard_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..a4e7e4c82146152d72338be120d4ae86841341e1
Binary files /dev/null and b/img/misc/normal_apng/churchyard_night.apng differ
diff --git a/img/misc/normal_apng/compound_dawn.apng b/img/misc/normal_apng/compound_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..49f7850f5eaa34133cff7edaba93895ee6551eeb
Binary files /dev/null and b/img/misc/normal_apng/compound_dawn.apng differ
diff --git a/img/misc/normal_apng/compound_day.apng b/img/misc/normal_apng/compound_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..1f68c9838670207cf1feae74ba6354bac3ce64d8
Binary files /dev/null and b/img/misc/normal_apng/compound_day.apng differ
diff --git a/img/misc/normal_apng/compound_dusk.apng b/img/misc/normal_apng/compound_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b5147a421f7db82e10daacaa74addf111b9a88e3
Binary files /dev/null and b/img/misc/normal_apng/compound_dusk.apng differ
diff --git a/img/misc/normal_apng/compound_night.apng b/img/misc/normal_apng/compound_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b6cfaabbf936269b1d2d483e050de94cca406e29
Binary files /dev/null and b/img/misc/normal_apng/compound_night.apng differ
diff --git a/img/misc/normal_apng/convert.txt b/img/misc/normal_apng/convert.txt
new file mode 100644
index 0000000000000000000000000000000000000000..1b8f3ece05d3fb45529f7056b0d8f2a85b40ea7c
--- /dev/null
+++ b/img/misc/normal_apng/convert.txt
@@ -0,0 +1,3 @@
+for %i in (*.gif) do ffmpeg -i "%i" -plays 0 "F:\Modding\DoL3\img\misc\normal\apng\%~ni.apng
+
+for %i in (*.png) do ffmpeg -i "%i" "F:\Modding\DoL3\img\misc\normal\apng\%~ni.apng  
\ No newline at end of file
diff --git a/img/misc/normal_apng/dance_studio_dawn.apng b/img/misc/normal_apng/dance_studio_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..50053fe0afab2a8cfbcf3750b673f9804cc2ac51
Binary files /dev/null and b/img/misc/normal_apng/dance_studio_dawn.apng differ
diff --git a/img/misc/normal_apng/dance_studio_day.apng b/img/misc/normal_apng/dance_studio_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..f7de758d424d83a07c44e1f898a85769b29213af
Binary files /dev/null and b/img/misc/normal_apng/dance_studio_day.apng differ
diff --git a/img/misc/normal_apng/dance_studio_dusk.apng b/img/misc/normal_apng/dance_studio_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..f7de758d424d83a07c44e1f898a85769b29213af
Binary files /dev/null and b/img/misc/normal_apng/dance_studio_dusk.apng differ
diff --git a/img/misc/normal_apng/dance_studio_night.apng b/img/misc/normal_apng/dance_studio_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..0b3fb7192e834d5bc695e0a07ccbef28b8cbac9e
Binary files /dev/null and b/img/misc/normal_apng/dance_studio_night.apng differ
diff --git a/img/misc/normal_apng/dilapidated_shop_dawn.apng b/img/misc/normal_apng/dilapidated_shop_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..9ca5a1449f3c8e25fd76821eef9f091dc9589a78
Binary files /dev/null and b/img/misc/normal_apng/dilapidated_shop_dawn.apng differ
diff --git a/img/misc/normal_apng/dilapidated_shop_day.apng b/img/misc/normal_apng/dilapidated_shop_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..f6bc6408573df5a0ecd98d5ca1dbf6738287c4d0
Binary files /dev/null and b/img/misc/normal_apng/dilapidated_shop_day.apng differ
diff --git a/img/misc/normal_apng/dilapidated_shop_dusk.apng b/img/misc/normal_apng/dilapidated_shop_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..fb2481ba0f551757121ec34790566c505ba7d531
Binary files /dev/null and b/img/misc/normal_apng/dilapidated_shop_dusk.apng differ
diff --git a/img/misc/normal_apng/dilapidated_shop_night.apng b/img/misc/normal_apng/dilapidated_shop_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..3b00f97f528d4f31ecadec188d20d3ccb61fc805
Binary files /dev/null and b/img/misc/normal_apng/dilapidated_shop_night.apng differ
diff --git a/img/misc/normal_apng/docks_dawn.apng b/img/misc/normal_apng/docks_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..20bbd21cce05742bf4ddd0d1670f768c6ed87546
Binary files /dev/null and b/img/misc/normal_apng/docks_dawn.apng differ
diff --git a/img/misc/normal_apng/docks_day.apng b/img/misc/normal_apng/docks_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..1bc465a9706f89297f3b56fb75e17d1213d13464
Binary files /dev/null and b/img/misc/normal_apng/docks_day.apng differ
diff --git a/img/misc/normal_apng/docks_dusk.apng b/img/misc/normal_apng/docks_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b9b4b7235805b45dac76c986bf6632f42246c584
Binary files /dev/null and b/img/misc/normal_apng/docks_dusk.apng differ
diff --git a/img/misc/normal_apng/docks_night.apng b/img/misc/normal_apng/docks_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..fe822189e96189a477c4ef5f2c1596c7c3312c59
Binary files /dev/null and b/img/misc/normal_apng/docks_night.apng differ
diff --git a/img/misc/normal_apng/dog_pound_dawn.apng b/img/misc/normal_apng/dog_pound_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..7539e4b804f1961f0da4fdc42bace818c88764fb
Binary files /dev/null and b/img/misc/normal_apng/dog_pound_dawn.apng differ
diff --git a/img/misc/normal_apng/dog_pound_day.apng b/img/misc/normal_apng/dog_pound_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..fbebf5061773b7bc0b6ff1b6f3eb7fc0b3e17132
Binary files /dev/null and b/img/misc/normal_apng/dog_pound_day.apng differ
diff --git a/img/misc/normal_apng/dog_pound_dusk.apng b/img/misc/normal_apng/dog_pound_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..7539e4b804f1961f0da4fdc42bace818c88764fb
Binary files /dev/null and b/img/misc/normal_apng/dog_pound_dusk.apng differ
diff --git a/img/misc/normal_apng/dog_pound_night.apng b/img/misc/normal_apng/dog_pound_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..a10d23f37fdb058b9336616243c5578c5a51a5b8
Binary files /dev/null and b/img/misc/normal_apng/dog_pound_night.apng differ
diff --git a/img/misc/normal_apng/drain.apng b/img/misc/normal_apng/drain.apng
new file mode 100644
index 0000000000000000000000000000000000000000..e9eb43caf34cd38e3968a46fceab6b9aa098bc7c
Binary files /dev/null and b/img/misc/normal_apng/drain.apng differ
diff --git a/img/misc/normal_apng/factory_dawn.apng b/img/misc/normal_apng/factory_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..bebddde9f49fe46c53ecc473d3e407d38e2efe6a
Binary files /dev/null and b/img/misc/normal_apng/factory_dawn.apng differ
diff --git a/img/misc/normal_apng/factory_day.apng b/img/misc/normal_apng/factory_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..ba6a76f2afc263239e6990fc17a4dd1f899a4fc4
Binary files /dev/null and b/img/misc/normal_apng/factory_day.apng differ
diff --git a/img/misc/normal_apng/factory_dusk.apng b/img/misc/normal_apng/factory_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..41a3282fac53734aa2b22826b6f5b27dd23879a1
Binary files /dev/null and b/img/misc/normal_apng/factory_dusk.apng differ
diff --git a/img/misc/normal_apng/factory_night.apng b/img/misc/normal_apng/factory_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..a43e02b1c0d46bd86c46b352b1ca8f31fc60d3d2
Binary files /dev/null and b/img/misc/normal_apng/factory_night.apng differ
diff --git a/img/misc/normal_apng/farm_dawn.apng b/img/misc/normal_apng/farm_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..bfe4bd0985a2ea42af609fcb4aa53a764f6f4ab3
Binary files /dev/null and b/img/misc/normal_apng/farm_dawn.apng differ
diff --git a/img/misc/normal_apng/farm_day.apng b/img/misc/normal_apng/farm_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..424f565a5b9c1b9dfb3c3ad924b9b71f3c8886bd
Binary files /dev/null and b/img/misc/normal_apng/farm_day.apng differ
diff --git a/img/misc/normal_apng/farm_dusk.apng b/img/misc/normal_apng/farm_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..dd3b1bc11c98b4aa8971a196b04a3a3be465a273
Binary files /dev/null and b/img/misc/normal_apng/farm_dusk.apng differ
diff --git a/img/misc/normal_apng/farm_night.apng b/img/misc/normal_apng/farm_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..0805eb264cfcb4e1443d98591fd492b1d0f5b01f
Binary files /dev/null and b/img/misc/normal_apng/farm_night.apng differ
diff --git a/img/misc/normal_apng/flats_dawn.apng b/img/misc/normal_apng/flats_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..cdc35e352c91b4d01d87f7094db9bb8544bbd4fd
Binary files /dev/null and b/img/misc/normal_apng/flats_dawn.apng differ
diff --git a/img/misc/normal_apng/flats_day.apng b/img/misc/normal_apng/flats_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..50d736eade8afa0ed8bbfac8e7de6fe75800ad55
Binary files /dev/null and b/img/misc/normal_apng/flats_day.apng differ
diff --git a/img/misc/normal_apng/flats_dusk.apng b/img/misc/normal_apng/flats_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..71c1a6bf983473ebd6a0aa0250cbe19bb352434c
Binary files /dev/null and b/img/misc/normal_apng/flats_dusk.apng differ
diff --git a/img/misc/normal_apng/flats_night.apng b/img/misc/normal_apng/flats_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..17b4398b2c1273595e3e7056e5df7709dc532da2
Binary files /dev/null and b/img/misc/normal_apng/flats_night.apng differ
diff --git a/img/misc/normal_apng/forest_bloodmoon.apng b/img/misc/normal_apng/forest_bloodmoon.apng
new file mode 100644
index 0000000000000000000000000000000000000000..67f7eb64ce819e48b28fa0491294a38b5fc71c7b
Binary files /dev/null and b/img/misc/normal_apng/forest_bloodmoon.apng differ
diff --git a/img/misc/normal_apng/forest_dawn.apng b/img/misc/normal_apng/forest_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..e351bfce9ad5061a54b1586f2eeee26bcf73d35d
Binary files /dev/null and b/img/misc/normal_apng/forest_dawn.apng differ
diff --git a/img/misc/normal_apng/forest_day.apng b/img/misc/normal_apng/forest_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..47dd9dcf686dbdf42777a0c00e37b976dc1d2490
Binary files /dev/null and b/img/misc/normal_apng/forest_day.apng differ
diff --git a/img/misc/normal_apng/forest_dusk.apng b/img/misc/normal_apng/forest_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..74bc8bd74d2e280b65038e82ec575fc62bd23ff2
Binary files /dev/null and b/img/misc/normal_apng/forest_dusk.apng differ
diff --git a/img/misc/normal_apng/forest_night.apng b/img/misc/normal_apng/forest_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b5747cb85dc1050badcd87866e05650d970b1bf3
Binary files /dev/null and b/img/misc/normal_apng/forest_night.apng differ
diff --git a/img/misc/normal_apng/forest_shop_dawn.apng b/img/misc/normal_apng/forest_shop_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..1df409793e61bb45641dc2f6f9f8b5cc1f2e474d
Binary files /dev/null and b/img/misc/normal_apng/forest_shop_dawn.apng differ
diff --git a/img/misc/normal_apng/forest_shop_day.apng b/img/misc/normal_apng/forest_shop_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..4fc5e7deecff8c7241cc1ef8245a1c7c637b2412
Binary files /dev/null and b/img/misc/normal_apng/forest_shop_day.apng differ
diff --git a/img/misc/normal_apng/forest_shop_dusk.apng b/img/misc/normal_apng/forest_shop_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..68502168fd42cf6921e27626733860c0148ec435
Binary files /dev/null and b/img/misc/normal_apng/forest_shop_dusk.apng differ
diff --git a/img/misc/normal_apng/forest_shop_night.apng b/img/misc/normal_apng/forest_shop_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..364a9c0531832ef68de9a55049ef17ffe93db8b0
Binary files /dev/null and b/img/misc/normal_apng/forest_shop_night.apng differ
diff --git a/img/misc/normal_apng/home_bloodmoon.apng b/img/misc/normal_apng/home_bloodmoon.apng
new file mode 100644
index 0000000000000000000000000000000000000000..5d22cfa79c0c3d201251df0e7f33151d1d625f99
Binary files /dev/null and b/img/misc/normal_apng/home_bloodmoon.apng differ
diff --git a/img/misc/normal_apng/home_dawn.apng b/img/misc/normal_apng/home_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..661156bf6a575e6d02d426440038a31fc49caa8b
Binary files /dev/null and b/img/misc/normal_apng/home_dawn.apng differ
diff --git a/img/misc/normal_apng/home_day.apng b/img/misc/normal_apng/home_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..54c2d5be7248f732de8598595543cef6edc8a3c5
Binary files /dev/null and b/img/misc/normal_apng/home_day.apng differ
diff --git a/img/misc/normal_apng/home_dusk.apng b/img/misc/normal_apng/home_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..661156bf6a575e6d02d426440038a31fc49caa8b
Binary files /dev/null and b/img/misc/normal_apng/home_dusk.apng differ
diff --git a/img/misc/normal_apng/home_night.apng b/img/misc/normal_apng/home_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..7573aa0a351db1f11cda052e933c99751fc26637
Binary files /dev/null and b/img/misc/normal_apng/home_night.apng differ
diff --git a/img/misc/normal_apng/hospital_dawn.apng b/img/misc/normal_apng/hospital_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..bfabe52d69e0d5c423a94bdccdf56cd477035d85
Binary files /dev/null and b/img/misc/normal_apng/hospital_dawn.apng differ
diff --git a/img/misc/normal_apng/hospital_day.apng b/img/misc/normal_apng/hospital_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..bfabe52d69e0d5c423a94bdccdf56cd477035d85
Binary files /dev/null and b/img/misc/normal_apng/hospital_day.apng differ
diff --git a/img/misc/normal_apng/hospital_dusk.apng b/img/misc/normal_apng/hospital_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..bfabe52d69e0d5c423a94bdccdf56cd477035d85
Binary files /dev/null and b/img/misc/normal_apng/hospital_dusk.apng differ
diff --git a/img/misc/normal_apng/hospital_night.apng b/img/misc/normal_apng/hospital_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..993b84e894392c4d9a2b7c831f61188d95e01888
Binary files /dev/null and b/img/misc/normal_apng/hospital_night.apng differ
diff --git a/img/misc/normal_apng/indust_alley_bloodmoon.apng b/img/misc/normal_apng/indust_alley_bloodmoon.apng
new file mode 100644
index 0000000000000000000000000000000000000000..3d91aa7dbc4fddaef6764508260e727fcd22914a
Binary files /dev/null and b/img/misc/normal_apng/indust_alley_bloodmoon.apng differ
diff --git a/img/misc/normal_apng/indust_alley_dawn.apng b/img/misc/normal_apng/indust_alley_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..5ad9b114468a5e631f6767e8b9c7b2e3c41d29b8
Binary files /dev/null and b/img/misc/normal_apng/indust_alley_dawn.apng differ
diff --git a/img/misc/normal_apng/indust_alley_day.apng b/img/misc/normal_apng/indust_alley_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..89e6b18baa30d3eeeb50565b229fdd65ede19b12
Binary files /dev/null and b/img/misc/normal_apng/indust_alley_day.apng differ
diff --git a/img/misc/normal_apng/indust_alley_dusk.apng b/img/misc/normal_apng/indust_alley_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..04ba1d698fbc1cff2ec08e5b9509e535aa9307d2
Binary files /dev/null and b/img/misc/normal_apng/indust_alley_dusk.apng differ
diff --git a/img/misc/normal_apng/indust_alley_night.apng b/img/misc/normal_apng/indust_alley_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..454ce88813019bb2600f647b026430a0e5f64c22
Binary files /dev/null and b/img/misc/normal_apng/indust_alley_night.apng differ
diff --git a/img/misc/normal_apng/island_dawn.apng b/img/misc/normal_apng/island_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b1bbbed0659b06e9e86780931a04714900a2fcaa
Binary files /dev/null and b/img/misc/normal_apng/island_dawn.apng differ
diff --git a/img/misc/normal_apng/island_day.apng b/img/misc/normal_apng/island_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b1bbbed0659b06e9e86780931a04714900a2fcaa
Binary files /dev/null and b/img/misc/normal_apng/island_day.apng differ
diff --git a/img/misc/normal_apng/island_dusk.apng b/img/misc/normal_apng/island_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..30be5d4cc70406cd082d40d3cd60d40471391ec1
Binary files /dev/null and b/img/misc/normal_apng/island_dusk.apng differ
diff --git a/img/misc/normal_apng/island_night.apng b/img/misc/normal_apng/island_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..225799c4900ca4776f9e9877ec04bf16df027a0a
Binary files /dev/null and b/img/misc/normal_apng/island_night.apng differ
diff --git a/img/misc/normal_apng/kylar_manor_dawn.apng b/img/misc/normal_apng/kylar_manor_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..465597de17877af76eb0b329f260f0c7af3d2216
Binary files /dev/null and b/img/misc/normal_apng/kylar_manor_dawn.apng differ
diff --git a/img/misc/normal_apng/kylar_manor_day.apng b/img/misc/normal_apng/kylar_manor_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..17b5cd13695c6c2543507e54c03ddcc46224240c
Binary files /dev/null and b/img/misc/normal_apng/kylar_manor_day.apng differ
diff --git a/img/misc/normal_apng/kylar_manor_dusk.apng b/img/misc/normal_apng/kylar_manor_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..bfd7323b5bc3cf6ec2da8a731a58c006e1026225
Binary files /dev/null and b/img/misc/normal_apng/kylar_manor_dusk.apng differ
diff --git a/img/misc/normal_apng/kylar_manor_night.apng b/img/misc/normal_apng/kylar_manor_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..fc35c8f9d3101adafc181a405fda4f55087e7a27
Binary files /dev/null and b/img/misc/normal_apng/kylar_manor_night.apng differ
diff --git a/img/misc/normal_apng/lake_bloodmoon.apng b/img/misc/normal_apng/lake_bloodmoon.apng
new file mode 100644
index 0000000000000000000000000000000000000000..fe7cebc9ac35998c6eba71b71c4b69253148138d
Binary files /dev/null and b/img/misc/normal_apng/lake_bloodmoon.apng differ
diff --git a/img/misc/normal_apng/lake_dawn.apng b/img/misc/normal_apng/lake_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..f8e3015017032fa5c43c3d1af6d5b34816ddd26d
Binary files /dev/null and b/img/misc/normal_apng/lake_dawn.apng differ
diff --git a/img/misc/normal_apng/lake_day.apng b/img/misc/normal_apng/lake_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..958e5bf62856d729a2fca431c32dec978512a860
Binary files /dev/null and b/img/misc/normal_apng/lake_day.apng differ
diff --git a/img/misc/normal_apng/lake_dusk.apng b/img/misc/normal_apng/lake_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..5332c02c58dc0f6a133e3563f36113e16ec5d801
Binary files /dev/null and b/img/misc/normal_apng/lake_dusk.apng differ
diff --git a/img/misc/normal_apng/lake_night.apng b/img/misc/normal_apng/lake_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..ac4f4672f546d92fa35f3d74d80b308b4ad2e572
Binary files /dev/null and b/img/misc/normal_apng/lake_night.apng differ
diff --git a/img/misc/normal_apng/landfill_dawn.apng b/img/misc/normal_apng/landfill_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..426b0c725e49c96b2ab8ef4236832b4e0ab155b2
Binary files /dev/null and b/img/misc/normal_apng/landfill_dawn.apng differ
diff --git a/img/misc/normal_apng/landfill_day.apng b/img/misc/normal_apng/landfill_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..737c398b48b66bf24382d1f1de3d5e226291ce9a
Binary files /dev/null and b/img/misc/normal_apng/landfill_day.apng differ
diff --git a/img/misc/normal_apng/landfill_dusk.apng b/img/misc/normal_apng/landfill_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..8b6368f62af7d1f2accfe3bf24352d316a8eece8
Binary files /dev/null and b/img/misc/normal_apng/landfill_dusk.apng differ
diff --git a/img/misc/normal_apng/landfill_night.apng b/img/misc/normal_apng/landfill_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..af03acf2551cbe2b2b0091e819868f83b0d6f045
Binary files /dev/null and b/img/misc/normal_apng/landfill_night.apng differ
diff --git a/img/misc/normal_apng/meadow_dawn.apng b/img/misc/normal_apng/meadow_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..5959b2a6d4a53ca2f4bb1b10ed8d0c1510d17c40
Binary files /dev/null and b/img/misc/normal_apng/meadow_dawn.apng differ
diff --git a/img/misc/normal_apng/meadow_day.apng b/img/misc/normal_apng/meadow_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..5959b2a6d4a53ca2f4bb1b10ed8d0c1510d17c40
Binary files /dev/null and b/img/misc/normal_apng/meadow_day.apng differ
diff --git a/img/misc/normal_apng/meadow_dusk.apng b/img/misc/normal_apng/meadow_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..aa67ce931cce5a56e2f7809dbf2e2beb3c1a54b6
Binary files /dev/null and b/img/misc/normal_apng/meadow_dusk.apng differ
diff --git a/img/misc/normal_apng/meadow_night.apng b/img/misc/normal_apng/meadow_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..92de907c4512929d12e594ea52d1b1cd8471c61d
Binary files /dev/null and b/img/misc/normal_apng/meadow_night.apng differ
diff --git a/img/misc/normal_apng/moor_dawn.apng b/img/misc/normal_apng/moor_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..175c5190508b06b71163f8b0c939a1e8f844a86a
Binary files /dev/null and b/img/misc/normal_apng/moor_dawn.apng differ
diff --git a/img/misc/normal_apng/moor_day.apng b/img/misc/normal_apng/moor_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..1573105a6e6b24ac4ef8e797c7874e18fe5b1a3e
Binary files /dev/null and b/img/misc/normal_apng/moor_day.apng differ
diff --git a/img/misc/normal_apng/moor_dusk.apng b/img/misc/normal_apng/moor_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..43c94ccefa92a4af72fca64f8783a009f8737921
Binary files /dev/null and b/img/misc/normal_apng/moor_dusk.apng differ
diff --git a/img/misc/normal_apng/moor_night.apng b/img/misc/normal_apng/moor_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..80e863917ad812db4792d1ae7b70fbcfafc68d8b
Binary files /dev/null and b/img/misc/normal_apng/moor_night.apng differ
diff --git a/img/misc/normal_apng/museum_dawn.apng b/img/misc/normal_apng/museum_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..66636dae98424392c1bcae001827901d4115fda4
Binary files /dev/null and b/img/misc/normal_apng/museum_dawn.apng differ
diff --git a/img/misc/normal_apng/museum_day.apng b/img/misc/normal_apng/museum_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..138e19991e1c5791f3bf94bb73cfac2d0c2fee46
Binary files /dev/null and b/img/misc/normal_apng/museum_day.apng differ
diff --git a/img/misc/normal_apng/museum_dusk.apng b/img/misc/normal_apng/museum_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..6cd8cf173b0f3cd5135ff82dc2e6ba177bc51612
Binary files /dev/null and b/img/misc/normal_apng/museum_dusk.apng differ
diff --git a/img/misc/normal_apng/museum_night.apng b/img/misc/normal_apng/museum_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..a84bd502bb048f619f925a794a74457df366e883
Binary files /dev/null and b/img/misc/normal_apng/museum_night.apng differ
diff --git a/img/misc/normal_apng/night_monster_lair_dawn.apng b/img/misc/normal_apng/night_monster_lair_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..3b90606dc0ec9c96784b75cfda600f8f8e49b927
Binary files /dev/null and b/img/misc/normal_apng/night_monster_lair_dawn.apng differ
diff --git a/img/misc/normal_apng/night_monster_lair_day.apng b/img/misc/normal_apng/night_monster_lair_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..e0c06a812b06e72a82280edf02939ccfd3082557
Binary files /dev/null and b/img/misc/normal_apng/night_monster_lair_day.apng differ
diff --git a/img/misc/normal_apng/night_monster_lair_dusk.apng b/img/misc/normal_apng/night_monster_lair_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..11242d508b9dc1799ba15b0fdce55835ff9f85a0
Binary files /dev/null and b/img/misc/normal_apng/night_monster_lair_dusk.apng differ
diff --git a/img/misc/normal_apng/night_monster_lair_night.apng b/img/misc/normal_apng/night_monster_lair_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..85507d73fbbb87ce076e620944640b48eabf12a0
Binary files /dev/null and b/img/misc/normal_apng/night_monster_lair_night.apng differ
diff --git a/img/misc/normal_apng/ocean_dawn.apng b/img/misc/normal_apng/ocean_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..8e4c6f47fc632da607753f9f624d0dd8ee1c5e48
Binary files /dev/null and b/img/misc/normal_apng/ocean_dawn.apng differ
diff --git a/img/misc/normal_apng/ocean_day.apng b/img/misc/normal_apng/ocean_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..37925fe05fae37d66e768f9295181e7356c619c5
Binary files /dev/null and b/img/misc/normal_apng/ocean_day.apng differ
diff --git a/img/misc/normal_apng/ocean_dusk.apng b/img/misc/normal_apng/ocean_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..2b5cd165d46253d447ef771bfcb509962244ee89
Binary files /dev/null and b/img/misc/normal_apng/ocean_dusk.apng differ
diff --git a/img/misc/normal_apng/ocean_night.apng b/img/misc/normal_apng/ocean_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..a2e831e756759973f52eb52448d0a591c24d0b56
Binary files /dev/null and b/img/misc/normal_apng/ocean_night.apng differ
diff --git a/img/misc/normal_apng/office_dawn.apng b/img/misc/normal_apng/office_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..ebfa87a0b95b8530999507d608132cb7a2db24ef
Binary files /dev/null and b/img/misc/normal_apng/office_dawn.apng differ
diff --git a/img/misc/normal_apng/office_day.apng b/img/misc/normal_apng/office_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..dc587b2d8075f5b1e808e1d84507de8f3e18bc02
Binary files /dev/null and b/img/misc/normal_apng/office_day.apng differ
diff --git a/img/misc/normal_apng/office_dusk.apng b/img/misc/normal_apng/office_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..dc587b2d8075f5b1e808e1d84507de8f3e18bc02
Binary files /dev/null and b/img/misc/normal_apng/office_dusk.apng differ
diff --git a/img/misc/normal_apng/office_night.apng b/img/misc/normal_apng/office_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..51b504770f60a6202596b4d543a13bfd8c4cc01a
Binary files /dev/null and b/img/misc/normal_apng/office_night.apng differ
diff --git a/img/misc/normal_apng/park_bloodmoon.apng b/img/misc/normal_apng/park_bloodmoon.apng
new file mode 100644
index 0000000000000000000000000000000000000000..2f6db0381241f63ad67441591dbbbae75f9f7372
Binary files /dev/null and b/img/misc/normal_apng/park_bloodmoon.apng differ
diff --git a/img/misc/normal_apng/park_dawn.apng b/img/misc/normal_apng/park_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..53271061b094de8c1ebc58736ee0f3b6ab7baeb0
Binary files /dev/null and b/img/misc/normal_apng/park_dawn.apng differ
diff --git a/img/misc/normal_apng/park_day.apng b/img/misc/normal_apng/park_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..51d8c98076160ce279b2092b14cbaaace29e64a1
Binary files /dev/null and b/img/misc/normal_apng/park_day.apng differ
diff --git a/img/misc/normal_apng/park_dusk.apng b/img/misc/normal_apng/park_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..9e80aac276325e4d4345eed4d33f8ec6eeb052cd
Binary files /dev/null and b/img/misc/normal_apng/park_dusk.apng differ
diff --git a/img/misc/normal_apng/park_night.apng b/img/misc/normal_apng/park_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..afedd599364c50a446db22a2670de14de5db7d76
Binary files /dev/null and b/img/misc/normal_apng/park_night.apng differ
diff --git a/img/misc/normal_apng/police_station_dawn.apng b/img/misc/normal_apng/police_station_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..d16ad28e7786eba1ed94360245bc41fd30f0f2f7
Binary files /dev/null and b/img/misc/normal_apng/police_station_dawn.apng differ
diff --git a/img/misc/normal_apng/police_station_day.apng b/img/misc/normal_apng/police_station_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..93df90161ec68abe72382af105c3223f99295091
Binary files /dev/null and b/img/misc/normal_apng/police_station_day.apng differ
diff --git a/img/misc/normal_apng/police_station_dusk.apng b/img/misc/normal_apng/police_station_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..505453ec88d3cf6ea894a2e997c099527a120f34
Binary files /dev/null and b/img/misc/normal_apng/police_station_dusk.apng differ
diff --git a/img/misc/normal_apng/police_station_night.apng b/img/misc/normal_apng/police_station_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..55aed3b2fe90b0a75df57f5ca55aba2077983b00
Binary files /dev/null and b/img/misc/normal_apng/police_station_night.apng differ
diff --git a/img/misc/normal_apng/pool_dawn.apng b/img/misc/normal_apng/pool_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..6251acc6e57205a7735c95a4de0512ccf7d947cd
Binary files /dev/null and b/img/misc/normal_apng/pool_dawn.apng differ
diff --git a/img/misc/normal_apng/pool_day.apng b/img/misc/normal_apng/pool_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..6251acc6e57205a7735c95a4de0512ccf7d947cd
Binary files /dev/null and b/img/misc/normal_apng/pool_day.apng differ
diff --git a/img/misc/normal_apng/pool_dusk.apng b/img/misc/normal_apng/pool_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..8ff255c0eec195222a3e5b4e8f2c8c51632cdf2f
Binary files /dev/null and b/img/misc/normal_apng/pool_dusk.apng differ
diff --git a/img/misc/normal_apng/pool_night.apng b/img/misc/normal_apng/pool_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..125fb3606bedc7d35447362bcd264df010491dbd
Binary files /dev/null and b/img/misc/normal_apng/pool_night.apng differ
diff --git a/img/misc/normal_apng/prison_bloodmoon.apng b/img/misc/normal_apng/prison_bloodmoon.apng
new file mode 100644
index 0000000000000000000000000000000000000000..681993b71ea478d379a174f6412a8a26bd27cf77
Binary files /dev/null and b/img/misc/normal_apng/prison_bloodmoon.apng differ
diff --git a/img/misc/normal_apng/prison_dawn.apng b/img/misc/normal_apng/prison_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..31867df85a45bcda82c54a80f97bbcbe0158bd39
Binary files /dev/null and b/img/misc/normal_apng/prison_dawn.apng differ
diff --git a/img/misc/normal_apng/prison_day.apng b/img/misc/normal_apng/prison_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..a5c506d506d3e5e9b49aadc74a017d9daf188343
Binary files /dev/null and b/img/misc/normal_apng/prison_day.apng differ
diff --git a/img/misc/normal_apng/prison_dusk.apng b/img/misc/normal_apng/prison_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b396cc4c722268ac763733e5fc0c6e046843ca4d
Binary files /dev/null and b/img/misc/normal_apng/prison_dusk.apng differ
diff --git a/img/misc/normal_apng/prison_night.apng b/img/misc/normal_apng/prison_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..2d1441bbf378ae551120892761e4494cc3b0d12a
Binary files /dev/null and b/img/misc/normal_apng/prison_night.apng differ
diff --git a/img/misc/normal_apng/promenade_beach_dawn.apng b/img/misc/normal_apng/promenade_beach_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..ee0955d1ae250b13cceffc56eab43ab33173231a
Binary files /dev/null and b/img/misc/normal_apng/promenade_beach_dawn.apng differ
diff --git a/img/misc/normal_apng/promenade_beach_day.apng b/img/misc/normal_apng/promenade_beach_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..8916e1d98704df74c1d42461ceb6699b3354f891
Binary files /dev/null and b/img/misc/normal_apng/promenade_beach_day.apng differ
diff --git a/img/misc/normal_apng/promenade_beach_dusk.apng b/img/misc/normal_apng/promenade_beach_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..2a767ca38dda497f895f726bfb07d5bbf8463389
Binary files /dev/null and b/img/misc/normal_apng/promenade_beach_dusk.apng differ
diff --git a/img/misc/normal_apng/promenade_beach_night.apng b/img/misc/normal_apng/promenade_beach_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..d2f65761c4186cd4c43328d8199cacf1278fe6c2
Binary files /dev/null and b/img/misc/normal_apng/promenade_beach_night.apng differ
diff --git a/img/misc/normal_apng/pub_dawn.apng b/img/misc/normal_apng/pub_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..1fdde8920b678f1d51005221cbdb0fdbd41734c1
Binary files /dev/null and b/img/misc/normal_apng/pub_dawn.apng differ
diff --git a/img/misc/normal_apng/pub_day.apng b/img/misc/normal_apng/pub_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..77904713ddc27e7e6e3d6e45432bfa82b0ad585f
Binary files /dev/null and b/img/misc/normal_apng/pub_day.apng differ
diff --git a/img/misc/normal_apng/pub_dusk.apng b/img/misc/normal_apng/pub_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..77904713ddc27e7e6e3d6e45432bfa82b0ad585f
Binary files /dev/null and b/img/misc/normal_apng/pub_dusk.apng differ
diff --git a/img/misc/normal_apng/pub_night.apng b/img/misc/normal_apng/pub_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..115cc9b6547d087afa2c89c54d42311062b6dde0
Binary files /dev/null and b/img/misc/normal_apng/pub_night.apng differ
diff --git a/img/misc/normal_apng/remy_farm_dawn.apng b/img/misc/normal_apng/remy_farm_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..c7697417456222932cdcaf2438a5c9fb432d09e5
Binary files /dev/null and b/img/misc/normal_apng/remy_farm_dawn.apng differ
diff --git a/img/misc/normal_apng/remy_farm_day.apng b/img/misc/normal_apng/remy_farm_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..fe504e348fc99d1c2864016218c1dea2111ae3d6
Binary files /dev/null and b/img/misc/normal_apng/remy_farm_day.apng differ
diff --git a/img/misc/normal_apng/remy_farm_dusk.apng b/img/misc/normal_apng/remy_farm_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..f6ccbc096f6bb6bfdb0e4a4dfe3f2fe3e5b484ce
Binary files /dev/null and b/img/misc/normal_apng/remy_farm_dusk.apng differ
diff --git a/img/misc/normal_apng/remy_farm_night.apng b/img/misc/normal_apng/remy_farm_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..71f77dc37e46edfa00a13f2da22cef34f6e02a79
Binary files /dev/null and b/img/misc/normal_apng/remy_farm_night.apng differ
diff --git a/img/misc/normal_apng/resi_alley_bloodmoon.apng b/img/misc/normal_apng/resi_alley_bloodmoon.apng
new file mode 100644
index 0000000000000000000000000000000000000000..168cdb65dc77997140045b452e413a6c44efc8d8
Binary files /dev/null and b/img/misc/normal_apng/resi_alley_bloodmoon.apng differ
diff --git a/img/misc/normal_apng/resi_alley_dawn.apng b/img/misc/normal_apng/resi_alley_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..cf54d15be4bde7a1c67c9a9855623b029e283ca3
Binary files /dev/null and b/img/misc/normal_apng/resi_alley_dawn.apng differ
diff --git a/img/misc/normal_apng/resi_alley_day.apng b/img/misc/normal_apng/resi_alley_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..fe55649a9e4dd3e166deffad0601d4259bfe8d48
Binary files /dev/null and b/img/misc/normal_apng/resi_alley_day.apng differ
diff --git a/img/misc/normal_apng/resi_alley_dusk.apng b/img/misc/normal_apng/resi_alley_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..cee6ced5877a95b300fd5391d456e0c9bd789c4f
Binary files /dev/null and b/img/misc/normal_apng/resi_alley_dusk.apng differ
diff --git a/img/misc/normal_apng/resi_alley_night.apng b/img/misc/normal_apng/resi_alley_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..7df9705f791889c8fec996a67988018f1d6c70a2
Binary files /dev/null and b/img/misc/normal_apng/resi_alley_night.apng differ
diff --git a/img/misc/normal_apng/riding_school_dawn.apng b/img/misc/normal_apng/riding_school_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..15bd757371c1c7b7086fbce7744818f68432d52e
Binary files /dev/null and b/img/misc/normal_apng/riding_school_dawn.apng differ
diff --git a/img/misc/normal_apng/riding_school_day.apng b/img/misc/normal_apng/riding_school_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b040d8a81fa793117fe6b803e6ee7a395aac10ea
Binary files /dev/null and b/img/misc/normal_apng/riding_school_day.apng differ
diff --git a/img/misc/normal_apng/riding_school_dusk.apng b/img/misc/normal_apng/riding_school_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..00bc03dce400a2a9fa9d83498b9e876ac0923af3
Binary files /dev/null and b/img/misc/normal_apng/riding_school_dusk.apng differ
diff --git a/img/misc/normal_apng/riding_school_night.apng b/img/misc/normal_apng/riding_school_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..844d7c9e7b3116510adcb38cd3032055c3fd88e0
Binary files /dev/null and b/img/misc/normal_apng/riding_school_night.apng differ
diff --git a/img/misc/normal_apng/ruins_bloodmoon.apng b/img/misc/normal_apng/ruins_bloodmoon.apng
new file mode 100644
index 0000000000000000000000000000000000000000..f95b0469fe361bc27ceec92fffeed43f53bc3fe6
Binary files /dev/null and b/img/misc/normal_apng/ruins_bloodmoon.apng differ
diff --git a/img/misc/normal_apng/ruins_dawn.apng b/img/misc/normal_apng/ruins_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..45c9f65f768e64f5ddf5d7ea9db6efb9cc5e5d72
Binary files /dev/null and b/img/misc/normal_apng/ruins_dawn.apng differ
diff --git a/img/misc/normal_apng/ruins_day.apng b/img/misc/normal_apng/ruins_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..28b56953ff81cb17858036918bb0be74d000650f
Binary files /dev/null and b/img/misc/normal_apng/ruins_day.apng differ
diff --git a/img/misc/normal_apng/ruins_dusk.apng b/img/misc/normal_apng/ruins_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..4a90547cebf22a7e374402f3a7bb6f8a96c0846e
Binary files /dev/null and b/img/misc/normal_apng/ruins_dusk.apng differ
diff --git a/img/misc/normal_apng/ruins_night.apng b/img/misc/normal_apng/ruins_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..4ca35e479142c9cb11c122ab03048b7740c0652d
Binary files /dev/null and b/img/misc/normal_apng/ruins_night.apng differ
diff --git a/img/misc/normal_apng/school_dawn.apng b/img/misc/normal_apng/school_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..e79b20442b246b4ca1f433e3bec5b2cb54b74c2e
Binary files /dev/null and b/img/misc/normal_apng/school_dawn.apng differ
diff --git a/img/misc/normal_apng/school_day.apng b/img/misc/normal_apng/school_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b8937d75d2dc7ce3744e226a0421d85fdf806c50
Binary files /dev/null and b/img/misc/normal_apng/school_day.apng differ
diff --git a/img/misc/normal_apng/school_dusk.apng b/img/misc/normal_apng/school_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b8937d75d2dc7ce3744e226a0421d85fdf806c50
Binary files /dev/null and b/img/misc/normal_apng/school_dusk.apng differ
diff --git a/img/misc/normal_apng/school_night.apng b/img/misc/normal_apng/school_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..2470a8a8ba82b543466807d4bdab180213844d2a
Binary files /dev/null and b/img/misc/normal_apng/school_night.apng differ
diff --git a/img/misc/normal_apng/sepulchre_dawn.apng b/img/misc/normal_apng/sepulchre_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..75f79c794008ed50edd6290367b1d3f5805eb2df
Binary files /dev/null and b/img/misc/normal_apng/sepulchre_dawn.apng differ
diff --git a/img/misc/normal_apng/sepulchre_day.apng b/img/misc/normal_apng/sepulchre_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b41821e40b4b0b9484d25557183225f6f18d0bb1
Binary files /dev/null and b/img/misc/normal_apng/sepulchre_day.apng differ
diff --git a/img/misc/normal_apng/sepulchre_dusk.apng b/img/misc/normal_apng/sepulchre_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..327ef4b31551aea7b88d5d2ae070f619c977bf27
Binary files /dev/null and b/img/misc/normal_apng/sepulchre_dusk.apng differ
diff --git a/img/misc/normal_apng/sepulchre_night.apng b/img/misc/normal_apng/sepulchre_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..11d543cdc7def58cec49b05fae7ed7b42cc7f0b3
Binary files /dev/null and b/img/misc/normal_apng/sepulchre_night.apng differ
diff --git a/img/misc/normal_apng/sewers_dawn.apng b/img/misc/normal_apng/sewers_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..7b770ef844f49d852a751fa4a9bb3c31fe3f46b2
Binary files /dev/null and b/img/misc/normal_apng/sewers_dawn.apng differ
diff --git a/img/misc/normal_apng/sewers_day.apng b/img/misc/normal_apng/sewers_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..7b770ef844f49d852a751fa4a9bb3c31fe3f46b2
Binary files /dev/null and b/img/misc/normal_apng/sewers_day.apng differ
diff --git a/img/misc/normal_apng/sewers_dusk.apng b/img/misc/normal_apng/sewers_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..7b770ef844f49d852a751fa4a9bb3c31fe3f46b2
Binary files /dev/null and b/img/misc/normal_apng/sewers_dusk.apng differ
diff --git a/img/misc/normal_apng/sewers_night.apng b/img/misc/normal_apng/sewers_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..7b770ef844f49d852a751fa4a9bb3c31fe3f46b2
Binary files /dev/null and b/img/misc/normal_apng/sewers_night.apng differ
diff --git a/img/misc/normal_apng/sex_shop_dawn.apng b/img/misc/normal_apng/sex_shop_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..500d11b62c2802cd585c321b311fec3ac6f18996
Binary files /dev/null and b/img/misc/normal_apng/sex_shop_dawn.apng differ
diff --git a/img/misc/normal_apng/sex_shop_day.apng b/img/misc/normal_apng/sex_shop_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..5249101dbbd94541e808d0ab47ec5709742d0675
Binary files /dev/null and b/img/misc/normal_apng/sex_shop_day.apng differ
diff --git a/img/misc/normal_apng/sex_shop_day_open.apng b/img/misc/normal_apng/sex_shop_day_open.apng
new file mode 100644
index 0000000000000000000000000000000000000000..bd1060fbdcc529b1eaf2da08b27ee5b3a8bb3e63
Binary files /dev/null and b/img/misc/normal_apng/sex_shop_day_open.apng differ
diff --git a/img/misc/normal_apng/sex_shop_dusk.apng b/img/misc/normal_apng/sex_shop_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..59d8097a83d6575241c8b34d8bb56f3fc6ae83f5
Binary files /dev/null and b/img/misc/normal_apng/sex_shop_dusk.apng differ
diff --git a/img/misc/normal_apng/sex_shop_night.apng b/img/misc/normal_apng/sex_shop_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..2714847d02ac26aa650ffc25920d72d86183eaeb
Binary files /dev/null and b/img/misc/normal_apng/sex_shop_night.apng differ
diff --git a/img/misc/normal_apng/shopping_centre_dawn.apng b/img/misc/normal_apng/shopping_centre_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..61c47d6ac9046866350c1b617b93a55bb89399a1
Binary files /dev/null and b/img/misc/normal_apng/shopping_centre_dawn.apng differ
diff --git a/img/misc/normal_apng/shopping_centre_day.apng b/img/misc/normal_apng/shopping_centre_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..46ed31da89a94fbc401c7224389a4acf425dd665
Binary files /dev/null and b/img/misc/normal_apng/shopping_centre_day.apng differ
diff --git a/img/misc/normal_apng/shopping_centre_dusk.apng b/img/misc/normal_apng/shopping_centre_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..0dd8c701bfe060ee06fd154f4d8b947ae29da426
Binary files /dev/null and b/img/misc/normal_apng/shopping_centre_dusk.apng differ
diff --git a/img/misc/normal_apng/shopping_centre_night.apng b/img/misc/normal_apng/shopping_centre_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..3d6f4a94431ecc8db88ecffcd05feca64dc4fec8
Binary files /dev/null and b/img/misc/normal_apng/shopping_centre_night.apng differ
diff --git a/img/misc/normal_apng/spa_dawn.apng b/img/misc/normal_apng/spa_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..58f8c81aa888098d647a9165ffd9f921bee6458a
Binary files /dev/null and b/img/misc/normal_apng/spa_dawn.apng differ
diff --git a/img/misc/normal_apng/spa_day.apng b/img/misc/normal_apng/spa_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..4fe9b5fb1d25c90a426fb6b0e9a07dabaacf391e
Binary files /dev/null and b/img/misc/normal_apng/spa_day.apng differ
diff --git a/img/misc/normal_apng/spa_dusk.apng b/img/misc/normal_apng/spa_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..709176b27a6f9a35d376423350b614329b910727
Binary files /dev/null and b/img/misc/normal_apng/spa_dusk.apng differ
diff --git a/img/misc/normal_apng/spa_night.apng b/img/misc/normal_apng/spa_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..406d45969d5fecd732f7a17560f41b37a14af965
Binary files /dev/null and b/img/misc/normal_apng/spa_night.apng differ
diff --git a/img/misc/normal_apng/strip_club_dawn.apng b/img/misc/normal_apng/strip_club_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..22d407be38cf7961aa9fa6f9d5b9427489298418
Binary files /dev/null and b/img/misc/normal_apng/strip_club_dawn.apng differ
diff --git a/img/misc/normal_apng/strip_club_day.apng b/img/misc/normal_apng/strip_club_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..22d407be38cf7961aa9fa6f9d5b9427489298418
Binary files /dev/null and b/img/misc/normal_apng/strip_club_day.apng differ
diff --git a/img/misc/normal_apng/strip_club_dusk.apng b/img/misc/normal_apng/strip_club_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..22d407be38cf7961aa9fa6f9d5b9427489298418
Binary files /dev/null and b/img/misc/normal_apng/strip_club_dusk.apng differ
diff --git a/img/misc/normal_apng/strip_club_night.apng b/img/misc/normal_apng/strip_club_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..84275d4b726b4dad254347b8b61f1d92092a3152
Binary files /dev/null and b/img/misc/normal_apng/strip_club_night.apng differ
diff --git a/img/misc/normal_apng/temple_dawn.apng b/img/misc/normal_apng/temple_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..1e2adac9185e0ba67ed4b01de77c34ced17c34bb
Binary files /dev/null and b/img/misc/normal_apng/temple_dawn.apng differ
diff --git a/img/misc/normal_apng/temple_dawn_old.apng b/img/misc/normal_apng/temple_dawn_old.apng
new file mode 100644
index 0000000000000000000000000000000000000000..56075071239a7245b7e29146ec6475b88acc61c6
Binary files /dev/null and b/img/misc/normal_apng/temple_dawn_old.apng differ
diff --git a/img/misc/normal_apng/temple_day.apng b/img/misc/normal_apng/temple_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..f4f3fb6b2c269af9c02dcff85b7a4f548f7c856c
Binary files /dev/null and b/img/misc/normal_apng/temple_day.apng differ
diff --git a/img/misc/normal_apng/temple_day_old.apng b/img/misc/normal_apng/temple_day_old.apng
new file mode 100644
index 0000000000000000000000000000000000000000..ac8325094651774060305e735d20b8508335b171
Binary files /dev/null and b/img/misc/normal_apng/temple_day_old.apng differ
diff --git a/img/misc/normal_apng/temple_dusk.apng b/img/misc/normal_apng/temple_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..2ad08ed58923920134f889eac5a4a21f27e8da69
Binary files /dev/null and b/img/misc/normal_apng/temple_dusk.apng differ
diff --git a/img/misc/normal_apng/temple_dusk_old.apng b/img/misc/normal_apng/temple_dusk_old.apng
new file mode 100644
index 0000000000000000000000000000000000000000..ac8325094651774060305e735d20b8508335b171
Binary files /dev/null and b/img/misc/normal_apng/temple_dusk_old.apng differ
diff --git a/img/misc/normal_apng/temple_night.apng b/img/misc/normal_apng/temple_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..f3808a23c100cc2d9ee650ddbccf7f5c4a530a0b
Binary files /dev/null and b/img/misc/normal_apng/temple_night.apng differ
diff --git a/img/misc/normal_apng/temple_night_old.apng b/img/misc/normal_apng/temple_night_old.apng
new file mode 100644
index 0000000000000000000000000000000000000000..6f4c33111355b9fea22f3baf87e2fe7051b409ab
Binary files /dev/null and b/img/misc/normal_apng/temple_night_old.apng differ
diff --git a/img/misc/normal_apng/tentacles_dawn.apng b/img/misc/normal_apng/tentacles_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..4a81f0149d2c12a01dfc3a34920b17a239333f09
Binary files /dev/null and b/img/misc/normal_apng/tentacles_dawn.apng differ
diff --git a/img/misc/normal_apng/tentacles_day.apng b/img/misc/normal_apng/tentacles_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..4a81f0149d2c12a01dfc3a34920b17a239333f09
Binary files /dev/null and b/img/misc/normal_apng/tentacles_day.apng differ
diff --git a/img/misc/normal_apng/tentacles_dusk.apng b/img/misc/normal_apng/tentacles_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..4a81f0149d2c12a01dfc3a34920b17a239333f09
Binary files /dev/null and b/img/misc/normal_apng/tentacles_dusk.apng differ
diff --git a/img/misc/normal_apng/tentacles_night.apng b/img/misc/normal_apng/tentacles_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..4a81f0149d2c12a01dfc3a34920b17a239333f09
Binary files /dev/null and b/img/misc/normal_apng/tentacles_night.apng differ
diff --git a/img/misc/normal_apng/tower_bloodmoon.apng b/img/misc/normal_apng/tower_bloodmoon.apng
new file mode 100644
index 0000000000000000000000000000000000000000..de730b64f9af5751874bbe47fc792f5b93c294ea
Binary files /dev/null and b/img/misc/normal_apng/tower_bloodmoon.apng differ
diff --git a/img/misc/normal_apng/tower_dawn.apng b/img/misc/normal_apng/tower_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..2e73ea0a8d72491f883543a7f7bf68237d9b72d0
Binary files /dev/null and b/img/misc/normal_apng/tower_dawn.apng differ
diff --git a/img/misc/normal_apng/tower_day.apng b/img/misc/normal_apng/tower_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..7c679e3539d83f767c28d1c81fa93e94f1fe26f5
Binary files /dev/null and b/img/misc/normal_apng/tower_day.apng differ
diff --git a/img/misc/normal_apng/tower_dusk.apng b/img/misc/normal_apng/tower_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..e087542e84fb3827627a557b907f98758fce1efc
Binary files /dev/null and b/img/misc/normal_apng/tower_dusk.apng differ
diff --git a/img/misc/normal_apng/tower_night.apng b/img/misc/normal_apng/tower_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..46bb95081af912e7da48e0550511f15234a89345
Binary files /dev/null and b/img/misc/normal_apng/tower_night.apng differ
diff --git a/img/misc/normal_apng/town_dawn.apng b/img/misc/normal_apng/town_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..4fca04f1f0b480efa0e2baa1186ffc6bdb715163
Binary files /dev/null and b/img/misc/normal_apng/town_dawn.apng differ
diff --git a/img/misc/normal_apng/town_day.apng b/img/misc/normal_apng/town_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..40a6f2372f3f58bfb5035ff75af849d208a6ed47
Binary files /dev/null and b/img/misc/normal_apng/town_day.apng differ
diff --git a/img/misc/normal_apng/town_dusk.apng b/img/misc/normal_apng/town_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..7baecb2ee890d86393710449df6400bf8de38786
Binary files /dev/null and b/img/misc/normal_apng/town_dusk.apng differ
diff --git a/img/misc/normal_apng/town_night.apng b/img/misc/normal_apng/town_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b8ebdb1ecbae3c5471f17a6470404884d03ff6d4
Binary files /dev/null and b/img/misc/normal_apng/town_night.apng differ
diff --git a/img/misc/normal_apng/underground_dawn.apng b/img/misc/normal_apng/underground_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..47335ad1781e43fccbe50e673d15ee9242c33e3f
Binary files /dev/null and b/img/misc/normal_apng/underground_dawn.apng differ
diff --git a/img/misc/normal_apng/underground_day.apng b/img/misc/normal_apng/underground_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..5910f646681cf4bfef96a5a74a89ed24085075f9
Binary files /dev/null and b/img/misc/normal_apng/underground_day.apng differ
diff --git a/img/misc/normal_apng/underground_dusk.apng b/img/misc/normal_apng/underground_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..6bce87bb1768d0d49053cdedbe0f5aed3a050dd6
Binary files /dev/null and b/img/misc/normal_apng/underground_dusk.apng differ
diff --git a/img/misc/normal_apng/underground_night.apng b/img/misc/normal_apng/underground_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..79aaa74fcea5b88a117053eb6af9b166f415ec9d
Binary files /dev/null and b/img/misc/normal_apng/underground_night.apng differ
diff --git a/img/misc/normal_apng/wolf_cave_dawn.apng b/img/misc/normal_apng/wolf_cave_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..dd79adeb7e27806eb7169e89e748e15525b69dfb
Binary files /dev/null and b/img/misc/normal_apng/wolf_cave_dawn.apng differ
diff --git a/img/misc/normal_apng/wolf_cave_day.apng b/img/misc/normal_apng/wolf_cave_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..18c676176048ad04d8aa151d1698cff54c04672e
Binary files /dev/null and b/img/misc/normal_apng/wolf_cave_day.apng differ
diff --git a/img/misc/normal_apng/wolf_cave_dusk.apng b/img/misc/normal_apng/wolf_cave_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..18c676176048ad04d8aa151d1698cff54c04672e
Binary files /dev/null and b/img/misc/normal_apng/wolf_cave_dusk.apng differ
diff --git a/img/misc/normal_apng/wolf_cave_night.apng b/img/misc/normal_apng/wolf_cave_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..e2fd9241bc365073490fd141e2971bb617cd834c
Binary files /dev/null and b/img/misc/normal_apng/wolf_cave_night.apng differ
diff --git a/img/misc/clear_dawn.png b/img/misc/old/clear_dawn.png
similarity index 100%
rename from img/misc/clear_dawn.png
rename to img/misc/old/clear_dawn.png
diff --git a/img/misc/clear_day.png b/img/misc/old/clear_day.png
similarity index 100%
rename from img/misc/clear_day.png
rename to img/misc/old/clear_day.png
diff --git a/img/misc/clear_dusk.png b/img/misc/old/clear_dusk.png
similarity index 100%
rename from img/misc/clear_dusk.png
rename to img/misc/old/clear_dusk.png
diff --git a/img/misc/clear_night.png b/img/misc/old/clear_night.png
similarity index 100%
rename from img/misc/clear_night.png
rename to img/misc/old/clear_night.png
diff --git a/img/misc/forest_day.png b/img/misc/old/forest_day.png
similarity index 100%
rename from img/misc/forest_day.png
rename to img/misc/old/forest_day.png
diff --git a/img/misc/forest_dusk.png b/img/misc/old/forest_dusk.png
similarity index 100%
rename from img/misc/forest_dusk.png
rename to img/misc/old/forest_dusk.png
diff --git a/img/misc/overcast.png b/img/misc/old/overcast.png
similarity index 100%
rename from img/misc/overcast.png
rename to img/misc/old/overcast.png
diff --git a/img/misc/normal/overcast_dawn.png b/img/misc/old/overcast_dawn.png
similarity index 100%
rename from img/misc/normal/overcast_dawn.png
rename to img/misc/old/overcast_dawn.png
diff --git a/img/misc/winter/overcast_dawn.png b/img/misc/old/overcast_dawn_winter.png
similarity index 100%
rename from img/misc/winter/overcast_dawn.png
rename to img/misc/old/overcast_dawn_winter.png
diff --git a/img/misc/normal/overcast_day.png b/img/misc/old/overcast_day.png
similarity index 100%
rename from img/misc/normal/overcast_day.png
rename to img/misc/old/overcast_day.png
diff --git a/img/misc/winter/overcast_day.png b/img/misc/old/overcast_day_winter.png
similarity index 100%
rename from img/misc/winter/overcast_day.png
rename to img/misc/old/overcast_day_winter.png
diff --git a/img/misc/normal/overcast_dusk.png b/img/misc/old/overcast_dusk.png
similarity index 100%
rename from img/misc/normal/overcast_dusk.png
rename to img/misc/old/overcast_dusk.png
diff --git a/img/misc/winter/overcast_dusk.png b/img/misc/old/overcast_dusk_winter.png
similarity index 100%
rename from img/misc/winter/overcast_dusk.png
rename to img/misc/old/overcast_dusk_winter.png
diff --git a/img/misc/normal/overcast_night.png b/img/misc/old/overcast_night.png
similarity index 100%
rename from img/misc/normal/overcast_night.png
rename to img/misc/old/overcast_night.png
diff --git a/img/misc/winter/overcast_night.png b/img/misc/old/overcast_night_winter.png
similarity index 100%
rename from img/misc/winter/overcast_night.png
rename to img/misc/old/overcast_night_winter.png
diff --git a/img/misc/rain.gif b/img/misc/old/rain.gif
similarity index 100%
rename from img/misc/rain.gif
rename to img/misc/old/rain.gif
diff --git a/img/misc/rain_dawn.gif b/img/misc/old/rain_dawn.gif
similarity index 100%
rename from img/misc/rain_dawn.gif
rename to img/misc/old/rain_dawn.gif
diff --git a/img/misc/rain_day.gif b/img/misc/old/rain_day.gif
similarity index 100%
rename from img/misc/rain_day.gif
rename to img/misc/old/rain_day.gif
diff --git a/img/misc/rain_dusk.gif b/img/misc/old/rain_dusk.gif
similarity index 100%
rename from img/misc/rain_dusk.gif
rename to img/misc/old/rain_dusk.gif
diff --git a/img/misc/rain_night.gif b/img/misc/old/rain_night.gif
similarity index 100%
rename from img/misc/rain_night.gif
rename to img/misc/old/rain_night.gif
diff --git a/img/misc/sky_bloodmoon.png b/img/misc/old/sky_bloodmoon.png
similarity index 100%
rename from img/misc/sky_bloodmoon.png
rename to img/misc/old/sky_bloodmoon.png
diff --git a/img/misc/sky_clear.png b/img/misc/old/sky_clear.png
similarity index 100%
rename from img/misc/sky_clear.png
rename to img/misc/old/sky_clear.png
diff --git a/img/misc/sky_dawn.png b/img/misc/old/sky_dawn.png
similarity index 100%
rename from img/misc/sky_dawn.png
rename to img/misc/old/sky_dawn.png
diff --git a/img/misc/sky_day.png b/img/misc/old/sky_day.png
similarity index 100%
rename from img/misc/sky_day.png
rename to img/misc/old/sky_day.png
diff --git a/img/misc/sky_dusk.png b/img/misc/old/sky_dusk.png
similarity index 100%
rename from img/misc/sky_dusk.png
rename to img/misc/old/sky_dusk.png
diff --git a/img/misc/sky_night.png b/img/misc/old/sky_night.png
similarity index 100%
rename from img/misc/sky_night.png
rename to img/misc/old/sky_night.png
diff --git a/img/misc/winter/snow_dawn.gif b/img/misc/old/snow_dawn.gif
similarity index 100%
rename from img/misc/winter/snow_dawn.gif
rename to img/misc/old/snow_dawn.gif
diff --git a/img/misc/winter/snow_day.gif b/img/misc/old/snow_day.gif
similarity index 100%
rename from img/misc/winter/snow_day.gif
rename to img/misc/old/snow_day.gif
diff --git a/img/misc/winter/snow_dusk.gif b/img/misc/old/snow_dusk.gif
similarity index 100%
rename from img/misc/winter/snow_dusk.gif
rename to img/misc/old/snow_dusk.gif
diff --git a/img/misc/winter/snow_night.gif b/img/misc/old/snow_night.gif
similarity index 100%
rename from img/misc/winter/snow_night.gif
rename to img/misc/old/snow_night.gif
diff --git a/img/misc/tentsky_dawn.png b/img/misc/old/tentsky_dawn.png
similarity index 100%
rename from img/misc/tentsky_dawn.png
rename to img/misc/old/tentsky_dawn.png
diff --git a/img/misc/tentsky_day.png b/img/misc/old/tentsky_day.png
similarity index 100%
rename from img/misc/tentsky_day.png
rename to img/misc/old/tentsky_day.png
diff --git a/img/misc/tentsky_dusk.png b/img/misc/old/tentsky_dusk.png
similarity index 100%
rename from img/misc/tentsky_dusk.png
rename to img/misc/old/tentsky_dusk.png
diff --git a/img/misc/tentsky_night.png b/img/misc/old/tentsky_night.png
similarity index 100%
rename from img/misc/tentsky_night.png
rename to img/misc/old/tentsky_night.png
diff --git a/img/misc/tentworld_dawn.gif b/img/misc/old/tentworld_dawn.gif
similarity index 100%
rename from img/misc/tentworld_dawn.gif
rename to img/misc/old/tentworld_dawn.gif
diff --git a/img/misc/tentworld_day.gif b/img/misc/old/tentworld_day.gif
similarity index 100%
rename from img/misc/tentworld_day.gif
rename to img/misc/old/tentworld_day.gif
diff --git a/img/misc/tentworld_dusk.gif b/img/misc/old/tentworld_dusk.gif
similarity index 100%
rename from img/misc/tentworld_dusk.gif
rename to img/misc/old/tentworld_dusk.gif
diff --git a/img/misc/tentworld_night.gif b/img/misc/old/tentworld_night.gif
similarity index 100%
rename from img/misc/tentworld_night.gif
rename to img/misc/old/tentworld_night.gif
diff --git a/img/misc/underground.png b/img/misc/old/underground.png
similarity index 100%
rename from img/misc/underground.png
rename to img/misc/old/underground.png
diff --git a/img/misc/old/world_map.png b/img/misc/old/world_map.png
new file mode 100644
index 0000000000000000000000000000000000000000..14db86d1aece37cf32c827cad4826dd9534bd525
Binary files /dev/null and b/img/misc/old/world_map.png differ
diff --git a/img/misc/old/world_map_winter.png b/img/misc/old/world_map_winter.png
new file mode 100644
index 0000000000000000000000000000000000000000..48bd4d45a57ddd551c0e4418edcef8c329ee1504
Binary files /dev/null and b/img/misc/old/world_map_winter.png differ
diff --git a/img/misc/sky/clouds/0.png b/img/misc/sky/clouds/0.png
new file mode 100644
index 0000000000000000000000000000000000000000..cb965cc60382ed2efc892c3f83c725d610a10b59
Binary files /dev/null and b/img/misc/sky/clouds/0.png differ
diff --git a/img/misc/sky/clouds/1.png b/img/misc/sky/clouds/1.png
new file mode 100644
index 0000000000000000000000000000000000000000..d6e1328cf966b019e5f4229abe555747c35e9f20
Binary files /dev/null and b/img/misc/sky/clouds/1.png differ
diff --git a/img/misc/sky/clouds/2.png b/img/misc/sky/clouds/2.png
new file mode 100644
index 0000000000000000000000000000000000000000..0217d3c0d1a304ccc00376c1537b685a5fcd1a04
Binary files /dev/null and b/img/misc/sky/clouds/2.png differ
diff --git a/img/misc/sky/clouds/3.png b/img/misc/sky/clouds/3.png
new file mode 100644
index 0000000000000000000000000000000000000000..9fa274afa6fb9315a5a1f8d45c52deb0d1a742f2
Binary files /dev/null and b/img/misc/sky/clouds/3.png differ
diff --git a/img/misc/sky/clouds/4.png b/img/misc/sky/clouds/4.png
new file mode 100644
index 0000000000000000000000000000000000000000..53f880068224aad10b7bdc8a5f2c92befe1bf6b0
Binary files /dev/null and b/img/misc/sky/clouds/4.png differ
diff --git a/img/misc/sky/clouds/5.png b/img/misc/sky/clouds/5.png
new file mode 100644
index 0000000000000000000000000000000000000000..6a52fc96b9ac2576ec76eb03c5326637c6793680
Binary files /dev/null and b/img/misc/sky/clouds/5.png differ
diff --git a/img/misc/sky/clouds/small/6.png b/img/misc/sky/clouds/small/6.png
new file mode 100644
index 0000000000000000000000000000000000000000..a078d528abf026774d320fb92382a760c19899a0
Binary files /dev/null and b/img/misc/sky/clouds/small/6.png differ
diff --git a/img/misc/sky/img/aeris.png b/img/misc/sky/img/aeris.png
new file mode 100644
index 0000000000000000000000000000000000000000..cb965cc60382ed2efc892c3f83c725d610a10b59
Binary files /dev/null and b/img/misc/sky/img/aeris.png differ
diff --git a/img/misc/sky/img/barret.png b/img/misc/sky/img/barret.png
new file mode 100644
index 0000000000000000000000000000000000000000..53f880068224aad10b7bdc8a5f2c92befe1bf6b0
Binary files /dev/null and b/img/misc/sky/img/barret.png differ
diff --git a/img/misc/sky/img/cloud.png b/img/misc/sky/img/cloud.png
new file mode 100644
index 0000000000000000000000000000000000000000..6a52fc96b9ac2576ec76eb03c5326637c6793680
Binary files /dev/null and b/img/misc/sky/img/cloud.png differ
diff --git a/img/misc/sky/img/eclipse.png b/img/misc/sky/img/eclipse.png
new file mode 100644
index 0000000000000000000000000000000000000000..196a73a66ca1e1b4cdb6c0e3695eb09b015741dc
Binary files /dev/null and b/img/misc/sky/img/eclipse.png differ
diff --git a/img/misc/sky/img/first blood quarter.png b/img/misc/sky/img/first blood quarter.png
new file mode 100644
index 0000000000000000000000000000000000000000..8d638101582a5c564f055f6658823d18eaf0a356
Binary files /dev/null and b/img/misc/sky/img/first blood quarter.png differ
diff --git a/img/misc/sky/img/first quarter.png b/img/misc/sky/img/first quarter.png
new file mode 100644
index 0000000000000000000000000000000000000000..463cb651895dc4b436ea1d7a100508a3a2d54a84
Binary files /dev/null and b/img/misc/sky/img/first quarter.png differ
diff --git a/img/misc/sky/img/full blood moon.png b/img/misc/sky/img/full blood moon.png
new file mode 100644
index 0000000000000000000000000000000000000000..52f86f9071ccf6608f90a1fe163c0570a124d3dc
Binary files /dev/null and b/img/misc/sky/img/full blood moon.png differ
diff --git a/img/misc/sky/img/full moon.png b/img/misc/sky/img/full moon.png
new file mode 100644
index 0000000000000000000000000000000000000000..69d8c63a735b5e44dcc1ea2b368075536d61aabd
Binary files /dev/null and b/img/misc/sky/img/full moon.png differ
diff --git a/img/misc/sky/img/new blood moon.png b/img/misc/sky/img/new blood moon.png
new file mode 100644
index 0000000000000000000000000000000000000000..ab56d7151384753babfa3b616d73997e8f49c635
Binary files /dev/null and b/img/misc/sky/img/new blood moon.png differ
diff --git a/img/misc/sky/img/new moon.png b/img/misc/sky/img/new moon.png
new file mode 100644
index 0000000000000000000000000000000000000000..3bd86bae0a0d2f71ee3ebde305ebc50b42a39cb6
Binary files /dev/null and b/img/misc/sky/img/new moon.png differ
diff --git a/img/misc/sky/img/rain.gif b/img/misc/sky/img/rain.gif
new file mode 100644
index 0000000000000000000000000000000000000000..95e2a0806240ba999ac9917bf59aa1a25dc32b4b
Binary files /dev/null and b/img/misc/sky/img/rain.gif differ
diff --git a/img/misc/sky/img/sephiroth.png b/img/misc/sky/img/sephiroth.png
new file mode 100644
index 0000000000000000000000000000000000000000..d6e1328cf966b019e5f4229abe555747c35e9f20
Binary files /dev/null and b/img/misc/sky/img/sephiroth.png differ
diff --git a/img/misc/sky/img/snow.gif b/img/misc/sky/img/snow.gif
new file mode 100644
index 0000000000000000000000000000000000000000..4ee15a98d763ecc1535534002fb4c7b17385d4d4
Binary files /dev/null and b/img/misc/sky/img/snow.gif differ
diff --git a/img/misc/sky/img/stars.gif b/img/misc/sky/img/stars.gif
new file mode 100644
index 0000000000000000000000000000000000000000..b03770e3fb1a41dfff45a299aa12db9698b0fe37
Binary files /dev/null and b/img/misc/sky/img/stars.gif differ
diff --git a/img/misc/sky/img/sun.png b/img/misc/sky/img/sun.png
new file mode 100644
index 0000000000000000000000000000000000000000..dba91a571b7494ffc3d87312f330e9f79888f36e
Binary files /dev/null and b/img/misc/sky/img/sun.png differ
diff --git a/img/misc/sky/img/third blood crescent.png b/img/misc/sky/img/third blood crescent.png
new file mode 100644
index 0000000000000000000000000000000000000000..f091ab58f396f9f1c6517515a974658dd0f8ab07
Binary files /dev/null and b/img/misc/sky/img/third blood crescent.png differ
diff --git a/img/misc/sky/img/third quarter.png b/img/misc/sky/img/third quarter.png
new file mode 100644
index 0000000000000000000000000000000000000000..b21db91bb5ad48212b678088d2317f6553219319
Binary files /dev/null and b/img/misc/sky/img/third quarter.png differ
diff --git a/img/misc/sky/img/tifa.png b/img/misc/sky/img/tifa.png
new file mode 100644
index 0000000000000000000000000000000000000000..9fa274afa6fb9315a5a1f8d45c52deb0d1a742f2
Binary files /dev/null and b/img/misc/sky/img/tifa.png differ
diff --git a/img/misc/sky/img/waning blood crescent.png b/img/misc/sky/img/waning blood crescent.png
new file mode 100644
index 0000000000000000000000000000000000000000..5ea3d46f63e13a70273dc6fb3f2c4c3a5dfd4692
Binary files /dev/null and b/img/misc/sky/img/waning blood crescent.png differ
diff --git a/img/misc/sky/img/waning blood gibbous.png b/img/misc/sky/img/waning blood gibbous.png
new file mode 100644
index 0000000000000000000000000000000000000000..09da538483487ead3b824f0c3eff9b07f31331c4
Binary files /dev/null and b/img/misc/sky/img/waning blood gibbous.png differ
diff --git a/img/misc/sky/img/waning crescent.png b/img/misc/sky/img/waning crescent.png
new file mode 100644
index 0000000000000000000000000000000000000000..6cbaf1898e65d263bef50cd41c8959e2ce9c2265
Binary files /dev/null and b/img/misc/sky/img/waning crescent.png differ
diff --git a/img/misc/sky/img/waning gibbous.png b/img/misc/sky/img/waning gibbous.png
new file mode 100644
index 0000000000000000000000000000000000000000..22b7ca9dfb0e84693a8557992a93ac36eccbf78c
Binary files /dev/null and b/img/misc/sky/img/waning gibbous.png differ
diff --git a/img/misc/sky/img/waxing blood crescent.png b/img/misc/sky/img/waxing blood crescent.png
new file mode 100644
index 0000000000000000000000000000000000000000..28d8234633b797326e91bffefeb0fa9ae1063533
Binary files /dev/null and b/img/misc/sky/img/waxing blood crescent.png differ
diff --git a/img/misc/sky/img/waxing blood gibbous.png b/img/misc/sky/img/waxing blood gibbous.png
new file mode 100644
index 0000000000000000000000000000000000000000..f8799633a2f6f0aad60197bc179f61e33e0142a0
Binary files /dev/null and b/img/misc/sky/img/waxing blood gibbous.png differ
diff --git a/img/misc/sky/img/waxing crescent.png b/img/misc/sky/img/waxing crescent.png
new file mode 100644
index 0000000000000000000000000000000000000000..1cc7f6a5a2cab7add273e9beb3ebda732ed1fa23
Binary files /dev/null and b/img/misc/sky/img/waxing crescent.png differ
diff --git a/img/misc/sky/img/waxing gibbous.png b/img/misc/sky/img/waxing gibbous.png
new file mode 100644
index 0000000000000000000000000000000000000000..d3a047aa043ee1a89eba776a181e7964bf570c9e
Binary files /dev/null and b/img/misc/sky/img/waxing gibbous.png differ
diff --git a/img/misc/sky/img/yuffie.png b/img/misc/sky/img/yuffie.png
new file mode 100644
index 0000000000000000000000000000000000000000..0217d3c0d1a304ccc00376c1537b685a5fcd1a04
Binary files /dev/null and b/img/misc/sky/img/yuffie.png differ
diff --git a/img/misc/sky/moon.png b/img/misc/sky/moon.png
new file mode 100644
index 0000000000000000000000000000000000000000..ab5f5e9a04ccedd31cbc2c5fbf585a89434a2fa5
Binary files /dev/null and b/img/misc/sky/moon.png differ
diff --git a/img/misc/sky/moon2.png b/img/misc/sky/moon2.png
new file mode 100644
index 0000000000000000000000000000000000000000..24e5cb8404cc3c676d0637fc3721071fae518559
Binary files /dev/null and b/img/misc/sky/moon2.png differ
diff --git a/img/misc/sky/moon_1.png b/img/misc/sky/moon_1.png
new file mode 100644
index 0000000000000000000000000000000000000000..a41087b665d7baeafdd875a71a51e8fd037bcfea
Binary files /dev/null and b/img/misc/sky/moon_1.png differ
diff --git a/img/misc/sky/moon_bloodmoon.png b/img/misc/sky/moon_bloodmoon.png
new file mode 100644
index 0000000000000000000000000000000000000000..e2ff434751b6680b5223a59b337bdb05e5922ed9
Binary files /dev/null and b/img/misc/sky/moon_bloodmoon.png differ
diff --git a/img/misc/sky/moon_dawn.png b/img/misc/sky/moon_dawn.png
new file mode 100644
index 0000000000000000000000000000000000000000..e2f968437fb6339c0a1307c1e48695e6e80b3fe9
Binary files /dev/null and b/img/misc/sky/moon_dawn.png differ
diff --git a/img/misc/sky/moon_day.png b/img/misc/sky/moon_day.png
new file mode 100644
index 0000000000000000000000000000000000000000..348e9aa78f684be5577c3923bcf9f13adf4da52e
Binary files /dev/null and b/img/misc/sky/moon_day.png differ
diff --git a/img/misc/sky/moon_dusk.png b/img/misc/sky/moon_dusk.png
new file mode 100644
index 0000000000000000000000000000000000000000..b80cbcf1aa84e38927816bb6cdaac2dd07c4c164
Binary files /dev/null and b/img/misc/sky/moon_dusk.png differ
diff --git a/img/misc/sky/moon_night.png b/img/misc/sky/moon_night.png
new file mode 100644
index 0000000000000000000000000000000000000000..ca859dc6d73b354496d2c6af8f0834c5775c1db3
Binary files /dev/null and b/img/misc/sky/moon_night.png differ
diff --git a/img/misc/sky/moonfirstquarter.png b/img/misc/sky/moonfirstquarter.png
new file mode 100644
index 0000000000000000000000000000000000000000..5f406679dfa4d6b1338e40b576fce290ebff8a03
Binary files /dev/null and b/img/misc/sky/moonfirstquarter.png differ
diff --git a/img/misc/sky/moonfull.png b/img/misc/sky/moonfull.png
new file mode 100644
index 0000000000000000000000000000000000000000..5825b215038b98b1134a007b93d6f891b82e9a1c
Binary files /dev/null and b/img/misc/sky/moonfull.png differ
diff --git a/img/misc/sky/overcast_dawn.png b/img/misc/sky/overcast_dawn.png
new file mode 100644
index 0000000000000000000000000000000000000000..3febd6f38bbdc62ee9da55564bd6426e0506bde3
Binary files /dev/null and b/img/misc/sky/overcast_dawn.png differ
diff --git a/img/misc/sky/overcast_dawn_winter.png b/img/misc/sky/overcast_dawn_winter.png
new file mode 100644
index 0000000000000000000000000000000000000000..5fa3c4fd92f2fc986962368c7b378b7d81a97ed5
Binary files /dev/null and b/img/misc/sky/overcast_dawn_winter.png differ
diff --git a/img/misc/sky/overcast_day.png b/img/misc/sky/overcast_day.png
new file mode 100644
index 0000000000000000000000000000000000000000..3febd6f38bbdc62ee9da55564bd6426e0506bde3
Binary files /dev/null and b/img/misc/sky/overcast_day.png differ
diff --git a/img/misc/sky/overcast_day_winter.png b/img/misc/sky/overcast_day_winter.png
new file mode 100644
index 0000000000000000000000000000000000000000..59b387a2f43a33cf309d32b38ac143d6d4ed0810
Binary files /dev/null and b/img/misc/sky/overcast_day_winter.png differ
diff --git a/img/misc/sky/overcast_dusk.png b/img/misc/sky/overcast_dusk.png
new file mode 100644
index 0000000000000000000000000000000000000000..3febd6f38bbdc62ee9da55564bd6426e0506bde3
Binary files /dev/null and b/img/misc/sky/overcast_dusk.png differ
diff --git a/img/misc/sky/overcast_dusk_winter.png b/img/misc/sky/overcast_dusk_winter.png
new file mode 100644
index 0000000000000000000000000000000000000000..59b387a2f43a33cf309d32b38ac143d6d4ed0810
Binary files /dev/null and b/img/misc/sky/overcast_dusk_winter.png differ
diff --git a/img/misc/sky/overcast_night.png b/img/misc/sky/overcast_night.png
new file mode 100644
index 0000000000000000000000000000000000000000..a251e181f59910683369f0fc4ed40598b7b90299
Binary files /dev/null and b/img/misc/sky/overcast_night.png differ
diff --git a/img/misc/sky/overcast_night_winter.png b/img/misc/sky/overcast_night_winter.png
new file mode 100644
index 0000000000000000000000000000000000000000..2608ee17b1eada7c3b2cd1add02c4ba56748dd15
Binary files /dev/null and b/img/misc/sky/overcast_night_winter.png differ
diff --git a/img/misc/sky/rain_dawn.gif b/img/misc/sky/rain_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..a0c4e73ebbb3e9ecf75417b6f3d891a861369fca
Binary files /dev/null and b/img/misc/sky/rain_dawn.gif differ
diff --git a/img/misc/sky/rain_day.gif b/img/misc/sky/rain_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..a0c4e73ebbb3e9ecf75417b6f3d891a861369fca
Binary files /dev/null and b/img/misc/sky/rain_day.gif differ
diff --git a/img/misc/sky/rain_dusk.gif b/img/misc/sky/rain_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..a0c4e73ebbb3e9ecf75417b6f3d891a861369fca
Binary files /dev/null and b/img/misc/sky/rain_dusk.gif differ
diff --git a/img/misc/sky/rain_night.gif b/img/misc/sky/rain_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..d5322eb1e31192c516fe5521fc0a60f6a4466b1b
Binary files /dev/null and b/img/misc/sky/rain_night.gif differ
diff --git a/img/misc/sky/snow_dawn.gif b/img/misc/sky/snow_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..3f9a487b0f4859a5fe13d1a02ffc3d67f42c0b33
Binary files /dev/null and b/img/misc/sky/snow_dawn.gif differ
diff --git a/img/misc/sky/snow_day.gif b/img/misc/sky/snow_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..c4c9898cdc00c2a822ca1a92c38dede9df2fa064
Binary files /dev/null and b/img/misc/sky/snow_day.gif differ
diff --git a/img/misc/sky/snow_dusk.gif b/img/misc/sky/snow_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..0e20ac6aa67f0b45b142d1302c24dc43b8008793
Binary files /dev/null and b/img/misc/sky/snow_dusk.gif differ
diff --git a/img/misc/sky/snow_night.gif b/img/misc/sky/snow_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..ed9ccfd3f287124f672768055aaf1c2ba19680c4
Binary files /dev/null and b/img/misc/sky/snow_night.gif differ
diff --git a/img/misc/sky/star.png b/img/misc/sky/star.png
new file mode 100644
index 0000000000000000000000000000000000000000..fc2cc4f446da5e670b1b9a96adfd208b65c2a7a7
Binary files /dev/null and b/img/misc/sky/star.png differ
diff --git a/img/misc/sky/starfield.gif b/img/misc/sky/starfield.gif
new file mode 100644
index 0000000000000000000000000000000000000000..b03770e3fb1a41dfff45a299aa12db9698b0fe37
Binary files /dev/null and b/img/misc/sky/starfield.gif differ
diff --git a/img/misc/sky/stars/star_0.png b/img/misc/sky/stars/star_0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e1e703075b0415f9584a434abc3cfacdd59d4733
Binary files /dev/null and b/img/misc/sky/stars/star_0.png differ
diff --git a/img/misc/sky/stars/star_1.png b/img/misc/sky/stars/star_1.png
new file mode 100644
index 0000000000000000000000000000000000000000..ef5070239f2de0886f5878ab4a55ab45435b3a0c
Binary files /dev/null and b/img/misc/sky/stars/star_1.png differ
diff --git a/img/misc/sky/stars/star_2.png b/img/misc/sky/stars/star_2.png
new file mode 100644
index 0000000000000000000000000000000000000000..efd01199d11d2f9b4e37688faa32e92c964ead62
Binary files /dev/null and b/img/misc/sky/stars/star_2.png differ
diff --git a/img/misc/sky/stars/star_3.png b/img/misc/sky/stars/star_3.png
new file mode 100644
index 0000000000000000000000000000000000000000..20f61f46d0e1e574ff16723c3eb73c0142cc4285
Binary files /dev/null and b/img/misc/sky/stars/star_3.png differ
diff --git a/img/misc/sky/sun.png b/img/misc/sky/sun.png
new file mode 100644
index 0000000000000000000000000000000000000000..220f09b6d7e1114b2c33b45c4e9acd13a9ce2c61
Binary files /dev/null and b/img/misc/sky/sun.png differ
diff --git a/img/misc/sky/sun2.png b/img/misc/sky/sun2.png
new file mode 100644
index 0000000000000000000000000000000000000000..892ce45ae7e6b9723123f3f0a90662ac8e2205ff
Binary files /dev/null and b/img/misc/sky/sun2.png differ
diff --git a/img/misc/sky/sun_dawn.png b/img/misc/sky/sun_dawn.png
new file mode 100644
index 0000000000000000000000000000000000000000..703a8f4f517967c732c4c0e14636193d25f804c2
Binary files /dev/null and b/img/misc/sky/sun_dawn.png differ
diff --git a/img/misc/sky/sun_day.png b/img/misc/sky/sun_day.png
new file mode 100644
index 0000000000000000000000000000000000000000..8927f7502d4a88c3fbbed3fb82c2249836c44532
Binary files /dev/null and b/img/misc/sky/sun_day.png differ
diff --git a/img/misc/sky/sun_dusk.png b/img/misc/sky/sun_dusk.png
new file mode 100644
index 0000000000000000000000000000000000000000..9538300189e0fcc25bbbf1f1e7ff4c41a584ce7a
Binary files /dev/null and b/img/misc/sky/sun_dusk.png differ
diff --git a/img/misc/sky/sun_night.png b/img/misc/sky/sun_night.png
new file mode 100644
index 0000000000000000000000000000000000000000..348e9aa78f684be5577c3923bcf9f13adf4da52e
Binary files /dev/null and b/img/misc/sky/sun_night.png differ
diff --git a/img/misc/winter/alex_cottage_dawn.png b/img/misc/winter/alex_cottage_dawn.png
index bc4d452937ddf520b20c4780f8164d1047087d35..c864f9e3e3cf1cc620e87d8dd66dcfc87abb3bd8 100644
Binary files a/img/misc/winter/alex_cottage_dawn.png and b/img/misc/winter/alex_cottage_dawn.png differ
diff --git a/img/misc/winter/alex_cottage_day.png b/img/misc/winter/alex_cottage_day.png
index 0b259874d51fad4f870212033107ee6330740c60..0e49e9b04776f21f810f7a5795be5250ac73f25d 100644
Binary files a/img/misc/winter/alex_cottage_day.png and b/img/misc/winter/alex_cottage_day.png differ
diff --git a/img/misc/winter/alex_cottage_dusk.png b/img/misc/winter/alex_cottage_dusk.png
index a517d80a907715f857f75b96f9425e5af092ed75..38361a891db26b83c47039939e87b9c1a1f1cce0 100644
Binary files a/img/misc/winter/alex_cottage_dusk.png and b/img/misc/winter/alex_cottage_dusk.png differ
diff --git a/img/misc/winter/alex_cottage_night.png b/img/misc/winter/alex_cottage_night.png
index d9e820ae7819bd2856328e6c7c8b5b99a314a46b..e5930f85e74692c58fb4544f65c3228a4208fce3 100644
Binary files a/img/misc/winter/alex_cottage_night.png and b/img/misc/winter/alex_cottage_night.png differ
diff --git a/img/misc/winter/alex_farm_dawn.png b/img/misc/winter/alex_farm_dawn.png
index e7af82e1a6f2bce168c6e15f1696e6d2f33e2ac2..0a91db26e9f7c4e5bedd25b6fee24c665e5651d6 100644
Binary files a/img/misc/winter/alex_farm_dawn.png and b/img/misc/winter/alex_farm_dawn.png differ
diff --git a/img/misc/winter/alex_farm_day.png b/img/misc/winter/alex_farm_day.png
index eaf40de6a2117988e4e9bd6378173f537c793892..d2ccbc9f9cad75ed33b7682fc8eb687f18b2f49d 100644
Binary files a/img/misc/winter/alex_farm_day.png and b/img/misc/winter/alex_farm_day.png differ
diff --git a/img/misc/winter/alex_farm_dusk.png b/img/misc/winter/alex_farm_dusk.png
index 68a79eb930b72dcd56f649b1626c219a12ac30a4..d8c6380ff3ed0c32e78851ee2a6e10c6516ec3f5 100644
Binary files a/img/misc/winter/alex_farm_dusk.png and b/img/misc/winter/alex_farm_dusk.png differ
diff --git a/img/misc/winter/alex_farm_night.png b/img/misc/winter/alex_farm_night.png
index 09a014cbc537a998ea6e87e778966922b8f474c4..931300c22f35662cdd84e44d09d338d00893e33f 100644
Binary files a/img/misc/winter/alex_farm_night.png and b/img/misc/winter/alex_farm_night.png differ
diff --git a/img/misc/winter/alley_bloodmoon.gif b/img/misc/winter/alley_bloodmoon.gif
index abc121bc37d3393eb1de2e0f43abd2e963ffaf61..0b3f7fa1cb7c58ef4ac5b446000fbe195f375590 100644
Binary files a/img/misc/winter/alley_bloodmoon.gif and b/img/misc/winter/alley_bloodmoon.gif differ
diff --git a/img/misc/winter/alley_dawn.gif b/img/misc/winter/alley_dawn.gif
index 3452138e0f7907cacbc4ae87f9ee9a3334800eec..b152fe8aa2dfd427347bc466acc83f88cc8d2c2c 100644
Binary files a/img/misc/winter/alley_dawn.gif and b/img/misc/winter/alley_dawn.gif differ
diff --git a/img/misc/winter/alley_day.gif b/img/misc/winter/alley_day.gif
index c6a626825a1a5cab341a0e2855379850fbd76e46..6c7bdd8b61583299676cf880e954a4027f4b6829 100644
Binary files a/img/misc/winter/alley_day.gif and b/img/misc/winter/alley_day.gif differ
diff --git a/img/misc/winter/alley_dusk.gif b/img/misc/winter/alley_dusk.gif
index d8f4f6a9d9e3c4d83bfce39e3b39d7f116fe40fc..81fc409c8242a2eab870054b7c874e7fd1cb7bca 100644
Binary files a/img/misc/winter/alley_dusk.gif and b/img/misc/winter/alley_dusk.gif differ
diff --git a/img/misc/winter/alley_night.gif b/img/misc/winter/alley_night.gif
index 8eec2f0f0fabb3f4fa09654f4f354d7afe546799..89b6ad4855c658811b08ac3402e573b34dcfcca0 100644
Binary files a/img/misc/winter/alley_night.gif and b/img/misc/winter/alley_night.gif differ
diff --git a/img/misc/winter/arcade_dawn.png b/img/misc/winter/arcade_dawn.png
index 6a8812e3ab52fbb11082b7f4e388b24a11f40b87..5997ba0b660071e1eee4caaaf4357ea74635dda1 100644
Binary files a/img/misc/winter/arcade_dawn.png and b/img/misc/winter/arcade_dawn.png differ
diff --git a/img/misc/winter/arcade_day.png b/img/misc/winter/arcade_day.png
index 38e9f6cfbab5352c074d48fcf9adb957f8a8b7a0..87eb1286dac5d92d762836e4fedfc5bc473bcb0c 100644
Binary files a/img/misc/winter/arcade_day.png and b/img/misc/winter/arcade_day.png differ
diff --git a/img/misc/winter/arcade_dusk.png b/img/misc/winter/arcade_dusk.png
index d56ed1c3a5b6f3116dec0cdd6146e8f68e97fee5..87eb1286dac5d92d762836e4fedfc5bc473bcb0c 100644
Binary files a/img/misc/winter/arcade_dusk.png and b/img/misc/winter/arcade_dusk.png differ
diff --git a/img/misc/winter/arcade_night.png b/img/misc/winter/arcade_night.png
index 91d3e4bc3edb53b3cb6601e3b09109c9dd7ebca3..2222c99449fd81c4bc96d07df7f65661d061f7d4 100644
Binary files a/img/misc/winter/arcade_night.png and b/img/misc/winter/arcade_night.png differ
diff --git a/img/misc/winter/asylum_dawnslow.gif b/img/misc/winter/asylum_dawnslow.gif
index fec5dc897448dac77d1dd468d9c3851f309f31e3..f5bf9dc2225140631ca87a8b9085eea804991621 100644
Binary files a/img/misc/winter/asylum_dawnslow.gif and b/img/misc/winter/asylum_dawnslow.gif differ
diff --git a/img/misc/winter/asylum_dawnvfast.gif b/img/misc/winter/asylum_dawnvfast.gif
index 7ac3cb21f6bb813f23ac2ce6c2326b772937182c..0dbbc382a3c38c56bc0fc743d8cf553e178fa16a 100644
Binary files a/img/misc/winter/asylum_dawnvfast.gif and b/img/misc/winter/asylum_dawnvfast.gif differ
diff --git a/img/misc/winter/asylum_dayslow.gif b/img/misc/winter/asylum_dayslow.gif
index ba4af763fda519d9e52a6b4d0b4f30aa5ace907a..43eb445d7270ec999bd60bb78e6dcabc20c71e21 100644
Binary files a/img/misc/winter/asylum_dayslow.gif and b/img/misc/winter/asylum_dayslow.gif differ
diff --git a/img/misc/winter/asylum_dayvfast.gif b/img/misc/winter/asylum_dayvfast.gif
index f88773dc733d58ecf88cf3d3fddd204db7b2ecbd..f1cf1615668f1036c5b545fe255408870782f713 100644
Binary files a/img/misc/winter/asylum_dayvfast.gif and b/img/misc/winter/asylum_dayvfast.gif differ
diff --git a/img/misc/winter/asylum_duskslow.gif b/img/misc/winter/asylum_duskslow.gif
index 19bc5d059fe1c9f1272efa92e1c0c240b290c766..f5bf9dc2225140631ca87a8b9085eea804991621 100644
Binary files a/img/misc/winter/asylum_duskslow.gif and b/img/misc/winter/asylum_duskslow.gif differ
diff --git a/img/misc/winter/asylum_duskvfast.gif b/img/misc/winter/asylum_duskvfast.gif
index 9f621f213e7191c0308b59f56e1df0feab700a61..3e1513a056d9dc5f0897f67054800f282e245b90 100644
Binary files a/img/misc/winter/asylum_duskvfast.gif and b/img/misc/winter/asylum_duskvfast.gif differ
diff --git a/img/misc/winter/asylum_nightslow.gif b/img/misc/winter/asylum_nightslow.gif
index 372fb22c4c1bb762892701046951c9bb38d64408..603861971e93fce9abb24028424e4a94f6e73dda 100644
Binary files a/img/misc/winter/asylum_nightslow.gif and b/img/misc/winter/asylum_nightslow.gif differ
diff --git a/img/misc/winter/asylum_nightvfast.gif b/img/misc/winter/asylum_nightvfast.gif
index 5dcbfcf5ea03f5bec3b375b3240b5757e7050f26..c587156b43e5095fd15a6818f169c1d6e8f251d0 100644
Binary files a/img/misc/winter/asylum_nightvfast.gif and b/img/misc/winter/asylum_nightvfast.gif differ
diff --git a/img/misc/winter/beach_dawn.gif b/img/misc/winter/beach_dawn.gif
index b3309897c5b740dc7e5253e21533475dddbfd56d..751f7a315ae75a62fd0fe62ea56212d04fa6eba7 100644
Binary files a/img/misc/winter/beach_dawn.gif and b/img/misc/winter/beach_dawn.gif differ
diff --git a/img/misc/winter/beach_day.gif b/img/misc/winter/beach_day.gif
index 9b1e18b5dd1404db367b56efc7512537999996b4..6f9803fb1e0ec609515f4a2b7e4e8233b6413e9b 100644
Binary files a/img/misc/winter/beach_day.gif and b/img/misc/winter/beach_day.gif differ
diff --git a/img/misc/winter/beach_dusk.gif b/img/misc/winter/beach_dusk.gif
index c42a1d42417aaeaf2bf743317a8cbe90268816e1..978a7f7211ca72017b0a3310ff6b8c9fd25d2cda 100644
Binary files a/img/misc/winter/beach_dusk.gif and b/img/misc/winter/beach_dusk.gif differ
diff --git a/img/misc/winter/beach_night.gif b/img/misc/winter/beach_night.gif
index b3dfe92bc9026976627aa1bd4657eaee577f30fa..ef3ebc40cf64ec31583346e56eb1c22279caa578 100644
Binary files a/img/misc/winter/beach_night.gif and b/img/misc/winter/beach_night.gif differ
diff --git a/img/misc/winter/boat_dawn.gif b/img/misc/winter/boat_dawn.gif
index 7b045b7447bcbd20caec28572669896b30db0da3..3a17aeefdb52cedb7280253effef605e7d72e1f4 100644
Binary files a/img/misc/winter/boat_dawn.gif and b/img/misc/winter/boat_dawn.gif differ
diff --git a/img/misc/winter/boat_day.gif b/img/misc/winter/boat_day.gif
index 1c176ec3d85e792d9e3dd6c22030d99f76a71928..3a17aeefdb52cedb7280253effef605e7d72e1f4 100644
Binary files a/img/misc/winter/boat_day.gif and b/img/misc/winter/boat_day.gif differ
diff --git a/img/misc/winter/boat_dusk.gif b/img/misc/winter/boat_dusk.gif
index 3dcd2a52ac6e1823a6c343b1549abec7ae18503c..00b68a8ab2fc2d14731a43acf05f2f2d1ae09e42 100644
Binary files a/img/misc/winter/boat_dusk.gif and b/img/misc/winter/boat_dusk.gif differ
diff --git a/img/misc/winter/boat_night.gif b/img/misc/winter/boat_night.gif
index 62249ce03b61c52b97e73259411d5ef63ac63971..cae8a59b1aa89edaa0e39e45e5eba95580a136c9 100644
Binary files a/img/misc/winter/boat_night.gif and b/img/misc/winter/boat_night.gif differ
diff --git a/img/misc/winter/bog_bloodmoon.gif b/img/misc/winter/bog_bloodmoon.gif
new file mode 100644
index 0000000000000000000000000000000000000000..335390b5249b05374479d7d1828c77ac1e8f7eab
Binary files /dev/null and b/img/misc/winter/bog_bloodmoon.gif differ
diff --git a/img/misc/winter/bog_dawn.gif b/img/misc/winter/bog_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..1bcabdb8db1c8106bbe2ceb04b8462599a9a6d85
Binary files /dev/null and b/img/misc/winter/bog_dawn.gif differ
diff --git a/img/misc/winter/bog_day.gif b/img/misc/winter/bog_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..4375a44648c8bf63d86bc553fe722a2f8b2c48f9
Binary files /dev/null and b/img/misc/winter/bog_day.gif differ
diff --git a/img/misc/winter/bog_dusk.gif b/img/misc/winter/bog_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..caa5e3b77da3d682b53a4cb5507611d597d50aff
Binary files /dev/null and b/img/misc/winter/bog_dusk.gif differ
diff --git a/img/misc/winter/bog_night.gif b/img/misc/winter/bog_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..1f6c607b96879761e7cd9867db403cff451c5d32
Binary files /dev/null and b/img/misc/winter/bog_night.gif differ
diff --git a/img/misc/winter/brothel_dawn.png b/img/misc/winter/brothel_dawn.png
index 7774d036fbe96b9d9f746a2fb4fc74536d84eebc..638e7b6dacfdcc185a7358a8e316d27e5f1edd82 100644
Binary files a/img/misc/winter/brothel_dawn.png and b/img/misc/winter/brothel_dawn.png differ
diff --git a/img/misc/winter/brothel_day.png b/img/misc/winter/brothel_day.png
index 7b2e3a8d33fa0319f8e27986127ea987d53b9740..baff2a596badb1cac7b163194ef41a7d7d4e2f64 100644
Binary files a/img/misc/winter/brothel_day.png and b/img/misc/winter/brothel_day.png differ
diff --git a/img/misc/winter/brothel_dusk.png b/img/misc/winter/brothel_dusk.png
index b6ae5887f7134a6eb8d7239e88398ffb1a7eaec0..baff2a596badb1cac7b163194ef41a7d7d4e2f64 100644
Binary files a/img/misc/winter/brothel_dusk.png and b/img/misc/winter/brothel_dusk.png differ
diff --git a/img/misc/winter/brothel_night.png b/img/misc/winter/brothel_night.png
index a1272335d3b38a11e13b2fb598f3e526af24fc40..207119b7bdf9c4708375ff9ce209a8b9009eb0b9 100644
Binary files a/img/misc/winter/brothel_night.png and b/img/misc/winter/brothel_night.png differ
diff --git a/img/misc/winter/cabin_dawn.png b/img/misc/winter/cabin_dawn.png
index c38932925145a6c53e7011078ff1115260699e19..9a9fde136b32a214182fb0dfaae9eba9cd2a1546 100644
Binary files a/img/misc/winter/cabin_dawn.png and b/img/misc/winter/cabin_dawn.png differ
diff --git a/img/misc/winter/cabin_day.png b/img/misc/winter/cabin_day.png
index 5c0dd649d504abdebb14aa94f0673d136b690941..8c4f94f73350887cf4b6722d378c954bba4ecbeb 100644
Binary files a/img/misc/winter/cabin_day.png and b/img/misc/winter/cabin_day.png differ
diff --git a/img/misc/winter/cabin_dusk.png b/img/misc/winter/cabin_dusk.png
index 296a1f177f986fbe5df6e9c7afc1024ea8a53f1e..365383f09a6a439fb6c18159635420ff97af20c2 100644
Binary files a/img/misc/winter/cabin_dusk.png and b/img/misc/winter/cabin_dusk.png differ
diff --git a/img/misc/winter/cabin_night.png b/img/misc/winter/cabin_night.png
index ad33160f299b252d7a1437197331953c15fc91f2..e1c9afbaff1a72b8ee6e8791ce7b7de0e3596728 100644
Binary files a/img/misc/winter/cabin_night.png and b/img/misc/winter/cabin_night.png differ
diff --git a/img/misc/winter/cafe_construction_dawn.png b/img/misc/winter/cafe_construction_dawn.png
index cc2210b4ec6694dd79e5981f8a0393fb18ea5b7f..6dc28645ecfe8720ccd4046a96d92173c873eda6 100644
Binary files a/img/misc/winter/cafe_construction_dawn.png and b/img/misc/winter/cafe_construction_dawn.png differ
diff --git a/img/misc/winter/cafe_construction_day.png b/img/misc/winter/cafe_construction_day.png
index 21a6248910eab03350aad563874daae3983a9e23..396e243c7ce9e86518360a88969531b26a59cdac 100644
Binary files a/img/misc/winter/cafe_construction_day.png and b/img/misc/winter/cafe_construction_day.png differ
diff --git a/img/misc/winter/cafe_construction_dusk.png b/img/misc/winter/cafe_construction_dusk.png
index 52e124f196b5bc9fac1a4f3f2e9b1bf9dd3ae49f..60b8aec128c610c5bb73d78a3cfd32b2ae7e1d2b 100644
Binary files a/img/misc/winter/cafe_construction_dusk.png and b/img/misc/winter/cafe_construction_dusk.png differ
diff --git a/img/misc/winter/cafe_construction_night.png b/img/misc/winter/cafe_construction_night.png
index 64095faebe7e0e82baa198606d932943aa27da67..0bedc6d663b130918140c0283550e25d8395c358 100644
Binary files a/img/misc/winter/cafe_construction_night.png and b/img/misc/winter/cafe_construction_night.png differ
diff --git a/img/misc/winter/cafe_dawn.png b/img/misc/winter/cafe_dawn.png
index 336b41d6256ced6d1716d90370d7a23737a09e3a..73302a6e0b54f2348560dbbf02b9c523a85f542f 100644
Binary files a/img/misc/winter/cafe_dawn.png and b/img/misc/winter/cafe_dawn.png differ
diff --git a/img/misc/winter/cafe_day.png b/img/misc/winter/cafe_day.png
index ba10dca3416a6995a655570dafd27fd23188027a..16fcd19f240356c951ca757b5587c7fecf22af4b 100644
Binary files a/img/misc/winter/cafe_day.png and b/img/misc/winter/cafe_day.png differ
diff --git a/img/misc/winter/cafe_dusk.png b/img/misc/winter/cafe_dusk.png
index 6235d882260a9724d9544979231e2cb33c4cb4ea..19fce25126937e6816cf56f4eaab6b732e21f66a 100644
Binary files a/img/misc/winter/cafe_dusk.png and b/img/misc/winter/cafe_dusk.png differ
diff --git a/img/misc/winter/cafe_night.png b/img/misc/winter/cafe_night.png
index dcf6fbc8a6c58e0418cc5f4f400ff7d8845689aa..15b6dcb43faca33273f091164505d5f0066b798b 100644
Binary files a/img/misc/winter/cafe_night.png and b/img/misc/winter/cafe_night.png differ
diff --git a/img/misc/winter/cafe_renovated_dawn.png b/img/misc/winter/cafe_renovated_dawn.png
index 9146945b626dc832d17506ee64e814069ea58ea5..ed4221d372946abb87e2d822021637510bd9cfac 100644
Binary files a/img/misc/winter/cafe_renovated_dawn.png and b/img/misc/winter/cafe_renovated_dawn.png differ
diff --git a/img/misc/winter/cafe_renovated_day.png b/img/misc/winter/cafe_renovated_day.png
index fe9970eb7e58a969c13cd526209bcbd8c8e3fbc4..1dffc42084fc539005057eb45b7ae42a350370e1 100644
Binary files a/img/misc/winter/cafe_renovated_day.png and b/img/misc/winter/cafe_renovated_day.png differ
diff --git a/img/misc/winter/cafe_renovated_dusk.png b/img/misc/winter/cafe_renovated_dusk.png
index 2002822ed805d059ec0260fe8e43ea84858d2899..6dbe24e5f2c5a1697c5139d07f9719045eae9e4e 100644
Binary files a/img/misc/winter/cafe_renovated_dusk.png and b/img/misc/winter/cafe_renovated_dusk.png differ
diff --git a/img/misc/winter/cafe_renovated_night.png b/img/misc/winter/cafe_renovated_night.png
index ce46e7dee2c6d2c1f8b829226052eed844167631..3a02a305b8e753ba45937f4b79a5ec19b2f7f2d1 100644
Binary files a/img/misc/winter/cafe_renovated_night.png and b/img/misc/winter/cafe_renovated_night.png differ
diff --git a/img/misc/winter/canal_dawn.gif b/img/misc/winter/canal_dawn.gif
index 2091879f65681594b33157c07e3137f621fadb98..9e32cebe9bb28e7ca77e8a7e825599663ec1436d 100644
Binary files a/img/misc/winter/canal_dawn.gif and b/img/misc/winter/canal_dawn.gif differ
diff --git a/img/misc/winter/canal_day.gif b/img/misc/winter/canal_day.gif
index 3197389ee71c7efb9716b35c87d6c37efb5b0e67..25070b20bd33059ee8f911d610718666b54b82e5 100644
Binary files a/img/misc/winter/canal_day.gif and b/img/misc/winter/canal_day.gif differ
diff --git a/img/misc/winter/canal_dusk.gif b/img/misc/winter/canal_dusk.gif
index 6155b8b7027895bd46acba0a64587a33224e722a..4e00cd8ccd01cf9d2b6645b8d119d97d202f3deb 100644
Binary files a/img/misc/winter/canal_dusk.gif and b/img/misc/winter/canal_dusk.gif differ
diff --git a/img/misc/winter/canal_night.gif b/img/misc/winter/canal_night.gif
index 59fa40b50f56a3cd0e01f0b8034f6be7ba8ddf22..3db5ec94e150f790c42d86dccd85fce872729279 100644
Binary files a/img/misc/winter/canal_night.gif and b/img/misc/winter/canal_night.gif differ
diff --git a/img/misc/winter/churchyard_dawn.png b/img/misc/winter/churchyard_dawn.png
index 973d47b5e16b4d34dfd856b667d4b704e5ab35ef..33e1a5f78bf5a174ea3695d497b876d32eba8486 100644
Binary files a/img/misc/winter/churchyard_dawn.png and b/img/misc/winter/churchyard_dawn.png differ
diff --git a/img/misc/winter/churchyard_day.png b/img/misc/winter/churchyard_day.png
index c80c1a6d8dbd868d2ff3474b5ebbe7a12d256656..33e1a5f78bf5a174ea3695d497b876d32eba8486 100644
Binary files a/img/misc/winter/churchyard_day.png and b/img/misc/winter/churchyard_day.png differ
diff --git a/img/misc/winter/churchyard_dusk.png b/img/misc/winter/churchyard_dusk.png
index bbafe8e3c606de3279651ac80726937a8637e466..813a37adae385f5ea4d9023e0d004c1f2c172d09 100644
Binary files a/img/misc/winter/churchyard_dusk.png and b/img/misc/winter/churchyard_dusk.png differ
diff --git a/img/misc/winter/churchyard_night.png b/img/misc/winter/churchyard_night.png
index 7103446129f14dc5d72ff34448f12606acc3a2eb..6d0c0ba504773a665e22c35fb221f5eab45d8d7a 100644
Binary files a/img/misc/winter/churchyard_night.png and b/img/misc/winter/churchyard_night.png differ
diff --git a/img/misc/winter/compound_dawn.gif b/img/misc/winter/compound_dawn.gif
index 2e4569fd2527afa64ba3b129be498a70a74ede0c..45dc345779cc2ab4bb503ef44c26c74da465a910 100644
Binary files a/img/misc/winter/compound_dawn.gif and b/img/misc/winter/compound_dawn.gif differ
diff --git a/img/misc/winter/compound_day.gif b/img/misc/winter/compound_day.gif
index 413a047a996d892c97af9d7164d71ea383625269..651f87faee9c40a81a2334e8cf3082b47200ad36 100644
Binary files a/img/misc/winter/compound_day.gif and b/img/misc/winter/compound_day.gif differ
diff --git a/img/misc/winter/compound_dusk.gif b/img/misc/winter/compound_dusk.gif
index 14908a45c1f32326136db99051ef91eff31fde1a..d5bc283152b863bc43c2f8b06efcab88db822c4a 100644
Binary files a/img/misc/winter/compound_dusk.gif and b/img/misc/winter/compound_dusk.gif differ
diff --git a/img/misc/winter/compound_night.gif b/img/misc/winter/compound_night.gif
index 6f76b6df3af77316b77392e54f33ad8badf1302a..47e1bfe91bbe08b6a69bfbb9b8db1d590d407e6e 100644
Binary files a/img/misc/winter/compound_night.gif and b/img/misc/winter/compound_night.gif differ
diff --git a/img/misc/winter/dance_studio_dawn.png b/img/misc/winter/dance_studio_dawn.png
index 40d3dfac32647f5cafbffd894addb25c516e0b84..da5b118f73f7ad3aec67ceb36af8e6618d6f6b5a 100644
Binary files a/img/misc/winter/dance_studio_dawn.png and b/img/misc/winter/dance_studio_dawn.png differ
diff --git a/img/misc/winter/dance_studio_day.png b/img/misc/winter/dance_studio_day.png
index 8f4f2e766f5d0f3e2adaf77681424cc4b6d9fad8..ff100941893d0477b2f73d3f2a400eb4cdcc9c11 100644
Binary files a/img/misc/winter/dance_studio_day.png and b/img/misc/winter/dance_studio_day.png differ
diff --git a/img/misc/winter/dance_studio_dusk.png b/img/misc/winter/dance_studio_dusk.png
index 18244eed0fddc8f1e6ab5449a174639c21ae0905..ff100941893d0477b2f73d3f2a400eb4cdcc9c11 100644
Binary files a/img/misc/winter/dance_studio_dusk.png and b/img/misc/winter/dance_studio_dusk.png differ
diff --git a/img/misc/winter/dance_studio_night.png b/img/misc/winter/dance_studio_night.png
index ff6e728800e6803815cb06fc4f0a7579c9cd3ffc..1f3b1a2c7faf236e1c2daef12fa6ce85a23f5d64 100644
Binary files a/img/misc/winter/dance_studio_night.png and b/img/misc/winter/dance_studio_night.png differ
diff --git a/img/misc/winter/dilapidated_shop_dawn.png b/img/misc/winter/dilapidated_shop_dawn.png
index 7c7b1c1997f7dfbcd5e9dc691f1b18a49a129797..d69ffeb4da4911a23a36bb823063f46f09fa9eab 100644
Binary files a/img/misc/winter/dilapidated_shop_dawn.png and b/img/misc/winter/dilapidated_shop_dawn.png differ
diff --git a/img/misc/winter/dilapidated_shop_day.png b/img/misc/winter/dilapidated_shop_day.png
index 34bbfd91934489318fea507e6947444d84d1f598..3e0717239bd5b41dd24a3ea308e7147e74fd2796 100644
Binary files a/img/misc/winter/dilapidated_shop_day.png and b/img/misc/winter/dilapidated_shop_day.png differ
diff --git a/img/misc/winter/dilapidated_shop_dusk.png b/img/misc/winter/dilapidated_shop_dusk.png
index cf4322e9566001dcb931e83bc5a00c84f023268c..ae882db613be7b661a40a123d7fd5980621f27eb 100644
Binary files a/img/misc/winter/dilapidated_shop_dusk.png and b/img/misc/winter/dilapidated_shop_dusk.png differ
diff --git a/img/misc/winter/dilapidated_shop_night.png b/img/misc/winter/dilapidated_shop_night.png
index f205431ead06efa23b8576e037fd63c798328621..91b2559b294f59f50c46599668e5090c7d51ea12 100644
Binary files a/img/misc/winter/dilapidated_shop_night.png and b/img/misc/winter/dilapidated_shop_night.png differ
diff --git a/img/misc/winter/docks_dawn.png b/img/misc/winter/docks_dawn.png
index 017937c964f42d7fbb36e2570fd8ee3a275079e8..1fe6e2828885a5345d5c0aef1ac9c89c835fb203 100644
Binary files a/img/misc/winter/docks_dawn.png and b/img/misc/winter/docks_dawn.png differ
diff --git a/img/misc/winter/docks_day.png b/img/misc/winter/docks_day.png
index b7125526c69faa8bb87e814c5fc91cb871f56135..e62b930e2dada424bb6a630c7261612cc014a704 100644
Binary files a/img/misc/winter/docks_day.png and b/img/misc/winter/docks_day.png differ
diff --git a/img/misc/winter/docks_dusk.png b/img/misc/winter/docks_dusk.png
index 17e1e6edd98c3e0e3baaddfb6365bc9ef21e1ab1..8668df9e6ce7162941f2d1283fec8e926732b704 100644
Binary files a/img/misc/winter/docks_dusk.png and b/img/misc/winter/docks_dusk.png differ
diff --git a/img/misc/winter/docks_night.png b/img/misc/winter/docks_night.png
index 9ac3276142c919d00cc60161d424541252c49f89..6e163e38b17c0cc0d02556db3428ef7824ee1c82 100644
Binary files a/img/misc/winter/docks_night.png and b/img/misc/winter/docks_night.png differ
diff --git a/img/misc/winter/dog_pound_dawn.gif b/img/misc/winter/dog_pound_dawn.gif
index 2679b4e4dfd503186257061d6f346e24aebf62c3..2e411e2826fb0c39215f3c11896c7ec30263a6c2 100644
Binary files a/img/misc/winter/dog_pound_dawn.gif and b/img/misc/winter/dog_pound_dawn.gif differ
diff --git a/img/misc/winter/dog_pound_day.gif b/img/misc/winter/dog_pound_day.gif
index c22cac8d76add240e661ea18d9e458bde9645932..413c0b34fcba05ea77de3b3e0752638b349cbe36 100644
Binary files a/img/misc/winter/dog_pound_day.gif and b/img/misc/winter/dog_pound_day.gif differ
diff --git a/img/misc/winter/dog_pound_dusk.gif b/img/misc/winter/dog_pound_dusk.gif
index b95f0b57e1d7cd344f54fb84252ac4030b9366d4..443e9f1ed7b9259752e5fbb235f98f65179d47d2 100644
Binary files a/img/misc/winter/dog_pound_dusk.gif and b/img/misc/winter/dog_pound_dusk.gif differ
diff --git a/img/misc/winter/dog_pound_night.gif b/img/misc/winter/dog_pound_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..0570da99fd2212eaa1fee69af47a091d45947a04
Binary files /dev/null and b/img/misc/winter/dog_pound_night.gif differ
diff --git a/img/misc/winter/dog_pound_night.png b/img/misc/winter/dog_pound_night.png
deleted file mode 100644
index 20537fb9b62967a6a0672d99cb1064e668aa6274..0000000000000000000000000000000000000000
Binary files a/img/misc/winter/dog_pound_night.png and /dev/null differ
diff --git a/img/misc/winter/factory_dawn.gif b/img/misc/winter/factory_dawn.gif
index db1fcce440fda4bff634ed707998dc1d650d6a6d..f081523411903b2db5e0f3d9c5321da698f23658 100644
Binary files a/img/misc/winter/factory_dawn.gif and b/img/misc/winter/factory_dawn.gif differ
diff --git a/img/misc/winter/factory_day.gif b/img/misc/winter/factory_day.gif
index f0802f69be2fb4f451a31993078b76a3164fd6c0..cbf562553b39416152a1308d40796a466f5b19d5 100644
Binary files a/img/misc/winter/factory_day.gif and b/img/misc/winter/factory_day.gif differ
diff --git a/img/misc/winter/factory_dusk.gif b/img/misc/winter/factory_dusk.gif
index 98edae7d76d007c93f3695a4a54690ed2b1a15d8..3c2c6432002f20fdcde83b422400af52075b4896 100644
Binary files a/img/misc/winter/factory_dusk.gif and b/img/misc/winter/factory_dusk.gif differ
diff --git a/img/misc/winter/factory_night.gif b/img/misc/winter/factory_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..5ae11f6a63f471be2d54a66cf94b51c02ea0a8bf
Binary files /dev/null and b/img/misc/winter/factory_night.gif differ
diff --git a/img/misc/winter/factory_night.png b/img/misc/winter/factory_night.png
deleted file mode 100644
index 23b6c4db6bc595294d443b6e23f21dff2ee83e7a..0000000000000000000000000000000000000000
Binary files a/img/misc/winter/factory_night.png and /dev/null differ
diff --git a/img/misc/winter/farm_dawn.png b/img/misc/winter/farm_dawn.png
index 9ab526d72bbd09c8976a9852e061e9298b55e8a1..d327bb482ba3adad95d9ae7d1d89345d6a4aa405 100644
Binary files a/img/misc/winter/farm_dawn.png and b/img/misc/winter/farm_dawn.png differ
diff --git a/img/misc/winter/farm_day.png b/img/misc/winter/farm_day.png
index 67d0fb1ead5f2ac8112d845b45e92af8038f9947..96034a6923c26bedf90dbf3c680e344b511a18a0 100644
Binary files a/img/misc/winter/farm_day.png and b/img/misc/winter/farm_day.png differ
diff --git a/img/misc/winter/farm_dusk.png b/img/misc/winter/farm_dusk.png
index 802ce9f8263040cbb9dfd42156c3839cbbf032e5..415011fb25e0bd4d60e5e6e0910e589301600056 100644
Binary files a/img/misc/winter/farm_dusk.png and b/img/misc/winter/farm_dusk.png differ
diff --git a/img/misc/winter/farm_night.png b/img/misc/winter/farm_night.png
index c066e74f9f444ec146397da54b38d50acca08e5a..3878cdc4ea8cb84f2ab4c721f91978c8413f4a2c 100644
Binary files a/img/misc/winter/farm_night.png and b/img/misc/winter/farm_night.png differ
diff --git a/img/misc/winter/flats_dawn.png b/img/misc/winter/flats_dawn.png
index 6b32edb8d2cb6470b898e266ba4230d564495b53..efc6045803b3e5db29b4da1cef5d30eff959d07e 100644
Binary files a/img/misc/winter/flats_dawn.png and b/img/misc/winter/flats_dawn.png differ
diff --git a/img/misc/winter/flats_day.png b/img/misc/winter/flats_day.png
index 2dbbd8d7aa45f998b462f64c62ffef6e315c1302..e7187cdbe159a47b4e2e11e8aa275339b2de968a 100644
Binary files a/img/misc/winter/flats_day.png and b/img/misc/winter/flats_day.png differ
diff --git a/img/misc/winter/flats_dusk.png b/img/misc/winter/flats_dusk.png
index cc09baca9191d874235e64d7d2b0ee68a3d0b406..cfbc36ac8a48854348275a1f7daf99e4e5f8bc18 100644
Binary files a/img/misc/winter/flats_dusk.png and b/img/misc/winter/flats_dusk.png differ
diff --git a/img/misc/winter/flats_night.png b/img/misc/winter/flats_night.png
index 63b6c40431a5e158fc6925746cdb9e24efd1d685..f2e85bdb82da0ccf267a3095b9a85f0a2184f633 100644
Binary files a/img/misc/winter/flats_night.png and b/img/misc/winter/flats_night.png differ
diff --git a/img/misc/winter/forest_bloodmoon.gif b/img/misc/winter/forest_bloodmoon.gif
index dbab9d5b55ba58347a5df1bb7f4b3109c18851de..8956d1286138d13aa75a0054efcf563847e9b96f 100644
Binary files a/img/misc/winter/forest_bloodmoon.gif and b/img/misc/winter/forest_bloodmoon.gif differ
diff --git a/img/misc/winter/forest_dawn.gif b/img/misc/winter/forest_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..81bf9065422790d1bc84309e3fc4ece644846fdd
Binary files /dev/null and b/img/misc/winter/forest_dawn.gif differ
diff --git a/img/misc/winter/forest_dawn.png b/img/misc/winter/forest_dawn.png
deleted file mode 100644
index b137a514d54e3e95f61de2fb2f8382e1e18ee3f4..0000000000000000000000000000000000000000
Binary files a/img/misc/winter/forest_dawn.png and /dev/null differ
diff --git a/img/misc/winter/forest_day.gif b/img/misc/winter/forest_day.gif
index 5d192c6751930a0fafcb52b85eae00639543329e..5273b899c5ebb1a3ba67e6b9cc7f95d70ff38b0f 100644
Binary files a/img/misc/winter/forest_day.gif and b/img/misc/winter/forest_day.gif differ
diff --git a/img/misc/winter/forest_dusk.gif b/img/misc/winter/forest_dusk.gif
index d840c08fb5986c336b122c99743f22e2e7656118..0b020c2f124fa27867339a3122b659ab8870f7aa 100644
Binary files a/img/misc/winter/forest_dusk.gif and b/img/misc/winter/forest_dusk.gif differ
diff --git a/img/misc/winter/forest_night.gif b/img/misc/winter/forest_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..e0ba22db8f3d7ee18db83c872a8b23bb02df8f97
Binary files /dev/null and b/img/misc/winter/forest_night.gif differ
diff --git a/img/misc/winter/forest_night.png b/img/misc/winter/forest_night.png
deleted file mode 100644
index 7d218204faf287cedf1d34525f1aa2db619dfd66..0000000000000000000000000000000000000000
Binary files a/img/misc/winter/forest_night.png and /dev/null differ
diff --git a/img/misc/winter/forest_shop_dawn.png b/img/misc/winter/forest_shop_dawn.png
index 10207f11ab3c0174cf9a40b50a3480140727e849..66dcdef2d02a089448fe45669267092fb1270c2a 100644
Binary files a/img/misc/winter/forest_shop_dawn.png and b/img/misc/winter/forest_shop_dawn.png differ
diff --git a/img/misc/winter/forest_shop_day.png b/img/misc/winter/forest_shop_day.png
index f1d605c7d6d7ce4f86db4293b59dda7572af6278..6fa5a97f4047914af5225e0709f3df7fa56ee60c 100644
Binary files a/img/misc/winter/forest_shop_day.png and b/img/misc/winter/forest_shop_day.png differ
diff --git a/img/misc/winter/forest_shop_dusk.png b/img/misc/winter/forest_shop_dusk.png
index a3ebe09633ce1f708e6fca0891131c7fe34232b7..3e803c564af6e337a89396d9647a4ad2db1994a7 100644
Binary files a/img/misc/winter/forest_shop_dusk.png and b/img/misc/winter/forest_shop_dusk.png differ
diff --git a/img/misc/winter/forest_shop_night.png b/img/misc/winter/forest_shop_night.png
index c546a68e6c3f4c9efbacf9da7efd5d0b43e9d1c7..0f889a77019c69497f921bd4321c4a642bf8f41a 100644
Binary files a/img/misc/winter/forest_shop_night.png and b/img/misc/winter/forest_shop_night.png differ
diff --git a/img/misc/winter/gif/alex_cottage_dawn.gif b/img/misc/winter/gif/alex_cottage_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..2a25f35cd5f9e2ccc8354d871e76b1fd93c906f5
Binary files /dev/null and b/img/misc/winter/gif/alex_cottage_dawn.gif differ
diff --git a/img/misc/winter/gif/alex_cottage_day.gif b/img/misc/winter/gif/alex_cottage_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..fb5115cc78c7d9496f56283bc8f6ac4e018ebdc7
Binary files /dev/null and b/img/misc/winter/gif/alex_cottage_day.gif differ
diff --git a/img/misc/winter/gif/alex_cottage_dusk.gif b/img/misc/winter/gif/alex_cottage_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..257e54bcb9407cd6dab79d4cdc39f66cb45c8534
Binary files /dev/null and b/img/misc/winter/gif/alex_cottage_dusk.gif differ
diff --git a/img/misc/winter/gif/alex_cottage_night.gif b/img/misc/winter/gif/alex_cottage_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..7baf1c92ba319b0c37df47d795d0c6a3b14c523a
Binary files /dev/null and b/img/misc/winter/gif/alex_cottage_night.gif differ
diff --git a/img/misc/winter/gif/alex_farm_dawn.gif b/img/misc/winter/gif/alex_farm_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..2e72d720f4949b4509e12d96adf8677f8f569649
Binary files /dev/null and b/img/misc/winter/gif/alex_farm_dawn.gif differ
diff --git a/img/misc/winter/gif/alex_farm_day.gif b/img/misc/winter/gif/alex_farm_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..f858c1f0d78ef3f54bd82faee0c6430c63ec3ab9
Binary files /dev/null and b/img/misc/winter/gif/alex_farm_day.gif differ
diff --git a/img/misc/winter/gif/alex_farm_dusk.gif b/img/misc/winter/gif/alex_farm_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..e0016fe2574976dc8b1681f4b1206d9192e7d665
Binary files /dev/null and b/img/misc/winter/gif/alex_farm_dusk.gif differ
diff --git a/img/misc/winter/gif/alex_farm_night.gif b/img/misc/winter/gif/alex_farm_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..d9a0830d41c63374b2269d8317991ae29f0df5f3
Binary files /dev/null and b/img/misc/winter/gif/alex_farm_night.gif differ
diff --git a/img/misc/winter/gif/arcade_dawn.gif b/img/misc/winter/gif/arcade_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..c4aae2032ef4ee92c138a0bfaca816804580b960
Binary files /dev/null and b/img/misc/winter/gif/arcade_dawn.gif differ
diff --git a/img/misc/winter/gif/arcade_day.gif b/img/misc/winter/gif/arcade_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..61d3df0001d3a726cede73e8cba1552163f8376f
Binary files /dev/null and b/img/misc/winter/gif/arcade_day.gif differ
diff --git a/img/misc/winter/gif/arcade_dusk.gif b/img/misc/winter/gif/arcade_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..61d3df0001d3a726cede73e8cba1552163f8376f
Binary files /dev/null and b/img/misc/winter/gif/arcade_dusk.gif differ
diff --git a/img/misc/winter/gif/arcade_night.gif b/img/misc/winter/gif/arcade_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..32ce36515379f0eefa86628d6e8e5d6679bac74d
Binary files /dev/null and b/img/misc/winter/gif/arcade_night.gif differ
diff --git a/img/misc/winter/gif/brothel_dawn.gif b/img/misc/winter/gif/brothel_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..b2f5dc74eb436d644c93c97d514f70112290aa41
Binary files /dev/null and b/img/misc/winter/gif/brothel_dawn.gif differ
diff --git a/img/misc/winter/gif/brothel_day.gif b/img/misc/winter/gif/brothel_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..0a6257c08cf252689d36afc2c25ea1a21aee571b
Binary files /dev/null and b/img/misc/winter/gif/brothel_day.gif differ
diff --git a/img/misc/winter/gif/brothel_dusk.gif b/img/misc/winter/gif/brothel_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..0a6257c08cf252689d36afc2c25ea1a21aee571b
Binary files /dev/null and b/img/misc/winter/gif/brothel_dusk.gif differ
diff --git a/img/misc/winter/gif/brothel_night.gif b/img/misc/winter/gif/brothel_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..a9de9000ad96fdbb401b70e7b1adb5fbcd153410
Binary files /dev/null and b/img/misc/winter/gif/brothel_night.gif differ
diff --git a/img/misc/winter/gif/cabin_dawn.gif b/img/misc/winter/gif/cabin_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..5b0741926ddc255d0ba0fa57002f0d97f65ca1d2
Binary files /dev/null and b/img/misc/winter/gif/cabin_dawn.gif differ
diff --git a/img/misc/winter/gif/cabin_day.gif b/img/misc/winter/gif/cabin_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..5be1634060e6e81629e21c549fd34223ecfa6c74
Binary files /dev/null and b/img/misc/winter/gif/cabin_day.gif differ
diff --git a/img/misc/winter/gif/cabin_dusk.gif b/img/misc/winter/gif/cabin_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..13a769aace7413fc946e255846b47dd1bfc5092e
Binary files /dev/null and b/img/misc/winter/gif/cabin_dusk.gif differ
diff --git a/img/misc/winter/gif/cabin_night.gif b/img/misc/winter/gif/cabin_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..ce1feb4d299722d35316fd32814aa0cc5bd2ede4
Binary files /dev/null and b/img/misc/winter/gif/cabin_night.gif differ
diff --git a/img/misc/winter/gif/cafe_construction_dawn.gif b/img/misc/winter/gif/cafe_construction_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..9c5553bdda78d7992be1179162e2946fe26d57d3
Binary files /dev/null and b/img/misc/winter/gif/cafe_construction_dawn.gif differ
diff --git a/img/misc/winter/gif/cafe_construction_day.gif b/img/misc/winter/gif/cafe_construction_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..bdb0c1ee5d6444d796ad64d923c11f6d723278c7
Binary files /dev/null and b/img/misc/winter/gif/cafe_construction_day.gif differ
diff --git a/img/misc/winter/gif/cafe_construction_dusk.gif b/img/misc/winter/gif/cafe_construction_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..929f4c607d52fe4afe5eceb3803bceb34e83e96e
Binary files /dev/null and b/img/misc/winter/gif/cafe_construction_dusk.gif differ
diff --git a/img/misc/winter/gif/cafe_construction_night.gif b/img/misc/winter/gif/cafe_construction_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..fccde89baa16bfcee0e5025263427755c3caa4a1
Binary files /dev/null and b/img/misc/winter/gif/cafe_construction_night.gif differ
diff --git a/img/misc/winter/gif/cafe_dawn.gif b/img/misc/winter/gif/cafe_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..752eee8974bc80f6bf5f87cdda79724636c6a470
Binary files /dev/null and b/img/misc/winter/gif/cafe_dawn.gif differ
diff --git a/img/misc/winter/gif/cafe_day.gif b/img/misc/winter/gif/cafe_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..39623a130c5c73216e13782ef500932b5dc2673f
Binary files /dev/null and b/img/misc/winter/gif/cafe_day.gif differ
diff --git a/img/misc/winter/gif/cafe_dusk.gif b/img/misc/winter/gif/cafe_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..c4d1a8eb4860dae6a0f20f135c9fa930b0ab20cb
Binary files /dev/null and b/img/misc/winter/gif/cafe_dusk.gif differ
diff --git a/img/misc/winter/gif/cafe_night.gif b/img/misc/winter/gif/cafe_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..ccf8b940dbe9a8de6a04bb3c05f32922be57a57e
Binary files /dev/null and b/img/misc/winter/gif/cafe_night.gif differ
diff --git a/img/misc/winter/gif/cafe_renovated_dawn.gif b/img/misc/winter/gif/cafe_renovated_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..4b42fdff9255804f403ae82a6dabbbe89c66284a
Binary files /dev/null and b/img/misc/winter/gif/cafe_renovated_dawn.gif differ
diff --git a/img/misc/winter/gif/cafe_renovated_day.gif b/img/misc/winter/gif/cafe_renovated_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..8c5d48a759cb44b6f8ba6c4e7877382c457bbb68
Binary files /dev/null and b/img/misc/winter/gif/cafe_renovated_day.gif differ
diff --git a/img/misc/winter/gif/cafe_renovated_dusk.gif b/img/misc/winter/gif/cafe_renovated_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..c8330cea23cc1384bb14852cf6ee5439c7dc8488
Binary files /dev/null and b/img/misc/winter/gif/cafe_renovated_dusk.gif differ
diff --git a/img/misc/winter/gif/cafe_renovated_night.gif b/img/misc/winter/gif/cafe_renovated_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..c626f6187c9eb7345195221d330fb5c2f006a2f2
Binary files /dev/null and b/img/misc/winter/gif/cafe_renovated_night.gif differ
diff --git a/img/misc/winter/gif/churchyard_dawn.gif b/img/misc/winter/gif/churchyard_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..434af47bc9837f30059696c8c7b2b05c491a56ae
Binary files /dev/null and b/img/misc/winter/gif/churchyard_dawn.gif differ
diff --git a/img/misc/winter/gif/churchyard_day.gif b/img/misc/winter/gif/churchyard_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..434af47bc9837f30059696c8c7b2b05c491a56ae
Binary files /dev/null and b/img/misc/winter/gif/churchyard_day.gif differ
diff --git a/img/misc/winter/gif/churchyard_dusk.gif b/img/misc/winter/gif/churchyard_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..ef1aa073b3041dc026fb325699dbe33a25bc4336
Binary files /dev/null and b/img/misc/winter/gif/churchyard_dusk.gif differ
diff --git a/img/misc/winter/gif/churchyard_night.gif b/img/misc/winter/gif/churchyard_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..8b6c3bcf9367ed727f75f7b0d1959368d4b03b3b
Binary files /dev/null and b/img/misc/winter/gif/churchyard_night.gif differ
diff --git a/img/misc/winter/gif/dance_studio_dawn.gif b/img/misc/winter/gif/dance_studio_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..621a43a99e12512de710ed28e807af288645fa5b
Binary files /dev/null and b/img/misc/winter/gif/dance_studio_dawn.gif differ
diff --git a/img/misc/winter/gif/dance_studio_day.gif b/img/misc/winter/gif/dance_studio_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..9bca1cbb94c4a3fbaab5442b68591c10d8fa1012
Binary files /dev/null and b/img/misc/winter/gif/dance_studio_day.gif differ
diff --git a/img/misc/winter/gif/dance_studio_dusk.gif b/img/misc/winter/gif/dance_studio_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..9bca1cbb94c4a3fbaab5442b68591c10d8fa1012
Binary files /dev/null and b/img/misc/winter/gif/dance_studio_dusk.gif differ
diff --git a/img/misc/winter/gif/dance_studio_night.gif b/img/misc/winter/gif/dance_studio_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..8f9f2a4f877de17edb71028e23df34ec86424f27
Binary files /dev/null and b/img/misc/winter/gif/dance_studio_night.gif differ
diff --git a/img/misc/winter/gif/dilapidated_shop_dawn.gif b/img/misc/winter/gif/dilapidated_shop_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..b28228fd68ad7dbc078436c283f584072ef3e653
Binary files /dev/null and b/img/misc/winter/gif/dilapidated_shop_dawn.gif differ
diff --git a/img/misc/winter/gif/dilapidated_shop_day.gif b/img/misc/winter/gif/dilapidated_shop_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..fc7a19e8e198054a896509ef7d81e8af342bf536
Binary files /dev/null and b/img/misc/winter/gif/dilapidated_shop_day.gif differ
diff --git a/img/misc/winter/gif/dilapidated_shop_dusk.gif b/img/misc/winter/gif/dilapidated_shop_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..a63a4243bde54c825561f50a686e9a1862a13dd8
Binary files /dev/null and b/img/misc/winter/gif/dilapidated_shop_dusk.gif differ
diff --git a/img/misc/winter/gif/dilapidated_shop_night.gif b/img/misc/winter/gif/dilapidated_shop_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..cfb0396780f90d995ceffccf351c16ea69922945
Binary files /dev/null and b/img/misc/winter/gif/dilapidated_shop_night.gif differ
diff --git a/img/misc/winter/gif/docks_dawn.gif b/img/misc/winter/gif/docks_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..d45b5cba2bd24eea7443b4852b9f3996fcd04d30
Binary files /dev/null and b/img/misc/winter/gif/docks_dawn.gif differ
diff --git a/img/misc/winter/gif/docks_day.gif b/img/misc/winter/gif/docks_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..ee1897756cab0d20dccf0f2a30435570053c4261
Binary files /dev/null and b/img/misc/winter/gif/docks_day.gif differ
diff --git a/img/misc/winter/gif/docks_dusk.gif b/img/misc/winter/gif/docks_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..82f84c8d9570f594dada385107696cdd9cb9f056
Binary files /dev/null and b/img/misc/winter/gif/docks_dusk.gif differ
diff --git a/img/misc/winter/gif/docks_night.gif b/img/misc/winter/gif/docks_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..d4119be73393c57319fd02b8469aed911802b550
Binary files /dev/null and b/img/misc/winter/gif/docks_night.gif differ
diff --git a/img/misc/winter/gif/farm_dawn.gif b/img/misc/winter/gif/farm_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..98c16b766ada4e0c987f2e37643e09357565217e
Binary files /dev/null and b/img/misc/winter/gif/farm_dawn.gif differ
diff --git a/img/misc/winter/gif/farm_day.gif b/img/misc/winter/gif/farm_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..70bceaba34058eff878da1708b882d20b6f84b1a
Binary files /dev/null and b/img/misc/winter/gif/farm_day.gif differ
diff --git a/img/misc/winter/gif/farm_dusk.gif b/img/misc/winter/gif/farm_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..9d1a0a57bb2fda7a533e37ca3c7d3cc33581c978
Binary files /dev/null and b/img/misc/winter/gif/farm_dusk.gif differ
diff --git a/img/misc/winter/gif/farm_night.gif b/img/misc/winter/gif/farm_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..91c73dde6ec1e36875b5cb67cae90f9e0184aa89
Binary files /dev/null and b/img/misc/winter/gif/farm_night.gif differ
diff --git a/img/misc/winter/gif/flats_dawn.gif b/img/misc/winter/gif/flats_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..c89ed6c37fdf697363be6f355a638669dbc6f009
Binary files /dev/null and b/img/misc/winter/gif/flats_dawn.gif differ
diff --git a/img/misc/winter/gif/flats_day.gif b/img/misc/winter/gif/flats_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..5633c93d11deef37c49c7d1d8621fde16f15cc37
Binary files /dev/null and b/img/misc/winter/gif/flats_day.gif differ
diff --git a/img/misc/winter/gif/flats_dusk.gif b/img/misc/winter/gif/flats_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..b01ff020998c7cb55c1e4aaa90ceefbbfc942348
Binary files /dev/null and b/img/misc/winter/gif/flats_dusk.gif differ
diff --git a/img/misc/winter/gif/flats_night.gif b/img/misc/winter/gif/flats_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..3429866c2c7d9435a1f3954c7915bf8ffd4ef1cc
Binary files /dev/null and b/img/misc/winter/gif/flats_night.gif differ
diff --git a/img/misc/winter/gif/forest_shop_dawn.gif b/img/misc/winter/gif/forest_shop_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..333489f9beb0884c5de13ccb6416395ee9bd9bd4
Binary files /dev/null and b/img/misc/winter/gif/forest_shop_dawn.gif differ
diff --git a/img/misc/winter/gif/forest_shop_day.gif b/img/misc/winter/gif/forest_shop_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..25df63f72bd959802c13ede4e04cb99f437a6fa9
Binary files /dev/null and b/img/misc/winter/gif/forest_shop_day.gif differ
diff --git a/img/misc/winter/gif/forest_shop_dusk.gif b/img/misc/winter/gif/forest_shop_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..c7817d7ee06137f9507f2d2e306d71db00752788
Binary files /dev/null and b/img/misc/winter/gif/forest_shop_dusk.gif differ
diff --git a/img/misc/winter/gif/forest_shop_night.gif b/img/misc/winter/gif/forest_shop_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..42130efff4516afcab8ee5506e92b1454a2c132e
Binary files /dev/null and b/img/misc/winter/gif/forest_shop_night.gif differ
diff --git a/img/misc/winter/gif/hospital_dawn.gif b/img/misc/winter/gif/hospital_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..424874dde019a58255ede2e93d6721f646d68a12
Binary files /dev/null and b/img/misc/winter/gif/hospital_dawn.gif differ
diff --git a/img/misc/winter/gif/hospital_day.gif b/img/misc/winter/gif/hospital_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..913e7d134fc28c2fc0134c19f5d4759bc5825df0
Binary files /dev/null and b/img/misc/winter/gif/hospital_day.gif differ
diff --git a/img/misc/winter/gif/hospital_dusk.gif b/img/misc/winter/gif/hospital_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..913e7d134fc28c2fc0134c19f5d4759bc5825df0
Binary files /dev/null and b/img/misc/winter/gif/hospital_dusk.gif differ
diff --git a/img/misc/winter/gif/hospital_night.gif b/img/misc/winter/gif/hospital_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..1429a6edd063d3cf2e768b0538cd20cf5b141e8f
Binary files /dev/null and b/img/misc/winter/gif/hospital_night.gif differ
diff --git a/img/misc/winter/gif/kylar_manor_dawn.gif b/img/misc/winter/gif/kylar_manor_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..3eaceac6054a72d530ebe9ed2ba388115b8e54f0
Binary files /dev/null and b/img/misc/winter/gif/kylar_manor_dawn.gif differ
diff --git a/img/misc/winter/gif/kylar_manor_day.gif b/img/misc/winter/gif/kylar_manor_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..bc2720d5114df01e65cdee2eef063bb4d1e5b211
Binary files /dev/null and b/img/misc/winter/gif/kylar_manor_day.gif differ
diff --git a/img/misc/winter/gif/kylar_manor_dusk.gif b/img/misc/winter/gif/kylar_manor_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..804f304427346e42ce92a1b1ff7f4c328d93f216
Binary files /dev/null and b/img/misc/winter/gif/kylar_manor_dusk.gif differ
diff --git a/img/misc/winter/gif/kylar_manor_night.gif b/img/misc/winter/gif/kylar_manor_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..9bcbcc2639dab64149e3013d2e020460d253e411
Binary files /dev/null and b/img/misc/winter/gif/kylar_manor_night.gif differ
diff --git a/img/misc/winter/gif/landfill_dawn.gif b/img/misc/winter/gif/landfill_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..42ee5a005cec41c95fe6abad739169f6f7237454
Binary files /dev/null and b/img/misc/winter/gif/landfill_dawn.gif differ
diff --git a/img/misc/winter/gif/landfill_day.gif b/img/misc/winter/gif/landfill_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..4bab97c54dcb6fb3d48d48fd35a101cc9bb0910a
Binary files /dev/null and b/img/misc/winter/gif/landfill_day.gif differ
diff --git a/img/misc/winter/gif/landfill_dusk.gif b/img/misc/winter/gif/landfill_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..eed958b8497b6797fd27192bd9de1154b25cd32a
Binary files /dev/null and b/img/misc/winter/gif/landfill_dusk.gif differ
diff --git a/img/misc/winter/gif/landfill_night.gif b/img/misc/winter/gif/landfill_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..b8ab9233eb93786c5d2c0c46a1c826023d416983
Binary files /dev/null and b/img/misc/winter/gif/landfill_night.gif differ
diff --git a/img/misc/winter/gif/museum_dawn.gif b/img/misc/winter/gif/museum_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..65d100c2b2463f98eb929cb59338f8207d1123ca
Binary files /dev/null and b/img/misc/winter/gif/museum_dawn.gif differ
diff --git a/img/misc/winter/gif/museum_day.gif b/img/misc/winter/gif/museum_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..aceef40ab8e9e3df6f7868ca872d1c2245a10f10
Binary files /dev/null and b/img/misc/winter/gif/museum_day.gif differ
diff --git a/img/misc/winter/gif/museum_dusk.gif b/img/misc/winter/gif/museum_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..65d100c2b2463f98eb929cb59338f8207d1123ca
Binary files /dev/null and b/img/misc/winter/gif/museum_dusk.gif differ
diff --git a/img/misc/winter/gif/museum_night.gif b/img/misc/winter/gif/museum_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..206c1489be39774f0194548c010c064e13c5615d
Binary files /dev/null and b/img/misc/winter/gif/museum_night.gif differ
diff --git a/img/misc/winter/gif/office_dawn.gif b/img/misc/winter/gif/office_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..fdfd070b3c66eee88522620390af22f8d5d1683a
Binary files /dev/null and b/img/misc/winter/gif/office_dawn.gif differ
diff --git a/img/misc/winter/gif/office_day.gif b/img/misc/winter/gif/office_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..34e796ee376763c960ad8a62a4a573cc42985c7a
Binary files /dev/null and b/img/misc/winter/gif/office_day.gif differ
diff --git a/img/misc/winter/gif/office_dusk.gif b/img/misc/winter/gif/office_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..34e796ee376763c960ad8a62a4a573cc42985c7a
Binary files /dev/null and b/img/misc/winter/gif/office_dusk.gif differ
diff --git a/img/misc/winter/gif/office_night.gif b/img/misc/winter/gif/office_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..5224b633ce01b9fedb5002d335284bd239f27b6a
Binary files /dev/null and b/img/misc/winter/gif/office_night.gif differ
diff --git a/img/misc/winter/gif/park_dawn.gif b/img/misc/winter/gif/park_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..3ea1653709793607e130bc2eb6634c5e6f05408f
Binary files /dev/null and b/img/misc/winter/gif/park_dawn.gif differ
diff --git a/img/misc/winter/gif/park_day.gif b/img/misc/winter/gif/park_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..7ed56de74e3089583b1e06f8df5e9f1661af34f6
Binary files /dev/null and b/img/misc/winter/gif/park_day.gif differ
diff --git a/img/misc/winter/gif/park_dusk.gif b/img/misc/winter/gif/park_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..5df806571bdf54f0ae264691a51ea9b4db7c664f
Binary files /dev/null and b/img/misc/winter/gif/park_dusk.gif differ
diff --git a/img/misc/winter/gif/park_night.gif b/img/misc/winter/gif/park_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..a6a4d6bffed22f46f8ac4ad02265b29e307b68fe
Binary files /dev/null and b/img/misc/winter/gif/park_night.gif differ
diff --git a/img/misc/winter/gif/police_station_dawn.gif b/img/misc/winter/gif/police_station_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..7b50d48674871366155c5bbd1dfda1787982156f
Binary files /dev/null and b/img/misc/winter/gif/police_station_dawn.gif differ
diff --git a/img/misc/winter/gif/police_station_day.gif b/img/misc/winter/gif/police_station_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..18268f377376484658607a5af24ee6033e89cc28
Binary files /dev/null and b/img/misc/winter/gif/police_station_day.gif differ
diff --git a/img/misc/winter/gif/police_station_dusk.gif b/img/misc/winter/gif/police_station_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..d05aedc3806fcc9d263e8a24a629be83c81434b5
Binary files /dev/null and b/img/misc/winter/gif/police_station_dusk.gif differ
diff --git a/img/misc/winter/gif/police_station_night.gif b/img/misc/winter/gif/police_station_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..bc337797215de4a84d873e090188573eff341635
Binary files /dev/null and b/img/misc/winter/gif/police_station_night.gif differ
diff --git a/img/misc/winter/gif/pub_dawn.gif b/img/misc/winter/gif/pub_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..c290a500b653412f95db111ae42cb7570ea9615f
Binary files /dev/null and b/img/misc/winter/gif/pub_dawn.gif differ
diff --git a/img/misc/winter/gif/pub_day.gif b/img/misc/winter/gif/pub_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..987e1a3787d3abf60068600d35b4a207df668d0f
Binary files /dev/null and b/img/misc/winter/gif/pub_day.gif differ
diff --git a/img/misc/winter/gif/pub_dusk.gif b/img/misc/winter/gif/pub_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..987e1a3787d3abf60068600d35b4a207df668d0f
Binary files /dev/null and b/img/misc/winter/gif/pub_dusk.gif differ
diff --git a/img/misc/winter/gif/pub_night.gif b/img/misc/winter/gif/pub_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..ea8023e14afb02eafb30067b729ebd23eb5da43b
Binary files /dev/null and b/img/misc/winter/gif/pub_night.gif differ
diff --git a/img/misc/winter/gif/remy_farm_dawn.gif b/img/misc/winter/gif/remy_farm_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..ebe987f3f545fddc4d7b3067747beb4f518cd4a2
Binary files /dev/null and b/img/misc/winter/gif/remy_farm_dawn.gif differ
diff --git a/img/misc/winter/gif/remy_farm_day.gif b/img/misc/winter/gif/remy_farm_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..1d658e9b86a1383f8898f67ed73da59bc3d3fa45
Binary files /dev/null and b/img/misc/winter/gif/remy_farm_day.gif differ
diff --git a/img/misc/winter/gif/remy_farm_dusk.gif b/img/misc/winter/gif/remy_farm_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..41422f0ec2d4e5e1445ca7dfa1aa71f309ce7387
Binary files /dev/null and b/img/misc/winter/gif/remy_farm_dusk.gif differ
diff --git a/img/misc/winter/gif/remy_farm_night.gif b/img/misc/winter/gif/remy_farm_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..bff4b55ecdba4d38e2f3552281d6df48ae1d9d2c
Binary files /dev/null and b/img/misc/winter/gif/remy_farm_night.gif differ
diff --git a/img/misc/winter/gif/school_dawn.gif b/img/misc/winter/gif/school_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..0c6ba7a7e2fcfd7d7e59717e1210f182826b61fe
Binary files /dev/null and b/img/misc/winter/gif/school_dawn.gif differ
diff --git a/img/misc/winter/gif/school_day.gif b/img/misc/winter/gif/school_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..1fc9a467441c55d3a16c98f6b2f6c67be5a1556c
Binary files /dev/null and b/img/misc/winter/gif/school_day.gif differ
diff --git a/img/misc/winter/gif/school_dusk.gif b/img/misc/winter/gif/school_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..1fc9a467441c55d3a16c98f6b2f6c67be5a1556c
Binary files /dev/null and b/img/misc/winter/gif/school_dusk.gif differ
diff --git a/img/misc/winter/gif/school_night.gif b/img/misc/winter/gif/school_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..292d64a1bebfdaf869fcdccf1a377dfc1b84edf2
Binary files /dev/null and b/img/misc/winter/gif/school_night.gif differ
diff --git a/img/misc/winter/gif/sepulchre_dawn.gif b/img/misc/winter/gif/sepulchre_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..411e9126e4bc6c1e2a5b5661d7616d39ade5b975
Binary files /dev/null and b/img/misc/winter/gif/sepulchre_dawn.gif differ
diff --git a/img/misc/winter/gif/sepulchre_day.gif b/img/misc/winter/gif/sepulchre_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..dae54b716b98c704b3167f195738526d97f6a8f0
Binary files /dev/null and b/img/misc/winter/gif/sepulchre_day.gif differ
diff --git a/img/misc/winter/gif/sepulchre_dusk.gif b/img/misc/winter/gif/sepulchre_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..9941bf727f12f1bc3658653bd0eefa74ca839d38
Binary files /dev/null and b/img/misc/winter/gif/sepulchre_dusk.gif differ
diff --git a/img/misc/winter/gif/sepulchre_night.gif b/img/misc/winter/gif/sepulchre_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..3c2caec5e3b1bce557e44b490347689e52fe3558
Binary files /dev/null and b/img/misc/winter/gif/sepulchre_night.gif differ
diff --git a/img/misc/winter/gif/sex_shop_dawn.gif b/img/misc/winter/gif/sex_shop_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..5e4db513d5d2ab669cb70cd3e4763aded8a119a3
Binary files /dev/null and b/img/misc/winter/gif/sex_shop_dawn.gif differ
diff --git a/img/misc/winter/gif/sex_shop_day.gif b/img/misc/winter/gif/sex_shop_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..188b3aff76045e5e8d457891499cfa1c4fe32703
Binary files /dev/null and b/img/misc/winter/gif/sex_shop_day.gif differ
diff --git a/img/misc/winter/gif/shopping_centre_dawn.gif b/img/misc/winter/gif/shopping_centre_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..58ee8e64ff6f8a1f45f825d8a1e29114de0d8c2d
Binary files /dev/null and b/img/misc/winter/gif/shopping_centre_dawn.gif differ
diff --git a/img/misc/winter/gif/shopping_centre_day.gif b/img/misc/winter/gif/shopping_centre_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..26b6a6e44f4bc2268e6261b4f4b37ba6d13357aa
Binary files /dev/null and b/img/misc/winter/gif/shopping_centre_day.gif differ
diff --git a/img/misc/winter/gif/shopping_centre_dusk.gif b/img/misc/winter/gif/shopping_centre_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..b65a3f22d7f9ad245396f582e3da6b229e17a771
Binary files /dev/null and b/img/misc/winter/gif/shopping_centre_dusk.gif differ
diff --git a/img/misc/winter/gif/shopping_centre_night.gif b/img/misc/winter/gif/shopping_centre_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..48d664f055c11b1773edaa804139c93a17ed6c15
Binary files /dev/null and b/img/misc/winter/gif/shopping_centre_night.gif differ
diff --git a/img/misc/winter/gif/strip_club_dawn.gif b/img/misc/winter/gif/strip_club_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..13dae293311ab622f274144c2e0912df9b7fd3f8
Binary files /dev/null and b/img/misc/winter/gif/strip_club_dawn.gif differ
diff --git a/img/misc/winter/gif/strip_club_day.gif b/img/misc/winter/gif/strip_club_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..13dae293311ab622f274144c2e0912df9b7fd3f8
Binary files /dev/null and b/img/misc/winter/gif/strip_club_day.gif differ
diff --git a/img/misc/winter/gif/strip_club_dusk.gif b/img/misc/winter/gif/strip_club_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..13dae293311ab622f274144c2e0912df9b7fd3f8
Binary files /dev/null and b/img/misc/winter/gif/strip_club_dusk.gif differ
diff --git a/img/misc/winter/gif/strip_club_night.gif b/img/misc/winter/gif/strip_club_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..6b2ec2b288c41447262f8287cd776b8209580a84
Binary files /dev/null and b/img/misc/winter/gif/strip_club_night.gif differ
diff --git a/img/misc/winter/gif/temple_dawn.gif b/img/misc/winter/gif/temple_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..972215726cef8d9de869ddbeb3a75eb28a4cd2fa
Binary files /dev/null and b/img/misc/winter/gif/temple_dawn.gif differ
diff --git a/img/misc/winter/gif/temple_dawn_old.gif b/img/misc/winter/gif/temple_dawn_old.gif
new file mode 100644
index 0000000000000000000000000000000000000000..70635a0881039795c681d38e14f81d513f2f0394
Binary files /dev/null and b/img/misc/winter/gif/temple_dawn_old.gif differ
diff --git a/img/misc/winter/gif/temple_day.gif b/img/misc/winter/gif/temple_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..406d1f28ad0bc2f095990f015ae95f98736f785d
Binary files /dev/null and b/img/misc/winter/gif/temple_day.gif differ
diff --git a/img/misc/winter/gif/temple_day_old.gif b/img/misc/winter/gif/temple_day_old.gif
new file mode 100644
index 0000000000000000000000000000000000000000..50aca633021aeaef190218a4541833b3dff63cd8
Binary files /dev/null and b/img/misc/winter/gif/temple_day_old.gif differ
diff --git a/img/misc/winter/gif/temple_dusk.gif b/img/misc/winter/gif/temple_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..62a539d1baed723aa9f6b6a88ef4781dbfb6e5bd
Binary files /dev/null and b/img/misc/winter/gif/temple_dusk.gif differ
diff --git a/img/misc/winter/gif/temple_dusk_old.gif b/img/misc/winter/gif/temple_dusk_old.gif
new file mode 100644
index 0000000000000000000000000000000000000000..9dab77b357c206488470d982586c9438155ccb50
Binary files /dev/null and b/img/misc/winter/gif/temple_dusk_old.gif differ
diff --git a/img/misc/winter/gif/temple_night.gif b/img/misc/winter/gif/temple_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..fff6c8f402712ead81995ed36cf04665ecb6d433
Binary files /dev/null and b/img/misc/winter/gif/temple_night.gif differ
diff --git a/img/misc/winter/gif/temple_night_old.gif b/img/misc/winter/gif/temple_night_old.gif
new file mode 100644
index 0000000000000000000000000000000000000000..75c3078271fc4f89e76e2e42f612ae5034f2b6db
Binary files /dev/null and b/img/misc/winter/gif/temple_night_old.gif differ
diff --git a/img/misc/winter/gif/underground_dawn.gif b/img/misc/winter/gif/underground_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..7f2623f544c37f7a048db70b0ea6126f364a7d52
Binary files /dev/null and b/img/misc/winter/gif/underground_dawn.gif differ
diff --git a/img/misc/winter/gif/underground_day.gif b/img/misc/winter/gif/underground_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..d8f9a60d5344d01bcebcc490734d4f23fc68a9e8
Binary files /dev/null and b/img/misc/winter/gif/underground_day.gif differ
diff --git a/img/misc/winter/gif/underground_dusk.gif b/img/misc/winter/gif/underground_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..800b2a86bda5aa2a41d8e1eac5f7b90226353308
Binary files /dev/null and b/img/misc/winter/gif/underground_dusk.gif differ
diff --git a/img/misc/winter/gif/underground_night.gif b/img/misc/winter/gif/underground_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..35901f394636fb2e09e011d1b661b604dfeee1df
Binary files /dev/null and b/img/misc/winter/gif/underground_night.gif differ
diff --git a/img/misc/winter/gif/wolf_cave_dawn.gif b/img/misc/winter/gif/wolf_cave_dawn.gif
new file mode 100644
index 0000000000000000000000000000000000000000..ebfdb11ad01278842fd95eaeaaf9c850d5266b59
Binary files /dev/null and b/img/misc/winter/gif/wolf_cave_dawn.gif differ
diff --git a/img/misc/winter/gif/wolf_cave_day.gif b/img/misc/winter/gif/wolf_cave_day.gif
new file mode 100644
index 0000000000000000000000000000000000000000..f184891035d3551b866ec9313a1c4b121f3b4179
Binary files /dev/null and b/img/misc/winter/gif/wolf_cave_day.gif differ
diff --git a/img/misc/winter/gif/wolf_cave_dusk.gif b/img/misc/winter/gif/wolf_cave_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..f184891035d3551b866ec9313a1c4b121f3b4179
Binary files /dev/null and b/img/misc/winter/gif/wolf_cave_dusk.gif differ
diff --git a/img/misc/winter/gif/wolf_cave_night.gif b/img/misc/winter/gif/wolf_cave_night.gif
new file mode 100644
index 0000000000000000000000000000000000000000..27cb46320035b039789cb7c7a0adb1e315c5a93e
Binary files /dev/null and b/img/misc/winter/gif/wolf_cave_night.gif differ
diff --git a/img/misc/winter/home_bloodmoon.gif b/img/misc/winter/home_bloodmoon.gif
index 718cc6c52a3d13479026a5e8578da13598285b47..b55d79fbb7914f7ddea8a21c471e2b08ad3ab209 100644
Binary files a/img/misc/winter/home_bloodmoon.gif and b/img/misc/winter/home_bloodmoon.gif differ
diff --git a/img/misc/winter/home_dawn.gif b/img/misc/winter/home_dawn.gif
index 0308e193e803747c3658160e9edda9ac20ec856a..8d2104039b80da4916e11d6d140da02002625a6a 100644
Binary files a/img/misc/winter/home_dawn.gif and b/img/misc/winter/home_dawn.gif differ
diff --git a/img/misc/winter/home_day.gif b/img/misc/winter/home_day.gif
index 7581017c384e7bebaa0b67b0ac51455d9b93f99f..bdc8a6ab48692a5f350c29e26ffc4ef4961d744e 100644
Binary files a/img/misc/winter/home_day.gif and b/img/misc/winter/home_day.gif differ
diff --git a/img/misc/winter/home_dusk.gif b/img/misc/winter/home_dusk.gif
index bc6157cb07c96a7c5ad7a9b3dee89020e71b025e..48128c2b89501488896f2754e58942a89ef6782d 100644
Binary files a/img/misc/winter/home_dusk.gif and b/img/misc/winter/home_dusk.gif differ
diff --git a/img/misc/winter/home_night.gif b/img/misc/winter/home_night.gif
index 0ee831f2e7e97c3c42954bb0225b30bcc5a15eaa..0300b59c6e07c2e58d85cccf3e0b397d1778f0ad 100644
Binary files a/img/misc/winter/home_night.gif and b/img/misc/winter/home_night.gif differ
diff --git a/img/misc/winter/hospital_dawn.png b/img/misc/winter/hospital_dawn.png
index 55e0049348228432143bf1773ae47dac09c83e6e..4cdef9062908f0455bede091f56be87cb39805e6 100644
Binary files a/img/misc/winter/hospital_dawn.png and b/img/misc/winter/hospital_dawn.png differ
diff --git a/img/misc/winter/hospital_day.png b/img/misc/winter/hospital_day.png
index f0023700408ba8e2a37db7a57b2980c97d1af6f2..163ec0add90b76696a2250b5532a929d20bd0b6e 100644
Binary files a/img/misc/winter/hospital_day.png and b/img/misc/winter/hospital_day.png differ
diff --git a/img/misc/winter/hospital_dusk.png b/img/misc/winter/hospital_dusk.png
index 91e4d3254e0558116eacdc0fcab05702a370e257..163ec0add90b76696a2250b5532a929d20bd0b6e 100644
Binary files a/img/misc/winter/hospital_dusk.png and b/img/misc/winter/hospital_dusk.png differ
diff --git a/img/misc/winter/hospital_night.png b/img/misc/winter/hospital_night.png
index b06afc46c76bbeb6a3ddf0b323327f33e5bdf670..2ce238cf4f89ff52a08695bf252f8c886bb10bd0 100644
Binary files a/img/misc/winter/hospital_night.png and b/img/misc/winter/hospital_night.png differ
diff --git a/img/misc/winter/indust_alley_bloodmoon.gif b/img/misc/winter/indust_alley_bloodmoon.gif
index 525e24b6d22ae98f3bdf125d246567b3db2d6d9d..7e570533b59c243f7b4d5061c2efe0622fab79a9 100644
Binary files a/img/misc/winter/indust_alley_bloodmoon.gif and b/img/misc/winter/indust_alley_bloodmoon.gif differ
diff --git a/img/misc/winter/indust_alley_dawn.gif b/img/misc/winter/indust_alley_dawn.gif
index e4fc2987727ed2fbd5bb65523d5fb954d3746deb..cea3b331cca4d6312cc601183dfcaff11963c643 100644
Binary files a/img/misc/winter/indust_alley_dawn.gif and b/img/misc/winter/indust_alley_dawn.gif differ
diff --git a/img/misc/winter/indust_alley_day.gif b/img/misc/winter/indust_alley_day.gif
index f50ab6ad383c8db4f9c29e58248d53d8efc4bf4e..db850b2b22e9d679520e1a5879b335c81baaa631 100644
Binary files a/img/misc/winter/indust_alley_day.gif and b/img/misc/winter/indust_alley_day.gif differ
diff --git a/img/misc/winter/indust_alley_dusk.gif b/img/misc/winter/indust_alley_dusk.gif
index ccada5ae1ed11c7617332692bc39b2484d981764..811df342e99c4a1e7bf8766f0a63cb6672aa4b7b 100644
Binary files a/img/misc/winter/indust_alley_dusk.gif and b/img/misc/winter/indust_alley_dusk.gif differ
diff --git a/img/misc/winter/indust_alley_night.gif b/img/misc/winter/indust_alley_night.gif
index 7900c077ca0ea5b47548a83cbf73f980ea7c424a..ae3bf3f99af1981b5db4f0555f8c958c31a97e7a 100644
Binary files a/img/misc/winter/indust_alley_night.gif and b/img/misc/winter/indust_alley_night.gif differ
diff --git a/img/misc/winter/island_dawn.gif b/img/misc/winter/island_dawn.gif
index d4809eb9c4402a90496b18c3061c1f569e2a1a66..2f3b5b125f81297dc09e5b1847c79027bbb0da91 100644
Binary files a/img/misc/winter/island_dawn.gif and b/img/misc/winter/island_dawn.gif differ
diff --git a/img/misc/winter/island_day.gif b/img/misc/winter/island_day.gif
index 2e736128493684de35b9612b5494355daa6ed032..2f3b5b125f81297dc09e5b1847c79027bbb0da91 100644
Binary files a/img/misc/winter/island_day.gif and b/img/misc/winter/island_day.gif differ
diff --git a/img/misc/winter/island_dusk.gif b/img/misc/winter/island_dusk.gif
index 4129558e202c061ffa2b8f1548122103a7d6730e..6f1afc1e362832e0af0f506116cf4b413573d6fa 100644
Binary files a/img/misc/winter/island_dusk.gif and b/img/misc/winter/island_dusk.gif differ
diff --git a/img/misc/winter/island_night.gif b/img/misc/winter/island_night.gif
index 4c45ed54126cb86aa4e6473bed07293931afdd06..2a0b44ec73982efa3c92a95f6b7f3b0e85d12fa0 100644
Binary files a/img/misc/winter/island_night.gif and b/img/misc/winter/island_night.gif differ
diff --git a/img/misc/winter/kylar_manor_dawn.png b/img/misc/winter/kylar_manor_dawn.png
index b8f7ffc2682ef5c814ac35e63fc3c56ba902517e..8de13ae824a90a8b5851feeae9a40635a1986ab5 100644
Binary files a/img/misc/winter/kylar_manor_dawn.png and b/img/misc/winter/kylar_manor_dawn.png differ
diff --git a/img/misc/winter/kylar_manor_day.png b/img/misc/winter/kylar_manor_day.png
index b6322eefb861c3544f4c8c2b12f998c73b7c5651..b2b942bc0b4f3cbcd76604270611d8f0e3bae8bc 100644
Binary files a/img/misc/winter/kylar_manor_day.png and b/img/misc/winter/kylar_manor_day.png differ
diff --git a/img/misc/winter/kylar_manor_dusk.png b/img/misc/winter/kylar_manor_dusk.png
index 0133d7d1cede722e0ec504016860e66457bda613..77f9b2c3adfcb0f53f751a3e7ad8493983d32d0b 100644
Binary files a/img/misc/winter/kylar_manor_dusk.png and b/img/misc/winter/kylar_manor_dusk.png differ
diff --git a/img/misc/winter/kylar_manor_night.png b/img/misc/winter/kylar_manor_night.png
index c5df3f8b1dbdfebf6406928c9b53453692a94fb4..279484ce268e2dfd41c6d18625c5c64eba828a8c 100644
Binary files a/img/misc/winter/kylar_manor_night.png and b/img/misc/winter/kylar_manor_night.png differ
diff --git a/img/misc/winter/lake_bloodmoon.gif b/img/misc/winter/lake_bloodmoon.gif
index 4dc67a37370366249a9675129d236ffca984d531..1932e46fc2942862c536e8a3cbb5c860451c97c7 100644
Binary files a/img/misc/winter/lake_bloodmoon.gif and b/img/misc/winter/lake_bloodmoon.gif differ
diff --git a/img/misc/winter/lake_dawn.gif b/img/misc/winter/lake_dawn.gif
index bd74502b4f241875e33da98564ae7ba8a4be8bf2..acd89349d7051a1326a4e08ab1f21d5e841f9bdd 100644
Binary files a/img/misc/winter/lake_dawn.gif and b/img/misc/winter/lake_dawn.gif differ
diff --git a/img/misc/winter/lake_day.gif b/img/misc/winter/lake_day.gif
index 22c2cdfd2353300e1bacf37afcccd762365fad25..115c126f4a1c28ae921b8932673758ac2867257d 100644
Binary files a/img/misc/winter/lake_day.gif and b/img/misc/winter/lake_day.gif differ
diff --git a/img/misc/winter/lake_dusk.gif b/img/misc/winter/lake_dusk.gif
index e1d7855dbcd1a45316cd24b163947d359621cdee..e5ed84db075a6ffa43b874406c7269004ba472d5 100644
Binary files a/img/misc/winter/lake_dusk.gif and b/img/misc/winter/lake_dusk.gif differ
diff --git a/img/misc/winter/lake_night.gif b/img/misc/winter/lake_night.gif
index 1ab3a72d71cfae69cdc91744d6a9ef7e8cc69e6a..e843e02d937f596b88c6fc5a9c75195a33ad9552 100644
Binary files a/img/misc/winter/lake_night.gif and b/img/misc/winter/lake_night.gif differ
diff --git a/img/misc/winter/landfill_dawn.png b/img/misc/winter/landfill_dawn.png
index 9a5c51fc39aac845008227c3928ea0c363250315..07817b779047c49d9bb008698dab6c1b1d10b410 100644
Binary files a/img/misc/winter/landfill_dawn.png and b/img/misc/winter/landfill_dawn.png differ
diff --git a/img/misc/winter/landfill_day.png b/img/misc/winter/landfill_day.png
index efaddc65c23096572a5d5c12a290317db76d53ba..0b5eff1af944fac99ff956db6b79583bc68a1775 100644
Binary files a/img/misc/winter/landfill_day.png and b/img/misc/winter/landfill_day.png differ
diff --git a/img/misc/winter/landfill_dusk.png b/img/misc/winter/landfill_dusk.png
index f342230ed4d4cf2bdf5af3db2bb18d019f7907fa..f1fb784d71fae1751c355fbb010affc8f7f77ace 100644
Binary files a/img/misc/winter/landfill_dusk.png and b/img/misc/winter/landfill_dusk.png differ
diff --git a/img/misc/winter/landfill_night.png b/img/misc/winter/landfill_night.png
index 0647a685a83a42b48d5044fa4605a09a835ef364..c572615e10c716342db43a074a571a133695a322 100644
Binary files a/img/misc/winter/landfill_night.png and b/img/misc/winter/landfill_night.png differ
diff --git a/img/misc/winter/meadow_dawn.gif b/img/misc/winter/meadow_dawn.gif
index 3950d900916cc975521f40dca9e7eeb30d0ed164..d885dae0373ef5134609e25d9074cdb99f0187c0 100644
Binary files a/img/misc/winter/meadow_dawn.gif and b/img/misc/winter/meadow_dawn.gif differ
diff --git a/img/misc/winter/meadow_day.gif b/img/misc/winter/meadow_day.gif
index 232f851cd73440ee0e3c72a16fc2903cb3c00458..ab9173f79cc34e4ebbb48f9ee904930e4f293664 100644
Binary files a/img/misc/winter/meadow_day.gif and b/img/misc/winter/meadow_day.gif differ
diff --git a/img/misc/winter/meadow_dusk.gif b/img/misc/winter/meadow_dusk.gif
index bf9748828559154629267dd796296c905bdb3449..fb9595a7e3fae404b37805610b01b96362d3f02a 100644
Binary files a/img/misc/winter/meadow_dusk.gif and b/img/misc/winter/meadow_dusk.gif differ
diff --git a/img/misc/winter/meadow_night.gif b/img/misc/winter/meadow_night.gif
index 9635f88ae20ceed77579411ab036d590acc26541..9813bceffc64fd07052418f6ace42596f209e8bc 100644
Binary files a/img/misc/winter/meadow_night.gif and b/img/misc/winter/meadow_night.gif differ
diff --git a/img/misc/winter/moor_dawn.gif b/img/misc/winter/moor_dawn.gif
index c52836d7206f5632d1ae2d4204e4209a5f8cd71d..ae22c47c51e8545bb232631b28a6bc7e99af51a4 100644
Binary files a/img/misc/winter/moor_dawn.gif and b/img/misc/winter/moor_dawn.gif differ
diff --git a/img/misc/winter/moor_day.gif b/img/misc/winter/moor_day.gif
index 802679060818efcb9a0c26ec3e0924668c0b1b0e..e7c0c5306cb39d8d6893adfbd6eb7869b41fc40e 100644
Binary files a/img/misc/winter/moor_day.gif and b/img/misc/winter/moor_day.gif differ
diff --git a/img/misc/winter/moor_dusk.gif b/img/misc/winter/moor_dusk.gif
index 48a580dec8085b69ff083b3e592558fb6d6c590d..84b76033f6419a881ec9b1c5d9433bc98c5c3a4e 100644
Binary files a/img/misc/winter/moor_dusk.gif and b/img/misc/winter/moor_dusk.gif differ
diff --git a/img/misc/winter/moor_night.gif b/img/misc/winter/moor_night.gif
index 72f46742657df7c3d51f8de09e9e711da7798d13..48760608417845fee0734d15a0e3d4c938bbc472 100644
Binary files a/img/misc/winter/moor_night.gif and b/img/misc/winter/moor_night.gif differ
diff --git a/img/misc/winter/museum_dawn.png b/img/misc/winter/museum_dawn.png
index 74738238cd36c9421df05fd851f1b938c6d7d3e1..19fa93a70ecadbf8e6bc6b10d006c3ff52f79e36 100644
Binary files a/img/misc/winter/museum_dawn.png and b/img/misc/winter/museum_dawn.png differ
diff --git a/img/misc/winter/museum_day.png b/img/misc/winter/museum_day.png
index 791c3c14539be6fcbd1659d868dc8e6b1b0105bf..f587f0df70c662911848107c986b7fd1478fca00 100644
Binary files a/img/misc/winter/museum_day.png and b/img/misc/winter/museum_day.png differ
diff --git a/img/misc/winter/museum_dusk.png b/img/misc/winter/museum_dusk.png
index 944542d7fe7549fedd304831845352e86a38860b..19fa93a70ecadbf8e6bc6b10d006c3ff52f79e36 100644
Binary files a/img/misc/winter/museum_dusk.png and b/img/misc/winter/museum_dusk.png differ
diff --git a/img/misc/winter/museum_night.png b/img/misc/winter/museum_night.png
index 46fb4c55bf134390fdf48634b099f2b3b90407b6..3261e53e7215a22463fd91f58149f33d44922785 100644
Binary files a/img/misc/winter/museum_night.png and b/img/misc/winter/museum_night.png differ
diff --git a/img/misc/winter/night_monster_lair_dawn.gif b/img/misc/winter/night_monster_lair_dawn.gif
index 4fab4268387bb45c6c41ee6ce2383bc4b29a1ae2..e4eb4f88a9f48841c23ae928b2e5187ad79efac9 100644
Binary files a/img/misc/winter/night_monster_lair_dawn.gif and b/img/misc/winter/night_monster_lair_dawn.gif differ
diff --git a/img/misc/winter/night_monster_lair_day.gif b/img/misc/winter/night_monster_lair_day.gif
index 22d89b6c9203ff060ab83540a5c9cd7a844b8d53..e524d835dadf39dc92218d4e5cc40e0243451abc 100644
Binary files a/img/misc/winter/night_monster_lair_day.gif and b/img/misc/winter/night_monster_lair_day.gif differ
diff --git a/img/misc/winter/night_monster_lair_dusk.gif b/img/misc/winter/night_monster_lair_dusk.gif
index c2fe4b79976291f543a59b1c8b1a3e1657d4ad1c..7465bfb174c634d4e47bd79ec74d017f78f0f7ac 100644
Binary files a/img/misc/winter/night_monster_lair_dusk.gif and b/img/misc/winter/night_monster_lair_dusk.gif differ
diff --git a/img/misc/winter/night_monster_lair_night.gif b/img/misc/winter/night_monster_lair_night.gif
index 97b4ae99f17795f6f0eb6153ce2406ecfa235707..55a61334d7a38f4aa12fb1b11c2fd953cf645e00 100644
Binary files a/img/misc/winter/night_monster_lair_night.gif and b/img/misc/winter/night_monster_lair_night.gif differ
diff --git a/img/misc/winter/ocean_dawn.gif b/img/misc/winter/ocean_dawn.gif
index 12493afd0caa4e0968b9c8baba19c51ca308a536..3f5e500b66f3c21dfadbadaf13e4cd1ca78c5305 100644
Binary files a/img/misc/winter/ocean_dawn.gif and b/img/misc/winter/ocean_dawn.gif differ
diff --git a/img/misc/winter/ocean_day.gif b/img/misc/winter/ocean_day.gif
index a3f67c595e0e860df970121b4ac512888c73a2bc..90809ff6807a64a508e6a69e43caed1fb3d4e5d6 100644
Binary files a/img/misc/winter/ocean_day.gif and b/img/misc/winter/ocean_day.gif differ
diff --git a/img/misc/winter/ocean_dusk.gif b/img/misc/winter/ocean_dusk.gif
index 954ce35cc8f6e58ff5f6249f3f041cd7a7b59559..bb8be7a7dc9bb8126b0831d03eabb8ee514dad10 100644
Binary files a/img/misc/winter/ocean_dusk.gif and b/img/misc/winter/ocean_dusk.gif differ
diff --git a/img/misc/winter/ocean_night.gif b/img/misc/winter/ocean_night.gif
index a568bacc709952117c6196058aac68f661a93aaa..739fcff49c3e0a543a00e52bdee1ce2a92975f94 100644
Binary files a/img/misc/winter/ocean_night.gif and b/img/misc/winter/ocean_night.gif differ
diff --git a/img/misc/winter/office_dawn.png b/img/misc/winter/office_dawn.png
index 799b6a9a7230fa9f75d7c55ba2d443082d112438..629b707247184194470dabceeb36f38857312342 100644
Binary files a/img/misc/winter/office_dawn.png and b/img/misc/winter/office_dawn.png differ
diff --git a/img/misc/winter/office_day.png b/img/misc/winter/office_day.png
index 19d1a8e6bf126ab8fcde1f6b416117f2389c1ffb..f7f9d88c42bd169bb30f6960771956e8b04a354d 100644
Binary files a/img/misc/winter/office_day.png and b/img/misc/winter/office_day.png differ
diff --git a/img/misc/winter/office_dusk.png b/img/misc/winter/office_dusk.png
index 85f02b6e860a04b5c0b7fd3b9be1a5ed0c16cbe8..f7f9d88c42bd169bb30f6960771956e8b04a354d 100644
Binary files a/img/misc/winter/office_dusk.png and b/img/misc/winter/office_dusk.png differ
diff --git a/img/misc/winter/office_night.png b/img/misc/winter/office_night.png
index 7374264f3f8267ed206a226eeb7e7f1d7c934bf7..7d1c3c6bb6fd90300d15f1000387b4b4a4a3d38c 100644
Binary files a/img/misc/winter/office_night.png and b/img/misc/winter/office_night.png differ
diff --git a/img/misc/winter/park_dawn.png b/img/misc/winter/park_dawn.png
index 9d39abc6fb8280f2239e6ac3285ecce8cb73fa0b..aca78cf93153952f52c348f6c30631a649139cf2 100644
Binary files a/img/misc/winter/park_dawn.png and b/img/misc/winter/park_dawn.png differ
diff --git a/img/misc/winter/park_day.png b/img/misc/winter/park_day.png
index 0bd77a972da508279145940b219396c9b4b1b4d3..4fc5817ae2b362ffbd83c6df7379f162805b6909 100644
Binary files a/img/misc/winter/park_day.png and b/img/misc/winter/park_day.png differ
diff --git a/img/misc/winter/park_dusk.png b/img/misc/winter/park_dusk.png
index 884d61abcde4ae487d7109f647aa98947908d261..196310bbe05ed46e1398bb76afec212dc9383827 100644
Binary files a/img/misc/winter/park_dusk.png and b/img/misc/winter/park_dusk.png differ
diff --git a/img/misc/winter/park_night.png b/img/misc/winter/park_night.png
index 410645eac61ac282c86fdf6c89fa3eee5a8421a9..5f7ee3b67167b6e42ed264720e831e08f1b03c8c 100644
Binary files a/img/misc/winter/park_night.png and b/img/misc/winter/park_night.png differ
diff --git a/img/misc/winter/police_station_dawn.png b/img/misc/winter/police_station_dawn.png
index 1c1646ec0b263352ebcfe91221077e3d64c7b818..05e611d30494cbadde9448641345b77bbd0fe0bb 100644
Binary files a/img/misc/winter/police_station_dawn.png and b/img/misc/winter/police_station_dawn.png differ
diff --git a/img/misc/winter/police_station_day.png b/img/misc/winter/police_station_day.png
index 5d77434456a9aab34bc646539274f25af4f4f75a..4fad3f54e15d011c379e857091425f81ae1508f5 100644
Binary files a/img/misc/winter/police_station_day.png and b/img/misc/winter/police_station_day.png differ
diff --git a/img/misc/winter/police_station_dusk.png b/img/misc/winter/police_station_dusk.png
index 3a8abf2dafa03967477636f8a69b6ec6820f5961..188ce02430b42da826533e9f0c805819d58033ba 100644
Binary files a/img/misc/winter/police_station_dusk.png and b/img/misc/winter/police_station_dusk.png differ
diff --git a/img/misc/winter/police_station_night.png b/img/misc/winter/police_station_night.png
index 1202f5a7f2eba1279bf2d0eec69a34233e936a34..921537357cca351f1fe8bf52245c0fc02cbc8a0a 100644
Binary files a/img/misc/winter/police_station_night.png and b/img/misc/winter/police_station_night.png differ
diff --git a/img/misc/winter/pool_dawn.gif b/img/misc/winter/pool_dawn.gif
index c8bdf701dc58fb4fefd4edeb01960ab3c0fe980d..0d1ad29a14da3e1053dbaa8500ea18f033fff27b 100644
Binary files a/img/misc/winter/pool_dawn.gif and b/img/misc/winter/pool_dawn.gif differ
diff --git a/img/misc/winter/pool_day.gif b/img/misc/winter/pool_day.gif
index 45c49f91bbdb8fac132efd46fdd81163ab9e4657..4a5a743d8b5335e1469268c4f4883beee50644b1 100644
Binary files a/img/misc/winter/pool_day.gif and b/img/misc/winter/pool_day.gif differ
diff --git a/img/misc/winter/pool_dusk.gif b/img/misc/winter/pool_dusk.gif
index 09bc6cca7b24ef6042c456671539945d63106588..2a95b50863deae9575130e96312393ea141725f7 100644
Binary files a/img/misc/winter/pool_dusk.gif and b/img/misc/winter/pool_dusk.gif differ
diff --git a/img/misc/winter/pool_night.gif b/img/misc/winter/pool_night.gif
index 441d7ee2c9a2eeaff4b2faedc63b6a2cc98074fc..931289715ca001b543ec489c2d47e3cdc4763ca0 100644
Binary files a/img/misc/winter/pool_night.gif and b/img/misc/winter/pool_night.gif differ
diff --git a/img/misc/winter/prison_bloodmoon.gif b/img/misc/winter/prison_bloodmoon.gif
index b9f0611434aafc8ce13a51195c48a78ef0a9de04..a632c2bba4814f5f8489279781027110660bc65b 100644
Binary files a/img/misc/winter/prison_bloodmoon.gif and b/img/misc/winter/prison_bloodmoon.gif differ
diff --git a/img/misc/winter/prison_dawn.gif b/img/misc/winter/prison_dawn.gif
index 19e639b50b0c15b2590cdbce9fc89354e12c2a14..cb145eba298bdcdd4c208b9b035bb61b0a3c9787 100644
Binary files a/img/misc/winter/prison_dawn.gif and b/img/misc/winter/prison_dawn.gif differ
diff --git a/img/misc/winter/prison_day.gif b/img/misc/winter/prison_day.gif
index 44dd9b7cccf580d9069448e6b6dee01c05acee08..cf74fd10abdcdf3fde719b23971cb4513ec0f8f8 100644
Binary files a/img/misc/winter/prison_day.gif and b/img/misc/winter/prison_day.gif differ
diff --git a/img/misc/winter/prison_dusk.gif b/img/misc/winter/prison_dusk.gif
index 9229a9cb62faa311560393dc806a9a2762317c9c..d3149b074d40774d7d376cae8746dc62e967c474 100644
Binary files a/img/misc/winter/prison_dusk.gif and b/img/misc/winter/prison_dusk.gif differ
diff --git a/img/misc/winter/prison_night.gif b/img/misc/winter/prison_night.gif
index 4735d19e7f2b71a1d10d9b5826d153adca433256..aeebf9aa38609b6271966827a86ccde9d4da140a 100644
Binary files a/img/misc/winter/prison_night.gif and b/img/misc/winter/prison_night.gif differ
diff --git a/img/misc/winter/promenade_beach_dawn.gif b/img/misc/winter/promenade_beach_dawn.gif
index 5d808d47c0ca2ef9e21ea01af06d0da4fd654126..29de8cfb8169382387a2828d387f22ed93cb41fd 100644
Binary files a/img/misc/winter/promenade_beach_dawn.gif and b/img/misc/winter/promenade_beach_dawn.gif differ
diff --git a/img/misc/winter/promenade_beach_day.gif b/img/misc/winter/promenade_beach_day.gif
index de1f57e9749337444e0951bb25af3b56c946827a..35219fec5949c4330b4fe785e30a1478d9c0ef05 100644
Binary files a/img/misc/winter/promenade_beach_day.gif and b/img/misc/winter/promenade_beach_day.gif differ
diff --git a/img/misc/winter/promenade_beach_dusk.gif b/img/misc/winter/promenade_beach_dusk.gif
index 23cd05733d6680453060a3229feb3578303f31f2..54179196af688ed527e1e2f0dbc641330e781bef 100644
Binary files a/img/misc/winter/promenade_beach_dusk.gif and b/img/misc/winter/promenade_beach_dusk.gif differ
diff --git a/img/misc/winter/promenade_beach_night.gif b/img/misc/winter/promenade_beach_night.gif
index 54041a70ad5e69a5c566b625341cb520df51ea18..a04b84f3c7527942e04fc300aea4b3df558631a2 100644
Binary files a/img/misc/winter/promenade_beach_night.gif and b/img/misc/winter/promenade_beach_night.gif differ
diff --git a/img/misc/winter/pub_dawn.png b/img/misc/winter/pub_dawn.png
index 0d7450f798dcc71e51bfb438168c07732766be75..f52d49db4478825f542ec5ce043d4b18c685921e 100644
Binary files a/img/misc/winter/pub_dawn.png and b/img/misc/winter/pub_dawn.png differ
diff --git a/img/misc/winter/pub_day.png b/img/misc/winter/pub_day.png
index fe39d80b6eb1caef5e6474791da9b3e965312b55..70483473fdc79c2e2704b7f3b386f7623e729a3f 100644
Binary files a/img/misc/winter/pub_day.png and b/img/misc/winter/pub_day.png differ
diff --git a/img/misc/winter/pub_dusk.png b/img/misc/winter/pub_dusk.png
index 5e1a6109710022a69011d7660897c0334b2fa3ba..70483473fdc79c2e2704b7f3b386f7623e729a3f 100644
Binary files a/img/misc/winter/pub_dusk.png and b/img/misc/winter/pub_dusk.png differ
diff --git a/img/misc/winter/pub_night.png b/img/misc/winter/pub_night.png
index c76d00b073392844e0287d116af4c1c658472861..1a7b1143b58efd45ba9947044fb0ed5797dd07d0 100644
Binary files a/img/misc/winter/pub_night.png and b/img/misc/winter/pub_night.png differ
diff --git a/img/misc/winter/remy_farm_dawn.png b/img/misc/winter/remy_farm_dawn.png
index cf241d9677a6b9248e744465a169cc41aec30e2d..6c176f007406a506597f5a3da83308c527c86695 100644
Binary files a/img/misc/winter/remy_farm_dawn.png and b/img/misc/winter/remy_farm_dawn.png differ
diff --git a/img/misc/winter/remy_farm_day.png b/img/misc/winter/remy_farm_day.png
index f02210d3b197d2b12ec1616bd7e08ed16ecc3500..dabcd97677496b268acfdb0a7291741e7967bb6c 100644
Binary files a/img/misc/winter/remy_farm_day.png and b/img/misc/winter/remy_farm_day.png differ
diff --git a/img/misc/winter/remy_farm_dusk.png b/img/misc/winter/remy_farm_dusk.png
index db13bd499ce6f78bfefcf2052d7249f5553f577f..5d722f0451706d231f22564139c8a1832cf8b216 100644
Binary files a/img/misc/winter/remy_farm_dusk.png and b/img/misc/winter/remy_farm_dusk.png differ
diff --git a/img/misc/winter/remy_farm_night.png b/img/misc/winter/remy_farm_night.png
index c3a3f07b5d9c2dce31b01220a81f8000f2e1cf4f..b6d2496af71e808f718ce15a799dfbccefbbe474 100644
Binary files a/img/misc/winter/remy_farm_night.png and b/img/misc/winter/remy_farm_night.png differ
diff --git a/img/misc/winter/resi_alley_bloodmoon.gif b/img/misc/winter/resi_alley_bloodmoon.gif
index 44dfd10b4066feb6230cfd1588610b9d8b7270fa..eaaf3e2fbd87043bde0a7a3837f866c58a9f4a2a 100644
Binary files a/img/misc/winter/resi_alley_bloodmoon.gif and b/img/misc/winter/resi_alley_bloodmoon.gif differ
diff --git a/img/misc/winter/resi_alley_dawn.gif b/img/misc/winter/resi_alley_dawn.gif
index 53e00f4902d1acee2c7d608f16d4e26064b382c2..26296dfbd7a44391aa2524e7c4f7fdaf2c4352bb 100644
Binary files a/img/misc/winter/resi_alley_dawn.gif and b/img/misc/winter/resi_alley_dawn.gif differ
diff --git a/img/misc/winter/resi_alley_day.gif b/img/misc/winter/resi_alley_day.gif
index f6a628d0c522a0eaf508350715856ebb76b2070c..e0ecceb21ec8cb5be1095404a3e41af2c981b87b 100644
Binary files a/img/misc/winter/resi_alley_day.gif and b/img/misc/winter/resi_alley_day.gif differ
diff --git a/img/misc/winter/resi_alley_dusk.gif b/img/misc/winter/resi_alley_dusk.gif
index 208ecb4e1151c451fe9524101ec6db7ee147d37e..cbb9ea564e0915307aeebb5612acc3797bc7907d 100644
Binary files a/img/misc/winter/resi_alley_dusk.gif and b/img/misc/winter/resi_alley_dusk.gif differ
diff --git a/img/misc/winter/resi_alley_night.gif b/img/misc/winter/resi_alley_night.gif
index 7f06a203242ef3ed256467f1bbb3d40d7632693e..60c196c91c3211feb764087b597dced1f6116d69 100644
Binary files a/img/misc/winter/resi_alley_night.gif and b/img/misc/winter/resi_alley_night.gif differ
diff --git a/img/misc/winter/riding_school_dawn.gif b/img/misc/winter/riding_school_dawn.gif
index 4f076ed38b61dd86a657b601ad6468778219acfb..2bf4a956b3bab27e09867bb242773210a420c332 100644
Binary files a/img/misc/winter/riding_school_dawn.gif and b/img/misc/winter/riding_school_dawn.gif differ
diff --git a/img/misc/winter/riding_school_day.gif b/img/misc/winter/riding_school_day.gif
index 6afaeef0d2673262280de7d16ee84b0a86683955..3f12efc98143dfcd19a92966652c8f2a232201a6 100644
Binary files a/img/misc/winter/riding_school_day.gif and b/img/misc/winter/riding_school_day.gif differ
diff --git a/img/misc/winter/riding_school_dusk.gif b/img/misc/winter/riding_school_dusk.gif
index 9efeade10be14d32c8832d386d3bf34713e7d155..44eab8fdfa3077862b2979bd7983ff58b50b8f62 100644
Binary files a/img/misc/winter/riding_school_dusk.gif and b/img/misc/winter/riding_school_dusk.gif differ
diff --git a/img/misc/winter/riding_school_night.gif b/img/misc/winter/riding_school_night.gif
index 7f8335bcf4eeb2993e2c1e9946e329324c857042..7561b49e59f4599e92cc164d668540a1ffd44128 100644
Binary files a/img/misc/winter/riding_school_night.gif and b/img/misc/winter/riding_school_night.gif differ
diff --git a/img/misc/winter/ruins_bloodmoon.gif b/img/misc/winter/ruins_bloodmoon.gif
index 61b3d3d56c95aa28d8393fa3865a0f01a619e6ea..e870b5fbc65f3b5097b11e36a06d069e5d1a228d 100644
Binary files a/img/misc/winter/ruins_bloodmoon.gif and b/img/misc/winter/ruins_bloodmoon.gif differ
diff --git a/img/misc/winter/ruins_dawn.gif b/img/misc/winter/ruins_dawn.gif
index 3e1e562657a351e18c31a9dd312e336c0de29de8..c6897246e2f0720a6537f9fe9b5f1109d1479c71 100644
Binary files a/img/misc/winter/ruins_dawn.gif and b/img/misc/winter/ruins_dawn.gif differ
diff --git a/img/misc/winter/ruins_day.gif b/img/misc/winter/ruins_day.gif
index 9bd348e0e494df801ffda939cebddd860913ff4b..8065b7cae61d40776b8c8f6843d988613d120457 100644
Binary files a/img/misc/winter/ruins_day.gif and b/img/misc/winter/ruins_day.gif differ
diff --git a/img/misc/winter/ruins_dusk.gif b/img/misc/winter/ruins_dusk.gif
index acfb950eebb306a0cd59d7eabd7f9f0786f07f64..8bf520bebf85329be3b5dd50f3438f00fc6a63dc 100644
Binary files a/img/misc/winter/ruins_dusk.gif and b/img/misc/winter/ruins_dusk.gif differ
diff --git a/img/misc/winter/ruins_night.gif b/img/misc/winter/ruins_night.gif
index 93587d32466b27f01277d2c7f8d7ba8b9499218c..7e869656f1ee79831b802ee55c3e6d1f949d9472 100644
Binary files a/img/misc/winter/ruins_night.gif and b/img/misc/winter/ruins_night.gif differ
diff --git a/img/misc/winter/school_dawn.png b/img/misc/winter/school_dawn.png
index f6e2f08e696015224a8d360cf87233694dfc60e2..3341effb3888362261e80d6860fb06a470ca91e7 100644
Binary files a/img/misc/winter/school_dawn.png and b/img/misc/winter/school_dawn.png differ
diff --git a/img/misc/winter/school_day.png b/img/misc/winter/school_day.png
index 175c1e0a50eaa3b815b80c29447b384bd4d5a559..a8abeb888a1db6fee61e8664ddd5cf003af2a6ff 100644
Binary files a/img/misc/winter/school_day.png and b/img/misc/winter/school_day.png differ
diff --git a/img/misc/winter/school_dusk.png b/img/misc/winter/school_dusk.png
index 12e37d8604ba7bc55d2e61ecf5cda2cea9ccab1b..a8abeb888a1db6fee61e8664ddd5cf003af2a6ff 100644
Binary files a/img/misc/winter/school_dusk.png and b/img/misc/winter/school_dusk.png differ
diff --git a/img/misc/winter/school_night.png b/img/misc/winter/school_night.png
index ab76c5866b4ba649533a271f02d0b482fa38e0e1..ba71ddf45d519f8d7f7338cef8d174e516540d07 100644
Binary files a/img/misc/winter/school_night.png and b/img/misc/winter/school_night.png differ
diff --git a/img/misc/winter/sepulchre_dawn.png b/img/misc/winter/sepulchre_dawn.png
index e1e798687f221c06464324f4927586ca26cdf88d..2d502206d56e3419ea143b1ee175c4917eee4446 100644
Binary files a/img/misc/winter/sepulchre_dawn.png and b/img/misc/winter/sepulchre_dawn.png differ
diff --git a/img/misc/winter/sepulchre_day.png b/img/misc/winter/sepulchre_day.png
index 41eeed4faf98a29f32299eefe603bf9a1ed35941..7ec1741dbdc5dea4c58c85a77f64416758beebc1 100644
Binary files a/img/misc/winter/sepulchre_day.png and b/img/misc/winter/sepulchre_day.png differ
diff --git a/img/misc/winter/sepulchre_dusk.png b/img/misc/winter/sepulchre_dusk.png
index 6f81ffd732a5324e03fb95a309942a7bce6785bf..b718f748980c96ffb8c0fed9c6d717efc4b490f0 100644
Binary files a/img/misc/winter/sepulchre_dusk.png and b/img/misc/winter/sepulchre_dusk.png differ
diff --git a/img/misc/winter/sepulchre_night.png b/img/misc/winter/sepulchre_night.png
index 2132d620c933a14d8353003bb854cbd083166273..8ddeda9ffd5a51c109ca1cb4635f6bf166e86fff 100644
Binary files a/img/misc/winter/sepulchre_night.png and b/img/misc/winter/sepulchre_night.png differ
diff --git a/img/misc/winter/sewers_dawn.gif b/img/misc/winter/sewers_dawn.gif
index c0f9845f08a8cb77d60959ec3ff167f40b80c803..120c4965eba2896259a500fdb49c33f15b3dd547 100644
Binary files a/img/misc/winter/sewers_dawn.gif and b/img/misc/winter/sewers_dawn.gif differ
diff --git a/img/misc/winter/sewers_day.gif b/img/misc/winter/sewers_day.gif
index bd27cd1b85eae3006509afc443f12d4b80f5ba3a..d827b75ddc712107d71a0dafb261fb7489473b5b 100644
Binary files a/img/misc/winter/sewers_day.gif and b/img/misc/winter/sewers_day.gif differ
diff --git a/img/misc/winter/sewers_dusk.gif b/img/misc/winter/sewers_dusk.gif
index cd8a5fd0e678994cf40897f4bb400f90e568d99b..d827b75ddc712107d71a0dafb261fb7489473b5b 100644
Binary files a/img/misc/winter/sewers_dusk.gif and b/img/misc/winter/sewers_dusk.gif differ
diff --git a/img/misc/winter/sewers_night.gif b/img/misc/winter/sewers_night.gif
index 19ba8c92b33f89f831fa102cb52417c99b71e029..0b7c67c6424d64d2fb12c20b9933128cf28e59fc 100644
Binary files a/img/misc/winter/sewers_night.gif and b/img/misc/winter/sewers_night.gif differ
diff --git a/img/misc/winter/sex_shop_dawn.png b/img/misc/winter/sex_shop_dawn.png
index bfb2d26375468370f83c5ba933038eea8c901c9b..8eefb5da0c5461fb798ee2223df2fedf33f2be54 100644
Binary files a/img/misc/winter/sex_shop_dawn.png and b/img/misc/winter/sex_shop_dawn.png differ
diff --git a/img/misc/winter/sex_shop_day.png b/img/misc/winter/sex_shop_day.png
index 65a6b97e0a8b1615ce28ecf1e31507d19464af90..a30e1fd723098d1279ecb389d576263fc1a0a754 100644
Binary files a/img/misc/winter/sex_shop_day.png and b/img/misc/winter/sex_shop_day.png differ
diff --git a/img/misc/winter/sex_shop_day_open.gif b/img/misc/winter/sex_shop_day_open.gif
index e2f1d393ad82d3e89ac9e677def5b72ab0856b9e..c473cf10666be24f63c99eaeaca0e1873cf58da7 100644
Binary files a/img/misc/winter/sex_shop_day_open.gif and b/img/misc/winter/sex_shop_day_open.gif differ
diff --git a/img/misc/winter/sex_shop_dusk.gif b/img/misc/winter/sex_shop_dusk.gif
index 6a553b1b91298a882d7ceac42a43c027cdab5010..cf1e105ad2cc114b586e4c2830e374665550a7a6 100644
Binary files a/img/misc/winter/sex_shop_dusk.gif and b/img/misc/winter/sex_shop_dusk.gif differ
diff --git a/img/misc/winter/sex_shop_night.gif b/img/misc/winter/sex_shop_night.gif
index f0e9f1c31d0eee1f7b6e2c874b9969383b1e17b1..1fc12fb3e429d6d3f57a1873b870e1798cbab9a7 100644
Binary files a/img/misc/winter/sex_shop_night.gif and b/img/misc/winter/sex_shop_night.gif differ
diff --git a/img/misc/winter/shopping_centre_dawn.png b/img/misc/winter/shopping_centre_dawn.png
index f3bb44e099cf54d3d522ca70ce91c79147bb8bbe..d82c3237e4a3a43a9efdf99dc46d374964bc386a 100644
Binary files a/img/misc/winter/shopping_centre_dawn.png and b/img/misc/winter/shopping_centre_dawn.png differ
diff --git a/img/misc/winter/shopping_centre_day.png b/img/misc/winter/shopping_centre_day.png
index 2296295e6217c0b99a5e28a73eb9fdbcf26c6152..e9a73c76e41d131d86d5c63a442d29fa3b7fbf77 100644
Binary files a/img/misc/winter/shopping_centre_day.png and b/img/misc/winter/shopping_centre_day.png differ
diff --git a/img/misc/winter/shopping_centre_dusk.png b/img/misc/winter/shopping_centre_dusk.png
index 085f29d3eceaa0230d24056dcd4a6169c0bf0c87..896019801e63c90f0dcf923fbf5e956f1517bcd7 100644
Binary files a/img/misc/winter/shopping_centre_dusk.png and b/img/misc/winter/shopping_centre_dusk.png differ
diff --git a/img/misc/winter/shopping_centre_night.png b/img/misc/winter/shopping_centre_night.png
index d9002b36a27c8a4688da5afed51459f669a75c3e..5fd810becbe92c8fb0ed8e70249129fcde80a884 100644
Binary files a/img/misc/winter/shopping_centre_night.png and b/img/misc/winter/shopping_centre_night.png differ
diff --git a/img/misc/winter/spa_dawn.gif b/img/misc/winter/spa_dawn.gif
index 08ce2ab17086627fd98b8282940614698f6d20f8..3ae1b404c3d69181c3c222e904a372923af28c6b 100644
Binary files a/img/misc/winter/spa_dawn.gif and b/img/misc/winter/spa_dawn.gif differ
diff --git a/img/misc/winter/spa_day.gif b/img/misc/winter/spa_day.gif
index 96c7c52ebfc878a8543368f3d968fbe31fa224e2..1003e3f4056f3ef598f386c85fd7a7536ab88e8b 100644
Binary files a/img/misc/winter/spa_day.gif and b/img/misc/winter/spa_day.gif differ
diff --git a/img/misc/winter/spa_dusk.gif b/img/misc/winter/spa_dusk.gif
index 9fe0f614c0c2c0033217667342d8430322f0b695..e3410d7d84d98a3b64601ac5ff5af13717fba2d9 100644
Binary files a/img/misc/winter/spa_dusk.gif and b/img/misc/winter/spa_dusk.gif differ
diff --git a/img/misc/winter/spa_night.gif b/img/misc/winter/spa_night.gif
index a1d2d89906ed5218e7480cc72b22d4acc761962e..3ffab207752a97f169e1789779227b49566c3f1f 100644
Binary files a/img/misc/winter/spa_night.gif and b/img/misc/winter/spa_night.gif differ
diff --git a/img/misc/winter/strip_club_dawn.png b/img/misc/winter/strip_club_dawn.png
index d66500900328c07ed304360f2fcf6ef5b06a5a6f..c35b732f2e7271aa9e1a7d1ebfa3cecf3ff0e84a 100644
Binary files a/img/misc/winter/strip_club_dawn.png and b/img/misc/winter/strip_club_dawn.png differ
diff --git a/img/misc/winter/strip_club_day.png b/img/misc/winter/strip_club_day.png
index 7c5af6ccd123191a3e5d65f780a626c1e7102f8f..c35b732f2e7271aa9e1a7d1ebfa3cecf3ff0e84a 100644
Binary files a/img/misc/winter/strip_club_day.png and b/img/misc/winter/strip_club_day.png differ
diff --git a/img/misc/winter/strip_club_dusk.png b/img/misc/winter/strip_club_dusk.png
index 95d2e523d71a02ecbc9297f29f459af37861415f..c35b732f2e7271aa9e1a7d1ebfa3cecf3ff0e84a 100644
Binary files a/img/misc/winter/strip_club_dusk.png and b/img/misc/winter/strip_club_dusk.png differ
diff --git a/img/misc/winter/strip_club_night.png b/img/misc/winter/strip_club_night.png
index 643a52f88c2c272df37a8f303a7106bc64e4184d..7044c951a44d34a650ad80e1134d365721860c24 100644
Binary files a/img/misc/winter/strip_club_night.png and b/img/misc/winter/strip_club_night.png differ
diff --git a/img/misc/winter/temple_dawn.png b/img/misc/winter/temple_dawn.png
index 1713f3f1e7899f0f82571c31024239b0e3b05e8b..3dc123d3e6c04fabc64f993551afaf07727c42c6 100644
Binary files a/img/misc/winter/temple_dawn.png and b/img/misc/winter/temple_dawn.png differ
diff --git a/img/misc/winter/temple_dawn_old.png b/img/misc/winter/temple_dawn_old.png
index ed297c8865a7b41c9a808c2e20cf76f40c8d89a3..0678310b925e0dfe7cfa73e35493de7a38de4a70 100644
Binary files a/img/misc/winter/temple_dawn_old.png and b/img/misc/winter/temple_dawn_old.png differ
diff --git a/img/misc/winter/temple_day.png b/img/misc/winter/temple_day.png
index 44c09950ab73114ac161cbabe0ac18d20e71621f..ae50b20c4a2463b2fad9b4b4596987f962c1135d 100644
Binary files a/img/misc/winter/temple_day.png and b/img/misc/winter/temple_day.png differ
diff --git a/img/misc/winter/temple_day_old.png b/img/misc/winter/temple_day_old.png
index b675ab3a7f6b9bb073add28b864d719f54198b4e..9713f59131ace839ca3a40a4362799a9ac97143a 100644
Binary files a/img/misc/winter/temple_day_old.png and b/img/misc/winter/temple_day_old.png differ
diff --git a/img/misc/winter/temple_dusk.png b/img/misc/winter/temple_dusk.png
index e8435960c28d2a557c8c8fcf08d26a156a9bdb29..535e16e15aa80532e5446e6fb495aeee27c2bcbf 100644
Binary files a/img/misc/winter/temple_dusk.png and b/img/misc/winter/temple_dusk.png differ
diff --git a/img/misc/winter/temple_dusk_old.png b/img/misc/winter/temple_dusk_old.png
index 3d56d10a686c3a45d3b258ccea891cf6a7ed5d0e..91b12c1de33688d9b563dc5bbfd7d608c394f992 100644
Binary files a/img/misc/winter/temple_dusk_old.png and b/img/misc/winter/temple_dusk_old.png differ
diff --git a/img/misc/winter/temple_night.png b/img/misc/winter/temple_night.png
index 0c850dbf730ed18692fff5ce0daa71514179c6c9..be810cf53037efe0c44b8402792c1ec468215855 100644
Binary files a/img/misc/winter/temple_night.png and b/img/misc/winter/temple_night.png differ
diff --git a/img/misc/winter/temple_night_old.png b/img/misc/winter/temple_night_old.png
index 57e562bb469982d09a39163714788d174419941e..16db024a7e8d98e24d3a658eaaf0dac2a1e6557b 100644
Binary files a/img/misc/winter/temple_night_old.png and b/img/misc/winter/temple_night_old.png differ
diff --git a/img/misc/winter/tentacles_dawn.gif b/img/misc/winter/tentacles_dawn.gif
index 3b58edf3b4ee111525786a85141b66ad95bcecdc..72093832e3884f6c17ece5ead0b05aacd0395818 100644
Binary files a/img/misc/winter/tentacles_dawn.gif and b/img/misc/winter/tentacles_dawn.gif differ
diff --git a/img/misc/winter/tentacles_day.gif b/img/misc/winter/tentacles_day.gif
index eac8f1b94ea8c39c916efdfdd67892487102e81a..72093832e3884f6c17ece5ead0b05aacd0395818 100644
Binary files a/img/misc/winter/tentacles_day.gif and b/img/misc/winter/tentacles_day.gif differ
diff --git a/img/misc/winter/tentacles_dusk.gif b/img/misc/winter/tentacles_dusk.gif
index eb2c1067b16f1b8cce40e46b7266ac88aeaa2f98..72093832e3884f6c17ece5ead0b05aacd0395818 100644
Binary files a/img/misc/winter/tentacles_dusk.gif and b/img/misc/winter/tentacles_dusk.gif differ
diff --git a/img/misc/winter/tentacles_night.gif b/img/misc/winter/tentacles_night.gif
index 7c092f50d0108f591dfe0ebf8a86eb549f055da4..72093832e3884f6c17ece5ead0b05aacd0395818 100644
Binary files a/img/misc/winter/tentacles_night.gif and b/img/misc/winter/tentacles_night.gif differ
diff --git a/img/misc/winter/tower_bloodmoon.gif b/img/misc/winter/tower_bloodmoon.gif
index 779981361c40773ea58e915637ca35507298e7d3..8423b210b48d38ee07251014e0749bd5812b1bb2 100644
Binary files a/img/misc/winter/tower_bloodmoon.gif and b/img/misc/winter/tower_bloodmoon.gif differ
diff --git a/img/misc/winter/tower_dawn.gif b/img/misc/winter/tower_dawn.gif
index 33663de954f9a05bf925a2838f51386a6733acbe..6161c31edd8bb78229583d98b499750e29fc9a64 100644
Binary files a/img/misc/winter/tower_dawn.gif and b/img/misc/winter/tower_dawn.gif differ
diff --git a/img/misc/winter/tower_day.gif b/img/misc/winter/tower_day.gif
index 826f9b1649a5823fa0ed39b911ac69f43ade782e..57abee469f6f118df49d008c38ae060a6a7227dc 100644
Binary files a/img/misc/winter/tower_day.gif and b/img/misc/winter/tower_day.gif differ
diff --git a/img/misc/winter/tower_dusk.gif b/img/misc/winter/tower_dusk.gif
index 7fda8829d4f815bf79a436d7ebba7b028457048e..5177460e61748d6410cea74a25101c0f3f7383fb 100644
Binary files a/img/misc/winter/tower_dusk.gif and b/img/misc/winter/tower_dusk.gif differ
diff --git a/img/misc/winter/tower_night.gif b/img/misc/winter/tower_night.gif
index bc89962d1a03ebf7a400865a05c2348f624adc37..c58fa2d51e17d9bb557f5bba8d3597cbc8c17eb3 100644
Binary files a/img/misc/winter/tower_night.gif and b/img/misc/winter/tower_night.gif differ
diff --git a/img/misc/winter/town_dawn.gif b/img/misc/winter/town_dawn.gif
index afea0b70b0908d38942fa2ec81d55059c64e2478..05a2e9c0a09a76637a4bd92b6a8b7d2f410701ba 100644
Binary files a/img/misc/winter/town_dawn.gif and b/img/misc/winter/town_dawn.gif differ
diff --git a/img/misc/winter/town_day.gif b/img/misc/winter/town_day.gif
index d37ec98558960dbed908dacf899bbca9ccd27633..e718171350af187b80b3c59b0ab8296985ab38fd 100644
Binary files a/img/misc/winter/town_day.gif and b/img/misc/winter/town_day.gif differ
diff --git a/img/misc/winter/town_dusk.gif b/img/misc/winter/town_dusk.gif
new file mode 100644
index 0000000000000000000000000000000000000000..49ef31dd141d985b0d4e380fcab1a9f80cf02750
Binary files /dev/null and b/img/misc/winter/town_dusk.gif differ
diff --git a/img/misc/winter/town_dusk.png b/img/misc/winter/town_dusk.png
deleted file mode 100644
index 8b7ded96ce0af75f369ce9b05ffb22ac7ac4562d..0000000000000000000000000000000000000000
Binary files a/img/misc/winter/town_dusk.png and /dev/null differ
diff --git a/img/misc/winter/town_night.gif b/img/misc/winter/town_night.gif
index cfdda08aad60f54032477b931795b5cbb4e11cf8..ae713223c0ca029adf06a75ce49e12283bf76031 100644
Binary files a/img/misc/winter/town_night.gif and b/img/misc/winter/town_night.gif differ
diff --git a/img/misc/winter/underground_dawn.png b/img/misc/winter/underground_dawn.png
index 1e8f49237457ffe68314dd1e4bfbe34b197555ce..3949432b2d50957d097708eb06c1bdfaa26ab942 100644
Binary files a/img/misc/winter/underground_dawn.png and b/img/misc/winter/underground_dawn.png differ
diff --git a/img/misc/winter/underground_day.png b/img/misc/winter/underground_day.png
index 2a3c06f48aecbf63623c434723f2b5e6cf569edf..6758f90d68e28f202a148605045f9169da58079f 100644
Binary files a/img/misc/winter/underground_day.png and b/img/misc/winter/underground_day.png differ
diff --git a/img/misc/winter/underground_dusk.png b/img/misc/winter/underground_dusk.png
index c093bc6e05dbdec5b50b178b1bb60bd9862c7897..53314299d56dd0a68a8eec47454b47da114a2be1 100644
Binary files a/img/misc/winter/underground_dusk.png and b/img/misc/winter/underground_dusk.png differ
diff --git a/img/misc/winter/underground_night.png b/img/misc/winter/underground_night.png
index 34c476687e14fd6152d9313d28d4215b94a1434a..ab47291bc644f6643e0ac0fe3dcf8d89c33790cb 100644
Binary files a/img/misc/winter/underground_night.png and b/img/misc/winter/underground_night.png differ
diff --git a/img/misc/winter/wolf_cave_dawn.png b/img/misc/winter/wolf_cave_dawn.png
index 3b137cf5a3d016691bac6b57efd404ff7b7b2343..3aacb36fa79b8e2fee722a37d838a55b86a524c8 100644
Binary files a/img/misc/winter/wolf_cave_dawn.png and b/img/misc/winter/wolf_cave_dawn.png differ
diff --git a/img/misc/winter/wolf_cave_day.png b/img/misc/winter/wolf_cave_day.png
index c09c9be029df0e9b0fda647f8da01d2833a33d19..497533a8d1bf3b4d526bd3011e7c8cbe31f3f394 100644
Binary files a/img/misc/winter/wolf_cave_day.png and b/img/misc/winter/wolf_cave_day.png differ
diff --git a/img/misc/winter/wolf_cave_dusk.png b/img/misc/winter/wolf_cave_dusk.png
index 649b90d1636c5e8c4d32a852f5adc74a9fa54d4b..497533a8d1bf3b4d526bd3011e7c8cbe31f3f394 100644
Binary files a/img/misc/winter/wolf_cave_dusk.png and b/img/misc/winter/wolf_cave_dusk.png differ
diff --git a/img/misc/winter/wolf_cave_night.png b/img/misc/winter/wolf_cave_night.png
index 7c52321fc98e6355d5429df40d1a20c3f39edb73..8e31ae3163e4b45568a2765bf96a44087dc19947 100644
Binary files a/img/misc/winter/wolf_cave_night.png and b/img/misc/winter/wolf_cave_night.png differ
diff --git a/img/misc/winter_apng/alex_cottage_dawn.apng b/img/misc/winter_apng/alex_cottage_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..e832b61b92dd6a8402591d02b488fe714b61ccfa
Binary files /dev/null and b/img/misc/winter_apng/alex_cottage_dawn.apng differ
diff --git a/img/misc/winter_apng/alex_cottage_day.apng b/img/misc/winter_apng/alex_cottage_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..738c054f07d8cc013998781e791670b5533277b0
Binary files /dev/null and b/img/misc/winter_apng/alex_cottage_day.apng differ
diff --git a/img/misc/winter_apng/alex_cottage_dusk.apng b/img/misc/winter_apng/alex_cottage_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..fb42b6f66665f212b5381cec2a52298a0fcc784b
Binary files /dev/null and b/img/misc/winter_apng/alex_cottage_dusk.apng differ
diff --git a/img/misc/winter_apng/alex_cottage_night.apng b/img/misc/winter_apng/alex_cottage_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b766c672cc747a991bd026a5b3ac58325486749e
Binary files /dev/null and b/img/misc/winter_apng/alex_cottage_night.apng differ
diff --git a/img/misc/winter_apng/alex_farm_dawn.apng b/img/misc/winter_apng/alex_farm_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..604958e58bfde79718b62c4675c2e7b206dd0115
Binary files /dev/null and b/img/misc/winter_apng/alex_farm_dawn.apng differ
diff --git a/img/misc/winter_apng/alex_farm_day.apng b/img/misc/winter_apng/alex_farm_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..4c88bf461b48543b80af67c9a9c5d99feb103057
Binary files /dev/null and b/img/misc/winter_apng/alex_farm_day.apng differ
diff --git a/img/misc/winter_apng/alex_farm_dusk.apng b/img/misc/winter_apng/alex_farm_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..826616368217631783b67483d99cb6da1f51f6ef
Binary files /dev/null and b/img/misc/winter_apng/alex_farm_dusk.apng differ
diff --git a/img/misc/winter_apng/alex_farm_night.apng b/img/misc/winter_apng/alex_farm_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..d257f9d0948add664324a758085080165e46ca6b
Binary files /dev/null and b/img/misc/winter_apng/alex_farm_night.apng differ
diff --git a/img/misc/winter_apng/alley_bloodmoon.apng b/img/misc/winter_apng/alley_bloodmoon.apng
new file mode 100644
index 0000000000000000000000000000000000000000..d674a47a10e35ef182e7a69bdc23e9522217c6f0
Binary files /dev/null and b/img/misc/winter_apng/alley_bloodmoon.apng differ
diff --git a/img/misc/winter_apng/alley_dawn.apng b/img/misc/winter_apng/alley_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..dcfa6aca4f17f137c3532a2851aeed70dae1c8b9
Binary files /dev/null and b/img/misc/winter_apng/alley_dawn.apng differ
diff --git a/img/misc/winter_apng/alley_day.apng b/img/misc/winter_apng/alley_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..fdab21221c80307daeddfbfad1ef9a7fa718bf5f
Binary files /dev/null and b/img/misc/winter_apng/alley_day.apng differ
diff --git a/img/misc/winter_apng/alley_dusk.apng b/img/misc/winter_apng/alley_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..7460a47a757965dfa0cec3234922069e3c12ddd6
Binary files /dev/null and b/img/misc/winter_apng/alley_dusk.apng differ
diff --git a/img/misc/winter_apng/alley_night.apng b/img/misc/winter_apng/alley_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..91033475a5baeac46c68650852253cb9a49e46ec
Binary files /dev/null and b/img/misc/winter_apng/alley_night.apng differ
diff --git a/img/misc/winter_apng/arcade_dawn.apng b/img/misc/winter_apng/arcade_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..bcd573588c5257d586779797ed3ba7f80e6c5054
Binary files /dev/null and b/img/misc/winter_apng/arcade_dawn.apng differ
diff --git a/img/misc/winter_apng/arcade_day.apng b/img/misc/winter_apng/arcade_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..9b6d579de4feab0d106ea69775737e87992d13d8
Binary files /dev/null and b/img/misc/winter_apng/arcade_day.apng differ
diff --git a/img/misc/winter_apng/arcade_dusk.apng b/img/misc/winter_apng/arcade_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..9b6d579de4feab0d106ea69775737e87992d13d8
Binary files /dev/null and b/img/misc/winter_apng/arcade_dusk.apng differ
diff --git a/img/misc/winter_apng/arcade_night.apng b/img/misc/winter_apng/arcade_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..5ebbc428a4e09fbbcea9c1126852439cfdb31878
Binary files /dev/null and b/img/misc/winter_apng/arcade_night.apng differ
diff --git a/img/misc/winter_apng/asylum_dawnslow.apng b/img/misc/winter_apng/asylum_dawnslow.apng
new file mode 100644
index 0000000000000000000000000000000000000000..e7fd83b49749cdaa3b026502b7a328aec568bdfd
Binary files /dev/null and b/img/misc/winter_apng/asylum_dawnslow.apng differ
diff --git a/img/misc/winter_apng/asylum_dawnvfast.apng b/img/misc/winter_apng/asylum_dawnvfast.apng
new file mode 100644
index 0000000000000000000000000000000000000000..9492ce379876c057f9f7989e7c026a95c49f12df
Binary files /dev/null and b/img/misc/winter_apng/asylum_dawnvfast.apng differ
diff --git a/img/misc/winter_apng/asylum_dayslow.apng b/img/misc/winter_apng/asylum_dayslow.apng
new file mode 100644
index 0000000000000000000000000000000000000000..9f7bda9c4cade62525d7611c4291af5df2d4d502
Binary files /dev/null and b/img/misc/winter_apng/asylum_dayslow.apng differ
diff --git a/img/misc/winter_apng/asylum_dayvfast.apng b/img/misc/winter_apng/asylum_dayvfast.apng
new file mode 100644
index 0000000000000000000000000000000000000000..870e3f85926d230a25ab1c511007040c5094cabe
Binary files /dev/null and b/img/misc/winter_apng/asylum_dayvfast.apng differ
diff --git a/img/misc/winter_apng/asylum_duskslow.apng b/img/misc/winter_apng/asylum_duskslow.apng
new file mode 100644
index 0000000000000000000000000000000000000000..e7fd83b49749cdaa3b026502b7a328aec568bdfd
Binary files /dev/null and b/img/misc/winter_apng/asylum_duskslow.apng differ
diff --git a/img/misc/winter_apng/asylum_duskvfast.apng b/img/misc/winter_apng/asylum_duskvfast.apng
new file mode 100644
index 0000000000000000000000000000000000000000..e2168f941e32e47d4c87d8f0bce515c24801a78e
Binary files /dev/null and b/img/misc/winter_apng/asylum_duskvfast.apng differ
diff --git a/img/misc/winter_apng/asylum_nightslow.apng b/img/misc/winter_apng/asylum_nightslow.apng
new file mode 100644
index 0000000000000000000000000000000000000000..ec2e4e5b3859246b0a919b933484f56453f12f29
Binary files /dev/null and b/img/misc/winter_apng/asylum_nightslow.apng differ
diff --git a/img/misc/winter_apng/asylum_nightvfast.apng b/img/misc/winter_apng/asylum_nightvfast.apng
new file mode 100644
index 0000000000000000000000000000000000000000..79ae221ad18b8a801763e61ae2cd20a07cb19271
Binary files /dev/null and b/img/misc/winter_apng/asylum_nightvfast.apng differ
diff --git a/img/misc/winter_apng/beach_dawn.apng b/img/misc/winter_apng/beach_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..8f5ad324c39fc4330aab65274892c74e6b59821c
Binary files /dev/null and b/img/misc/winter_apng/beach_dawn.apng differ
diff --git a/img/misc/winter_apng/beach_day.apng b/img/misc/winter_apng/beach_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..1d20fa9e8c47d73ad84ee66d7b761794b4454437
Binary files /dev/null and b/img/misc/winter_apng/beach_day.apng differ
diff --git a/img/misc/winter_apng/beach_dusk.apng b/img/misc/winter_apng/beach_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..d5c52c12e21e0b32a30687a862e7b4639c5b7f1c
Binary files /dev/null and b/img/misc/winter_apng/beach_dusk.apng differ
diff --git a/img/misc/winter_apng/beach_night.apng b/img/misc/winter_apng/beach_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..7c75325ccb7f3580fc3c91ab0ce495a4096924dc
Binary files /dev/null and b/img/misc/winter_apng/beach_night.apng differ
diff --git a/img/misc/winter_apng/boat_dawn.apng b/img/misc/winter_apng/boat_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..32e4d9ad4bcec3703e8b63dfab6121e9aae93234
Binary files /dev/null and b/img/misc/winter_apng/boat_dawn.apng differ
diff --git a/img/misc/winter_apng/boat_day.apng b/img/misc/winter_apng/boat_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..32e4d9ad4bcec3703e8b63dfab6121e9aae93234
Binary files /dev/null and b/img/misc/winter_apng/boat_day.apng differ
diff --git a/img/misc/winter_apng/boat_dusk.apng b/img/misc/winter_apng/boat_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..54bf6fb15e064d72942e969a713fb621c864fa90
Binary files /dev/null and b/img/misc/winter_apng/boat_dusk.apng differ
diff --git a/img/misc/winter_apng/boat_night.apng b/img/misc/winter_apng/boat_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..a53a98097544f73d47a6ab9fe8e1ed4a77e2397b
Binary files /dev/null and b/img/misc/winter_apng/boat_night.apng differ
diff --git a/img/misc/winter_apng/bog_bloodmoon.apng b/img/misc/winter_apng/bog_bloodmoon.apng
new file mode 100644
index 0000000000000000000000000000000000000000..6a5c92902f475d5f119ab9e3c8fe6c3d29062fa5
Binary files /dev/null and b/img/misc/winter_apng/bog_bloodmoon.apng differ
diff --git a/img/misc/winter_apng/bog_dawn.apng b/img/misc/winter_apng/bog_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..3975f760cf19930e0ea3baaa0a76297f0fd50490
Binary files /dev/null and b/img/misc/winter_apng/bog_dawn.apng differ
diff --git a/img/misc/winter_apng/bog_day.apng b/img/misc/winter_apng/bog_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..54e7baae703ed2abcf2fb39596fa38bd525b37b2
Binary files /dev/null and b/img/misc/winter_apng/bog_day.apng differ
diff --git a/img/misc/winter_apng/bog_dusk.apng b/img/misc/winter_apng/bog_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..6e70f2ffc89f2bbc982b0b1b189364ef124cf5e9
Binary files /dev/null and b/img/misc/winter_apng/bog_dusk.apng differ
diff --git a/img/misc/winter_apng/bog_night.apng b/img/misc/winter_apng/bog_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..c145f2f0a6fb9c324450f393d0c03163d4f82665
Binary files /dev/null and b/img/misc/winter_apng/bog_night.apng differ
diff --git a/img/misc/winter_apng/brothel_dawn.apng b/img/misc/winter_apng/brothel_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..cc8ee8dcb94342ec0089dc2c88054e4247ad014c
Binary files /dev/null and b/img/misc/winter_apng/brothel_dawn.apng differ
diff --git a/img/misc/winter_apng/brothel_day.apng b/img/misc/winter_apng/brothel_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..d8f68f6768db2208529185c565b8a48155049994
Binary files /dev/null and b/img/misc/winter_apng/brothel_day.apng differ
diff --git a/img/misc/winter_apng/brothel_dusk.apng b/img/misc/winter_apng/brothel_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..d8f68f6768db2208529185c565b8a48155049994
Binary files /dev/null and b/img/misc/winter_apng/brothel_dusk.apng differ
diff --git a/img/misc/winter_apng/brothel_night.apng b/img/misc/winter_apng/brothel_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..aeedef131050baa8ad4b7a9978cdb545a9fdebbe
Binary files /dev/null and b/img/misc/winter_apng/brothel_night.apng differ
diff --git a/img/misc/winter_apng/cabin_dawn.apng b/img/misc/winter_apng/cabin_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b912ec5048feb17fdbc91a9ef1dc22928cbd97ef
Binary files /dev/null and b/img/misc/winter_apng/cabin_dawn.apng differ
diff --git a/img/misc/winter_apng/cabin_day.apng b/img/misc/winter_apng/cabin_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..07351ca5fb689568be25cee0ef05c0e1f13b09c3
Binary files /dev/null and b/img/misc/winter_apng/cabin_day.apng differ
diff --git a/img/misc/winter_apng/cabin_dusk.apng b/img/misc/winter_apng/cabin_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..d7d842beac33b88401aeec0eb733c0bacbd12902
Binary files /dev/null and b/img/misc/winter_apng/cabin_dusk.apng differ
diff --git a/img/misc/winter_apng/cabin_night.apng b/img/misc/winter_apng/cabin_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..26d7db8626387d2b46cb679759a0a1e05d20a2f7
Binary files /dev/null and b/img/misc/winter_apng/cabin_night.apng differ
diff --git a/img/misc/winter_apng/cafe_construction_dawn.apng b/img/misc/winter_apng/cafe_construction_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b5e0aac9f5d308b149c046bdf3ac93fd257ac0fd
Binary files /dev/null and b/img/misc/winter_apng/cafe_construction_dawn.apng differ
diff --git a/img/misc/winter_apng/cafe_construction_day.apng b/img/misc/winter_apng/cafe_construction_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..7d12b26dc02d1211a4e287e443a6a18c4b582771
Binary files /dev/null and b/img/misc/winter_apng/cafe_construction_day.apng differ
diff --git a/img/misc/winter_apng/cafe_construction_dusk.apng b/img/misc/winter_apng/cafe_construction_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..56007d5a174cd385ebc722118833cf2058fc0cb2
Binary files /dev/null and b/img/misc/winter_apng/cafe_construction_dusk.apng differ
diff --git a/img/misc/winter_apng/cafe_construction_night.apng b/img/misc/winter_apng/cafe_construction_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..a61a71d7ceaa9f703b2a1904a3a12db5a437c371
Binary files /dev/null and b/img/misc/winter_apng/cafe_construction_night.apng differ
diff --git a/img/misc/winter_apng/cafe_dawn.apng b/img/misc/winter_apng/cafe_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..7ce18fc7d97e224b013bfd7b030d5b7c048f2c7a
Binary files /dev/null and b/img/misc/winter_apng/cafe_dawn.apng differ
diff --git a/img/misc/winter_apng/cafe_day.apng b/img/misc/winter_apng/cafe_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..007787cf87bd4318f5f04b0fd92f0fdf643eaf56
Binary files /dev/null and b/img/misc/winter_apng/cafe_day.apng differ
diff --git a/img/misc/winter_apng/cafe_dusk.apng b/img/misc/winter_apng/cafe_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..70970c77c00dbd38116a4a0b089e821b71911a49
Binary files /dev/null and b/img/misc/winter_apng/cafe_dusk.apng differ
diff --git a/img/misc/winter_apng/cafe_night.apng b/img/misc/winter_apng/cafe_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..7fe9c6f3f5bdd8904824896c97b166b686edea5e
Binary files /dev/null and b/img/misc/winter_apng/cafe_night.apng differ
diff --git a/img/misc/winter_apng/cafe_renovated_dawn.apng b/img/misc/winter_apng/cafe_renovated_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..d6a55286f93b3a3f1f1d78bd6aebd0d38400d494
Binary files /dev/null and b/img/misc/winter_apng/cafe_renovated_dawn.apng differ
diff --git a/img/misc/winter_apng/cafe_renovated_day.apng b/img/misc/winter_apng/cafe_renovated_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..5f45b3c70a0aa44481d1ba0b4820826c9742903f
Binary files /dev/null and b/img/misc/winter_apng/cafe_renovated_day.apng differ
diff --git a/img/misc/winter_apng/cafe_renovated_dusk.apng b/img/misc/winter_apng/cafe_renovated_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..409918cd5449d51893fa2c8928059f0fae5a6825
Binary files /dev/null and b/img/misc/winter_apng/cafe_renovated_dusk.apng differ
diff --git a/img/misc/winter_apng/cafe_renovated_night.apng b/img/misc/winter_apng/cafe_renovated_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b7cd171b8cc013aaf78c4d8b9257a278affc582e
Binary files /dev/null and b/img/misc/winter_apng/cafe_renovated_night.apng differ
diff --git a/img/misc/winter_apng/canal_dawn.apng b/img/misc/winter_apng/canal_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b9766b9484b38a8f78557fb0cf37ebe9cc03b2be
Binary files /dev/null and b/img/misc/winter_apng/canal_dawn.apng differ
diff --git a/img/misc/winter_apng/canal_day.apng b/img/misc/winter_apng/canal_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..029bfc483ff7237c854cd9e37bbd15aa17239ce1
Binary files /dev/null and b/img/misc/winter_apng/canal_day.apng differ
diff --git a/img/misc/winter_apng/canal_dusk.apng b/img/misc/winter_apng/canal_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..0518b7f58174f6e1d42a96a9e993cda9b4858dc5
Binary files /dev/null and b/img/misc/winter_apng/canal_dusk.apng differ
diff --git a/img/misc/winter_apng/canal_night.apng b/img/misc/winter_apng/canal_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..cc70aba765c6fbb40e107dfa2fbf4ff700c992b3
Binary files /dev/null and b/img/misc/winter_apng/canal_night.apng differ
diff --git a/img/misc/winter_apng/churchyard_dawn.apng b/img/misc/winter_apng/churchyard_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..7791f2fb44fff5635a59838cf99be3444ad98c04
Binary files /dev/null and b/img/misc/winter_apng/churchyard_dawn.apng differ
diff --git a/img/misc/winter_apng/churchyard_day.apng b/img/misc/winter_apng/churchyard_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..7791f2fb44fff5635a59838cf99be3444ad98c04
Binary files /dev/null and b/img/misc/winter_apng/churchyard_day.apng differ
diff --git a/img/misc/winter_apng/churchyard_dusk.apng b/img/misc/winter_apng/churchyard_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..fa6e7c94008de42eaa87122e89099a415dbeb6f0
Binary files /dev/null and b/img/misc/winter_apng/churchyard_dusk.apng differ
diff --git a/img/misc/winter_apng/churchyard_night.apng b/img/misc/winter_apng/churchyard_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..227cad7c56af8858dd7e8c3b8b4706dd0a97b22e
Binary files /dev/null and b/img/misc/winter_apng/churchyard_night.apng differ
diff --git a/img/misc/winter_apng/compound_dawn.apng b/img/misc/winter_apng/compound_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..e614aa5dca545829b02e6afcedb6c59e498e6d7d
Binary files /dev/null and b/img/misc/winter_apng/compound_dawn.apng differ
diff --git a/img/misc/winter_apng/compound_day.apng b/img/misc/winter_apng/compound_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..3f50a307691ba989731b0b99b8423c22723be2b2
Binary files /dev/null and b/img/misc/winter_apng/compound_day.apng differ
diff --git a/img/misc/winter_apng/compound_dusk.apng b/img/misc/winter_apng/compound_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..78a964fb27f65c5e4d64e7ef78496da2531f32c8
Binary files /dev/null and b/img/misc/winter_apng/compound_dusk.apng differ
diff --git a/img/misc/winter_apng/compound_night.apng b/img/misc/winter_apng/compound_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..86b8955d8795fa31ea2810e57702ec8d650dc82f
Binary files /dev/null and b/img/misc/winter_apng/compound_night.apng differ
diff --git a/img/misc/winter_apng/dance_studio_dawn.apng b/img/misc/winter_apng/dance_studio_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..f096c2c49e74c6782665270bf5464d9914ce2c04
Binary files /dev/null and b/img/misc/winter_apng/dance_studio_dawn.apng differ
diff --git a/img/misc/winter_apng/dance_studio_day.apng b/img/misc/winter_apng/dance_studio_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..fdfb289e022fa29177b21d14847e89777eba3e15
Binary files /dev/null and b/img/misc/winter_apng/dance_studio_day.apng differ
diff --git a/img/misc/winter_apng/dance_studio_dusk.apng b/img/misc/winter_apng/dance_studio_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..fdfb289e022fa29177b21d14847e89777eba3e15
Binary files /dev/null and b/img/misc/winter_apng/dance_studio_dusk.apng differ
diff --git a/img/misc/winter_apng/dance_studio_night.apng b/img/misc/winter_apng/dance_studio_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..30a4acd31a81aa4fc12b9d73e9ac868937c032d6
Binary files /dev/null and b/img/misc/winter_apng/dance_studio_night.apng differ
diff --git a/img/misc/winter_apng/dilapidated_shop_dawn.apng b/img/misc/winter_apng/dilapidated_shop_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..894b4d9725b5a712a34ab9babb966b19d129b566
Binary files /dev/null and b/img/misc/winter_apng/dilapidated_shop_dawn.apng differ
diff --git a/img/misc/winter_apng/dilapidated_shop_day.apng b/img/misc/winter_apng/dilapidated_shop_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..1f8ebd312544ae62b4e8960306556989206fd8fb
Binary files /dev/null and b/img/misc/winter_apng/dilapidated_shop_day.apng differ
diff --git a/img/misc/winter_apng/dilapidated_shop_dusk.apng b/img/misc/winter_apng/dilapidated_shop_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..32d7c42332c1ad8b483bae9c9a4521d6403a416b
Binary files /dev/null and b/img/misc/winter_apng/dilapidated_shop_dusk.apng differ
diff --git a/img/misc/winter_apng/dilapidated_shop_night.apng b/img/misc/winter_apng/dilapidated_shop_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..389cfc7d9d2d3dfba58fa329e634a9d1e833bd54
Binary files /dev/null and b/img/misc/winter_apng/dilapidated_shop_night.apng differ
diff --git a/img/misc/winter_apng/docks_dawn.apng b/img/misc/winter_apng/docks_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..5ba7d3bb242fd288dd4cfc6de7843bef693f09ec
Binary files /dev/null and b/img/misc/winter_apng/docks_dawn.apng differ
diff --git a/img/misc/winter_apng/docks_day.apng b/img/misc/winter_apng/docks_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..015637c7e103a0dea5f4fa76eb5f22e231d945f6
Binary files /dev/null and b/img/misc/winter_apng/docks_day.apng differ
diff --git a/img/misc/winter_apng/docks_dusk.apng b/img/misc/winter_apng/docks_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..c362d6183aec7291f7caf118f9eb32f8d366e84d
Binary files /dev/null and b/img/misc/winter_apng/docks_dusk.apng differ
diff --git a/img/misc/winter_apng/docks_night.apng b/img/misc/winter_apng/docks_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..f6592aa09a69e893f66df3924389d2769959e84c
Binary files /dev/null and b/img/misc/winter_apng/docks_night.apng differ
diff --git a/img/misc/winter_apng/dog_pound_dawn.apng b/img/misc/winter_apng/dog_pound_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..71fc0d9233406e6271f529cdd55507557daea9f5
Binary files /dev/null and b/img/misc/winter_apng/dog_pound_dawn.apng differ
diff --git a/img/misc/winter_apng/dog_pound_day.apng b/img/misc/winter_apng/dog_pound_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..660ff6db7d3ae190b2b8e1705580d0633f56ec2f
Binary files /dev/null and b/img/misc/winter_apng/dog_pound_day.apng differ
diff --git a/img/misc/winter_apng/dog_pound_dusk.apng b/img/misc/winter_apng/dog_pound_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..73a07fb8b8e52ed0d1b7c9b57a3cddaadd605974
Binary files /dev/null and b/img/misc/winter_apng/dog_pound_dusk.apng differ
diff --git a/img/misc/winter_apng/dog_pound_night.apng b/img/misc/winter_apng/dog_pound_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..a10d23f37fdb058b9336616243c5578c5a51a5b8
Binary files /dev/null and b/img/misc/winter_apng/dog_pound_night.apng differ
diff --git a/img/misc/winter_apng/drain.apng b/img/misc/winter_apng/drain.apng
new file mode 100644
index 0000000000000000000000000000000000000000..e9eb43caf34cd38e3968a46fceab6b9aa098bc7c
Binary files /dev/null and b/img/misc/winter_apng/drain.apng differ
diff --git a/img/misc/winter_apng/factory_dawn.apng b/img/misc/winter_apng/factory_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..5f922698ed2c1d00d518d88c0f7734ef171ee17b
Binary files /dev/null and b/img/misc/winter_apng/factory_dawn.apng differ
diff --git a/img/misc/winter_apng/factory_day.apng b/img/misc/winter_apng/factory_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..733d55858cb4d214014f45fff7076ffbef776acf
Binary files /dev/null and b/img/misc/winter_apng/factory_day.apng differ
diff --git a/img/misc/winter_apng/factory_dusk.apng b/img/misc/winter_apng/factory_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..022178ab32e5f8bc59e479dcc08bfa4b1935b22e
Binary files /dev/null and b/img/misc/winter_apng/factory_dusk.apng differ
diff --git a/img/misc/winter_apng/factory_night.apng b/img/misc/winter_apng/factory_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..306084462719d40e267170b0a0bc38de0d5d7a7b
Binary files /dev/null and b/img/misc/winter_apng/factory_night.apng differ
diff --git a/img/misc/winter_apng/farm_dawn.apng b/img/misc/winter_apng/farm_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..e530aaf11ada913c10c0ec208bea43f5c7b8ec26
Binary files /dev/null and b/img/misc/winter_apng/farm_dawn.apng differ
diff --git a/img/misc/winter_apng/farm_day.apng b/img/misc/winter_apng/farm_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..d56917fbd1a09d96361c3b2f59fd88626ebcc5f4
Binary files /dev/null and b/img/misc/winter_apng/farm_day.apng differ
diff --git a/img/misc/winter_apng/farm_dusk.apng b/img/misc/winter_apng/farm_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..9fdbf77fc74e814f482dfa1faa382685c862eae0
Binary files /dev/null and b/img/misc/winter_apng/farm_dusk.apng differ
diff --git a/img/misc/winter_apng/farm_night.apng b/img/misc/winter_apng/farm_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..496b4de8a3a5267f36ce9dc392b97bcbf23b66f6
Binary files /dev/null and b/img/misc/winter_apng/farm_night.apng differ
diff --git a/img/misc/winter_apng/flats_dawn.apng b/img/misc/winter_apng/flats_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..8e5a5e75efa6f96732912140a5c0693ca0d90b2d
Binary files /dev/null and b/img/misc/winter_apng/flats_dawn.apng differ
diff --git a/img/misc/winter_apng/flats_day.apng b/img/misc/winter_apng/flats_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..673bdc1b814e7f0f838eb6a1b691d15537d4e766
Binary files /dev/null and b/img/misc/winter_apng/flats_day.apng differ
diff --git a/img/misc/winter_apng/flats_dusk.apng b/img/misc/winter_apng/flats_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..dd2b551e825ebb21559b98b5d9383e593794b95c
Binary files /dev/null and b/img/misc/winter_apng/flats_dusk.apng differ
diff --git a/img/misc/winter_apng/flats_night.apng b/img/misc/winter_apng/flats_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..5379ea26e00c06250ff9106e173b5a615fc1c2bc
Binary files /dev/null and b/img/misc/winter_apng/flats_night.apng differ
diff --git a/img/misc/winter_apng/forest_bloodmoon.apng b/img/misc/winter_apng/forest_bloodmoon.apng
new file mode 100644
index 0000000000000000000000000000000000000000..f52dd5d36cabbf83b59a076e6a23ebd2ff829c40
Binary files /dev/null and b/img/misc/winter_apng/forest_bloodmoon.apng differ
diff --git a/img/misc/winter_apng/forest_dawn.apng b/img/misc/winter_apng/forest_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..0957f97728983bab3821458f262f1aa844dd18ab
Binary files /dev/null and b/img/misc/winter_apng/forest_dawn.apng differ
diff --git a/img/misc/winter_apng/forest_day.apng b/img/misc/winter_apng/forest_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..8ba137893c53e09fe2883d8c92fe198f3bf6c7de
Binary files /dev/null and b/img/misc/winter_apng/forest_day.apng differ
diff --git a/img/misc/winter_apng/forest_dusk.apng b/img/misc/winter_apng/forest_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..a681512024d9b31dfe4350bf09a7da88b11900c7
Binary files /dev/null and b/img/misc/winter_apng/forest_dusk.apng differ
diff --git a/img/misc/winter_apng/forest_night.apng b/img/misc/winter_apng/forest_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..004083160ae4dd8c108cba4907916aaca6cf2089
Binary files /dev/null and b/img/misc/winter_apng/forest_night.apng differ
diff --git a/img/misc/winter_apng/forest_shop_dawn.apng b/img/misc/winter_apng/forest_shop_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..cddbbb0d083a253ed276d95d2bbff8f7ea510cfc
Binary files /dev/null and b/img/misc/winter_apng/forest_shop_dawn.apng differ
diff --git a/img/misc/winter_apng/forest_shop_day.apng b/img/misc/winter_apng/forest_shop_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..c8a7f5ede82e89241e75e1fe26d6dda527ef6a0f
Binary files /dev/null and b/img/misc/winter_apng/forest_shop_day.apng differ
diff --git a/img/misc/winter_apng/forest_shop_dusk.apng b/img/misc/winter_apng/forest_shop_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..9f7100c83ff58a0fb5aa3cbdfbc213fccfe29ef4
Binary files /dev/null and b/img/misc/winter_apng/forest_shop_dusk.apng differ
diff --git a/img/misc/winter_apng/forest_shop_night.apng b/img/misc/winter_apng/forest_shop_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..a7a8d369fba592343c1a71e78789cbc57c189382
Binary files /dev/null and b/img/misc/winter_apng/forest_shop_night.apng differ
diff --git a/img/misc/winter_apng/home_bloodmoon.apng b/img/misc/winter_apng/home_bloodmoon.apng
new file mode 100644
index 0000000000000000000000000000000000000000..199026720103daa30fa1a98ce23b42f32fcb6815
Binary files /dev/null and b/img/misc/winter_apng/home_bloodmoon.apng differ
diff --git a/img/misc/winter_apng/home_dawn.apng b/img/misc/winter_apng/home_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..0d6c65b2394e5a57fb92185a0730dc5c963baa88
Binary files /dev/null and b/img/misc/winter_apng/home_dawn.apng differ
diff --git a/img/misc/winter_apng/home_day.apng b/img/misc/winter_apng/home_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..3d0c776b138be002488195a35f7848362b746957
Binary files /dev/null and b/img/misc/winter_apng/home_day.apng differ
diff --git a/img/misc/winter_apng/home_dusk.apng b/img/misc/winter_apng/home_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..93190bba51bc8e4b5bbfb5e31837ed1a96da37e6
Binary files /dev/null and b/img/misc/winter_apng/home_dusk.apng differ
diff --git a/img/misc/winter_apng/home_night.apng b/img/misc/winter_apng/home_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..2efefeab6fb62a8cf2031b91c5b8c6f716b457e0
Binary files /dev/null and b/img/misc/winter_apng/home_night.apng differ
diff --git a/img/misc/winter_apng/hospital_dawn.apng b/img/misc/winter_apng/hospital_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b71774aff630110f9eb0f52789a9bfa3b718a4d9
Binary files /dev/null and b/img/misc/winter_apng/hospital_dawn.apng differ
diff --git a/img/misc/winter_apng/hospital_day.apng b/img/misc/winter_apng/hospital_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..ae839ba6ac204d06957a697b51cbc8b77d7780d6
Binary files /dev/null and b/img/misc/winter_apng/hospital_day.apng differ
diff --git a/img/misc/winter_apng/hospital_dusk.apng b/img/misc/winter_apng/hospital_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..ae839ba6ac204d06957a697b51cbc8b77d7780d6
Binary files /dev/null and b/img/misc/winter_apng/hospital_dusk.apng differ
diff --git a/img/misc/winter_apng/hospital_night.apng b/img/misc/winter_apng/hospital_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..8527faba790a13c66cc77d7030e5e28c8859bf6b
Binary files /dev/null and b/img/misc/winter_apng/hospital_night.apng differ
diff --git a/img/misc/winter_apng/indust_alley_bloodmoon.apng b/img/misc/winter_apng/indust_alley_bloodmoon.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b1a77f55444544521b0f69e85135dab391c0a028
Binary files /dev/null and b/img/misc/winter_apng/indust_alley_bloodmoon.apng differ
diff --git a/img/misc/winter_apng/indust_alley_dawn.apng b/img/misc/winter_apng/indust_alley_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..ff6243142a5fad4637f818d1ceab2f36ab3dbf4d
Binary files /dev/null and b/img/misc/winter_apng/indust_alley_dawn.apng differ
diff --git a/img/misc/winter_apng/indust_alley_day.apng b/img/misc/winter_apng/indust_alley_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..d045e54937126b8a908a77feeb7fd219d45c61ed
Binary files /dev/null and b/img/misc/winter_apng/indust_alley_day.apng differ
diff --git a/img/misc/winter_apng/indust_alley_dusk.apng b/img/misc/winter_apng/indust_alley_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..19ce9a1ce3bf982f4a694da9af6787a9fd8958a1
Binary files /dev/null and b/img/misc/winter_apng/indust_alley_dusk.apng differ
diff --git a/img/misc/winter_apng/indust_alley_night.apng b/img/misc/winter_apng/indust_alley_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..88f082fb18cc9f731a37243e4e5affff1163f892
Binary files /dev/null and b/img/misc/winter_apng/indust_alley_night.apng differ
diff --git a/img/misc/winter_apng/island_dawn.apng b/img/misc/winter_apng/island_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b1bbbed0659b06e9e86780931a04714900a2fcaa
Binary files /dev/null and b/img/misc/winter_apng/island_dawn.apng differ
diff --git a/img/misc/winter_apng/island_day.apng b/img/misc/winter_apng/island_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b1bbbed0659b06e9e86780931a04714900a2fcaa
Binary files /dev/null and b/img/misc/winter_apng/island_day.apng differ
diff --git a/img/misc/winter_apng/island_dusk.apng b/img/misc/winter_apng/island_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..30be5d4cc70406cd082d40d3cd60d40471391ec1
Binary files /dev/null and b/img/misc/winter_apng/island_dusk.apng differ
diff --git a/img/misc/winter_apng/island_night.apng b/img/misc/winter_apng/island_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..225799c4900ca4776f9e9877ec04bf16df027a0a
Binary files /dev/null and b/img/misc/winter_apng/island_night.apng differ
diff --git a/img/misc/winter_apng/kylar_manor_dawn.apng b/img/misc/winter_apng/kylar_manor_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..65e4315c61cbcd3bdf30a5382d955e989be6c0ba
Binary files /dev/null and b/img/misc/winter_apng/kylar_manor_dawn.apng differ
diff --git a/img/misc/winter_apng/kylar_manor_day.apng b/img/misc/winter_apng/kylar_manor_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..264226500498f7300957b30c3645258b41d88625
Binary files /dev/null and b/img/misc/winter_apng/kylar_manor_day.apng differ
diff --git a/img/misc/winter_apng/kylar_manor_dusk.apng b/img/misc/winter_apng/kylar_manor_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..40dc4c21741d94b73acf3cab41c110981da771d2
Binary files /dev/null and b/img/misc/winter_apng/kylar_manor_dusk.apng differ
diff --git a/img/misc/winter_apng/kylar_manor_night.apng b/img/misc/winter_apng/kylar_manor_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..1d7b621d9ae5ded8a3732c96fa4447620876e1e3
Binary files /dev/null and b/img/misc/winter_apng/kylar_manor_night.apng differ
diff --git a/img/misc/winter_apng/lake_bloodmoon.apng b/img/misc/winter_apng/lake_bloodmoon.apng
new file mode 100644
index 0000000000000000000000000000000000000000..ea1248f6ffc56421ddd7584ecbda1b84e4a7dbe6
Binary files /dev/null and b/img/misc/winter_apng/lake_bloodmoon.apng differ
diff --git a/img/misc/winter_apng/lake_dawn.apng b/img/misc/winter_apng/lake_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..7ce5f744deb1016e86b0c8cf54a8acc32762783d
Binary files /dev/null and b/img/misc/winter_apng/lake_dawn.apng differ
diff --git a/img/misc/winter_apng/lake_day.apng b/img/misc/winter_apng/lake_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..c0165dd2e2f0863bbd30be2524efc04ec120cb53
Binary files /dev/null and b/img/misc/winter_apng/lake_day.apng differ
diff --git a/img/misc/winter_apng/lake_dusk.apng b/img/misc/winter_apng/lake_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..37c706210ba96b9c365b6ab538e012d4a6ccdf65
Binary files /dev/null and b/img/misc/winter_apng/lake_dusk.apng differ
diff --git a/img/misc/winter_apng/lake_night.apng b/img/misc/winter_apng/lake_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..999595f0f818469c0d54c2f8bcf7651c17b54c60
Binary files /dev/null and b/img/misc/winter_apng/lake_night.apng differ
diff --git a/img/misc/winter_apng/landfill_dawn.apng b/img/misc/winter_apng/landfill_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..d73817f6801bba89ec13262225c4ddc1812f20ca
Binary files /dev/null and b/img/misc/winter_apng/landfill_dawn.apng differ
diff --git a/img/misc/winter_apng/landfill_day.apng b/img/misc/winter_apng/landfill_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..7d30c547a5269fd5706ef07ce316f7aadd81ec3a
Binary files /dev/null and b/img/misc/winter_apng/landfill_day.apng differ
diff --git a/img/misc/winter_apng/landfill_dusk.apng b/img/misc/winter_apng/landfill_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..d11ff290a58aaa1b345cb29acb68a9be7f99b916
Binary files /dev/null and b/img/misc/winter_apng/landfill_dusk.apng differ
diff --git a/img/misc/winter_apng/landfill_night.apng b/img/misc/winter_apng/landfill_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..03a547aaffa3a2ae06f020b93bbeee0fe9b26709
Binary files /dev/null and b/img/misc/winter_apng/landfill_night.apng differ
diff --git a/img/misc/winter_apng/meadow_dawn.apng b/img/misc/winter_apng/meadow_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..3d285409ba353b3c5a88ed9d292ec053d544519c
Binary files /dev/null and b/img/misc/winter_apng/meadow_dawn.apng differ
diff --git a/img/misc/winter_apng/meadow_day.apng b/img/misc/winter_apng/meadow_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..e706881011b928a770b263bb028be42123047834
Binary files /dev/null and b/img/misc/winter_apng/meadow_day.apng differ
diff --git a/img/misc/winter_apng/meadow_dusk.apng b/img/misc/winter_apng/meadow_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..f571f8b20e3a17807c3f096375f0a42a79f88617
Binary files /dev/null and b/img/misc/winter_apng/meadow_dusk.apng differ
diff --git a/img/misc/winter_apng/meadow_night.apng b/img/misc/winter_apng/meadow_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..cfa0341b236968174cafce0df433a5044d4533dd
Binary files /dev/null and b/img/misc/winter_apng/meadow_night.apng differ
diff --git a/img/misc/winter_apng/moor_dawn.apng b/img/misc/winter_apng/moor_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..3e2bad8182c4d2f1ee29226a69f483ba0f7a3243
Binary files /dev/null and b/img/misc/winter_apng/moor_dawn.apng differ
diff --git a/img/misc/winter_apng/moor_day.apng b/img/misc/winter_apng/moor_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..f4540cdd79eb65213f988e853844895d5f247920
Binary files /dev/null and b/img/misc/winter_apng/moor_day.apng differ
diff --git a/img/misc/winter_apng/moor_dusk.apng b/img/misc/winter_apng/moor_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..a81a19bef3fead322b6ba98637d25c4a828ed308
Binary files /dev/null and b/img/misc/winter_apng/moor_dusk.apng differ
diff --git a/img/misc/winter_apng/moor_night.apng b/img/misc/winter_apng/moor_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b4c36eabcbca230da18073ce1890f2989693d1ec
Binary files /dev/null and b/img/misc/winter_apng/moor_night.apng differ
diff --git a/img/misc/winter_apng/museum_dawn.apng b/img/misc/winter_apng/museum_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..f7b453eacd8b26d50c57c2ab892b022fdb13b88f
Binary files /dev/null and b/img/misc/winter_apng/museum_dawn.apng differ
diff --git a/img/misc/winter_apng/museum_day.apng b/img/misc/winter_apng/museum_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..017d79049ecbec0e40f6c2c7e760de30f1bf4136
Binary files /dev/null and b/img/misc/winter_apng/museum_day.apng differ
diff --git a/img/misc/winter_apng/museum_dusk.apng b/img/misc/winter_apng/museum_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..f7b453eacd8b26d50c57c2ab892b022fdb13b88f
Binary files /dev/null and b/img/misc/winter_apng/museum_dusk.apng differ
diff --git a/img/misc/winter_apng/museum_night.apng b/img/misc/winter_apng/museum_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..ebc3fcc829a79e6e932adc2767c8f66584d955b3
Binary files /dev/null and b/img/misc/winter_apng/museum_night.apng differ
diff --git a/img/misc/winter_apng/night_monster_lair_dawn.apng b/img/misc/winter_apng/night_monster_lair_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..9af7b8b4ddc2bd1d5ab75120061145c9b87e362f
Binary files /dev/null and b/img/misc/winter_apng/night_monster_lair_dawn.apng differ
diff --git a/img/misc/winter_apng/night_monster_lair_day.apng b/img/misc/winter_apng/night_monster_lair_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..304a2da80dbbb7c19a961ba544c6f66c2ac0ab52
Binary files /dev/null and b/img/misc/winter_apng/night_monster_lair_day.apng differ
diff --git a/img/misc/winter_apng/night_monster_lair_dusk.apng b/img/misc/winter_apng/night_monster_lair_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..2de5d31f8472d9dfeb52b52a9db4e7d0e3aaf585
Binary files /dev/null and b/img/misc/winter_apng/night_monster_lair_dusk.apng differ
diff --git a/img/misc/winter_apng/night_monster_lair_night.apng b/img/misc/winter_apng/night_monster_lair_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..44d982f9a4ff8e7f5baba8129fc812b9b6c34fc7
Binary files /dev/null and b/img/misc/winter_apng/night_monster_lair_night.apng differ
diff --git a/img/misc/winter_apng/ocean_dawn.apng b/img/misc/winter_apng/ocean_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..8e4c6f47fc632da607753f9f624d0dd8ee1c5e48
Binary files /dev/null and b/img/misc/winter_apng/ocean_dawn.apng differ
diff --git a/img/misc/winter_apng/ocean_day.apng b/img/misc/winter_apng/ocean_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..37925fe05fae37d66e768f9295181e7356c619c5
Binary files /dev/null and b/img/misc/winter_apng/ocean_day.apng differ
diff --git a/img/misc/winter_apng/ocean_dusk.apng b/img/misc/winter_apng/ocean_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..2b5cd165d46253d447ef771bfcb509962244ee89
Binary files /dev/null and b/img/misc/winter_apng/ocean_dusk.apng differ
diff --git a/img/misc/winter_apng/ocean_night.apng b/img/misc/winter_apng/ocean_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..a2e831e756759973f52eb52448d0a591c24d0b56
Binary files /dev/null and b/img/misc/winter_apng/ocean_night.apng differ
diff --git a/img/misc/winter_apng/office_dawn.apng b/img/misc/winter_apng/office_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..7f2ce291d4e11a829a1c2aac7d9fb5226ae0611c
Binary files /dev/null and b/img/misc/winter_apng/office_dawn.apng differ
diff --git a/img/misc/winter_apng/office_day.apng b/img/misc/winter_apng/office_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..dda6561e2d7b5bf9df876f1b9fb06fbc099fb452
Binary files /dev/null and b/img/misc/winter_apng/office_day.apng differ
diff --git a/img/misc/winter_apng/office_dusk.apng b/img/misc/winter_apng/office_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..dda6561e2d7b5bf9df876f1b9fb06fbc099fb452
Binary files /dev/null and b/img/misc/winter_apng/office_dusk.apng differ
diff --git a/img/misc/winter_apng/office_night.apng b/img/misc/winter_apng/office_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..c08ee72aecf0206a9c04d0000826aa7a5506f413
Binary files /dev/null and b/img/misc/winter_apng/office_night.apng differ
diff --git a/img/misc/winter_apng/park_dawn.apng b/img/misc/winter_apng/park_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..db1089a542698f0ad9cabc3bb29e3e4daca3bedc
Binary files /dev/null and b/img/misc/winter_apng/park_dawn.apng differ
diff --git a/img/misc/winter_apng/park_day.apng b/img/misc/winter_apng/park_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..136cb7103630e30fe3929a5a3323a31d587f14fe
Binary files /dev/null and b/img/misc/winter_apng/park_day.apng differ
diff --git a/img/misc/winter_apng/park_dusk.apng b/img/misc/winter_apng/park_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..91534c878689cdaf9e3a0d4f61524aa7e3c6d29f
Binary files /dev/null and b/img/misc/winter_apng/park_dusk.apng differ
diff --git a/img/misc/winter_apng/park_night.apng b/img/misc/winter_apng/park_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..c78066e6fb694db8fb6f86d599050cecc2c98a02
Binary files /dev/null and b/img/misc/winter_apng/park_night.apng differ
diff --git a/img/misc/winter_apng/police_station_dawn.apng b/img/misc/winter_apng/police_station_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..82537488f3c2dbc5d4a5950b3a9b55948a0e7295
Binary files /dev/null and b/img/misc/winter_apng/police_station_dawn.apng differ
diff --git a/img/misc/winter_apng/police_station_day.apng b/img/misc/winter_apng/police_station_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..d789b7d214d2748ebfb258bcfd75496a5d3c5da7
Binary files /dev/null and b/img/misc/winter_apng/police_station_day.apng differ
diff --git a/img/misc/winter_apng/police_station_dusk.apng b/img/misc/winter_apng/police_station_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..8285b714848acbe9ead71f918458935f1f32f9f6
Binary files /dev/null and b/img/misc/winter_apng/police_station_dusk.apng differ
diff --git a/img/misc/winter_apng/police_station_night.apng b/img/misc/winter_apng/police_station_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..d4c0eed0fd05357d71d86481df3189e002e45660
Binary files /dev/null and b/img/misc/winter_apng/police_station_night.apng differ
diff --git a/img/misc/winter_apng/pool_dawn.apng b/img/misc/winter_apng/pool_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..ecd153d3643b9047e06da1bcccbc5cbaab3f3a34
Binary files /dev/null and b/img/misc/winter_apng/pool_dawn.apng differ
diff --git a/img/misc/winter_apng/pool_day.apng b/img/misc/winter_apng/pool_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..f863dce158275ecc321894117a198185e410be4e
Binary files /dev/null and b/img/misc/winter_apng/pool_day.apng differ
diff --git a/img/misc/winter_apng/pool_dusk.apng b/img/misc/winter_apng/pool_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..37e55b2d7f6605b960d66d238858c49774cdbe10
Binary files /dev/null and b/img/misc/winter_apng/pool_dusk.apng differ
diff --git a/img/misc/winter_apng/pool_night.apng b/img/misc/winter_apng/pool_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..2b126a996f207c08348e71fda8f716e7bba4bf9f
Binary files /dev/null and b/img/misc/winter_apng/pool_night.apng differ
diff --git a/img/misc/winter_apng/prison_bloodmoon.apng b/img/misc/winter_apng/prison_bloodmoon.apng
new file mode 100644
index 0000000000000000000000000000000000000000..49c1d4d0f8855a552a37d327c580b335c416ae27
Binary files /dev/null and b/img/misc/winter_apng/prison_bloodmoon.apng differ
diff --git a/img/misc/winter_apng/prison_dawn.apng b/img/misc/winter_apng/prison_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..2eae6c92d39e4c6ff4a57f9f1c98c9330475b25b
Binary files /dev/null and b/img/misc/winter_apng/prison_dawn.apng differ
diff --git a/img/misc/winter_apng/prison_day.apng b/img/misc/winter_apng/prison_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..9e74907bd9bd0f91948ab9fe6cdad25594f04e65
Binary files /dev/null and b/img/misc/winter_apng/prison_day.apng differ
diff --git a/img/misc/winter_apng/prison_dusk.apng b/img/misc/winter_apng/prison_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..83ea4c5923bb3f6cc1e9846bdd477294b133e988
Binary files /dev/null and b/img/misc/winter_apng/prison_dusk.apng differ
diff --git a/img/misc/winter_apng/prison_night.apng b/img/misc/winter_apng/prison_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..77b14382c813ed572c690e1fb77232930e770ecd
Binary files /dev/null and b/img/misc/winter_apng/prison_night.apng differ
diff --git a/img/misc/winter_apng/promenade_beach_dawn.apng b/img/misc/winter_apng/promenade_beach_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..e6d16a0596ae9858d06980761828fe3a5411f0e2
Binary files /dev/null and b/img/misc/winter_apng/promenade_beach_dawn.apng differ
diff --git a/img/misc/winter_apng/promenade_beach_day.apng b/img/misc/winter_apng/promenade_beach_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..66a2ea74e9bce31a4739acb988a90c39f5bb8f52
Binary files /dev/null and b/img/misc/winter_apng/promenade_beach_day.apng differ
diff --git a/img/misc/winter_apng/promenade_beach_dusk.apng b/img/misc/winter_apng/promenade_beach_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..5555349dcbbb1cd0b944745b8f575c96987ef166
Binary files /dev/null and b/img/misc/winter_apng/promenade_beach_dusk.apng differ
diff --git a/img/misc/winter_apng/promenade_beach_night.apng b/img/misc/winter_apng/promenade_beach_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..5c69987eed9dc9e2a9eb03f4ca7d4983b9032bc8
Binary files /dev/null and b/img/misc/winter_apng/promenade_beach_night.apng differ
diff --git a/img/misc/winter_apng/pub_dawn.apng b/img/misc/winter_apng/pub_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..34155ebf5cb818acc3be3dcbd6eb6e099b8752c5
Binary files /dev/null and b/img/misc/winter_apng/pub_dawn.apng differ
diff --git a/img/misc/winter_apng/pub_day.apng b/img/misc/winter_apng/pub_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..c9403b4176138b1bd122c5fab646c67f58553a98
Binary files /dev/null and b/img/misc/winter_apng/pub_day.apng differ
diff --git a/img/misc/winter_apng/pub_dusk.apng b/img/misc/winter_apng/pub_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..c9403b4176138b1bd122c5fab646c67f58553a98
Binary files /dev/null and b/img/misc/winter_apng/pub_dusk.apng differ
diff --git a/img/misc/winter_apng/pub_night.apng b/img/misc/winter_apng/pub_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..10b9180de993e2c54ec5baefdf7b0d657fc33a16
Binary files /dev/null and b/img/misc/winter_apng/pub_night.apng differ
diff --git a/img/misc/winter_apng/remy_farm_dawn.apng b/img/misc/winter_apng/remy_farm_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..f8b5d9862785ebc75188f9b6e528e850d3377bc9
Binary files /dev/null and b/img/misc/winter_apng/remy_farm_dawn.apng differ
diff --git a/img/misc/winter_apng/remy_farm_day.apng b/img/misc/winter_apng/remy_farm_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..80a5cae2903bcaa3678573f8b56c550aff0ac016
Binary files /dev/null and b/img/misc/winter_apng/remy_farm_day.apng differ
diff --git a/img/misc/winter_apng/remy_farm_dusk.apng b/img/misc/winter_apng/remy_farm_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..7e7bffac7129e0120963a24aacf58300fd9a3afb
Binary files /dev/null and b/img/misc/winter_apng/remy_farm_dusk.apng differ
diff --git a/img/misc/winter_apng/remy_farm_night.apng b/img/misc/winter_apng/remy_farm_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..780a8f57b02b09ed417a738e02477dc01a344e18
Binary files /dev/null and b/img/misc/winter_apng/remy_farm_night.apng differ
diff --git a/img/misc/winter_apng/resi_alley_bloodmoon.apng b/img/misc/winter_apng/resi_alley_bloodmoon.apng
new file mode 100644
index 0000000000000000000000000000000000000000..e0c10705955706638b67e36c334a911aae256a60
Binary files /dev/null and b/img/misc/winter_apng/resi_alley_bloodmoon.apng differ
diff --git a/img/misc/winter_apng/resi_alley_dawn.apng b/img/misc/winter_apng/resi_alley_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..41929d63246d3f69b3ebce9d891f33d1afd2bad0
Binary files /dev/null and b/img/misc/winter_apng/resi_alley_dawn.apng differ
diff --git a/img/misc/winter_apng/resi_alley_day.apng b/img/misc/winter_apng/resi_alley_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..cf54674cbe17901a23c80f330de06ee8914fae15
Binary files /dev/null and b/img/misc/winter_apng/resi_alley_day.apng differ
diff --git a/img/misc/winter_apng/resi_alley_dusk.apng b/img/misc/winter_apng/resi_alley_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..59a71f3ff3b7ac2ff634510f21f56fbf9c0ba93d
Binary files /dev/null and b/img/misc/winter_apng/resi_alley_dusk.apng differ
diff --git a/img/misc/winter_apng/resi_alley_night.apng b/img/misc/winter_apng/resi_alley_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..eba15d07664cbe77035947518f8f572b4ad46a4e
Binary files /dev/null and b/img/misc/winter_apng/resi_alley_night.apng differ
diff --git a/img/misc/winter_apng/riding_school_dawn.apng b/img/misc/winter_apng/riding_school_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..f6db0462676fb1bb321a7d5f4e0a3d3bd8bb7cf8
Binary files /dev/null and b/img/misc/winter_apng/riding_school_dawn.apng differ
diff --git a/img/misc/winter_apng/riding_school_day.apng b/img/misc/winter_apng/riding_school_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b10311404ee9976efef82ccdee4b0620879afe00
Binary files /dev/null and b/img/misc/winter_apng/riding_school_day.apng differ
diff --git a/img/misc/winter_apng/riding_school_dusk.apng b/img/misc/winter_apng/riding_school_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..794412405669d1d29c3920d4cbb16ef8a961841d
Binary files /dev/null and b/img/misc/winter_apng/riding_school_dusk.apng differ
diff --git a/img/misc/winter_apng/riding_school_night.apng b/img/misc/winter_apng/riding_school_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..141249cb4c4f89f1f8d1c70d3b51deb52d4eec29
Binary files /dev/null and b/img/misc/winter_apng/riding_school_night.apng differ
diff --git a/img/misc/winter_apng/ruins_bloodmoon.apng b/img/misc/winter_apng/ruins_bloodmoon.apng
new file mode 100644
index 0000000000000000000000000000000000000000..0b67c3db42dceed4dfd11ddd97b28d965bb9cc46
Binary files /dev/null and b/img/misc/winter_apng/ruins_bloodmoon.apng differ
diff --git a/img/misc/winter_apng/ruins_dawn.apng b/img/misc/winter_apng/ruins_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..4fbb86b0f3ed914afa324e18668a607251a3d615
Binary files /dev/null and b/img/misc/winter_apng/ruins_dawn.apng differ
diff --git a/img/misc/winter_apng/ruins_day.apng b/img/misc/winter_apng/ruins_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..95081ca39066c2d1f3ed4d4bde340b2de7d2dc03
Binary files /dev/null and b/img/misc/winter_apng/ruins_day.apng differ
diff --git a/img/misc/winter_apng/ruins_dusk.apng b/img/misc/winter_apng/ruins_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..8ccdceb7cc6653e9484719749f3527d91b0cc1a4
Binary files /dev/null and b/img/misc/winter_apng/ruins_dusk.apng differ
diff --git a/img/misc/winter_apng/ruins_night.apng b/img/misc/winter_apng/ruins_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..31bc6ed2ead853ffe7fdbcb189c675a293c5c589
Binary files /dev/null and b/img/misc/winter_apng/ruins_night.apng differ
diff --git a/img/misc/winter_apng/school_dawn.apng b/img/misc/winter_apng/school_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..75293ef304e26e73c1a175b5b36a93acf2598f3d
Binary files /dev/null and b/img/misc/winter_apng/school_dawn.apng differ
diff --git a/img/misc/winter_apng/school_day.apng b/img/misc/winter_apng/school_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..d12dabec0decb548678359aa559b1628b79a3fca
Binary files /dev/null and b/img/misc/winter_apng/school_day.apng differ
diff --git a/img/misc/winter_apng/school_dusk.apng b/img/misc/winter_apng/school_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..d12dabec0decb548678359aa559b1628b79a3fca
Binary files /dev/null and b/img/misc/winter_apng/school_dusk.apng differ
diff --git a/img/misc/winter_apng/school_night.apng b/img/misc/winter_apng/school_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..67ab1f4fe1a2d028b2e1d726d26ecd92040a9148
Binary files /dev/null and b/img/misc/winter_apng/school_night.apng differ
diff --git a/img/misc/winter_apng/sepulchre_dawn.apng b/img/misc/winter_apng/sepulchre_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..588adf5a0bcc8876c6b5fccf163f0c330e79a7b7
Binary files /dev/null and b/img/misc/winter_apng/sepulchre_dawn.apng differ
diff --git a/img/misc/winter_apng/sepulchre_day.apng b/img/misc/winter_apng/sepulchre_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..7a5e5badee61c9279a70a7d085597abd70010e0f
Binary files /dev/null and b/img/misc/winter_apng/sepulchre_day.apng differ
diff --git a/img/misc/winter_apng/sepulchre_dusk.apng b/img/misc/winter_apng/sepulchre_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..7aed1166ef3b9d21cb1471d72e45792dc7804afc
Binary files /dev/null and b/img/misc/winter_apng/sepulchre_dusk.apng differ
diff --git a/img/misc/winter_apng/sepulchre_night.apng b/img/misc/winter_apng/sepulchre_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..6ff6e1cb16710e3420faab289085d16e01e0165f
Binary files /dev/null and b/img/misc/winter_apng/sepulchre_night.apng differ
diff --git a/img/misc/winter_apng/sewers_dawn.apng b/img/misc/winter_apng/sewers_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..aa8da9aae81976b46ed6e57d80ea4b5637f75955
Binary files /dev/null and b/img/misc/winter_apng/sewers_dawn.apng differ
diff --git a/img/misc/winter_apng/sewers_day.apng b/img/misc/winter_apng/sewers_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..a15659f3fb83896eca9a438ffde769f9c3a9fd34
Binary files /dev/null and b/img/misc/winter_apng/sewers_day.apng differ
diff --git a/img/misc/winter_apng/sewers_dusk.apng b/img/misc/winter_apng/sewers_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..a15659f3fb83896eca9a438ffde769f9c3a9fd34
Binary files /dev/null and b/img/misc/winter_apng/sewers_dusk.apng differ
diff --git a/img/misc/winter_apng/sewers_night.apng b/img/misc/winter_apng/sewers_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..7c26ffc6b6b79783481dc63c2af4eff80a31419f
Binary files /dev/null and b/img/misc/winter_apng/sewers_night.apng differ
diff --git a/img/misc/winter_apng/sex_shop_dawn.apng b/img/misc/winter_apng/sex_shop_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..1983d403d9f82283a374d72c4de57e1b435831df
Binary files /dev/null and b/img/misc/winter_apng/sex_shop_dawn.apng differ
diff --git a/img/misc/winter_apng/sex_shop_day.apng b/img/misc/winter_apng/sex_shop_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..1f747a1aad2b61b65b0bf7fe9474140ff68bf500
Binary files /dev/null and b/img/misc/winter_apng/sex_shop_day.apng differ
diff --git a/img/misc/winter_apng/sex_shop_day_open.apng b/img/misc/winter_apng/sex_shop_day_open.apng
new file mode 100644
index 0000000000000000000000000000000000000000..fcae8d2eeea3fde990a8b334a9597657b1c41a35
Binary files /dev/null and b/img/misc/winter_apng/sex_shop_day_open.apng differ
diff --git a/img/misc/winter_apng/sex_shop_dusk.apng b/img/misc/winter_apng/sex_shop_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..86a9010f049d12074a1b51d794bb9670e82ffb44
Binary files /dev/null and b/img/misc/winter_apng/sex_shop_dusk.apng differ
diff --git a/img/misc/winter_apng/sex_shop_night.apng b/img/misc/winter_apng/sex_shop_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..60aecc8adfd9bfdf349567ba8cf539b4c1e32992
Binary files /dev/null and b/img/misc/winter_apng/sex_shop_night.apng differ
diff --git a/img/misc/winter_apng/shopping_centre_dawn.apng b/img/misc/winter_apng/shopping_centre_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..02cd716741155bcedd6d2057a598c8da97c1ff1d
Binary files /dev/null and b/img/misc/winter_apng/shopping_centre_dawn.apng differ
diff --git a/img/misc/winter_apng/shopping_centre_day.apng b/img/misc/winter_apng/shopping_centre_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..67fd9ed433a67c3477ccabd2bcd4fae62695fd36
Binary files /dev/null and b/img/misc/winter_apng/shopping_centre_day.apng differ
diff --git a/img/misc/winter_apng/shopping_centre_dusk.apng b/img/misc/winter_apng/shopping_centre_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..e57b2062a79a22b200dbf7be70acf6c666647a73
Binary files /dev/null and b/img/misc/winter_apng/shopping_centre_dusk.apng differ
diff --git a/img/misc/winter_apng/shopping_centre_night.apng b/img/misc/winter_apng/shopping_centre_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..68e11d480ec8dd0d829e5fae2a627c68c49e460c
Binary files /dev/null and b/img/misc/winter_apng/shopping_centre_night.apng differ
diff --git a/img/misc/winter_apng/spa_dawn.apng b/img/misc/winter_apng/spa_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..10942cae403c10821177e5627c87a3d56a5435b1
Binary files /dev/null and b/img/misc/winter_apng/spa_dawn.apng differ
diff --git a/img/misc/winter_apng/spa_day.apng b/img/misc/winter_apng/spa_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..f8fd8b9a77009367d76663671456d77e7b7cea17
Binary files /dev/null and b/img/misc/winter_apng/spa_day.apng differ
diff --git a/img/misc/winter_apng/spa_dusk.apng b/img/misc/winter_apng/spa_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..d22475d742e6d2bbf8eabb8d0836d7a564ada6fe
Binary files /dev/null and b/img/misc/winter_apng/spa_dusk.apng differ
diff --git a/img/misc/winter_apng/spa_night.apng b/img/misc/winter_apng/spa_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..36d5ebfb1fdcb74f647eb398da0d6859465ca249
Binary files /dev/null and b/img/misc/winter_apng/spa_night.apng differ
diff --git a/img/misc/winter_apng/strip_club_dawn.apng b/img/misc/winter_apng/strip_club_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..be73c857a92b958821330f957e453a25dfa80ba0
Binary files /dev/null and b/img/misc/winter_apng/strip_club_dawn.apng differ
diff --git a/img/misc/winter_apng/strip_club_day.apng b/img/misc/winter_apng/strip_club_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..be73c857a92b958821330f957e453a25dfa80ba0
Binary files /dev/null and b/img/misc/winter_apng/strip_club_day.apng differ
diff --git a/img/misc/winter_apng/strip_club_dusk.apng b/img/misc/winter_apng/strip_club_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..be73c857a92b958821330f957e453a25dfa80ba0
Binary files /dev/null and b/img/misc/winter_apng/strip_club_dusk.apng differ
diff --git a/img/misc/winter_apng/strip_club_night.apng b/img/misc/winter_apng/strip_club_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..53f95fd393d24dc72acb61c22b8421ff0839c931
Binary files /dev/null and b/img/misc/winter_apng/strip_club_night.apng differ
diff --git a/img/misc/winter_apng/temple_dawn.apng b/img/misc/winter_apng/temple_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..d2588c61e10b39ca9b22eb750d72900e3f14dd73
Binary files /dev/null and b/img/misc/winter_apng/temple_dawn.apng differ
diff --git a/img/misc/winter_apng/temple_dawn_old.apng b/img/misc/winter_apng/temple_dawn_old.apng
new file mode 100644
index 0000000000000000000000000000000000000000..8e282bce490939b46ebdd69e7927952f011139c5
Binary files /dev/null and b/img/misc/winter_apng/temple_dawn_old.apng differ
diff --git a/img/misc/winter_apng/temple_day.apng b/img/misc/winter_apng/temple_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..9b8f70d7ee5f9ef263397c89b634c4f0be0605e4
Binary files /dev/null and b/img/misc/winter_apng/temple_day.apng differ
diff --git a/img/misc/winter_apng/temple_day_old.apng b/img/misc/winter_apng/temple_day_old.apng
new file mode 100644
index 0000000000000000000000000000000000000000..ed02875e55144eba8e74f8e4e1cbb548a335eee6
Binary files /dev/null and b/img/misc/winter_apng/temple_day_old.apng differ
diff --git a/img/misc/winter_apng/temple_dusk.apng b/img/misc/winter_apng/temple_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..76f966313e2fabc442ea43a2ca4e94121e1a732a
Binary files /dev/null and b/img/misc/winter_apng/temple_dusk.apng differ
diff --git a/img/misc/winter_apng/temple_dusk_old.apng b/img/misc/winter_apng/temple_dusk_old.apng
new file mode 100644
index 0000000000000000000000000000000000000000..eb66c00608a75363cbbb48dff28c486dd3e04d82
Binary files /dev/null and b/img/misc/winter_apng/temple_dusk_old.apng differ
diff --git a/img/misc/winter_apng/temple_night.apng b/img/misc/winter_apng/temple_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..dac9c7b3b514c53bd50947978d359c792175c15c
Binary files /dev/null and b/img/misc/winter_apng/temple_night.apng differ
diff --git a/img/misc/winter_apng/temple_night_old.apng b/img/misc/winter_apng/temple_night_old.apng
new file mode 100644
index 0000000000000000000000000000000000000000..1be77d174562692a2264346842d82277b1fb6a53
Binary files /dev/null and b/img/misc/winter_apng/temple_night_old.apng differ
diff --git a/img/misc/winter_apng/tentacles_dawn.apng b/img/misc/winter_apng/tentacles_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..4a81f0149d2c12a01dfc3a34920b17a239333f09
Binary files /dev/null and b/img/misc/winter_apng/tentacles_dawn.apng differ
diff --git a/img/misc/winter_apng/tentacles_day.apng b/img/misc/winter_apng/tentacles_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..4a81f0149d2c12a01dfc3a34920b17a239333f09
Binary files /dev/null and b/img/misc/winter_apng/tentacles_day.apng differ
diff --git a/img/misc/winter_apng/tentacles_dusk.apng b/img/misc/winter_apng/tentacles_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..4a81f0149d2c12a01dfc3a34920b17a239333f09
Binary files /dev/null and b/img/misc/winter_apng/tentacles_dusk.apng differ
diff --git a/img/misc/winter_apng/tentacles_night.apng b/img/misc/winter_apng/tentacles_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..4a81f0149d2c12a01dfc3a34920b17a239333f09
Binary files /dev/null and b/img/misc/winter_apng/tentacles_night.apng differ
diff --git a/img/misc/winter_apng/tower_bloodmoon.apng b/img/misc/winter_apng/tower_bloodmoon.apng
new file mode 100644
index 0000000000000000000000000000000000000000..d2fa33fad34773a3cf7a88046dc87e2283a92345
Binary files /dev/null and b/img/misc/winter_apng/tower_bloodmoon.apng differ
diff --git a/img/misc/winter_apng/tower_dawn.apng b/img/misc/winter_apng/tower_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..900d135686990d7f01b9eb89d484c6aa6ec7298b
Binary files /dev/null and b/img/misc/winter_apng/tower_dawn.apng differ
diff --git a/img/misc/winter_apng/tower_day.apng b/img/misc/winter_apng/tower_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..a24419d57c890f2abad2659f47f1278a5172e229
Binary files /dev/null and b/img/misc/winter_apng/tower_day.apng differ
diff --git a/img/misc/winter_apng/tower_dusk.apng b/img/misc/winter_apng/tower_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..fa8133928c161e9da195a4cf16730d329d05df89
Binary files /dev/null and b/img/misc/winter_apng/tower_dusk.apng differ
diff --git a/img/misc/winter_apng/tower_night.apng b/img/misc/winter_apng/tower_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..2d33e6e4bd88749882038e2b6fc4269fcd0da7b9
Binary files /dev/null and b/img/misc/winter_apng/tower_night.apng differ
diff --git a/img/misc/winter_apng/town_dawn.apng b/img/misc/winter_apng/town_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..240a30f3490770b0c5936c84c104de3c504e37fd
Binary files /dev/null and b/img/misc/winter_apng/town_dawn.apng differ
diff --git a/img/misc/winter_apng/town_day.apng b/img/misc/winter_apng/town_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..ddda9d4b697dca79330fb821bf4f069d926c1b24
Binary files /dev/null and b/img/misc/winter_apng/town_day.apng differ
diff --git a/img/misc/winter_apng/town_dusk.apng b/img/misc/winter_apng/town_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..5192ea863300124cfa34d69e24b2577ab4decacb
Binary files /dev/null and b/img/misc/winter_apng/town_dusk.apng differ
diff --git a/img/misc/winter_apng/town_night.apng b/img/misc/winter_apng/town_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..1fc95634757d0b606e54ade5dda03b4ca533d5f2
Binary files /dev/null and b/img/misc/winter_apng/town_night.apng differ
diff --git a/img/misc/winter_apng/underground_dawn.apng b/img/misc/winter_apng/underground_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..00b08295ad6bfd81f69cfa0069145be2e05499d2
Binary files /dev/null and b/img/misc/winter_apng/underground_dawn.apng differ
diff --git a/img/misc/winter_apng/underground_day.apng b/img/misc/winter_apng/underground_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..ccfea7a56a29f1a7ed82e34c2ba8589dbcf5cdd9
Binary files /dev/null and b/img/misc/winter_apng/underground_day.apng differ
diff --git a/img/misc/winter_apng/underground_dusk.apng b/img/misc/winter_apng/underground_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..2ed0e29f222930cf01f34a4fd9162138ed451e05
Binary files /dev/null and b/img/misc/winter_apng/underground_dusk.apng differ
diff --git a/img/misc/winter_apng/underground_night.apng b/img/misc/winter_apng/underground_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..b3b1a20cd820daf5aa3fb16874cb2ba9282f7e19
Binary files /dev/null and b/img/misc/winter_apng/underground_night.apng differ
diff --git a/img/misc/winter_apng/wolf_cave_dawn.apng b/img/misc/winter_apng/wolf_cave_dawn.apng
new file mode 100644
index 0000000000000000000000000000000000000000..68de6e73d820346b5ae52e3a6c6c7e107eeff99b
Binary files /dev/null and b/img/misc/winter_apng/wolf_cave_dawn.apng differ
diff --git a/img/misc/winter_apng/wolf_cave_day.apng b/img/misc/winter_apng/wolf_cave_day.apng
new file mode 100644
index 0000000000000000000000000000000000000000..d4c6dd09e53162b8c7fc09d262842a781b904bf9
Binary files /dev/null and b/img/misc/winter_apng/wolf_cave_day.apng differ
diff --git a/img/misc/winter_apng/wolf_cave_dusk.apng b/img/misc/winter_apng/wolf_cave_dusk.apng
new file mode 100644
index 0000000000000000000000000000000000000000..d4c6dd09e53162b8c7fc09d262842a781b904bf9
Binary files /dev/null and b/img/misc/winter_apng/wolf_cave_dusk.apng differ
diff --git a/img/misc/winter_apng/wolf_cave_night.apng b/img/misc/winter_apng/wolf_cave_night.apng
new file mode 100644
index 0000000000000000000000000000000000000000..20be07a81f78a073e70bb36dcfc479ac1efe2ee8
Binary files /dev/null and b/img/misc/winter_apng/wolf_cave_night.apng differ
diff --git a/img/misc/world_map.png b/img/misc/world_map.png
index 14db86d1aece37cf32c827cad4826dd9534bd525..753067ef31a5088f9ff41352453bacca5c2ec388 100644
Binary files a/img/misc/world_map.png and b/img/misc/world_map.png differ
diff --git a/img/misc/world_map_winter.png b/img/misc/world_map_winter.png
index 48bd4d45a57ddd551c0e4418edcef8c329ee1504..a732f23d83d7cfb2226a0615ae64a7948eaf25fc 100644
Binary files a/img/misc/world_map_winter.png and b/img/misc/world_map_winter.png differ
diff --git a/modules/css/base.css b/modules/css/base.css
index 5b8f49cd80f65480bf7226ec5db6393ce0d0cc30..fa2422deb5c67e478fa216cb52eced18b32efbaa 100644
--- a/modules/css/base.css
+++ b/modules/css/base.css
@@ -7804,3 +7804,75 @@ Built-in icons go from e800 - e84b. Click on 'show codes' to find the correspond
 #pregnancyFeatsDisabled {
 	margin: -10px 0 -5px;
 }
+.skybox,
+.skybox_dawn,
+.skybox_dawn_haze,
+.skybox_day,
+.skybox_day_haze,
+.skybox_dusk,
+.skybox_dusk_haze,
+.skybox_night,
+.skybox_night_haze,
+.skybox_bloodmoon,
+.skybox_bloodmoon_haze,
+.skybox_dawn_tentacle,
+.skybox_day_tentacle,
+.skybox_dusk_tentacle,
+.skybox_night_tentacle,
+.skybox_blank {
+	position: fixed;
+	left: 0;
+	z-index: 9;
+	user-select: none;
+	top: 0;
+	width: 64px;
+	height: 192px;
+}
+
+.skybox_dawn {
+	background-color: #fd7d01;
+}
+.skybox_dawn_haze {
+	background-image: linear-gradient(#fd7d01, #e5d397 65%);
+}
+.skybox_day {
+	background-color: #408aca;
+}
+.skybox_day_haze {
+	background-image: linear-gradient(#408aca, #d0ffea 65%);
+}
+.skybox_dusk {
+	background-color: #fad6a5;
+}
+.skybox_dusk_haze {
+	background-image: linear-gradient(#fad6a5, #d7a350 65%);
+}
+.skybox_night {
+	background-color: #280137;
+}
+.skybox_night_haze {
+	background-image: linear-gradient(#280137, #1a2753 65%);
+}
+.skybox_bloodmoon {
+	background-image: linear-gradient(#8b0804, #280137 20%);
+}
+.skybox_bloodmoon_haze {
+	background-image: linear-gradient(#8b0804, #280137 20%, #4f284e 65%);
+}
+
+.skybox_dawn_tentacle {
+	background-color: #44056d;
+}
+.skybox_day_tentacle {
+	background-color: #69159d;
+}
+.skybox_dusk_tentacle {
+	background-color: #550e81;
+}
+.skybox_night_tentacle {
+	background-color: #2e0854;
+}
+
+.skybox_blank {
+	background-color: #000000;
+}
diff --git a/modules/css/weather.css b/modules/css/weather.css
new file mode 100644
index 0000000000000000000000000000000000000000..bb611c796dbca650a1088df800534bc5337c210d
--- /dev/null
+++ b/modules/css/weather.css
@@ -0,0 +1,47 @@
+#skybox {
+	position: fixed;
+	left: 0;
+	z-index: 6;
+	user-select: none;
+	top: 0;
+	width: 64px;
+	height: 192px;
+	overflow: hidden;
+	background-color: #280137;
+}
+
+#starField {
+	position: relative;
+	z-index: 7;
+}
+
+#skybox-sunGlow {
+	position: absolute;
+	width: 64px;
+	height: 192px;
+	z-index: 12;
+}
+
+#skybox-location {
+	position: absolute;
+	width: 64px;
+	height: 192px;
+	z-index: 10;
+}
+
+#sun {
+	position: absolute;
+	display: block;
+	z-index: 8;
+}
+
+#moon {
+	position: absolute;
+	display: block;
+	z-index: 9;
+}
+
+#clouds {
+	position: absolute;
+	z-index: 10;
+}