diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt
index b958405990dbfce750568e14ad936e1966bb7673..a28b9d3c19d0e92481acffc43e8b5b7c3218277e 100644
--- a/devNotes/VersionChangeLog-Premod+LoliMod.txt
+++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt
@@ -2,6 +2,13 @@
 
 0.10.7.1-1.5.x
 
+01/12/2019
+
+	7
+	-fixes
+	-improved RA accent handling
+	-backend code work
+
 01/11/2019
 
 	6
diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index 0f4b66d89748cdc077632e7712e0f2cea717c3e8..fce6dcb87088b415d82816f346ee1134580f73c2 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -1688,75 +1688,191 @@ window.setPregType = function(actor) {
 			}
 			ovum = Math.clamp(ovum, 0, 8);
 		} else if(actor.pregType == 0) {
-			if(actor.geneticQuirks.fertility == 2 && actor.geneticQuirks.hyperFertility == 2) { // Do not mix with sperm
-				ovum += jsEither([1, 2, 2, 3]);
-				fertilityStack++;
-				fertilityStack++;
-				fertilityStack++;
-				fertilityStack++;
-			} else if(actor.geneticQuirks.hyperFertility == 2) { // Predisposed to multiples
-				ovum += jsEither([0, 1, 1, 2]);
-				fertilityStack++;
-				fertilityStack++;
-			} else if(actor.geneticQuirks.fertility == 2) { // Predisposed to twins
-				ovum += jsEither([0, 0, 0, 0, 1]);
-				fertilityStack++;
-			} else {
-				ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 1]); //base chance for twins
-			}
-			if(actor.ovaImplant == "fertility") {
-				ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 1]);
-				fertilityStack++;
-			}
-			if(actor.hormones == 2) {
-				ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2]);
-				fertilityStack++;
-			}
-			if(actor.hormoneBalance >= 200) {
-				ovum += jsEither([0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 2]);
-				fertilityStack++;
-			}
-			if(actor.diet == "fertility") {
-				ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]);
-				fertilityStack++;
-			}
-			if(State.variables.masterSuitePregnancyFertilitySupplements == 1 && ((actor.assignment == "serve in the master suite" || actor.assignment == "be your Concubine"))) {
-				ovum += jsEither([0, 0, 0, 1, 1, 2, 2, 2, 3, 3]);
-				fertilityStack++;
-				fertilityStack++;
-			}
-			if(State.variables.reproductionFormula == 1 && (State.variables.week-actor.weekAcquired > 0)) {
-				fertilityStack++;
-			}
-			if(actor.drugs == "super fertility drugs") {
-				ovum += jsEither([1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 5]);
-				fertilityStack++;
-				fertilityStack++;
-				fertilityStack++;
-				fertilityStack++;
-				fertilityStack++;
-			} else if(actor.drugs == "fertility drugs") {
-				ovum += jsEither([0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3, 3]);
-				fertilityStack++;
-			}
-			if(State.variables.seeHyperPreg == 1) {
+			if(actor.eggType == "horse" || actor.eggType == "cow") {
+				if(actor.geneticQuirks.fertility == 2 && actor.geneticQuirks.hyperFertility == 2) { // Do not mix with sperm
+					ovum += jsEither([0, 0, 0, 0, 0, 0, 1]);
+					fertilityStack += .8;
+				} else if(actor.geneticQuirks.hyperFertility == 2) { // Predisposed to multiples
+					fertilityStack += .4;
+				} else if(actor.geneticQuirks.fertility == 2) { // Predisposed to twins
+					fertilityStack += .2;
+				}
+				if(actor.ovaImplant == "fertility") {
+					fertilityStack += .3;
+				}
+				if(actor.hormones == 2) {
+					fertilityStack += .2;
+				}
+				if(actor.hormoneBalance >= 200) {
+					fertilityStack += .3;
+				}
+				if(actor.diet == "fertility") {
+					fertilityStack += .3;
+				}
+				if(State.variables.masterSuitePregnancyFertilitySupplements == 1 && ((actor.assignment == "serve in the master suite" || actor.assignment == "be your Concubine"))) {
+					fertilityStack += .5;
+				}
+				if(State.variables.reproductionFormula == 1 && (State.variables.week-actor.weekAcquired > 0)) {
+					fertilityStack += .2;
+				}
 				if(actor.drugs == "super fertility drugs") {
-					ovum += jsRandom(0, fertilityStack*2);
+					fertilityStack += 1.6;
+				} else if(actor.drugs == "fertility drugs") {
+					fertilityStack += .6;
+				}
+				fertilityStack = Math.floor(fertilityStack);
+				if(State.variables.seeHyperPreg == 1) {
+					if(actor.drugs == "super fertility drugs") {
+						ovum += jsRandom(0, fertilityStack*2);
+					} else {
+						ovum += jsRandom(0, fertilityStack);
+					}
+					if(actor.ovaImplant == "sympathy") {
+						ovum *= 2;
+					}
 				} else {
 					ovum += jsRandom(0, fertilityStack);
+					if(actor.ovaImplant == "sympathy") {
+						ovum *= 2;
+						if(ovum > 4) {
+							ovum = 4;
+						}
+					} else if(ovum > 3) {
+						ovum = 3;
+					}
+				}
+			} else if(actor.eggType == "pig") {
+				if(actor.geneticQuirks.fertility == 2 && actor.geneticQuirks.hyperFertility == 2) { // Do not mix with sperm
+					ovum += jsRandom(4, 8);
+					fertilityStack += 16;
+				} else if(actor.geneticQuirks.hyperFertility == 2) { // Predisposed to multiples
+					ovum += jsRandom(2, 6);
+					fertilityStack += 10;
+				} else if(actor.geneticQuirks.fertility == 2) { // Predisposed to twins
+					ovum += jsRandom(2, 4);
+					fertilityStack += 6;
+				}
+				if(actor.ovaImplant == "fertility") {
+					ovum += jsRandom(4, 12);
+					fertilityStack += 6;
+				}
+				if(actor.hormones == 2) {
+					ovum += jsRandom(0, 4);
+					fertilityStack += 3;
+				}
+				if(actor.hormoneBalance >= 200) {
+					ovum += jsRandom(0, 4);
+					fertilityStack += 3;
+				}
+				if(actor.diet == "fertility") {
+					ovum += jsRandom(4, 10);
+					fertilityStack += 6;
 				}
-				if(actor.ovaImplant == "sympathy") {
-					ovum *= 2;
+				if(State.variables.masterSuitePregnancyFertilitySupplements == 1 && ((actor.assignment == "serve in the master suite" || actor.assignment == "be your Concubine"))) {
+					ovum += jsRandom(8, 16);
+					fertilityStack += 10;
+				}
+				if(State.variables.reproductionFormula == 1 && (State.variables.week-actor.weekAcquired > 0)) {
+					fertilityStack += 2;
+				}
+				if(actor.drugs == "super fertility drugs") {
+					ovum += jsRandom(10, 40);
+					fertilityStack += 32;
+				} else if(actor.drugs == "fertility drugs") {
+					ovum += jsRandom(10, 20);
+					fertilityStack += 16;
+				}
+				if(State.variables.seeHyperPreg == 1) {
+					if(actor.drugs == "super fertility drugs") {
+						ovum += jsRandom(fertilityStack/2, fertilityStack*2);
+					} else {
+						ovum += jsRandom(fertilityStack/4, fertilityStack);
+					}
+					if(actor.ovaImplant == "sympathy") {
+						ovum *= 2;
+					}
+				} else {
+					ovum += jsRandom(0, fertilityStack);
+					if(actor.ovaImplant == "sympathy") {
+						ovum *= 2;
+						if(ovum > 76) {
+							ovum = jsEither([70, 72, 74, 76]);
+						}
+					} else if(ovum > 75) {
+						ovum = jsRandom(60, 75);
+					}
 				}
 			} else {
-				ovum += jsRandom(0, fertilityStack);
-				if(actor.ovaImplant == "sympathy") {
-					ovum *= 2;
-					if(ovum > 12) {
-						ovum = jsEither([10, 12]);
+				if(actor.geneticQuirks.fertility == 2 && actor.geneticQuirks.hyperFertility == 2) { // Do not mix with sperm
+					ovum += jsEither([1, 2, 2, 3]);
+					fertilityStack++;
+					fertilityStack++;
+					fertilityStack++;
+					fertilityStack++;
+				} else if(actor.geneticQuirks.hyperFertility == 2) { // Predisposed to multiples
+					ovum += jsEither([0, 1, 1, 2]);
+					fertilityStack++;
+					fertilityStack++;
+				} else if(actor.geneticQuirks.fertility == 2) { // Predisposed to twins
+					ovum += jsEither([0, 0, 0, 0, 1]);
+					fertilityStack++;
+				} else {
+					ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 1]); //base chance for twins
+				}
+				if(actor.ovaImplant == "fertility") {
+					ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 1]); 
+					fertilityStack++;
+				}
+				if(actor.hormones == 2) {
+					ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2]);
+					fertilityStack++;
+				}
+				if(actor.hormoneBalance >= 200) {
+					ovum += jsEither([0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 2]);
+					fertilityStack++;
+				}
+				if(actor.diet == "fertility") {
+					ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]);
+					fertilityStack++;
+				}
+				if(State.variables.masterSuitePregnancyFertilitySupplements == 1 && ((actor.assignment == "serve in the master suite" || actor.assignment == "be your Concubine"))) {
+					ovum += jsEither([0, 0, 0, 1, 1, 2, 2, 2, 3, 3]);
+					fertilityStack++;
+					fertilityStack++;
+				}
+				if(State.variables.reproductionFormula == 1 && (State.variables.week-actor.weekAcquired > 0)) {
+					fertilityStack++;
+				}
+				if(actor.drugs == "super fertility drugs") {
+					ovum += jsEither([1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 5]);
+					fertilityStack++;
+					fertilityStack++;
+					fertilityStack++;
+					fertilityStack++;
+					fertilityStack++;
+				} else if(actor.drugs == "fertility drugs") {
+					ovum += jsEither([0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3, 3]);
+					fertilityStack++;
+				}
+				if(State.variables.seeHyperPreg == 1) {
+					if(actor.drugs == "super fertility drugs") {
+						ovum += jsRandom(0, fertilityStack*2);
+					} else {
+						ovum += jsRandom(0, fertilityStack);
+					}
+					if(actor.ovaImplant == "sympathy") {
+						ovum *= 2;
+					}
+				} else {
+					ovum += jsRandom(0, fertilityStack);
+					if(actor.ovaImplant == "sympathy") {
+						ovum *= 2;
+						if(ovum > 12) {
+							ovum = jsEither([10, 12]);
+						}
+					} else if(ovum > 12) {
+						ovum = jsRandom(6, 12);
 					}
-				} else if(ovum > 12) {
-					ovum = jsRandom(6, 12);
 				}
 			}
 		}
@@ -4411,7 +4527,7 @@ window.induceLactation = function induceLactation(slave) {
 };
 
 window.ResearchLabStockPile = function() {
-	V = State.variables;
+	const V = State.variables;
 	return `__Stockpile__
 	Prosthetics interfaces: ${commaNum(V.stockpile.basicPLimbInterface + V.stockpile.advPLimbInterface)}
 	 Basic : $stockpile.basicPLimbInterface
@@ -16557,12 +16673,28 @@ window.DefaultRules = (function() {
 
 	function ProcessSpeech(slave, rule) {
 		if ((rule.speechRules !== undefined) && (rule.speechRules !== "no default setting")) {
-			if ((slave.fetish == "mindbroken")) {
+			if (slave.fetish == "mindbroken") {
 				if ((slave.speechRules !== "restrictive")) {
 					slave.speechRules = "restrictive";
 					r += `<br>Since ${slave.slaveName} is mindbroken her speech rules have been set to restrictive.`;
 				}
-			} else if ((slave.speechRules !== rule.speechRules)) {
+			} else if (slave.accent == 4) {
+				if (rule.speechRules === "accent elimination" && slave.speechRules !== "language lessons") {
+					slave.speechRules = "language lessons";
+					r += `<br>Since ${slave.slaveName} does not know how to talk, her speech rules have been set to language learning.`;
+				} else {
+					slave.speechRules = "restrictive";
+					r += `<br>Since ${slave.slaveName} does not know how to talk, her speech rules have been set to restrictive.`;
+				}
+			} else if (rule.speechRules === "accent elimination") {
+				if (slave.accent > 0) {
+					slave.speechRules = "accent elimination";
+					r += `<br>${slave.slaveName}'s speech rules have been set to ${rule.speechRules}.`;
+				} else {
+					slave.speechRules = "restrictive";
+					r += `<br>Since ${slave.slaveName} has no accent her speech rules have been set to restrictive.`;
+				}
+			} else if (slave.speechRules !== rule.speechRules) {
 				slave.speechRules = rule.speechRules;
 				r += `<br>${slave.slaveName}'s speech rules have been set to ${rule.speechRules}.`;
 			}
diff --git a/src/SpecialForce/TrickShotNight.tw b/src/SpecialForce/TrickShotNight.tw
index 7867dc1ec615986de28ec5ffb70f46fed583d39a..d790ed021210b366a7d91bc3fa2b8bacbeddfc6f 100644
--- a/src/SpecialForce/TrickShotNight.tw
+++ b/src/SpecialForce/TrickShotNight.tw
@@ -46,8 +46,7 @@ Despite your direct elevator, interaction with the majority of your security for
 			<<if $arcologies[0].FSSupremacistLawME == 1>>
 				<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 			<<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-				<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-				<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+				<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 				<<set $fixedRace = _races.random()>>
 			<</if>>
 			<<include "Generate XX Slave">>
diff --git a/src/cheats/mod_EditNeighborArcologyCheatDatatypeCleanup.tw b/src/cheats/mod_EditNeighborArcologyCheatDatatypeCleanup.tw
index f2f7da1aa021f06f852ddf91d06acf2860a4b4cf..31bca5cfb2770698102d494b85ecfaf2140d85eb 100644
--- a/src/cheats/mod_EditNeighborArcologyCheatDatatypeCleanup.tw
+++ b/src/cheats/mod_EditNeighborArcologyCheatDatatypeCleanup.tw
@@ -13,14 +13,14 @@
 	<<if $arcologies[_i].FSSupremacist != "unset">>
 		<<set $arcologies[_i].FSSupremacist = Number($arcologies[_i].FSSupremacist) || "unset">>
 	<</if>>
-	<<if $arcologies[_i].FSSupremacist != "unset" && !["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($arcologies[_i].FSSupremacistRace)>>
-		<<set $arcologies[_i].FSSupremacistRace = either("amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white")>>
+	<<if $arcologies[_i].FSSupremacist != "unset" && !setup.filterRacesLowercase.includes($arcologies[_i].FSSupremacistRace)>>
+		<<set $arcologies[_i].FSSupremacistRace = setup.filterRacesLowercase.random()>>
 	<</if>>
 	<<if $arcologies[_i].FSSubjugationist != "unset">>
 		<<set $arcologies[_i].FSSubjugationist = Number($arcologies[_i].FSSubjugationist) || "unset">>
 	<</if>>
-	<<if $arcologies[_i].FSSubjugationist != "unset" && !["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($arcologies[_i].FSSubjugationistRace)>>
-		<<set $arcologies[_i].FSSubjugationistRace = either("amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white")>>
+	<<if $arcologies[_i].FSSubjugationist != "unset" && !setup.filterRacesLowercase.includes($arcologies[_i].FSSubjugationistRace)>>
+		<<set $arcologies[_i].FSSubjugationistRace = setup.filterRacesLowercase.random()>>
 	<</if>>
 	<<if $arcologies[_i].FSGenderRadicalist != "unset">>
 		<<set $arcologies[_i].FSGenderRadicalist = Number($arcologies[_i].FSGenderRadicalist) || "unset">>
diff --git a/src/facilities/nursery/longChildDescription.tw b/src/facilities/nursery/longChildDescription.tw
index 4442780ca75ec36392e1e0d1fe9fef3c3487af1e..076f558440fcb7d3fd2ffc7085e12179897cb05b 100644
--- a/src/facilities/nursery/longChildDescription.tw
+++ b/src/facilities/nursery/longChildDescription.tw
@@ -2,7 +2,6 @@
 
 /*TODO: This may need rewriting - a lot of it is copy-pasted from longSlaveDescription.tw */
 
-<<run SlavePronouns($activeChild)>>
 <<setLocalPronouns $activeChild>>
 
 /* 000-250-006 */
diff --git a/src/init/setupVars.tw b/src/init/setupVars.tw
index 82a4a5c10834bb64588e54df7f73e305c136c25d..a5243147a0273c3233c700f8e92247facb6b8045 100644
--- a/src/init/setupVars.tw
+++ b/src/init/setupVars.tw
@@ -31,6 +31,7 @@ equine: {type: "equine", normalOvaMin:1, normalOvaMax: 1, normalBirth: 48, minLi
 /* equine: {type: "equine", normalOvaMin:1, normalOvaMax: 1, normalBirth: 48, minLiveBirth: 44, fetusWeek: [0, 4, 7, 9, 10, 12, 17, 21, 25, 34, 38, 48, 192, 99999], fetusSize: [0, 2.5, 3, 4, 6.3, 14, 17.7, 30, 61, 76.2, 92, 121, 235, 235], fetusRate: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1] sizeType: 0} */
 
 <<set setup.filterRaces = ["Amerindian", "Asian", "Black", "Indo-Aryan", "Latina", "Malay", "Middle Eastern", "Mixed Race", "Pacific Islander", "Semitic", "Southern European", "White"]>>
+<<set setup.filterRacesLowercase = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
 <<set setup.filterRegions = ["Africa", "Asia", "Australia", "Europe", "Middle East", "North America", "South America"]>>
 
 /* START Custom Nationalities region filter */
diff --git a/src/js/DefaultRules.tw b/src/js/DefaultRules.tw
index af07393eebbf579a80216f577d9178842e6d427f..6e632eea575794b6c0f800489e40ba198f7a4a48 100644
--- a/src/js/DefaultRules.tw
+++ b/src/js/DefaultRules.tw
@@ -1722,12 +1722,28 @@ window.DefaultRules = (function() {
 
 	function ProcessSpeech(slave, rule) {
 		if ((rule.speechRules !== undefined) && (rule.speechRules !== "no default setting")) {
-			if ((slave.fetish == "mindbroken")) {
+			if (slave.fetish == "mindbroken") {
 				if ((slave.speechRules !== "restrictive")) {
 					slave.speechRules = "restrictive";
 					r += `<br>Since ${slave.slaveName} is mindbroken her speech rules have been set to restrictive.`;
 				}
-			} else if ((slave.speechRules !== rule.speechRules)) {
+			} else if (slave.accent == 4) {
+				if (rule.speechRules === "accent elimination" && slave.speechRules !== "language lessons") {
+					slave.speechRules = "language lessons";
+					r += `<br>Since ${slave.slaveName} does not know how to talk, her speech rules have been set to language learning.`;
+				} else {
+					slave.speechRules = "restrictive";
+					r += `<br>Since ${slave.slaveName} does not know how to talk, her speech rules have been set to restrictive.`;
+				}
+			} else if (rule.speechRules === "accent elimination") {
+				if (slave.accent > 0) {
+					slave.speechRules = "accent elimination";
+					r += `<br>${slave.slaveName}'s speech rules have been set to ${rule.speechRules}.`;
+				} else {
+					slave.speechRules = "restrictive";
+					r += `<br>Since ${slave.slaveName} has no accent her speech rules have been set to restrictive.`;
+				}
+			} else if (slave.speechRules !== rule.speechRules) {
 				slave.speechRules = rule.speechRules;
 				r += `<br>${slave.slaveName}'s speech rules have been set to ${rule.speechRules}.`;
 			}
diff --git a/src/js/pregJS.tw b/src/js/pregJS.tw
index ba5050d5b37c0858fe4e9ba0e85c99a6b3625579..24e623c7bd4b3200e916192c34641d9c3cea7edb 100644
--- a/src/js/pregJS.tw
+++ b/src/js/pregJS.tw
@@ -122,75 +122,191 @@ window.setPregType = function(actor) {
 			}
 			ovum = Math.clamp(ovum, 0, 8);
 		} else if(actor.pregType == 0) {
-			if(actor.geneticQuirks.fertility == 2 && actor.geneticQuirks.hyperFertility == 2) { // Do not mix with sperm
-				ovum += jsEither([1, 2, 2, 3]);
-				fertilityStack++;
-				fertilityStack++;
-				fertilityStack++;
-				fertilityStack++;
-			} else if(actor.geneticQuirks.hyperFertility == 2) { // Predisposed to multiples
-				ovum += jsEither([0, 1, 1, 2]);
-				fertilityStack++;
-				fertilityStack++;
-			} else if(actor.geneticQuirks.fertility == 2) { // Predisposed to twins
-				ovum += jsEither([0, 0, 0, 0, 1]);
-				fertilityStack++;
-			} else {
-				ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 1]); //base chance for twins
-			}
-			if(actor.ovaImplant == "fertility") {
-				ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 1]); 
-				fertilityStack++;
-			}
-			if(actor.hormones == 2) {
-				ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2]);
-				fertilityStack++;
-			}
-			if(actor.hormoneBalance >= 200) {
-				ovum += jsEither([0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 2]);
-				fertilityStack++;
-			}
-			if(actor.diet == "fertility") {
-				ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]);
-				fertilityStack++;
-			}
-			if(State.variables.masterSuitePregnancyFertilitySupplements == 1 && ((actor.assignment == "serve in the master suite" || actor.assignment == "be your Concubine"))) {
-				ovum += jsEither([0, 0, 0, 1, 1, 2, 2, 2, 3, 3]);
-				fertilityStack++;
-				fertilityStack++;
-			}
-			if(State.variables.reproductionFormula == 1 && (State.variables.week-actor.weekAcquired > 0)) {
-				fertilityStack++;
-			}
-			if(actor.drugs == "super fertility drugs") {
-				ovum += jsEither([1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 5]);
-				fertilityStack++;
-				fertilityStack++;
-				fertilityStack++;
-				fertilityStack++;
-				fertilityStack++;
-			} else if(actor.drugs == "fertility drugs") {
-				ovum += jsEither([0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3, 3]);
-				fertilityStack++;
-			}
-			if(State.variables.seeHyperPreg == 1) {
+			if(actor.eggType == "horse" || actor.eggType == "cow") {
+				if(actor.geneticQuirks.fertility == 2 && actor.geneticQuirks.hyperFertility == 2) { // Do not mix with sperm
+					ovum += jsEither([0, 0, 0, 0, 0, 0, 1]);
+					fertilityStack += .8;
+				} else if(actor.geneticQuirks.hyperFertility == 2) { // Predisposed to multiples
+					fertilityStack += .4;
+				} else if(actor.geneticQuirks.fertility == 2) { // Predisposed to twins
+					fertilityStack += .2;
+				}
+				if(actor.ovaImplant == "fertility") {
+					fertilityStack += .3;
+				}
+				if(actor.hormones == 2) {
+					fertilityStack += .2;
+				}
+				if(actor.hormoneBalance >= 200) {
+					fertilityStack += .3;
+				}
+				if(actor.diet == "fertility") {
+					fertilityStack += .3;
+				}
+				if(State.variables.masterSuitePregnancyFertilitySupplements == 1 && ((actor.assignment == "serve in the master suite" || actor.assignment == "be your Concubine"))) {
+					fertilityStack += .5;
+				}
+				if(State.variables.reproductionFormula == 1 && (State.variables.week-actor.weekAcquired > 0)) {
+					fertilityStack += .2;
+				}
 				if(actor.drugs == "super fertility drugs") {
-					ovum += jsRandom(0, fertilityStack*2);
+					fertilityStack += 1.6;
+				} else if(actor.drugs == "fertility drugs") {
+					fertilityStack += .6;
+				}
+				fertilityStack = Math.floor(fertilityStack);
+				if(State.variables.seeHyperPreg == 1) {
+					if(actor.drugs == "super fertility drugs") {
+						ovum += jsRandom(0, fertilityStack*2);
+					} else {
+						ovum += jsRandom(0, fertilityStack);
+					}
+					if(actor.ovaImplant == "sympathy") {
+						ovum *= 2;
+					}
 				} else {
 					ovum += jsRandom(0, fertilityStack);
+					if(actor.ovaImplant == "sympathy") {
+						ovum *= 2;
+						if(ovum > 4) {
+							ovum = 4;
+						}
+					} else if(ovum > 3) {
+						ovum = 3;
+					}
+				}
+			} else if(actor.eggType == "pig") {
+				if(actor.geneticQuirks.fertility == 2 && actor.geneticQuirks.hyperFertility == 2) { // Do not mix with sperm
+					ovum += jsRandom(4, 8);
+					fertilityStack += 16;
+				} else if(actor.geneticQuirks.hyperFertility == 2) { // Predisposed to multiples
+					ovum += jsRandom(2, 6);
+					fertilityStack += 10;
+				} else if(actor.geneticQuirks.fertility == 2) { // Predisposed to twins
+					ovum += jsRandom(2, 4);
+					fertilityStack += 6;
+				}
+				if(actor.ovaImplant == "fertility") {
+					ovum += jsRandom(4, 12);
+					fertilityStack += 6;
+				}
+				if(actor.hormones == 2) {
+					ovum += jsRandom(0, 4);
+					fertilityStack += 3;
 				}
-				if(actor.ovaImplant == "sympathy") {
-					ovum *= 2;
+				if(actor.hormoneBalance >= 200) {
+					ovum += jsRandom(0, 4);
+					fertilityStack += 3;
+				}
+				if(actor.diet == "fertility") {
+					ovum += jsRandom(4, 10);
+					fertilityStack += 6;
+				}
+				if(State.variables.masterSuitePregnancyFertilitySupplements == 1 && ((actor.assignment == "serve in the master suite" || actor.assignment == "be your Concubine"))) {
+					ovum += jsRandom(8, 16);
+					fertilityStack += 10;
+				}
+				if(State.variables.reproductionFormula == 1 && (State.variables.week-actor.weekAcquired > 0)) {
+					fertilityStack += 2;
+				}
+				if(actor.drugs == "super fertility drugs") {
+					ovum += jsRandom(10, 40);
+					fertilityStack += 32;
+				} else if(actor.drugs == "fertility drugs") {
+					ovum += jsRandom(10, 20);
+					fertilityStack += 16;
+				}
+				if(State.variables.seeHyperPreg == 1) {
+					if(actor.drugs == "super fertility drugs") {
+						ovum += jsRandom(fertilityStack/2, fertilityStack*2);
+					} else {
+						ovum += jsRandom(fertilityStack/4, fertilityStack);
+					}
+					if(actor.ovaImplant == "sympathy") {
+						ovum *= 2;
+					}
+				} else {
+					ovum += jsRandom(0, fertilityStack);
+					if(actor.ovaImplant == "sympathy") {
+						ovum *= 2;
+						if(ovum > 76) {
+							ovum = jsEither([70, 72, 74, 76]);
+						}
+					} else if(ovum > 75) {
+						ovum = jsRandom(60, 75);
+					}
 				}
 			} else {
-				ovum += jsRandom(0, fertilityStack);
-				if(actor.ovaImplant == "sympathy") {
-					ovum *= 2;
-					if(ovum > 12) {
-						ovum = jsEither([10, 12]);
+				if(actor.geneticQuirks.fertility == 2 && actor.geneticQuirks.hyperFertility == 2) { // Do not mix with sperm
+					ovum += jsEither([1, 2, 2, 3]);
+					fertilityStack++;
+					fertilityStack++;
+					fertilityStack++;
+					fertilityStack++;
+				} else if(actor.geneticQuirks.hyperFertility == 2) { // Predisposed to multiples
+					ovum += jsEither([0, 1, 1, 2]);
+					fertilityStack++;
+					fertilityStack++;
+				} else if(actor.geneticQuirks.fertility == 2) { // Predisposed to twins
+					ovum += jsEither([0, 0, 0, 0, 1]);
+					fertilityStack++;
+				} else {
+					ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 1]); //base chance for twins
+				}
+				if(actor.ovaImplant == "fertility") {
+					ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 1]); 
+					fertilityStack++;
+				}
+				if(actor.hormones == 2) {
+					ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2]);
+					fertilityStack++;
+				}
+				if(actor.hormoneBalance >= 200) {
+					ovum += jsEither([0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 2]);
+					fertilityStack++;
+				}
+				if(actor.diet == "fertility") {
+					ovum += jsEither([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1]);
+					fertilityStack++;
+				}
+				if(State.variables.masterSuitePregnancyFertilitySupplements == 1 && ((actor.assignment == "serve in the master suite" || actor.assignment == "be your Concubine"))) {
+					ovum += jsEither([0, 0, 0, 1, 1, 2, 2, 2, 3, 3]);
+					fertilityStack++;
+					fertilityStack++;
+				}
+				if(State.variables.reproductionFormula == 1 && (State.variables.week-actor.weekAcquired > 0)) {
+					fertilityStack++;
+				}
+				if(actor.drugs == "super fertility drugs") {
+					ovum += jsEither([1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 5, 5, 5]);
+					fertilityStack++;
+					fertilityStack++;
+					fertilityStack++;
+					fertilityStack++;
+					fertilityStack++;
+				} else if(actor.drugs == "fertility drugs") {
+					ovum += jsEither([0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3, 3]);
+					fertilityStack++;
+				}
+				if(State.variables.seeHyperPreg == 1) {
+					if(actor.drugs == "super fertility drugs") {
+						ovum += jsRandom(0, fertilityStack*2);
+					} else {
+						ovum += jsRandom(0, fertilityStack);
+					}
+					if(actor.ovaImplant == "sympathy") {
+						ovum *= 2;
+					}
+				} else {
+					ovum += jsRandom(0, fertilityStack);
+					if(actor.ovaImplant == "sympathy") {
+						ovum *= 2;
+						if(ovum > 12) {
+							ovum = jsEither([10, 12]);
+						}
+					} else if(ovum > 12) {
+						ovum = jsRandom(6, 12);
 					}
-				} else if(ovum > 12) {
-					ovum = jsRandom(6, 12);
 				}
 			}
 		}
diff --git a/src/js/utilJS.tw b/src/js/utilJS.tw
index e06e9ff130c6de307669d2e68d7dd52c0149729c..290ef982bb62cfcef647c6d1578c6d2d867881f4 100644
--- a/src/js/utilJS.tw
+++ b/src/js/utilJS.tw
@@ -1142,7 +1142,7 @@ window.induceLactation = function induceLactation(slave) {
 };
 
 window.ResearchLabStockPile = function() {
-	V = State.variables;
+	const V = State.variables;
 	return `__Stockpile__
 	Prosthetics interfaces: ${commaNum(V.stockpile.basicPLimbInterface + V.stockpile.advPLimbInterface)}
 	&nbsp;Basic : $stockpile.basicPLimbInterface
diff --git a/src/pregmod/FSuckle.tw b/src/pregmod/FSuckle.tw
index fe422c036d15b0fcbacc0b09754a40999066c28e..d1080a0acfdbe0635beff52c01542f51c6a3dd87 100644
--- a/src/pregmod/FSuckle.tw
+++ b/src/pregmod/FSuckle.tw
@@ -4,7 +4,6 @@
 <<run clearSummaryCache($activeSlave)>>
 <<setLocalPronouns $activeSlave>>
 
-
 <<set $activeSlave.mammaryCount++>>
 <<set $mammaryTotal++>>
 <<if $PC.pregMood == 0 || $PC.preg < 28>>
diff --git a/src/pregmod/eliteTakeOverResult.tw b/src/pregmod/eliteTakeOverResult.tw
index 8ec7563de8c1342e4a92178e9aa12ea1fb3857f0..f02a414ce3504614f83378408ebea20c6c68fd7b 100644
--- a/src/pregmod/eliteTakeOverResult.tw
+++ b/src/pregmod/eliteTakeOverResult.tw
@@ -121,8 +121,7 @@
 		<<if $arcologies[0].FSSupremacistLawME == 1>>
 			<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 		<<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-			<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-			<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+			<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 			<<set $fixedRace = _races.random()>>
 		<</if>>
 		<<if $seeDicks == 0>>
@@ -166,8 +165,7 @@
 		<<if $arcologies[0].FSSupremacistLawME == 1>>
 			<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 		<<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-			<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-			<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+			<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 			<<set $fixedRace = _races.random()>>
 		<</if>>
 		<<if $seeDicks == 0>>
diff --git a/src/pregmod/fFeet.tw b/src/pregmod/fFeet.tw
index 3acfef149d7ee333758e44cb9200dec37138adee..55ea620057f5192c8521023e78e01e77c3a60808 100644
--- a/src/pregmod/fFeet.tw
+++ b/src/pregmod/fFeet.tw
@@ -1,7 +1,7 @@
 :: FFeet [nobr]
 
 <<run clearSummaryCache($activeSlave)>>
-<<run SlavePronouns($activeSlave)>>
+<<setLocalPronouns $activeSlave>>
 
 <<set _footSeed = random(1,100)>>
 
diff --git a/src/pregmod/pRaped.tw b/src/pregmod/pRaped.tw
index 1956289f5e23f013a82bd6766c6b0b91ef05b135..064778ecc8ef3d9ea6a852a7477e0d26de83a038 100644
--- a/src/pregmod/pRaped.tw
+++ b/src/pregmod/pRaped.tw
@@ -118,8 +118,7 @@ It would be prudent to up security in your arcology. That or take a guard along
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XY Slave">>
diff --git a/src/pregmod/widgets/deathWidgets.tw b/src/pregmod/widgets/deathWidgets.tw
index ebc56cd5fc2a6fb2d52c55125e60c1321e925154..cb7e44ac4a9c002ed53f5a70b4a8071d320ba6f2 100644
--- a/src/pregmod/widgets/deathWidgets.tw
+++ b/src/pregmod/widgets/deathWidgets.tw
@@ -18,7 +18,7 @@ As $args[0].slaveName is going about $his business with $his overfilled $args[0]
 <</widget>>
 
 <<widget "DeathOldAge">>
-	<<run SlavePronouns($args[0])>>
+	<<setLocalPronouns $args[0]>>
 	<<if $args[0].assignment == "be confined in the arcade">>
 		You are notified by $arcadeName staff that one of the cabinets has broken down and will need to be replaced. It would seem ''@@.pink;$args[0].slaveName@@'', the fucktoy encased in it, died <<if $args[0].physicalAge >= 70>>naturally of old age despite<<else>>suddenly, unrelated to<</if>> $his living conditions. $He was a good unit; logs show $he was taking dick up until the very end.
 	<<elseif $args[0].assignment == "work in the dairy" && $dairyRestraintsSetting > 1>>
@@ -61,7 +61,7 @@ As $args[0].slaveName is going about $his business with $his overfilled $args[0]
 <</widget>>
 
 <<widget "DeathOverdose">>
-	<<run SlavePronouns($args[0])>>
+	<<setLocalPronouns $args[0]>>
 	<<if $args[0].assignment == "be confined in the arcade">>
 		You are notified by $arcadeName staff that one of the cabinets has broken down and will need to be replaced. It would seem ''@@.pink;$args[0].slaveName@@'', the fucktoy encased in it, died of an aphrodisiac overdose from the constant aphrodisiac injections. $He was a good unit; logs show $he was taking dick up until the very end.
 	<<elseif $args[0].assignment == "work in the dairy" && $dairyRestraintsSetting > 1>>
@@ -90,7 +90,7 @@ As $args[0].slaveName is going about $his business with $his overfilled $args[0]
 <</widget>>
 
 <<widget "DeathUnhealthy">>
-	<<run SlavePronouns($args[0])>>
+	<<setLocalPronouns $args[0]>>
 	<<if $args[0].assignment == "be confined in the arcade">>
 		You are notified by $arcadeName staff that one of the cabinets has broken down and will need to be replaced. It would seem ''@@.pink;$args[0].slaveName@@'', the fucktoy encased in it, died to poor health caused by $his living conditions. $He was a good unit; logs show $he was taking dick up until the very end.
 	<<elseif $args[0].assignment == "work in the dairy" && $dairyRestraintsSetting > 1>>
diff --git a/src/pregmod/widgets/pregmodWidgets.tw b/src/pregmod/widgets/pregmodWidgets.tw
index 1220dd67e24522f91318f8632ecec51cad708cfd..a090002c25260878904882eb56b63de07f254daa 100644
--- a/src/pregmod/widgets/pregmodWidgets.tw
+++ b/src/pregmod/widgets/pregmodWidgets.tw
@@ -1307,17 +1307,16 @@ extremely pale -5
 
 <<widget "HeroSlavesCleanup">>
 <<run $heroSlaves.forEach(function(s) {
-	const validRaces = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"];
 	/* Nationalities, races, surnames random fill */
 	if(!s.nationality) {
 		/* Check for a pre-set race and if the nationality fits, else regenerate */
-		if(s.race && validRaces.includes(s.race)) {
+		if(s.race && setup.filterRacesLowercase.includes(s.race)) {
 				raceToNationality(s);
 		} else {
 			s.nationality = hashChoice($nationalities);
 		}
 	}
-	if(!s.race || !validRaces.includes(s.race)) {
+	if(!s.race || !setup.filterRacesLowercase.includes(s.race)) {
 		nationalityToRace(s);
 	}
 	if(!s.birthSurname && s.birthSurname !== "") {
diff --git a/src/pregmod/widgets/seBirthWidgets.tw b/src/pregmod/widgets/seBirthWidgets.tw
index a28962ec0c2e308d60bf16d0467b5b46665ac7c1..1a8b0ad53e866692096c0c794cd4f35ad3ab26ea 100644
--- a/src/pregmod/widgets/seBirthWidgets.tw
+++ b/src/pregmod/widgets/seBirthWidgets.tw
@@ -2,7 +2,7 @@
 
 <<widget "seBirthPreChek">>
 
-<<run SlavePronouns($slaves[$i])>>
+<<setLocalPronouns $slaves[$i]>>
 
 <<set $humiliation = 0>>
 <<set $suddenBirth = 1>>
@@ -322,7 +322,7 @@
 	<</if>>
 <</for>>
 
-/* Here support for partial birth cases but if slaves still NOT have broomother implant. Right now remaining babies will be lost, need to add research option for selective births. It should control labor and stop it after ready to birth babies out. Should be Repopulation FS research before broodmothers (their implant obviously have it as a part of functional). */
+/* Here support for partial birth cases but if slaves still NOT have broodmother implant. Right now remaining babies will be lost, need to add research option for selective births. It should control labor and stop it after ready to birth babies out. Should be Repopulation FS research before broodmothers (their implant obviously have it as a part of functional). */
 <<if $slaves[$i].broodmother == 0>>
 	<<if $slaves[$i].prematureBirth == 1>>  /* emergency birth, anything less than 23 weeks of age is not making it through this */
 		<<set $slaves[$i].curStillBirth = $slaves[$i].womb.length>>
@@ -542,7 +542,7 @@ This decriptions can be expanded with more outcomes later. But it's not practica
 		$He had exceedingly narrow hips, completely unsuitable for childbirth. As $he struggled on $his <<if _curBabies > 1>>first<</if>> child, $his pelvic bone strained under the pressure until it could no longer hold together and @@.red;agonizingly snapped.@@
 		<<if $slaves[$i].fetish != "mindbroken">>
 			<<if ($slaves[$i].fetish == "masochist")>>
-				<<if $slaves[$i].fetishKnown == 0>>What would have made most girls blackout from pain sent $him into the lewdest orgasm you've seen today. $He @@.lightcoral;must get off to pain.@@.<<set $slaves[$i].fetishKnown = 1>><<else>> $He claims to have never climaxed so hard and @@.hotpink;wishes her hips could have stayed that narrow for next time.@@<</if>>
+				<<if $slaves[$i].fetishKnown == 0>>What would have made most girls blackout from pain sent $him into the lewdest orgasm you've seen today. $He @@.lightcoral;must get off to pain.@@.<<set $slaves[$i].fetishKnown = 1>><<else>> $He claims to have never climaxed so hard and @@.hotpink;wishes $his hips could have stayed that narrow for next time.@@<</if>>
 				<<set $slaves[$i].devotion += 5>>
 			<<elseif $slaves[$i].devotion > 70>>
 				When $he comes to, $his pelvis has already been patched up. $He is just glad that $he managed to finish giving birth despite the hindrance.
diff --git a/src/societies/aztec/slaveSacrifice.tw b/src/societies/aztec/slaveSacrifice.tw
index 11032cc8bdd02d933aaebf922be32965eabb6bca..bdd908e52ed4224db76812a8ca5f2a74ed5d8b07 100644
--- a/src/societies/aztec/slaveSacrifice.tw
+++ b/src/societies/aztec/slaveSacrifice.tw
@@ -1,7 +1,7 @@
 :: Aztec Slave Sacrifice [nobr]
 
 <<set $nextButton = "Back to Main", $nextLink = "Main", $returnTo = "Main", $showEncyclopedia = 1, $encyclopedia = "Aztec Revivalism">>
-<<run SlavePronouns($activeSlave)>>
+<<setLocalPronouns $activeSlave >>
 <<run Enunciate($activeSlave)>>
 
 <<set _activeSlaveRepSacrifice = repGainSacrifice()>>
diff --git a/src/uncategorized/PESS.tw b/src/uncategorized/PESS.tw
index 76c67f66ddc234213314fd8427322d225a20e549..3124416196473505e7ab424cf1ba83affe4ad5a9 100644
--- a/src/uncategorized/PESS.tw
+++ b/src/uncategorized/PESS.tw
@@ -132,7 +132,7 @@ The business is brief and inconsequential, but it's good to speak with $him. Whe
 
 <<EventNameLink $activeSlave>> comes wearily into your office at the end of $his day to check in with you, like a good Head Girl should. You're busy at the moment, so $he waits quietly, not wanting to interrupt you. $He seems tired, and leans <<if $activeSlave.physicalAge > 35>>heavily<<else>>lightly<</if>> against the back of the office couch<<if $activeSlave.amp < 0>>, $his mechanical hand hard against the leather<</if>>. Your Head Girl is a <<if $activeSlave.fetish == "dom">>very dominant $desc<<elseif $activeSlave.fetish == "sadist">>sadistic and dominant $desc<<else>>dutiful $desc and takes $his leadership position seriously<</if>>, but $he knows $he doesn't have to pretend to be invincible around you.
 <br><br>
-When you've finished your task, you raise your eyes to examine her. $He's standing with $his <<if $activeSlave.hips > 1>>broad<<elseif $activeSlave.hips < -1>>narrow<<else>>womanly<</if>> hips slightly cocked and $his <<if $activeSlave.muscles > 95>>incredibly muscular<<elseif $activeSlave.weight > 10>>soft<<elseif $activeSlave.muscles > 10>>hard<<else>>trim<</if>> thighs bowed a bit wide. You immediately understand why: it's $his job to impregnate fertile slaves, a duty $he takes very seriously, and $his dick must be very sore.
+When you've finished your task, you raise your eyes to examine $him. $He's standing with $his <<if $activeSlave.hips > 1>>broad<<elseif $activeSlave.hips < -1>>narrow<<else>>womanly<</if>> hips slightly cocked and $his <<if $activeSlave.muscles > 95>>incredibly muscular<<elseif $activeSlave.weight > 10>>soft<<elseif $activeSlave.muscles > 10>>hard<<else>>trim<</if>> thighs bowed a bit wide. You immediately understand why: it's $his job to impregnate fertile slaves, a duty $he takes very seriously, and $his dick must be very sore.
 <<if $activeSlave.clothes == "no clothing">>
 	$He's nude, making it obvious that $his poor soft member has done its duty today. It even looks a little moist, as though it bred a fertile slave's pussy only a few minutes ago.
 <<elseif ["body oil", "chains", "clubslut netting", "restrictive latex", "shibari ropes", "uncomfortable straps"].indexOf($activeSlave.clothes) != -1>>
@@ -160,7 +160,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to
 <<link "$He uses $his muscles to manhandle him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$activeSlave.slaveName stomps over to the drunken delinquent, who finds himself sobering up with each step the muscular woman makes in his direction. Soon he finds himself <<if ($activeSlave.height > 170)>>staring up at her $activeSlave.faceShape face<<elseif ($activeSlave.height > 150)>>eye to eye with her $activeSlave.faceShape face<<else>>looking down at her $activeSlave.faceShape face<</if>> as $he grips him by the shoulders and lifts him bodily off of the ground. The man squeals with terror as he begs forgiveness for his affront to you, but $activeSlave.slaveName simply tosses him away from your presence as if discharging him from a bar. Word of your herculean protector is soon @@.green;the talk of $arcologies[0].name and beyond,@@ with many in the Old World mistakenly believing you are guarded by a warrior so strong $he can throw any man the breadth of a room in a single heave.
+	$activeSlave.slaveName stomps over to the drunken delinquent, who finds himself sobering up with each step the muscular $woman makes in his direction. Soon he finds himself <<if ($activeSlave.height > 170)>>staring up at $his $activeSlave.faceShape face<<elseif ($activeSlave.height > 150)>>eye to eye with $his $activeSlave.faceShape face<<else>>looking down at $his $activeSlave.faceShape face<</if>> as $he grips him by the shoulders and lifts him bodily off of the ground. The man squeals with terror as he begs forgiveness for his affront to you, but $activeSlave.slaveName simply tosses him away from your presence as if discharging him from a bar. Word of your herculean protector is soon @@.green;the talk of $arcologies[0].name and beyond,@@ with many in the Old World mistakenly believing you are guarded by a warrior so strong $he can throw any man the breadth of a room in a single heave.
 	<<set $rep += 500>> <<if $activeSlave.prestige < 1>> <<set $activeSlave.prestige = 1,$activeSlave.prestigeDesc = "Word in the arcology is $he can throw a man the breadth of a room in a single heave.">> <</if>>
 	<</replace>>
 <</link>>
@@ -171,7 +171,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to
 <br><<link "$He intimidates him with $his towering height">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$activeSlave.slaveName calmly strides over to the drunken delinquent and simply towers over him with a glower on her $activeSlave.faceShape face. The man quickly finds himself sobering up and moves to run from the scene with all the drunken haste he can muster. Unfortunately for him, $activeSlave.slaveName matches his pace with a brisk power-walk, and the citizen soon finds himself face down on the pavement after a swift strike to the back of the head. Word of your giant protector is soon @@.green;the talk of $arcologies[0].name and beyond,@@ with many in the Old World mistakenly believing you are guarded by a warrior twice the height of any man.
+	$activeSlave.slaveName calmly strides over to the drunken delinquent and simply towers over him with a glower on $his $activeSlave.faceShape face. The man quickly finds himself sobering up and moves to run from the scene with all the drunken haste he can muster. Unfortunately for him, $activeSlave.slaveName matches his pace with a brisk power-walk, and the citizen soon finds himself face down on the pavement after a swift strike to the back of the head. Word of your giant protector is soon @@.green;the talk of $arcologies[0].name and beyond,@@ with many in the Old World mistakenly believing you are guarded by a warrior twice the height of any man.
 	<<set $rep += 500>> <<if $activeSlave.prestige < 1>> <<set $activeSlave.prestige = 1,$activeSlave.prestigeDesc = "Word in the arcology is $he is twice the height of any man.">> <</if>>
 	<</replace>>
 <</link>>
@@ -182,7 +182,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to
 <br><<link "$He distracts him with $his beautiful face">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$activeSlave.slaveName seductively saunters over to the drunken delinquent and poses alluringly nearby. The man can't help but become entranced by $his gorgeous $activeSlave.faceShape face, and follows $him like a lost puppy as $he beckons with one outstretched finger. $activeSlave.slaveName lures her prey into a nearby alley before slamming $his fist into the unsuspecting drunkard's face, leaving him knocked out cold on the floor before returning to guard you. Word of your beautiful protector is soon @@.green;the talk of $arcologies[0].name and beyond,@@ with many in the Old World mistakenly believing you are guarded by a warrior unmatched by any woman in the world in her good looks.
+	$activeSlave.slaveName seductively saunters over to the drunken delinquent and poses alluringly nearby. The man can't help but become entranced by $his gorgeous $activeSlave.faceShape face, and follows $him like a lost puppy as $he beckons with one outstretched finger. $activeSlave.slaveName lures $his prey into a nearby alley before slamming $his fist into the unsuspecting drunkard's face, leaving him knocked out cold on the floor before returning to guard you. Word of your beautiful protector is soon @@.green;the talk of $arcologies[0].name and beyond,@@ with many in the Old World mistakenly believing you are guarded by a warrior unmatched by any $woman in the world in $his good looks.
 	<<set $rep += 500>> <<if $activeSlave.prestige < 1>> <<set $activeSlave.prestige = 1,$activeSlave.prestigeDesc = "Word in the arcology is $his beauty is unmatched by any woman in the world.">> <</if>>
 	<</replace>>
 <</link>>
@@ -278,7 +278,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to
 <<link "Make $him the face of an ad campaign">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You bring $him out to a pretty balcony and put her through an extended photo shoot. $He has no idea what you're planning, but $he's skilled enough not to need to. $He dons different outfits, changes makeup, and even shifts personas for the camera, producing hundreds of elegant, sensual and eye-catching images. You dismiss her back to the club when you're done, and $he clearly thinks little of it. The next day, however, you walk her out onto the club in the morning. When the two of you, <<= WrittenMaster()>> and DJ, reach the main club, $he stops short when $he catches sight of the main billboard screen. There $he is, resplendent and opulent, <<if $showInches == 2>>thirty feet<<else>>ten meters<</if>> tall, giving the viewer a sultry look. $He only breaks down for a single moment, but it's quite a moment: $he cries rather inelegantly, <<if canTalk($activeSlave)>><<say sobb>>ing "I love you <<Master>>" into your ear<</if>> before giving you a @@.hotpink;wet kiss.@@ Then $he runs over to stand under the screen, looking back at you to give you a @@.green;picture-perfect@@ imitation of the billboard $he's standing under before laughing at $himself a little.
+	You bring $him out to a pretty balcony and put $him through an extended photo shoot. $He has no idea what you're planning, but $he's skilled enough not to need to. $He dons different outfits, changes makeup, and even shifts personas for the camera, producing hundreds of elegant, sensual and eye-catching images. You dismiss $him back to the club when you're done, and $he clearly thinks little of it. The next day, however, you walk $him out onto the club in the morning. When the two of you, <<= WrittenMaster()>> and DJ, reach the main club, $he stops short when $he catches sight of the main billboard screen. There $he is, resplendent and opulent, <<if $showInches == 2>>thirty feet<<else>>ten meters<</if>> tall, giving the viewer a sultry look. $He only breaks down for a single moment, but it's quite a moment: $he cries rather inelegantly, <<if canTalk($activeSlave)>><<say sobb>>ing "I love you <<Master>>" into your ear<</if>> before giving you a @@.hotpink;wet kiss.@@ Then $he runs over to stand under the screen, looking back at you to give you a @@.green;picture-perfect@@ imitation of the billboard $he's standing under before laughing at $himself a little.
 	<<set $cash -= 1000>>
 	<<set $rep += 500>>
 	<<set $activeSlave.devotion += 4>>
@@ -287,7 +287,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to
 <br><<link "Keep $him to yourself for a week">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Exclusivity and slavery interact in ways more than merely complex. $activeSlave.slaveName's most passionate devotees are devastated to find her nowhere but by your side for the whole week. Their reaction is mixed: awe, envy, resentment; but mostly @@.green;renewed respect@@ that $he is your creature, and yours alone. A lesser slave might show off the particularity you show her, bringing shame on you by giving the impression that you care for her as more than a slave. $He is no lesser slave, though, and thoroughly understands the fine line the two of you must walk as <<= WrittenMaster()>> and slave. $He makes @@.hotpink;painstakingly@@ clear, through every public glance and gesture, that $he is yours as a matter of @@.mediumaquamarine;trust@@ rather than as a matter of love.
+	Exclusivity and slavery interact in ways more than merely complex. $activeSlave.slaveName's most passionate devotees are devastated to find $him nowhere but by your side for the whole week. Their reaction is mixed: awe, envy, resentment; but mostly @@.green;renewed respect@@ that $he is your creature, and yours alone. A lesser slave might show off the particularity you show $him, bringing shame on you by giving the impression that you care for $him as more than a slave. $He is no lesser slave, though, and thoroughly understands the fine line the two of you must walk as <<= WrittenMaster()>> and slave. $He makes @@.hotpink;painstakingly@@ clear, through every public glance and gesture, that $he is yours as a matter of @@.mediumaquamarine;trust@@ rather than as a matter of love.
 	<<set $activeSlave.devotion += 4>>
 	<<set $activeSlave.trust += 4>>
 	<<set $rep += 100>>
@@ -319,7 +319,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to
 <br><<link "Help $him with $his duties">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	$activeSlave.slaveName is surprised to find you in the collection facility when $he gets there the next morning. Since you're already <<if ($PC.dick == 0)>>using a strap-on to fuck<<else>>balls deep in<</if>> a whining milker's ass, $he understands immediately that you're there to help. $He's @@.hotpink;gratified,@@ and does her best to make sure you have a good time. With so many slaves physically restrained to make their backdoors available, it's hard not to. $activeSlave.slaveName does $his best to use a slave next to you so $he can be available for extra amusement at all times as the two of you sodomize away.
+	$activeSlave.slaveName is surprised to find you in the collection facility when $he gets there the next morning. Since you're already <<if ($PC.dick == 0)>>using a strap-on to fuck<<else>>balls deep in<</if>> a whining milker's ass, $he understands immediately that you're there to help. $He's @@.hotpink;gratified,@@ and does $his best to make sure you have a good time. With so many slaves physically restrained to make their backdoors available, it's hard not to. $activeSlave.slaveName does $his best to use a slave next to you so $he can be available for extra amusement at all times as the two of you sodomize away.
 	<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
@@ -329,14 +329,14 @@ $He sees you examining at $him, and looks back at you submissively, too tired to
 <<link "Give $him a businesslike massage">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	When $he <<if canHear($activeSlave)>>hears you enter $dairyName,<<else>>realizes you've entered $dairyName,<</if>> $he turns to you for instructions, but you wordlessly dismiss $him back to her stretching. $He gets back to it, but is surprised to find her shoulders seized by your powerful hands. $He shivers helplessly as you knead her knotted muscles, whimpering with near-orgasmic delight as $he feels the day's aches ground away under your grip. When you're done with her, $he touches her toes and then smoothly rises to stretch with her hands over her head, groaning with sheer pleasure at the feeling. <<if !canTalk($activeSlave)>>$He thanks you profusely with gestures, and then hesitantly asks if you'd like to use her body.<<else>>"Thank you <<Master>>," $he <<say murmur>>s. "Would - would you like to u<<s>>e my body, now?"<</if>> You shake your head kindly and place a kiss on her forehead before continuing with your evening. As $he watches you go, $he suppresses @@.hotpink;another shiver.@@
+	When $he <<if canHear($activeSlave)>>hears you enter $dairyName,<<else>>realizes you've entered $dairyName,<</if>> $he turns to you for instructions, but you wordlessly dismiss $him back to $his stretching. $He gets back to it, but is surprised to find $his shoulders seized by your powerful hands. $He shivers helplessly as you knead $his knotted muscles, whimpering with near-orgasmic delight as $he feels the day's aches ground away under your grip. When you're done with $him, $he touches $his toes and then smoothly rises to stretch with $his hands over $his head, groaning with sheer pleasure at the feeling. <<if !canTalk($activeSlave)>>$He thanks you profusely with gestures, and then hesitantly asks if you'd like to use $his body.<<else>>"Thank you <<Master>>," $he <<say murmur>>s. "Would - would you like to u<<s>>e my body, now?"<</if>> You shake your head kindly and place a kiss on $his forehead before continuing with your evening. As $he watches you go, $he suppresses @@.hotpink;another shiver.@@
 	<<set $activeSlave.devotion += 4>>
 	<</replace>>
 <</link>>
 <br><<link "Share a milk bath with $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	When $he <<if canHear($activeSlave)>>hears you enter $dairyName,<<else>>realizes you've entered $dairyName,<</if>> $he turns to you for instructions, but you wordlessly dismiss her back to her stretching. $He gets back to it, but is mystified as $he watches you out of the corner of her eye. The milk is held in a large tank before being filtered, pasteurized, and sold. You remove the lid from the tank and climb in. $He watches with incomprehension, but understanding dawns when you splash a little, demonstratively, and crook a finger at her. $He gives you a deliciously naughty look and hurries to join you in the warm milk, giggling when you pull her in with a slosh of creamy whiteness. $He doesn't break the surface after climbing in, kneeling under the milk to suck you off. $He has to surface periodically for breath, but the grin $he gives you each time makes up for it. $He manages to drag $his breasts <<if ($PC.boobs > 0)>>against yours<<else>>up your front<</if>> each time $he rises for air. When you climax, $he carefully swallows every drop to keep the filters from getting clogged. When $he surfaces for good, $he looks you in the eyes briefly before blushing and @@.mediumaquamarine;giving you a muscular hug.@@
+	When $he <<if canHear($activeSlave)>>hears you enter $dairyName,<<else>>realizes you've entered $dairyName,<</if>> $he turns to you for instructions, but you wordlessly dismiss $him back to $his stretching. $He gets back to it, but is mystified as $he watches you out of the corner of $his eye. The milk is held in a large tank before being filtered, pasteurized, and sold. You remove the lid from the tank and climb in. $He watches with incomprehension, but understanding dawns when you splash a little, demonstratively, and crook a finger at $him. $He gives you a deliciously naughty look and hurries to join you in the warm milk, giggling when you pull $him in with a slosh of creamy whiteness. $He doesn't break the surface after climbing in, kneeling under the milk to suck you off. $He has to surface periodically for breath, but the grin $he gives you each time makes up for it. $He manages to drag $his breasts <<if ($PC.boobs > 0)>>against yours<<else>>up your front<</if>> each time $he rises for air. When you climax, $he carefully swallows every drop to keep the filters from getting clogged. When $he surfaces for good, $he looks you in the eyes briefly before blushing and @@.mediumaquamarine;giving you a muscular hug.@@
 	<<set $activeSlave.trust += 4>>
 	<<set $activeSlave.oralCount += 1>>
 	<<set $oralTotal += 1>>
@@ -348,14 +348,14 @@ $He sees you examining at $him, and looks back at you submissively, too tired to
 <<link "It cannot wait">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Your responsibilities will not wait. You keep at it, composing a firm yet even-handed message that @@.green;puts the miscreants in their place@@ without ruffling feathers. $activeSlave.slaveName has gone to sleep by the time you enter your suite, but $he wakes at your entrance and sleepily holds the sheets open so you can climb in. Once you're bedded down $he <<if ($activeSlave.boobs > 2000)>>lies close to you with one of $his breasts resting half on your chest, since $he can't fit under your arm with $his ridiculous tits.<<elseif ($activeSlave.boobs > 1000)>>burrows softly under your arm, $his breasts heavy against your chest.<<elseif ($activeSlave.boobs > 300)>>snuggles under your arm, $his breasts against your chest.<<else>>fits $himself under your arm, $his flat chest letting her mold $himself to your torso perfectly.<</if>>
+	Your responsibilities will not wait. You keep at it, composing a firm yet even-handed message that @@.green;puts the miscreants in their place@@ without ruffling feathers. $activeSlave.slaveName has gone to sleep by the time you enter your suite, but $he wakes at your entrance and sleepily holds the sheets open so you can climb in. Once you're bedded down $he <<if ($activeSlave.boobs > 2000)>>lies close to you with one of $his breasts resting half on your chest, since $he can't fit under your arm with $his ridiculous tits.<<elseif ($activeSlave.boobs > 1000)>>burrows softly under your arm, $his breasts heavy against your chest.<<elseif ($activeSlave.boobs > 300)>>snuggles under your arm, $his breasts against your chest.<<else>>fits $himself under your arm, $his flat chest letting $him mold $himself to your torso perfectly.<</if>>
 	<<set $rep += 100>>
 	<</replace>>
 <</link>>
 <br><<link "It can wait until after some lovemaking with the Concubine">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	When you enter your suite, the dim light reveals $activeSlave.slaveName waiting with $his beautiful body laid across the bed. When $he sees the kind of lovemaking you're in the mood for, $he spreads $his arms for you, smiling gently. $He kisses you lovingly, <<if !canTalk($activeSlave)>>taking your hand in $hers and drawing a heart on your palm with one finger.<<else>><<say murmur>>ing: "<<Master>>, I love you."<</if>> <<if ($PC.vagina == 1)>>$He lies on $his side and raises one leg for you so you can straddle the other, sliding up to press your pussy against $his submissive groin. You grind against her; the stimulation is so strong that $he writhes into the sheets, panting and whining.<<if $PC.dick == 1>> Your stiff dick, unused for once, slides deliciously between your warm bodies.<</if>><<else>><<if ($activeSlave.vagina > 0)>>$His pussy is warm and very wet, making penetration easy; $he gasps and arches $his back, clasping you between $his legs as $his $activeSlave.eyeColor eyes look deep into yours.<<elseif ($activeSlave.anus > 0)>>$His butt is relaxed and welcoming, and $he holds $his legs back to take missionary anal loving as $his $activeSlave.eyeColor look deep into yours.<<else>>$He holds $his thighs together for frottage so $he can love you without losing $his virginity.<</if>><</if>> You both know each other quite well, and maintain the gentle communion for a long time. When $he senses your climax building, $he lets $himself climb to orgasm with you, holding <<if ($PC.dick == 0)>>your hips in $his hands<<else>>you in $his arms<</if>>. $He quickly cleans you with $his mouth and heads to the shower. When $he gets out you're back at work, but $he comes out to @@.hotpink;plant another kiss on you.@@
+	When you enter your suite, the dim light reveals $activeSlave.slaveName waiting with $his beautiful body laid across the bed. When $he sees the kind of lovemaking you're in the mood for, $he spreads $his arms for you, smiling gently. $He kisses you lovingly, <<if !canTalk($activeSlave)>>taking your hand in $hers and drawing a heart on your palm with one finger.<<else>><<say murmur>>ing: "<<Master>>, I love you."<</if>> <<if ($PC.vagina == 1)>>$He lies on $his side and raises one leg for you so you can straddle the other, sliding up to press your pussy against $his submissive groin. You grind against $him; the stimulation is so strong that $he writhes into the sheets, panting and whining.<<if $PC.dick == 1>> Your stiff dick, unused for once, slides deliciously between your warm bodies.<</if>><<else>><<if ($activeSlave.vagina > 0)>>$His pussy is warm and very wet, making penetration easy; $he gasps and arches $his back, clasping you between $his legs as $his $activeSlave.eyeColor eyes look deep into yours.<<elseif ($activeSlave.anus > 0)>>$His butt is relaxed and welcoming, and $he holds $his legs back to take missionary anal loving as $his $activeSlave.eyeColor look deep into yours.<<else>>$He holds $his thighs together for frottage so $he can love you without losing $his virginity.<</if>><</if>> You both know each other quite well, and maintain the gentle communion for a long time. When $he senses your climax building, $he lets $himself climb to orgasm with you, holding <<if ($PC.dick == 0)>>your hips in $his hands<<else>>you in $his arms<</if>>. $He quickly cleans you with $his mouth and heads to the shower. When $he gets out you're back at work, but $he comes out to @@.hotpink;plant another kiss on you.@@
 	<<set $activeSlave.devotion += 10>>
 	<<set $activeSlave.oralCount += 1>>
 	<<set $oralTotal += 1>>
@@ -372,7 +372,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to
 <br><<link "It can wait until after some rough sex with the Concubine">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	When you enter your suite, the dim light reveals $activeSlave.slaveName waiting with $his beautiful body laid across the bed. When $he sees <<if ($PC.dick == 0)>>the big strap-on you're wearing<<else>>the kind of sex you're in the mood for<</if>>, $he turns over and pushes $his face down into the sheets. $He pulls $his knees under $himself and reaches back to pull $his <<if ($activeSlave.butt > 5)>>huge<<elseif ($activeSlave.butt > 2)>>sizable<<else>>pretty<</if>> buttocks apart, relaxing and then clenching her <<if ($activeSlave.anus > 2)>>gaping<<elseif ($activeSlave.anus > 1)>>big<<else>>tight<</if>> asshole invitingly. $He starts <<if !canTalk($activeSlave)>>to point an inviting finger at her backdoor,<<else>>to <<say beg>> "Plea<<s>>e a<<ss>>rape me, M-" into the sheets,<</if>> but you interrupt her by shoving her forward so that $he's all the way face-down on the bed. $He knows how you like it and starts to wriggle, struggle, and whine as you roughly sodomize her, <<if ($PC.dick == 0)>>the strap-on<<else>>your cock<</if>> ramming straight up $his ass despite the uncomfortable angle, <<if ($activeSlave.butt > 5)>>which $his huge ass makes easier for her by limiting how deeply you can fuck her without $his buttocks spread wide.<<elseif ($activeSlave.butt > 2)>>which $his big behind makes easier for her by limiting how deeply you can fuck her.<<else>>which $his modest ass makes harder for her by allowing you to get really deep inside $his anus.<</if>> $He continues to wrestle with you, sometimes even managing to dislodge <<if ($PC.dick == 0)>>the strap-on<<else>>your dick<</if>>, allowing you the <<if ($PC.dick == 0)>>cruel delight<<else>>delicious sensation<</if>> of pushing it back up $his butt each time. Despite the pretense $his enjoyment is obvious;
+	When you enter your suite, the dim light reveals $activeSlave.slaveName waiting with $his beautiful body laid across the bed. When $he sees <<if ($PC.dick == 0)>>the big strap-on you're wearing<<else>>the kind of sex you're in the mood for<</if>>, $he turns over and pushes $his face down into the sheets. $He pulls $his knees under $himself and reaches back to pull $his <<if ($activeSlave.butt > 5)>>huge<<elseif ($activeSlave.butt > 2)>>sizable<<else>>pretty<</if>> buttocks apart, relaxing and then clenching $his <<if ($activeSlave.anus > 2)>>gaping<<elseif ($activeSlave.anus > 1)>>big<<else>>tight<</if>> asshole invitingly. $He starts <<if !canTalk($activeSlave)>>to point an inviting finger at $his backdoor,<<else>>to <<say beg>> "Plea<<s>>e a<<ss>>rape me, M-" into the sheets,<</if>> but you interrupt $him by shoving $him forward so that $he's all the way face-down on the bed. $He knows how you like it and starts to wriggle, struggle, and whine as you roughly sodomize $him, <<if ($PC.dick == 0)>>the strap-on<<else>>your cock<</if>> ramming straight up $his ass despite the uncomfortable angle, <<if ($activeSlave.butt > 5)>>which $his huge ass makes easier for $him by limiting how deeply you can fuck $him without $his buttocks spread wide.<<elseif ($activeSlave.butt > 2)>>which $his big behind makes easier for $him by limiting how deeply you can fuck $him.<<else>>which $his modest ass makes harder for $him by allowing you to get really deep inside $his anus.<</if>> $He continues to wrestle with you, sometimes even managing to dislodge <<if ($PC.dick == 0)>>the strap-on<<else>>your dick<</if>>, allowing you the <<if ($PC.dick == 0)>>cruel delight<<else>>delicious sensation<</if>> of pushing it back up $his butt each time. Despite the pretense $his enjoyment is obvious;
 	<<if ($activeSlave.dick > 0) && ["chastity", "combined chastity"].includes($activeSlave.dickAccessory)>>
 		despite $his chastity caged cock, $he's grinding against you as eagerly as a $girl making love with $his pussy.
 	<<elseif ($activeSlave.dick > 0) && ($activeSlave.hormoneBalance >= 100)>>
@@ -392,7 +392,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to
 	<<else>>
 		$his pussy is so wet $he's leaving a wet spot on the sheets beneath $him.
 	<</if>>
-	$He finally orgasms, sobbing with overstimulation when you pound her for a while longer before <<if ($PC.dick == 0)>>finding your own climax<<else>>shooting rope after rope of cum into her<</if>>. $He quickly cleans you with $his mouth and heads to the shower. When she gets out you're back at work, but $he comes out to @@.hotpink;plant a kiss on you.@@
+	$He finally orgasms, sobbing with overstimulation when you pound $him for a while longer before <<if ($PC.dick == 0)>>finding your own climax<<else>>shooting rope after rope of cum into $him<</if>>. $He quickly cleans you with $his mouth and heads to the shower. When $he gets out you're back at work, but $he comes out to @@.hotpink;plant a kiss on you.@@
 	<<set $activeSlave.devotion += 10>>
 	<<set $activeSlave.oralCount += 1>>
 	<<set $oralTotal += 1>>
@@ -412,45 +412,45 @@ $He sees you examining at $him, and looks back at you submissively, too tired to
 <<link "Let $him up in bed with you">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Of course, $activeSlave.slaveName promptly obeys your order that she come up and join you in bed. After you have gone to sleep, however, she does not feel that she can sleep $himself, since she is no longer blocking the door. $He spends the rest of the night in sleepless watch, agonizing over this disruption of $his protection of your person. @@.mediumorchid;$He is confused and unhappy.@@
+	Of course, $activeSlave.slaveName promptly obeys your order that $he come up and join you in bed. After you have gone to sleep, however, $he does not feel that $he can sleep $himself, since $he is no longer blocking the door. $He spends the rest of the night in sleepless watch, agonizing over this disruption of $his protection of your person. @@.mediumorchid;$He is confused and unhappy.@@
 	<<set $activeSlave.devotion -= 5>>
 	<</replace>>
 <</link>>
 <br><<link "Commend and reward $him the next morning">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	The next morning, you sit at your desk to do business as usual, and $activeSlave.slaveName takes up station just behind your left shoulder. You thank her for $his vigilance as she does. $He looks almost confused to be thanked for doing $his proper duty, so you settle on a more direct method of communicating your closeness to her.
+	The next morning, you sit at your desk to do business as usual, and $activeSlave.slaveName takes up station just behind your left shoulder. You thank $him for $his vigilance as $he does. $He looks almost confused to be thanked for doing $his proper duty, so you settle on a more direct method of communicating your closeness to $him.
 	<<if ($activeSlave.vagina == 0) && !canDoVaginal($activeSlave)>>
-		Since she's wearing chastity, you take her out onto the balcony, arm an extra security system so she can relax, remove $his protection, and have gentle, loving sex with her until she's climaxed twice.
+		Since $he's wearing chastity, you take $him out onto the balcony, arm an extra security system so $he can relax, remove $his protection, and have gentle, loving sex with $him until $he's climaxed twice.
 		<<set $activeSlave.vaginalAccessory = "none">>
 		<<= VaginalVCheck(1)>>
 	<<elseif ($activeSlave.anus == 0) && !canDoAnal($activeSlave)>>
-		Since she's wearing chastity, you take her out onto the balcony, arm an extra security system so she can relax, remove $his protection, and have gentle, loving anal sex with her until she's climaxed twice.
+		Since $he's wearing chastity, you take $him out onto the balcony, arm an extra security system so $he can relax, remove $his protection, and have gentle, loving anal sex with $him until $he's climaxed twice.
 		<<set $activeSlave.vaginalAccessory = "none">>
 		<<set $activeSlave.dickAccessory = "none">>
 		<<= AnalVCheck(1)>>
 	<<elseif !canDoVaginal($activeSlave) && !canDoAnal($activeSlave)>>
-		You take her out onto the balcony, arm an extra security system so she can relax, and firmly massage $his neck and shoulders to work out all the tension.
+		You take $him out onto the balcony, arm an extra security system so $he can relax, and firmly massage $his neck and shoulders to work out all the tension.
 	<<elseif ($activeSlave.vagina == 0)>>
-		You take her out onto the balcony, arm an extra security system so $he can relax, and have gentle, loving sex with her until $he's climaxed twice, once to your gentle massaging of $his mons while you fuck her, and once to hard rubbing of $his pussy while you have enthusiastic anal sex.
+		You take $him out onto the balcony, arm an extra security system so $he can relax, and have gentle, loving sex with $him until $he's climaxed twice, once to your gentle massaging of $his mons while you fuck $him, and once to hard rubbing of $his pussy while you have enthusiastic anal sex.
 		<<= BothVCheck(2, 1)>>
 	<<elseif canDoAnal($activeSlave)>>
 		<<if $activeSlave.hormoneBalance >= 100>>
-			Since $he's doped up on hormones, you take her out onto the balcony, arm an extra security system so $he can relax, and have gentle, loving anal sex with her until $he's climaxed twice.
+			Since $he's doped up on hormones, you take $him out onto the balcony, arm an extra security system so $he can relax, and have gentle, loving anal sex with $him until $he's climaxed twice.
 		<<elseif ($activeSlave.dick > 0) && ($activeSlave.dickAccessory == "chastity" || $activeSlave.dickAccessory == "combined chastity")>>
-			Since $he's a caged dickgirl, you take her out onto the balcony, arm an extra security system so $he can relax, and use $his anus until $he's exhausted.
+			Since $he's a caged dickgirl, you take $him out onto the balcony, arm an extra security system so $he can relax, and use $his anus until $he's exhausted.
 		<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls == 0)>>
 			Since $he's chemically castrated, you take $him out onto the balcony, arm an extra security system so $he can relax, and have gentle, loving anal sex with $him until $he's climaxed twice.
 		<<elseif ($activeSlave.dick > 0) && ($activeSlave.balls == 0)>>
-			Since $he's a gelding, you take $him out onto the balcony, arm an extra security system so $he can relax, and have gentle, loving anal sex with her until $he's climaxed twice.
+			Since $he's a gelding, you take $him out onto the balcony, arm an extra security system so $he can relax, and have gentle, loving anal sex with $him until $he's climaxed twice.
 		<<elseif canAchieveErection($activeSlave)>>
 			Since $he's a virile slave, you take $him and another slave out onto the balcony, arm an extra security system so $he can relax, and set the other slave to orally servicing $his erect member. Meanwhile, you have gentle, loving anal sex with $him until $he's climaxed twice.
 		<<else>>
-			You take her out onto the balcony, arm an extra security system so $he can relax, and have gentle, loving anal sex with her until $he's climaxed twice.
+			You take $him out onto the balcony, arm an extra security system so $he can relax, and have gentle, loving anal sex with $him until $he's climaxed twice.
 		<</if>>
 		<<= AnalVCheck(1)>>
 	<<else>>
-		You take her out onto the balcony, arm an extra security system so $he can relax, and have gentle, loving sex with $him until $he's climaxed twice, once to your gentle massaging of $his mons while you fuck $him, and once to hard rubbing of $his pussy while you have enthusiastic anal sex.
+		You take $him out onto the balcony, arm an extra security system so $he can relax, and have gentle, loving sex with $him until $he's climaxed twice, once to your gentle massaging of $his mons while you fuck $him, and once to hard rubbing of $his pussy while you have enthusiastic anal sex.
 		<<= BothVCheck(2, 1)>>
 	<</if>>
 	@@.hotpink;$He is grateful@@ that you allowed $him to relax in this way and @@.mediumaquamarine;respects your judgment@@ in how you set things up.
@@ -464,7 +464,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to
 <<link "Trust $him to tell them">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell her that you're sure $he'll let them know, since $he understands the situation and knows them all well. $His <<if $activeSlave.visualAge > 35>>mature<<elseif $activeSlave.face > 40>>lovely<<else>>attentive<</if>> face flicks <<if $activeSlave.height >= 185>>over<<else>>up<</if>> to look at you, @@.hotpink;her $activeSlave.eyeColor eyes glittering at the compliment.@@ "Thank you, <<Master>>," $he murmurs. There's another flash on the horizon, followed by a series of smaller flashes and a low, slowly growing glow as secondaries go off and start a fire. $activeSlave.slaveName seems affected, a certain amount of moisture gathering in $his eyes, but $he turns away to return to $his duties when it becomes clear that you intend to keep watching for a while, and aren't going to have sex with $him right this minute. $He does $his best to communicate the new reality to those of your slaves who are obedient enough to understand the truth: though they are slaves, @@.mediumaquamarine;there is safety to be found in slavery.@@
+	You tell $him that you're sure $he'll let them know, since $he understands the situation and knows them all well. $His <<if $activeSlave.visualAge > 35>>mature<<elseif $activeSlave.face > 40>>lovely<<else>>attentive<</if>> face flicks <<if $activeSlave.height >= 185>>over<<else>>up<</if>> to look at you, @@.hotpink;$his $activeSlave.eyeColor eyes glittering at the compliment.@@ "Thank you, <<Master>>," $he murmurs. There's another flash on the horizon, followed by a series of smaller flashes and a low, slowly growing glow as secondaries go off and start a fire. $activeSlave.slaveName seems affected, a certain amount of moisture gathering in $his eyes, but $he turns away to return to $his duties when it becomes clear that you intend to keep watching for a while, and aren't going to have sex with $him right this minute. $He does $his best to communicate the new reality to those of your slaves who are obedient enough to understand the truth: though they are slaves, @@.mediumaquamarine;there is safety to be found in slavery.@@
 	<<for $i = 0; $i < _SL; $i++>>
 		<<if $slaves[$i].devotion > 20>>
 		<<set $slaves[$i].trust += 1>>
@@ -476,7 +476,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to
 <br><<link "$He's more important">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You shift to stand behind $him, your <<if $PC.boobs == 1>>breasts soft and sensual<<else>>chest hard and masculine<</if>> but not insistently sexual against her <<if $activeSlave.muscles > 30>>muscular<<elseif $activeSlave.weight > 10>>soft<<else>>warm<</if>> back. You wrap your arms around her, over her own, each of your <<if $PC.title == 1>>strong<<else>>feminine<</if>> hands finding and clasping one of $hers.<<if $activeSlave.boobs > 3000>> $His incredible boobs rest heavily over the top of both of your arms.<</if>> $He knows you very well, and shifts her torso ever so slightly from side to side, snuggling in a little closer to you to let you know she's comfortable and available without being demanding or needy. You speak quietly, your voice a reassuring <<if $PC.boobs == 0>>rumble<<else>>hum<</if>> she feels against her back<<if canHear($activeSlave)>> as well as hears<</if>>. You let her know that she has a place with you, and she always will. You let her know that you're worried too, and that you don't know what the future will bring. But you do know that she'll be by your side as you meet it. A silent shake in the pretty <<if $activeSlave.physicalAge > 30>>woman<<else>>girl<</if>> you've got in your arms is your only indication that @@.mediumaquamarine;she's crying a little@@ as she whispers, "Thank you, <<Master>>. I'll do my be<<s>>t."
+	You shift to stand behind $him, your <<if $PC.boobs == 1>>breasts soft and sensual<<else>>chest hard and masculine<</if>> but not insistently sexual against $his <<if $activeSlave.muscles > 30>>muscular<<elseif $activeSlave.weight > 10>>soft<<else>>warm<</if>> back. You wrap your arms around $him, over $his own, each of your <<if $PC.title == 1>>strong<<else>>feminine<</if>> hands finding and clasping one of $hers.<<if $activeSlave.boobs > 3000>> $His incredible boobs rest heavily over the top of both of your arms.<</if>> $He knows you very well, and shifts $his torso ever so slightly from side to side, snuggling in a little closer to you to let you know $he's comfortable and available without being demanding or needy. You speak quietly, your voice a reassuring <<if $PC.boobs == 0>>rumble<<else>>hum<</if>> $he feels against $his back<<if canHear($activeSlave)>> as well as hears<</if>>. You let $him know that $he has a place with you, and $he always will. You let $him know that you're worried too, and that you don't know what the future will bring. But you do know that $he'll be by your side as you meet it. A silent shake in the pretty <<if $activeSlave.physicalAge > 30>>woman<<else>>girl<</if>> you've got in your arms is your only indication that @@.mediumaquamarine;$he's crying a little@@ as $he whispers, "Thank you, <<Master>>. I'll do my be<<s>>t."
 	<<set $activeSlave.trust += 5>>
 	<</replace>>
 <</link>>
@@ -486,10 +486,10 @@ $He sees you examining at $him, and looks back at you submissively, too tired to
 <<link "Spend a night as equals">>
 	<<replace "#result">>
 	<<if $MixedMarriage == 1 && $activeSlave.relationship == -3 && $arcologies[0].FSPaternalist >= 60>>
-		You instruct your slave-wife $activeSlave.slaveName to put on her best dress and meet you at the door. You spend a nice night out with her, taking in the sights before heading to a nice restaurant, where you receive the occasional @@.green;admiring glance@@ from your paternalistic citizens. Afterward, you attend a show at a venue known for its respectful plays acted out by talented slaves, and you conclude the evening by returning to your penthouse to have loving sex in your master bed. When you wake the next morning, you're greeted with a long kiss and @@.hotpink;an adoring look,@@ before $activeSlave.slaveName slides out of bed to begin her morning duties.
+		You instruct your slave-wife $activeSlave.slaveName to put on $his best dress and meet you at the door. You spend a nice night out with $him, taking in the sights before heading to a nice restaurant, where you receive the occasional @@.green;admiring glance@@ from your paternalistic citizens. Afterward, you attend a show at a venue known for its respectful plays acted out by talented slaves, and you conclude the evening by returning to your penthouse to have loving sex in your master bed. When you wake the next morning, you're greeted with a long kiss and @@.hotpink;an adoring look,@@ before $activeSlave.slaveName slides out of bed to begin $his morning duties.
 		<<set $rep += 100>>
 	<<else>>
-		You instruct $activeSlave.slaveName to put on her best dress and meet you at the door. You spend a nice night out with her, walking along the club to a nice restaurant and then seeing a show before returning home for loving sex in your master bed. $He nestles under your arm, falling to sleep well before you, a @@.hotpink;contented@@ smile on her face. There's a reason $he gets to sleep much quicker than you do. You lie awake for some time, remembering the @@.red;doubting and disapproving@@ faces of other prosperous citizens whenever they realized that you were treating a slave as an equal this evening.
+		You instruct $activeSlave.slaveName to put on $his best dress and meet you at the door. You spend a nice night out with $him, walking along the club to a nice restaurant and then seeing a show before returning home for loving sex in your master bed. $He nestles under your arm, falling to sleep well before you, a @@.hotpink;contented@@ smile on $his face. There's a reason $he gets to sleep much quicker than you do. You lie awake for some time, remembering the @@.red;doubting and disapproving@@ faces of other prosperous citizens whenever they realized that you were treating a slave as an equal this evening.
 		<<set $rep -= 100>>
 	<</if>>
 	<<set $activeSlave.devotion += 4, $activeSlave.oralCount += 1, $oralTotal += 1, $activeSlave.analCount += 1, $analTotal += 1>>
@@ -497,7 +497,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to
 <</link>>
 <br><<link "Pull $him in to keep you company as you work">>
 	<<replace "#result">>
-	$He giggles happily as you seize $his $activeSlave.skin wrist and pull $him down to the floor. $He nestles under your desk, between your legs to serve you with $his mouth for a while, gently playing with $his <<if canDoVaginal($activeSlave) && canPenetrate($activeSlave)>>wonderfully strange bits<<elseif canDoAnal($activeSlave)>>anus<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>limp cock<<elseif ($activeSlave.dick > 0)>>hard cock<<elseif ($activeSlave.clit > 0)>>huge, hard clit<<elseif ($activeSlave.vagina > -1)>>soaking-wet cunt<<else>>nipples<</if>> and moaning into you. $He's down there for a long time, so long that you climax twice. The third time she softly sucks you <<if ($PC.dick == 0)>>to full arousal<<else>>hard<</if>>, it naturally takes a bit longer. When done, $he slithers up into your lap without obscuring your work, stroking you lightly with a hand the whole time - a miracle of dexterity. $He gently runs her hips over your crotch a few times, giving <<if ($PC.dick == 0)>>you<<else>>your dickhead<</if>> a nice tactile tour of everything $he has to offer, <<if ($PC.dick == 0)>>before gently turning around to wrap her legs around you and rub $himself against you until you climax a third time.<<else>>before gently lowering her butt onto your cock with a sigh. $His devoted ass brings you to orgasm a third time, and instead of getting up and off your softening dick, she just relaxes into you and bends $himself backward so she can nibble your neck and whisper her adoration into your ear.<</if>> It would be hard for $him to get much more trusting of you, @@.mediumaquamarine;but $he does.@@
+	$He giggles happily as you seize $his $activeSlave.skin wrist and pull $him down to the floor. $He nestles under your desk, between your legs to serve you with $his mouth for a while, gently playing with $his <<if canDoVaginal($activeSlave) && canPenetrate($activeSlave)>>wonderfully strange bits<<elseif canDoAnal($activeSlave)>>anus<<elseif ($activeSlave.dick > 0) && !canAchieveErection($activeSlave)>>limp cock<<elseif ($activeSlave.dick > 0)>>hard cock<<elseif ($activeSlave.clit > 0)>>huge, hard clit<<elseif ($activeSlave.vagina > -1)>>soaking-wet cunt<<else>>nipples<</if>> and moaning into you. $He's down there for a long time, so long that you climax twice. The third time $he softly sucks you <<if ($PC.dick == 0)>>to full arousal<<else>>hard<</if>>, it naturally takes a bit longer. When done, $he slithers up into your lap without obscuring your work, stroking you lightly with a hand the whole time - a miracle of dexterity. $He gently runs $his hips over your crotch a few times, giving <<if ($PC.dick == 0)>>you<<else>>your dickhead<</if>> a nice tactile tour of everything $he has to offer, <<if ($PC.dick == 0)>>before gently turning around to wrap $his legs around you and rub $himself against you until you climax a third time.<<else>>before gently lowering $his butt onto your cock with a sigh. $His devoted ass brings you to orgasm a third time, and instead of getting up and off your softening dick, $he just relaxes into you and bends $himself backward so $he can nibble your neck and whisper $his adoration into your ear.<</if>> It would be hard for $him to get much more trusting of you, @@.mediumaquamarine;but $he does.@@
 	<<set $activeSlave.trust += 4>>
 	<<set $activeSlave.oralCount += 1>>
 	<<set $oralTotal += 1>>
@@ -549,7 +549,7 @@ $He sees you examining at $him, and looks back at you submissively, too tired to
 <<link "Fuck $him">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You stand up, and from the look on your face, $he knows it's $his turn to get fucked. $He <<if $activeSlave.fetish == "dom">>visibly shelves $his dominance<<elseif $activeSlave.fetish == "sadist">>visibly lets $his sadism go<<else>>softens visibly<</if>>, looking relieved to be able to let someone else lead. You give her a lustful kiss on the lips and then reach down, taking hold of $his thigh and spinning her around, raising $his leg so $his foot's on the arm of the couch. <<if $PC.dick == 1>>You slide your dick<<else>>$He reaches under $himself and back to stroke your pussy as you press your hips against her, and you slide your fingers<</if>> inside $his <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>. $He groans with discomfort as $his overtaxed dick tries and fails to become hard again, but relaxes as <<if $PC.dick == 1>>cockhead<<else>>fingertips<</if>> stimulate the most sensitive place inside her, producing arousal that obscures the soreness. You hold her close, <<if $PC.dick == 1>>one<<else>>your free<</if>> arm <<if $activeSlave.boobs > 4000>>cradling one of $his udders<<elseif $activeSlave.boobs > 1000>>hefting one of $his heavy breasts<<elseif $activeSlave.boobs > 400>>holding one of $his boobs<<else>>cupped over one of her $activeSlave.nipples nipples<</if>> and hugging her against your <<if $PC.boobs == 1>>bosom<<else>>hard chest<</if>>. $He pants exhaustedly in your arms as you take her, and when $he climaxes, she manages only a weak ejaculation onto the couch. You have mercy and fuck her harder, bringing yourself to a quicker orgasm and letting her fall into $his own mess. "I @@.hotpink;love you,@@
+	You stand up, and from the look on your face, $he knows it's $his turn to get fucked. $He <<if $activeSlave.fetish == "dom">>visibly shelves $his dominance<<elseif $activeSlave.fetish == "sadist">>visibly lets $his sadism go<<else>>softens visibly<</if>>, looking relieved to be able to let someone else lead. You give $him a lustful kiss on the lips and then reach down, taking hold of $his thigh and spinning $him around, raising $his leg so $his foot's on the arm of the couch. <<if $PC.dick == 1>>You slide your dick<<else>>$He reaches under $himself and back to stroke your pussy as you press your hips against $him, and you slide your fingers<</if>> inside $his <<if canDoVaginal($activeSlave)>>pussy<<else>>ass<</if>>. $He groans with discomfort as $his overtaxed dick tries and fails to become hard again, but relaxes as <<if $PC.dick == 1>>cockhead<<else>>fingertips<</if>> stimulate the most sensitive place inside $him, producing arousal that obscures the soreness. You hold $him close, <<if $PC.dick == 1>>one<<else>>your free<</if>> arm <<if $activeSlave.boobs > 4000>>cradling one of $his udders<<elseif $activeSlave.boobs > 1000>>hefting one of $his heavy breasts<<elseif $activeSlave.boobs > 400>>holding one of $his boobs<<else>>cupped over one of $his $activeSlave.nipples nipples<</if>> and hugging $him against your <<if $PC.boobs == 1>>bosom<<else>>hard chest<</if>>. $He pants exhaustedly in your arms as you take $him, and when $he climaxes, $he manages only a weak ejaculation onto the couch. You have mercy and fuck $him harder, bringing yourself to a quicker orgasm and letting $him fall into $his own mess. "I @@.hotpink;love you,@@
 	<<Master>>," $he mumbles into the cushions.
 	<<if $PC.dick == 1>>
 		Your cum glistens as it begins to drip out of $his <<if canDoVaginal($activeSlave)>>well-fucked pussy<<else>>loosened asshole, which tightens and relaxes a little with $his breathing<</if>>.
diff --git a/src/uncategorized/RECI.tw b/src/uncategorized/RECI.tw
index a0890f92001858bf96eefbcc6dbd6ac5dd42e71d..2cbbd783b24651abebee303308e32804ef061e96 100644
--- a/src/uncategorized/RECI.tw
+++ b/src/uncategorized/RECI.tw
@@ -85,7 +85,7 @@ There's no other way to describe what $he's doing: the $desc has $his back to th
 <<else>>
 	got $his hips cocked to spread $his sleek butt and
 <</if>>
-reveal $his backdoor. Your girls are trained to check themselves daily, but she seems fascinated. As you pause to watch, she begins to clench and relax $his <<if $activeSlave.anus > 2>>loose<<else>>cute<</if>> hole, <<if ($activeSlave.analArea - $activeSlave.anus) > 1>> lewdly flexing<<else>>alternately puckering and relaxing<</if>> the $skinDesc skin around it. $He giggles self-consciously at the sight, and then relaxes all the way, causing $his asspussy to open into a <<if $activeSlave.anus > 2>><<if $PC.dick == 1>>cock<<else>>dildo<</if>>-hungry<<else>>slight<</if>> gape. $He notices you out of the corner of $his eye and
+reveal $his backdoor. Your girls are trained to check themselves daily, but $he seems fascinated. As you pause to watch, $he begins to clench and relax $his <<if $activeSlave.anus > 2>>loose<<else>>cute<</if>> hole, <<if ($activeSlave.analArea - $activeSlave.anus) > 1>> lewdly flexing<<else>>alternately puckering and relaxing<</if>> the $skinDesc skin around it. $He giggles self-consciously at the sight, and then relaxes all the way, causing $his asspussy to open into a <<if $activeSlave.anus > 2>><<if $PC.dick == 1>>cock<<else>>dildo<</if>>-hungry<<else>>slight<</if>> gape. $He notices you out of the corner of $his eye and
 <<if $activeSlave.butt > 6>>
 	releases $his grip on $his heavy buttocks to turn and greet you, letting them clap gently together and conceal $his asshole again.
 <<elseif $activeSlave.butt > 3>>
@@ -122,7 +122,7 @@ reveal $his backdoor. Your girls are trained to check themselves daily, but she
 
 You're just finishing up <<EventNameLink $activeSlave>>'s weekly inspection. The pretty futa is standing obediently before you, answering the usual questions with enthusiasm. $He gestures animatedly as $he talks, making $his<<if $activeSlave.boobs > 4000>> monstrous<<elseif $activeSlave.boobs > 2000>> enormous<<elseif $activeSlave.boobs > 800>> big<</if>> boobs jiggle slightly, and $his <<if $activeSlave.dick > 5>>incredible, erect penis wave from side to side<<elseif $activeSlave.dick > 3>>big cock wave from side to side<<elseif $activeSlave.dick > 1>>dick stick out stiffly<<else>>tiny hardon wiggle lewdly<</if>>. $He doesn't seem to notice, probably because this state of obvious arousal is more or less permanent for $him. After all, this is what the ex-Futanari Sister wanted.
 <br><br>
-Apparently, $he has something to say. When you've asked her your last question and are considering whether to dismiss her or fuck $him and then dismiss $him, $he speaks up confidently. "<<Master>>," $he <<say>>s. "I want to thank you. When our group of Futa <<S>>i<<s>>ter<<s>> here failed, I was <<s>>o <<s>>cared. We all were! We didn't know what wa<<s>> going to happen, whether we were going to be raped or cut up or wor<<s>>e. But you <<s>>aved u<<s>>, <<Master>>, and you <<s>>aved me. I'm ju<<s>>t a<<s>> happy with you a<<s>> I wa<<s>> with the <<S>>i<<s>>ter<<s>>. I thought I'd have to wake up from the dream I wa<<s>> in, but I'm <<s>>till dreaming. Thank you." $He gives you a pretty half-curtsy, half-bow that manages to be both graceful and appealingly sexual.
+Apparently, $he has something to say. When you've asked $him your last question and are considering whether to dismiss $him or fuck $him and then dismiss $him, $he speaks up confidently. "<<Master>>," $he <<say>>s. "I want to thank you. When our group of Futa <<S>>i<<s>>ter<<s>> here failed, I was <<s>>o <<s>>cared. We all were! We didn't know what wa<<s>> going to happen, whether we were going to be raped or cut up or wor<<s>>e. But you <<s>>aved u<<s>>, <<Master>>, and you <<s>>aved me. I'm ju<<s>>t a<<s>> happy with you a<<s>> I wa<<s>> with the <<S>>i<<s>>ter<<s>>. I thought I'd have to wake up from the dream I wa<<s>> in, but I'm <<s>>till dreaming. Thank you." $He gives you a pretty half-curtsy, half-bow that manages to be both graceful and appealingly sexual.
 <br><br>
 $His $activeSlave.skin face displays nothing but honest gratitude and devotion. $He does not know that the reason $his community of Futanari Sisters failed is that you cleverly undermined its finances, forcing it into ruin and its members into slavery. $He does not know that the reason $he lost years of idyllic transformation and sexual freedom within a group of like-minded women is that you stole them from $him. And $he does not know that the person $he just thanked for saving $him from the consequences of the worst thing that ever happened to $him was its author. "I love you, <<Master>>," $he concludes, smiling expectantly at you.
 
@@ -144,9 +144,9 @@ $His $activeSlave.skin face displays nothing but honest gratitude and devotion.
 	$his pathetically limp dick is practically dripping precum
 <<elseif ($activeSlave.clit > 0)>>$his big clit is visibly erect<<else>>a sheen is visible on $his pussylips<</if>>, $his nipples are <<if $activeSlave.nipples != "fuckable">>stiff<<else>>swollen tight<</if>>, and $he's starting to breathe a little hard.
 
-When you finish and send the slave you were boning on her way with a light slap on the rump, you seat yourself to inspect $activeSlave.slaveName. As you do, <<if ($PC.dick == 0)>>your rather realistically modeled phallus dangles between your legs<<else>>your half-hard but still quite imposing cock hangs between your legs<</if>>, still slick from fucking the previous inspectee. $activeSlave.slaveName's $activeSlave.eyeColor eyes focus on it with painful intensity,
+When you finish and send the slave you were boning on their way with a light slap on the rump, you seat yourself to inspect $activeSlave.slaveName. As you do, <<if ($PC.dick == 0)>>your rather realistically modeled phallus dangles between your legs<<else>>your half-hard but still quite imposing cock hangs between your legs<</if>>, still slick from fucking the previous inspectee. $activeSlave.slaveName's $activeSlave.eyeColor eyes focus on it with painful intensity,
 <<if ($activeSlave.dick > 0) && ($activeSlave.dickAccessory == "chastity")>>
-	and the $desc's chastity cage begins to bother her even more.
+	and the $desc's chastity cage begins to bother $him even more.
 <<elseif ($activeSlave.dick > 0) && canAchieveErection($activeSlave)>>
 	and the $desc's hard dick releases a string of precum.
 <<elseif ($activeSlave.dick > 0)>>
@@ -156,7 +156,7 @@ When you finish and send the slave you were boning on her way with a light slap
 <<else>>
 	the distinct smell of female arousal in the office intensifying.
 <</if>>
-You remember the way $he was when $he became your slave with sudden clarity. $He was not a fan of the dick then, but $he's certainly come around.<<if ($PC.dick == 0)>> Even a realistic strap-on is enough to get her all hot and bothered.<</if>> On impulse, you ask $him if $he remembers how $he used to feel about cock. $He hesitates, wondering how to answer, but decides that honesty is the best policy and giggles, "Yes, <<Master>>. I do. I mean, not all the time. It'<<s>> ea<<s>>y to forget that I wa<<s>>n't alway<<s>> such a cock-hungry <<s>>lut." $He laughs, a rueful sound.
+You remember the way $he was when $he became your slave with sudden clarity. $He was not a fan of the dick then, but $he's certainly come around.<<if ($PC.dick == 0)>> Even a realistic strap-on is enough to get $him all hot and bothered.<</if>> On impulse, you ask $him if $he remembers how $he used to feel about cock. $He hesitates, wondering how to answer, but decides that honesty is the best policy and giggles, "Yes, <<Master>>. I do. I mean, not all the time. It'<<s>> ea<<s>>y to forget that I wa<<s>>n't alway<<s>> such a cock-hungry <<s>>lut." $He laughs, a rueful sound.
 <<if ($activeSlave.energy > 95)>>
 	"I need it <<s>>o bad now, I'll let anybody fuck me. I mean, I'd let anybody fuck me, if it wa<<s>>n't already my job a<<s>> a <<s>>lave.
 <<elseif ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
@@ -198,7 +198,7 @@ $He arches $his back and bats $his eyes at you. "A lot."
 	poor flaccid member, which $he uses a thumb and forefinger to pull upright.
 <<elseif ($activeSlave.labia > 0)>>pussy, whose lips are so generous that $he uses both hands to peel them apart.<<elseif ($activeSlave.vagina > 1)>>nice big cunt, which $he spreads shamelessly for you.<<else>>tight pussy.<</if>>
 <br><br>
-You often pepper slaves with questions during this inspection; it helps you gauge their mental state, and it's just as important to verbally inspect slaves' minds as it is to visually inspect their parts. You remember with sudden clarity what $activeSlave.slaveName was like when you acquired her. $He seemed older then.<<if $activeSlave.faceImplant > 0>> $His face has been improved since then, of course, making $him a good deal prettier.<</if>><<if $activeSlave.ageImplant > 0>> The age lift $he received has certainly hidden some of the most evident signs of $his years.<</if>> Decent care, diet, and exercise have done wonders. But more than all of that trivial physical stuff, the sexual hunger visible in $his $activeSlave.eyeColor eyes makes $him look like a teenager. You ask $him if she remembers what she was like when you enslaved her. $He hesitates, wondering how to answer, but decides that honesty is the best policy and <<say>>s, "I remember it every day, <<Master>>. I'm grateful. I didn't think of my<<s>>elf a<<s>> too pretty, then." $He giggles. "Becoming a fuck<<s>>lave really improved my <<s>>elf e<<s>>teem.
+You often pepper slaves with questions during this inspection; it helps you gauge their mental state, and it's just as important to verbally inspect slaves' minds as it is to visually inspect their parts. You remember with sudden clarity what $activeSlave.slaveName was like when you acquired $him. $He seemed older then.<<if $activeSlave.faceImplant > 0>> $His face has been improved since then, of course, making $him a good deal prettier.<</if>><<if $activeSlave.ageImplant > 0>> The age lift $he received has certainly hidden some of the most evident signs of $his years.<</if>> Decent care, diet, and exercise have done wonders. But more than all of that trivial physical stuff, the sexual hunger visible in $his $activeSlave.eyeColor eyes makes $him look like a teenager. You ask $him if $he remembers what $he was like when you enslaved $him. $He hesitates, wondering how to answer, but decides that honesty is the best policy and <<say>>s, "I remember it every day, <<Master>>. I'm grateful. I didn't think of my<<s>>elf a<<s>> too pretty, then." $He giggles. "Becoming a fuck<<s>>lave really improved my <<s>>elf e<<s>>teem.
 <<if ($activeSlave.energy > 95)>>
 	I can't imagine going back to having a<<s>> little <<s>>e<<x>> a<<s>> I u<<s>>ed to have. It would be awful.
 <<elseif ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
@@ -217,16 +217,16 @@ And, <<Master>>." $He arches $his back prettily and then scoots $himself down th
 	<</if>>
 <</for>>
 
-<<EventNameLink $activeSlave>> is standing before your desk for an inspection. The $desc is naked, of course, and is devoted enough to find the situation arousing: she's being inspected by $his <<= WrittenMaster()>> in the nude, which is sexual enough, and past inspections have often led to a quick fuck. The horny bitch obviously wants it;
+<<EventNameLink $activeSlave>> is standing before your desk for an inspection. The $desc is naked, of course, and is devoted enough to find the situation arousing: $he's being inspected by $his <<= WrittenMaster()>> in the nude, which is sexual enough, and past inspections have often led to a quick fuck. The horny bitch obviously wants it;
 <<if ($activeSlave.dick > 0) && ($activeSlave.dickAccessory == "chastity" || $activeSlave.dickAccessory == "combined chastity")>>
 	$his chastity cage is dribbling precum, and $he's clearly uncomfortable with simultaneous arousal and unwillingness to suffer a hardon inside it.
 <<elseif canAchieveErection($activeSlave)>>
 	$his cock is painfully erect.
 <<elseif ($activeSlave.dick > 0)>>
 	$his pathetically limp dick is practically dripping precum.
-<</if>> Your inspections require the slave to offer each of $his body parts to your view, and when the routine reaches $his anus, the slut obediently turns $his back to you, bends at the waist, and <<if ($activeSlave.butt > 5)>>prises $his massive buttocks apart to reveal<<elseif ($activeSlave.butt > 2)>>pulls $his buttocks apart to show off<<else>>spreads $his cute buttocks to show off<</if>> $his <<if ($activeSlave.anus > 2)>>asshole, which is so relaxed it's begging for cock.<<elseif ($activeSlave.anus > 1)>>butthole, which she winks invitingly at you.<<else>>tight anus, which she winks invitingly at you.<</if>>
+<</if>> Your inspections require the slave to offer each of $his body parts to your view, and when the routine reaches $his anus, the slut obediently turns $his back to you, bends at the waist, and <<if ($activeSlave.butt > 5)>>prises $his massive buttocks apart to reveal<<elseif ($activeSlave.butt > 2)>>pulls $his buttocks apart to show off<<else>>spreads $his cute buttocks to show off<</if>> $his <<if ($activeSlave.anus > 2)>>asshole, which is so relaxed it's begging for cock.<<elseif ($activeSlave.anus > 1)>>butthole, which $he winks invitingly at you.<<else>>tight anus, which $he winks invitingly at you.<</if>>
 <br><br>
-You often pepper slaves with questions during this inspection; it helps you gauge their mental state, and it's just as important to verbally inspect slaves' minds as it is to visually inspect their backdoors. You remember with sudden clarity what $activeSlave.slaveName was like when you acquired her. $He wasn't as enthusiastic then. The first time you inspected her, she certainly wasn't so excited about getting buttfucked. You ask her if she remembers that too. $He hesitates, wondering how to answer, but decides that honesty is the best policy and <<say>>s, "I remember, <<Master>>. It wa<<s>> hard for me, becoming a girl.
+You often pepper slaves with questions during this inspection; it helps you gauge their mental state, and it's just as important to verbally inspect slaves' minds as it is to visually inspect their backdoors. You remember with sudden clarity what $activeSlave.slaveName was like when you acquired $him. $He wasn't as enthusiastic then. The first time you inspected $him, $he certainly wasn't so excited about getting buttfucked. You ask $him if $he remembers that too. $He hesitates, wondering how to answer, but decides that honesty is the best policy and <<say>>s, "I remember, <<Master>>. It wa<<s>> hard for me, becoming a girl.
 <<if (($activeSlave.fetish == "buttslut") || ($activeSlave.energy > 95)) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
 	But, <<Master>>, girl<<s>> get fucked. And I love getting fucked in the butt <<s>>o much. If that make<<s>> me a girl then I'm happy being a girl.
 <<elseif ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
@@ -291,15 +291,15 @@ $He looks pensive, and goes through two false starts before $he clears $his thro
 	<br><br>
 	Since $activeSlave.slaveName is being so good, you decide to help get $him ready, and push $him sideways so $he straddles the counter's edge. $He whimpers into the <<if $HeadGirl.dick == 0>>dildo<<else>>dick<</if>> in $his mouth as $he feels $his <<if $activeSlave.dick > 0>><<if ($activeSlave.hormoneBalance >= 100) || ($activeSlave.dickAccessory == "chastity")>>chastity cage<<elseif ($activeSlave.hormoneBalance >= 100) || ($activeSlave.balls == 0) || ($activeSlave.ballType == "sterile")>>soft dickclit<<else>>hard cock<</if>><<else>>mons<</if>> graze the hard counter, and then stiffens as you penetrate $his bottom. When you judge that your Head Girl is wet enough, you nod to _him2, and _he2 takes $activeSlave.slaveName by the hand, pulling $him up onto _his2 lap.
 	<<if ($HeadGirl.boobs > 4000) && ($activeSlave.boobs > 4000)>>
-		Their tits are so huge that they can't reach each other to kiss, chest-to-chest like that. $HeadGirl.slaveName settles for blowing the other slave an exaggerated kiss, which makes her laugh.
+		Their tits are so huge that they can't reach each other to kiss, chest-to-chest like that. $HeadGirl.slaveName settles for blowing the other slave an exaggerated kiss, which makes $him laugh.
 	<<else>>
 		The slaves start making out, showing no signs of breaking their lip lock as they arrange themselves for penetration.
 	<</if>>
 	$HeadGirl.slaveName guides _his2 <<if $HeadGirl.dick == 0>>strap-on<<else>>cock<</if>> inside the <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>enthusiastic<<else>>compliant<</if>> $activeSlave.slaveName, who begins to ride it, enjoying both the <<if $activeSlave.dick > 0>>prostate<<else>>anal<</if>> stimulation and the feeling of $his <<if $activeSlave.dick > 0>><<if ($activeSlave.hormoneBalance >= 100) || ($activeSlave.dickAccessory == "chastity")>>midsection trapped between $him and <<elseif ($activeSlave.hormoneBalance >= 100) || ($activeSlave.balls == 0) || ($activeSlave.ballType == "sterile")>>soft dick trapped between $him and <<else>>erection trapped between $him and <</if>><<else>>pussy pressed against<</if>> $HeadGirl.slaveName. $HeadGirl.slaveName smacks the humping <<if $activeSlave.physicalAge > 30>>$woman<<else>>$girl<</if>>'s butt to get $him to stop, and slides an index finger up $his ass alongside the <<if $HeadGirl.dick == 0>>phallus<<else>>cock<</if>>. $activeSlave.slaveName shudders, and then begins to whine as $HeadGirl.slaveName pulls $his sphincter wider.
 	<br><br>
-	"Plea<<s>>e," the slave begs incoherently as you press your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> against $HeadGirl.slaveName's finger. It's not clear whether she's begging you to DP her anus, or begging you not to, but whichever it is, $HeadGirl.slaveName withdraws her finger and you shove yourself inside. $activeSlave.slaveName jerks with discomfort and gives a gasping "Oh f-fuck-k" that <<if $activeSlave.anus > 2>>she repeats over and over<<else>>is followed by some minor struggling<</if>> as you begin to fuck her. From _his2 angle, $HeadGirl.slaveName can't pound $activeSlave.slaveName quite as hard as you can, but she does her best. When you've both had your fun, extracted yourselves, and let the exhausted, gaped bitch collapse onto the floor, $HeadGirl.slaveName gives you a naughty wink.
+	"Plea<<s>>e," the slave begs incoherently as you press your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> against $HeadGirl.slaveName's finger. It's not clear whether $he's begging you to DP $his anus, or begging you not to, but whichever it is, $HeadGirl.slaveName withdraws _his2 finger and you shove yourself inside. $activeSlave.slaveName jerks with discomfort and gives a gasping "Oh f-fuck-k" that <<if $activeSlave.anus > 2>>$he repeats over and over<<else>>is followed by some minor struggling<</if>> as you begin to fuck $him. From _his2 angle, $HeadGirl.slaveName can't pound $activeSlave.slaveName quite as hard as you can, but _he2 does _his2 best. When you've both had your fun, extracted yourselves, and let the exhausted, gaped bitch collapse onto the floor, $HeadGirl.slaveName gives you a naughty wink.
 	<<run Enunciate($HeadGirl)>>
-	"@@.hotpink;That wa<<s>> fun,@@ <<Master>>!" _he2 <<say>>s. "<<Sh>>all we flip her over and go again?"
+	"@@.hotpink;That wa<<s>> fun,@@ <<Master>>!" _he2 <<say>>s. "<<Sh>>all we flip $him over and go again?"
 	<<run Enunciate($activeSlave)>>
 	"@@.hotpink;Plea<<s>>e nooo,@@" comes a quiet wail from the floor.
 	<<set $activeSlave.devotion += 2, $activeSlave.analCount += 1, $activeSlave.oralCount += 1>>
@@ -318,17 +318,17 @@ $He looks pensive, and goes through two false starts before $he clears $his thro
 	<<setLocalPronouns $Concubine 2>>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell $him $he's got a nice asspussy, and grope $him thoroughly, cupping $his buttocks with one hand and squeezing a breast with the other. $He looks <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>desperately eager<<else>>ready and willing<</if>>, and angles $himself just right, but you administer a light slap to $his $activeSlave.skin ass and continue, telling $him that it's so nice you feel like sharing it. $He's <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>so ready to fuck $he can't quite think of what to say<<else>>not quite sure how to respond<</if>>, and before she can figure it out, $Concubine.slaveName hurries in, responding to your summons. Of course, $activeSlave.slaveName is no stranger to $Concubine.slaveName, who takes in the situation at a glance and <<if $Concubine.dick > 0>>instantly achieves a painfully hard erection<<else>>immediately flushes with arousal<</if>>. $Concubine.slaveName<<if $Concubine.dick == 0>> dons a strap-on and<</if>> clambers up onto the (strongly built) bathroom counter. Since saliva is plenty of lube for $activeSlave.slaveName's experienced ass, she points a meaningful finger at <<if $Concubine.dick == 0>>the phallus<<else>>her cock<</if>>, and $activeSlave.slaveName begins to suck it enthusiastically, trying to get it as wet as possible for the sake of $his butt.
+	You tell $him $he's got a nice asspussy, and grope $him thoroughly, cupping $his buttocks with one hand and squeezing a breast with the other. $He looks <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>desperately eager<<else>>ready and willing<</if>>, and angles $himself just right, but you administer a light slap to $his $activeSlave.skin ass and continue, telling $him that it's so nice you feel like sharing it. $He's <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>so ready to fuck $he can't quite think of what to say<<else>>not quite sure how to respond<</if>>, and before $he can figure it out, $Concubine.slaveName hurries in, responding to your summons. Of course, $activeSlave.slaveName is no stranger to $Concubine.slaveName, who takes in the situation at a glance and <<if $Concubine.dick > 0>>instantly achieves a painfully hard erection<<else>>immediately flushes with arousal<</if>>. $Concubine.slaveName<<if $Concubine.dick == 0>> dons a strap-on and<</if>> clambers up onto the (strongly built) bathroom counter. Since saliva is plenty of lube for $activeSlave.slaveName's experienced ass, _he2 points a meaningful finger at <<if $Concubine.dick == 0>>the phallus<<else>>_his2 cock<</if>>, and $activeSlave.slaveName begins to suck it enthusiastically, trying to get it as wet as possible for the sake of $his butt.
 	<br><br>
-	Since $activeSlave.slaveName is being so good, you decide to help get $him ready, and push her sideways so she straddles the counter's edge. $He whimpers into the <<if $Concubine.dick == 0>>dildo<<else>>dick<</if>> in $his mouth as she feels her <<if $activeSlave.dick > 0>><<if ($activeSlave.hormoneBalance >= 100) || ($activeSlave.dickAccessory == "chastity")>>chastity cage<<elseif ($activeSlave.hormoneBalance >= 100) || ($activeSlave.balls == 0) || ($activeSlave.ballType == "sterile")>>soft dickclit<<else>>hard cock<</if>><<else>>mons<</if>> graze the hard counter, and then stiffens as you penetrate $his bottom. When you judge that your Head Girl is wet enough, you nod to her, and she takes $activeSlave.slaveName by the hand, pulling $him up onto _his2 lap.
+	Since $activeSlave.slaveName is being so good, you decide to help get $him ready, and push $him sideways so $he straddles the counter's edge. $He whimpers into the <<if $Concubine.dick == 0>>dildo<<else>>dick<</if>> in $his mouth as $he feels $his <<if $activeSlave.dick > 0>><<if ($activeSlave.hormoneBalance >= 100) || ($activeSlave.dickAccessory == "chastity")>>chastity cage<<elseif ($activeSlave.hormoneBalance >= 100) || ($activeSlave.balls == 0) || ($activeSlave.ballType == "sterile")>>soft dickclit<<else>>hard cock<</if>><<else>>mons<</if>> graze the hard counter, and then stiffens as you penetrate $his bottom. When you judge that your Concubine is wet enough, you nod to _him2, and _he2 takes $activeSlave.slaveName by the hand, pulling $him up onto _his2 lap.
 	<<if ($Concubine.boobs > 4000) && ($activeSlave.boobs > 4000)>>
 		Their tits are so huge that they can't reach each other to kiss, chest-to-chest like that. $Concubine.slaveName settles for blowing the other slave an exaggerated kiss, which makes $him laugh.
 	<<else>>
 		The slaves start making out, showing no signs of breaking their lip lock as they arrange themselves for penetration.
 	<</if>>
-	$Concubine.slaveName guides _his2 <<if $Concubine.dick == 0>>strap-on<<else>>cock<</if>> inside the <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>enthusiastic<<else>>compliant<</if>> $activeSlave.slaveName, who begins to ride it, enjoying both the <<if $activeSlave.prostate > 0>>prostate<<else>>anal<</if>> stimulation and the feeling of her <<if $activeSlave.dick > 0>><<if ($activeSlave.hormoneBalance >= 100) || ($activeSlave.dickAccessory == "chastity")>>midsection trapped between her and <<elseif ($activeSlave.hormoneBalance >= 100) || ($activeSlave.balls == 0) || ($activeSlave.ballType == "sterile")>>soft dick trapped between her and <<else>>erection trapped between her and <</if>><<else>>pussy pressed against<</if>> $Concubine.slaveName. $Concubine.slaveName smacks the humping <<if $activeSlave.physicalAge > 30>>woman<<else>>girl<</if>>'s butt to get her to stop, and slides an index finger up $his ass alongside the <<if $Concubine.dick == 0>>phallus<<else>>cock<</if>>. $activeSlave.slaveName shudders, and then begins to whine as $Concubine.slaveName pulls $his sphincter wider.
+	$Concubine.slaveName guides _his2 <<if $Concubine.dick == 0>>strap-on<<else>>cock<</if>> inside the <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>enthusiastic<<else>>compliant<</if>> $activeSlave.slaveName, who begins to ride it, enjoying both the <<if $activeSlave.prostate > 0>>prostate<<else>>anal<</if>> stimulation and the feeling of $his <<if $activeSlave.dick > 0>><<if ($activeSlave.hormoneBalance >= 100) || ($activeSlave.dickAccessory == "chastity")>>midsection trapped between $him and <<elseif ($activeSlave.hormoneBalance >= 100) || ($activeSlave.balls == 0) || ($activeSlave.ballType == "sterile")>>soft dick trapped between $him and <<else>>erection trapped between $him and <</if>><<else>>pussy pressed against<</if>> $Concubine.slaveName. $Concubine.slaveName smacks the humping <<if $activeSlave.physicalAge > 30>>$woman<<else>>$girl<</if>>'s butt to get $him to stop, and slides an index finger up $his ass alongside the <<if $Concubine.dick == 0>>phallus<<else>>cock<</if>>. $activeSlave.slaveName shudders, and then begins to whine as $Concubine.slaveName pulls $his sphincter wider.
 	<br><br>
-	"Plea<<s>>e," the slave begs incoherently as you press your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> against $Concubine.slaveName's finger. It's not clear whether $he's begging you to DP $his anus, or begging you not to, but whichever it is, $Concubine.slaveName withdraws _his2 finger and you shove yourself inside. $activeSlave.slaveName jerks with discomfort and gives a gasping "Oh f-fuck-k" that <<if $activeSlave.anus > 2>>$he repeats over and over<<else>>is followed by some minor struggling<</if>> as you begin to fuck her. From _his2 angle, $Concubine.slaveName can't pound $activeSlave.slaveName quite as hard as you can, but _he2 does _his2 best. When you've both had your fun, extracted yourselves, and let the exhausted, gaped bitch collapse onto the floor, $Concubine.slaveName gives you a naughty wink.
+	"Plea<<s>>e," the slave begs incoherently as you press your <<if $PC.dick == 1>>dick<<else>>strap-on<</if>> against $Concubine.slaveName's finger. It's not clear whether $he's begging you to DP $his anus, or begging you not to, but whichever it is, $Concubine.slaveName withdraws _his2 finger and you shove yourself inside. $activeSlave.slaveName jerks with discomfort and gives a gasping "Oh f-fuck-k" that <<if $activeSlave.anus > 2>>$he repeats over and over<<else>>is followed by some minor struggling<</if>> as you begin to fuck $him. From _his2 angle, $Concubine.slaveName can't pound $activeSlave.slaveName quite as hard as you can, but _he2 does _his2 best. When you've both had your fun, extracted yourselves, and let the exhausted, gaped bitch collapse onto the floor, $Concubine.slaveName gives you a naughty wink.
 	<<run Enunciate($Concubine)>>
 	"@@.hotpink;That wa<<s>> fun,@@ <<Master>>!" _he2 <<say>>s. "<<Sh>>all we flip $him over and go again?"
 	<<run Enunciate($activeSlave)>>
@@ -345,9 +345,9 @@ $He looks pensive, and goes through two false starts before $he clears $his thro
 <br><<link "Chat about $his ass">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You head into the bathroom, shedding clothing as you go. $He stares at you as you advance, her eyes fixing on your <<if $PC.boobs>>tits as you reveal them<<else>>ripped abs as they become visible<</if>>, and her lips part slightly. $His gaze only shifts when you disrobe completely, revealing your <<if $PC.dick == 1>>hardening dick<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>flushed womanhood<</if>>; she licks her lips unconsciously. You grab a towel off the counter, spread it on a bathroom bench, and recline on it with your back against the wall. You pat your <<if $PC.title == 1>>hard<<else>>pretty<</if>> thighs, and she hurries over, <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>eagerly<<else>>carefully<</if>> swinging her leg over the bench and seating $himself in your lap. <<if $PC.dick == 1>>Your cock slides easily up her whorish butt. One of your arms<<else>>You decided not to bother with a strap-on, so you slide a couple of fingers inside her, and she reciprocates by working a hand under $himself to attend to your pussy. Your free arm<</if>> wraps around her <<if $activeSlave.boobs > 4000>>and under her heavy tits, resting in a cocoon of soft breastflesh<<elseif $activeSlave.boobs > 800>>heavy breasts, hefting their weight and eliciting a sigh from the slave<<else>>to support her chest<</if>>. Being held this way, she can't really <<if $PC.dick == 1>>bounce on your dick, so she just wiggles her butt into you to seat it a bit deeper<<else>>grind against your fingers<</if>> and sighs contentedly. You instruct $him to elaborate on what $he said earlier.
+	You head into the bathroom, shedding clothing as you go. $He stares at you as you advance, $his eyes fixing on your <<if $PC.boobs>>tits as you reveal them<<else>>ripped abs as they become visible<</if>>, and $his lips part slightly. $His gaze only shifts when you disrobe completely, revealing your <<if $PC.dick == 1>>hardening dick<<if $PC.vagina == 1>> and <</if>><</if>><<if $PC.vagina == 1>>flushed womanhood<</if>>; $he licks $his lips unconsciously. You grab a towel off the counter, spread it on a bathroom bench, and recline on it with your back against the wall. You pat your <<if $PC.title == 1>>hard<<else>>pretty<</if>> thighs, and $he hurries over, <<if ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishKnown == 1)>>eagerly<<else>>carefully<</if>> swinging $his leg over the bench and seating $himself in your lap. <<if $PC.dick == 1>>Your cock slides easily up $his whorish butt. One of your arms<<else>>You decided not to bother with a strap-on, so you slide a couple of fingers inside $him, and $he reciprocates by working a hand under $himself to attend to your pussy. Your free arm<</if>> wraps around $him <<if $activeSlave.boobs > 4000>>and under $his heavy tits, resting in a cocoon of soft breastflesh<<elseif $activeSlave.boobs > 800>>heavy breasts, hefting their weight and eliciting a sigh from the slave<<else>>to support $his chest<</if>>. Being held this way, $he can't really <<if $PC.dick == 1>>bounce on your dick, so $he just wiggles $his butt into you to seat it a bit deeper<<else>>grind against your fingers<</if>> and sighs contentedly. You instruct $him to elaborate on what $he said earlier.
 	<br><br>
-	"Ye<<s>> <<Master>>," she <<say>>s automatically, and then pauses. "Hmm. I try not to think about back, you know, before." $He squeezes her buttocks against your <<if $PC.dick == 1>>crotch<<else>>hand<</if>>. "But I gue<<ss>> back then I didn't really think about my butthole, much? Like, I went to the bathroom, and wa<<sh>>ed it in the <<sh>>ower, and that wa<<s>> it. But with the liquid <<s>>lave food, I don't - <<s>>orry, <<Master>>, I'm being <<s>>illy. You know all about that." You tell her to explain it anyway. $He looks puzzled for a moment, but @@.mediumaquamarine;remembers she can trust you,@@ and twists around to plant an awkward kiss on your chin before continuing. "Well," she <<say>>s, with mock seriousness. "Here in the arcology, we <<s>>lave<<s>> eat a very <<s>>pe<<c>>ial liquid diet that keep<<s>> u<<s>> healthy and fit and ready to fuck. And, it'<<s>> ab<<s>>orbed completely, <<s>>o our butt<<s>> are alway<<s>> ni<<c>>e and clean. That way, <<Master>> can -" she clenches her sphincter <<if $PC.dick == 1>>around the base of your cock - "fuck<<else>>against your invading fingers - "play with<</if>> our a<<ss>>e<<s>>" - clench - "whenever" - clench - "they" - clench - "want!" $He squeals as you use your encircling arm to hoist her torso up a bit higher, and mercilessly <<if $PC.dick == 1>>fuck<<else>>fingerfuck<</if>> her ass. Many of your other slaves came and went during this, and none of them saw anything unusual about you molesting $activeSlave.slaveName's bottom in a corner of the restroom.
+	"Ye<<s>> <<Master>>," $he <<say>>s automatically, and then pauses. "Hmm. I try not to think about back, you know, before." $He squeezes $his buttocks against your <<if $PC.dick == 1>>crotch<<else>>hand<</if>>. "But I gue<<ss>> back then I didn't really think about my butthole, much? Like, I went to the bathroom, and wa<<sh>>ed it in the <<sh>>ower, and that wa<<s>> it. But with the liquid <<s>>lave food, I don't - <<s>>orry, <<Master>>, I'm being <<s>>illy. You know all about that." You tell $him to explain it anyway. $He looks puzzled for a moment, but @@.mediumaquamarine;remembers $he can trust you,@@ and twists around to plant an awkward kiss on your chin before continuing. "Well," $he <<say>>s, with mock seriousness. "Here in the arcology, we <<s>>lave<<s>> eat a very <<s>>pe<<c>>ial liquid diet that keep<<s>> u<<s>> healthy and fit and ready to fuck. And, it'<<s>> ab<<s>>orbed completely, <<s>>o our butt<<s>> are alway<<s>> ni<<c>>e and clean. That way, <<Master>> can -" $he clenches $his sphincter <<if $PC.dick == 1>>around the base of your cock - "fuck<<else>>against your invading fingers - "play with<</if>> our a<<ss>>e<<s>>" - clench - "whenever" - clench - "they" - clench - "want!" $He squeals as you use your encircling arm to hoist $his torso up a bit higher, and mercilessly <<if $PC.dick == 1>>fuck<<else>>fingerfuck<</if>> $his ass. Many of your other slaves came and went during this, and none of them saw anything unusual about you molesting $activeSlave.slaveName's bottom in a corner of the restroom.
 	<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
@@ -355,9 +355,9 @@ $He looks pensive, and goes through two false starts before $he clears $his thro
 <br><<link "Change it some more">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell $him that since $he appreciates how $his ass has changed, $he won't be surprised if you treat it like the fuckhole it is. Something in your tone makes her cautious, but $he's a good girl and says "Ye<<s>>, <<Master>>," automatically. You pass $assistantName wardrobe orders for the poor <<if $activeSlave.physicalAge > 30>>woman<<else>>girl<</if>>, and instructions to have her report to your office once $he's dressed. A few minutes later, $activeSlave.slaveName walks up to your desk, stark naked except for a buttplug that comfortably fills her rectum and a sturdy leather collar attached to a leash. You snap your fingers, pointing at the ground, and $he scrambles to her hands and knees and removes her plug. After $he's taken a harsh buttfuck, you <<if $PC.dick == 1>>push the plug back in without letting any of your cum escape<<else>>plug her up again<</if>> and attach the leash to your belt. You ignore your anal toy completely, letting her kneel next to you as you work - $he doesn't seem to want to sit, for some reason. For the rest of the day, her anus takes the full force of your libido. You fuck nothing else, confining your efforts to her backdoor, keeping her plugged when you aren't penetrating her. When you're bored, you hand her a dildo and tell her to take care of it $himself.
+	You tell $him that since $he appreciates how $his ass has changed, $he won't be surprised if you treat it like the fuckhole it is. Something in your tone makes $him cautious, but $he's a good girl and says "Ye<<s>>, <<Master>>," automatically. You pass $assistantName wardrobe orders for the poor <<if $activeSlave.physicalAge > 30>>woman<<else>>girl<</if>>, and instructions to have $him report to your office once $he's dressed. A few minutes later, $activeSlave.slaveName walks up to your desk, stark naked except for a buttplug that comfortably fills $his rectum and a sturdy leather collar attached to a leash. You snap your fingers, pointing at the ground, and $he scrambles to $his hands and knees and removes $his plug. After $he's taken a harsh buttfuck, you <<if $PC.dick == 1>>push the plug back in without letting any of your cum escape<<else>>plug $him up again<</if>> and attach the leash to your belt. You ignore your anal toy completely, letting $him kneel next to you as you work - $he doesn't seem to want to sit, for some reason. For the rest of the day, $his anus takes the full force of your libido. You fuck nothing else, confining your efforts to $his backdoor, keeping $him plugged when you aren't penetrating $him. When you're bored, you hand $him a dildo and tell $him to take care of it $himself.
 	<br><br>
-	$He's quite exhausted by the end of the day, walking dumbly along behind you, leashed to your belt and wondering tiredly when her next reaming is coming. $He doesn't notice that you're bringing her back to stand in front of the mirror until $he's there. You push her compliant body into an approximation of $his position from the morning and tell $him to remove her plug and look at her asshole. "Ye<<s>> <<Master>>," $he <<says>>, and obeys.<<if $PC.dick == 1>> This releases quite a rush of ejaculate.<</if>> $His anus is @@.lime;very loose,@@ a lewd, gaping fuckhole hungry for toys, fingers, and dick. You tell her that, and ask whether $he agrees. @@.hotpink;"Ye<<s>> <<Master>>," $he <<say>>s.@@
+	$He's quite exhausted by the end of the day, walking dumbly along behind you, leashed to your belt and wondering tiredly when $his next reaming is coming. $He doesn't notice that you're bringing $him back to stand in front of the mirror until $he's there. You push $his compliant body into an approximation of $his position from the morning and tell $him to remove $his plug and look at $his asshole. "Ye<<s>> <<Master>>," $he <<says>>, and obeys.<<if $PC.dick == 1>> This releases quite a rush of ejaculate.<</if>> $His anus is @@.lime;very loose,@@ a lewd, gaping fuckhole hungry for toys, fingers, and dick. You tell $him that, and ask whether $he agrees. @@.hotpink;"Ye<<s>> <<Master>>," $he <<say>>s.@@
 	<<set $activeSlave.devotion += 4>>
 	<<set $activeSlave.anus = 3>>
 	<</replace>>
@@ -369,7 +369,7 @@ $He looks pensive, and goes through two false starts before $he clears $his thro
 <<link "Love $him back">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You swing your legs up onto your desk and jump up onto its smooth surface, $his eyes tracking the <<if $PC.boobs == 1>>way it makes your breasts move<<else>>powerful way your muscles move your body<</if>>. When you pat the tops of your <<if $PC.title == 1>>hard<<else>>soft<</if>> thighs meaningfully, $he giggles happily and skips forward to clamber up and sit on her lap. The bouncing and climbing creates quite a nice spectacle of jiggling tits and waving cock, and $he manages to get up on the desk in such a way that you get a solid eyeful of first her wet pussy and then her ready anus. $He settles $himself onto your lap with a coo, feeling the <<if $PC.dick == 1>>hardness of your erection <<if $PC.vagina == 1>>and the warmth further down<</if>><<else>>warmth of your arousal<</if>> against her hermaphroditic genitalia. $He starts to grind $himself lasciviously against you, but stops when you seize $his face and kiss $him deeply. $He moans back into you, returning the kiss with intensity. <<if $activeSlave.boobs > 4000>>$His udders are so huge the two of you have to press your torsos hard together to make out, a delightful struggle that stimulates $his nipples quite a lot, to go by the way $he squeaks and giggles into your mouth.<<elseif $activeSlave.boobs > 2000>>$His bosom is are so big that making out face to face presses it quite hard between your torsos, which stimulates her nipples quite a lot, to go by the way $he squeaks and giggles into your mouth.<<elseif $PC.boobs == 1>>You undress without breaking your lip lock, bringing your bare breasts against $hers in a warm, loving embrace.<<else>>You strip without breaking your lip lock, bringing your heavily muscled chest against her soft breasts in a tender, loving embrace.<</if>> $His arousal builds rapidly and $he goes back to grinding, <<if $PC.dick == 1>>eventually getting $himself so hot that your dick slides into her almost without either of you meaning to make it happen. $He climaxes with you shortly, cumming all over her own breasts.<<else>>bringing you both to a shaking climax. $He cums all over her own breasts, coating them in glistening ejaculate.<</if>> As $he relaxes back against the desk, $his panting making $his cum-glazed tits rise and fall, you reflect that you just lied by omission, letting a pretty girl maintain $his delusions and @@.hotpink;$his love for you.@@ Of all your sins, this is perhaps the smallest.
+	You swing your legs up onto your desk and jump up onto its smooth surface, $his eyes tracking the <<if $PC.boobs == 1>>way it makes your breasts move<<else>>powerful way your muscles move your body<</if>>. When you pat the tops of your <<if $PC.title == 1>>hard<<else>>soft<</if>> thighs meaningfully, $he giggles happily and skips forward to clamber up and sit on your lap. The bouncing and climbing creates quite a nice spectacle of jiggling tits and waving cock, and $he manages to get up on the desk in such a way that you get a solid eyeful of first $his wet pussy and then $his ready anus. $He settles $himself onto your lap with a coo, feeling the <<if $PC.dick == 1>>hardness of your erection <<if $PC.vagina == 1>>and the warmth further down<</if>><<else>>warmth of your arousal<</if>> against $his hermaphroditic genitalia. $He starts to grind $himself lasciviously against you, but stops when you seize $his face and kiss $him deeply. $He moans back into you, returning the kiss with intensity. <<if $activeSlave.boobs > 4000>>$His udders are so huge the two of you have to press your torsos hard together to make out, a delightful struggle that stimulates $his nipples quite a lot, to go by the way $he squeaks and giggles into your mouth.<<elseif $activeSlave.boobs > 2000>>$His bosom is are so big that making out face to face presses it quite hard between your torsos, which stimulates $his nipples quite a lot, to go by the way $he squeaks and giggles into your mouth.<<elseif $PC.boobs == 1>>You undress without breaking your lip lock, bringing your bare breasts against $hers in a warm, loving embrace.<<else>>You strip without breaking your lip lock, bringing your heavily muscled chest against $his soft breasts in a tender, loving embrace.<</if>> $His arousal builds rapidly and $he goes back to grinding, <<if $PC.dick == 1>>eventually getting $himself so hot that your dick slides into $him almost without either of you meaning to make it happen. $He climaxes with you shortly, cumming all over $his own breasts.<<else>>bringing you both to a shaking climax. $He cums all over $his own breasts, coating them in glistening ejaculate.<</if>> As $he relaxes back against the desk, $his panting making $his cum-glazed tits rise and fall, you reflect that you just lied by omission, letting a pretty girl maintain $his delusions and @@.hotpink;$his love for you.@@ Of all your sins, this is perhaps the smallest.
 	<<set $activeSlave.devotion += 4>>
 	<<set $activeSlave.vaginalCount += 1>>
 	<<set $vaginalTotal += 1>>
@@ -378,7 +378,7 @@ $He looks pensive, and goes through two false starts before $he clears $his thro
 <br><<link "Break $him with the truth">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You point at the couch, and $he skips over to it with a giggle, boobs bouncing. $He hops up onto the cushions, kneeling with $his butt stuck out invitingly and her torso bent over its back. $He reaches around to pull one <<if ($activeSlave.butt > 5)>>massive<<elseif ($activeSlave.butt > 2)>>heavy<<else>>cute<</if>> buttock to one side, <<if $activeSlave.anus > 2>>stretching her lewd backdoor into a gape<<elseif $activeSlave.anus > 1>>stretching her backdoor lewdly<<else>>highlighting her tight anus<</if>> and showing off her <<if $activeSlave.labia > 1>>dangling<<elseif $activeSlave.labia > 0>>generous<<else>>wet<</if>> pussylips. You enter her from behind, your <<if $PC.dick == 1>>turgid dick<<else>>strap-on<</if>> sliding easily into her cunt. Your hands slide around her to hold her shoulders in a gentle lock, and you whisper secrets into her ear. You tell her that the Futanari Sisters here failed because you undermined them. You tell her that she is a slave because you planned and executed her enslavement. And you tell her that no slave will believe her if she tells them the truth, since they love you just like she did. As you pour this poison into her, she remains perfectly still, processing the revelation; the only clue to her feelings is her rapidly softening cock. When it has become completely, pathetically limp, a huge sob tears its way out of her. You switch to her anus and assrape her without mercy, forcing her limp torso halfway around so you can press a kiss on her bawling mouth. $He does not resist, even when you begin to taste the salt tears that stream down her pretty face. $He will remain devoted to you, mostly from a lack of alternatives, but her trust in you has @@.gold;suffered immensely.@@
+	You point at the couch, and $he skips over to it with a giggle, boobs bouncing. $He hops up onto the cushions, kneeling with $his butt stuck out invitingly and $his torso bent over its back. $He reaches around to pull one <<if ($activeSlave.butt > 5)>>massive<<elseif ($activeSlave.butt > 2)>>heavy<<else>>cute<</if>> buttock to one side, <<if $activeSlave.anus > 2>>stretching $his lewd backdoor into a gape<<elseif $activeSlave.anus > 1>>stretching $his backdoor lewdly<<else>>highlighting $his tight anus<</if>> and showing off $his <<if $activeSlave.labia > 1>>dangling<<elseif $activeSlave.labia > 0>>generous<<else>>wet<</if>> pussylips. You enter $him from behind, your <<if $PC.dick == 1>>turgid dick<<else>>strap-on<</if>> sliding easily into $his cunt. Your hands slide around $him to hold $his shoulders in a gentle lock, and you whisper secrets into $his ear. You tell $him that the Futanari Sisters here failed because you undermined them. You tell $him that $he is a slave because you planned and executed $his enslavement. And you tell $him that no slave will believe $him if $he tells them the truth, since they love you just like $he did. As you pour this poison into $him, $he remains perfectly still, processing the revelation; the only clue to $his feelings is $his rapidly softening cock. When it has become completely, pathetically limp, a huge sob tears its way out of $him. You switch to $his anus and assrape $him without mercy, forcing $his limp torso halfway around so you can press a kiss on $his bawling mouth. $He does not resist, even when you begin to taste the salt tears that stream down $his pretty face. $He will remain devoted to you, mostly from a lack of alternatives, but $his trust in you has @@.gold;suffered immensely.@@
 	<<set $activeSlave.trust = random(-90,-75)>>
 	<<set $activeSlave.vaginalCount += 1>>
 	<<set $vaginalTotal += 1>>
@@ -392,13 +392,13 @@ $He looks pensive, and goes through two false starts before $he clears $his thro
 <<link "$He wants dick. Give $him the dick">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You rise fluidly out of your chair, pointing at the floor at her feet. $He needs no further direction, and hurriedly gets down to place her mouth at dick height. $He <<if ($PC.dick == 0)>>gives your strap-on a blowjob<<else>>sucks you off<<if $PC.vagina == 1>> and eats you out<</if>><</if>> with relish, looking adoringly up at you as she rhythmically works her lips up and down <<if ($PC.dick == 0)>>the<<else>>your<</if>> thick shaft. After a bit of this, you pull <<if ($PC.dick == 0)>>the phallus<<else>>yourself<</if>> free with a delicious popping noise, and haul the slave to her feet. You grab her arms in a firm hold and pull her up on tiptoe (at which the horny girl giggles with anticipation), and then thrust into <<if ($activeSlave.weight > 10)>>soft crevice between her plush thighs<<else>>gap between her thighs<</if>>. This motion slides <<if ($PC.dick == 0)>>the strap-on<<else>>your hard dick<</if>> <<if ($activeSlave.vagina > -1)>>against her moist pussylips<<elseif ($activeSlave.scrotum > 0)>>against her anus and then past her ballsack<<else>>along her sensitive perineum<</if>>, eliciting a shocked gasp and then a prolonged whine of pleasure. $He humps $himself along <<if ($PC.dick == 0)>>the phallus<<else>>your shaft<<if $PC.vagina == 1>> and mons<</if>><</if>> shamelessly, craning around to rain kisses on your jawline and neck.
+	You rise fluidly out of your chair, pointing at the floor at $his feet. $He needs no further direction, and hurriedly gets down to place $his mouth at dick height. $He <<if ($PC.dick == 0)>>gives your strap-on a blowjob<<else>>sucks you off<<if $PC.vagina == 1>> and eats you out<</if>><</if>> with relish, looking adoringly up at you as $he rhythmically works $his lips up and down <<if ($PC.dick == 0)>>the<<else>>your<</if>> thick shaft. After a bit of this, you pull <<if ($PC.dick == 0)>>the phallus<<else>>yourself<</if>> free with a delicious popping noise, and haul the slave to $his feet. You grab $his arms in a firm hold and pull $him up on tiptoe (at which the horny $girl giggles with anticipation), and then thrust into <<if ($activeSlave.weight > 10)>>soft crevice between $his plush thighs<<else>>gap between $his thighs<</if>>. This motion slides <<if ($PC.dick == 0)>>the strap-on<<else>>your hard dick<</if>> <<if ($activeSlave.vagina > -1)>>against $his moist pussylips<<elseif ($activeSlave.scrotum > 0)>>against $his anus and then past $his ballsack<<else>>along $his sensitive perineum<</if>>, eliciting a shocked gasp and then a prolonged whine of pleasure. $He humps $himself along <<if ($PC.dick == 0)>>the phallus<<else>>your shaft<<if $PC.vagina == 1>> and mons<</if>><</if>> shamelessly, craning around to rain kisses on your jawline and neck.
 	<<if ($activeSlave.vagina > -1)>>
-		When you gently push her face away from you by tipping her torso forward, she moans a little from the loss of closeness, but soon forgets it when you press your <<if ($PC.dick == 0)>>strap-on<<else>>dick<</if>> inside her. $He begins to gasp your name, moan adoration, and beg nonsensically, and she orgasms promptly. $He groans with overstimulation as you pull out, and then whines when you redouble it by immediately switching to her <<if ($activeSlave.anus > 2)>>loose<<elseif ($activeSlave.anus > 1)>>practiced<<else>>tight<</if>> ass.
+		When you gently push $his face away from you by tipping $his torso forward, $he moans a little from the loss of closeness, but soon forgets it when you press your <<if ($PC.dick == 0)>>strap-on<<else>>dick<</if>> inside $him. $He begins to gasp your name, moan adoration, and beg nonsensically, and $he orgasms promptly. $He groans with overstimulation as you pull out, and then whines when you redouble it by immediately switching to $his <<if ($activeSlave.anus > 2)>>loose<<elseif ($activeSlave.anus > 1)>>practiced<<else>>tight<</if>> ass.
 	<<else>>
-		When you gently push her face away from you by tipping her torso forward, she moans a little from the loss of closeness, but soon forgets it when you press your <<if ($PC.dick == 0)>>strap-on<<else>>dick<</if>> against her <<if ($activeSlave.anus > 2)>>loose<<elseif ($activeSlave.anus > 1)>>practiced<<else>>tight<</if>> anus. As you push inside her, she begins to gasp your name, moan adoration, and beg nonsensically, and she orgasms promptly. $He groans with overstimulation, but you're just getting started; you grab her knees and hoist her up to fuck her ass some more.
+		When you gently push $his face away from you by tipping $his torso forward, $he moans a little from the loss of closeness, but soon forgets it when you press your <<if ($PC.dick == 0)>>strap-on<<else>>dick<</if>> against $his <<if ($activeSlave.anus > 2)>>loose<<elseif ($activeSlave.anus > 1)>>practiced<<else>>tight<</if>> anus. As you push inside $him, $he begins to gasp your name, moan adoration, and beg nonsensically, and $he orgasms promptly. $He groans with overstimulation, but you're just getting started; you grab $his knees and hoist $him up to fuck $his ass some more.
 	<</if>>
-	You climax there, your tour of her holes completed; she drops down to clean you off again before @@.mediumaquamarine;thanking you earnestly@@ and taking her leave, though not without a final turn in the doorway to steal a final loving glance at <<if ($PC.dick == 0)>>your strap-on<<else>>your junk<</if>>.
+	You climax there, your tour of $his holes completed; $he drops down to clean you off again before @@.mediumaquamarine;thanking you earnestly@@ and taking $his leave, though not without a final turn in the doorway to steal a final loving glance at <<if ($PC.dick == 0)>>your strap-on<<else>>your junk<</if>>.
 	<<set $activeSlave.trust += 4>>
 	<<set $activeSlave.analCount += 1>>
 	<<set $analTotal += 1>>
@@ -413,7 +413,7 @@ $He looks pensive, and goes through two false starts before $he clears $his thro
 <br><<link "Send $him down to a gym to share that attraction around">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You bring up a schematic of the arcology and point out a public gym to her; you hand her a day pass, tell her to go down there, and let her know she'll spend the rest of the day there. $He looks mystified, and when you do not elaborate further, she asks, "What <<sh>>ould I do there, <<Master>>?" Anything she wants, you tell her. $He still looks somewhat puzzled, but she heads down to the gym anyway. When she gets there, she sees a steady stream of well-muscled male citizens entering the showers, and gets it. $He waves cheerfully to the nearest camera, and blows you a kiss before heading into the locker room. This is the Free Cities, and there isn't much reaction to a naked girl entering a male-dominated gym. That is, until she selects from among the sweaty gentlemen coming in from the weight room, sidles up to one, and says cheerfully, "Hi! Do you wanna fuck me?" He does, and @@.green;so do many of his friends.@@ So many, in fact, that having the showers right there becomes convenient for her as the day goes on.
+	You bring up a schematic of the arcology and point out a public gym to $him; you hand $him a day pass, tell $him to go down there, and let $him know $he'll spend the rest of the day there. $He looks mystified, and when you do not elaborate further, $he asks, "What <<sh>>ould I do there, <<Master>>?" Anything $he wants, you tell $him. $He still looks somewhat puzzled, but $he heads down to the gym anyway. When $he gets there, $he sees a steady stream of well-muscled male citizens entering the showers, and gets it. $He waves cheerfully to the nearest camera, and blows you a kiss before heading into the locker room. This is the Free Cities, and there isn't much reaction to a naked girl entering a male-dominated gym. That is, until $he selects from among the sweaty gentlemen coming in from the weight room, sidles up to one, and says cheerfully, "Hi! Do you wanna fuck me?" He does, and @@.green;so do many of his friends.@@ So many, in fact, that having the showers right there becomes convenient for $him as the day goes on.
 	<<set $rep += 250>>
 	<<set $activeSlave.analCount += 5>>
 	<<set $analTotal += 5>>
@@ -441,17 +441,17 @@ $He looks pensive, and goes through two false starts before $he clears $his thro
 <<link "Then $he can appreciate a nice struggle fuck">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	When $he sees you stand up from behind your desk<<if ($PC.dick == 0)>> and pull on a strap-on<</if>>, she smiles invitingly at you and relaxes. But as you approach, she sees a dangerous glint in your eyes. One corner of her mouth flaws upward with anticipation, and she plays along. $He immediately curls up into a ball on the couch, managing to end up with her <<if ($activeSlave.weight > 30)>>fat ass squashed enticingly against the seat back<<elseif ($activeSlave.butt > 5)>>absurd ass squashed enticingly against the seat back<<elseif ($activeSlave.butt > 2)>>healthy ass pushed against the seat back<<else>>trim ass against the seat back<</if>>. $He looks up at you with feigned terror and begs, "Plea<<s>>e, <<Master>>, I'm ju<<s>>t an inno<<c>>ent little girl. Plea<<s>>e don't rape my poor little butt!" You grab an ankle and haul her <<if ($activeSlave.weight > 10)>>plush<<elseif ($activeSlave.muscles > 5)>>toned<<else>>slender<</if>> $activeSlave.skin body toward you, dragging her across the couch, and then half-fall atop her, pushing <<if ($PC.dick == 0)>>the strap-on<<else>>your hard cock<</if>> up the wriggling girl's butt. $He keeps begging and whining, but $he's managed to bring a hand under $himself and is
+	When $he sees you stand up from behind your desk<<if ($PC.dick == 0)>> and pull on a strap-on<</if>>, $he smiles invitingly at you and relaxes. But as you approach, $he sees a dangerous glint in your eyes. One corner of $his mouth flaws upward with anticipation, and $he plays along. $He immediately curls up into a ball on the couch, managing to end up with $his <<if ($activeSlave.weight > 30)>>fat ass squashed enticingly against the seat back<<elseif ($activeSlave.butt > 5)>>absurd ass squashed enticingly against the seat back<<elseif ($activeSlave.butt > 2)>>healthy ass pushed against the seat back<<else>>trim ass against the seat back<</if>>. $He looks up at you with feigned terror and begs, "Plea<<s>>e, <<Master>>, I'm ju<<s>>t an inno<<c>>ent little girl. Plea<<s>>e don't rape my poor little butt!" You grab an ankle and haul $his <<if ($activeSlave.weight > 10)>>plush<<elseif ($activeSlave.muscles > 5)>>toned<<else>>slender<</if>> $activeSlave.skin body toward you, dragging $him across the couch, and then half-fall atop $him, pushing <<if ($PC.dick == 0)>>the strap-on<<else>>your hard cock<</if>> up the wriggling girl's butt. $He keeps begging and whining, but $he's managed to bring a hand under $himself and is
 	<<if ($activeSlave.dick > 0) && ($activeSlave.dickAccessory == "chastity")>>
-		frantically rubbing her taint.
+		frantically rubbing $his taint.
 	<<elseif ($activeSlave.dick > 0) && canAchieveErection($activeSlave)>>
-		rubbing her submissive little girl cock.
+		rubbing $his submissive little girl cock.
 	<<elseif ($activeSlave.dick > 0)>>
-		and her soft dick twitches weakly.
+		and $his soft dick twitches weakly.
 	<<else>>
 		schlicking away.
 	<</if>>
-	$He periodically manages to get her <<if ($activeSlave.anus > 2)>>loose<<elseif ($activeSlave.anus > 1)>>practiced<<else>>tight<</if>> anus off your thrusting <<if ($PC.dick == 0)>>phallus<<else>>penis<</if>>, but that just gives you the pleasure of forcing it up $his ass again to the accompaniment of pretended girlish protests. $He does $his best to maintain the pretense, but soon the best $he can come up with is a ridiculous "<<Master>>, plea<<s>>e don't make me come! Not from anal!" $He's a little sore, and winces stiffly when she gets up off the couch, but shakes it off and @@.hotpink;gives you a kiss@@ with surprising shyness for a mature slave whose anus you just fucked.
+	$He periodically manages to get $his <<if ($activeSlave.anus > 2)>>loose<<elseif ($activeSlave.anus > 1)>>practiced<<else>>tight<</if>> anus off your thrusting <<if ($PC.dick == 0)>>phallus<<else>>penis<</if>>, but that just gives you the pleasure of forcing it up $his ass again to the accompaniment of pretended girlish protests. $He does $his best to maintain the pretense, but soon the best $he can come up with is a ridiculous "<<Master>>, plea<<s>>e don't make me come! Not from anal!" $He's a little sore, and winces stiffly when $he gets up off the couch, but shakes it off and @@.hotpink;gives you a kiss@@ with surprising shyness for a mature slave whose anus you just fucked.
 	<<set $activeSlave.devotion += 4>>
 	<<set $activeSlave.analCount += 1>>
 	<<set $analTotal += 1>>
@@ -460,12 +460,12 @@ $He looks pensive, and goes through two false starts before $he clears $his thro
 <br><<link "Appreciate $his body">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You stand up from behind your desk<<if ($PC.dick == 0)>>and pull on a strap-on<</if>> and approach her, appreciating $his gorgeous body, all laid out across the couch for your perusal. When you reach her, you hold out a hand for one of $hers; $he takes it @@.mediumaquamarine;trustingly,@@ $his grip <<if ($activeSlave.muscles > 30)>>strong and sure<<elseif ($activeSlave.muscles > 5)>>firm and warm<<else>>soft and feminine<</if>>. You pull her up to kneel on the couch cushions, facing a mirrored wall of the room. $He's treated to a view of $his own face as you gently penetrate her from behind, holding your <<if ($PC.boobs == 0)>>strong chest<<else>>soft breasts<</if>> hard against $his <<if ($activeSlave.muscles > 30)>>ripped<<elseif ($activeSlave.muscles > 5)>>toned<<else>>warm<</if>> back. Once you're seated in $his <<if ($activeSlave.vagina > -1) && ($activeSlave.vaginalAccessory != "chastity belt")>>womanhood<<else>>anus<</if>>, you let your hands rove across $his body, resting your chin on one of $his shoulders to watch the view with her.
+	You stand up from behind your desk<<if ($PC.dick == 0)>>and pull on a strap-on<</if>> and approach $him, appreciating $his gorgeous body, all laid out across the couch for your perusal. When you reach $him, you hold out a hand for one of $hers; $he takes it @@.mediumaquamarine;trustingly,@@ $his grip <<if ($activeSlave.muscles > 30)>>strong and sure<<elseif ($activeSlave.muscles > 5)>>firm and warm<<else>>soft and feminine<</if>>. You pull $him up to kneel on the couch cushions, facing a mirrored wall of the room. $He's treated to a view of $his own face as you gently penetrate $him from behind, holding your <<if ($PC.boobs == 0)>>strong chest<<else>>soft breasts<</if>> hard against $his <<if ($activeSlave.muscles > 30)>>ripped<<elseif ($activeSlave.muscles > 5)>>toned<<else>>warm<</if>> back. Once you're seated in $his <<if ($activeSlave.vagina > -1) && ($activeSlave.vaginalAccessory != "chastity belt")>>womanhood<<else>>anus<</if>>, you let your hands rove across $his body, resting your chin on one of $his shoulders to watch the view with $him.
 	You run your fingers through <<if ($activeSlave.hLength < 10)>>across $his scalp, eliciting a sigh<<elseif ($activeSlave.hLength < 50)>>through $his short hair and across $his scalp, eliciting a sigh<<elseif ($activeSlave.hLength < 100)>>all through $his long, luxurious hair<<else>>down the immense length of $his hair, bringing it around to cascade down between $his breasts<</if>>.
 	Your fingers trace $his cheekbones, the line of $his jaw, and the <<if $activeSlave.lips > 40>>pouting prominence of $his huge lips<<elseif $activeSlave.lips > 0>>plush softness of $his plump lips<<else>>soft outline of $his pretty mouth<</if>>.
 	Your hands <<if ($activeSlave.boobs > 2000)>>heft $his enormous breasts, and then bury themselves in the warm surroundings of the spaces between $his udders and $his ribcage<<elseif ($activeSlave.boobs > 800)>>heft $his big breasts measuringly<<elseif ($activeSlave.boobs > 300)>>cup $his healthy breasts, feeling their weight<<else>>massage $his flat chest<</if>>.
 	You <<if ($activeSlave.nipplesPiercing > 0)>>gently tug on $his nipple piercings, earning a gentle intake of breath<<elseif ($activeSlave.nipples == "huge")>>run a feather-light touch along $his long nipples, earning a gasp as they stiffen<<else>>run a feather-light touch over $his nipples, earning a gasp as they <<if $activeSlave.nipples != "fuckable">>stiffen<<else>>tighten<</if>><</if>>.
-	$He's so mesmerised by your manual tour of $his mature body that it's almost a surprise to $him when $he tips over into a strong orgasm that obliges you to grip her and hold on while $he shakes.
+	$He's so mesmerised by your manual tour of $his mature body that it's almost a surprise to $him when $he tips over into a strong orgasm that obliges you to grip $him and hold on while $he shakes.
 	<<set $activeSlave.trust += 4>>
 	<<if ($activeSlave.vagina > -1) && ($activeSlave.vaginalAccessory != "chastity belt")>>
 		<<set $activeSlave.vaginalCount += 1>>
@@ -476,10 +476,10 @@ $He looks pensive, and goes through two false starts before $he clears $his thro
 	<</if>>
 	<</replace>>
 <</link>>
-<br><<link "Put the horny old girl to work">>
+<br><<link "Put the horny old $girl to work">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell $him that you've hired $him out for a party hosted by a prominent citizen's son, home from college, and that $he should be saving it for that. $He promises that $he will, bringing $his legs together again and clearly already imagining it. You check in on her later, using the video feeds, and are treated to the sight of $him wearing a recently-acquired, too-tight t-shirt with an old world college's mascot on it as she rides a dick young enough to be $his son's. There's some drunken yelling, which she responds to by blowing kisses and licking $his <<if $activeSlave.lips > 0>>plump <</if>>lips until another cock finds its way into $his mouth. $His fee for the night is @@.yellowgreen;substantial,@@ and the student's father attaches a note to the payment. Apparently she got him too, and he's interested in hiring $him for a business meeting next month.
+	You tell $him that you've hired $him out for a party hosted by a prominent citizen's son, home from college, and that $he should be saving it for that. $He promises that $he will, bringing $his legs together again and clearly already imagining it. You check in on $him later, using the video feeds, and are treated to the sight of $him wearing a recently-acquired, too-tight t-shirt with an old world college's mascot on it as $he rides a dick young enough to be $his son's. There's some drunken yelling, which $he responds to by blowing kisses and licking $his <<if $activeSlave.lips > 0>>plump <</if>>lips until another cock finds its way into $his mouth. $His fee for the night is @@.yellowgreen;substantial,@@ and the student's father attaches a note to the payment. Apparently $he got him too, and he's interested in hiring $him for a business meeting next month.
 	<<set $cash += 500>>
 	<<set $activeSlave.analCount += 5>>
 	<<set $analTotal += 5>>
@@ -493,7 +493,7 @@ $He looks pensive, and goes through two false starts before $he clears $his thro
 <<link "Yes $he can">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	When $he sees you stand up from behind your desk<<if ($PC.dick == 0)>>and pull on a strap-on<</if>>, $he turns fully away from you, cocking $his hips at just the right angle to offer you $his anus, without any preamble or foreplay. But you come up behind her and encircle $his <<if ($activeSlave.belly >= 1500)>><<if $activeSlave.preg > $activeSlave.pregData.normalBirth/8>>pregnant <<else>>rounded <</if>>belly<<elseif ($activeSlave.weight > 10)>>plush belly<<elseif ($activeSlave.muscles > 5)>>toned stomach<<else>>trim waist<</if>> with your capable hands, your lips nibbling along the line of $his <<if ($activeSlave.muscles > 30)>>strong<<elseif ($activeSlave.muscles > 5)>>toned<<else>>soft<</if>> shoulders and neck. $He shudders as the embrace brings your <<if ($PC.dick == 0)>>strap-on<<else>>dick<</if>> <<if ($activeSlave.height >= 185)>>up between $his buttocks, since she's nearly as tall as you<<elseif ($activeSlave.height >= 170)>>pressing into $his asscrack, since she's shorter than you<<else>>nestling down into $his asscrack, since she's so much shorter than you<</if>>. You whisper that a good slave girl doesn't have to touch $himself to come when $his <<= WrittenMaster()>> fucks $his butt, and ask whether she's a good slave girl. $He shivers and promises that she is, rubbing $his asshole against your <<if ($PC.dick == 0)>>phallus<<else>>cockhead<</if>>. $He gives a feminine sigh as it slides into her, and moves softly within your embrace, doing $his best to pleasure you with $his girly ass. $He was already very close, and your loving touch so aroused her that she gasps and stiffens after only a few thrusts,
+	When $he sees you stand up from behind your desk<<if ($PC.dick == 0)>>and pull on a strap-on<</if>>, $he turns fully away from you, cocking $his hips at just the right angle to offer you $his anus, without any preamble or foreplay. But you come up behind $him and encircle $his <<if ($activeSlave.belly >= 1500)>><<if $activeSlave.preg > $activeSlave.pregData.normalBirth/8>>pregnant <<else>>rounded <</if>>belly<<elseif ($activeSlave.weight > 10)>>plush belly<<elseif ($activeSlave.muscles > 5)>>toned stomach<<else>>trim waist<</if>> with your capable hands, your lips nibbling along the line of $his <<if ($activeSlave.muscles > 30)>>strong<<elseif ($activeSlave.muscles > 5)>>toned<<else>>soft<</if>> shoulders and neck. $He shudders as the embrace brings your <<if ($PC.dick == 0)>>strap-on<<else>>dick<</if>> <<if ($activeSlave.height >= 185)>>up between $his buttocks, since $he's nearly as tall as you<<elseif ($activeSlave.height >= 170)>>pressing into $his asscrack, since $he's shorter than you<<else>>nestling down into $his asscrack, since $he's so much shorter than you<</if>>. You whisper that a good slave girl doesn't have to touch $himself to come when $his <<= WrittenMaster()>> fucks $his butt, and ask whether $he's a good slave girl. $He shivers and promises that $he is, rubbing $his asshole against your <<if ($PC.dick == 0)>>phallus<<else>>cockhead<</if>>. $He gives a feminine sigh as it slides into $him, and moves softly within your embrace, doing $his best to pleasure you with $his girly ass. $He was already very close, and your loving touch so aroused $him that $he gasps and stiffens after only a few thrusts,
 	<<if ($activeSlave.dick > 0) && ($activeSlave.dickAccessory == "chastity")>>
 		shuddering
 	<<elseif ($activeSlave.dick > 0) && canAchieveErection($activeSlave)>>
@@ -501,7 +501,7 @@ $He looks pensive, and goes through two false starts before $he clears $his thro
 	<<elseif ($activeSlave.dick > 0)>>
 		$his soft dick twitching softly
 	<</if>>
-	with a weak orgasm. $He giggles self-consciously and keeps humping back into you. $He is a @@.hotpink;good slave girl@@ once more before going to rinse $himself off in the shower, so much so that you follow her so she can be a good slave girl in the shower, too.
+	with a weak orgasm. $He giggles self-consciously and keeps humping back into you. $He is a @@.hotpink;good slave girl@@ once more before going to rinse $himself off in the shower, so much so that you follow $him so $he can be a good slave girl in the shower, too.
 	<<set $activeSlave.devotion += 4>>
 	<<set $activeSlave.analCount += 2>>
 	<<set $analTotal += 2>>
@@ -510,9 +510,9 @@ $He looks pensive, and goes through two false starts before $he clears $his thro
 <br><<link "$He's a good slave girl all the time, not just right now">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell her that she doesn't have to prove anything to you right now; she's shown that she's a good slave girl already. $He looks shocked for a moment before @@.mediumaquamarine;blushing and turning $his gaze down at $his feet.@@ "T-thank<<s>>, <<Master>>," she stammers. Since she asked so nicely, though, you continue, you will fuck $his butt. $He giggles and hurries over to you in response to a crooked finger, curling up in your lap for a nice makeout session. When the next slave scheduled for an examination comes through the door, it's to the sight of $activeSlave.slaveName holding $his body sideways in the air over the couch: she has one knee down on the cushions, and is doing the splits with the other leg running up <<if ($PC.boobs == 0)>>your muscular chest<<else>>between your breasts<</if>>. Your <<if ($PC.dick == 0)>>strap-on<<else>>dick<</if>> is up $his ass, and you're giving it to her hard. <<if ($activeSlave.boobs > 1000)>>$His huge breasts are bouncing back and forth with the motion, almost hitting $himself in the face.<<elseif ($activeSlave.weight > 10)>>$His generous curves lend the motion weight, and each thrust reams $his ass hard.<<elseif ($activeSlave.hLength >= 60)>>$His long hair flies around $his face in a maelstrom of sexual energy.<<else>>The leather couch creaks with an obscurely sexual rhythm.<</if>> $He's being fucked so hard that $his
+	You tell $him that $he doesn't have to prove anything to you right now; $he's shown that $he's a good slave girl already. $He looks shocked for a moment before @@.mediumaquamarine;blushing and turning $his gaze down at $his feet.@@ "T-thank<<s>>, <<Master>>," $he stammers. Since $he asked so nicely, though, you continue, you will fuck $his butt. $He giggles and hurries over to you in response to a crooked finger, curling up in your lap for a nice makeout session. When the next slave scheduled for an examination comes through the door, it's to the sight of $activeSlave.slaveName holding $his body sideways in the air over the couch: $he has one knee down on the cushions, and is doing the splits with the other leg running up <<if ($PC.boobs == 0)>>your muscular chest<<else>>between your breasts<</if>>. Your <<if ($PC.dick == 0)>>strap-on<<else>>dick<</if>> is up $his ass, and you're giving it to $him hard. <<if ($activeSlave.boobs > 1000)>>$His huge breasts are bouncing back and forth with the motion, almost hitting $himself in the face.<<elseif ($activeSlave.weight > 10)>>$His generous curves lend the motion weight, and each thrust reams $his ass hard.<<elseif ($activeSlave.hLength >= 60)>>$His long hair flies around $his face in a maelstrom of sexual energy.<<else>>The leather couch creaks with an obscurely sexual rhythm.<</if>> $He's being fucked so hard that $his
 	<<if ($activeSlave.dick > 0) && ($activeSlave.dickAccessory == "chastity")>>
-		cock is being forced to half-hardness inside its chastity cage, making her writhe with mixed anal pleasure and dick pain.
+		cock is being forced to half-hardness inside its chastity cage, making $him writhe with mixed anal pleasure and dick pain.
 	<<elseif ($activeSlave.dick > 0) && canAchieveErection($activeSlave)>>
 		<<if ($activeSlave.dick > 3)>>massive erection is slapping wetly against $his stomach, spattering ejaculate from a previous orgasm everywhere,<<elseif ($activeSlave.dick > 1)>>hardon is helicoptering around wildly, spattering ejaculate from a previous orgasm everywhere<<else>>tiny erection is scattering ejaculate from a previous orgasm everywhere.<</if>>
 	<<elseif ($activeSlave.dick > 0)>>
@@ -527,7 +527,7 @@ $He looks pensive, and goes through two false starts before $he clears $his thro
 <br><<link "Good slave girls earn money">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell $him that you've hired her out for a party a prominent citizen is throwing, and that $he should be a good slave girl by saving $himself for that. $He trips all over $himself promising that $he will. You check in on her later, using the video feeds, and are treated to the sight of her wearing a slinky cocktail dress, although wearing is perhaps the wrong term. $He's bent over a barstool with the top of the dress pulled down <<if ($activeSlave.boobs > 1000)>>over $his huge tits<<elseif ($activeSlave.boobs > 300)>>to bare $his boobs<<else>>to reveal $his sissy chest<</if>> and the bottom of $his dress hiked up so a guest can fuck $his ass. $He's obviously enjoying $himself, happy to be getting some at last. $His fee for the night is @@.yellowgreen;substantial,@@ and the host attaches a note to the payment, complimenting $his eagerness to get assfucked and $his willingness to suck cock, and asking when she'll be available next.
+	You tell $him that you've hired $him out for a party a prominent citizen is throwing, and that $he should be a good slave girl by saving $himself for that. $He trips all over $himself promising that $he will. You check in on $him later, using the video feeds, and are treated to the sight of $him wearing a slinky cocktail dress, although wearing is perhaps the wrong term. $He's bent over a barstool with the top of the dress pulled down <<if ($activeSlave.boobs > 1000)>>over $his huge tits<<elseif ($activeSlave.boobs > 300)>>to bare $his boobs<<else>>to reveal $his sissy chest<</if>> and the bottom of $his dress hiked up so a guest can fuck $his ass. $He's obviously enjoying $himself, happy to be getting some at last. $His fee for the night is @@.yellowgreen;substantial,@@ and the host attaches a note to the payment, complimenting $his eagerness to get assfucked and $his willingness to suck cock, and asking when $he'll be available next.
 	<<set $cash += 500>>
 	<<set $activeSlave.analCount += 5>>
 	<<set $analTotal += 5>>
@@ -541,19 +541,19 @@ $He looks pensive, and goes through two false starts before $he clears $his thro
 <<link "$He's pretty enough to decorate your arm for a night out">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell her to head down to the wardrobe and put on the outfit that'll be laid out for her there. $He obeys promptly, but does not return for some time, having gotten instructions from $assistantName along the way to put extra effort into $his grooming. When she finally returns, the effect is striking. <<if $activeSlave.face > 10>>$He's a gorgeous girl with or without makeup, dressed up or naked, but she's especially luscious tonight.<<else>>$His face is not flawless, but she's conscious of $his transformation, and the new confidence in $his beauty adds a special glow that cannot be faked.<</if>> $His evening dress is elegant; it's quite slutty by old world standards, but according to Free Cities fashion, it's just about the most conservative gown a slave can be expected to wear, and quite daring in that it isn't immediately obvious whether she's a slave or not. The tops of $his areolae are hardly even visible.<br><br>
-	You take her out to a nice lounge, with blue-toned light and soft music. $He clings to your arm, pressing $himself against you just the right amount: not enough to demand sex right now, but enough to raise the anticipation of it later. $He's a slave, so she does not eat or drink the usual fare on offer, but the establishment is used to slaves and offers flavorful variation on liquid slave food. $He drinks the translucent fluid out of a tall glass, carefully maintaining $his poise. You circulate, leaving her at the bar when acquaintances appear. $He perches on a stool, conscious of and pleased by the discreet admiration of $his body, delectably outlined by the tight dress. Once a new arrival who did not see you with her introduces himself to her. He's tall and fit and silver-haired, but he picked her out of the room to approach, and it's with polite disappointment that he reacts to $his indication of you, across the room - "I'm <<s>>orry, <<S>>ir, that'<<s>> my <<Master>> there." He offers a nonverbal apology without coming over, which you accept with a wave: it's such a common mistake in Free Cities high society that it's universally brushed off without offense. It happens again later in the night, when a slightly tipsy free woman occupies the barstool next to $activeSlave.slaveName's and keeps trying to relax against her until the flattered slave explains $himself again. When you bring her home at the end of the night, $his eyes are shining with @@.mediumaquamarine;private assurance,@@ and she presses $himself against you more closely than ever.
+	You tell $him to head down to the wardrobe and put on the outfit that'll be laid out for $him there. $He obeys promptly, but does not return for some time, having gotten instructions from $assistantName along the way to put extra effort into $his grooming. When $he finally returns, the effect is striking. <<if $activeSlave.face > 10>>$He's a gorgeous girl with or without makeup, dressed up or naked, but $he's especially luscious tonight.<<else>>$His face is not flawless, but $he's conscious of $his transformation, and the new confidence in $his beauty adds a special glow that cannot be faked.<</if>> $His evening dress is elegant; it's quite slutty by old world standards, but according to Free Cities fashion, it's just about the most conservative gown a slave can be expected to wear, and quite daring in that it isn't immediately obvious whether $he's a slave or not. The tops of $his areolae are hardly even visible.<br><br>
+	You take $him out to a nice lounge, with blue-toned light and soft music. $He clings to your arm, pressing $himself against you just the right amount: not enough to demand sex right now, but enough to raise the anticipation of it later. $He's a slave, so $he does not eat or drink the usual fare on offer, but the establishment is used to slaves and offers flavorful variation on liquid slave food. $He drinks the translucent fluid out of a tall glass, carefully maintaining $his poise. You circulate, leaving $him at the bar when acquaintances appear. $He perches on a stool, conscious of and pleased by the discreet admiration of $his body, delectably outlined by the tight dress. Once a new arrival who did not see you with $him introduces himself to $him. He's tall and fit and silver-haired, but he picked $him out of the room to approach, and it's with polite disappointment that he reacts to $his indication of you, across the room - "I'm <<s>>orry, <<S>>ir, that'<<s>> my <<Master>> there." He offers a nonverbal apology without coming over, which you accept with a wave: it's such a common mistake in Free Cities high society that it's universally brushed off without offense. It happens again later in the night, when a slightly tipsy free woman occupies the barstool next to $activeSlave.slaveName's and keeps trying to relax against $him until the flattered slave explains $himself again. When you bring $him home at the end of the night, $his eyes are shining with @@.mediumaquamarine;private assurance,@@ and $he presses $himself against you more closely than ever.
 	<<set $activeSlave.analCount += 1>>
 	<<set $analTotal += 1>>
 	<<set $activeSlave.trust += 4>>
 	<</replace>>
 <</link>>
-<br><<link "Show her off online">>
+<br><<link "Show $him off online">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell her that she's become a very pretty sex slave, and to prove it, you set up a live feed for her that's available for free in the old world. The Free Cities produce an utter torrent of hardcore video, so much that there's never any profit to be made off it anymore, but viewers begin to join the channel anyway and by the end of the week $he has thousands of eyes watching her as she <<if $activeSlave.assignment == "whore">>sells $his body<<else>>has sex with random citizens<</if>> in the hallways of $arcologies[0].name. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> keeps her constantly informed of how many people are watching her get fucked, how many of them are likely masturbating to $his body, and how many inquiries about $him $assistantName is culling out of your inbox. $He slowly gets used to $his starring role in an impromptu free hardcore stream, but never quite stops stealing wondering glances at the nearest camera, as though she cannot believe that so many people would sexualize her. This lends her a naughtiness that cannot be faked, garnering $him @@.green;much attention@@ by the end of the week.
+	You tell $him that $he's become a very pretty sex slave, and to prove it, you set up a live feed for $him that's available for free in the old world. The Free Cities produce an utter torrent of hardcore video, so much that there's never any profit to be made off it anymore, but viewers begin to join the channel anyway and by the end of the week $he has thousands of eyes watching $him as $he <<if $activeSlave.assignment == "whore">>sells $his body<<else>>has sex with random citizens<</if>> in the hallways of $arcologies[0].name. <<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> keeps $him constantly informed of how many people are watching $him get fucked, how many of them are likely masturbating to $his body, and how many inquiries about $him $assistantName is culling out of your inbox. $He slowly gets used to $his starring role in an impromptu free hardcore stream, but never quite stops stealing wondering glances at the nearest camera, as though $he cannot believe that so many people would sexualize $him. This lends $him a naughtiness that cannot be faked, garnering $him @@.green;much attention@@ by the end of the week.
 	<<if ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
-		Of course, since $he's a humiliation fetishist, this experience is like sexual candy for her. $He @@.hotpink;can't get enough.@@
+		Of course, since $he's a humiliation fetishist, this experience is like sexual candy for $him. $He @@.hotpink;can't get enough.@@
 		<<set $activeSlave.devotion += 4>>
 	<</if>>
 	<<set $rep += 250>>
diff --git a/src/uncategorized/REFS.tw b/src/uncategorized/REFS.tw
index 367ba022986e8a777db03fb3f6485d8d21dd4eb8..1b4cc30bc92e5e97254340113adaa29606751fae 100644
--- a/src/uncategorized/REFS.tw
+++ b/src/uncategorized/REFS.tw
@@ -72,8 +72,7 @@
 	<<if $arcologies[0].FSSupremacistLawME == 1>>
 		<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 	<<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-		<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-		<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+		<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 		<<set $fixedRace = _races.random()>>
 	<</if>>
 	<<include "Generate XX Slave">>
@@ -94,8 +93,7 @@
 	<<if $arcologies[0].FSSupremacistLawME == 1>>
 		<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 	<<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-		<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-		<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+		<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 		<<set $fixedRace = _races.random()>>
 	<</if>>
 	<<include "Generate XX Slave">>
@@ -120,8 +118,7 @@
 	<<if $arcologies[0].FSSupremacistLawME == 1>>
 		<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 	<<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-		<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-		<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+		<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 		<<set $fixedRace = _races.random()>>
 	<</if>>
 	<<include "Generate XX Slave">>
diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw
index cd65de53ec19d25d7a546af49554719a881fe996..bf005e5dc54190425357aa79a27cf5bbf40326c2 100644
--- a/src/uncategorized/RESS.tw
+++ b/src/uncategorized/RESS.tw
@@ -17227,8 +17227,7 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 		<<if $arcologies[0].FSSupremacistLawME == 1>>
 			<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 		<<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-			<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-			<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+			<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 			<<set $fixedRace = _races.random()>>
 		<</if>>
 		<<set $fixedNationality = "American">>
@@ -18650,7 +18649,7 @@ You tell $him kindly that you understand, and that $he'll be trained to address
 
 <<case "comfortable seat">>
 
-<<link "let $him do what $he wants">>
+<<link "Let $him do what $he wants">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
 		You tell $him to sit down if $he'd like to. $He looks at you quizzically, <<if $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>>$his dim mind slowly <</if>>realizing that you're letting $him choose what to do. <<if canTalk($activeSlave)>>
diff --git a/src/uncategorized/bodyModification.tw b/src/uncategorized/bodyModification.tw
index 5ac0af06e75bbce913aa96ff3719ec9ad5693d8e..dbecadf784a54c8eda221ab18516c068a55f7a9e 100644
--- a/src/uncategorized/bodyModification.tw
+++ b/src/uncategorized/bodyModification.tw
@@ -2,7 +2,7 @@
 
 <<set $nextButton = "Continue", $nextLink = "Slave Interact">>
 <<run clearSummaryCache($activeSlave)>>
-<<run SlavePronouns($activeSlave)>>
+<<setLocalPronouns $activeSlave>>
 <<run Enunciate($activeSlave)>>
 
 <<set $showEncyclopedia = 1, $encyclopedia = "The Studio">>
diff --git a/src/uncategorized/genericPlotEvents.tw b/src/uncategorized/genericPlotEvents.tw
index e0db03157becaeec695e57cdfad73044310504ed..06de9984e0640786994a687302c1c883a01fce0b 100644
--- a/src/uncategorized/genericPlotEvents.tw
+++ b/src/uncategorized/genericPlotEvents.tw
@@ -63,8 +63,7 @@ As you step off the elevator, you hear female voices shouting. Apparently one of
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate New Slave">>
diff --git a/src/uncategorized/longSlaveDescription.tw b/src/uncategorized/longSlaveDescription.tw
index 057172ab89a125d5f2c236ba5efff5fd3ae169c9..2e96c590150ac80a192230df59fd528926d16910 100644
--- a/src/uncategorized/longSlaveDescription.tw
+++ b/src/uncategorized/longSlaveDescription.tw
@@ -1,6 +1,5 @@
 :: Long Slave Description [nobr]
 
-<<run SlavePronouns($activeSlave)>>
 <<run SlaveStatClamp($activeSlave)>>
 <<set $beauty = Beauty($activeSlave)>>
 <<setLocalPronouns $activeSlave>>
diff --git a/src/uncategorized/neighborsFSAdoption.tw b/src/uncategorized/neighborsFSAdoption.tw
index f84df5cdda35c3c6df74cd761f32ec282aee17f2..b087a38c03b3f7d0eab6e249175a315d080e7f2f 100644
--- a/src/uncategorized/neighborsFSAdoption.tw
+++ b/src/uncategorized/neighborsFSAdoption.tw
@@ -962,7 +962,7 @@ societal development.
 <</switch>>
 <<switch random(1,26)>>
 <<case 1>>
-	<<set _subjugationRace = either("amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white")>>
+	<<set _subjugationRace = setup.filterRacesLowercase.random()>>
 	<<if ($arcologies[$i].FSSubjugationist == "unset")>>
 		<<if ($arcologies[$i].FSSupremacist == "unset") || (_subjugationRace != $arcologies[$i].FSSupremacistRace)>>
 			$desc preoccupied by a racial animus towards _subjugationRace people, leading the arcology to @@.yellow;adopt _subjugationRace Subjugation.@@
@@ -971,7 +971,7 @@ societal development.
 		<</if>>
 	<</if>>
 <<case 2>>
-	<<set _supremacistRace = either("amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white")>>
+	<<set _supremacistRace = setup.filterRacesLowercase.random()>>
 	<<if ($arcologies[$i].FSSupremacist == "unset")>>
 		<<if ($arcologies[$i].FSSubjugationist == "unset") || (_supremacistRace != $arcologies[$i].FSSubjugationistRace)>>
 			$desc preoccupied by belief in the superiority of the _supremacistRace race, leading the arcology to @@.yellow;adopt _supremacistRace Supremacy.@@
diff --git a/src/uncategorized/newSlaveIntro.tw b/src/uncategorized/newSlaveIntro.tw
index e2135a233d2991c3d59f96931abdcbc2c7e347af..a946f6b63c0e6e490c356de1743a41e409dba515 100644
--- a/src/uncategorized/newSlaveIntro.tw
+++ b/src/uncategorized/newSlaveIntro.tw
@@ -810,7 +810,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 	<<if canDoAnal($activeSlave)>>
 		<<link "Make sure $he enjoys $his first butt stuff">>
 			<<replace "#introResult">>
-				You make no direct answer to $his nervous question about $his virgin butt, though you do wonder how $he was so selfish as to be a Free Cities party girl without giving up $his asshole nightly. Instead, you ask $him about $himself, ensuring that $he learns the proper way to answer questions from $his <<= WrittenMaster($activeSlave)>>. $He answers readily, even when you turn the subject to $his sexual experiences, and $he starts to get visibly aroused. Before long, $he finds $himself sitting on your lap on the couch, making out with you while $he gives you a handjob. $He stiffens a little when you begin to play with $his butthole, but you take your time. Soon $he's taking a finger, and then two, and before long, $he's riding <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>>. $He doesn't climax to $his @@.lime;first buttsex,@@ but $he is learning to @@.mediumaquamarine;trust@@ that you won't hurt $him.
+				You make no direct answer to $his nervous question about $his virgin butt, though you do wonder how $he was so selfish as to be a Free Cities party $girl without giving up $his asshole nightly. Instead, you ask $him about $himself, ensuring that $he learns the proper way to answer questions from $his <<= WrittenMaster($activeSlave)>>. $He answers readily, even when you turn the subject to $his sexual experiences, and $he starts to get visibly aroused. Before long, $he finds $himself sitting on your lap on the couch, making out with you while $he gives you a handjob. $He stiffens a little when you begin to play with $his butthole, but you take your time. Soon $he's taking a finger, and then two, and before long, $he's riding <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>>. $He doesn't climax to $his @@.lime;first buttsex,@@ but $he is learning to @@.mediumaquamarine;trust@@ that you won't hurt $him.
 			<</replace>>
 			<<set $activeSlave.trust += 10>>
 			<<set $activeSlave.anus = 1>>
@@ -839,7 +839,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<link "Clean up $his whorish appearance">>
 		<<replace "#introResult">>
-			$He's totally unsurprised when you send $him to the salon for a makeover. It takes several days of work before $he's brought back in for another inspection; when $he arrives, you wordlessly point $him to a full length mirror. $He <<if canSee($activeSlave)>>sees $himself<<else>> <<if $activeSlave.amp != 1>>tenderly uses $his hands and finds $himself<<else>> stoically waits while you vividly describe $his new appearance. One<</if>> <</if>>without tattoos, a hooker's haircut and piercings, a conventionally pretty girl with subtle implants and a clean appearance. $He gasps <<if $activeSlave.amp != 0>>and covers $his mouth with a hand <<else>> but quickly closes $his mouth<</if>>, and then suddenly bursts into tears. "Thank you, <<Master>>," $he sobs. "I never would have thought." <<if $activeSlave.amp != 1>> $He reaches out to touch $his reflection.<</if>> "I <<if canSee($activeSlave)>> look <<else>> would look<</if>> like a nice girl." $He is @@.hotpink;grateful to you@@ for <<if canSee($activeSlave)>>showing $him<<else>> <<if $activeSlave.amp != 1>> letting $him feel <<else>> detailing <</if>> <</if>> this new side of $himself, and has @@.mediumaquamarine;begun to trust@@ that being your slave will be less degrading than being a free prostitute.
+			$He's totally unsurprised when you send $him to the salon for a makeover. It takes several days of work before $he's brought back in for another inspection; when $he arrives, you wordlessly point $him to a full length mirror. $He <<if canSee($activeSlave)>>sees $himself<<else>> <<if $activeSlave.amp != 1>>tenderly uses $his hands and finds $himself<<else>> stoically waits while you vividly describe $his new appearance. One<</if>> <</if>>without tattoos, a hooker's haircut and piercings, a conventionally pretty $girl with subtle implants and a clean appearance. $He gasps <<if $activeSlave.amp != 0>>and covers $his mouth with a hand <<else>> but quickly closes $his mouth<</if>>, and then suddenly bursts into tears. "Thank you, <<Master>>," $he sobs. "I never would have thought." <<if $activeSlave.amp != 1>> $He reaches out to touch $his reflection.<</if>> "I <<if canSee($activeSlave)>> look <<else>> would look<</if>> like a nice $girl." $He is @@.hotpink;grateful to you@@ for <<if canSee($activeSlave)>>showing $him<<else>> <<if $activeSlave.amp != 1>> letting $him feel <<else>> detailing <</if>> <</if>> this new side of $himself, and has @@.mediumaquamarine;begun to trust@@ that being your slave will be less degrading than being a free prostitute.
 		<</replace>>
 		<<set $activeSlave.trust += 4>>
 		<<set $activeSlave.devotion += 4>>
@@ -868,7 +868,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 		<<replace "#introResult">>
 			You send $him out to be cleaned up and inducted, but have $him brought back afterward. You point out a clothes box on the couch and tell $him to get dressed, since you're about to make a tour of the club, and $he'll be accompanying you. $He obeys without comment, but gasps with shock to find that $he's been given a string sling bikini. $He climbs into it hesitantly, and finds that not only does its string bottom ride up between $his pussylips, it does not cover $his nipples at all: the strings part to either side of the nipples to let them stick through, bare. This can only generously be called clothing. $He accepts this with an obvious internal sigh, however, and walks dutifully behind you, $his bare feet slapping along as $his big butt bounces and $his tits constantly fall out of $his strings.
 			<<if $activeSlave.behavioralFlaw != "shamefast">>
-				After a while, though, $he notices that $he's getting a lot of very positive attention, and even starts to strut it a little. When you get back to the penthouse, you ask $him how $he felt. $He blushes. "Kinda hot, <<Master>>," $he <<say>>s, embarrassed. "I didn't think an older girl like me would get <<s>>o many <<s>>tare<<s>>." You reach out to grope $his tits, and tell $him that with breasts like $hers, it's not surprising. $He @@.hotpink;likes you@@ for liking $his body, and has @@.mediumaquamarine;begun to trust@@ that even though $he's old, $he can find a place under you.
+				After a while, though, $he notices that $he's getting a lot of very positive attention, and even starts to strut it a little. When you get back to the penthouse, you ask $him how $he felt. $He blushes. "Kinda hot, <<Master>>," $he <<say>>s, embarrassed. "I didn't think an older $girl like me would get <<s>>o many <<s>>tare<<s>>." You reach out to grope $his tits, and tell $him that with breasts like $hers, it's not surprising. $He @@.hotpink;likes you@@ for liking $his body, and has @@.mediumaquamarine;begun to trust@@ that even though $he's old, $he can find a place under you.
 				<<set $activeSlave.trust += 4>>
 				<<set $activeSlave.devotion += 4>>
 			<<else>>
@@ -1262,7 +1262,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 			<<else>>
 				You cuff $his wrists and ankles and secure $his struggling, screeching body to the couch next to your desk with $his legs spread.
 			<</if>>
-			She wriggles and protests as you take $his virginity. $He's certainly entered your service in a way that colors $his impression of you @@.mediumorchid;with hatred@@ and @@.gold;fear.@@ @@.lime;$His tight little pussy has been broken in.@@
+			$He wriggles and protests as you take $his virginity. $He's certainly entered your service in a way that colors $his impression of you @@.mediumorchid;with hatred@@ and @@.gold;fear.@@ @@.lime;$His tight little pussy has been broken in.@@
 		<</replace>>
 		<<set $activeSlave.devotion -= 5>>
 		<<set $activeSlave.trust -= 10>>
@@ -1334,7 +1334,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 			<<elseif $activeSlave.vagina >= 2>>
 				inside $his accommodating pussy, which is welcoming enough that the rough insertion doesn't hurt $him physically.
 			<<else>>
-				inside $his tight little pussy, making the poor girl writhe with discomfort.
+				inside $his tight little pussy, making the poor $girl writhe with discomfort.
 			<</if>>
 		<<else>>
 			<<if $activeSlave.anus >= 3>>
@@ -1342,7 +1342,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 			<<elseif $activeSlave.anus >= 2>>
 				up $his welcoming butt, which is loose enough that the rough insertion doesn't hurt $him physically.
 			<<else>>
-				up $his poor little butthole, making the poor girl struggle desperately with anal pain.
+				up $his poor little butthole, making the poor $girl struggle desperately with anal pain.
 			<</if>>
 		<</if>>
 		You take $him, hard, while passersby stare at $him as $he gets pounded over a rail.
@@ -1471,7 +1471,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 		<<elseif $activeSlave.dick == 6>>
 		You grin sadistically at $him as $his massive dick fills both of your hands.
 		<</if>>
-		As $he begins to moan with lust, you grip down tightly and force $him to the floor. You straddle $him and lower your dripping pussy onto $his face<<if $PC.dick == 1>>, your erect cock coming to rest on $his forehead<</if>>. You continue stroking your toy's rod as $he eagerly begins eating you out. As $his cock begins to throb, anticipating $his upcoming orgasm, you quickly bind the base of $his penis, denying $his release. You grind your cunt into $his face, telling $him that YOU are the one who'll be orgasming here, not $him. Only once you have initiated the new slave by soaking $his face in your cum do you release $his dick and lean back to avoid the coming blast. A few strokes later and your hand is coated in $his cum. You turn around and order the exhausted girl to clean $his cum off your hand<<if $PC.dick == 1>> and to finish off $his twitching dick<</if>>; $he @@.hotpink;complies meekly,@@ knowing you are the @@.gold;dominant force@@ in $his life now.
+		As $he begins to moan with lust, you grip down tightly and force $him to the floor. You straddle $him and lower your dripping pussy onto $his face<<if $PC.dick == 1>>, your erect cock coming to rest on $his forehead<</if>>. You continue stroking your toy's rod as $he eagerly begins eating you out. As $his cock begins to throb, anticipating $his upcoming orgasm, you quickly bind the base of $his penis, denying $his release. You grind your cunt into $his face, telling $him that YOU are the one who'll be orgasming here, not $him. Only once you have initiated the new slave by soaking $his face in your cum do you release $his dick and lean back to avoid the coming blast. A few strokes later and your hand is coated in $his cum. You turn around and order the exhausted $girl to clean $his cum off your hand<<if $PC.dick == 1>> and to finish off $his twitching dick<</if>>; $he @@.hotpink;complies meekly,@@ knowing you are the @@.gold;dominant force@@ in $his life now.
 		<</replace>>
 		<<set $activeSlave.devotion += 5>>
 		<<set $activeSlave.trust -= 3>>
@@ -1487,7 +1487,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 				$He complies eagerly. $He begins with sucking your popped navel before running $his tongue across the taut, smooth surface of your pregnancy. Once $he has finished with your belly, $he lowers $himself under it to begin work on your needy pussy. Before long, $his overzealous efforts have you quaking in pleasure, rousing your child. Once $he finishes you off, $he returns to rubbing your belly, soothing your rowdy child and @@.hotpink;solidifying $his place@@ beneath you.
 				<<set $activeSlave.devotion += 15>>
 			<<else>>
-				$He shifts $his gaze between your middle and your face, not sure what to do. Losing patience, you toss a tube of cream at $him. $He shakily massages it onto your stretched skin, missing spots, much to your pleasure. With reason, you force $him onto $his back, turn around, and plant your needy cunt directly onto $his face. Struggling to breath under your weight, $he begins eating you out in desperation. After coaxing $him to massage your belly as $he does, you quickly climax across $his face and gently lift yourself off the coughing girl. $He now @@.hotpink;understands $his place in life@@ and is @@.gold;terrified@@ about what $he will have to do if $he wants to survive.
+				$He shifts $his gaze between your middle and your face, not sure what to do. Losing patience, you toss a tube of cream at $him. $He shakily massages it onto your stretched skin, missing spots, much to your pleasure. With reason, you force $him onto $his back, turn around, and plant your needy cunt directly onto $his face. Struggling to breath under your weight, $he begins eating you out in desperation. After coaxing $him to massage your belly as $he does, you quickly climax across $his face and gently lift yourself off the coughing $girl. $He now @@.hotpink;understands $his place in life@@ and is @@.gold;terrified@@ about what $he will have to do if $he wants to survive.
 				<<set $activeSlave.devotion += 5>>
 				<<set $activeSlave.trust -= 5>>
 			<</if>>
@@ -1534,7 +1534,7 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 				<</if>>
 				$He tries to squirm away from the moist spot growing under $his cheek, but you reveal your nipple and carefully direct $his mouth over it.
 				<<if $activeSlave.fetish == "pregnancy">>
-					Slowly $he begins to suckle from your swollen breast. You gently brush $his head as you try to hold back your pleasure, a wasted effort as a hand sneaks its way to your <<if $PC.dick == 1>>growing erection and enthusiastically begins pumping away. You clutch your pervy girl closer to you as $he caresses your pregnancy with one hand and gets you off with the other<<else>>wet pussy and enthusiastically begins rubbing your clit. You clutch your pervy girl closer to you as $he caresses your pregnancy with one hand and gets you off with the other<</if>>. Before long you find yourself bucking your hips with lust, a queue for you to release $him from your nipple so $he may slide down your gravid dome of a belly to finish you off. Happy to serve $his pregnant <<= WrittenMaster($activeSlave)>>, $he returns to your chest, happy to relieve you of the pressure building in your neglected breast. <<if $activeSlave.fetishKnown == 0>>Judging by that show, @@.green;$he savors getting to be with a pregnant woman.@@<<set $activeSlave.fetishKnown = 1>><<else>>You knew $he had a pregnancy fetish and $his eagerness to serve a pregnant woman proves that.<</if>> A kick from within startles you from your thoughts; as you reach to soothe your child, you find your new slave @@.mediumaquamarine;already doting on it.@@ $He's already starting to @@.hotpink;show understanding of $his place.@@
+					Slowly $he begins to suckle from your swollen breast. You gently brush $his head as you try to hold back your pleasure, a wasted effort as a hand sneaks its way to your <<if $PC.dick == 1>>growing erection and enthusiastically begins pumping away. You clutch your pervy $girl closer to you as $he caresses your pregnancy with one hand and gets you off with the other<<else>>wet pussy and enthusiastically begins rubbing your clit. You clutch your pervy $girl closer to you as $he caresses your pregnancy with one hand and gets you off with the other<</if>>. Before long you find yourself bucking your hips with lust, a queue for you to release $him from your nipple so $he may slide down your gravid dome of a belly to finish you off. Happy to serve $his pregnant <<= WrittenMaster($activeSlave)>>, $he returns to your chest, happy to relieve you of the pressure building in your neglected breast. <<if $activeSlave.fetishKnown == 0>>Judging by that show, @@.green;$he savors getting to be with a pregnant woman.@@<<set $activeSlave.fetishKnown = 1>><<else>>You knew $he had a pregnancy fetish and $his eagerness to serve a pregnant woman proves that.<</if>> A kick from within startles you from your thoughts; as you reach to soothe your child, you find your new slave @@.mediumaquamarine;already doting on it.@@ $He's already starting to @@.hotpink;show understanding of $his place.@@
 					<<set $activeSlave.devotion += 15, $activeSlave.trust += 15>>
 				<<elseif $activeSlave.fetish == "boobs">>
 					Eagerly $he begins to suckle from your swollen breast. You gently brush $his head as you try to hold back your pleasure, a wasted effort as a hand sneaks its way to your neglected breast. $He massages it, careful not to encourage your lactation too much, as $he greedily sucks you dry. $He wastes no time in swapping to your other nipple, shifting $his ministrations to the one the just left. By the time your reserves are tapped out, both you and $he are quite content. You permit $him to rest against your chest for a little before you send $him on $his way. <<if $activeSlave.fetishKnown == 0>>Judging by $his enthusiasm, @@.green;$he savors getting $his mouth close to a pair of boobs.@@<<set $activeSlave.fetishKnown = 1>><<else>>You knew $he had a breast fetishist and $his eagerness to lighten a lactating woman proves that.<</if>> A kick from within startles you from your thoughts; you pat your gravid middle, reassuring your child that you'll make sure to save some milk for them. $He's already starting to @@.hotpink;show understanding of $his place@@ and even @@.mediumaquamarine;beginning to build trust@@ with you.
@@ -1554,10 +1554,10 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<link "Let your ample bust dominate $his pathetic one">>
 		<<replace "#introResult">>
-			You quickly strip off your shirt and draw close to $activeSlave.slaveName. You grab $him as $he attempts to back away and pull $his tits directly into your own. Both of sets of eyes lock onto their pair of breasts, or they would have, had yours not utterly eclipsed their rival. Scoffing, you release the confused girl and walk away; leaving $him cupping $his own breasts and feeling uncertain about $himself. $He gets caught up in how small they really are, and how much @@.hotpink;lesser@@ than $him <<= WrittenMaster($activeSlave)>> $he is.
+			You quickly strip off your shirt and draw close to $activeSlave.slaveName. You grab $him as $he attempts to back away and pull $his tits directly into your own. Both of sets of eyes lock onto their pair of breasts, or they would have, had yours not utterly eclipsed their rival. Scoffing, you release the confused $girl and walk away; leaving $him cupping $his own breasts and feeling uncertain about $himself. $He gets caught up in how small they really are, and how much @@.hotpink;lesser@@ than $him <<= WrittenMaster($activeSlave)>> $he is.
 			<<if $activeSlave.fetish == "boobs">>
 				<<if $activeSlave.fetishKnown == 0>>
-					You did note one thing when your breasts touched, $his nipples <<if $activeSlave.nipples == "fuckable">>tightened around yours<<else>>got very hard<</if>>. @@.green;Looks like $he's a breast fetishist!@@
+					You did note one thing when your breasts touched; $his nipples <<if $activeSlave.nipples == "fuckable">>tightened around yours<<else>>got very hard<</if>>. @@.green;Looks like $he's a breast fetishist!@@
 					<<set $activeSlave.fetishKnown = 1>>
 				<</if>>
 			<</if>>
@@ -1803,8 +1803,9 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 	<br>//...in the Industrial Dairy//
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<link "Threaten $him with the Industrial Dairy">>
+		<<setNonlocalPronouns $seeDicks>>
 		<<replace "#introResult">>
-			You tell $him that it's in $his interests to be a good girl. $He does not react immediately, perhaps wondering if you think such a trite statement will have a real impact, but then you point at a wallscreen behind $him. $He turns, and beholds a live feed from the Industrial Dairy. $He gazes spellbound at the interleaved row of bodies intertwined with machines in embraces far more intimate than any lover could hope to match. The gently heaving masses of breastflesh hold $his fascinated and horrified attention until one of the machines fortuitously chooses this moment to cycle its occupant's anal hydration regimen. It withdraws its horse-sized phallus from the slave's anus, leaving $his gape pulsing gently as it awaits the resumption of the endless assrape. $activeSlave.slaveName lets out a huge sob and turns to you, @@.gold;fear suffusing $him@@ as $he promises to @@.hotpink;be a good girl.@@
+			You tell $him that it's in $his interests to be a good $girl. $He does not react immediately, perhaps wondering if you think such a trite statement will have a real impact, but then you point at a wallscreen behind $him. $He turns, and beholds a live feed from the Industrial Dairy. $He gazes spellbound at the interleaved row of bodies intertwined with machines in embraces far more intimate than any lover could hope to match. The gently heaving masses of breastflesh hold $his fascinated and horrified attention until one of the machines fortuitously chooses this moment to cycle its occupant's anal hydration regimen. It withdraws its horse-sized phallus from the slave's anus, leaving _hisU gape pulsing gently as it awaits the resumption of the endless assrape. $activeSlave.slaveName lets out a huge sob and turns to you, @@.gold;fear suffusing $him@@ as $he promises to @@.hotpink;be a good $girl.@@
 		<</replace>>
 		<<set $activeSlave.devotion += 10>>
 		<<set $activeSlave.trust -= 10>>
@@ -1888,17 +1889,17 @@ The legalities completed, ''__@@.pink;<<= SlaveFullName($activeSlave)>>@@__'' <<
 <<if ($arcade > 0) && ($seeExtreme == 1)>>
 	<br>//...in the Arcade//
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
-
 	<<link "Threaten $him with the Arcade">>
+		<<setNonlocalPronouns $seeDicks>>
 		<<replace "#introResult">>
-			You tell $him that it's in $his interests to be a good girl. $He does not react immediately, perhaps wondering if you think such a trite statement will have a real impact, but then you point at a wallscreen behind $him. $He turns, and beholds a live feed from $arcadeName. $He gazes at the row of butts sticking out of the wall at dick height, not quite realizing what $he's seeing. Then $he notices that there are citizens pumping away in front of two of the butts, and $he understands. As $he watches, terrified, first one citizen and then the other finishes and steps away. The first arcade inmate's <<if $seeDicks != 100>>pussy<<else>>butt<</if>> is left looking sore until $arcadeName's systems cover $him for a quick cleaning, and the second inmate's asshole <<if $seeDicks != 0>>has obviously seen severe use, since the poor girl doesn't have a pussy to spread the load<<else>>is loose enough that the machines have to clean up the cum it drools onto the floor<</if>>. $activeSlave.slaveName lets out a huge sob and turns to you, @@.gold;fear suffusing $him@@ as $he promises to @@.hotpink;be a good girl.@@
+			You tell $him that it's in $his interests to be a good $girl. $He does not react immediately, perhaps wondering if you think such a trite statement will have a real impact, but then you point at a wallscreen behind $him. $He turns, and beholds a live feed from $arcadeName. $He gazes at the row of butts sticking out of the wall at dick height, not quite realizing what $he's seeing. Then $he notices that there are citizens pumping away in front of two of the butts, and $he understands. As $he watches, terrified, first one citizen and then the other finishes and steps away. The first arcade inmate's <<if $seeDicks != 100>>pussy<<else>>butt<</if>> is left looking sore until $arcadeName's systems cover _himU for a quick cleaning, and the second inmate's asshole <<if $seeDicks != 0>>has obviously seen severe use, since the poor _girlU doesn't have a pussy to spread the load<<else>>is loose enough that the machines have to clean up the cum it drools onto the floor<</if>>. $activeSlave.slaveName lets out a huge sob and turns to you, @@.gold;fear suffusing $him@@ as $he promises to @@.hotpink;be a good girl.@@
 		<</replace>>
 		<<set $activeSlave.devotion += 10>>
 		<<set $activeSlave.trust -= 10>>
 	<</link>>
 
 	<<if ($arcade > $arcadeSlaves) || ($arcadeUpgradeFuckdolls != 0)>>
-		 | <<link "Send $him straight to the Arcade">>
+		| <<link "Send $him straight to the Arcade">>
 			<<set $activeSlave.assignment = "be confined in the arcade">>
 			<<set $activeSlave.assignmentVisible = 0>>
 			<<set $activeSlave.choosesOwnAssignment = 0>>
diff --git a/src/uncategorized/pCollaborationChoice.tw b/src/uncategorized/pCollaborationChoice.tw
index 0081848b8fd19d877af82706a226670179ece143..5369f8969358b234b3ae6b70f09e2ca56f2c17df 100644
--- a/src/uncategorized/pCollaborationChoice.tw
+++ b/src/uncategorized/pCollaborationChoice.tw
@@ -10,7 +10,7 @@ Your next communication from the Daughters of Liberty is a request for a live vi
 
 <br><br>
 
-"Hello, <<Master>>," $he says simply. "It'<<s>> happening soon. The Daughter<<s>> have a<<s>>ked me to call you to a<<s>>k you for your help. All they need i<<s>> the a<<cc>>e<<ss>> code<<s>> to your <<s>>ecurity <<s>>y<<s>>tem<<s>>. They'll let you live, <<Master>>, they'll even let you take your money. But the arcology and the <<s>>lave<<s>>, tho<<s>>e will have to go free." $He hesitates a little. "<<Master>> I like being free. But I don't want to <<s>>ee you killed. Plea<<s>>e, plea<<s>>e agree."
+"Hello, <<Master>>," $he <<say>>s simply. "It'<<s>> happening soon. The Daughter<<s>> have a<<s>>ked me to call you to a<<s>>k you for your help. All they need i<<s>> the a<<cc>>e<<ss>> code<<s>> to your <<s>>ecurity <<s>>y<<s>>tem<<s>>. They'll let you live, <<Master>>, they'll even let you take your money. But the arcology and the <<s>>lave<<s>>, tho<<s>>e will have to go free." $He hesitates a little. "<<Master>>, I like being free. But I don't want to <<s>>ee you killed. Plea<<s>>e, plea<<s>>e agree."
 
 <br><br>
 
diff --git a/src/uncategorized/pHostageAcquisition.tw b/src/uncategorized/pHostageAcquisition.tw
index 4d02accf54a392a54f0db789dccc90f08ec45e36..6948c411a095b3a8a0a4996003d2f5aacbc6c5c9 100644
--- a/src/uncategorized/pHostageAcquisition.tw
+++ b/src/uncategorized/pHostageAcquisition.tw
@@ -259,7 +259,7 @@ Your hired mercenaries are en route now with your precious cargo.
 		Upon seeing you, $activeSlave.slaveName shifts $his weight back and forth, unsure of what to make of you. As you step forward, $he hesitatingly approaches. Once $he is close enough $he asks "<<if $PC.visualAge >= 50>>Were you always that attractive?<<else>>Can I hang out with some MILFS?<</if>>" While $he looks the same as you remember, $he certainly doesn't think the same anymore.
 	<<elseif $rivalryDuration <= 20>>
 	<<set $activeSlave.trust = 40>>
-		Upon seeing you, $activeSlave.slaveName shifts $his weight back and forth, unsure of what to make of you. As you step forward, $he quickly steps back. After several steps, $he says "<<if $PC.visualAge >= 50>>You know, you're soo much older than me... I like that", with a wink.<<elseif $PC.visualAge < 35>>Ew, you're soo young. Keep your hands off me!<<else>>Can you hook me up with a nice MILF?<</if>>". While $he looks the same as you remember, $he definitely doesn't think the same anymore.
+		Upon seeing you, $activeSlave.slaveName shifts $his weight back and forth, unsure of what to make of you. As you step forward, $he quickly steps back. After several steps, $he says "<<if $PC.visualAge >= 50>>You know, you're soo much older than me... I like that," with a wink.<<elseif $PC.visualAge < 35>>Ew, you're soo young. Keep your hands off me!<<else>>Can you hook me up with a nice MILF?<</if>>". While $he looks the same as you remember, $he definitely doesn't think the same anymore.
 	<<else>>
 		<<set $activeSlave.trust = 80>>
 		Your mercenaries radio you upon arrival. "This one's got quite some spunk in $him, you better ready yourself. We're coming in now."
diff --git a/src/uncategorized/pPeacekeepersDeficit.tw b/src/uncategorized/pPeacekeepersDeficit.tw
index 3f0613b2a9c3f5a3422e4e3d3a6da41455d7ad3e..809a437f071b4d8a6b2519029f8f96dfb59cbe0d 100644
--- a/src/uncategorized/pPeacekeepersDeficit.tw
+++ b/src/uncategorized/pPeacekeepersDeficit.tw
@@ -14,7 +14,7 @@ It's a video link, and the general is in the field somewhere, wearing scuffed ar
 
 <br><br>
 
-"And second," he continues, "I'm having difficulty housing the prisoners we're taking. We're the only functioning law and order in this area, and in order to keep control I'm having to lock up everyone from armed bandits to petty looters. I don't have the resources to imprison them decently. I'm already getting flak about conditions in our main prison camp, here." He arches an eyebrow. "Some people back home seem to care more about keeping prisoners comfortable than they care about getting my wounded men and women the best possible care. And I can't just reduce the prisoner population, either. There are too many of them. Word would get out, and there'd be hell to pay back home."
+"And second," he continues, "I'm having difficulty housing the prisoners we're taking. We're the only functioning law and order in this area, and in order to keep control I'm having to lock up everyone from armed bandits to petty looters. I don't have the resources to imprison them decently. I'm already getting flak about conditions in our main prison camp here." He arches an eyebrow. "Some people back home seem to care more about keeping prisoners comfortable than they care about getting my wounded men and women the best possible care. And I can't just reduce the prisoner population, either. There are too many of them. Word would get out, and there'd be hell to pay back home."
 
 <br><br>
 
diff --git a/src/uncategorized/pRivalryActions.tw b/src/uncategorized/pRivalryActions.tw
index e1179b094a2b8ce75b5e0c4a9d82d27dd5d91a83..e82f982196f4bf77cec2faa4862ee98c8d2506d5 100644
--- a/src/uncategorized/pRivalryActions.tw
+++ b/src/uncategorized/pRivalryActions.tw
@@ -514,28 +514,28 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.vaginalCount += 1>>
 		<<set $hostage.fetish = "dom">>
 		<<set $hostage.fetishStrength = 10>>
-		crashing into $his bed, exhausted from all $his exercise. As she massages $his sore body, she can't help gasp at the weight she has lost.
+		crashing into $his bed, exhausted from all $his exercise. As $he massages $his sore body, $he can't help gasp at the weight $he has lost.
 	<<case "Chattel Religionism">>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
 		<<set $hostage.vaginalCount += 1>>
 		<<set $hostage.fetish = "submissive">>
 		<<set $hostage.fetishStrength = 10>>
-		questioning why she is yearning to be a part of this society.
+		questioning why $he is yearning to be a part of this society.
 	<<case "Multiculturalism">>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
 		<<set $hostage.vaginalCount += 1>>
 		<<set $hostage.fetish = "dom">>
 		<<set $hostage.fetishStrength = 10>>
-		studying $his scriptures with the hope that she can do something to help you.
+		studying $his scriptures with the hope that $he can do something to help you.
 	<<default>>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
 		<<set $hostage.vaginalCount += 1>>
 		<<set $hostage.fetish = "submissive">>
 		<<set $hostage.fetishStrength = 10>>
-		questioning why she is yearning to be a part of this society.
+		questioning why $he is yearning to be a part of this society.
 	<</switch>>
 <<elseif $rivalryDuration == 11>>
 	<<switch $rivalryFS>>
@@ -633,7 +633,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.behavioralQuirk = "adores men">>
 		<<set $hostage.sexualQuirk = "caring">>
 		<<set $hostage.fetishStrength = 65>>
-		realizing that being pregnant is possibly the best thing in life, as she attempts to cradle $his enormous belly.
+		realizing that being pregnant is possibly the best thing in life, as $he attempts to cradle $his enormous belly.
 	<</if>>
 	<<case "Gender Radicalism">>
 		<<set $hostage.trust -= 5>>
@@ -751,7 +751,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.sexualFlaw = "none">>
 		<<set $hostage.behavioralFlaw = "gluttonous">>
 		<<set $hostage.sexualQuirk = "size queen">>
-		getting out of bed and immediately falling to the floor under the weight of $his immense <<print $hostage.boobs>>cc breasts. She quickly calls out, not for help, but for a dick in $him to celebrate this occasion.
+		getting out of bed and immediately falling to the floor under the weight of $his immense <<print $hostage.boobs>>cc breasts. $He quickly calls out, not for help, but for a dick in $him to celebrate this occasion.
 	<<case "Asset Expansionism">>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
@@ -916,7 +916,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.mammaryCount += 100>>
 		<<set $hostage.fetishStrength = 100>>
 		<<set $hostage.sexualFlaw = "breeder">>
-		resting in $his bed with $his master's head against $his full-term belly. She appears to be genuinely happy.
+		resting in $his bed with $his master's head against $his full-term belly. $He appears to be genuinely happy.
 	<<else>>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
@@ -937,7 +937,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.fetishStrength = 100>>
 		<<set $hostage.sexualFlaw = "breeder">>
 		<<set $activeSlave.bellySag = 2, $activeSlave.bellySagPreg = 2>>
-		orgasming lewdly from the obscene movements happening within $his straining womb. She looks like she wants this to never end.
+		orgasming lewdly from the obscene movements happening within $his straining womb. $He looks like $he wants this to never end.
 	<</if>>
 	<<case "Gender Radicalism">>
 		<<set $hostage.trust -= 5>>
@@ -957,7 +957,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<</if>>
 		<<set $hostage.fetishStrength = 100>>
 		<<set $hostage.sexualFlaw = "anal addict">>
-		convincing a fellow slave that butt sex is best sex. She turns around and shows off the enormous dildo shoved up $his ass.
+		convincing a fellow slave that butt sex is best sex. $He turns around and shows off the enormous dildo shoved up $his ass.
 	<<case "Paternalism">>
 		<<set $hostage.trust += 5>>
 		<<set $hostage.devotion += 5>>
@@ -995,7 +995,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.boobsImplant += 2000>>
 		<<set $hostage.fetishStrength = 100>>
 		<<set $hostage.sexualFlaw = "breast growth">>
-		getting $his taut <<print $hostage.boobs>>cc tits massaged by a pair of flat slaves. She is rambling on about how much happier she is with $his massive implants than when she was flat like them.
+		getting $his taut <<print $hostage.boobs>>cc tits massaged by a pair of flat slaves. $He is rambling on about how much happier $he is with $his massive implants than when $he was flat like them.
 	<<case "Transformation Fetishism">>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
@@ -1017,7 +1017,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.oralCount += 10>>
 		<<set $hostage.vaginalCount += 10>>
 		<<set $hostage.analCount += 10>>
-		blushing happily as she discusses $his future marriage to $his young lover.
+		blushing happily as $he discusses $his future marriage to $his young lover.
 	<<case "Slimness Enthusiasm">>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
@@ -1026,7 +1026,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.butt = 7>>
 		<<set $hostage.fetishStrength = 100>>
 		<<set $hostage.sexualFlaw = "breast growth">>
-		getting $his immobilizing <<print $hostage.boobs>>cc breasts massaged by a pair of flat slaves. She is rambling on about how much happier she is with $his massive tits and ass than when she was flat like them.
+		getting $his immobilizing <<print $hostage.boobs>>cc breasts massaged by a pair of flat slaves. $He is rambling on about how much happier $he is with $his massive tits and ass than when $he was flat like them.
 	<<case "Asset Expansionism">>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
@@ -1040,7 +1040,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.boobs = 400>>
 		<<set $hostage.vaginalCount += 1>>
 		<<set $hostage.fetishStrength = 100>>
-		bench pressing a rather large dumbbell in a strongwoman contest. She is overjoyed when she places first.
+		bench pressing a rather large dumbbell in a strong$woman contest. $He is overjoyed when $he places first.
 	<<case "Cummunism">>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
@@ -1049,7 +1049,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.butt = 6>>
 		<<set $hostage.fetishStrength = 100>>
 		<<set $hostage.sexualFlaw = "breast growth">>
-		getting $his immobilizing <<print $hostage.boobs>>cc breasts, massive ass, and cow-like body massaged by a trio of slim slaves. She is rambling on about how much happier she is with $his massive assets than when she was thin like them.
+		getting $his immobilizing <<print $hostage.boobs>>cc breasts, massive ass, and cow-like body massaged by a trio of slim slaves. $He is rambling on about how much happier $he is with $his massive assets than when $he was thin like them.
 	<<case "Physical Idealism">>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
@@ -1083,7 +1083,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.boobs = 400>>
 		<<set $hostage.vaginalCount += 1>>
 		<<set $hostage.fetishStrength = 100>>
-		bench pressing a rather large dumbbell in a strongwoman contest. She is overjoyed when she places first.
+		bench pressing a rather large dumbbell in a strong$woman contest. $He is overjoyed when $he places first.
 	<<case "Chattel Religionism">>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
@@ -1096,7 +1096,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.vaginalCount += 1>>
 		<<set $hostage.fetishStrength = 100>>
 		<<set $hostage.sexualFlaw = "neglectful">>
-		finishing a sermon how to achieve happiness. She smiles at the camera and says it's not too late to convert.
+		finishing a sermon how to achieve happiness. $He smiles at the camera and says it's not too late to convert.
 	<<default>>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
@@ -1110,7 +1110,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.oralCount += 50>>
 		<<set $hostage.vaginalCount += 50>>
 		<<set $hostage.analCount += 50>>
-		giving an interview. She gushes over how great $arcologies[0].FSSubjugationistRace people are and how terrible it is that some people believe them barely human.
+		giving an interview. $He gushes over how great $arcologies[0].FSSubjugationistRace people are and how terrible it is that some people believe them barely human.
 	<<case "Racial Supremacism">>
 		<<if $hostage.preg < 35>>
 			<<set $hostage.preg = 32>>
@@ -1128,13 +1128,13 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.lactationDuration = 2>>
 		<<set $hostage.fetish = "mindbroken">>
 		<<set $hostage.fetishStrength = 10>>
-		with a pair of slavers threatening $his pregnancy. She keeps blocking the blows, again and again, until she can barely stay upright. With a final, brutal kick to the head, she falls to the floor, unmoving. Several seconds later, she struggles upright, a blank expression across $his bloodied face.
+		with a pair of slavers threatening $his pregnancy. $He keeps blocking the blows, again and again, until $he can barely stay upright. With a final, brutal kick to the head, $he falls to the floor, unmoving. Several seconds later, $he struggles upright, a blank expression across $his bloodied face.
 	<<case "Repopulation Focus">>
 		<<set $hostage.oralCount += 5>>
 		<<set $hostage.vaginalCount += 5>>
 		<<set $hostage.analCount += 5>>
 		<<set $hostage.mammaryCount += 5>>
-		giving an interview. She gushes over how important it is for only the best of society to reproduce, and how it is an atrocity that some people bring so many wasted lives into being.
+		giving an interview. $He gushes over how important it is for only the best of society to reproduce, and how it is an atrocity that some people bring so many wasted lives into being.
 	<<case "Eugenics">>
 		<<if $seeHyperPreg != 1>>
 			<<set $hostage.preg = 1>>
@@ -1171,7 +1171,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 			<<set $hostage.mammaryCount += 100>>
 			<<set $activeSlave.bellySag = 5, $activeSlave.bellySagPreg = 5>>
 		<</if>>
-		giving an interview. She gushes over how important it is for women to conceive and carry as many children as they can, as well as how terrible it is that some people strip away a woman's most important purpose. Before she can continue, $his water breaks and she drops to the floor. You close the video in disgust of what's coming.
+		giving an interview. $He gushes over how important it is for women to conceive and carry as many children as they can, as well as how terrible it is that some people strip away a woman's most important purpose. Before $he can continue, $his water breaks and $he drops to the floor. You close the video in disgust of what's coming.
 	<<case "Gender Radicalism">>
 		<<set $hostage.vaginalCount += 1>>
 		<<set $hostage.preg = 8>>
@@ -1180,7 +1180,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.pregWeek = 8>>
 		<<set WombImpregnate($hostage, $hostage.pregType, 0, $hostage.preg)>>
 		<<run SetBellySize($hostage)>>
-		giving an interview. She gushes over how great it feels knowing that someone is always watching out for $his safety and health as a traditional woman, as well as how terrible it is that some people want to blur the lines between the genders.
+		giving an interview. $He gushes over how great it feels knowing that someone is always watching out for $his safety and health as a traditional woman, as well as how terrible it is that some people want to blur the lines between the genders.
 	<<case "Gender Fundamentalism">>
 		<<set $hostage.analCount += 10>>
 		<<if $seeDicks != 0>>
@@ -1188,7 +1188,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 			<<set $hostage.balls = 4>>
 			<<set $hostage.scrotum = 2>>
 		<</if>>
-		giving an interview. She gushes over how great it feels being fucked in the rear and how she never has to worry about pregnancy that way. She carries on about how terrible it is that some people want to deny people this great sensation.
+		giving an interview. $He gushes over how great it feels being fucked in the rear and how $he never has to worry about pregnancy that way. $He carries on about how terrible it is that some people want to deny people this great sensation.
 	<<case "Paternalism">>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
@@ -1212,7 +1212,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.tonguePiercing = 2>>
 		<<set $hostage.fetish = "mindbroken">>
 		<<set $hostage.fetishStrength = 10>>
-		strapped to an operating table, with surgical marks on $his bare arms and legs. $His face contorts into absolute horror as she hears the running saw lowering towards $his right arm. As it makes contact, $his mouth opens wide in a silent scream, ceasing only once $his arm is severed completely. As it comes in contact with $his other arm, $his silent screams stop completely; $his mind having completely shattered. You end the video early, disgusted by what you just saw.
+		strapped to an operating table, with surgical marks on $his bare arms and legs. $His face contorts into absolute horror as $he hears the running saw lowering towards $his right arm. As it makes contact, $his mouth opens wide in a silent scream, ceasing only once $his arm is severed completely. As it comes in contact with $his other arm, $his silent screams stop completely; $his mind having completely shattered. You end the video early, disgusted by what you just saw.
 	<<case "Degradationism">>
 		<<set $hostage.vaginalCount += 1>>
 		<<set $hostage.preg = 14>>
@@ -1221,40 +1221,40 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.pregWeek = 14>>
 		<<set WombImpregnate($hostage, $hostage.pregType, 0, $hostage.preg)>>
 		<<run SetBellySize($hostage)>>
-		and $his owner at the altar during their wedding. It seems she couldn't wait, since $his belly already shows signs of an early pregnancy.
+		and $his owner at the altar during their wedding. It seems $he couldn't wait, since $his belly already shows signs of an early pregnancy.
 	<<case "Body Purism">>
 		<<set $hostage.boobs = 50000>>
 		<<set $hostage.boobsImplant 45000>>
-		giving an interview. She gushes over how great it feels being more silicone than girl and how terrible it is that some people want to deny girls this pleasure.
+		giving an interview. $He gushes over how great it feels being more silicone than $girl and how terrible it is that some people want to deny girls this pleasure.
 	<<case "Transformation Fetishism">>
 		<<set $hostage.vaginalCount += 1>>
-		giving an interview. She gushes over how great it feels being implant free and how terrible some people are to force inhumane implants into their slaves.
+		giving an interview. $He gushes over how great it feels being implant free and how terrible some people are to force inhumane implants into their slaves.
 	<<case "Youth Preferentialism">>
 		<<set $hostage.oralCount += 20>>
 		<<set $hostage.vaginalCount += 20>>
 		<<set $hostage.analCount += 20>>
-		giving an interview alongside $his older wife. She gushes over how great it feels being in love and how, if some people had their way, she'd have never gotten to experience this bliss.
+		giving an interview alongside $his older wife. $He gushes over how great it feels being in love and how, if some people had their way, $he'd have never gotten to experience this bliss.
 	<<case "Maturity Preferentialism">>
 		<<set $hostage.oralCount += 20>>
 		<<set $hostage.vaginalCount += 20>>
 		<<set $hostage.analCount += 20>>
-		giving an interview alongside $his young wife. She gushes over how great it feels being in love and how, if some people had their way, she'd have never gotten to experience this bliss.
+		giving an interview alongside $his young wife. $He gushes over how great it feels being in love and how, if some people had their way, $he'd have never gotten to experience this bliss.
 	<<case "Slimness Enthusiasm">>
 		<<set $hostage.boobs = 50000>>
 		<<set $hostage.weight = 100>>
 		<<set $hostage.butt = 9>>
-		giving an interview. She gushes over how great it feels being more breast than girl and how terrible it is that some people want to keep girls anorexic toothpicks.
+		giving an interview. $He gushes over how great it feels being more breast than $girl and how terrible it is that some people want to keep girls anorexic toothpicks.
 	<<case "Asset Expansionism">>
 		<<set $hostage.vaginalCount += 1>>
-		giving an interview. She gushes over how great it feels being more thin and fit and how terrible it is that some people want to keep girls nothing more than bloated cows.
+		giving an interview. $He gushes over how great it feels being more thin and fit and how terrible it is that some people want to keep girls nothing more than bloated cows.
 	<<case "Pastoralism">>
 		<<set $hostage.muscles = 100>>
 		<<set $hostage.vaginalCount += 1>>
-		giving an interview. She gushes over how great it feels being a chiseled goddess and how terrible it is that some people want to keep girls obese, pregnant, milky cows.
+		giving an interview. $He gushes over how great it feels being a chiseled goddess and how terrible it is that some people want to keep girls obese, pregnant, milky cows.
 	<<case "Cummunism">>
 		<<set $hostage.boobs = 24300>>
 		<<set $hostage.weight = 100>>
-		giving an interview. She gushes over how great it feels being so soft and how happy she is to be feeding $his people. She continues with how terrible it is that some people want slaves to be hard and sinewy instead of being motherly providers.
+		giving an interview. $He gushes over how great it feels being so soft and how happy $he is to be feeding $his people. $He continues with how terrible it is that some people want slaves to be hard and sinewy instead of being motherly providers.
 	<<case "Physical Idealism">>
 		<<set $hostage.weight = 150>>
 		<<set $hostage.boobs += 100>>
@@ -1262,7 +1262,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.fetishStrength = 100>>
 		<<set $hostage.vaginalCount += 60>>
 		<<set $hostage.vagina = 5>>
-		moaning as she shoves food into $his mouth with one hand and fondles $his lover's body with the other. "My apologies. I don't have $his weight for you this week. You see, she broke the scale when she stepped on it, well I suppose that tells you plenty. Though I have another surprise for you! <<= SlaveFullName($hostage)>>, would you like to tell 'em yourself?" She shouts, spewing crumbs everywhere,
+		moaning as $he shoves food into $his mouth with one hand and fondles $his lover's body with the other. "My apologies. I don't have $his weight for you this week. You see, $he broke the scale when $he stepped on it. Well, I suppose that tells you plenty. Though I have another surprise for you! <<= SlaveFullName($hostage)>>, would you like to tell 'em yourself?" $He shouts, spewing crumbs everywhere,
 		<<switch $hostageFetish>>
 		<<case "submissive">>
 			"I haven't orgasmed all week, but I've made sure to bring every one of my lovers to climax! That's what I love most, seeing the look of satisfaction on their faces as they blow their loads deep into me!"
@@ -1304,16 +1304,16 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 	<<case "Hedonistic Decadence">>
 		<<set $hostage.muscles = 100>>
 		<<set $hostage.vaginalCount += 1>>
-		giving an interview. She gushes over how great it feels being a chiseled goddess and how terrible it is that some people want to keep girls obese, slovenly wastes of flesh.
+		giving an interview. $He gushes over how great it feels being a chiseled goddess and how terrible it is that some people want to keep girls obese, slovenly wastes of flesh.
 	<<case "Chattel Religionism">>
 		<<set $hostage.vaginalCount += 1>>
-		giving an interview. She gushes over how great it is to experience all manners of class and culture, both physically and spiritually.
+		giving an interview. $He gushes over how great it is to experience all manners of class and culture, both physically and spiritually.
 	<<case "Multiculturalism">>
 		<<set $hostage.vaginalCount += 1>>
-		giving a public sermon. She declares that if it would save the nonbelievers, she would gladly take every one of their dicks into $his body; at once, if she were able to.
+		giving a public sermon. $He declares that if it would save the nonbelievers, $he would gladly take every one of their dicks into $his body; at once, if $he were able to.
 	<<default>>
 		<<set $hostage.vaginalCount += 1>>
-		giving an interview. She gushes over how great it is to experience all manners of class and culture, both physically and spiritually.
+		giving an interview. $He gushes over how great it is to experience all manners of class and culture, both physically and spiritually.
 	<</switch>>
 <<elseif $rivalryDuration >= 30>>
 	<<set $hostageAnnounced = 0>>
@@ -1514,7 +1514,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.vaginalCount += 100>>
 		<<set $hostage.analCount += 100>>
 		<<set $hostage.mammaryCount += 100>>
-		moaning gently as she rides a man, cowgirl style, as he rubs $his pregnant belly.
+		moaning gently as $he rides a man, cowgirl style, as he rubs $his pregnant belly.
 	<<elseif $rivalryDuration <= 20>>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
@@ -1549,7 +1549,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.vaginalCount += 50>>
 		<<set $hostage.analCount += 50>>
 		<<set $hostage.mammaryCount += 50>>
-		reluctantly orgasming as she is taken doggystyle, $his full pregnancy brushing the floor under $him.
+		reluctantly orgasming as $he is taken doggystyle, $his full pregnancy brushing the floor under $him.
 	<<elseif $rivalryDuration <= 15>>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
@@ -1559,7 +1559,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.vaginalCount += 100>>
 		<<set $hostage.analCount += 100>>
 		<<set $hostage.mammaryCount += 100>>
-		moaning gently as she rides a man completely obscured by $his enormous pregnancy.
+		moaning gently as $he rides a man completely obscured by $his enormous pregnancy.
 	<<elseif $rivalryDuration <= 20>>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
@@ -1899,7 +1899,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.muscles += 5>>
 		<<set $hostage.fetishStrength += 5>>
 		<<set $hostage.vaginalCount += 1>>
-		reluctantly doing situps, $his plush body struggling to manage.
+		reluctantly doing sit-ups, $his plush body struggling to manage.
 	<<elseif $rivalryDuration <= 15>>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
@@ -1945,9 +1945,9 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.devotion -= 5>>
 		<<set $hostage.weight += 5>>
 		<<set $hostage.boobs += 1000>>
-		begging for $his immobilizing <<print $hostage.boobs>>cc tits to be drained. She has become quite fat.
+		begging for $his immobilizing <<print $hostage.boobs>>cc tits to be drained. $He has become quite fat.
 	<<else>>
-		resting atop $his mountainous <<print $hostage.boobs>>cc tits, whining about not being allowed to have $his assets swollen more and that she isn't being milked.
+		resting atop $his mountainous <<print $hostage.boobs>>cc tits, whining about not being allowed to have $his assets swollen more and that $he isn't being milked.
 	<</if>>
 	<<case "Physical Idealism">>
 	<<if $rivalryDuration <= 5>>
@@ -1956,7 +1956,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.weight += 5>>
 		<<set $hostage.boobs += 50>>
 		<<set $hostage.vaginalCount += 28>>
-		trying desperately to vomit up all the food forced into $his bloated body while being thwarted by a specialized gag. She appears to have gained some weight.
+		trying desperately to vomit up all the food forced into $his bloated body while being thwarted by a specialized gag. $He appears to have gained some weight.
 	<<elseif $rivalryDuration <= 10>>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
@@ -1979,7 +1979,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 			<<set $hostage.pregWeek++>>
 			<<run SetBellySize($hostage)>>
 		<</switch>>
-		relaxing in $his comfy bed carefully exploring $his food stuffed belly and new curves. She's certainly getting soft.
+		relaxing in $his comfy bed carefully exploring $his food stuffed belly and new curves. $He's certainly getting soft.
 	<<elseif $rivalryDuration <= 15>>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
@@ -2022,7 +2022,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 			<<set $hostage.pregWeek++>>
 			<<run SetBellySize($hostage)>>
 		<</switch>>
-		relaxing in $his comfy bed surrounded by mountains of molded slave food. She is eagerly shoving handfuls of the fattening treats into $his mouth while simultaneously begging for someone to fill $his neglected pussy. She has become quite fat; $his body jiggles with every motion.
+		relaxing in $his comfy bed surrounded by mountains of molded slave food. $He is eagerly shoving handfuls of the fattening treats into $his mouth while simultaneously begging for someone to fill $his neglected pussy. $He has become quite fat; $his body jiggles with every motion.
 	<<else>>
 		<<set $hostage.weight += 5>>
 		<<set $hostage.boobs += 100>>
@@ -2041,7 +2041,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 			<<set $hostage.pregWeek++>>
 			<<run SetBellySize($hostage)>>
 		<</switch>>
-		relaxing in $his comfy bed surrounded by mountains of molded slave food. She is greedily shoving handfuls of the fattening treats into $his mouth as fast as she can. She has grown enormously fat and $his belly is jiggling oddly. When she repositions $himself, you catch sight of a quartet of large vibrating dildos crammed into $his stretched cunt.
+		relaxing in $his comfy bed surrounded by mountains of molded slave food. $He is greedily shoving handfuls of the fattening treats into $his mouth as fast as $he can. $He has grown enormously fat and $his belly is jiggling oddly. When $he repositions $himself, you catch sight of a quartet of large vibrating dildos crammed into $his stretched cunt.
 	<</if>>
 	<<case "Hedonistic Decadence">>
 	<<if $rivalryDuration <= 5>>
@@ -2057,7 +2057,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.muscles += 5>>
 		<<set $hostage.fetishStrength += 5>>
 		<<set $hostage.vaginalCount += 1>>
-		reluctantly doing situps, $his plush body struggling to manage.
+		reluctantly doing sit-ups, $his plush body struggling to manage.
 	<<elseif $rivalryDuration <= 15>>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
@@ -2265,7 +2265,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.vaginalCount += 5>>
 		<<set $hostage.analCount += 5>>
 		<<set $hostage.mammaryCount += 5>>
-		relaxing, knowing she will never deal with menstruation again.
+		relaxing, knowing $he will never deal with menstruation again.
 	<<elseif $rivalryDuration <= 20>>
 		<<set $hostage.trust -= 5>>
 		<<set $hostage.devotion -= 5>>
@@ -2273,7 +2273,7 @@ Your inter-arcology war with the arcology owner behind the Daughters of Liberty
 		<<set $hostage.vaginalCount += 5>>
 		<<set $hostage.analCount += 5>>
 		<<set $hostage.mammaryCount += 5>>
-		playing with $his owner without worry, seeing as she can't get pregnant.
+		playing with $his owner without worry, seeing as $he can't get pregnant.
 	<<else>>
 		<<set $hostage.oralCount += 5>>
 		<<set $hostage.vaginalCount += 5>>
@@ -3927,7 +3927,7 @@ You remind yourself that success in this conflict will not be defined by the tra
 <<if $mercenaries >= 3>>
 <br><<link "Lock your rival down and let your mercs walk right in.">>
 	<<replace "#result">>
-	While you hold your rival's arcology's system under your complete control, $assistantName finally reports to you in <<if $assistant == 0>>its<<else>>her<</if>> normal tones, "Team One reports
+	While you hold your rival's arcology's system under your complete control, $assistantName finally reports to you in _hisA normal tones, "Team One reports
 
 		<<switch $rivalryFS>>
 		<<case "Racial Subjugationism">>Racemixer
diff --git a/src/uncategorized/pRivalryCapture.tw b/src/uncategorized/pRivalryCapture.tw
index 17b902bb167bc60c729fac119ef93b49343cec32..8f2db9cbd804dea8438a9adabd3c1cbc32d61176 100644
--- a/src/uncategorized/pRivalryCapture.tw
+++ b/src/uncategorized/pRivalryCapture.tw
@@ -28,7 +28,7 @@
 	<<set $activeSlaveOneTimeMinAge = 18>>
 	<<set $activeSlaveOneTimeMaxAge = 42>>
 	<<set $oneTimeDisableDisability = 1>>
-	<<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>>
+	<<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>>
 	<<include "Generate XY Slave">>
 	<<set $activeSlave.face = 100>>
 	<<set $activeSlave.faceImplant = 15>>
@@ -64,7 +64,7 @@
 	<<set $activeSlaveOneTimeMinAge = 18>>
 	<<set $activeSlaveOneTimeMaxAge = 42>>
 	<<set $oneTimeDisableDisability = 1>>
-	<<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>>
+	<<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>>
 	<<include "Generate XY Slave">>
 	<<set $activeSlave.chem = 3000>>
 	<<set $activeSlave.face = 100>>
@@ -99,7 +99,7 @@
 	<<set $activeSlaveOneTimeMinAge = $minimumSlaveAge>>
 	<<set $activeSlaveOneTimeMaxAge = 18>>
 	<<set $oneTimeDisableDisability = 1>>
-	<<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>>
+	<<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>>
 	<<include "Generate XY Slave">>
 	<<set $activeSlave.face = 100>>
 	<<set $activeSlave.faceShape = "androgynous">>
@@ -132,7 +132,7 @@
 	<<set $activeSlaveOneTimeMinAge = 18>>
 	<<set $activeSlaveOneTimeMaxAge = 42>>
 	<<set $oneTimeDisableDisability = 1>>
-	<<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>>
+	<<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>>
 	<<include "Generate XY Slave">>
 	<<set $activeSlave.face = 55>>
 	<<set $activeSlave.faceImplant = 0>>
@@ -163,7 +163,7 @@
 	<<set $activeSlaveOneTimeMinAge = 18>>
 	<<set $activeSlaveOneTimeMaxAge = 42>>
 	<<set $oneTimeDisableDisability = 1>>
-	<<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>>
+	<<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>>
 	<<include "Generate XY Slave">>
 	<<set $activeSlave.face = 55>>
 	<<set $activeSlave.faceImplant = 0>>
@@ -194,7 +194,7 @@
 	<<set $activeSlaveOneTimeMinAge = 18>>
 	<<set $activeSlaveOneTimeMaxAge = 42>>
 	<<set $oneTimeDisableDisability = 1>>
-	<<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>>
+	<<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>>
 	<<include "Generate XX Slave">>
 	<<set $activeSlave.face = 55>>
 	<<set $activeSlave.faceImplant = 0>>
@@ -235,7 +235,7 @@
 		<<set $activeSlaveOneTimeMaxAge = 42>>
 	<</if>>
 	<<set $oneTimeDisableDisability = 1>>
-	<<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>>
+	<<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>>
 	<<include "Generate XX Slave">>
 	<<set $activeSlave.pubertyXX = 1>>
 	<<set $activeSlave.face = 100>>
@@ -284,7 +284,7 @@
 	<<set $activeSlaveOneTimeMinAge = $minimumSlaveAge>>
 	<<set $activeSlaveOneTimeMaxAge = 12>>
 	<<set $oneTimeDisableDisability = 1>>
-	<<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>>
+	<<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>>
 	<<include "Generate XX Slave">>
 	<<set $activeSlave.face = 100>>
 	<<set $activeSlave.faceImplant = 0>>
@@ -316,7 +316,7 @@
 	<<set $activeSlaveOneTimeMinAge = 18>>
 	<<set $activeSlaveOneTimeMaxAge = 42>>
 	<<set $oneTimeDisableDisability = 1>>
-	<<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>>
+	<<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>>
 	<<include "Generate XX Slave">>
 	<<set $activeSlave.face = 55>>
 	<<set $activeSlave.faceImplant = 0>>
@@ -349,7 +349,7 @@
 	<<set $activeSlaveOneTimeMinAge = 18>>
 	<<set $activeSlaveOneTimeMaxAge = 42>>
 	<<set $oneTimeDisableDisability = 1>>
-	<<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>>
+	<<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>>
 	<<include "Generate XX Slave">>
 	<<set $activeSlave.face = 100>>
 	<<set $activeSlave.faceImplant = 65>>
@@ -383,7 +383,7 @@
 	<<set $activeSlaveOneTimeMinAge = 18>>
 	<<set $activeSlaveOneTimeMaxAge = 42>>
 	<<set $oneTimeDisableDisability = 1>>
-	<<if ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"].includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>>
+	<<if setup.filterRacesLowercase.includes($rivalRace)>><<set $fixedRace = $rivalRace>><</if>>
 	<<include "Generate XX Slave">>
 	<<set $activeSlave.face = 100>>
 	<<set $activeSlave.faceImplant = 15>>
diff --git a/src/uncategorized/pRivalryHostage.tw b/src/uncategorized/pRivalryHostage.tw
index ad63f4c1ca8e8f87d0f51d910774128829670a45..91a6e2d75fb7e2233fcb92bea9296cacc2af8e3c 100644
--- a/src/uncategorized/pRivalryHostage.tw
+++ b/src/uncategorized/pRivalryHostage.tw
@@ -8,8 +8,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XX Slave">>
diff --git a/src/uncategorized/pUndergroundRailroad.tw b/src/uncategorized/pUndergroundRailroad.tw
index 132424369b0d2d0c10418dff580255fd151c187c..2eb2cf2e87bca140eaba37acf708ce5d106cc8f8 100644
--- a/src/uncategorized/pUndergroundRailroad.tw
+++ b/src/uncategorized/pUndergroundRailroad.tw
@@ -2,13 +2,16 @@
 
 <<set $nextButton = " ", $nextLink = "Random Nonindividual Event">> /* hide button until user makes a selection */
 
-<<set $activeSlave = $slaves.find(function(s) { return s.fuckdoll == 0 && s.fetish != "mindbroken" && s.amp != 1 && s.devotion < 75 && s.trust < 75 && s.indenture == -1 && canWalk(s) && canTalk(s) && ["whore", "serve the public", "serve in the club", "work in the brothel"].includes(s.assignment); })>>
+<<set $activeSlave = $slaves.find(function(s) { return s.fuckdoll == 0 && s.fetish != "mindbroken" && s.amp != 1 && s.devotion < 75 && s.trust < 75 && s.indenture == -1 && canWalk(s) && canTalk(s) && ["serve in the club", "serve the public", "whore", "work in the brothel"].includes(s.assignment); })>>
 <<if (ndef $activeSlave)>> /* search again without assignments limitation */
 	<<set $activeSlave = $slaves.find(function(s) { return s.fuckdoll == 0 && s.fetish != "mindbroken" && s.amp != 1 && s.devotion < 75 && s.trust < 75 && s.indenture == -1 && canTalk(s); })>>
 	<<if (ndef $activeSlave)>> /* we will find one */
 		<<set $activeSlave = $slaves.find(function(s) { return s.fuckdoll == 0 && s.fetish != "mindbroken" && s.amp != 1 && s.devotion < 20 && canTalk(s); })>>
-		<<if (ndef $activeSlave)>> /* still no match */
-			<<set $activeSlave = $slaves.random()>>
+		<<if (ndef $activeSlave)>> /* we will find one */
+			<<set $activeSlave = $slaves.find(function(s) { return s.fuckdoll == 0 && s.fetish != "mindbroken" && s.amp != 1 && canTalk(s); })>>
+			<<if (ndef $activeSlave)>> /* still no match */
+				<<set $activeSlave = $slaves.random()>>
+			<</if>>
 		<</if>>
 	<</if>>
 <</if>>
@@ -51,7 +54,7 @@ One fine day, as normal as any day surrounded by your slaves can be, you're sitt
 	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
 		_HisA avatar twitches slightly before sprouting multiple eyes facing all directions.
 	<<case "schoolgirl">>
-		_HisA avatar puts on such a hard look of concentration that its eyes cross.
+		_HisA avatar puts on such a hard look of concentration that _hisA eyes cross.
 	<<default>>
 		_HisA symbol avatar spins with frustration.
 	<</switch>>
diff --git a/src/uncategorized/peHeadgirlConcubine.tw b/src/uncategorized/peHeadgirlConcubine.tw
index ce74e13d8c7708103138be91f6def0509f66d824..521a08b00cafe087623ca8d1020f8c836a7d75ec 100644
--- a/src/uncategorized/peHeadgirlConcubine.tw
+++ b/src/uncategorized/peHeadgirlConcubine.tw
@@ -209,7 +209,7 @@ and it's also obvious that they've been filling the few minutes they've been wai
 	<</if>>
 	$he clears $his throat and asks your permission to make a couple of last-minute changes to slaves' assignments for the day.
 	<br><br>
-	As $he did so, you were encircling your girls in your <<if $arcologies[0].FSPhysicalIdealist != "unset">>powerful arms<<else>>dominant grip<<else>>loving grip<</if>>. Cupping your Head Girl's butt in your left hand and your Concubine's in your right, you give them a good squeeze as $HeadGirl.slaveName finishes $his question. $His voice rises cutely as your marauding hand moves over the
+	As $he did so, you were encircling your girls in your <<if $arcologies[0].FSPhysicalIdealist != "unset">>powerful arms<<elseif $PC.title == 1>>dominant grip<<else>>loving grip<</if>>. Cupping your Head Girl's butt in your left hand and your Concubine's in your right, you give them a good squeeze as $HeadGirl.slaveName finishes $his question. $His voice rises cutely as your marauding hand moves over the
 	<<if $HeadGirl.butt > 10>>
 		endless expanse of $his backside. $He manages to finish, but trails off into a groan, the <<if Math.floor($HeadGirl.buttImplant/$HeadGirl.butt) > .60>>firm<<else>>soft<</if>> flesh quivering against your palm.
 	<<else>>
diff --git a/src/uncategorized/personalAssistantAppearance.tw b/src/uncategorized/personalAssistantAppearance.tw
index 32f63b6a81d4935dd50f4d8a727f58a6a50d84ce..f97611057a7863983114b7300651497edbe5e8d1 100644
--- a/src/uncategorized/personalAssistantAppearance.tw
+++ b/src/uncategorized/personalAssistantAppearance.tw
@@ -443,7 +443,7 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF
 	<<case "edo revivalist">>
 		wearing a simple robe appropriate for a proper, traditional Japanese lady.
 	<<case "arabian revivalist">>
-		wearing a long plaid skirt, a clean white shirt, and a headscarf, making _himA look like an Arab girl attending a Western school.
+		wearing a long plaid skirt, a clean white shirt, and a headscarf, making _himA look like an Arab _girlA attending a Western school.
 	<<case "chinese revivalist">>
 		wearing a plaid skirt and a white shirt. _HisA hair is pulled back into a bun and secured by a couple of chopsticks.
 	<<case "chattel religionist">>
@@ -559,7 +559,7 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF
 		<<elseif $minimumSlaveAge > 8>>
 			_HeA's fresh into _hisA teens and firmly anchored by _hisA mammoth belly. _HisA attempts to try and move are frequently interrupted as another child begins forcing is way out of _hisA tight pussy.
 		<<elseif $minimumSlaveAge > 4>>
-			_HeA's just a young girl and already has had more children than most women will in their lives. _HeA happily embraces _hisA mammoth belly, the force of _hisA hug forcing milk out of _hisA breasts and babies out of _hisA crotch.
+			_HeA's just a young _girlA and already has had more children than most women will in their lives. _HeA happily embraces _hisA mammoth belly, the force of _hisA hug forcing milk out of _hisA breasts and babies out of _hisA crotch.
 		<<else>>
 			_HeA's surprisingly young; _heA happily bounces atop _hisA mammoth belly forcing milk out of _hisA breasts and babies out of _hisA crotch.
 		<</if>>
@@ -941,7 +941,7 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF
 	<<case "paternalist">>
 		slime with a modest pink dress floating inside _himA.
 	<<case "supremacist">>
-		slime. _HeA keeps trying to shape _hisA goo into a beautiful $arcologies[0].FSSupremacistRace girl, but _heA hasn't quite perfected the finer details yet.
+		slime. _HeA keeps trying to shape _hisA goo into a beautiful $arcologies[0].FSSupremacistRace _girlA, but _heA hasn't quite perfected the finer details yet.
 	<<case "subjugationist">>
 		slime. _HeA keeps trying to shape _hisA goo into a pretty face, but keeps ending up with overexaggerated $arcologies.FSSubjugationistRace features instead.
 	<<case "roman revivalist">>
@@ -1270,9 +1270,9 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF
 	<<case "supremacist">>
 		_HeA's managed to correct the spell, and even succeed in it. _HeA is now <<if $arcologies[0].FSSupremacistRace == "mixed race">>the perfect blend of every ethnicity, with all of their best qualities and none of their flaws<<else>>ethnically 100% pure $arcologies[0].FSSupremacistRace<</if>>. If _heA were real, _heA would make the perfect breeding stock for the next generation of the master race.
 	<<case "subjugationist">>
-		_HeA still hasn't managed to undo the spell; _heA looks like a racist caricature of a $arcologies[0].FSSubjugationistRace girl, and has an appropriately demeaning accent to match. What's worse, the spell also seems to have stripped most of _hisA literacy in $language, making reading _hisA tomes an arduous task for _himA.
+		_HeA still hasn't managed to undo the spell; _heA looks like a racist caricature of a $arcologies[0].FSSubjugationistRace _girlA, and has an appropriately demeaning accent to match. What's worse, the spell also seems to have stripped most of _hisA literacy in $language, making reading _hisA tomes an arduous task for _himA.
 	<<case "roman revivalist">>
-		While _heA acts like a typical Roman woman, _heA is pretty obviously Greek. _HeA can't even name the Pantheon correctly.
+		While _heA acts like a typical Roman _womanA, _heA is pretty obviously Greek. _HeA can't even name the Pantheon correctly.
 	<<case "aztec revivalist">>
 		_HeA is still very obviously not a native and has become rather caught up in the fear that _heA'll soon be sacrificed.
 	<<case "egyptian revivalist">>
@@ -1304,7 +1304,7 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF
 	<<case "asset expansionist">>
 		_HeA's managed to partially undo the spell; _hisA breasts are merely as big as _heA is now. One simple, correctly performed, levitation spell later and _heA is fully capable of functioning with _hisA oversized tits.
 	<<case "transformation fetishist">>
-		While _heA has managed to regain _hisA flexibility, _heA still greatly resembles an overinflated blow-up doll. _HisA lips are stuck in an O shape, _hisA breasts are the size of beach balls, _hisA ass and thighs larger than any girl's you've seen, and above all else is _hisA huge medicine ball sized belly; fortunately they don't weigh nearly as much as they should, part of the benefits of being an inflatable sex-doll.
+		While _heA has managed to regain _hisA flexibility, _heA still greatly resembles an overinflated blow-up doll. _HisA lips are stuck in an O shape, _hisA breasts are the size of beach balls, _hisA ass and thighs larger than any _girlA's you've seen, and above all else is _hisA huge medicine ball sized belly; fortunately they don't weigh nearly as much as they should, part of the benefits of being an inflatable sex-doll.
 	<<case "pastoralist">>
 		_HeA's managed to shrink _hisA nine breasts somewhat; they are merely head sized now. The front of _hisA robes is strained from _hisA excessive number of milky tits.
 	<<case "maturity preferentialist">>
@@ -1357,7 +1357,7 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF
 <</if>>
 
 <<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-	_HeA's an odd little girl, with slightly off mannerisms,
+	_HeA's an odd little _girlA, with slightly off mannerisms,
 	<<if $assistantFSOptions>>
 	<<switch $assistantFSAppearance>>
 	<<case "paternalist">>
@@ -1444,11 +1444,11 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF
 	<<if $marketAssistantRelationship == "cute">>
 		The market assistant is tightly wrapped in a bodysuit made of $assistantName, save for _hisM exposed, very pregnant, belly. _HisA head briefly appears over the _girlM's face and eyes you, while the market assistant giggles at the sensations covering _hisM body.
 	<<elseif $marketAssistantRelationship == "nonconsensual">>
-		The market assistant has been reduced to nothing more than a bloated incubator. $assistantName runs _hisA tendrils across _hisA breeder's swollen body, fondling _hisM squirming, offspring filled breasts and massaging _hisM octuplet sized, bulging pregnancy. The hapless girl twitches slightly as several more wormlike creatures slip from _hisM body, prompting $assistantName to drive _hisA tentacles into all _hisM holes and vigorously pump _himM full of even more aphrodisiacs and eggs.
+		The market assistant has been reduced to nothing more than a bloated incubator. $assistantName runs _hisA tendrils across _hisA breeder's swollen body, fondling _hisM squirming, offspring filled breasts and massaging _hisM octuplet sized, bulging pregnancy. The hapless _girlM twitches slightly as several more wormlike creatures slip from _hisM body, prompting $assistantName to drive _hisA tentacles into all _hisM holes and vigorously pump _himM full of even more aphrodisiacs and eggs.
 	<<elseif $marketAssistantRelationship == "incestuous">>
-		The market assistant's arms and legs are sunken into a wall of $assistantName's flesh; _hisM immense stomach and breasts allowed to hang free. One of _hisM breasts visibly shifts as another wormlike larva pushes its way out of _hisM nipple, waking the addled girl from _hisM stupor. _HeM moans lustfully, _hisM mind thoroughly warped by $assistantName's aphrodisiacs, "Shishter! I need more... I feel sho empty! Fill me up till I bursht!" $assistantName wastes no time in snaking into _hisM gaping holes and pumping _himM so full _hisM belly touches the floor and breasts heave massively.
+		The market assistant's arms and legs are sunken into a wall of $assistantName's flesh; _hisM immense stomach and breasts allowed to hang free. One of _hisM breasts visibly shifts as another wormlike larva pushes its way out of _hisM nipple, waking the addled _girlM from _hisM stupor. _HeM moans lustfully, _hisM mind thoroughly warped by $assistantName's aphrodisiacs, "Shishter! I need more... I feel sho empty! Fill me up till I bursht!" $assistantName wastes no time in snaking into _hisM gaping holes and pumping _himM so full _hisM belly touches the floor and breasts heave massively.
 	<<else>>
-		They're sitting side by side, the market assistant resting an arm atop _hisM huge, larvae filled belly while clutching a newborn to _hisM breast. $assistantName embraces _hisA pregnant lover with several tentacles before drawing one to the girl's lips. _HeM delicately kisses it before wrapping _hisM lips around it and pleasuring _hisM mate.
+		They're sitting side by side, the market assistant resting an arm atop _hisM huge, larvae filled belly while clutching a newborn to _hisM breast. $assistantName embraces _hisA pregnant lover with several tentacles before drawing one to the _girlM's lips. _HeM delicately kisses it before wrapping _hisM lips around it and pleasuring _hisM mate.
 	<</if>>
 <<else>>
 	_HeA's idly standing there, at least when you look at _himA; you catch strange things in the corner of your vision while you are working.
@@ -1626,21 +1626,21 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF
 	<<case "degradationist">>
 		_HeA's recently added an obscene number of piercings to _hisA labia in addition to a pair of nipple rings and a big, heavy ring on _hisA clit. A thin chain links the clit ring to the heavy rings adorning _hisA chest.
 	<<case "supremacist">>
-		In fact, _heA is the most gorgeous $arcologies[0].FSSupremacistRace woman you've ever seen.
+		In fact, _heA is the most gorgeous $arcologies[0].FSSupremacistRace _womanA you've ever seen.
 	<<case "subjugationist">>
-		In fact, _heA is the most gorgeous $arcologies[0].FSSubjugationistRace woman you've ever seen.
+		In fact, _heA is the most gorgeous $arcologies[0].FSSubjugationistRace _womanA you've ever seen.
 	<<case "roman revivalist">>
-		In fact, _heA is the most gorgeous Roman woman you've ever seen.
+		In fact, _heA is the most gorgeous Roman _womanA you've ever seen.
 	<<case "aztec revivalist">>
-		In fact, _heA is the most gorgeous Aztec woman you've ever seen.
+		In fact, _heA is the most gorgeous Aztec _womanA you've ever seen.
 	<<case "egyptian revivalist">>
-		In fact, _heA is the most gorgeous Egyptian woman you've ever seen.
+		In fact, _heA is the most gorgeous Egyptian _womanA you've ever seen.
 	<<case "edo revivalist">>
-		In fact, _heA is the most gorgeous Japanese woman you've ever seen.
+		In fact, _heA is the most gorgeous Japanese _womanA you've ever seen.
 	<<case "arabian revivalist">>
-		In fact, _heA is the most gorgeous Arabic woman you've ever seen.
+		In fact, _heA is the most gorgeous Arabic _womanA you've ever seen.
 	<<case "chinese revivalist">>
-		In fact, _heA is the most gorgeous Chinese woman you've ever seen.
+		In fact, _heA is the most gorgeous Chinese _womanA you've ever seen.
 	<<case "chattel religionist">>
 		_HeA is wearing a tight dress modeled after the symbol of your new religion; it leaves _hisA nipples and crotch fully exposed.
 	<<case "physical idealist">>
@@ -1670,7 +1670,7 @@ _HeA's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantF
 	<<case "pastoralist">>
 		_HeA is wearing a pair of cow-print bikinis over _hisA head sized breasts. A quartet of wet spots adorn _hisA tops at all times.
 	<<case "maturity preferentialist">>
-		_HeA has recently begun presenting _himselfA as an experienced, mature woman; one can only wonder what positions and tricks _heA knows.
+		_HeA has recently begun presenting _himselfA as an experienced, mature _womanA; one can only wonder what positions and tricks _heA knows.
 	<<case "youth preferentialist">>
 		_HeA has recently adjusted _hisA age to reflect your youth focused society.
 		<<if $minimumSlaveAge == 3>>
diff --git a/src/uncategorized/reAWOL.tw b/src/uncategorized/reAWOL.tw
index d524af17309d583038e1e6b56fc49f7a0896abc8..fddfe9a847bdc53b9243c282c3f79c92ef8d4015 100644
--- a/src/uncategorized/reAWOL.tw
+++ b/src/uncategorized/reAWOL.tw
@@ -13,8 +13,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<if $seeDicks != 100>>
diff --git a/src/uncategorized/reFSAcquisition.tw b/src/uncategorized/reFSAcquisition.tw
index d7b83240b8557a602e7a15dc6d9eb1d377835624..be1b46e0685776fd83700c3d6a1dd9b05c499eaf 100644
--- a/src/uncategorized/reFSAcquisition.tw
+++ b/src/uncategorized/reFSAcquisition.tw
@@ -394,8 +394,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate New Slave">>
@@ -532,8 +531,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate New Slave">>
@@ -765,8 +763,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate New Slave">>
@@ -887,8 +884,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XX Slave">>
@@ -991,8 +987,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate New Slave">>
diff --git a/src/uncategorized/reMalefactor.tw b/src/uncategorized/reMalefactor.tw
index d6ff5c0fc2a731b9b2d2e01c126604733e796dbe..782395cd4c7ac0ef5a4a0afefcf1ec4f8c4b5a25 100644
--- a/src/uncategorized/reMalefactor.tw
+++ b/src/uncategorized/reMalefactor.tw
@@ -135,8 +135,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XX Slave">>
@@ -165,8 +164,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate New Slave">>
@@ -209,8 +207,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XY Slave">>
@@ -237,8 +234,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XX Slave">>
diff --git a/src/uncategorized/reMilfTourist.tw b/src/uncategorized/reMilfTourist.tw
index 194dc3813c4f651fdd7080d141b5b3cb27d23da0..ed8b5951180fa00eaff0425963516628f135e871 100644
--- a/src/uncategorized/reMilfTourist.tw
+++ b/src/uncategorized/reMilfTourist.tw
@@ -14,8 +14,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XX Slave">>
diff --git a/src/uncategorized/rePokerNight.tw b/src/uncategorized/rePokerNight.tw
index f4d308cf4dafc3d5b6f4cf52d8f2a4df716dab45..23e00cb7bdeb8f39a3626cbbcce79da7cf620f1f 100644
--- a/src/uncategorized/rePokerNight.tw
+++ b/src/uncategorized/rePokerNight.tw
@@ -61,8 +61,7 @@ On a particularly lackadaisical evening, you find yourself alerted to a message
 					<<if $arcologies[0].FSSupremacistLawME == 1>>
 						<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 					<<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-						<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-						<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+						<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 						<<set $fixedRace = _races.random()>>
 					<</if>>
 					<<if $seeDicks != 100>>
diff --git a/src/uncategorized/reRecruit.tw b/src/uncategorized/reRecruit.tw
index 4d8762c4643e2107c0c56f0b2f940d4c939b312c..5b52a3907d24819a9a3493b64df7432af1e49195 100644
--- a/src/uncategorized/reRecruit.tw
+++ b/src/uncategorized/reRecruit.tw
@@ -32,8 +32,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XX Slave">>
@@ -68,8 +67,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XY Slave">>
@@ -99,8 +97,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XX Slave">>
@@ -140,8 +137,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XX Slave">>
@@ -156,8 +152,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XY Slave">>
@@ -186,8 +181,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XX Slave">>
@@ -223,8 +217,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XX Slave">>
@@ -255,8 +248,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate New Slave">>
@@ -293,8 +285,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XX Slave">>
@@ -316,8 +307,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XY Slave">>
@@ -407,8 +397,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XX Slave">>
@@ -434,8 +423,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XX Slave">>
@@ -465,8 +453,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XY Slave">>
@@ -508,8 +495,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XX Slave">>
@@ -545,8 +531,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XY Slave">>
@@ -585,8 +570,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XX Slave">>
@@ -640,8 +624,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XX Slave">>
@@ -681,8 +664,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XY Slave">>
@@ -723,8 +705,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XY Slave">>
@@ -1536,8 +1517,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate New Slave">>
@@ -1601,8 +1581,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate New Slave">>
@@ -1658,8 +1637,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<set $oneTimeDisableDisability = 1>>
@@ -1780,8 +1758,7 @@
 <<if $arcologies[0].FSSupremacist != "unset">>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationist != "unset">>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XX Slave">>
diff --git a/src/uncategorized/reShelterInspection.tw b/src/uncategorized/reShelterInspection.tw
index 1490c6ee1df0b701c787f24111bdd2ddd600f98c..b3ffc0c6700203255e24a6df5a96985561c513cb 100644
--- a/src/uncategorized/reShelterInspection.tw
+++ b/src/uncategorized/reShelterInspection.tw
@@ -9,8 +9,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<set $contractCost = 10000>>
diff --git a/src/uncategorized/recETS.tw b/src/uncategorized/recETS.tw
index 3542c5cbbc976f57136fa1bd0703c033921e5958..ad0e89f866603029bb869d06ff35b37a7e561e3c 100644
--- a/src/uncategorized/recETS.tw
+++ b/src/uncategorized/recETS.tw
@@ -31,8 +31,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate New Slave">>
@@ -69,8 +68,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XX Slave">>
@@ -461,8 +459,7 @@
 <<if $arcologies[0].FSSupremacistLawME == 1>>
 	<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 <<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-	<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-	<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+	<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 	<<set $fixedRace = _races.random()>>
 <</if>>
 <<include "Generate XY Slave">>
@@ -1388,6 +1385,8 @@
 
 <</switch>>
 
+<<run generatePronouns($activeSlave)>>
+
 <<set $relative2 = clone($activeSlave)>>
 <<set $activeSlave = clone($relative)>>
 
diff --git a/src/uncategorized/resMove.tw b/src/uncategorized/resMove.tw
index 71596d2c4a56bc4358b2206aad663428843d4f69..217275c434ceb320e57c8e8a9ea019ff94a9e65e 100644
--- a/src/uncategorized/resMove.tw
+++ b/src/uncategorized/resMove.tw
@@ -226,7 +226,7 @@ as you suspected,
 		<<case "loli" "preggololi">>
 			those muscles!" _heA exclaims.
 		<<case "angel">>
-			those lovely muscles," mutters. "I'd feel so safe with them around me..."
+			those lovely muscles," _heA mutters. "I'd feel so safe with them around me..."
 		<<case "cherub">>
 			sweaty muscles!" _hisA avatar says. "I wonder if I could fly faster with them?"
 		<<case "incubus">>
@@ -273,7 +273,7 @@ as you suspected,
 		<<case "witch">>
 			<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> pauses and then says seriously, "If you aren't careful with magic you can end up like that... Not that I have before!" _heA shouts, turning red.
 		<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-			<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> pauses, its hips and crotch splitting open to allow a massive phallic object to sag to the ground, "We are similar."
+			<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> pauses, _hisA hips and crotch splitting open to allow a massive phallic object to sag to the ground, "We are similar."
 		<<case "schoolgirl">>
 			<<if $assistantName == "your personal assistant">>Your personal assistant<<else>>$assistantName<</if>> pauses and then says seriously, "They kind of make me want a cock."
 		<<default>>
@@ -282,7 +282,7 @@ as you suspected,
 	<</if>>
 <</if>>
 <br><br>
-Your assistant is a powerful analytic tool, but _heA lacks the capacity for true creativity. _heA did not mention the long term. It would be possible to support the
+Your assistant is a powerful analytic tool, but _heA lacks the capacity for true creativity. _HeA did not mention the long term. It would be possible to support the
 <<if ($RESMove == "TSS") || ($RESMove == "SCP") || ($RESMove == "LDE") || ($RESMove == "TGA") || ($RESMove == "HA")>>
 	school's
 <<elseif $RESMove == "GRI">>
diff --git a/src/uncategorized/walkPast.tw b/src/uncategorized/walkPast.tw
index 7506db1c460ed8427a7ca3549875809c4a130d57..8716011a655bfb8840a4788cdbaec7fb684cb160 100644
--- a/src/uncategorized/walkPast.tw
+++ b/src/uncategorized/walkPast.tw
@@ -32,7 +32,6 @@
 	<<set _flag = random(1,100), $partner = "">>
 <</if>>
 
-<<run SlavePronouns($activeSlave)>> /* are we including passages that need this? */
 <<setLocalPronouns $activeSlave>>
 
 <span id="walk">
@@ -4176,11 +4175,11 @@
 <<else>>
 	<<switch $target>>
 	<<case "FVagina">>
-		<span id="walkpast"><<link "Fuck it">><<replace "#walk">><<FFuckdollVaginal>><</replace>><</link>></span>
+		<span id="walkpast"><<link "Fuck $him">><<replace "#walk">><<FFuckdollVaginal>><</replace>><</link>></span>
 	<<case "FButt" "FAnus">>
-		<span id="walkpast"><<link "Fuck it">><<replace "#walk">><<FFuckdollAnal>><</replace>><</link>></span>
+		<span id="walkpast"><<link "Fuck $him">><<replace "#walk">><<FFuckdollAnal>><</replace>><</link>></span>
 	<<default>>
-		<span id="walkpast"><<link "Fuck it">><<replace "#walk">><<FFuckdollOral>><</replace>><</link>></span>
+		<span id="walkpast"><<link "Fuck $him">><<replace "#walk">><<FFuckdollOral>><</replace>><</link>></span>
 	<</switch>>
 <</if>>
 </span>
diff --git a/src/utility/miscWidgets.tw b/src/utility/miscWidgets.tw
index 32c617122a912a65cb358ec9942d65e0f7d5ed95..7b92338a7dc70a7d3c8b73d8150c585ec4707179 100644
--- a/src/utility/miscWidgets.tw
+++ b/src/utility/miscWidgets.tw
@@ -494,7 +494,7 @@
 %/
 <<widget "OralSkillIncrease">>
 
-<<run SlavePronouns($args[0])>>
+<<setLocalPronouns $args[0]>>
 <<if $args[0].oralSkill <= 10>>
 	<<if $args[0].oralSkill+$skillIncrease > 10>>
 		@@.green;$He now has basic knowledge about oral sex,@@ and can at least suck a dick without constant gagging.
@@ -523,7 +523,7 @@
 %/
 <<widget "VaginalSkillIncrease">>
 
-<<run SlavePronouns($args[0])>>
+<<setLocalPronouns $args[0]>>
 <<if $args[0].vaginalSkill <= 10>>
 	<<if $args[0].vaginalSkill+$skillIncrease > 10>>
 		@@.green;$He now has basic knowledge about vaginal sex,@@ and can avoid some of the common pitfalls and turnoffs.
@@ -552,7 +552,7 @@
 %/
 <<widget "AnalSkillIncrease">>
 
-<<run SlavePronouns($args[0])>>
+<<setLocalPronouns $args[0]>>
 <<if $args[0].analSkill <= 10>>
 	<<if $args[0].analSkill+$skillIncrease > 10>>
 		@@.green;$He now has basic knowledge about anal sex,@@ and can accept penetration of $his anus without danger.
@@ -581,7 +581,7 @@
 %/
 <<widget "WhoreSkillIncrease">>
 
-<<run SlavePronouns($args[0])>>
+<<setLocalPronouns $args[0]>>
 <<if $args[0].whoreSkill <= 10>>
 	<<if $args[0].whoreSkill+$skillIncrease > 10>>
 		@@.green;$He now has basic knowledge about how to whore,@@ and can avoid some potentially dangerous situations.
@@ -610,7 +610,7 @@
 %/
 <<widget "EntertainSkillIncrease">>
 
-<<run SlavePronouns($args[0])>>
+<<setLocalPronouns $args[0]>>
 <<if $args[0].entertainSkill <= 10>>
 	<<if $args[0].entertainSkill+$skillIncrease > 10>>
 		@@.green;$He now has basic knowledge about how to be entertaining,@@ and can usually avoid serious faux pas.
diff --git a/src/utility/slaveCreationWidgets.tw b/src/utility/slaveCreationWidgets.tw
index 19d240a245ef706ff4616eab4d4ee7e5978505ea..0c4616de86867c5802d7d4ca8d89a617b7bb7ecd 100644
--- a/src/utility/slaveCreationWidgets.tw
+++ b/src/utility/slaveCreationWidgets.tw
@@ -2848,8 +2848,7 @@
 	<<if $arcologies[0].FSSupremacistLawME == 1>>
 		<<set $fixedRace = $arcologies[0].FSSupremacistRace>>
 	<<elseif $arcologies[0].FSSubjugationistLawME == 1>>
-		<<set _races = ["amerindian", "asian", "black", "indo-aryan", "latina", "malay", "middle eastern", "mixed race", "pacific islander", "semitic", "southern european", "white"]>>
-		<<set _races = _races.delete($arcologies[0].FSSubjugationistRace)>>
+		<<set _races = setup.filterRacesLowercase.filter(race => race !== $arcologies[0].FSSubjugationistRace)>>
 		<<set $fixedRace = _races.random()>>
 	<</if>>
 	<<include "Generate New Slave">>
@@ -4537,6 +4536,7 @@
 	Someone messed up. _market is not known.
 
 <</switch>>
+<<run generatePronouns($activeSlave)>>
 <</widget>>
 
 /%