diff --git a/src/events/RE/reMalefactor.js b/src/events/RE/reMalefactor.js
index 4376a466c098d34a8305532d52242099b6e143c8..c887f6b58c0326d7e8dab354c1b5617e4abdb27d 100644
--- a/src/events/RE/reMalefactor.js
+++ b/src/events/RE/reMalefactor.js
@@ -17,46 +17,46 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 	}
 
 	get weight() {
-		return (V.rep / 150) > (random(1, 100)) ? 2 : 1 // Chance to have doubled odds. 
+		return (V.rep / 150) > (random(1, 100)) ? 2 : 1; // Chance to have doubled odds.
 	}
 
 	execute(node) {
 		let r = [];
-		/**@type {FC.Race} */
+		/** @type {FC.Race} */
 		let _fakeRace;
-		/**@type {FC.Race} */
+		/** @type {FC.Race} */
 		let _realRace;
 		let malefactor;
-		V.nextButton = "Continue", V.nextLink = "RIE Eligibility Check", V.returnTo = "RIE Eligibility Check", V.encyclopedia = "Free Cities Justice";
-
-
-
-
-			const malefactorArray = ["addict", "whore"];
-			if (V.seeDicks !== 100) {
-				malefactorArray.push("businesswoman");
-				malefactorArray.push("liberator");
-				if (V.seePreg !== 0) {
-					malefactorArray.push("anchorBaby");
-					if (V.arcologies[0].FSRepopulationFocus < 50) {
-						malefactorArray.push("mule");
-						r.push(` /* blends right in */`);
-					}
+		V.nextButton = "Continue";
+		V.nextLink = "RIE Eligibility Check";
+		V.returnTo = "RIE Eligibility Check";
+		V.encyclopedia = "Free Cities Justice";
+
+		const malefactorArray = ["addict", "whore"];
+		if (V.seeDicks !== 100) {
+			malefactorArray.push("businesswoman");
+			malefactorArray.push("liberator");
+			if (V.seePreg !== 0) {
+				malefactorArray.push("anchorBaby");
+				if (V.arcologies[0].FSRepopulationFocus < 50) {
+					malefactorArray.push("mule");
+					r.push(` /* blends right in */`);
 				}
 			}
-			if (V.seeDicks !== 0) {
-				malefactorArray.push("rapist");
-			}
-			if (V.minimumSlaveAge <= 12) {
-				malefactorArray.push("orphanloli");
-			}
-			if (V.arcologies[0].FSPaternalist < 50) {
-				malefactorArray.push("escapee");
-			}
-			if (V.arcologies[0].FSSupremacistLawME + V.arcologies[0].FSSubjugationistLawME > 0) {
-				malefactorArray.push("passfail");
-			}
-			malefactor = malefactorArray.random();
+		}
+		if (V.seeDicks !== 0) {
+			malefactorArray.push("rapist");
+		}
+		if (V.minimumSlaveAge <= 12) {
+			malefactorArray.push("orphanloli");
+		}
+		if (V.arcologies[0].FSPaternalist < 50) {
+			malefactorArray.push("escapee");
+		}
+		if (V.arcologies[0].FSSupremacistLawME + V.arcologies[0].FSSubjugationistLawME > 0) {
+			malefactorArray.push("passfail");
+		}
+		malefactor = malefactorArray.random();
 
 		let _slave;
 		let _pram;
@@ -88,8 +88,9 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 				_slave.nipplesPiercing = 1;
 				_slave.clitPiercing = 1;
 				_slave.behavioralFlaw = "odd";
+				break;
 			case "escapee":
-				_slave = GenerateNewSlave(null, { disableDisability: 1 });
+				_slave = GenerateNewSlave(null, {disableDisability: 1});
 				_slave.origin = "You sentenced ${him} to enslavement as a punishment for suspected escapism.";
 				_slave.devotion = random(-75, -60);
 				_slave.trust = random(-15, 0);
@@ -115,8 +116,9 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 				_slave.skill.whoring = 0;
 				_slave.sexualFlaw = "hates penetration";
 				_slave.behavioralFlaw = "odd";
+				break;
 			case "anchorBaby":
-				_slave = GenerateNewSlave("XX", { disableDisability: 1, minAge: V.fertilityAge, maxAge: 42 });
+				_slave = GenerateNewSlave("XX", {disableDisability: 1, minAge: V.fertilityAge, maxAge: 42});
 				_slave.origin = "You sentenced ${him} to enslavement as a punishment for smuggling slaves within ${his} body.";
 				_slave.career = App.Data.Careers.General.uneducated.random();
 				_slave.devotion = random(-75, -50);
@@ -132,7 +134,8 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 				if (_slave.vagina < 2) {
 					_slave.vagina += 3;
 				}
-				_slave.bellySag = 3, _slave.bellySagPreg = 3;
+				_slave.bellySag = 3;
+				_slave.bellySagPreg = 3;
 				_slave.preg = 0;
 				_slave.pregWeek = -4;
 				_slave.counter.birthsTotal = 2;
@@ -142,8 +145,9 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 				_slave.skill.anal = 15;
 				_slave.sexualFlaw = "crude";
 				_slave.behavioralFlaw = "bitchy";
+				break;
 			case "orphanloli":
-				_slave = GenerateNewSlave(null, { minAge: V.minimumSlaveAge, maxAge: 12, disableDisability: 1 });
+				_slave = GenerateNewSlave(null, {minAge: V.minimumSlaveAge, maxAge: 12, disableDisability: 1});
 				_slave.origin = "You sentenced ${him} to enslavement as a punishment for suspected escapism.";
 				_slave.career = "an orphan";
 				_slave.devotion = random(-15, 0);
@@ -170,8 +174,11 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 				_slave.skill.whoring = 0;
 				_slave.sexualFlaw = "apathetic";
 				_slave.behavioralFlaw = "gluttonous";
+				break;
 			case "businesswoman":
-				_slave = GenerateNewSlave("XX", { disableDisability: 1, minAge: 35, maxAge: 45, race: "nonslave" });
+				_slave = GenerateNewSlave("XX", {
+					disableDisability: 1, minAge: 35, maxAge: 45, race: "nonslave"
+				});
 				_slave.origin = "You sentenced ${him} to enslavement as a punishment for fraud and theft.";
 				_slave.career = "a criminal businesswoman";
 				_slave.devotion = random(-75, -60);
@@ -192,8 +199,9 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 				_slave.behavioralFlaw = "arrogant";
 				_slave.hStyle = "fashionable for a Free Cities businesswoman, up in a tight bun";
 				_slave.custom.tattoo = "$He has a pretty floral tattoo along $his collarbone.";
+				break;
 			case "whore":
-				_slave = GenerateNewSlave(null, { disableDisability: 1, race: "nonslave" });
+				_slave = GenerateNewSlave(null, {disableDisability: 1, race: "nonslave"});
 				_slave.origin = "You sentenced ${him} to enslavement as a punishment for theft and battery.";
 				_slave.career = "a prostitute";
 				_slave.devotion = random(-75, -60);
@@ -227,8 +235,9 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 				_slave.sexualFlaw = "hates penetration";
 				_slave.hStyle = "strip";
 				_slave.custom.tattoo = "${He} has a teardrop tattooed under each eye.";
+				break;
 			case "rapist":
-				_slave = GenerateNewSlave("XY", { disableDisability: 1, minAge: 16, race: "nonslave" });
+				_slave = GenerateNewSlave("XY", {disableDisability: 1, minAge: 16, race: "nonslave"});
 				_slave.origin = "You sentenced ${him} to enslavement as a punishment for the rape of a free woman.";
 				_slave.devotion = random(-75, -60);
 				_slave.trust = random(-15, 0);
@@ -238,10 +247,12 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 				_slave.balls = random(2, 4);
 				_slave.skill.oral = 0;
 				_slave.skill.anal = 0;
-				_slave.behavioralFlaw = "arrogant"; 
-				_slave.sexualFlaw = "hates men";//TODO: Fixme: "hates men" is actually a behavior flaw, which is already set.
+				_slave.behavioralFlaw = "arrogant";
+				_slave.sexualFlaw = "hates men";// TODO: Fixme: "hates men" is actually a behavior flaw, which is already set.
+				break;
 			case "mule":
-				_pram = { disableDisability: 1, minAge: 13, race: "nonslave" };
+				_pram = new GenerateNewSlavePram;
+				Object.assign(_pram, {disableDisability: 1, minAge: 13, race: "nonslave"});
 				if (V.pedo_mode === 0) {
 					_pram.maxAge = 26;
 				}
@@ -265,10 +276,11 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 				_slave.boobShape = "perky";
 				setHealth(_slave, jsRandom(-20, 10), undefined, undefined, undefined, 40);
 				_slave.sexualFlaw = "hates penetration";
-				_slave.behavioralFlaw = "shamefast";
+				_slave.behavioralFlaw = "shamefast"; // TODO: fixme
 				_slave.accent = 0;
+				break;
 			case "liberator":
-				_slave = GenerateNewSlave("XX", { disableDisability: 1, minAge: random(12, 28), maxAge: 43 });
+				_slave = GenerateNewSlave("XX", {disableDisability: 1, minAge: random(12, 28), maxAge: 43});
 				_slave.origin = "You sentenced ${him} to enslavement as a punishment for attempted theft of a slave.";
 				_slave.career = "an antislavery activist";
 				_slave.devotion = random(-75, -60);
@@ -285,9 +297,10 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 				_slave.anus = 0;
 				setHealth(_slave, jsRandom(60, 80), undefined, undefined, 0, 10);
 				_slave.behavioralFlaw = "arrogant";
-				_slave.sexualFlaw = "hates men";
+				_slave.sexualFlaw = "hates men";// TODO: fixme
 				_slave.hStyle = "shaved into a mohawk";
-				_slave.custom.tattoo = "${He} seems to have had slave tattoos at one time, but has had them cheaply removed.";
+				_slave.custom.tattoo = "$He seems to have had slave tattoos at one time, but has had them cheaply removed.";
+				break;
 			case "passfail":
 				_pram = new GenerateNewSlavePram;
 				_pram.disableDisability = 1;
@@ -317,14 +330,19 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 				_slave.skin = randomRaceSkin(_fakeRace);
 				setEyeColor(_slave, randomRaceEye(_fakeRace));
 				_slave.hColor = randomRaceHair(_fakeRace);
-				_slave.override_Race = 1, _slave.override_Skin = 1, _slave.override_H_Color = 1, _slave.override_Eye_Color = 1;
+				_slave.override_Race = 1;
+				_slave.override_Skin = 1;
+				_slave.override_H_Color = 1;
+				_slave.override_Eye_Color = 1;
+				break;
 		}
 
 		const {
-			He, he, his, him, girl
+			He, His,
+			he, his, him, himself, girl, woman
 		} = getPronouns(_slave);
 
-
+		const {hisU} = getNonlocalPronouns(V.seeDicks).appendSuffix("U");
 		r.push(`${capFirstChar(V.assistant.name)} alerts you that a `);
 		if (malefactor === "mule") {
 			r.push(`potential `);
@@ -336,15 +354,17 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 
 		switch (malefactor) {
 			case "addict":
-				r.push(`Criminals are usually either too angry, too ignorant, or too stupid to understand the impossibility of successful petty crime. This is the latter situation; a ${girl} suffering severe aphrodisiac withdrawal has attempted to break into a store that sells the stuff. ${He}'s now lying `);
+				r.push(`Criminals are usually either too angry, too ignorant, or too stupid to understand the impossibility of successful petty crime. This is the latter situation; a ${girl} suffering severe aphrodisiac withdrawal has attempted to break into a store that sells the stuff. ${He}'s now lying`);
 				if (V.seePee === 1) {
 					r.push(`in a pool of ${his} own urine`);
 				} else {
 					r.push(`face-down on the pavement`);
 				}
 				r.push(`with a taser round stuck in ${his} ass; the drone responsible is hovering helpfully nearby, hitting ${him} with another shock whenever ${he} does more than twitch.`);
+				break;
 			case "escapee":
 				r.push(`This is a simple case of vagrancy; sleeping on the streets (due to penury rather than inebriation) breaks an implicit contract all visitors to the arcology sign by coming here. The criminal is anything but usual, however. ${He} bears signs of extreme hormone manipulation over a long period, and has had ${his} Achilles tendons clipped. Camera records show ${him} crawling in with a cargo shipment. ${He}'s clad in rags, and you cannot find any record of ${him} anywhere. The growing crowd is convinced ${he}'s an escaped slave, and is growing ugly.`);
+				break;
 			case "anchorBaby":
 				r.push(`This is likely another case of attempted escape by a slave or potentially a smuggling operation. The cause of detection is a steady stream of moaning emanating from a cargo container recently deposited into the arcology's cargo depot and has attracted a crowd of curious onlookers. Video feeds show the container being open and a heavily pregnant `);
 				if (_slave.physicalAge > 30) {
@@ -356,15 +376,20 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 				} else {
 					r.push(`little ${girl}`);
 				}
-				r.push(` staggering out while clutching a newborn to ${his} breast and struggling to hold back ${his} second child from being born. From what little language ${he} knows, ${he} seems to think that just giving birth in your arcology is enough to become a proper citizen; as expected, ${he} squats and pushes out the other brat as you arrive. The growing crowd is becoming unruly, and ${his} inability to speak the language isn't helping; things could get ugly at any moment and hinge entirely on your next move.`);
+				r.push(`staggering out while clutching a newborn to ${his} breast and struggling to hold back ${his} second child from being born. From what little language ${he} knows, ${he} seems to think that just giving birth in your arcology is enough to become a proper citizen; as expected, ${he} squats and pushes out the other brat as you arrive. The growing crowd is becoming unruly, and ${his} inability to speak the language isn't helping; things could get ugly at any moment and hinge entirely on your next move.`);
+				break;
 			case "orphanloli":
 				r.push(`This is a simple case of vagrancy; sleeping on the streets (due to penury rather than inebriation) breaks an implicit contract all visitors to the arcology sign by coming here. Several reports of petty theft were made in the area recently as well. The criminal is anything but usual, however. ${He} is very young, emaciated, and desperate. Camera records show ${him} crawling in through an air vent. ${He}'s clad in rags, clutching a presumably stolen apple, and you cannot find any record of ${him} anywhere. The growing crowd is convinced ${he}'s an escaped slave, and ${his} inability to speak the language isn't helping; things could get ugly at any moment and hinge entirely on your next move.`);
+				break;
 			case "businesswoman":
 				r.push(`Nevertheless, it seems one of your tenants, a hitherto well-respected business${woman}, has left the straight and narrow. It seems ${his} business affairs took a decisive turn for the worse, so ${he} attempted to drain ${his} clients' funds and leave your arcology before anyone was the wiser. Unfortunately for ${him}, your security drones, controlled by ${V.assistant.name}, were very much the wiser. ${capFirstChar(V.assistant.name)} has with machine efficiency compiled the completest proofs of corporate malfeasance you have ever seen. Your wretched tenant signed a contract with you that included provisions forbidding theft. ${He} is entirely at your mercy.`);
+				break;
 			case "whore":
 				r.push(`Nevertheless, it seems one of your tenants, a free whore, has been systematically stealing from clients. ${He} was furtive enough to get away with it for a time, but has now been caught red-handed. The john who caught ${him} attempted to stop ${him}, and ${he} fought him. Like many prostitutes ${he} carried a weapon in ${his} handbag, and the man is severely wounded. ${capFirstChar(V.assistant.name)} has with machine efficiency compiled a staggering dossier of video logs and personal testimony from previous customers who now understand where their personal belongings went, as well as appalling footage of today's victim's injuries. Your wretched tenant signed a contract with you that included provisions forbidding this kind of thing. ${He} is entirely at your mercy.`);
+				break;
 			case "rapist":
 				r.push(`Nevertheless, it seems one of your tenants saw fit to rape a free woman. Within ten minutes, the inhuman efficiency of ${V.assistant.name} has compiled video recordings, physical evidence, and even the victim's testimony, which is quite consistent with the first two. Your wretched tenant signed a contract with you that included provisions forbidding this kind of thing. ${He} is entirely at your mercy.`);
+				break;
 			case "mule":
 				r.push(`However some individuals still make attempts to fool them. In this case, the cameras are fixed on a clearly pregnant, and hugely at that, ${woman} as ${he} works ${his} way through the crowded market sectors. You watch as ${he} repeatedly bumps into other patrons and stalls, pausing to apologize before proceeding on ${his} way, as if ${he} wasn't familiar with ${his} gravid swell. ${His} body is also clearly underdeveloped for someone ready to drop quadruplets at any moment; thin, with barely any hips to speak of and a pert bust clearly not swollen with milk. ${He} even walks like a ${woman} not burdened with nine months of gestating multiples, let alone a single. As ${he} stumbles under ${his} own weight, ${his} shirt rides up, giving you a clear view of the deep red stretch marks of a belly that grew far faster than it could handle. You've seen enough and order the drones to corral ${him} until security arrives. ${His} expression shifts from fear as they encircle ${him} to panic as a groan escapes ${his} lips. ${He} grabs ${his} stomach as a capsule falls to the floor. As another contraction hits ${him}, ${he} drops to the ground and begins to "give birth" to ${his} illegal cargo.`);
 				if (V.bellyImplants === 1) {
@@ -379,66 +404,61 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 					r.push(` that ${he} likely has installed.`);
 				}
 				r.push(`${He} is easily taken into custody and ${his} contraband confiscated once the jeering crowd is dispersed enough to reach ${him}.`);
+				break;
 			case "liberator":
-				const { hisU, himselfU, heU } = getNonlocalPronouns(V.seeDicks).appendSuffix("U");
 				r.push(`but this is a special case. A well-muscled, well-armed ${woman} was caught attempting to smuggle a slave owned by one of your tenants out of the arcology. Though the slave surrendered immediately (and will be dealt with by ${hisU} owner), the would-be liberatrix was caught by your security drones. ${He} destroyed two of them and caused <span class="red">other minor damage</span>`);
 				cashX(forceNeg(1000), "event", _slave);
 				r.push(` that will require a small sum to repair, but was eventually subdued. The drones had to expend a great deal of nonlethal ordnance to bring ${him} down and keep ${him} down, but ${he} is now entirely at your mercy.`);
+				break;
 			case "passfail":
 				r.push(`Nevertheless, it seems one of your tenants, a rather ordinary white collar worker, has been severely wounded in a freak industrial accident, to the point that a blood transfusion was needed. In the course of doing so, an arcology hospital's autosurgery noted several genetic discrepancies and alerted a few nearby drones. Simply put, while the ${woman} appears to be a normal${_fakeRace} ${woman}, this is the result of numerous cosmetic surgeries; ${he} is actually _realRace. The laws of your arcology hold that members of the _realRace race are fit only for slavery, quite unlike the superior _fakeRace people. That a _realRace ${girl} would gain a position of relatively high class and power through such deception and fraud is considered an outrage by many of your citizens, and so ${he} was placed under arrest before ${he} even awoke from surgery. ${He} is now entirely at your mercy.`);
 		}
 
 		const _ContractCost = 1000;
-		let _slaveCost = slaveCost(_slave);
-		_slaveCost -= 1000;
+		const _slaveCost = slaveCost(_slave) - 1000;
+		App.Events.addParagraph(node, r);
 
-		//<br><br>//Applying enslavement as punishment will cost 
-		V.cashFormat(_ContractCost)
-		r.push(`. Doing so and then selling ${him} immediately will bring in approximately `);
-		V.cashFormat(_slaveCost)
-		r.push(`.//`);
-		//<br><br> 
-		r.push(App.Desc.longSlave(_slave, { market: "generic" }));
+		App.UI.DOM.appendNewElement("p", node, `Applying enslavement as punishment will cost ${cashFormat(_ContractCost)}. Doing so and then selling ${him} immediately will bring in approximately ${cashFormat(_slaveCost)}.`, "note");
 
+		node.append(App.Desc.longSlave(_slave, {market: "generic"}));
 
-		App.Events.addParagraph(node, r);
 		const choices = [];
 		if (V.cash >= _ContractCost) {
 			choices.push(
 				new App.Events.Result(`Enslave ${him}`, enslave),
 				new App.Events.Result(`Sentence ${him} to a day in the stocks, then enslave ${him}`, stocks),
-			)
+			);
 			if (V.arcade > 0) {
-				choices.push(new App.Events.Result(`Enslave ${him} and sentence ${him} to a month in the arcade`, arcade))
+				choices.push(new App.Events.Result(`Enslave ${him} and sentence ${him} to a month in the arcade`, arcade));
 			}
 			if (malefactor !== "mule") {
 				if (V.dairy > 0) {
 					if (V.dairyRestraintsSetting > 1) {
-						choices.push(new App.Events.Result(`Enslave ${him} and send ${him} straight to the industrial dairy`, dairy))
+						choices.push(new App.Events.Result(`Enslave ${him} and send ${him} straight to the industrial dairy`, dairy));
 					}
 				}
 			}
 			if (V.seeExtreme > 0) {
-				choices.push(new App.Events.Result(`Punitively amputate ${his} limbs, and then enslave ${him}`, amp))
+				choices.push(new App.Events.Result(`Punitively amputate ${his} limbs, and then enslave ${him}`, amp));
 				if (malefactor === "rapist" && _slave.balls > 0) {
-					choices.push(new App.Events.Result(`Enslave the criminal and geld ${him}`, geld))
+					choices.push(new App.Events.Result(`Enslave the criminal and geld ${him}`, geld));
 				}
 			}
 			if (malefactor === "orphanloli") {
-				choices.push(new App.Events.Result(`Adopt ${him}`, adopt))
+				choices.push(new App.Events.Result(`Adopt ${him}`, adopt));
 			}
 		} else {
-			choices.push(new App.Events.Result(null, null, `You lack the necessary funds to enslave ${him}.`))
+			choices.push(new App.Events.Result(null, null, `You lack the necessary funds to enslave ${him}.`));
 		}
 		if (malefactor === "anchorBaby") {
-			choices.push(new App.Events.Result(``, citizenship)) //TODO fix name
+			choices.push(new App.Events.Result(``, citizenship)); // TODO fix name
 		}
-		choices.push(new App.Events.Result(`Publicly flog the criminal`, flog))
+		choices.push(new App.Events.Result(`Publicly flog the criminal`, flog));
 		if (malefactor === "liberator") {
-			choices.push(new App.Events.Result(`Permit the slaveowner ${he} tried to steal from to flog ${him}`, ownerFlog))
+			choices.push(new App.Events.Result(`Permit the slaveowner ${he} tried to steal from to flog ${him}`, ownerFlog));
 		}
 
-		choices.push(new App.Events.Result(`Sell ${him} immediately`, sell))
+		choices.push(new App.Events.Result(`Sell ${him} immediately`, sell));
 
 		App.Events.addResponses(node, choices);
 
@@ -451,14 +471,23 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 			switch (malefactor) {
 				case "addict":
 					r.push(`You complete the legalities and biometric scanning quickly and without fuss. The condemned recovers enough by the end of the process to start masturbating weakly, even as ${he} begins begging for a fix. Then it's off to the penthouse for basic slave induction.`);
+					break;
 				case "escapee":
 					r.push(`You complete the legalities and biometric scanning quickly and without fuss. ${He} remains limp throughout the process, only recovering enough to barely grasp the situation as ${he} is enslaved.`);
+					break;
 				case "orphanloli":
 					r.push(`You complete the legalities and biometric scanning quickly and without fuss. ${He} sobs throughout the process, though stops once ${he} realizes being a slave means free food.`);
+					break;
 				case "anchorBaby":
 					r.push(`You complete the legalities and biometric scanning quickly and without fuss. ${He} doesn't stop screaming "citizenship" until ${his} children are taken from ${him} and ${he} is shoved off to the penthouse for basic slave induction.`);
-				case "businesswoman" "mule" "passfail" "rapist" "whore":
+					break;
+				case "businesswoman":
+				case "mule":
+				case "passfail":
+				case "rapist":
+				case "whore":
 					r.push(`You complete the legalities and biometric scanning quickly and without fuss. The condemned sobs and begs throughout the process until you grow tired of the whining and apply punishment. Then it's off to the penthouse for basic slave induction.`);
+					break;
 				case "liberator":
 					r.push(`You complete the legalities and biometric scanning quickly and cautiously. Though the would-be liberator is of course restrained, disarmed, and still sedated, ${he} could awake at any time. Based on the drone logs, ${he} is likely to be violent when ${he} does.`);
 			}
@@ -497,55 +526,64 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 						r.push(` and <span class="lime">fucked-out</span> pussy`);
 					}
 					r.push(`. The public <span class="green">enjoys the fun.</span>`);
+					break;
 				case "escapee":
 					r.push(`You declare ${his} holes fair game for the entire arcology, so that all free citizens can own ${him} for a moment, if they wish. ${He} spends a torturous day in the stocks before being hauled in for enslavement, somewhat <span class="health.dec">the worse for wear</span> and <span class="red">acting oddly</span> due to ${his} ordeal, bruises all over ${his} body, cum leaking from ${his} <span class="lime">loosened</span> anus`);
 					if (_slave.vagina > -1) {
 						r.push(` and <span class="lime">fucked-out</span> pussy`);
 					}
 					r.push(`. The public <span class="green">enjoys the fun.</span>`);
+					break;
 				case "orphanloli":
-					r.push(`You declare ${his} holes fair game for the entire arcology, so that all free citizens can own ${him} for a moment, if they wish. ${He} spends a torturous day in the stocks before being hauled in for enslavement, <span class="health.dec">completely broken</span> due to ${his} ordeal, bruises all over ${his} body, cum leaking from ${his} <span class="lime">loosened</span> anus`);
+					r.push(`You declare ${his} holes fair game for the entire arcology, so that all free citizens can own ${him} for a moment, if they wish. ${He} spends a torturous day in the stocks before being hauled in for enslavement, <span class="health dec">completely broken</span> due to ${his} ordeal, bruises all over ${his} body, cum leaking from ${his} <span class="lime">loosened</span> anus`);
 					if (_slave.vagina > -1) {
 						r.push(` and <span class="lime">fucked-out</span> pussy`);
 					}
 					r.push(`. The public <span class="green">enjoys the fun.</span>`);
 					_slave.fetish = "mindbroken";
+					break;
 				case "anchorBaby":
 					r.push(`You declare ${his} holes fair game for the entire arcology; since ${he} wants to produce future slaves, your arcology might as well have the privilege of fathering them. ${He} spends a torturous day in the stocks after ${his} children are taken to a slave orphanage before being hauled in for enslavement, somewhat <span class="health.dec">the worse for wear</span> and <span class="red">acting oddly</span> due to ${his} ordeal, bruises all over ${his} body, cum leaking from ${his} <span class="lime">loosened</span> anus`);
 					if (_slave.vagina > -1) {
 						r.push(` and <span class="lime">fucked-out</span> pussy`);
 					}
 					r.push(`. The public <span class="green">enjoys the fun.</span>`);
+					break;
 				case "businesswoman":
 					r.push(`You declare ${his} holes fair game for the entire arcology, in payment for ${his} crimes. ${He} spends a torturous day in the stocks before being hauled in for enslavement, somewhat <span class="health.dec">the worse for wear</span> and <span class="red">acting oddly</span> due to ${his} ordeal, bruises all over ${his} body, cum leaking from ${his} <span class="lime">loosened</span> anus`);
 					if (_slave.vagina > -1) {
 						r.push(` and <span class="lime">fucked-out</span> pussy`);
 					}
 					r.push(`. The public <span class="green">enjoys the fun.</span>`);
+					break;
 				case "whore":
 					r.push(`You declare ${his} holes fair game for the entire arcology, to repay ${his} thefts. ${He} spends a torturous day in the stocks before being hauled in for enslavement, somewhat <span class="health.dec">the worse for wear</span> and <span class="red">acting oddly</span> due to ${his} ordeal, bruises all over ${his} body, cum leaking from ${his} <span class="lime">loosened</span> anus`);
 					if (_slave.vagina > -1) {
 						r.push(` and <span class="lime">fucked-out</span> pussy`);
 					}
 					r.push(`. The public <span class="green">enjoys the fun.</span>`);
+					break;
 				case "rapist":
 					r.push(`You declare ${his} holes fair game for the entire arcology. ${He} spends a torturous day in the stocks before being hauled in for enslavement, somewhat <span class="health.dec">the worse for wear</span> and <span class="red">acting oddly</span> due to ${his} ordeal, bruises all over ${his} body, cum leaking from ${his} <span class="lime">loosened</span> anus`);
 					if (_slave.vagina > -1) {
 						r.push(` and <span class="lime">fucked-out</span> pussy`);
 					}
 					r.push(`. The public <span class="green">enjoys the fun.</span>`);
+					break;
 				case "mule":
 					r.push(`You declare ${his} holes fair game for the entire arcology as punishment for trying to smuggle in a load instead of taking one. ${He} spends a torturous day in the stocks before being hauled in for enslavement, somewhat <span class="health.dec">the worse for wear</span> and <span class="red">acting oddly</span> due to ${his} ordeal, bruises all over ${his} body, cum leaking from ${his} <span class="lime">loosened</span> anus`);
 					if (_slave.vagina > -1) {
 						r.push(` and <span class="lime">fucked-out</span> pussy`);
 					}
 					r.push(`. The public <span class="green">enjoys the fun.</span>`);
+					break;
 				case "liberator":
 					r.push(`Slaveownership is the cornerstone of the society you're building in your arcology, and this ${woman} attempted to undermine it. ${His} holes are thus fair game for the entire arcology. ${He} spends a torturous day in the stocks before being hauled in for enslavement, somewhat <span class="health.dec">the worse for wear</span> and <span class="red">acting oddly</span> due to ${his} ordeal, bruises all over ${his} body, cum leaking from ${his} <span class="lime">loosened</span> anus`);
 					if (_slave.vagina > -1) {
 						r.push(` and <span class="lime">fucked-out</span> pussy`);
 					}
 					r.push(`. The public <span class="green">enjoys the fun,</span> and small slaveholders are <span class="green">encouraged to do business with your arcology</span> after word of the incident gets around.`);
+					break;
 				case "passfail":
 					r.push(`You declare ${his} holes fair game for the entire arcology; after all, ${he} did want to be around lots of ${_fakeRace} people, didn't ${he}? ${He} spends a torturous day in the stocks before being hauled in for enslavement, somewhat <span class="health.dec">the worse for wear</span> and <span class="red">acting oddly</span> due to ${his} ordeal, bruises all over ${his} body, cum leaking from ${his} <span class="lime">loosened</span> anus`);
 					if (_slave.vagina > -1) {
@@ -555,7 +593,7 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 			}
 			repX(500, "event", _slave);
 			V.arcologies[0].prosperity += 2;
-			r.push(App.UI.newSlaveIntro(_slave))
+			r.push(App.UI.newSlaveIntro(_slave));
 
 
 			App.Events.addParagraph(frag, r);
@@ -574,13 +612,21 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 			switch (malefactor) {
 				case "addict":
 					r.push(`You complete the legalities and biometric scanning quickly and cautiously. The condemned recovers enough by the end of the process to start masturbating weakly, even as ${he} begins begging for a fix. When ${he} learns ${he}'s headed to the arcade, ${he} actually relaxes a little, having heard the whores there get drugs. The public <span class="green">looks forward</span> to seeing ${him} there, especially the owner of the shop ${he} attempted to burglarize.`);
+					break;
 				case "escapee":
 				case "orphanloli":
 					r.push(`You complete the legalities and biometric scanning quickly, and tell the crowd that ${his} holes will be available at the arcade within the hour. The public <span class="green">looks forward</span> to seeing ${him} there, angrily suspecting ${him} of being an escapee and glad that they'll be able to take part in ${his} punishment.`);
+					break;
 				case "anchorBaby":
 					r.push(`You complete the legalities and biometric scanning quickly and have ${his} children taken away. The condemned screeches ${his} displeasure throughout the process until you grow tired of the whining and sedate ${him} for immurement in the arcade. The public <span class="green">looks forward</span> to seeing ${him} there and vying to see who gets to fill ${his} womb with another child.`);
-				case "businesswoman" "mule" "passfail" "rapist" "whore":
+					break;
+				case "businesswoman":
+				case "mule":
+				case "passfail":
+				case "rapist":
+				case "whore":
 					r.push(`You complete the legalities and biometric scanning quickly and cautiously. The condemned sobs and begs throughout the process until you grow tired of the whining and sedate ${him} for immurement in the arcade. The public <span class="green">looks forward</span> to seeing ${him} there and getting some of their own back.`);
+					break;
 				case "liberator":
 					r.push(`You complete the legalities and biometric scanning quickly and cautiously. Though the would-be liberator is of course restrained, disarmed, and still sedated, ${he} could awake at any time. It would be best to have ${him} restrained for public use in the arcade first. The public <span class="green">looks forward</span> to seeing ${him} there.`);
 			}
@@ -609,6 +655,7 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 						r.push(`breasts as they are roughly milked`);
 					}
 					r.push(`, together with a lengthy report on the experimental detox process used to ensure that the milk ${he} produces will be untainted.`);
+					break;
 				case "escapee":
 					r.push(`You complete the legalities and biometric scanning quickly. The condemned is too far gone to resist as ${he} is installed in ${V.dairyName}. The public <span class="green">accepts</span> this as an appropriate punishment, especially when you release footage of the escapee's `);
 					if (V.dairyStimulatorsSetting > 1) {
@@ -619,6 +666,7 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 						r.push(`breasts as they are roughly milked`);
 					}
 					r.push(`.`);
+					break;
 				case "orphanloli":
 					r.push(`You complete the legalities and biometric scanning quickly. The condemned is too weak to resist as ${he} is installed in ${V.dairyName} but ${he} weeps the entire time. The public <span class="green">accepts</span> this as an appropriate punishment, especially when you release footage of the escapee's `);
 					if (V.dairyStimulatorsSetting > 1) {
@@ -629,9 +677,10 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 						r.push(`budding breasts as they are roughly milked`);
 					}
 					r.push(`.`);
+					break;
 				case "anchorBaby":
 					r.push(`You complete the legalities and biometric scanning quickly and cautiously before having ${his} children taken away. The condemned resists installation in ${V.dairyName} with energy born of desperation. The public <span class="green">accepts</span> this as an appropriate punishment, especially when you release footage of the criminal's `);
-					if (V.dairyPregSetting > 1) && (_slave.vagina > 0) {
+					if (V.dairyPregSetting > 1 && _slave.vagina > 0) {
 						r.push(`discomfort as ${his} pussy adapts to industrial reproduction, along with a prospectus detailing the scheduled sale of ${his} next batch of slave product in eighteen years and nine months`);
 					} else if (V.dairyStimulatorsSetting > 1) {
 						r.push(`agony as ${his} anus adapts to accommodate rectal dildo hydration`);
@@ -639,9 +688,10 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 						r.push(`breasts as they are roughly milked`);
 					}
 					r.push(`.`);
+					break;
 				case "businesswoman":
 					r.push(`You complete the legalities and biometric scanning quickly and cautiously. The condemned resists installation in ${V.dairyName} with energy born of desperation. The public <span class="green">accepts</span> this as an appropriate punishment, especially when you release footage of the criminal's `);
-					if (V.dairyPregSetting > 1) && (_slave.vagina > 0) {
+					if (V.dairyPregSetting > 1 && _slave.vagina > 0) {
 						r.push(`discomfort as ${his} pussy adapts to industrial reproduction, along with a prospectus detailing the scheduled sale of ${his} first slave product in eighteen years and nine months`);
 					} else if (V.dairyStimulatorsSetting > 1) {
 						r.push(`agony as ${his} anus adapts to accommodate rectal dildo hydration`);
@@ -649,9 +699,10 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 						r.push(`breasts as they are roughly milked`);
 					}
 					r.push(`.`);
+					break;
 				case "whore":
 					r.push(`You complete the legalities and biometric scanning quickly and cautiously. The condemned resists installation in ${V.dairyName} with energy born of desperation. The public <span class="green">accepts</span> this as an appropriate punishment, especially when you release footage of the criminal's `);
-					if (V.dairyPregSetting > 1) && (_slave.vagina > 0) {
+					if (V.dairyPregSetting > 1 && _slave.vagina > 0) {
 						r.push(`discomfort as ${his} well-traveled pussy adapts to industrial reproduction`);
 					} else if (V.dairyStimulatorsSetting > 1) {
 						r.push(`discomfort as ${his} well-traveled anus adapts to accommodate rectal dildo hydration`);
@@ -659,6 +710,7 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 						r.push(`breasts as they are roughly milked`);
 					}
 					r.push(`.`);
+					break;
 				case "rapist":
 					r.push(`You complete the legalities and biometric scanning quickly and cautiously. The condemned resists installation in ${V.dairyName} with energy born of desperation. The public <span class="green">accepts</span> this as an appropriate punishment, especially when you release footage of the rapist's `);
 					if (V.dairyStimulatorsSetting > 1) {
@@ -667,9 +719,10 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 						r.push(`newly growing breasts as they are roughly milked`);
 					}
 					r.push(`.`);
+					break;
 				case "liberator":
 					r.push(`You complete the legalities and biometric scanning quickly and cautiously. The condemned resists installation in ${V.dairyName} with energy born of desperation. The public <span class="green">accepts</span> this as an appropriate punishment, especially when you release footage of the criminal's `);
-					if (V.dairyPregSetting > 1) && (_slave.vagina > 0) {
+					if (V.dairyPregSetting > 1 && _slave.vagina > 0) {
 						r.push(`discomfort as ${his} pussy adapts to industrial reproduction`);
 					} else if (V.dairyStimulatorsSetting > 1) {
 						r.push(`discomfort as ${his} anus adapts to accommodate rectal dildo hydration`);
@@ -677,9 +730,10 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 						r.push(`breasts as they are roughly milked`);
 					}
 					r.push(`, together with a report on the likely productivity of such a fit body capable of withstanding the stress of high throughput.`);
+					break;
 				case "passfail":
 					r.push(`You complete the legalities and biometric scanning quickly. The condemned is too weak to resist as ${he} is installed in ${V.dairyName} but ${he} weeps the entire time. The public <span class="green">accepts</span> this as an appropriate punishment, especially when you release footage of the criminal's `);
-					if (V.dairyPregSetting > 1) && (_slave.vagina > 0) {
+					if (V.dairyPregSetting > 1 && _slave.vagina > 0) {
 						r.push(`discomfort as ${his} pussy adapts to industrial reproduction`);
 					} else if (V.dairyStimulatorsSetting > 1) {
 						r.push(`discomfort as ${his} anus adapts to accommodate rectal dildo hydration`);
@@ -707,27 +761,36 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 			switch (malefactor) {
 				case "addict":
 					r.push(`An example must be made. Free people must understand that criminals who commit outrages against them will be severely punished. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. ${He} begs for a fix until ${he} realizes what's coming, at which point ${he} switches to fighting vainly to escape. Of course, <span class="health.dec">${his} health is affected</span> and the horrible experience has left ${him} <span class="red">acting oddly.</span> Then it's off to the penthouse for basic slave induction. The public <span class="green">approves of this harshness.</span>`);
+					break;
 				case "escapee":
 					r.push(`An example must be made. If ${he} escaped once with ${his} tendons clipped, ${he} must be rather talented at it. It remains to be seen if ${he} can manage to escape with neither arms nor legs, so you announce ${his} sentence to the crowd and send ${his} unconscious form for reduction. Of course, <span class="health.dec">${his} health is affected.</span> The public <span class="green">approves of this harshness,</span> believing that you have taken strong measures against escapees.`);
+					break;
 				case "orphanloli":
 					r.push(`An example must be made. If ${he} thinks ${he} can escape captivity and steal to survive, let's see ${him} try without arms and legs, so you announce ${his} sentence to the crowd and send ${his} unconscious form for reduction. Of course, <span class="health.dec">${his} health is affected.</span> The public <span class="green">approves of this harshness,</span> believing that you have taken strong measures against escapees.`);
+					break;
 				case "anchorBaby":
 					r.push(`An example must be made. Potential immigrants must understand that attempting to circumvent the process will result in severe fines and proportional punishment when they are incapable of paying them. The protesting mother is stripped, both of clothing and children, and stuffed into your remote surgery on public video feed. ${He} begs and pleads until ${he} sees ${his} doom in the form of the surgical machinery, at which point ${he} switches to fighting vainly to escape. Of course, <span class="health.dec">${his} health is affected</span> and the horrible experience has left ${him} <span class="red">acting oddly.</span> Then it's off to the penthouse for basic slave induction. The public <span class="green">approves of this harshness,</span> since ${he} can hardly attempt to smuggle things into your arcology without the ability to move.`);
+					break;
 				case "businesswoman":
 					r.push(`An example must be made. Free people must understand that criminals who commit outrages against them will be severely punished. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. ${He} begs and pleads until ${he} sees ${his} doom in the form of the surgical machinery, at which point ${he} switches to fighting vainly to escape. Of course, <span class="health.dec">${his} health is affected</span> and the horrible experience has left ${him} <span class="red">acting oddly.</span> Then it's off to the penthouse for basic slave induction. The public <span class="green">approves of this harshness.</span>`);
+					break;
 				case "whore":
 					r.push(`An example must be made. Free people must understand that criminals who commit outrages against them will be severely punished. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. ${He} begs and pleads until ${he} sees ${his} doom in the form of the surgical machinery, at which point ${he} switches to fighting vainly to escape. Of course, <span class="health.dec">${his} health is affected</span> and the horrible experience has left ${him} <span class="red">acting oddly.</span> Then it's off to the penthouse for basic slave induction. The public <span class="green">approves of this harshness,</span> since ${he} can hardly attempt to steal anything without hands.`);
+					break;
 				case "rapist":
 					r.push(`An example must be made. Rape is rare in your arcology, since citizens are so generously provided with means of sexual outlet. When the price of renting a slave that's impossible to rape is as low as it is, sexual assault of a free woman is doubly unforgivable. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. ${He} begs and pleads until ${he} sees ${his} doom in the form of the surgical machinery, at which point ${he} switches to fighting vainly to escape. Of course, <span class="health.dec">${his} health is affected</span> and the horrible experience has left ${him} <span class="red">acting oddly.</span> Then it's off to the penthouse for basic slave induction. The public <span class="green">approves of this harshness,</span> since even if ${he} cheers up and ever manages an erection again, ${he}'s not likely to rape anyone without arms or legs.`);
+					break;
 				case "mule":
 					r.push(`An example must be made. With the quantity of drugs consumed in the arcology, quality is everything and attempting to undermine that is unforgivable. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. ${He} begs and pleads until ${he} sees ${his} doom in the form of the surgical machinery, at which point ${he} switches to fighting vainly to escape. Of course, <span class="health.dec">${his} health is affected</span> and the horrible experience has left ${him} <span class="red">acting oddly.</span> Then it's off to the penthouse for basic slave induction. The public <span class="green">approves of this harshness,</span> since ${he} can hardly haul contraband into your arcology without the ability to move ${himself}.`);
+					break;
 				case "liberator":
 					r.push(`An example must be made. Slaveownership is the cornerstone of the society you're building in your arcology, and this ${woman} attempted to undermine it. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. ${He} begs and pleads until ${he} sees ${his} doom in the form of the surgical machinery, at which point ${he} switches to fighting vainly to escape. Of course, <span class="health.dec">${his} health is affected</span> and the horrible experience has left ${him} <span class="red">acting oddly.</span> Then it's off to the penthouse for basic slave induction. The public <span class="green">approves of this harshness,</span> since ${he} will scarcely be able to liberate anyone without arms or legs.`);
+					break;
 				case "passfail":
 					r.push(`An example must be made. The citizens of your arcology must be assured that the racially inferior will not try to rise above their station, no matter their deceptions. The protesting malefactor is stripped and stuffed into your remote surgery on public video feed. ${He} begs and pleads until ${he} sees ${his} doom in the form of the surgical machinery, at which point ${he} switches to fighting vainly to escape. Of course, <span class="health.dec">${his} health is affected</span> and the horrible experience has left ${him} <span class="red">acting oddly.</span> Then it's off to the penthouse for basic slave induction. The public <span class="green">approves of this harshness.</span>`);
 			}
 			repX(500, "event", _slave);
-			r.push(App.UI.newSlaveIntro(_slave))
+			r.push(App.UI.newSlaveIntro(_slave));
 
 
 			App.Events.addParagraph(frag, r);
@@ -818,18 +881,27 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 			switch (malefactor) {
 				case "addict":
 					r.push(`Naturally, the wretch will be thrown out of the arcology: but an example must first be made. Free people must understand that criminals who commit outrages against them will be severely punished. The twitching, begging malefactor is stripped and flogged on the promenade before being escorted bleeding, and still twitching from withdrawal, out of the arcology. The public <span class="green">approves of this harshness.</span>`);
+					break;
 				case "escapee":
 					r.push(`Naturally, the wretch will be thrown out of the arcology: but an example must first be made. Free people must understand that criminals who commit outrages against them will be severely punished. The begging malefactor is flogged on the promenade before being escorted bleeding and half-dead out of the arcology. The public <span class="green">approves of this harshness.</span>`);
+					break;
 				case "orphanloli":
 					r.push(`Naturally, the wretch will be thrown out of the arcology: but an example must first be made. Free people must understand that criminals who commit outrages against them will be severely punished. The crying ${girl} is flogged on the promenade before being dragged bleeding and broken out of the arcology. The public <span class="green">approves of this harshness.</span>`);
+					break;
 				case "anchorBaby":
 					r.push(`Naturally, the wretch will be thrown out of the arcology: but an example must first be made. Free people must understand that criminals who commit outrages against them will be severely punished. The screaming breeder is flogged on the promenade before being dragged bleeding and broken out of the arcology sans ${his} children; they are destined for the slave orphanage. The public <span class="green">approves of this harshness.</span>`);
+					break;
 				case "businesswoman":
 					r.push(`Naturally, the wretch will be thrown out of the arcology: but an example must first be made. Free people must understand that criminals who commit outrages against them will be severely punished. The protesting bitch is stripped and flogged on the promenade before being escorted bleeding from the arcology. The public <span class="green">approves of this harshness.</span>`);
-				case "mule" "rapist" "whore":
+					break;
+				case "mule":
+				case "rapist":
+				case "whore":
 					r.push(`Naturally, the wretch will be thrown out of the arcology: but an example must first be made. Free people must understand that criminals who commit outrages against them will be severely punished. The protesting malefactor is stripped and flogged on the promenade before being escorted bleeding from the arcology. The public <span class="green">approves of this harshness.</span>`);
+					break;
 				case "passfail":
 					r.push(`Naturally, the wretch will be thrown out of the arcology: but an example must first be made. Free people must understand that ${_realRace} scum won't steal their livelihoods. The protesting malefactor is stripped and flogged on the promenade before being escorted bleeding from the arcology. The public <span class="green">approves of this harshness.</span>`);
+					break;
 				case "liberator":
 					r.push(`An example must be made. Slaveownership is the cornerstone of the society you're building in your arcology, and this ${woman} attempted to undermine it. The protesting bitch is stripped and flogged on the promenade before being escorted bleeding from the arcology. The public <span class="green">approves of this harshness.</span>`);
 			}
@@ -852,31 +924,35 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 			const frag = document.createDocumentFragment();
 			r = [];
 			cashX(_slaveCost, "slaveTransfer");
-			if (V.cash4Babies === 1 && malefactor === "anchorBaby") {
+			if (V.policies.cash4Babies === 1 && malefactor === "anchorBaby") {
 				cashX(random(20, 30), "slaveTransfer");
 			}
-			<< replace "#result" >>
-				switch (malefactor) {
+			switch (malefactor) {
 				case "addict":
 					r.push(`You complete the legalities and biometric scanning quickly and without fuss. The condemned recovers enough by the end of the process to start masturbating weakly, even as ${he} begins begging for a fix. Then it's off to slave markets for sale.`);
+					break;
 				case "escapee":
 					r.push(`You complete the legalities and biometric scanning quickly and without fuss. ${He} remains limp throughout the process, only recovering enough to barely grasp the situation as ${he} is enslaved and heading to the slave markets.`);
+					break;
 				case "orphanloli":
 					r.push(`You complete the legalities and biometric scanning quickly and without fuss. ${He} sobs throughout the process, though stops once ${he} realizes being a slave means free food. ${He} starts crying again once ${he} realizes ${he} is heading for the slave markets.`);
+					break;
 				case "anchorBaby":
 					r.push(`You complete the legalities and biometric scanning quickly and without fuss. The condemned sobs and begs throughout the process until you grow tired of the whining and apply punishment. Then it's off to slave markets for sale. ${His} children `);
-					if (V.cash4Babies === 1) {
+					if (V.policies.cash4Babies === 1) {
 						r.push(`head off to be sold as well`);
 					} else {
 						r.push(`will be sent to a slave orphanage for future sale`);
 					}
 					r.push(`.`);
+					break;
 				case "businesswoman":
 				case "mule":
 				case "passfail":
 				case "rapist":
 				case "whore":
 					r.push(`You complete the legalities and biometric scanning quickly and without fuss. The condemned sobs and begs throughout the process until you grow tired of the whining and apply punishment. Then it's off to slave markets for sale.`);
+					break;
 				case "liberator":
 					r.push(`You complete the legalities and biometric scanning quickly and cautiously. Though the would-be liberator is of course restrained, disarmed, and still sedated, ${he} could awake at any time. Based on the drone logs, ${he} is likely to be violent when ${he} does. You make sure that ${he} isn't going to get loose as ${he} is sent off to the slave market; the public would not be pleased if ${he} went on another rampage.`);
 			}
@@ -884,6 +960,5 @@ App.Events.REMalefactor = class REMalefactor extends App.Events.BaseEvent {
 			App.Events.addParagraph(frag, r);
 			return frag;
 		}
-
 	}
 };