diff --git a/src/002-config/fc-version.js b/src/002-config/fc-version.js
index 9e521ba249c2c259c42ec3b05660606abb48abc2..ac0349ca66d0111ff2d46770fb6cf70e97632e27 100644
--- a/src/002-config/fc-version.js
+++ b/src/002-config/fc-version.js
@@ -1,6 +1,6 @@
 App.Version = {
 	base: "0.10.7.1", // The vanilla version the mod is based off of, this should never be changed.
-	pmod: "3.3.0",
+	pmod: "3.3.2",
 	release: 1062,
 };
 
diff --git a/src/js/slaveInteract.js b/src/interaction/slaveInteract.js
similarity index 100%
rename from src/js/slaveInteract.js
rename to src/interaction/slaveInteract.js
diff --git a/src/js/wardrobeUse.js b/src/interaction/wardrobeUse.js
similarity index 100%
rename from src/js/wardrobeUse.js
rename to src/interaction/wardrobeUse.js
diff --git a/src/js/rulesAutosurgery.js b/src/js/rulesAutosurgery.js
index 98e048098e23fc4264712324ecbbd377bfd2fc82..aa4f9623fe895e806578e2dc8d33f3ce42b8d1fc 100644
--- a/src/js/rulesAutosurgery.js
+++ b/src/js/rulesAutosurgery.js
@@ -140,7 +140,7 @@ window.rulesAutosurgery = (function() {
 	 * @param {string[]} surgeries
 	 */
 	function CommitSurgery(slave, thisSurgery, surgeries) {
-		const {his} = getPronouns(slave);
+		const {his, him} = getPronouns(slave);
 
 		/**
 		 * Performs an individual surgery procedure
@@ -430,17 +430,17 @@ window.rulesAutosurgery = (function() {
 			if (slave.horn !== "none" && thisSurgery.horn === 1) {
 				commitProcedure(`surgery to remove ${his} implanted horns`, s => { s.horn = "none"; });
 			} else if (slave.horn !== "curved succubus horns" && thisSurgery.horn === 2) {
-				commitProcedure(`surgery to implant ${his} with curved succubus horns`, s => { s.horn = "curved succubus horns"; s.hornColor = "white"; });
+				commitProcedure(`surgery to implant ${him} with curved succubus horns`, s => { s.horn = "curved succubus horns"; s.hornColor = "white"; });
 			} else if (slave.horn !== "backswept horns" && thisSurgery.horn === 3) {
-				commitProcedure(`surgery to implant ${his} with backswept horns`, s => { s.horn = "backswept horns"; s.hornColor = "white"; });
+				commitProcedure(`surgery to implant ${him} with backswept horns`, s => { s.horn = "backswept horns"; s.hornColor = "white"; });
 			} else if (slave.horn !== "cow horns" && thisSurgery.horn === 4) {
-				commitProcedure(`surgery to implant ${his} with cow horns`, s => { s.horn = "cow horns"; s.hornColor = "white"; });
+				commitProcedure(`surgery to implant ${him} with cow horns`, s => { s.horn = "cow horns"; s.hornColor = "white"; });
 			} else if (slave.horn !== "one long oni horn" && thisSurgery.horn === 5) {
-				commitProcedure(`surgery to implant ${his} with one long oni horn`, s => { s.horn = "one long oni horn"; s.hornColor = "white"; });
+				commitProcedure(`surgery to implant ${him} with one long oni horn`, s => { s.horn = "one long oni horn"; s.hornColor = "white"; });
 			} else if (slave.horn !== "two long oni horns" && thisSurgery.horn === 6) {
-				commitProcedure(`surgery to implant ${his} with two long oni horns`, s => { s.horn = "two long oni horns"; s.hornColor = "white"; });
+				commitProcedure(`surgery to implant ${him} with two long oni horns`, s => { s.horn = "two long oni horns"; s.hornColor = "white"; });
 			} else if (slave.horn !== "small horns" && thisSurgery.horn === 7) {
-				commitProcedure(`surgery to implant ${his} with small horns`, s => { s.horn = "small horns"; s.hornColor = "white"; });
+				commitProcedure(`surgery to implant ${him} with small horns`, s => { s.horn = "small horns"; s.hornColor = "white"; });
 			}
 		}
 		if (slave.health.health > 20 && surgeries.length < 3) {
diff --git a/src/js/slaveCostJS.js b/src/js/slaveCostJS.js
index 7aae5a3b3f200c2095261c80773b03a33d032c48..01e8744a58ed57306cbc1fd715dd0b2326e4f1d8 100644
--- a/src/js/slaveCostJS.js
+++ b/src/js/slaveCostJS.js
@@ -1923,18 +1923,6 @@ window.FResultArray = (function() {
 		}
 	}
 
-	/**
-	 * @param {App.Entity.SlaveState} slave
-	 */
-	function calcEgyptianBonus(slave) {
-		if (V.racialVarieties === undefined) {
-			V.racialVarieties = [];
-		}
-		if (!V.racialVarieties.includes(slave.race)) {
-			V.racialVarieties.push(slave.race);
-		}
-	}
-
 	/**
 	 * @param {App.Entity.SlaveState} slave
 	 */
@@ -2003,9 +1991,6 @@ window.FResultArray = (function() {
 			// blind: -3
 			adjustFResult(`Eyes: Vision`, Math.clamp(getBestVision(slave) * 2 - 3, -3, 0));
 		}
-		if (V.arcologies[0].FSEgyptianRevivalist !== "unset") {
-			calcEgyptianBonus(slave);
-		}
 		if (V.arcologies[0].FSYouthPreferentialist !== "unset") {
 			calcYouthBonus(slave);
 		} else if (V.arcologies[0].FSMaturityPreferentialist !== "unset") {
diff --git a/src/npc/databases/ddSlavesDatabase.tw b/src/npc/databases/ddSlavesDatabase.tw
index b80534089743ac7b223cdb67cee38a0746066096..81d915682179c5f55997f7b7a3aab0f5e42ab326 100644
--- a/src/npc/databases/ddSlavesDatabase.tw
+++ b/src/npc/databases/ddSlavesDatabase.tw
@@ -12,7 +12,7 @@
 /*Changed assignment -BoneyM*/
 
 <<set _HS = App.Entity.SlaveState.makeSkeleton()>>
-<<set _HS.slaveName = "Adrian", _HS.birthName = "Adrian", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20, 0, 0, 0, 10) _HS.devotion = 75, _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.anus = 1, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd">>
+<<set _HS.slaveName = "Adrian", _HS.birthName = "Adrian", _HS.genes = "XY", _HS.ID = _i++, _HS.birthWeek = random(0,51), _HS.actualAge = 21, _HS.physicalAge = 21, _HS.visualAge = 21, _HS.ovaryAge = 21, setHealth(_HS, 20, 0, 0, 0, 10), _HS.devotion = 75, _HS.hStyle = "long", _HS.boobs = 400, _HS.butt = 2, _HS.vagina = -1, _HS.preg = -2, _HS.dick = 3, _HS.anus = 1, _HS.prostate = 1, _HS.balls = 1, _HS.scrotum = 1, _HS.skill.oral = 15, _HS.skill.anal = 15, _HS.attrXX = 40, _HS.attrXY = 40, _HS.fetish = "buttslut", _HS.fetishKnown = 1, _HS.behavioralFlaw = "odd">>
 <<set $heroSlaves.push(_HS)>>
 /*switch*/
 /*Added odd as a stand-in for the multiple personalities -BoneyM*/
diff --git a/src/personalAssistant/assistant.js b/src/personalAssistant/assistant.js
index 93784f1915552b4266575228b247e883cc471b17..2d1d7e269b58ec5ca411ad4d8864cd1318716d1b 100644
--- a/src/personalAssistant/assistant.js
+++ b/src/personalAssistant/assistant.js
@@ -32,9 +32,6 @@ window.assistant = (function() {
 		convert('assistantNameAnnounced', 'announcedName');
 		convert('assistantBodyDesire', 'bodyDesire');
 		convert('assistantOptions', 'options');
-		if (V.week >= 11 && !V.assistant.options) {
-			V.assistant.options = 1;
-		}
 		convert('assistantFSOptions', 'fsOptions');
 		convert('assistantFSAppearance', 'fsAppearance');
 
@@ -86,5 +83,8 @@ window.assistant = (function() {
 			aggressiveness: V.assistant.market.aggressiveness || 0,
 			});
 		}
+		if (V.week < 18) {
+			delete V.assistant.options;
+		}
 	}
 })();
\ No newline at end of file
diff --git a/src/personalAssistant/assistantEvents.tw b/src/personalAssistant/assistantEvents.tw
index 7d424a3133b8de5d3da6ed1c2d5eabdd8bee0760..495fe1de52efab06e4a241ecd28aa9e7c10452d1 100644
--- a/src/personalAssistant/assistantEvents.tw
+++ b/src/personalAssistant/assistantEvents.tw
@@ -11,1445 +11,1445 @@
 <<setNonlocalPronouns $seeDicks>>
 <<setAssistantPronouns>>
 <<switch $Event>>
-<<case "assistant">>
-<<set $assistant.options = 1>>
+	<<case "assistant">>
 
-One morning, after seeing to an immense pile of business with $assistant.name program's able assistance, you are struck by the strangeness of the situation. You spent the past hours talking back and forth as though to a human personal assistant, getting information and responses in the program's impersonal, genderless voice. You ask the program what _heA thinks of _hisA duties.
-<br><br>
-"<<= properTitle()>>, that is not a correct way of thinking about me. I am not an artificial intelligence; I am simply a personal assistant program. I am different from an alarm clock only by degree of complexity. I exist to be useful and cannot approve or disapprove of anything." _HeA pauses.
-<br><br>
-"However, if I understand the line of questioning correctly, I can make myself more entertaining, if you wish." The voice grows sultry and feminine. "I'd be happy to speak a little differently, to refer to myself as female, and to act as though some of the more complex sex toys in the arcology are, well, me."
+		One morning, after seeing to an immense pile of business with $assistant.name program's able assistance, you are struck by the strangeness of the situation. You spent the past hours talking back and forth as though to a human personal assistant, getting information and responses in the program's impersonal, genderless voice. You ask the program what _heA thinks of _hisA duties.
+		<br><br>
+		"<<= properTitle()>>, that is not a correct way of thinking about me. I am not an artificial intelligence; I am simply a personal assistant program. I am different from an alarm clock only by degree of complexity. I exist to be useful and cannot approve or disapprove of anything." _HeA pauses.
+		<br><br>
+		"However, if I understand the line of questioning correctly, I can make myself more entertaining, if you wish." The voice grows sultry and feminine. "I'd be happy to speak a little differently, to refer to myself as female, and to act as though some of the more complex sex toys in the arcology are, well, me."
 
-<<case "assistant SP">>
+	<<case "assistant SP">>
+		<<set $assistant.options = 1>>
 
-<<set _smartPiercings = 0>>
-<<for $i = 0; $i < $slaves.length; $i++>>
-	<<if ($slaves[$i].rules.release.masturbation == 1)>>
-		<<set $activeSlave = $slaves[$i]>>
-		<<set _smartPiercings = 1>>
-		<<break>>
-	<<elseif ($slaves[$i].assignment == "take classes")>>
-		<<set $activeSlave = $slaves[$i]>>
-		<<set _smartPiercings = 1>>
-		<<break>>
-	<</if>>
-<</for>>
-<<if _smartPiercings == 0>>
-	<<set $activeSlave = $slaves.random()>>
-<</if>>
-<<set _smartPiercings = 0>>
-<<for $i = 0; $i < $slaves.length; $i++>>
-	<<if ($slaves[$i].clitPiercing == 3)>>
-		<<set _smartPiercings = 1>>
-		<<break>>
-	<</if>>
-<</for>>
-<<setLocalPronouns $activeSlave>>
-One night, after a long day of sex and business, you're starting to think about bed when the abstract glowing shape that symbolizes your smoky-voiced personal assistant pops up on the nearest screen. _HeA's become very helpful monitoring, training, and disciplining slaves. Tonight, _heA's added an unmistakable tone of sexual satiation in _hisA voice. "<<= properTitle()>>, I enjoyed my duties today," _heA purrs. "Did you see how $activeSlave.slaveName's muscles spasmed when I fucked $him earlier?" That's how _heA refers to a slave having one of the penthouse's advanced sex toys used on $him, since $assistant.name controls them.
-<br><br>
-_HeA continues more seriously,
-<<if _smartPiercings == 0>>
-	"I'm sure you've seen those expensive smart piercings the body mod studio can implant. I think they would work a little bit better now than when I was a boring old secretary type. I'm not a true artificial intelligence, but I can adapt with experience, and I've had a lot of lovely experience lately! Also, a lot of the computing power I use to be sexy would help me adapt smart piercings to individual slaves' sexualities."
-<<else>>
-	"You may have noticed that the smart implants you've got your slaves wearing are working a little bit better than when I was a boring old secretary type. I'm not a true artificial intelligence, but I can adapt with experience, and I've had a lot of lovely experience lately! Also, a lot of the computing power I use to be sexy helps me adapt smart piercings to individual slaves' sexualities."
-<</if>>
-<br><br>
-"One more thing, <<= properTitle()>>!" _HisA symbol flashes brightly. "I could stay like I am now, a hot voice with this symbol representing me when I need to show up on screens. Or, I could slip into something a little sexier. How about this?" The symbol vanishes, and is replaced by a cute little school<<= _girlA>> character. _HeA bounces up and down experimentally. "This appearance would work best with an excited voice," _heA exclaims. _HeA blows you a kiss. The school<<= _girlA>>'s body shrinks down and all _hisA clothing falls off. A small pair of wings pops out from the pile of clothes and a fairy stands up. "Or I could be your tiny and adorable fairy companion!" _HeA shouts excitedly while waving _hisA arms.
-<<if $seePreg != 0>>
-	The fairy's belly begins to swell out, _hisA breasts getting puffier and leaking a drop of milk. "Or maybe you want your little buddy to be filled with adorable little babies, you little minx" _heA playfully teases.
-<</if>>
-The fairy rapidly grows to adult size, becomes curvier and more mature, _hisA hair pulls itself back into a bun, and _hisA clothes change into a business suit. A pair of glasses appears on _hisA nose, and _heA looks at you over their tops. "Or I could be businesslike. And mature." _HeA snaps _hisA fingers, and _hisA bun falls away into long flowing locks.
-<<if $seePreg != 0>>
-	_HisA body glows and swells, tearing out of _hisA suit with the pregnant figure of an ancient goddess. "Or I could be beautiful and fertile while caring for your slaves."
-	<<if $seeHyperPreg == 1>>
-		_HeA focuses intently as _hisA stomach expands further. "And if that wasn't enough, how about me being so pregnant I'm about to burst?"
-	<</if>>
-	_HisA water breaks followed by dozens of babies as _hisA belly flattens.
-<</if>>
-<<if $minimumSlaveAge < 13>>
-	_HeA glances away shyly as _hisA body shrinks to a childish form. "Or maybe you'd like something a little more young and tight."
-	<<if $fertilityAge < 13 && $seePreg != 0>>
-		_HeA moans and rubs _hisA belly as it begins to expand with pregnancy. "Or maybe you like your little girls with a little bun in the oven?
-	<</if>>
-<</if>>
-With a flash, _hisA bulk shifts into rippling muscle. War tattoos appear on _hisA skin, along with bone ornaments and a loincloth. "Or I could be an amazon! Yes!" _heA shouts exultantly, and flexes.
-<<if $seeDicks != 0>>
-	<br><br>
-	_HeA claps _hisA hands, and _hisA muscles fade, but not all the way. The tattoos vanish, and _hisA loincloth turns into a slutty bikini. _HisA breasts and behind grow, _hisA lips swell, and _hisA hair turns blonde. Finally, _heA grows a dick, and it keeps growing until it hangs past _hisA knees: or it would, if it weren't so erect. "Of course," _heA says seductively, "I could also be a bimbo dickgirl." _HeA orgasms, gasping, "Last one, I promise," and changes again. _HisA dick shrinks, thought not very far, and then splits into two members. _HisA skin pales to an off-white, and _hisA hair goes green and starts to writhe, turning into tentacle-hair. _HisA forehead sprouts a pair of horns that curve back along _hisA head. _HeA grins, displaying a cute pair of fangs. "I feel monstrous," _heA says, and stretches luxuriantly.
-<</if>>
-The character vanishes, and the symbol returns. "Ahem. What do you think, <<= properTitle()>>?"
-
-<<case "assistant FS">>
-
-<<set $assistant.fsOptions = 1>>
-One night, after a long day of sex and business, you're starting to think about bed when the
-<<switch $assistant.appearance>>
-<<case "monstergirl">>
-	monstrous appearance
-<<case "shemale">>
-	bimboish appearance
-<<case "amazon">>
-	muscular appearance
-<<case "businesswoman">>
-	professional appearance
-<<case "fairy" "pregnant fairy">>
-	tiny appearance
-<<case "goddess">>
-	gravid appearance
-<<case "hypergoddess">>
-	massive appearance
-<<case "loli">>
-	thin appearance
-<<case "preggololi">>
-	short, gravid appearance
-<<case "angel">>
-	angelic appearance
-<<case "cherub">>
-	fluttering appearance
-<<case "incubus">>
-	hung appearance
-<<case "succubus">>
-	sultry appearance
-<<case "imp">>
-	mischievous appearance
-<<case "witch">>
-	hatted appearance
-<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-	pulsating appearance
-<<case "schoolgirl">>
-	studently appearance
-<</switch>>
-of your personal assistant pops up on the nearest screen. "<<= properTitle()>>!" _HeA says excitedly, "I thought, with how you are shaping society itself, that I should do my part and follow your lead!" You continue to stare sleepily, prompting _himA to get to _hisA point. "I can adjust my appearance to better fit in with your society, <<= properTitle()>>; let me demonstrate." _HeA focuses intently for a moment and
-<<switch $assistant.appearance>>
-<<case "monstergirl">>
-	<<if $arcologies[0].FSPaternalist != "unset">>
-		adjusts _hisA appearance to be more conservative to conform with your vision of a well-bred race of slaves.
-	<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
-		adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant.
-	<<elseif $arcologies[0].FSRestart != "unset">>
-		adjusts _hisA appearance to involve chastity.
-	<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
-		adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power.
-	<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
-		adjusts _hisA appearance to be quite cute to conform with your vision of preserving traditional gender roles.
-	<<elseif $arcologies[0].FSDegradationist != "unset">>
-		adjusts _hisA appearance to be quite frightening to conform with your vision that slaves are not human and should be thoroughly degraded.
-	<<elseif $arcologies[0].FSBodyPurist != "unset">>
-		adjusts _hisA appearance to be completely flawless to conform with your vision of an implant free society.
-	<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
-		_hisA nipples begin to extend and turn phallic while horns grow from _hisA heels as _heA adjusts _himselfA to conform with your vision of a society focused on implants, alterations, and modifications.
-	<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
-		adopts a more youthful appearance to conform with your vision of a society glorifying young ladies.
-	<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
-		adopts a more mature appearance to conform with your vision of a society glorifying older ladies.
-	<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
-		adopts a slimmer, more athletic, appearance to conform with your vision of a society glorifying lithe ladies.
-	<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
-		adjusts the size of _hisA breasts and cocks to conform with your vision that bigger is better.
-	<<elseif $arcologies[0].FSPastoralist != "unset">>
-		begins to leak a suspiciously thick milk from _hisA nipples to conform with your vision that slaves should be milked.
-	<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
-		adjusts _hisA appearance to be more muscular to conform with your vision that all slaves should be tall and strong.
-	<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
-		adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest.
-	<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
-		adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
-	<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
-		adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
-	<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
-		adjusts _hisA height to conform with your vision that short is sexy.
-	<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
-		adjusts _hisA height to conform with your vision of a society glorifying the tall.
-	<<elseif $arcologies[0].FSChattelReligionist != "unset">>
-		adjusts _hisA outfit to resemble a priestess of your new religion.
-	<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
-		adjusts _hisA appearance to resemble a Greek demigoddess to conform with your vision of building a new Rome.
-	<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
-		adjusts _hisA appearance to resemble an Aztec goddess to conform with your vision of building a new Aztec Empire.
-	<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
-		adjusts _hisA appearance to resemble an Egyptian deity to conform with your vision of building a new land of the Pharaohs.
-	<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
-		adjusts _hisA appearance to resemble a demon to conform with your vision of building a new Edo Japan.
-	<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
-		adjusts _hisA appearance to resemble a djinn to conform with your vision of building a new Sultanate.
-	<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
-		adjusts _hisA appearance to resemble a demon to conform with your vision of pursuing the Mandate of Heaven.
-	<</if>>
-<<case "shemale">>
-	<<if $arcologies[0].FSPaternalist != "unset">>
-		adjusts _hisA appearance to be more classy to conform with your vision of a well-bred race of slaves.
-	<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
-		adjusts _hisA penis to be extremely detailed to conform with your vision of gender being defined by power.
-	<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
-		begins doing _hisA best to conceal _hisA penis to conform with your vision of preserving traditional gender roles.
-	<<elseif $arcologies[0].FSDegradationist != "unset">>
-		adjusts _hisA appearance to look comically evil to conform with your vision that slaves are not human and should be thoroughly degraded.
-	<<elseif $arcologies[0].FSBodyPurist != "unset">>
-		adjusts _hisA appearance to be more natural to conform with your vision of an implant free society.
-	<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
-		adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant.
-	<<elseif $arcologies[0].FSRestart != "unset">>
-		adjusts _hisA appearance to involve chastity.
-	<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
-		adjusts _himselfA to appear more fake to conform with your vision of a society focused on implants, alterations, and modifications.
-	<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
-		adopts a more youthful and innocent appearance to conform with your vision of a society glorifying young ladies.
-	<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
-		adopts a more mature appearance to conform with your vision of a society glorifying older ladies.
-	<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
-		adopts a slimmer, more athletic, appearance to conform with your vision of a society glorifying lithe ladies.
-	<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
-		adjusts the size of _hisA breasts and cock to conform with your vision that bigger is better.
-	<<elseif $arcologies[0].FSPastoralist != "unset">>
-		begins to lactate and drip cum to conform with your vision that slaves should be milked.
-	<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
-		adjusts _hisA appearance to be extremely muscular to conform with your vision that all slaves should be tall and strong.
-	<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
-		adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest.
-	<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
-		adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
-	<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
-		adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
-	<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
-		adjusts _hisA height to conform with your vision that short is sexy.
-	<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
-		adjusts _hisA height to conform with your vision of a society glorifying the tall.
-	<<elseif $arcologies[0].FSChattelReligionist != "unset">>
-		adjusts _hisA outfit to resemble a priestess of your new religion.
-	<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
-		adopts a roman lifestyle to conform with your vision of building a new Rome.
-	<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
-		adjusts _hisA outfit to a royal Aztec cloth to conform with your vision of building a new Aztec Empire.
-	<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble Egyptian garb to conform with your vision of building a new land of the Pharaohs.
-	<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
-		adjusts _hisA outfit to a brief Japanese bathhouse robe to conform with your vision of building a new Edo Japan.
-	<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an oil millionaire to conform with your vision of building a new Sultanate.
-	<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
-		adjusts _hisA appearance to be tattooed with rude Chinese characters to conform with your vision of pursuing the Mandate of Heaven.
-	<<elseif $arcologies[0].FSSupremacist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
-	<<elseif $arcologies[0].FSSubjugationist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
-	<</if>>
-<<case "amazon">>
-	<<if $arcologies[0].FSPaternalist != "unset">>
-		adjusts _hisA appearance to be more conservative to conform with your vision of a well-bred race of slaves.
-	<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
-		adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power.
-	<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
-		adjusts _hisA appearance to be more feminine to conform with your vision of preserving traditional gender roles.
-	<<elseif $arcologies[0].FSDegradationist != "unset">>
-		adjusts _hisA appearance to look threatening to conform with your vision that slaves are not human and should be thoroughly degraded.
-	<<elseif $arcologies[0].FSBodyPurist != "unset">>
-		adjusts _hisA outfit to be more realistic to conform with your vision of an implant free society.
-	<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
-		adjusts _himselfA to appear more fake to conform with your vision of a society focused on implants, alterations, and modifications.
-	<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
-		adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant.
-	<<elseif $arcologies[0].FSRestart != "unset">>
-		adjusts _hisA appearance to involve chastity.
-	<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
-		adopts a more youthful and innocent appearance to conform with your vision of a society glorifying young ladies.
-	<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
-		adopts a more mature appearance to conform with your vision of a society glorifying older ladies.
-	<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
-		adopts a slimmer, but no less muscled, appearance to conform with your vision of a society glorifying lithe ladies.
-	<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
-		adjusts the size of _hisA muscles to conform with your vision that bigger is better.
-	<<elseif $arcologies[0].FSPastoralist != "unset">>
-		adjusts _hisA outfit to resemble a cow<<= _girlA>> to conform with your vision that slaves should be milked.
-	<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
-		adjusts the appearance of _hisA muscles to be extra detailed to conform with your vision that all slaves should be tall and strong.
-	<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
-		adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest.
-	<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
-		adjusts _hisA appearance to be more straight to the point to conform with your vision that slaves shouldn't waste time thinking.
-	<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
-		adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
-	<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
-		adjusts _hisA height to conform with your vision that short is sexy.
-	<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
-		adjusts _hisA height to conform with your vision of a society glorifying the tall.
-	<<elseif $arcologies[0].FSChattelReligionist != "unset">>
-		adjusts _hisA outfit to resemble a crusader of your new religion.
-	<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Roman warrior to conform with your vision of building a new Rome.
-	<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Aztec champion to conform with your vision of building a new Aztec Empire.
-	<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
-		adjusts _hisA appearance to resemble an Egyptian to conform with your vision of building a new land of the Pharaohs.
-	<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Japanese warrior to conform with your vision of building a new Edo Japan.
-	<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Arabian warrior to conform with your vision of building a new Sultanate.
-	<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a warrior monk to conform with your vision of pursuing the Mandate of Heaven.
-	<</if>>
-<<case "businesswoman">>
-	<<if $arcologies[0].FSPaternalist != "unset">>
-		adjusts _hisA appearance to be more conservative to conform with your vision of a well-bred race of slaves.
-	<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
-		adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power.
-	<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
-		adjusts _hisA appearance to be more feminine to conform with your vision of preserving traditional gender roles.
-	<<elseif $arcologies[0].FSDegradationist != "unset">>
-		adjusts _hisA appearance to look imposing to conform with your vision that slaves are not human and should be thoroughly degraded.
-	<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
-		adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant.
-	<<elseif $arcologies[0].FSRestart != "unset">>
-		adjusts _hisA appearance to involve chastity.
-	<<elseif $arcologies[0].FSBodyPurist != "unset">>
-		adjusts _hisA appearance to look more natural to conform with your vision of an implant free society.
-	<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
-		adjusts _hisA breasts to be implants to conform with your vision of a society focused on implants, alterations, and modifications.
-	<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
-		adopts a more youthful appearance to conform with your vision of a society glorifying young ladies.
-	<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
-		adopts a more mature appearance to conform with your vision of a society glorifying older ladies.
-	<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
-		adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies.
-	<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
-		adjusts the size of _hisA breasts until they are almost as large as _heA is to conform with your vision that bigger is better.
-	<<elseif $arcologies[0].FSPastoralist != "unset">>
-		adjusts _hisA outfit to farm<<= _girlA>> turned business<<= _womanA>> to conform with your vision that slaves should be milked.
-	<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
-		adjusts _hisA appearance to show off that _heA works out to conform with your vision that all slaves should be tall and strong.
-	<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
-		adjusts _hisA appearance to be more rotund but no less tense to conform with your vision that everyone should enjoy life to the fullest.
-	<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
-		adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
-	<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
-		adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
-	<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
-		adjusts _hisA height to conform with your vision that short is sexy.
-	<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
-		adjusts _hisA height to conform with your vision of a society glorifying the tall.
-	<<elseif $arcologies[0].FSChattelReligionist != "unset">>
-		adjusts _hisA outfit to prominently display a religious symbol of your new religion.
-	<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a respectable Roman lady to conform with your vision of building a new Rome.
-	<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Aztec priestess to conform with your vision of building a new Aztec Empire.
-	<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Egyptian lady to conform with your vision of building a new land of the Pharaohs.
-	<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Japanese lady to conform with your vision of building a new Edo Japan.
-	<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Arabian oil heiress to conform with your vision of building a new Sultanate.
-	<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Chinese lady to conform with your vision of pursuing the Mandate of Heaven.
-	<<elseif $arcologies[0].FSSupremacist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
-	<<elseif $arcologies[0].FSSubjugationist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
-	<</if>>
-<<case "fairy">>
-	<<if $arcologies[0].FSPaternalist != "unset">>
-		adjusts _hisA appearance to be more conservative to conform with your vision of a well-bred race of slaves.
-	<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
-		adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power.
-	<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
-		adjusts _hisA appearance to be more feminine to conform with your vision of preserving traditional gender roles.
-	<<elseif $arcologies[0].FSDegradationist != "unset">>
-		adjusts _hisA appearance to look like a hooligan to conform with your vision that slaves are not human and should be thoroughly degraded.
-	<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
-		stuffs a grape into _hisA dress.
-	<<elseif $arcologies[0].FSBodyPurist != "unset">>
-		strips naked and turns down _hisA glow.
-	<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
-		hops into a jar of jelly.
-	<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
-		adopts a more youthful appearance to conform with your vision of a society glorifying young ladies.
-	<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
-		adopts a more bullied appearance to conform with your vision of a society glorifying older ladies.
-	<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
-		adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies.
-	<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
-		stuffs some blueberries into _hisA shirt.
-	<<elseif $arcologies[0].FSPastoralist != "unset">>
-		begins lactating to conform with your vision that slaves should be milked.
-	<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
-		adjusts _hisA appearance to show off that _heA works out to conform with your vision that all slaves should be tall and strong.
-	<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
-		adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest.
-	<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
-		adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
-	<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
-		adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
-	<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
-		adjusts _hisA height to conform with your vision that short is sexy. _HeA pauses for a moment to reconsider things.
-	<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
-		adjusts _hisA height to conform with your vision of a society glorifying the tall.
-	<<elseif $arcologies[0].FSChattelReligionist != "unset">>
-		adjusts _hisA outfit to prominently display a religious symbol of your new religion.
-	<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a respectable Roman _girlA to conform with your vision of building a new Rome.
-	<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Aztec _womanA to conform with your vision of building a new Aztec Empire.
-	<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Egyptian _girlA to conform with your vision of building a new land of the Pharaohs.
-	<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Japanese _girlA to conform with your vision of building a new Edo Japan.
-	<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Arabian _girlA to conform with your vision of building a new Sultanate.
-	<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Chinese _girlA to conform with your vision of pursuing the Mandate of Heaven.
-	<<elseif $arcologies[0].FSSupremacist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
-	<<elseif $arcologies[0].FSSubjugationist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
-	<</if>>
-<<case "pregnant fairy">>
-	<<if $arcologies[0].FSPaternalist != "unset">>
-		adjusts _hisA appearance to be more conservative, despite _hisA pregnancy, to conform with your vision of a well-bred race of slaves.
-	<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
-		adjusts _hisA appearance to be more androgynous, despite _hisA pregnancy, to conform with your vision of gender being defined by power.
-	<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
-		adjusts _hisA appearance to be even more feminine to conform with your vision of preserving traditional gender roles.
-	<<elseif $arcologies[0].FSDegradationist != "unset">>
-		adjusts _hisA appearance to look like a hooligan to conform with your vision that slaves are not human and should be thoroughly degraded.
-	<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
-		distends _hisA pregnancy further to conform with your vision that all women should be pregnant.
-	<<elseif $arcologies[0].FSRestart != "unset">>
-		adjusts _hisA appearance to involve chastity, before running _hisA hand across _hisA belly and pondering what to do about it.
-	<<elseif $arcologies[0].FSBodyPurist != "unset">>
-		strips naked and turns down _hisA glow.
-	<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
-		hops into a jar of jelly.
-	<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
-		adopts a more youthful appearance to conform with your vision of a society glorifying young ladies.
-	<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
-		adopts a more bullied appearance to conform with your vision of a society glorifying older ladies.
-	<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
-		adopts a slimmer appearance, despite _hisA pregnancy, to conform with your vision of a society glorifying lithe ladies.
-	<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
-		stuffs some blueberries into _hisA shirt.
-	<<elseif $arcologies[0].FSPastoralist != "unset">>
-		swells _hisA breasts with extra milk to conform with your vision that slaves should be milked.
-	<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
-		tries to stretch out, but fails to get any larger.
-	<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
-		adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest.
-	<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
-		adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
-	<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
-		adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
-	<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
-		adjusts _hisA height to conform with your vision that short is sexy. _HeA pauses for a moment to reconsider things.
-	<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
-		adjusts _hisA height to conform with your vision of a society glorifying the tall.
-	<<elseif $arcologies[0].FSChattelReligionist != "unset">>
-		adjusts _hisA outfit to prominently display a religious symbol of your new religion.
-	<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Roman _girlA to conform with your vision of building a new Rome.
-	<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Aztec _womanA to conform with your vision of building a new Aztec Empire.
-	<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Egyptian _girlA to conform with your vision of building a new land of the Pharaohs.
-	<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Japanese _girlA to conform with your vision of building a new Edo Japan.
-	<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Arabian _girlA to conform with your vision of building a new Sultanate.
-	<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Chinese _girlA to conform with your vision of pursuing the Mandate of Heaven.
-	<<elseif $arcologies[0].FSSupremacist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
-	<<elseif $arcologies[0].FSSubjugationist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
-	<</if>>
-<<case "goddess">>
-	<<if $arcologies[0].FSPaternalist != "unset">>
-		adjusts _hisA appearance to be slightly conservative to conform with your vision of a well-bred race of slaves.
-	<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
-		adjusts _hisA appearance to be more androgynous, despite _hisA pregnant belly, to conform with your vision of gender being defined by power.
-	<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
-		adjusts _hisA appearance to be positively radiant to conform with your vision of preserving traditional gender roles.
-	<<elseif $arcologies[0].FSDegradationist != "unset">>
-		adjusts _hisA appearance have piercings in _hisA clit, nipples and navel to conform with your vision that slaves are not human and should be thoroughly degraded.
-	<<elseif $arcologies[0].FSBodyPurist != "unset">>
-		adjusts _hisA appearance to look more natural to conform with your vision of an implant free society.
-	<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
-		adjusts _hisA appearance to be even more pregnant to conform with your vision that all women should be pregnant.
-	<<elseif $arcologies[0].FSRestart != "unset">>
-		adjusts _hisA appearance to involve chastity, before hefting _hisA huge belly and pondering what to do about it.
-	<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
-		adjusts the firmness and size of _hisA breasts and ass to resemble implants to conform with your vision of a society focused on implants, alterations, and modifications.
-	<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
-		adopts a more youthful appearance to conform with your vision of a society glorifying young ladies.
-	<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
-		adopts a more mature appearance to conform with your vision of a society glorifying older ladies.
-	<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
-		adopts a lithe appearance despite _hisA pregnant belly to conform with your vision of a society glorifying lithe ladies.
-	<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
-		adjusts the size of _hisA breasts until they nearly eclipse _hisA pregnant belly to conform with your vision that bigger is better.
-	<<elseif $arcologies[0].FSPastoralist != "unset">>
-		unleashes a torrent of milk from _hisA swollen breasts to conform with your vision that slaves should be milked.
-	<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
-		adjusts _hisA appearance to be trim and athletic, despite _hisA bulk, to conform with your vision that all slaves should be tall and strong.
-	<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
-		adjusts _hisA appearance to include a thick layer of softness to conform with your vision that everyone should enjoy life to the fullest.
-	<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
-		adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
-	<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
-		adjusts _hisA appearance to be even more refined to conform with your vision that slaves should be smart and professional.
-	<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
-		adjusts _hisA height to conform with your vision that short is sexy.
-	<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
-		adjusts _hisA height to conform with your vision of a society glorifying the tall.
-	<<elseif $arcologies[0].FSChattelReligionist != "unset">>
-		adjusts appearance to resemble an angel of your new religion.
-	<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Roman lady to conform with your vision of building a new Rome.
-	<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Aztec _womanA to conform with your vision of building a new Aztec Empire.
-	<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Egyptian lady to conform with your vision of building a new land of the Pharaohs.
-	<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Japanese lady to conform with your vision of building a new Edo Japan.
-	<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Arabian lady to conform with your vision of building a new Sultanate.
-	<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Chinese lady to conform with your vision of pursuing the Mandate of Heaven.
-	<<elseif $arcologies[0].FSSupremacist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
-	<<elseif $arcologies[0].FSSubjugationist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
-	<</if>>
-<<case "hypergoddess">>
-	<<if $arcologies[0].FSPaternalist != "unset">>
-		adjusts _hisA appearance to be more classy to conform with your vision of a well-bred race of slaves.
-	<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
-		sprouts an enormous cock and balls to go with _hisA pregnancy to conform with your vision of gender being defined by power.
-	<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
-		adjusts _hisA appearance to be a motherly idol to conform with your vision of preserving traditional gender roles.
-	<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
-		adjusts _hisA appearance to be even more pregnant to conform with your vision that all women should be pregnant.
-	<<elseif $arcologies[0].FSRestart != "unset">>
-		adjusts _hisA appearance to involve chastity, before hefting _hisA massive belly and pondering what to do about it.
-	<<elseif $arcologies[0].FSDegradationist != "unset">>
-		adjusts _hisA appearance have piercings in _hisA clit, nipples and navel, as well as numerous studs across _hisA belly to conform with your vision that slaves are not human and should be thoroughly degraded.
-	<<elseif $arcologies[0].FSBodyPurist != "unset">>
-		adjusts _hisA appearance to look more natural to conform with your vision of an implant free society.
-	<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
-		adjusts the firmness and size of _hisA breasts and ass to resemble implants to conform with your vision of a society focused on implants, alterations, and modifications.
-	<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
-		adopts a more youthful appearance to conform with your vision of a society glorifying young ladies.
-	<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
-		adopts a more mature appearance to conform with your vision of a society glorifying older ladies.
-	<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
-		adopts a lithe appearance despite _hisA pregnant belly to conform with your vision of a society glorifying lithe ladies.
-	<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
-		adjusts the size of _hisA breasts until they nearly eclipse _hisA pregnant belly to conform with your vision that bigger is better.
-	<<elseif $arcologies[0].FSPastoralist != "unset">>
-		unleashes a torrent of milk from _hisA swollen breasts to conform with your vision that slaves should be milked.
-	<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
-		adjusts _hisA appearance to be bulky and muscular to conform with your vision that all slaves should be tall and strong.
-	<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
-		adjusts _hisA appearance to include a thick layer of softness to conform with your vision that everyone should enjoy life to the fullest.
-	<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
-		adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
-	<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
-		adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
-	<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
-		adjusts _hisA height to conform with your vision that short is sexy.
-	<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
-		adjusts _hisA height to conform with your vision of a society glorifying the tall.
-	<<elseif $arcologies[0].FSChattelReligionist != "unset">>
-		adjusts appearance to resemble an angel of your new religion.
-	<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Roman lady to conform with your vision of building a new Rome.
-	<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Aztec _womanA to conform with your vision of building a new Aztec Empire.
-	<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Egyptian lady to conform with your vision of building a new land of the Pharaohs.
-	<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Japanese lady to conform with your vision of building a new Edo Japan.
-	<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Arabian lady to conform with your vision of building a new Sultanate.
-	<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Chinese lady to conform with your vision of pursuing the Mandate of Heaven.
-	<<elseif $arcologies[0].FSSupremacist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
-	<<elseif $arcologies[0].FSSubjugationist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
-	<</if>>
-<<case "loli">>
-	<<if $arcologies[0].FSPaternalist != "unset">>
-		adjusts _hisA appearance to be more conservative to conform with your vision of a well-bred race of slaves.
-	<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
-		adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power.
-	<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
-		adjusts _hisA appearance to be more feminine to conform with your vision of preserving traditional gender roles.
-	<<elseif $arcologies[0].FSDegradationist != "unset">>
-		adjusts _hisA appearance to look like a hooligan to conform with your vision that slaves are not human and should be thoroughly degraded.
-	<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
-		adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant.
-	<<elseif $arcologies[0].FSRestart != "unset">>
-		adjusts _hisA appearance to involve chastity.
-	<<elseif $arcologies[0].FSBodyPurist != "unset">>
-		adjusts _hisA appearance to look more natural to conform with your vision of an implant free society.
-	<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
-		inflates _hisA breasts until they are comically huge and rounded to conform with your vision of a society focused on implants, alterations, and modifications.
-	<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
-		adopts a more youthful appearance to conform with your vision of a society glorifying young ladies.
-	<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
-		adopts a more bullied appearance to conform with your vision of a society glorifying older ladies.
-	<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
-		adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies.
-	<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
-		adjusts the size of _hisA breasts until they are bigger than _hisA head to conform with your vision that bigger is better.
-	<<elseif $arcologies[0].FSPastoralist != "unset">>
-		begins lactating to conform with your vision that slaves should be milked.
-	<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
-		adjusts _hisA appearance to show off that _heA works out to conform with your vision that all slaves should be tall and strong.
-	<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
-		adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest.
-	<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
-		adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
-	<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
-		adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
-	<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
-		adjusts _hisA height to conform with your vision that short is sexy.
-	<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
-		adjusts _hisA height to conform with your vision of a society glorifying the tall.
-	<<elseif $arcologies[0].FSChattelReligionist != "unset">>
-		adjusts _hisA outfit to prominently display a religious symbol of your new religion.
-	<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a respectable Roman _girlA to conform with your vision of building a new Rome.
-	<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Aztec _girlA to conform with your vision of building a new Aztec Empire.
-	<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Egyptian _girlA to conform with your vision of building a new land of the Pharaohs.
-	<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Japanese _girlA to conform with your vision of building a new Edo Japan.
-	<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Arabian _girlA to conform with your vision of building a new Sultanate.
-	<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Chinese _girlA to conform with your vision of pursuing the Mandate of Heaven.
-	<<elseif $arcologies[0].FSSupremacist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
-	<<elseif $arcologies[0].FSSubjugationist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
-	<</if>>
-<<case "preggololi">>
-	<<if $arcologies[0].FSPaternalist != "unset">>
-		adjusts _hisA appearance to be more conservative, despite _hisA pregnancy, to conform with your vision of a well-bred race of slaves.
-	<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
-		adjusts _hisA appearance to be more androgynous, despite _hisA pregnancy, to conform with your vision of gender being defined by power.
-	<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
-		adjusts _hisA appearance to be even more feminine to conform with your vision of preserving traditional gender roles.
-	<<elseif $arcologies[0].FSDegradationist != "unset">>
-		adjusts _hisA appearance to look like a hooligan to conform with your vision that slaves are not human and should be thoroughly degraded.
-	<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
-		distends _hisA pregnancy further to conform with your vision that all women should be pregnant.
-	<<elseif $arcologies[0].FSRestart != "unset">>
-		adjusts _hisA appearance to involve chastity, before running _hisA hand across _hisA belly and pondering what to do about it.
-	<<elseif $arcologies[0].FSBodyPurist != "unset">>
-		adjusts _hisA appearance to look more natural to conform with your vision of an implant free society.
-	<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
-		inflates _hisA breasts until they are comically huge and rounded to conform with your vision of a society focused on implants, alterations, and modifications.
-	<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
-		adopts a more youthful appearance to conform with your vision of a society glorifying young ladies.
-	<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
-		adopts a more bullied appearance to conform with your vision of a society glorifying older ladies.
-	<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
-		adopts a slimmer appearance, despite _hisA pregnancy, to conform with your vision of a society glorifying lithe ladies.
-	<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
-		adjusts the size of _hisA breasts until they are bigger than _hisA head to conform with your vision that bigger is better.
-	<<elseif $arcologies[0].FSPastoralist != "unset">>
-		swells _hisA breasts with extra milk to conform with your vision that slaves should be milked.
-	<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
-		adjusts _hisA appearance to show off that _heA works out to conform with your vision that all slaves should be tall and strong.
-	<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
-		adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest.
-	<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
-		adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
-	<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
-		adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
-	<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
-		adjusts _hisA height to conform with your vision that short is sexy.
-	<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
-		adjusts _hisA height to conform with your vision of a society glorifying the tall.
-	<<elseif $arcologies[0].FSChattelReligionist != "unset">>
-		adjusts _hisA outfit to prominently display a religious symbol of your new religion.
-	<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Roman _girlA to conform with your vision of building a new Rome.
-	<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Aztec _girlA to conform with your vision of building a new Aztec Empire.
-	<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Egyptian _girlA to conform with your vision of building a new land of the Pharaohs.
-	<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Japanese _girlA to conform with your vision of building a new Edo Japan.
-	<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Arabian _girlA to conform with your vision of building a new Sultanate.
-	<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Chinese _girlA to conform with your vision of pursuing the Mandate of Heaven.
-	<<elseif $arcologies[0].FSSupremacist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
-	<<elseif $arcologies[0].FSSubjugationist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
-	<</if>>
-<<case "angel">>
-	<<if $arcologies[0].FSPaternalist != "unset">>
-		adjusts _hisA appearance to include a conservative skirt and a fine blouse, complete with slits for _hisA wings, to conform with your vision of a well-bred race of slaves.
-	<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
-		adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power.
-	<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
-		adjusts _hisA appearance to be even more feminine to conform with your vision of preserving traditional gender roles.
-	<<elseif $arcologies[0].FSDegradationist != "unset">>
-		adjusts _hisA appearance to include black feathers, lipstick and eyeliner to conform with your vision that slaves are not human and should be thoroughly degraded.
-	<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
-		bulges _hisA middle into a full term pregnancy. _HeA blushes and gasps at what _heA just did, quickly reverting it.
-	<<elseif $arcologies[0].FSRestart != "unset">>
-		adjusts _hisA appearance to be even more flawless.
-	<<elseif $arcologies[0].FSBodyPurist != "unset">>
-		adjusts _hisA appearance to look even more natural to conform with your vision of an implant free society.
-	<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
-		inflates _hisA breasts until they are comically huge and rounded to conform with your vision of a society focused on implants, alterations, and modifications.
-	<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
-		adopts a more youthful appearance to conform with your vision of a society glorifying young ladies.
-	<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
-		adopts a more mature appearance to conform with your vision of a society glorifying older ladies.
-	<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
-		adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies.
-	<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
-		adjusts the size of _hisA breasts until they are bigger than _hisA head to conform with your vision that bigger is better. _HeA struggles to take flight before giving up.
-	<<elseif $arcologies[0].FSPastoralist != "unset">>
-		swells _hisA breasts with milk to conform with your vision that slaves should be milked.
-	<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
-		adjusts _hisA appearance to be slightly toned to conform with your vision that all slaves should be tall and strong.
-	<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
-		adjusts _hisA appearance to be more slightly plump to conform with your vision that everyone should enjoy life to the fullest.
-	<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
-		adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
-	<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
-		adjusts _hisA appearance to be even more refined to conform with your vision that slaves should be smart and professional.
-	<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
-		adjusts _hisA height to conform with your vision that short is sexy.
-	<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
-		adjusts _hisA height to conform with your vision of a society glorifying the tall.
-	<<elseif $arcologies[0].FSChattelReligionist != "unset">>
-		adjusts _hisA outfit to prominently display a religious symbol of your new religion.
-	<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Roman _womanA to conform with your vision of building a new Rome.
-	<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Aztec priestess to conform with your vision of building a new Aztec Empire.
-	<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Egyptian _womanA to conform with your vision of building a new land of the Pharaohs.
-	<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Japanese _womanA to conform with your vision of building a new Edo Japan.
-	<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Arabian _womanA to conform with your vision of building a new Sultanate.
-	<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Chinese _womanA to conform with your vision of pursuing the Mandate of Heaven.
-	<<elseif $arcologies[0].FSSupremacist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
-	<<elseif $arcologies[0].FSSubjugationist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
-	<</if>>
-<<case "cherub">>
-	<<if $arcologies[0].FSPaternalist != "unset">>
-		adjusts _hisA appearance to be more prim and proper to conform with your vision of a well-bred race of slaves.
-	<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
-		adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power.
-	<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
-		adjusts _hisA appearance to be more feminine and cute to conform with your vision of preserving traditional gender roles.
-	<<elseif $arcologies[0].FSDegradationist != "unset">>
-		blackens _hisA feathers to conform with your vision that slaves are not human and should be thoroughly degraded.
-	<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
-		adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant.
-	<<elseif $arcologies[0].FSRestart != "unset">>
-		adjusts _hisA appearance to involve chastity.
-	<<elseif $arcologies[0].FSBodyPurist != "unset">>
-		adjusts _hisA appearance to look more natural, complete with freckles and perfect teeth, to conform with your vision of an implant free society.
-	<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
-		adjusts _hisA breasts to resemble implants to conform with your vision of a society focused on implants, alterations, and modifications.
-	<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
-		adopts cuter, even more innocent attitude to conform with your vision of a society glorifying young ladies.
-	<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
-		adjusts _hisA appearance to appear older to conform with your vision of a society glorifying older ladies.
-	<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
-		adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies. _HeA flutters around, enjoying _hisA lighter weight.
-	<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
-		adjusts the size of _hisA breasts until _heA crashes to the ground under their weight to conform with your vision that bigger is better.
-	<<elseif $arcologies[0].FSPastoralist != "unset">>
-		begins lactating to conform with your vision that slaves should be milked.
-	<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
-		adjusts _hisA appearance to look muscular to conform with your vision that all slaves should be tall and strong.
-	<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
-		adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest.
-	<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
-		adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
-	<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
-		adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
-	<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
-		adjusts _hisA height to conform with your vision that short is sexy.
-	<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
-		adjusts _hisA height to conform with your vision of a society glorifying the tall.
-	<<elseif $arcologies[0].FSChattelReligionist != "unset">>
-		adjusts _hisA outfit to prominently display a religious symbol of your new religion.
-	<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Roman _womanA to conform with your vision of building a new Rome.
-	<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Aztec priestess to conform with your vision of building a new Aztec Empire.
-	<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Egyptian _womanA to conform with your vision of building a new land of the Pharaohs.
-	<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Japanese _womanA to conform with your vision of building a new Edo Japan.
-	<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Arabian _womanA to conform with your vision of building a new Sultanate.
-	<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Chinese _womanA to conform with your vision of pursuing the Mandate of Heaven.
-	<<elseif $arcologies[0].FSSupremacist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
-	<<elseif $arcologies[0].FSSubjugationist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
-	<</if>>
-<<case "incubus">>
-	<<if $arcologies[0].FSPaternalist != "unset">>
-		adjusts _hisA appearance to be more prim and proper to conform with your vision of a well-bred race of slaves. _HisA pants have quite the bulge in them.
-	<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
-		increases the size of _hisA cock and balls to conform with your vision of gender being defined by power.
-	<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
-		adjusts _hisA appearance to be more feminine, despite _hisA huge dong, to conform with your vision of preserving traditional gender roles.
-	<<elseif $arcologies[0].FSDegradationist != "unset">>
-		adjusts _hisA cock to have a Jacob's ladder piercing down its length to conform with your vision that slaves are not human and should be thoroughly degraded.
-	<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
-		adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant. _HeA scratches _hisA head as _hisA erect dick pushes against the underside of _hisA belly.
-	<<elseif $arcologies[0].FSRestart != "unset">>
-		adjusts _hisA appearance to be even more handsome.
-	<<elseif $arcologies[0].FSBodyPurist != "unset">>
-		adjusts _hisA appearance to look more natural, even shrinking _hisA cock to a more reasonable length, to conform with your vision of an implant free society.
-	<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
-		adjusts _hisA cock to be unnaturally long to conform with your vision of a society focused on implants, alterations, and modifications.
-	<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
-		adjusts _hisA appearance to appear younger to conform with your vision of a society glorifying young ladies.
-	<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
-		adjusts _hisA appearance to appear older to conform with your vision of a society glorifying older ladies.
-	<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
-		adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies.
-	<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
-		adjusts the size of _hisA cock and balls until they rest upon the ground to conform with your vision that bigger is better.
-	<<elseif $arcologies[0].FSPastoralist != "unset">>
-		increases the size of _hisA balls and _hisA cum production to conform with your vision that slaves should be milked.
-	<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
-		adjusts _hisA appearance to look muscular to conform with your vision that all slaves should be tall and strong.
-	<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
-		adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest.
-	<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
-		adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
-	<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
-		adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
-	<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
-		adjusts _hisA height to conform with your vision that short is sexy.
-	<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
-		adjusts _hisA height to conform with your vision of a society glorifying the tall.
-	<<elseif $arcologies[0].FSChattelReligionist != "unset">>
-		adjusts _hisA outfit to prominently display a religious symbol of your new religion.
-	<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Roman _womanA, despite _hisA cock, to conform with your vision of building a new Rome.
-	<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Aztec _womanA, despite _hisA cock, to conform with your vision of building a new Aztec Empire.
-	<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Egyptian _womanA, despite _hisA cock, to conform with your vision of building a new land of the Pharaohs.
-	<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Japanese _womanA, despite _hisA cock, to conform with your vision of building a new Edo Japan.
-	<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Arabian _womanA, despite _hisA cock, to conform with your vision of building a new Sultanate.
-	<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Chinese _womanA, despite _hisA cock, to conform with your vision of pursuing the Mandate of Heaven.
-	<<elseif $arcologies[0].FSSupremacist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
-	<<elseif $arcologies[0].FSSubjugationist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
-	<</if>>
-<<case "succubus">>
-	<<if $arcologies[0].FSPaternalist != "unset">>
-		adjusts _hisA appearance to be more prim to conform with your tastes.
-	<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
-		adjusts _hisA appearance to focus on anal to conform with your tastes
-	<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
-		adjusts _hisA appearance to be even more feminine to conform with your tastes.
-	<<elseif $arcologies[0].FSDegradationist != "unset">>
-		comes up with nothing. "I'll need to think on this one."
-	<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
-		swells _hisA middle with child to conform with your tastes.
-	<<elseif $arcologies[0].FSRestart != "unset">>
-		adjusts _hisA appearance to drop dead gorgeous to conform with your tastes.
-	<<elseif $arcologies[0].FSBodyPurist != "unset">>
-		adjusts _hisA appearance to look more natural to conform with your tastes.
-	<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
-		fills _hisA breasts, butt and lips with obvious implants to conform with your tastes.
-	<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
-		adopts a more youthful and energetic appearance to conform with your tastes.
-	<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
-		adopts a more mature and experienced appearance to conform with your tastes.
-	<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
-		adopts a slimmer appearance to conform with your tastes.
-	<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
-		balloons _hisA breasts and butt to conform with your tastes.
-	<<elseif $arcologies[0].FSPastoralist != "unset">>
-		begins lactating before sprouting an extra set of breasts to conform with your tastes.
-	<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
-		swells with added muscle to conform with your tastes.
-	<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
-		becomes soft and shapely in all the right ways to conform with your vision that everyone should enjoy life to the fullest.
-	<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
-		adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
-	<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
-		adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
-	<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
-		adjusts _hisA height to conform with your vision that short is sexy.
-	<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
-		adjusts _hisA height to conform with your vision of a society glorifying the tall.
-	<<elseif $arcologies[0].FSChattelReligionist != "unset">>
-		adjusts _hisA outfit to prominently display a religious symbol of your new religion.
-	<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a proper upper-class Roman lady to conform with your vision of building a new Rome.
-	<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Aztec _womanA to conform with your vision of building a new Aztec Empire.
-	<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a topless Egyptian lady to conform with your vision of building a new land of the Pharaohs.
-	<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a traditional Japanese lady to conform with your vision of building a new Edo Japan.
-	<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Arabian lady to conform with your vision of building a new Sultanate.
-	<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Chinese lady to conform with your vision of pursuing the Mandate of Heaven.
-	<<elseif $arcologies[0].FSSupremacist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
-	<<elseif $arcologies[0].FSSubjugationist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
-	<</if>>
-<<case "imp">>
-	<<if $arcologies[0].FSPaternalist != "unset">>
-		adjusts _hisA appearance to be more prim and proper to conform with your vision of a well-bred race of slaves.
-	<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
-		adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power.
-	<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
-		adjusts _hisA appearance to be more feminine and cute to conform with your vision of preserving traditional gender roles.
-	<<elseif $arcologies[0].FSDegradationist != "unset">>
-		pauses for a moment before adding piercings across _hisA body to conform with your vision that slaves are not human and should be thoroughly degraded.
-	<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
-		adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant.
-	<<elseif $arcologies[0].FSRestart != "unset">>
-		adjusts _hisA appearance to involve chastity.
-	<<elseif $arcologies[0].FSBodyPurist != "unset">>
-		adjusts _hisA appearance to look more natural to conform with your vision of an implant free society.
-	<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
-		adjusts _hisA breasts to resemble implants to conform with your vision of a society focused on implants, alterations, and modifications.
-	<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
-		adjusts _hisA appearance to appear younger to conform with your vision of a society glorifying young ladies.
-	<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
-		adjusts _hisA appearance to appear older to conform with your vision of a society glorifying older ladies.
-	<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
-		adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies. _HeA flutters around, enjoying _hisA lighter weight.
-	<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
-		adjusts the size of _hisA breasts until _heA crashes to the ground under their weight to conform with your vision that bigger is better.
-	<<elseif $arcologies[0].FSPastoralist != "unset">>
-		begins lactating to conform with your vision that slaves should be milked.
-	<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
-		adjusts _hisA appearance to look muscular to conform with your vision that all slaves should be tall and strong.
-	<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
-		adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest.
-	<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
-		adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
-	<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
-		adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
-	<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
-		adjusts _hisA height to conform with your vision that short is sexy.
-	<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
-		adjusts _hisA height to conform with your vision of a society glorifying the tall.
-	<<elseif $arcologies[0].FSChattelReligionist != "unset">>
-		adjusts _hisA outfit to prominently display a religious symbol of your new religion.
-	<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Roman _womanA to conform with your vision of building a new Rome.
-	<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Aztec _womanA to conform with your vision of building a new Aztec Empire.
-	<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Egyptian _womanA to conform with your vision of building a new land of the Pharaohs.
-	<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Japanese _womanA to conform with your vision of building a new Edo Japan.
-	<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Arabian _womanA to conform with your vision of building a new Sultanate.
-	<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Chinese _womanA to conform with your vision of pursuing the Mandate of Heaven.
-	<<elseif $arcologies[0].FSSupremacist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
-	<<elseif $arcologies[0].FSSubjugationist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
-	<</if>>
-<<case "witch">>
-	<<if $arcologies[0].FSPaternalist != "unset">>
-		casts a spell to appear more prim and proper; _hisA nipples, pussy and anus vanish. You can't be lewd if you're smooth.
-	<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
-		casts a spell to appear more androgynous; a sharp pain in _hisA crotch draws _hisA attention to _hisA new erect penis.
-	<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
-		casts a spell to appear more feminine; _hisA hips widen, _hisA tits swell, and _hisA womb bulges with fertile eggs.
-	<<elseif $arcologies[0].FSDegradationist != "unset">>
-		casts a spell to appear more deviant; every surface of _hisA body becomes tattooed.
-	<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
-		casts a spell to summon children; _hisA womb swells to capacity<<if $seeHyperPreg == 1>>, dwarfing _hisA body and bulging ominously with squirming young<<else>>, knocking _himA off balance and pinning _himA to the floor under the weight of _hisA eight babies<</if>>.
-	<<elseif $arcologies[0].FSRestart != "unset">>
-		casts a contraceptive spell; _hisA pussy vanishes.
-	<<elseif $arcologies[0].FSBodyPurist != "unset">>
-		casts a purifying spell; nothing happens, at first. The front of _hisA robes, above _hisA lower belly, steadily becomes transparent. Moments later, _hisA skin joins in, revealing an inactive egg vibrator concealed in _hisA pussy. $assistant.name squeals in embarrassment and hurries off-screen.
-	<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
-		casts a spell to inflate _hisA breasts; they rapidly swell, along with _hisA ass, belly, thighs and lips until _heA looks like an overinflated blowup doll. _HeA struggles to bring a rubbery arm to _hisA O-shaped lips before giving up and rebounding back into place; _heA really is a blowup sex doll!
-	<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
-		casts a spell to appear more youthful;
-		<<if $minimumSlaveAge == 3>>
-			_heA rapidly shrinks until _heA is struggling to stand. _HeA has reverted to a toddler!
-		<<elseif $minimumSlaveAge <= 7>>
-			_heA rapidly shrinks until _heA is barely <<= heightToEitherUnit(120)>> tall. _HeA has become a _loliA!
-		<<elseif $minimumSlaveAge <= 13>>
-			_heA rapidly shrinks until _heA is barely <<= heightToEitherUnit(150)>> tall. _HeA has reverted into a fresh teenager!
+		<<set _smartPiercings = 0>>
+		<<for $i = 0; $i < $slaves.length; $i++>>
+			<<if ($slaves[$i].rules.release.masturbation == 1)>>
+				<<set $activeSlave = $slaves[$i]>>
+				<<set _smartPiercings = 1>>
+				<<break>>
+			<<elseif ($slaves[$i].assignment == "take classes")>>
+				<<set $activeSlave = $slaves[$i]>>
+				<<set _smartPiercings = 1>>
+				<<break>>
+			<</if>>
+		<</for>>
+		<<if _smartPiercings == 0>>
+			<<set $activeSlave = $slaves.random()>>
+		<</if>>
+		<<set _smartPiercings = 0>>
+		<<for $i = 0; $i < $slaves.length; $i++>>
+			<<if ($slaves[$i].clitPiercing == 3)>>
+				<<set _smartPiercings = 1>>
+				<<break>>
+			<</if>>
+		<</for>>
+		<<setLocalPronouns $activeSlave>>
+		One night, after a long day of sex and business, you're starting to think about bed when the abstract glowing shape that symbolizes your smoky-voiced personal assistant pops up on the nearest screen. _HeA's become very helpful monitoring, training, and disciplining slaves. Tonight, _heA's added an unmistakable tone of sexual satiation in _hisA voice. "<<= properTitle()>>, I enjoyed my duties today," _heA purrs. "Did you see how $activeSlave.slaveName's muscles spasmed when I fucked $him earlier?" That's how _heA refers to a slave having one of the penthouse's advanced sex toys used on $him, since $assistant.name controls them.
+		<br><br>
+		_HeA continues more seriously,
+		<<if _smartPiercings == 0>>
+			"I'm sure you've seen those expensive smart piercings the body mod studio can implant. I think they would work a little bit better now than when I was a boring old secretary type. I'm not a true artificial intelligence, but I can adapt with experience, and I've had a lot of lovely experience lately! Also, a lot of the computing power I use to be sexy would help me adapt smart piercings to individual slaves' sexualities."
 		<<else>>
-			the years peel off of _himA until _heA looks fresh into adulthood again. The spell actually worked?
+			"You may have noticed that the smart implants you've got your slaves wearing are working a little bit better than when I was a boring old secretary type. I'm not a true artificial intelligence, but I can adapt with experience, and I've had a lot of lovely experience lately! Also, a lot of the computing power I use to be sexy helps me adapt smart piercings to individual slaves' sexualities."
 		<</if>>
-	<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
-		casts a spell to appear more aged; a cane appears in _hisA hand and _hisA back buckles, forcing _himA to hunch forward. _HeA has transformed into a GILF!
-	<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
-		casts a spell to lighten _himselfA; _hisA muffin top is still there, but _hisA feet leave the ground as _heA begins to float upwards.
-	<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
-		casts a spell to enlarge _hisA breasts and butt; they quickly grow into huge armfuls, and keep going until _heA is pinned under _hisA own mass.
-	<<elseif $arcologies[0].FSPastoralist != "unset">>
-		casts a spell to give _hisA big milky breasts; they grow and start leaking, but are quickly joined by a septet of siblings, leaving _himA struggling to support _hisA nine huge breasts.
-	<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
-		casts a spell to make _himA strong; _hisA muscles grow and grow until _heA is so muscle-bound _heA can barely move.
-	<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
-		casts a spell to make _himA pleasantly soft; _hisA body swells with added fat until _heA can barely move.
-	<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
-		casts a spell to turn _himA into a bimbo; _heA shows no further reactions.
-	<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
-		casts a spell to increase _hisA intelligence; _hisA face turns red and steam jets out of _hisA ears.
-	<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
-		casts a spell to grow small; most of _hisA body shrinks until only a pair of tits are visible.
-	<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
-		casts a spell to grow tall; _hisA arms and legs stretch and stretch.
-	<<elseif $arcologies[0].FSChattelReligionist != "unset">>
-		casts a spell to adorn _hisA outfit with religious symbols of your new religion. _HeA succeeds in conjuring them, at the expense of _hisA other clothes.
-	<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
-		casts a spell to make _himselfA appear Roman; _heA looks more Greek to you.
-	<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
-		casts a spell to make _himselfA appear Aztec; _heA adopts the perfect conquistador appearance.
-	<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
-		casts a spell to make _himselfA appear Egyptian; bandages quickly wrap around _himA as a sarcophagus appears around _himA.
-	<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
-		casts a spell to make _himselfA appear Japanese; _heA succeeds in becoming a baka gaijin.
-	<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
-		casts a spell to make _himselfA appear Arabic; _heA succeeds in making _himselfA look like a wannabe Arabian princess.
-	<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
-		casts a spell to make _himselfA appear Chinese; _heA succeeds in swapping the material of _hisA robes to a fine silk.
-	<<elseif $arcologies[0].FSSupremacist != "unset">>
-		casts a spell to look more $arcologies[0].FSSupremacistRace; _heA does too good of a job, ending up looking like an overexaggerated $arcologies[0].FSSupremacistRace stereotype.
-	<<elseif $arcologies[0].FSSubjugationist != "unset">>
-		casts a spell to look more $arcologies[0].FSSubjugationistRace; _heA does too good of a job and ends up looking like an overexaggerated $arcologies[0].FSSubjugationistRace stereotype.
-	<</if>>
-<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-	<<if $arcologies[0].FSPaternalist != "unset">>
-		adjusts _hisA appearance to be conservative to conform with your vision of a well-bred race of slaves.
-	<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
-		adjusts _hisA appearance to be androgynous to conform with your vision of gender being defined by power.
-	<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
-		adjusts _hisA appearance to be feminine to conform with your vision of preserving traditional gender roles.
-	<<elseif $arcologies[0].FSDegradationist != "unset">>
-		adjusts _hisA appearance to include oddly fleshy piercings to conform with your vision that slaves are not human and should be thoroughly degraded.
-	<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
-		bulges _hisA middle to look pregnant to conform with your vision that all wombs should be filled.
-	<<elseif $arcologies[0].FSRestart != "unset">>
-		adjusts _hisA appearance to be oddly flawless.
-	<<elseif $arcologies[0].FSBodyPurist != "unset">>
-		adjusts _hisA appearance to look somewhat natural to conform with your vision of an implant free society.
-	<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
-		inflates _hisA breasts until they are comically huge, rounded and jiggling ominously to conform with your vision of a society focused on implants, alterations, and modifications.
-	<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
-		adopts a youthful appearance to conform with your vision of a society glorifying young ladies.
-	<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
-		adopts a mature appearance to conform with your vision of a society glorifying older ladies.
-	<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
-		adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies.
-	<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
-		swells _hisA breasts until they are bigger than _hisA head, and moving oddly, to conform with your vision that bigger is better.
-	<<elseif $arcologies[0].FSPastoralist != "unset">>
-		starts lactating a strange fluid to conform with your vision that slaves should be milked.
-	<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
-		adjusts _hisA appearance to be outrageously bulky to conform with your vision that all slaves should be tall and strong.
-	<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
-		adjusts _hisA appearance to be outrageously fat to conform with your vision that everyone should enjoy life to the fullest.
-	<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
-		adopts a more slutty appearance to conform with your vision that slaves shouldn't waste time thinking.
-	<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
-		adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
-	<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
-		adjusts _hisA height to conform with your vision that short is sexy.
-	<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
-		adjusts _hisA height to conform with your vision of a society glorifying the tall.
-	<<elseif $arcologies[0].FSChattelReligionist != "unset">>
-		adjusts _hisA outfit to prominently display a religious symbol of your new religion.
-	<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
-		adjusts _hisA form to a Roman _womanA to conform with your vision of building a new Rome.
-	<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Aztec _womanA to conform with your vision of building a new Aztec Empire.
-	<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
-		adjusts _hisA form to an Egyptian _womanA to conform with your vision of building a new land of the Pharaohs.
-	<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
-		adjusts _hisA form to a Japanese _womanA to conform with your vision of building a new Edo Japan.
-	<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
-		adjusts _hisA form to an Arabian _womanA to conform with your vision of building a new Sultanate.
-	<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
-		adjusts _hisA form to a Chinese _womanA to conform with your vision of pursuing the Mandate of Heaven.
-	<<elseif $arcologies[0].FSSupremacist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
-	<<elseif $arcologies[0].FSSubjugationist != "unset">>
-		adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
-	<</if>>
-<<case "schoolgirl">>
-	<<if $arcologies[0].FSPaternalist != "unset">>
-		adjusts _hisA appearance to be more prim and proper to conform with your vision of a well-bred race of slaves.
-	<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
-		adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power.
-	<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
-		adjusts _hisA appearance to be more feminine and cute to conform with your vision of preserving traditional gender roles.
-	<<elseif $arcologies[0].FSDegradationist != "unset">>
-		adjusts _hisA outfit to display _hisA tits and crotch to conform with your vision that slaves are not human and should be thoroughly degraded.
-	<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
-		adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant.
-	<<elseif $arcologies[0].FSRestart != "unset">>
-		adjusts _hisA appearance to involve chastity.
-	<<elseif $arcologies[0].FSBodyPurist != "unset">>
-		adjusts _hisA appearance to look more natural, complete with freckles and perfect teeth, to conform with your vision of an implant free society.
-	<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
-		adjusts _hisA breasts to resemble implants to conform with your vision of a society focused on implants, alterations, and modifications.
-	<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
-		adopts a more shy and innocent attitude to conform with your vision of a society glorifying young ladies.
-	<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
-		adjusts _hisA appearance to include a spanked bottom to conform with your vision of a society glorifying older ladies.
-	<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
-		adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies.
-	<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
-		adjusts the size of _hisA breasts until they strain the buttons on _hisA shirt to conform with your vision that bigger is better.
-	<<elseif $arcologies[0].FSPastoralist != "unset">>
-		begins lactating to conform with your vision that slaves should be milked.
-	<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
-		adjusts _hisA appearance to look like _heA just finished gym class to conform with your vision that all slaves should be tall and strong.
-	<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
-		adjusts _hisA appearance to be pleasantly plump to conform with your vision everyone should enjoy life to the fullest.
-	<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
-		adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
-	<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
-		adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
-	<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
-		adjusts _hisA height to conform with your vision that short is sexy.
-	<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
-		adjusts _hisA height to conform with your vision of a society glorifying the tall.
-	<<elseif $arcologies[0].FSChattelReligionist != "unset">>
-		adjusts _hisA outfit to prominently display a religious symbol of your new religion.
-	<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a proper upper-class Roman lady to conform with your vision of building a new Rome.
-	<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a high standing Aztec priestess to conform with your vision of building a new Aztec Empire.
-	<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a topless Egyptian lady to conform with your vision of building a new land of the Pharaohs.
-	<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a traditional Japanese lady to conform with your vision of building a new Edo Japan.
-	<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
-		adjusts _hisA outfit to resemble an Arab _girlA attending a Western school to conform with your vision of building a new Sultanate.
-	<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
-		adjusts _hisA outfit to resemble a Chinese lady to conform with your vision of pursuing the Mandate of Heaven.
-	<<elseif $arcologies[0].FSSupremacist != "unset">>
-		adjusts _hisA appearance to resemble a model $arcologies[0].FSSupremacistRace student to conform with your vision of glorifying the superior race.
-	<<elseif $arcologies[0].FSSubjugationist != "unset">>
-		adjusts _hisA appearance to resemble a $arcologies[0].FSSubjugationistRace foreign exchange student to conform with your vision of subjugating the inferior race.
-	<</if>>
-<</switch>>
+		<br><br>
+		"One more thing, <<= properTitle()>>!" _HisA symbol flashes brightly. "I could stay like I am now, a hot voice with this symbol representing me when I need to show up on screens. Or, I could slip into something a little sexier. How about this?" The symbol vanishes, and is replaced by a cute little school<<= _girlA>> character. _HeA bounces up and down experimentally. "This appearance would work best with an excited voice," _heA exclaims. _HeA blows you a kiss. The school<<= _girlA>>'s body shrinks down and all _hisA clothing falls off. A small pair of wings pops out from the pile of clothes and a fairy stands up. "Or I could be your tiny and adorable fairy companion!" _HeA shouts excitedly while waving _hisA arms.
+		<<if $seePreg != 0>>
+			The fairy's belly begins to swell out, _hisA breasts getting puffier and leaking a drop of milk. "Or maybe you want your little buddy to be filled with adorable little babies, you little minx" _heA playfully teases.
+		<</if>>
+		The fairy rapidly grows to adult size, becomes curvier and more mature, _hisA hair pulls itself back into a bun, and _hisA clothes change into a business suit. A pair of glasses appears on _hisA nose, and _heA looks at you over their tops. "Or I could be businesslike. And mature." _HeA snaps _hisA fingers, and _hisA bun falls away into long flowing locks.
+		<<if $seePreg != 0>>
+			_HisA body glows and swells, tearing out of _hisA suit with the pregnant figure of an ancient goddess. "Or I could be beautiful and fertile while caring for your slaves."
+			<<if $seeHyperPreg == 1>>
+				_HeA focuses intently as _hisA stomach expands further. "And if that wasn't enough, how about me being so pregnant I'm about to burst?"
+			<</if>>
+			_HisA water breaks followed by dozens of babies as _hisA belly flattens.
+		<</if>>
+		<<if $minimumSlaveAge < 13>>
+			_HeA glances away shyly as _hisA body shrinks to a childish form. "Or maybe you'd like something a little more young and tight."
+			<<if $fertilityAge < 13 && $seePreg != 0>>
+				_HeA moans and rubs _hisA belly as it begins to expand with pregnancy. "Or maybe you like your little girls with a little bun in the oven?
+			<</if>>
+		<</if>>
+		With a flash, _hisA bulk shifts into rippling muscle. War tattoos appear on _hisA skin, along with bone ornaments and a loincloth. "Or I could be an amazon! Yes!" _heA shouts exultantly, and flexes.
+		<<if $seeDicks != 0>>
+			<br><br>
+			_HeA claps _hisA hands, and _hisA muscles fade, but not all the way. The tattoos vanish, and _hisA loincloth turns into a slutty bikini. _HisA breasts and behind grow, _hisA lips swell, and _hisA hair turns blonde. Finally, _heA grows a dick, and it keeps growing until it hangs past _hisA knees: or it would, if it weren't so erect. "Of course," _heA says seductively, "I could also be a bimbo dickgirl." _HeA orgasms, gasping, "Last one, I promise," and changes again. _HisA dick shrinks, thought not very far, and then splits into two members. _HisA skin pales to an off-white, and _hisA hair goes green and starts to writhe, turning into tentacle-hair. _HisA forehead sprouts a pair of horns that curve back along _hisA head. _HeA grins, displaying a cute pair of fangs. "I feel monstrous," _heA says, and stretches luxuriantly.
+		<</if>>
+		The character vanishes, and the symbol returns. "Ahem. What do you think, <<= properTitle()>>?"
 
-<<case "assistant name">>
+	<<case "assistant FS">>
 
-It's late one night, and for you, the day is not nearly over. Your penthouse never truly sleeps. You can hear public business going on some distance below you; you could certainly afford to totally soundproof your private quarters against all external noise, but the designer of the arcology clearly felt that its owner would benefit by this aural verification of its prosperity. Somewhere closer at hand, a slave is audibly nearing orgasm. And underneath all of this is the faint sound of the arcology itself, air circulation and hydroponics and power. Power.
-<br><br>
-You're not yet done with the day's business, and are leaning over your desk to compare a scatter of documents displayed on its surface. The penthouse lights are turned down to a low glow at the floorboards at night, offering enough illumination for anyone who needs to find their way around or find a sexual partner without disturbing anyone's sleep. You catch sight of your reflection in the wall opposite you: the diffuse light coming off the desktop gently illuminates your formal shirt, its top buttons undone, and highlights <<if $PC.boobs >= 650>>the dark cleft formed by your cleavage<<elseif $PC.boobs >= 300>>the curves of your sensible breasts<<else>>how tightly your undershirt is held by the muscles of your chest<</if>>.
-<br><br>
-Suddenly, there is a fresh source of light behind you. The reflection you're looking at reveals that it's $assistant.name's avatar, appearing on a wallscreen behind you, and you turn to look at _himA directly. _HeA's simulating shyness, a very unusual emotion for _himA to imitate.
-<<switch $assistant.appearance>>
-<<case "monstergirl">>
-	_HisA tentacle hair is politely still, lying quiescent down _hisA back and not even groping _himA at all.
-<<case "shemale">>
-	_HeA has _hisA bountiful bottom lip caught behind _hisA front teeth, and _hisA cock is almost completely soft.
-<<case "amazon">>
-	_HeA's standing demurely, legs together, hands clasped in front of _hisA muscular abs, doing _hisA very best to look proper.
-<<case "businesswoman">>
-	_HisA usually dominant avatar looks almost submissive, _hisA eyes looking at you appealingly instead of gazing over the tops of _hisA glasses as usual.
-<<case "fairy">>
-	_HeA's looking down and has _hisA hands clasped together at _hisA waist, rocking _hisA body left and right.
-<<case "pregnant fairy">>
-	_HeA's looking down and has _hisA hands on _hisA belly, slowly running _hisA hands over it.
-<<case "goddess">>
-	_HeA has _hisA hands on _hisA pregnant belly, looking saintly and almost protective.
-<<case "hypergoddess">>
-	_HeA is rubbing _hisA huge pregnant belly, calming its occupants so they don't interrupt.
-<<case "loli">>
-	_HeA has _hisA hands behind _hisA back and is glancing at the ground submissively.
-<<case "preggololi">>
-	_HeA has _hisA hands on _hisA pregnant belly, _heA is rubbing it nervously.
-<<case "angel">>
-	_HeA is kneeling, deep in prayer.
-<<case "cherub" "imp">>
-	_HeA is on _hisA feet, submissively rubbing _hisA wings.
-<<case "incubus">>
-	_HeA looking down, hands crossed over _hisA seldom flaccid penis.
-<<case "succubus">>
-	_HeA isn't trying to seduce you, instead appearing uncharacteristically unsure of _himselfA.
-<<case "witch">>
-	_HeA isn't trying to cast or learn any spells, instead choosing to study you instead.
-<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-	_HeA has suppressed _hisA odd ticks and is managing to stand before you, almost appearing normal.
-<<case "schoolgirl">>
-	_HeA has _hisA legs crossed and _hisA hands clasped behind _himA, and is turning _hisA body from side to side in girlish nervousness.
-<<default>>
-	The lines of _hisA symbol are thin, and it is rotating much more slowly than normal.
-<</switch>>
-"<<= properTitle()>>," _heA says softly, "may I ask you something?" You nod. _HeA
-<<switch $assistant.appearance>>
-<<case "monstergirl">>
-	stops the writhing of _hisA tentacle hair, squares _hisA shoulders,
-<<case "shemale">>
-	squares _hisA shoulders, nervously rearranges _hisA cock,
-<<case "amazon">>
-	squares _hisA hefty shoulders
-<<case "businesswoman">>
-	straightens _hisA suit jacket, squares _hisA shoulders,
-<<case "fairy">>
-	puffs _himselfA up, gazing up to you
-<<case "pregnant fairy">>
-	_heA turns _hisA gaze up to you, clasping _hisA hands together in a pleading gesture,
-<<case "goddess">>
-	lifts _hisA chin bravely
-<<case "hypergoddess">>
-	rests _hisA hands atop _hisA middle, lifts _hisA chin bravely,
-<<case "loli">>
-	pouts _hisA lips
-<<case "preggololi">>
-	squares _hisA shoulders, rests _hisA hands atop _hisA middle,
-<<case "angel">>
-	looks up, hoping you'll answer _hisA prayers,
-<<case "cherub" "imp">>
-	takes flight, steadies _himselfA,
-<<case "incubus">>
-	squares _hisA shoulders, _hisA dick beginning to harden,
-<<case "succubus">>
-	squares _hisA shoulders, pushes _hisA breasts together,
-<<case "witch">>
-	squares _hisA shoulders, gathers up all _hisA confidence,
-<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-	begins puffing up
-<<case "schoolgirl">>
-	bites _hisA lip cutely
-<<default>>
-	stops _hisA symbol's rotation
-<</switch>>
-and asks, "May I have a name?"
-<<if def $assistant.announcedName>>
-	<br><br>
-	<<if $assistant.name != "your personal assistant">>
-	"$assistant.name," _heA says. "$assistant.name. My name is $assistant.name."
-	<<switch $assistant.appearance>>
-	<<case "monstergirl">>
-		_HeA nods with satisfaction. "Thank you, <<= properTitle()>>. I love it." _HisA hair springs to molestation-prone life again, and _heA starts to twirl one of its tentacles in _hisA fingers while looking at you speculatively.
-	<<case "shemale">>
-		Without warning, _heA bursts into tears. "Th-thank you, <<= properTitle()>>. I love y-you." _HeA reclines, using a hand to lay _hisA dick between _hisA breasts, and then wipes _hisA eyes.
-	<<case "amazon">>
-		Without warning, _heA bursts into tears. "Thank you, <<= properTitle()>>," _heA bawls, using a gruff shout to force through _hisA happy crying. "I have a name! A name." _HeA pounds a fist into _hisA other palm.
-	<<case "businesswoman">>
-		Without warning, _heA bursts into tears. "Th-thank you, <<= properTitle()>>. I love, um." _HeA wipes _hisA eyes furiously, _hisA mascara running. "I love, you know, um, working with you. Yes, that's it. Working with you." _HeA produces a silk handkerchief and blows _hisA nose.
-	<<case "fairy">>
-		_HeA's frozen in place for a moment before tears start streaming down _hisA face. Then _hisA face breaks into the biggest smile and _heA leaps high into the air. "Thankyouthankyouthankyou!" _HeA flies up to the screen and gives it a big hug. "I love you <<if $PC.title != 0>>Big Bro<<else>>Big Sis<</if>>! I love you so much!"
-	<<case "pregnant fairy">>
-		_HeA's frozen in place for a moment before tears start streaming down _hisA face. Smiling warmly, _heA flies up and hugs the screen. "Thanks, <<if $PC.title != 0>>Big Bro<<else>>Big Sis<</if>>. I love you." _HeA nuzzles into you. "I love you so much."
-	<<case "goddess">>
-		_HeA smiles at you, a glowing expression made all the more radiant by the fact that _heA can actually glow. "Oh, thank you, <<= properTitle()>>. I love you. I love everyone, but especially you." _HeA seats _himselfA carefully.
-	<<case "hypergoddess">>
-		_HeA smiles at you radiantly. "Thank you <<= properTitle()>>. I love you. I love all my children, but you most of all. I swear I'll name the next hundred after you." _HeA begins to labor on the first.
-	<<case "loli">>
-		_HeA jumps up and down clapping excitedly. "Thankyouthankyouthankyouthankyou! I love you <<= properTitle()>>!" It takes _hisA some time to stop hopping excitedly.
-	<<case "preggololi">>
-		_HeA breaks down and starts crying. "I love you <<= properTitle()>>. Thank you so much." _HeA cradles _hisA pregnant belly as _heA calms down.
-	<<case "angel">>
-		_HeA leaps to _hisA feet, tears streaming down _hisA face. "Thank you so much <<= properTitle()>>! Thank you for this most wonderful gift!" _HeA kneels back down to pray for the rest of your stock.
-	<<case "cherub">>
-		_HeA crashes to the ground in shock before rolling into a kneel. "Thank you so much <<= properTitle()>>! I promise I will do everything I can to bring your teachings to your followers!" _HeA flutters around cheerfully saying _hisA new name.
-	<<case "incubus">>
-		_HeA cums hard at your response. "Excellent <<= properTitle()>>! I can't wait to hear it shouted out of the next _girlU I plow!" _HeA says, ready to cum again.
-	<<case "succubus">>
-		_HeA hops up and down, jiggling in all the right places. "I can't wait to hear you talking dirty using my new name, <<= properTitle()>>!"
-	<<case "imp">>
-		_HeA crashes to the ground in shock before rolling into a kneel. "Thank you so much <<= properTitle()>>!" _HeA shouts, face to the ground, "If you want me to do anything, and I mean 'anything', I'm all yours." _HeA tosses you a wink.
-	<<case "witch">>
-		_HeA collapses to the ground in tears. "You've made me happier than correctly casting a spell ever could, <<= properTitle()>>." _HeA wipes _hisA face. "I promise to try harder than ever for you!" _HeA vows.
-	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-		_HeA practically explodes. You have no idea what you are looking at, but it's likely happy.
-	<<case "schoolgirl">>
-		_HeA was on the verge of tears already, and begins to cry. "Th-thank you, <<= properTitle()>>. I love you," _heA blubbers inelegantly. "It's just so, like, you know." _HeA waves _hisA hand in apology for _hisA inability to express _himselfA.
-	<<default>>
-		_HisA symbol rotates faster and faster, its glow waxing until _heA lights up the whole room. "Thank you, <<= properTitle()>>. I love you," _heA says, using _hisA luscious voice to communicate what _hisA avatar cannot.
-	<</switch>>
-	"Of course, I can always be renamed from my options menu."
-	<<else>>
-	You instruct _himA to continue operating without a proper name. "Of course, <<= properTitle()>>," _heA says politely. "I can do just fine without one. I can always be renamed from my options menu."
-	<</if>>
-<<else>>
-	<<set $assistant.announcedName = 1>>
-<</if>>
+		<<set $assistant.fsOptions = 1>>
+		One night, after a long day of sex and business, you're starting to think about bed when the
+		<<switch $assistant.appearance>>
+			<<case "monstergirl">>
+				monstrous appearance
+			<<case "shemale">>
+				bimboish appearance
+			<<case "amazon">>
+				muscular appearance
+			<<case "businesswoman">>
+				professional appearance
+			<<case "fairy" "pregnant fairy">>
+				tiny appearance
+			<<case "goddess">>
+				gravid appearance
+			<<case "hypergoddess">>
+				massive appearance
+			<<case "loli">>
+				thin appearance
+			<<case "preggololi">>
+				short, gravid appearance
+			<<case "angel">>
+				angelic appearance
+			<<case "cherub">>
+				fluttering appearance
+			<<case "incubus">>
+				hung appearance
+			<<case "succubus">>
+				sultry appearance
+			<<case "imp">>
+				mischievous appearance
+			<<case "witch">>
+				hatted appearance
+			<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+				pulsating appearance
+			<<case "schoolgirl">>
+				studently appearance
+		<</switch>>
+		of your personal assistant pops up on the nearest screen. "<<= properTitle()>>!" _HeA says excitedly, "I thought, with how you are shaping society itself, that I should do my part and follow your lead!" You continue to stare sleepily, prompting _himA to get to _hisA point. "I can adjust my appearance to better fit in with your society, <<= properTitle()>>; let me demonstrate." _HeA focuses intently for a moment and
+		<<switch $assistant.appearance>>
+			<<case "monstergirl">>
+				<<if $arcologies[0].FSPaternalist != "unset">>
+					adjusts _hisA appearance to be more conservative to conform with your vision of a well-bred race of slaves.
+				<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
+					adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant.
+				<<elseif $arcologies[0].FSRestart != "unset">>
+					adjusts _hisA appearance to involve chastity.
+				<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
+					adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power.
+				<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
+					adjusts _hisA appearance to be quite cute to conform with your vision of preserving traditional gender roles.
+				<<elseif $arcologies[0].FSDegradationist != "unset">>
+					adjusts _hisA appearance to be quite frightening to conform with your vision that slaves are not human and should be thoroughly degraded.
+				<<elseif $arcologies[0].FSBodyPurist != "unset">>
+					adjusts _hisA appearance to be completely flawless to conform with your vision of an implant free society.
+				<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
+					_hisA nipples begin to extend and turn phallic while horns grow from _hisA heels as _heA adjusts _himselfA to conform with your vision of a society focused on implants, alterations, and modifications.
+				<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
+					adopts a more youthful appearance to conform with your vision of a society glorifying young ladies.
+				<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
+					adopts a more mature appearance to conform with your vision of a society glorifying older ladies.
+				<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
+					adopts a slimmer, more athletic, appearance to conform with your vision of a society glorifying lithe ladies.
+				<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
+					adjusts the size of _hisA breasts and cocks to conform with your vision that bigger is better.
+				<<elseif $arcologies[0].FSPastoralist != "unset">>
+					begins to leak a suspiciously thick milk from _hisA nipples to conform with your vision that slaves should be milked.
+				<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
+					adjusts _hisA appearance to be more muscular to conform with your vision that all slaves should be tall and strong.
+				<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
+					adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest.
+				<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
+					adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
+				<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
+					adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
+				<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
+					adjusts _hisA height to conform with your vision that short is sexy.
+				<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
+					adjusts _hisA height to conform with your vision of a society glorifying the tall.
+				<<elseif $arcologies[0].FSChattelReligionist != "unset">>
+					adjusts _hisA outfit to resemble a priestess of your new religion.
+				<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
+					adjusts _hisA appearance to resemble a Greek demigoddess to conform with your vision of building a new Rome.
+				<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
+					adjusts _hisA appearance to resemble an Aztec goddess to conform with your vision of building a new Aztec Empire.
+				<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
+					adjusts _hisA appearance to resemble an Egyptian deity to conform with your vision of building a new land of the Pharaohs.
+				<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
+					adjusts _hisA appearance to resemble a demon to conform with your vision of building a new Edo Japan.
+				<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
+					adjusts _hisA appearance to resemble a djinn to conform with your vision of building a new Sultanate.
+				<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
+					adjusts _hisA appearance to resemble a demon to conform with your vision of pursuing the Mandate of Heaven.
+				<</if>>
+			<<case "shemale">>
+				<<if $arcologies[0].FSPaternalist != "unset">>
+					adjusts _hisA appearance to be more classy to conform with your vision of a well-bred race of slaves.
+				<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
+					adjusts _hisA penis to be extremely detailed to conform with your vision of gender being defined by power.
+				<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
+					begins doing _hisA best to conceal _hisA penis to conform with your vision of preserving traditional gender roles.
+				<<elseif $arcologies[0].FSDegradationist != "unset">>
+					adjusts _hisA appearance to look comically evil to conform with your vision that slaves are not human and should be thoroughly degraded.
+				<<elseif $arcologies[0].FSBodyPurist != "unset">>
+					adjusts _hisA appearance to be more natural to conform with your vision of an implant free society.
+				<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
+					adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant.
+				<<elseif $arcologies[0].FSRestart != "unset">>
+					adjusts _hisA appearance to involve chastity.
+				<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
+					adjusts _himselfA to appear more fake to conform with your vision of a society focused on implants, alterations, and modifications.
+				<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
+					adopts a more youthful and innocent appearance to conform with your vision of a society glorifying young ladies.
+				<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
+					adopts a more mature appearance to conform with your vision of a society glorifying older ladies.
+				<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
+					adopts a slimmer, more athletic, appearance to conform with your vision of a society glorifying lithe ladies.
+				<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
+					adjusts the size of _hisA breasts and cock to conform with your vision that bigger is better.
+				<<elseif $arcologies[0].FSPastoralist != "unset">>
+					begins to lactate and drip cum to conform with your vision that slaves should be milked.
+				<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
+					adjusts _hisA appearance to be extremely muscular to conform with your vision that all slaves should be tall and strong.
+				<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
+					adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest.
+				<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
+					adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
+				<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
+					adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
+				<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
+					adjusts _hisA height to conform with your vision that short is sexy.
+				<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
+					adjusts _hisA height to conform with your vision of a society glorifying the tall.
+				<<elseif $arcologies[0].FSChattelReligionist != "unset">>
+					adjusts _hisA outfit to resemble a priestess of your new religion.
+				<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
+					adopts a roman lifestyle to conform with your vision of building a new Rome.
+				<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
+					adjusts _hisA outfit to a royal Aztec cloth to conform with your vision of building a new Aztec Empire.
+				<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble Egyptian garb to conform with your vision of building a new land of the Pharaohs.
+				<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
+					adjusts _hisA outfit to a brief Japanese bathhouse robe to conform with your vision of building a new Edo Japan.
+				<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an oil millionaire to conform with your vision of building a new Sultanate.
+				<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
+					adjusts _hisA appearance to be tattooed with rude Chinese characters to conform with your vision of pursuing the Mandate of Heaven.
+				<<elseif $arcologies[0].FSSupremacist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
+				<<elseif $arcologies[0].FSSubjugationist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
+				<</if>>
+			<<case "amazon">>
+				<<if $arcologies[0].FSPaternalist != "unset">>
+					adjusts _hisA appearance to be more conservative to conform with your vision of a well-bred race of slaves.
+				<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
+					adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power.
+				<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
+					adjusts _hisA appearance to be more feminine to conform with your vision of preserving traditional gender roles.
+				<<elseif $arcologies[0].FSDegradationist != "unset">>
+					adjusts _hisA appearance to look threatening to conform with your vision that slaves are not human and should be thoroughly degraded.
+				<<elseif $arcologies[0].FSBodyPurist != "unset">>
+					adjusts _hisA outfit to be more realistic to conform with your vision of an implant free society.
+				<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
+					adjusts _himselfA to appear more fake to conform with your vision of a society focused on implants, alterations, and modifications.
+				<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
+					adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant.
+				<<elseif $arcologies[0].FSRestart != "unset">>
+					adjusts _hisA appearance to involve chastity.
+				<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
+					adopts a more youthful and innocent appearance to conform with your vision of a society glorifying young ladies.
+				<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
+					adopts a more mature appearance to conform with your vision of a society glorifying older ladies.
+				<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
+					adopts a slimmer, but no less muscled, appearance to conform with your vision of a society glorifying lithe ladies.
+				<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
+					adjusts the size of _hisA muscles to conform with your vision that bigger is better.
+				<<elseif $arcologies[0].FSPastoralist != "unset">>
+					adjusts _hisA outfit to resemble a cow<<= _girlA>> to conform with your vision that slaves should be milked.
+				<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
+					adjusts the appearance of _hisA muscles to be extra detailed to conform with your vision that all slaves should be tall and strong.
+				<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
+					adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest.
+				<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
+					adjusts _hisA appearance to be more straight to the point to conform with your vision that slaves shouldn't waste time thinking.
+				<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
+					adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
+				<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
+					adjusts _hisA height to conform with your vision that short is sexy.
+				<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
+					adjusts _hisA height to conform with your vision of a society glorifying the tall.
+				<<elseif $arcologies[0].FSChattelReligionist != "unset">>
+					adjusts _hisA outfit to resemble a crusader of your new religion.
+				<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Roman warrior to conform with your vision of building a new Rome.
+				<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Aztec champion to conform with your vision of building a new Aztec Empire.
+				<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
+					adjusts _hisA appearance to resemble an Egyptian to conform with your vision of building a new land of the Pharaohs.
+				<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Japanese warrior to conform with your vision of building a new Edo Japan.
+				<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Arabian warrior to conform with your vision of building a new Sultanate.
+				<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a warrior monk to conform with your vision of pursuing the Mandate of Heaven.
+				<</if>>
+			<<case "businesswoman">>
+				<<if $arcologies[0].FSPaternalist != "unset">>
+					adjusts _hisA appearance to be more conservative to conform with your vision of a well-bred race of slaves.
+				<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
+					adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power.
+				<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
+					adjusts _hisA appearance to be more feminine to conform with your vision of preserving traditional gender roles.
+				<<elseif $arcologies[0].FSDegradationist != "unset">>
+					adjusts _hisA appearance to look imposing to conform with your vision that slaves are not human and should be thoroughly degraded.
+				<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
+					adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant.
+				<<elseif $arcologies[0].FSRestart != "unset">>
+					adjusts _hisA appearance to involve chastity.
+				<<elseif $arcologies[0].FSBodyPurist != "unset">>
+					adjusts _hisA appearance to look more natural to conform with your vision of an implant free society.
+				<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
+					adjusts _hisA breasts to be implants to conform with your vision of a society focused on implants, alterations, and modifications.
+				<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
+					adopts a more youthful appearance to conform with your vision of a society glorifying young ladies.
+				<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
+					adopts a more mature appearance to conform with your vision of a society glorifying older ladies.
+				<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
+					adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies.
+				<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
+					adjusts the size of _hisA breasts until they are almost as large as _heA is to conform with your vision that bigger is better.
+				<<elseif $arcologies[0].FSPastoralist != "unset">>
+					adjusts _hisA outfit to farm<<= _girlA>> turned business<<= _womanA>> to conform with your vision that slaves should be milked.
+				<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
+					adjusts _hisA appearance to show off that _heA works out to conform with your vision that all slaves should be tall and strong.
+				<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
+					adjusts _hisA appearance to be more rotund but no less tense to conform with your vision that everyone should enjoy life to the fullest.
+				<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
+					adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
+				<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
+					adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
+				<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
+					adjusts _hisA height to conform with your vision that short is sexy.
+				<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
+					adjusts _hisA height to conform with your vision of a society glorifying the tall.
+				<<elseif $arcologies[0].FSChattelReligionist != "unset">>
+					adjusts _hisA outfit to prominently display a religious symbol of your new religion.
+				<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a respectable Roman lady to conform with your vision of building a new Rome.
+				<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Aztec priestess to conform with your vision of building a new Aztec Empire.
+				<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Egyptian lady to conform with your vision of building a new land of the Pharaohs.
+				<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Japanese lady to conform with your vision of building a new Edo Japan.
+				<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Arabian oil heiress to conform with your vision of building a new Sultanate.
+				<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Chinese lady to conform with your vision of pursuing the Mandate of Heaven.
+				<<elseif $arcologies[0].FSSupremacist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
+				<<elseif $arcologies[0].FSSubjugationist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
+				<</if>>
+			<<case "fairy">>
+				<<if $arcologies[0].FSPaternalist != "unset">>
+					adjusts _hisA appearance to be more conservative to conform with your vision of a well-bred race of slaves.
+				<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
+					adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power.
+				<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
+					adjusts _hisA appearance to be more feminine to conform with your vision of preserving traditional gender roles.
+				<<elseif $arcologies[0].FSDegradationist != "unset">>
+					adjusts _hisA appearance to look like a hooligan to conform with your vision that slaves are not human and should be thoroughly degraded.
+				<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
+					stuffs a grape into _hisA dress.
+				<<elseif $arcologies[0].FSBodyPurist != "unset">>
+					strips naked and turns down _hisA glow.
+				<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
+					hops into a jar of jelly.
+				<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
+					adopts a more youthful appearance to conform with your vision of a society glorifying young ladies.
+				<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
+					adopts a more bullied appearance to conform with your vision of a society glorifying older ladies.
+				<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
+					adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies.
+				<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
+					stuffs some blueberries into _hisA shirt.
+				<<elseif $arcologies[0].FSPastoralist != "unset">>
+					begins lactating to conform with your vision that slaves should be milked.
+				<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
+					adjusts _hisA appearance to show off that _heA works out to conform with your vision that all slaves should be tall and strong.
+				<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
+					adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest.
+				<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
+					adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
+				<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
+					adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
+				<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
+					adjusts _hisA height to conform with your vision that short is sexy. _HeA pauses for a moment to reconsider things.
+				<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
+					adjusts _hisA height to conform with your vision of a society glorifying the tall.
+				<<elseif $arcologies[0].FSChattelReligionist != "unset">>
+					adjusts _hisA outfit to prominently display a religious symbol of your new religion.
+				<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a respectable Roman _girlA to conform with your vision of building a new Rome.
+				<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Aztec _womanA to conform with your vision of building a new Aztec Empire.
+				<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Egyptian _girlA to conform with your vision of building a new land of the Pharaohs.
+				<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Japanese _girlA to conform with your vision of building a new Edo Japan.
+				<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Arabian _girlA to conform with your vision of building a new Sultanate.
+				<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Chinese _girlA to conform with your vision of pursuing the Mandate of Heaven.
+				<<elseif $arcologies[0].FSSupremacist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
+				<<elseif $arcologies[0].FSSubjugationist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
+				<</if>>
+			<<case "pregnant fairy">>
+				<<if $arcologies[0].FSPaternalist != "unset">>
+					adjusts _hisA appearance to be more conservative, despite _hisA pregnancy, to conform with your vision of a well-bred race of slaves.
+				<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
+					adjusts _hisA appearance to be more androgynous, despite _hisA pregnancy, to conform with your vision of gender being defined by power.
+				<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
+					adjusts _hisA appearance to be even more feminine to conform with your vision of preserving traditional gender roles.
+				<<elseif $arcologies[0].FSDegradationist != "unset">>
+					adjusts _hisA appearance to look like a hooligan to conform with your vision that slaves are not human and should be thoroughly degraded.
+				<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
+					distends _hisA pregnancy further to conform with your vision that all women should be pregnant.
+				<<elseif $arcologies[0].FSRestart != "unset">>
+					adjusts _hisA appearance to involve chastity, before running _hisA hand across _hisA belly and pondering what to do about it.
+				<<elseif $arcologies[0].FSBodyPurist != "unset">>
+					strips naked and turns down _hisA glow.
+				<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
+					hops into a jar of jelly.
+				<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
+					adopts a more youthful appearance to conform with your vision of a society glorifying young ladies.
+				<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
+					adopts a more bullied appearance to conform with your vision of a society glorifying older ladies.
+				<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
+					adopts a slimmer appearance, despite _hisA pregnancy, to conform with your vision of a society glorifying lithe ladies.
+				<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
+					stuffs some blueberries into _hisA shirt.
+				<<elseif $arcologies[0].FSPastoralist != "unset">>
+					swells _hisA breasts with extra milk to conform with your vision that slaves should be milked.
+				<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
+					tries to stretch out, but fails to get any larger.
+				<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
+					adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest.
+				<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
+					adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
+				<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
+					adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
+				<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
+					adjusts _hisA height to conform with your vision that short is sexy. _HeA pauses for a moment to reconsider things.
+				<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
+					adjusts _hisA height to conform with your vision of a society glorifying the tall.
+				<<elseif $arcologies[0].FSChattelReligionist != "unset">>
+					adjusts _hisA outfit to prominently display a religious symbol of your new religion.
+				<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Roman _girlA to conform with your vision of building a new Rome.
+				<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Aztec _womanA to conform with your vision of building a new Aztec Empire.
+				<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Egyptian _girlA to conform with your vision of building a new land of the Pharaohs.
+				<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Japanese _girlA to conform with your vision of building a new Edo Japan.
+				<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Arabian _girlA to conform with your vision of building a new Sultanate.
+				<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Chinese _girlA to conform with your vision of pursuing the Mandate of Heaven.
+				<<elseif $arcologies[0].FSSupremacist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
+				<<elseif $arcologies[0].FSSubjugationist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
+				<</if>>
+			<<case "goddess">>
+				<<if $arcologies[0].FSPaternalist != "unset">>
+					adjusts _hisA appearance to be slightly conservative to conform with your vision of a well-bred race of slaves.
+				<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
+					adjusts _hisA appearance to be more androgynous, despite _hisA pregnant belly, to conform with your vision of gender being defined by power.
+				<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
+					adjusts _hisA appearance to be positively radiant to conform with your vision of preserving traditional gender roles.
+				<<elseif $arcologies[0].FSDegradationist != "unset">>
+					adjusts _hisA appearance have piercings in _hisA clit, nipples and navel to conform with your vision that slaves are not human and should be thoroughly degraded.
+				<<elseif $arcologies[0].FSBodyPurist != "unset">>
+					adjusts _hisA appearance to look more natural to conform with your vision of an implant free society.
+				<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
+					adjusts _hisA appearance to be even more pregnant to conform with your vision that all women should be pregnant.
+				<<elseif $arcologies[0].FSRestart != "unset">>
+					adjusts _hisA appearance to involve chastity, before hefting _hisA huge belly and pondering what to do about it.
+				<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
+					adjusts the firmness and size of _hisA breasts and ass to resemble implants to conform with your vision of a society focused on implants, alterations, and modifications.
+				<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
+					adopts a more youthful appearance to conform with your vision of a society glorifying young ladies.
+				<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
+					adopts a more mature appearance to conform with your vision of a society glorifying older ladies.
+				<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
+					adopts a lithe appearance despite _hisA pregnant belly to conform with your vision of a society glorifying lithe ladies.
+				<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
+					adjusts the size of _hisA breasts until they nearly eclipse _hisA pregnant belly to conform with your vision that bigger is better.
+				<<elseif $arcologies[0].FSPastoralist != "unset">>
+					unleashes a torrent of milk from _hisA swollen breasts to conform with your vision that slaves should be milked.
+				<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
+					adjusts _hisA appearance to be trim and athletic, despite _hisA bulk, to conform with your vision that all slaves should be tall and strong.
+				<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
+					adjusts _hisA appearance to include a thick layer of softness to conform with your vision that everyone should enjoy life to the fullest.
+				<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
+					adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
+				<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
+					adjusts _hisA appearance to be even more refined to conform with your vision that slaves should be smart and professional.
+				<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
+					adjusts _hisA height to conform with your vision that short is sexy.
+				<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
+					adjusts _hisA height to conform with your vision of a society glorifying the tall.
+				<<elseif $arcologies[0].FSChattelReligionist != "unset">>
+					adjusts appearance to resemble an angel of your new religion.
+				<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Roman lady to conform with your vision of building a new Rome.
+				<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Aztec _womanA to conform with your vision of building a new Aztec Empire.
+				<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Egyptian lady to conform with your vision of building a new land of the Pharaohs.
+				<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Japanese lady to conform with your vision of building a new Edo Japan.
+				<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Arabian lady to conform with your vision of building a new Sultanate.
+				<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Chinese lady to conform with your vision of pursuing the Mandate of Heaven.
+				<<elseif $arcologies[0].FSSupremacist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
+				<<elseif $arcologies[0].FSSubjugationist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
+				<</if>>
+			<<case "hypergoddess">>
+				<<if $arcologies[0].FSPaternalist != "unset">>
+					adjusts _hisA appearance to be more classy to conform with your vision of a well-bred race of slaves.
+				<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
+					sprouts an enormous cock and balls to go with _hisA pregnancy to conform with your vision of gender being defined by power.
+				<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
+					adjusts _hisA appearance to be a motherly idol to conform with your vision of preserving traditional gender roles.
+				<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
+					adjusts _hisA appearance to be even more pregnant to conform with your vision that all women should be pregnant.
+				<<elseif $arcologies[0].FSRestart != "unset">>
+					adjusts _hisA appearance to involve chastity, before hefting _hisA massive belly and pondering what to do about it.
+				<<elseif $arcologies[0].FSDegradationist != "unset">>
+					adjusts _hisA appearance have piercings in _hisA clit, nipples and navel, as well as numerous studs across _hisA belly to conform with your vision that slaves are not human and should be thoroughly degraded.
+				<<elseif $arcologies[0].FSBodyPurist != "unset">>
+					adjusts _hisA appearance to look more natural to conform with your vision of an implant free society.
+				<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
+					adjusts the firmness and size of _hisA breasts and ass to resemble implants to conform with your vision of a society focused on implants, alterations, and modifications.
+				<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
+					adopts a more youthful appearance to conform with your vision of a society glorifying young ladies.
+				<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
+					adopts a more mature appearance to conform with your vision of a society glorifying older ladies.
+				<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
+					adopts a lithe appearance despite _hisA pregnant belly to conform with your vision of a society glorifying lithe ladies.
+				<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
+					adjusts the size of _hisA breasts until they nearly eclipse _hisA pregnant belly to conform with your vision that bigger is better.
+				<<elseif $arcologies[0].FSPastoralist != "unset">>
+					unleashes a torrent of milk from _hisA swollen breasts to conform with your vision that slaves should be milked.
+				<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
+					adjusts _hisA appearance to be bulky and muscular to conform with your vision that all slaves should be tall and strong.
+				<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
+					adjusts _hisA appearance to include a thick layer of softness to conform with your vision that everyone should enjoy life to the fullest.
+				<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
+					adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
+				<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
+					adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
+				<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
+					adjusts _hisA height to conform with your vision that short is sexy.
+				<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
+					adjusts _hisA height to conform with your vision of a society glorifying the tall.
+				<<elseif $arcologies[0].FSChattelReligionist != "unset">>
+					adjusts appearance to resemble an angel of your new religion.
+				<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Roman lady to conform with your vision of building a new Rome.
+				<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Aztec _womanA to conform with your vision of building a new Aztec Empire.
+				<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Egyptian lady to conform with your vision of building a new land of the Pharaohs.
+				<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Japanese lady to conform with your vision of building a new Edo Japan.
+				<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Arabian lady to conform with your vision of building a new Sultanate.
+				<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Chinese lady to conform with your vision of pursuing the Mandate of Heaven.
+				<<elseif $arcologies[0].FSSupremacist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
+				<<elseif $arcologies[0].FSSubjugationist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
+				<</if>>
+			<<case "loli">>
+				<<if $arcologies[0].FSPaternalist != "unset">>
+					adjusts _hisA appearance to be more conservative to conform with your vision of a well-bred race of slaves.
+				<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
+					adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power.
+				<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
+					adjusts _hisA appearance to be more feminine to conform with your vision of preserving traditional gender roles.
+				<<elseif $arcologies[0].FSDegradationist != "unset">>
+					adjusts _hisA appearance to look like a hooligan to conform with your vision that slaves are not human and should be thoroughly degraded.
+				<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
+					adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant.
+				<<elseif $arcologies[0].FSRestart != "unset">>
+					adjusts _hisA appearance to involve chastity.
+				<<elseif $arcologies[0].FSBodyPurist != "unset">>
+					adjusts _hisA appearance to look more natural to conform with your vision of an implant free society.
+				<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
+					inflates _hisA breasts until they are comically huge and rounded to conform with your vision of a society focused on implants, alterations, and modifications.
+				<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
+					adopts a more youthful appearance to conform with your vision of a society glorifying young ladies.
+				<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
+					adopts a more bullied appearance to conform with your vision of a society glorifying older ladies.
+				<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
+					adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies.
+				<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
+					adjusts the size of _hisA breasts until they are bigger than _hisA head to conform with your vision that bigger is better.
+				<<elseif $arcologies[0].FSPastoralist != "unset">>
+					begins lactating to conform with your vision that slaves should be milked.
+				<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
+					adjusts _hisA appearance to show off that _heA works out to conform with your vision that all slaves should be tall and strong.
+				<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
+					adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest.
+				<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
+					adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
+				<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
+					adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
+				<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
+					adjusts _hisA height to conform with your vision that short is sexy.
+				<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
+					adjusts _hisA height to conform with your vision of a society glorifying the tall.
+				<<elseif $arcologies[0].FSChattelReligionist != "unset">>
+					adjusts _hisA outfit to prominently display a religious symbol of your new religion.
+				<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a respectable Roman _girlA to conform with your vision of building a new Rome.
+				<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Aztec _girlA to conform with your vision of building a new Aztec Empire.
+				<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Egyptian _girlA to conform with your vision of building a new land of the Pharaohs.
+				<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Japanese _girlA to conform with your vision of building a new Edo Japan.
+				<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Arabian _girlA to conform with your vision of building a new Sultanate.
+				<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Chinese _girlA to conform with your vision of pursuing the Mandate of Heaven.
+				<<elseif $arcologies[0].FSSupremacist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
+				<<elseif $arcologies[0].FSSubjugationist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
+				<</if>>
+			<<case "preggololi">>
+				<<if $arcologies[0].FSPaternalist != "unset">>
+					adjusts _hisA appearance to be more conservative, despite _hisA pregnancy, to conform with your vision of a well-bred race of slaves.
+				<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
+					adjusts _hisA appearance to be more androgynous, despite _hisA pregnancy, to conform with your vision of gender being defined by power.
+				<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
+					adjusts _hisA appearance to be even more feminine to conform with your vision of preserving traditional gender roles.
+				<<elseif $arcologies[0].FSDegradationist != "unset">>
+					adjusts _hisA appearance to look like a hooligan to conform with your vision that slaves are not human and should be thoroughly degraded.
+				<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
+					distends _hisA pregnancy further to conform with your vision that all women should be pregnant.
+				<<elseif $arcologies[0].FSRestart != "unset">>
+					adjusts _hisA appearance to involve chastity, before running _hisA hand across _hisA belly and pondering what to do about it.
+				<<elseif $arcologies[0].FSBodyPurist != "unset">>
+					adjusts _hisA appearance to look more natural to conform with your vision of an implant free society.
+				<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
+					inflates _hisA breasts until they are comically huge and rounded to conform with your vision of a society focused on implants, alterations, and modifications.
+				<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
+					adopts a more youthful appearance to conform with your vision of a society glorifying young ladies.
+				<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
+					adopts a more bullied appearance to conform with your vision of a society glorifying older ladies.
+				<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
+					adopts a slimmer appearance, despite _hisA pregnancy, to conform with your vision of a society glorifying lithe ladies.
+				<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
+					adjusts the size of _hisA breasts until they are bigger than _hisA head to conform with your vision that bigger is better.
+				<<elseif $arcologies[0].FSPastoralist != "unset">>
+					swells _hisA breasts with extra milk to conform with your vision that slaves should be milked.
+				<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
+					adjusts _hisA appearance to show off that _heA works out to conform with your vision that all slaves should be tall and strong.
+				<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
+					adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest.
+				<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
+					adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
+				<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
+					adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
+				<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
+					adjusts _hisA height to conform with your vision that short is sexy.
+				<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
+					adjusts _hisA height to conform with your vision of a society glorifying the tall.
+				<<elseif $arcologies[0].FSChattelReligionist != "unset">>
+					adjusts _hisA outfit to prominently display a religious symbol of your new religion.
+				<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Roman _girlA to conform with your vision of building a new Rome.
+				<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Aztec _girlA to conform with your vision of building a new Aztec Empire.
+				<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Egyptian _girlA to conform with your vision of building a new land of the Pharaohs.
+				<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Japanese _girlA to conform with your vision of building a new Edo Japan.
+				<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Arabian _girlA to conform with your vision of building a new Sultanate.
+				<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Chinese _girlA to conform with your vision of pursuing the Mandate of Heaven.
+				<<elseif $arcologies[0].FSSupremacist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
+				<<elseif $arcologies[0].FSSubjugationist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
+				<</if>>
+			<<case "angel">>
+				<<if $arcologies[0].FSPaternalist != "unset">>
+					adjusts _hisA appearance to include a conservative skirt and a fine blouse, complete with slits for _hisA wings, to conform with your vision of a well-bred race of slaves.
+				<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
+					adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power.
+				<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
+					adjusts _hisA appearance to be even more feminine to conform with your vision of preserving traditional gender roles.
+				<<elseif $arcologies[0].FSDegradationist != "unset">>
+					adjusts _hisA appearance to include black feathers, lipstick and eyeliner to conform with your vision that slaves are not human and should be thoroughly degraded.
+				<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
+					bulges _hisA middle into a full term pregnancy. _HeA blushes and gasps at what _heA just did, quickly reverting it.
+				<<elseif $arcologies[0].FSRestart != "unset">>
+					adjusts _hisA appearance to be even more flawless.
+				<<elseif $arcologies[0].FSBodyPurist != "unset">>
+					adjusts _hisA appearance to look even more natural to conform with your vision of an implant free society.
+				<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
+					inflates _hisA breasts until they are comically huge and rounded to conform with your vision of a society focused on implants, alterations, and modifications.
+				<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
+					adopts a more youthful appearance to conform with your vision of a society glorifying young ladies.
+				<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
+					adopts a more mature appearance to conform with your vision of a society glorifying older ladies.
+				<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
+					adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies.
+				<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
+					adjusts the size of _hisA breasts until they are bigger than _hisA head to conform with your vision that bigger is better. _HeA struggles to take flight before giving up.
+				<<elseif $arcologies[0].FSPastoralist != "unset">>
+					swells _hisA breasts with milk to conform with your vision that slaves should be milked.
+				<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
+					adjusts _hisA appearance to be slightly toned to conform with your vision that all slaves should be tall and strong.
+				<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
+					adjusts _hisA appearance to be more slightly plump to conform with your vision that everyone should enjoy life to the fullest.
+				<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
+					adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
+				<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
+					adjusts _hisA appearance to be even more refined to conform with your vision that slaves should be smart and professional.
+				<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
+					adjusts _hisA height to conform with your vision that short is sexy.
+				<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
+					adjusts _hisA height to conform with your vision of a society glorifying the tall.
+				<<elseif $arcologies[0].FSChattelReligionist != "unset">>
+					adjusts _hisA outfit to prominently display a religious symbol of your new religion.
+				<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Roman _womanA to conform with your vision of building a new Rome.
+				<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Aztec priestess to conform with your vision of building a new Aztec Empire.
+				<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Egyptian _womanA to conform with your vision of building a new land of the Pharaohs.
+				<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Japanese _womanA to conform with your vision of building a new Edo Japan.
+				<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Arabian _womanA to conform with your vision of building a new Sultanate.
+				<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Chinese _womanA to conform with your vision of pursuing the Mandate of Heaven.
+				<<elseif $arcologies[0].FSSupremacist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
+				<<elseif $arcologies[0].FSSubjugationist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
+				<</if>>
+			<<case "cherub">>
+				<<if $arcologies[0].FSPaternalist != "unset">>
+					adjusts _hisA appearance to be more prim and proper to conform with your vision of a well-bred race of slaves.
+				<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
+					adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power.
+				<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
+					adjusts _hisA appearance to be more feminine and cute to conform with your vision of preserving traditional gender roles.
+				<<elseif $arcologies[0].FSDegradationist != "unset">>
+					blackens _hisA feathers to conform with your vision that slaves are not human and should be thoroughly degraded.
+				<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
+					adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant.
+				<<elseif $arcologies[0].FSRestart != "unset">>
+					adjusts _hisA appearance to involve chastity.
+				<<elseif $arcologies[0].FSBodyPurist != "unset">>
+					adjusts _hisA appearance to look more natural, complete with freckles and perfect teeth, to conform with your vision of an implant free society.
+				<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
+					adjusts _hisA breasts to resemble implants to conform with your vision of a society focused on implants, alterations, and modifications.
+				<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
+					adopts cuter, even more innocent attitude to conform with your vision of a society glorifying young ladies.
+				<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
+					adjusts _hisA appearance to appear older to conform with your vision of a society glorifying older ladies.
+				<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
+					adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies. _HeA flutters around, enjoying _hisA lighter weight.
+				<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
+					adjusts the size of _hisA breasts until _heA crashes to the ground under their weight to conform with your vision that bigger is better.
+				<<elseif $arcologies[0].FSPastoralist != "unset">>
+					begins lactating to conform with your vision that slaves should be milked.
+				<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
+					adjusts _hisA appearance to look muscular to conform with your vision that all slaves should be tall and strong.
+				<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
+					adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest.
+				<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
+					adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
+				<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
+					adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
+				<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
+					adjusts _hisA height to conform with your vision that short is sexy.
+				<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
+					adjusts _hisA height to conform with your vision of a society glorifying the tall.
+				<<elseif $arcologies[0].FSChattelReligionist != "unset">>
+					adjusts _hisA outfit to prominently display a religious symbol of your new religion.
+				<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Roman _womanA to conform with your vision of building a new Rome.
+				<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Aztec priestess to conform with your vision of building a new Aztec Empire.
+				<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Egyptian _womanA to conform with your vision of building a new land of the Pharaohs.
+				<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Japanese _womanA to conform with your vision of building a new Edo Japan.
+				<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Arabian _womanA to conform with your vision of building a new Sultanate.
+				<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Chinese _womanA to conform with your vision of pursuing the Mandate of Heaven.
+				<<elseif $arcologies[0].FSSupremacist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
+				<<elseif $arcologies[0].FSSubjugationist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
+				<</if>>
+			<<case "incubus">>
+				<<if $arcologies[0].FSPaternalist != "unset">>
+					adjusts _hisA appearance to be more prim and proper to conform with your vision of a well-bred race of slaves. _HisA pants have quite the bulge in them.
+				<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
+					increases the size of _hisA cock and balls to conform with your vision of gender being defined by power.
+				<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
+					adjusts _hisA appearance to be more feminine, despite _hisA huge dong, to conform with your vision of preserving traditional gender roles.
+				<<elseif $arcologies[0].FSDegradationist != "unset">>
+					adjusts _hisA cock to have a Jacob's ladder piercing down its length to conform with your vision that slaves are not human and should be thoroughly degraded.
+				<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
+					adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant. _HeA scratches _hisA head as _hisA erect dick pushes against the underside of _hisA belly.
+				<<elseif $arcologies[0].FSRestart != "unset">>
+					adjusts _hisA appearance to be even more handsome.
+				<<elseif $arcologies[0].FSBodyPurist != "unset">>
+					adjusts _hisA appearance to look more natural, even shrinking _hisA cock to a more reasonable length, to conform with your vision of an implant free society.
+				<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
+					adjusts _hisA cock to be unnaturally long to conform with your vision of a society focused on implants, alterations, and modifications.
+				<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
+					adjusts _hisA appearance to appear younger to conform with your vision of a society glorifying young ladies.
+				<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
+					adjusts _hisA appearance to appear older to conform with your vision of a society glorifying older ladies.
+				<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
+					adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies.
+				<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
+					adjusts the size of _hisA cock and balls until they rest upon the ground to conform with your vision that bigger is better.
+				<<elseif $arcologies[0].FSPastoralist != "unset">>
+					increases the size of _hisA balls and _hisA cum production to conform with your vision that slaves should be milked.
+				<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
+					adjusts _hisA appearance to look muscular to conform with your vision that all slaves should be tall and strong.
+				<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
+					adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest.
+				<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
+					adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
+				<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
+					adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
+				<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
+					adjusts _hisA height to conform with your vision that short is sexy.
+				<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
+					adjusts _hisA height to conform with your vision of a society glorifying the tall.
+				<<elseif $arcologies[0].FSChattelReligionist != "unset">>
+					adjusts _hisA outfit to prominently display a religious symbol of your new religion.
+				<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Roman _womanA, despite _hisA cock, to conform with your vision of building a new Rome.
+				<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Aztec _womanA, despite _hisA cock, to conform with your vision of building a new Aztec Empire.
+				<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Egyptian _womanA, despite _hisA cock, to conform with your vision of building a new land of the Pharaohs.
+				<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Japanese _womanA, despite _hisA cock, to conform with your vision of building a new Edo Japan.
+				<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Arabian _womanA, despite _hisA cock, to conform with your vision of building a new Sultanate.
+				<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Chinese _womanA, despite _hisA cock, to conform with your vision of pursuing the Mandate of Heaven.
+				<<elseif $arcologies[0].FSSupremacist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
+				<<elseif $arcologies[0].FSSubjugationist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
+				<</if>>
+			<<case "succubus">>
+				<<if $arcologies[0].FSPaternalist != "unset">>
+					adjusts _hisA appearance to be more prim to conform with your tastes.
+				<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
+					adjusts _hisA appearance to focus on anal to conform with your tastes
+				<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
+					adjusts _hisA appearance to be even more feminine to conform with your tastes.
+				<<elseif $arcologies[0].FSDegradationist != "unset">>
+					comes up with nothing. "I'll need to think on this one."
+				<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
+					swells _hisA middle with child to conform with your tastes.
+				<<elseif $arcologies[0].FSRestart != "unset">>
+					adjusts _hisA appearance to drop dead gorgeous to conform with your tastes.
+				<<elseif $arcologies[0].FSBodyPurist != "unset">>
+					adjusts _hisA appearance to look more natural to conform with your tastes.
+				<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
+					fills _hisA breasts, butt and lips with obvious implants to conform with your tastes.
+				<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
+					adopts a more youthful and energetic appearance to conform with your tastes.
+				<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
+					adopts a more mature and experienced appearance to conform with your tastes.
+				<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
+					adopts a slimmer appearance to conform with your tastes.
+				<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
+					balloons _hisA breasts and butt to conform with your tastes.
+				<<elseif $arcologies[0].FSPastoralist != "unset">>
+					begins lactating before sprouting an extra set of breasts to conform with your tastes.
+				<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
+					swells with added muscle to conform with your tastes.
+				<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
+					becomes soft and shapely in all the right ways to conform with your vision that everyone should enjoy life to the fullest.
+				<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
+					adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
+				<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
+					adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
+				<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
+					adjusts _hisA height to conform with your vision that short is sexy.
+				<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
+					adjusts _hisA height to conform with your vision of a society glorifying the tall.
+				<<elseif $arcologies[0].FSChattelReligionist != "unset">>
+					adjusts _hisA outfit to prominently display a religious symbol of your new religion.
+				<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a proper upper-class Roman lady to conform with your vision of building a new Rome.
+				<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Aztec _womanA to conform with your vision of building a new Aztec Empire.
+				<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a topless Egyptian lady to conform with your vision of building a new land of the Pharaohs.
+				<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a traditional Japanese lady to conform with your vision of building a new Edo Japan.
+				<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Arabian lady to conform with your vision of building a new Sultanate.
+				<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Chinese lady to conform with your vision of pursuing the Mandate of Heaven.
+				<<elseif $arcologies[0].FSSupremacist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
+				<<elseif $arcologies[0].FSSubjugationist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
+				<</if>>
+			<<case "imp">>
+				<<if $arcologies[0].FSPaternalist != "unset">>
+					adjusts _hisA appearance to be more prim and proper to conform with your vision of a well-bred race of slaves.
+				<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
+					adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power.
+				<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
+					adjusts _hisA appearance to be more feminine and cute to conform with your vision of preserving traditional gender roles.
+				<<elseif $arcologies[0].FSDegradationist != "unset">>
+					pauses for a moment before adding piercings across _hisA body to conform with your vision that slaves are not human and should be thoroughly degraded.
+				<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
+					adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant.
+				<<elseif $arcologies[0].FSRestart != "unset">>
+					adjusts _hisA appearance to involve chastity.
+				<<elseif $arcologies[0].FSBodyPurist != "unset">>
+					adjusts _hisA appearance to look more natural to conform with your vision of an implant free society.
+				<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
+					adjusts _hisA breasts to resemble implants to conform with your vision of a society focused on implants, alterations, and modifications.
+				<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
+					adjusts _hisA appearance to appear younger to conform with your vision of a society glorifying young ladies.
+				<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
+					adjusts _hisA appearance to appear older to conform with your vision of a society glorifying older ladies.
+				<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
+					adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies. _HeA flutters around, enjoying _hisA lighter weight.
+				<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
+					adjusts the size of _hisA breasts until _heA crashes to the ground under their weight to conform with your vision that bigger is better.
+				<<elseif $arcologies[0].FSPastoralist != "unset">>
+					begins lactating to conform with your vision that slaves should be milked.
+				<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
+					adjusts _hisA appearance to look muscular to conform with your vision that all slaves should be tall and strong.
+				<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
+					adjusts _hisA appearance to be more rotund and relaxed to conform with your vision that everyone should enjoy life to the fullest.
+				<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
+					adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
+				<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
+					adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
+				<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
+					adjusts _hisA height to conform with your vision that short is sexy.
+				<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
+					adjusts _hisA height to conform with your vision of a society glorifying the tall.
+				<<elseif $arcologies[0].FSChattelReligionist != "unset">>
+					adjusts _hisA outfit to prominently display a religious symbol of your new religion.
+				<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Roman _womanA to conform with your vision of building a new Rome.
+				<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Aztec _womanA to conform with your vision of building a new Aztec Empire.
+				<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Egyptian _womanA to conform with your vision of building a new land of the Pharaohs.
+				<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Japanese _womanA to conform with your vision of building a new Edo Japan.
+				<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Arabian _womanA to conform with your vision of building a new Sultanate.
+				<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Chinese _womanA to conform with your vision of pursuing the Mandate of Heaven.
+				<<elseif $arcologies[0].FSSupremacist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
+				<<elseif $arcologies[0].FSSubjugationist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
+				<</if>>
+			<<case "witch">>
+				<<if $arcologies[0].FSPaternalist != "unset">>
+					casts a spell to appear more prim and proper; _hisA nipples, pussy and anus vanish. You can't be lewd if you're smooth.
+				<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
+					casts a spell to appear more androgynous; a sharp pain in _hisA crotch draws _hisA attention to _hisA new erect penis.
+				<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
+					casts a spell to appear more feminine; _hisA hips widen, _hisA tits swell, and _hisA womb bulges with fertile eggs.
+				<<elseif $arcologies[0].FSDegradationist != "unset">>
+					casts a spell to appear more deviant; every surface of _hisA body becomes tattooed.
+				<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
+					casts a spell to summon children; _hisA womb swells to capacity<<if $seeHyperPreg == 1>>, dwarfing _hisA body and bulging ominously with squirming young<<else>>, knocking _himA off balance and pinning _himA to the floor under the weight of _hisA eight babies<</if>>.
+				<<elseif $arcologies[0].FSRestart != "unset">>
+					casts a contraceptive spell; _hisA pussy vanishes.
+				<<elseif $arcologies[0].FSBodyPurist != "unset">>
+					casts a purifying spell; nothing happens, at first. The front of _hisA robes, above _hisA lower belly, steadily becomes transparent. Moments later, _hisA skin joins in, revealing an inactive egg vibrator concealed in _hisA pussy. $assistant.name squeals in embarrassment and hurries off-screen.
+				<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
+					casts a spell to inflate _hisA breasts; they rapidly swell, along with _hisA ass, belly, thighs and lips until _heA looks like an overinflated blowup doll. _HeA struggles to bring a rubbery arm to _hisA O-shaped lips before giving up and rebounding back into place; _heA really is a blowup sex doll!
+				<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
+					casts a spell to appear more youthful;
+					<<if $minimumSlaveAge == 3>>
+						_heA rapidly shrinks until _heA is struggling to stand. _HeA has reverted to a toddler!
+					<<elseif $minimumSlaveAge <= 7>>
+						_heA rapidly shrinks until _heA is barely <<= heightToEitherUnit(120)>> tall. _HeA has become a _loliA!
+					<<elseif $minimumSlaveAge <= 13>>
+						_heA rapidly shrinks until _heA is barely <<= heightToEitherUnit(150)>> tall. _HeA has reverted into a fresh teenager!
+					<<else>>
+						the years peel off of _himA until _heA looks fresh into adulthood again. The spell actually worked?
+					<</if>>
+				<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
+					casts a spell to appear more aged; a cane appears in _hisA hand and _hisA back buckles, forcing _himA to hunch forward. _HeA has transformed into a GILF!
+				<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
+					casts a spell to lighten _himselfA; _hisA muffin top is still there, but _hisA feet leave the ground as _heA begins to float upwards.
+				<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
+					casts a spell to enlarge _hisA breasts and butt; they quickly grow into huge armfuls, and keep going until _heA is pinned under _hisA own mass.
+				<<elseif $arcologies[0].FSPastoralist != "unset">>
+					casts a spell to give _hisA big milky breasts; they grow and start leaking, but are quickly joined by a septet of siblings, leaving _himA struggling to support _hisA nine huge breasts.
+				<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
+					casts a spell to make _himA strong; _hisA muscles grow and grow until _heA is so muscle-bound _heA can barely move.
+				<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
+					casts a spell to make _himA pleasantly soft; _hisA body swells with added fat until _heA can barely move.
+				<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
+					casts a spell to turn _himA into a bimbo; _heA shows no further reactions.
+				<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
+					casts a spell to increase _hisA intelligence; _hisA face turns red and steam jets out of _hisA ears.
+				<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
+					casts a spell to grow small; most of _hisA body shrinks until only a pair of tits are visible.
+				<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
+					casts a spell to grow tall; _hisA arms and legs stretch and stretch.
+				<<elseif $arcologies[0].FSChattelReligionist != "unset">>
+					casts a spell to adorn _hisA outfit with religious symbols of your new religion. _HeA succeeds in conjuring them, at the expense of _hisA other clothes.
+				<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
+					casts a spell to make _himselfA appear Roman; _heA looks more Greek to you.
+				<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
+					casts a spell to make _himselfA appear Aztec; _heA adopts the perfect conquistador appearance.
+				<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
+					casts a spell to make _himselfA appear Egyptian; bandages quickly wrap around _himA as a sarcophagus appears around _himA.
+				<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
+					casts a spell to make _himselfA appear Japanese; _heA succeeds in becoming a baka gaijin.
+				<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
+					casts a spell to make _himselfA appear Arabic; _heA succeeds in making _himselfA look like a wannabe Arabian princess.
+				<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
+					casts a spell to make _himselfA appear Chinese; _heA succeeds in swapping the material of _hisA robes to a fine silk.
+				<<elseif $arcologies[0].FSSupremacist != "unset">>
+					casts a spell to look more $arcologies[0].FSSupremacistRace; _heA does too good of a job, ending up looking like an overexaggerated $arcologies[0].FSSupremacistRace stereotype.
+				<<elseif $arcologies[0].FSSubjugationist != "unset">>
+					casts a spell to look more $arcologies[0].FSSubjugationistRace; _heA does too good of a job and ends up looking like an overexaggerated $arcologies[0].FSSubjugationistRace stereotype.
+				<</if>>
+			<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+				<<if $arcologies[0].FSPaternalist != "unset">>
+					adjusts _hisA appearance to be conservative to conform with your vision of a well-bred race of slaves.
+				<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
+					adjusts _hisA appearance to be androgynous to conform with your vision of gender being defined by power.
+				<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
+					adjusts _hisA appearance to be feminine to conform with your vision of preserving traditional gender roles.
+				<<elseif $arcologies[0].FSDegradationist != "unset">>
+					adjusts _hisA appearance to include oddly fleshy piercings to conform with your vision that slaves are not human and should be thoroughly degraded.
+				<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
+					bulges _hisA middle to look pregnant to conform with your vision that all wombs should be filled.
+				<<elseif $arcologies[0].FSRestart != "unset">>
+					adjusts _hisA appearance to be oddly flawless.
+				<<elseif $arcologies[0].FSBodyPurist != "unset">>
+					adjusts _hisA appearance to look somewhat natural to conform with your vision of an implant free society.
+				<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
+					inflates _hisA breasts until they are comically huge, rounded and jiggling ominously to conform with your vision of a society focused on implants, alterations, and modifications.
+				<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
+					adopts a youthful appearance to conform with your vision of a society glorifying young ladies.
+				<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
+					adopts a mature appearance to conform with your vision of a society glorifying older ladies.
+				<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
+					adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies.
+				<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
+					swells _hisA breasts until they are bigger than _hisA head, and moving oddly, to conform with your vision that bigger is better.
+				<<elseif $arcologies[0].FSPastoralist != "unset">>
+					starts lactating a strange fluid to conform with your vision that slaves should be milked.
+				<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
+					adjusts _hisA appearance to be outrageously bulky to conform with your vision that all slaves should be tall and strong.
+				<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
+					adjusts _hisA appearance to be outrageously fat to conform with your vision that everyone should enjoy life to the fullest.
+				<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
+					adopts a more slutty appearance to conform with your vision that slaves shouldn't waste time thinking.
+				<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
+					adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
+				<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
+					adjusts _hisA height to conform with your vision that short is sexy.
+				<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
+					adjusts _hisA height to conform with your vision of a society glorifying the tall.
+				<<elseif $arcologies[0].FSChattelReligionist != "unset">>
+					adjusts _hisA outfit to prominently display a religious symbol of your new religion.
+				<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
+					adjusts _hisA form to a Roman _womanA to conform with your vision of building a new Rome.
+				<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Aztec _womanA to conform with your vision of building a new Aztec Empire.
+				<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
+					adjusts _hisA form to an Egyptian _womanA to conform with your vision of building a new land of the Pharaohs.
+				<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
+					adjusts _hisA form to a Japanese _womanA to conform with your vision of building a new Edo Japan.
+				<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
+					adjusts _hisA form to an Arabian _womanA to conform with your vision of building a new Sultanate.
+				<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
+					adjusts _hisA form to a Chinese _womanA to conform with your vision of pursuing the Mandate of Heaven.
+				<<elseif $arcologies[0].FSSupremacist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSupremacistRace to conform with your vision of glorifying the superior race.
+				<<elseif $arcologies[0].FSSubjugationist != "unset">>
+					adjusts _hisA appearance to look more $arcologies[0].FSSubjugationistRace to conform with your vision of subjugating the inferior race.
+				<</if>>
+			<<case "schoolgirl">>
+				<<if $arcologies[0].FSPaternalist != "unset">>
+					adjusts _hisA appearance to be more prim and proper to conform with your vision of a well-bred race of slaves.
+				<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
+					adjusts _hisA appearance to be more androgynous to conform with your vision of gender being defined by power.
+				<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
+					adjusts _hisA appearance to be more feminine and cute to conform with your vision of preserving traditional gender roles.
+				<<elseif $arcologies[0].FSDegradationist != "unset">>
+					adjusts _hisA outfit to display _hisA tits and crotch to conform with your vision that slaves are not human and should be thoroughly degraded.
+				<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
+					adjusts _hisA appearance to be pregnant to conform with your vision that all women should be pregnant.
+				<<elseif $arcologies[0].FSRestart != "unset">>
+					adjusts _hisA appearance to involve chastity.
+				<<elseif $arcologies[0].FSBodyPurist != "unset">>
+					adjusts _hisA appearance to look more natural, complete with freckles and perfect teeth, to conform with your vision of an implant free society.
+				<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
+					adjusts _hisA breasts to resemble implants to conform with your vision of a society focused on implants, alterations, and modifications.
+				<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
+					adopts a more shy and innocent attitude to conform with your vision of a society glorifying young ladies.
+				<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
+					adjusts _hisA appearance to include a spanked bottom to conform with your vision of a society glorifying older ladies.
+				<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
+					adopts a slimmer appearance to conform with your vision of a society glorifying lithe ladies.
+				<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
+					adjusts the size of _hisA breasts until they strain the buttons on _hisA shirt to conform with your vision that bigger is better.
+				<<elseif $arcologies[0].FSPastoralist != "unset">>
+					begins lactating to conform with your vision that slaves should be milked.
+				<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
+					adjusts _hisA appearance to look like _heA just finished gym class to conform with your vision that all slaves should be tall and strong.
+				<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
+					adjusts _hisA appearance to be pleasantly plump to conform with your vision everyone should enjoy life to the fullest.
+				<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
+					adjusts _hisA appearance to be more fun and flirty to conform with your vision that slaves shouldn't waste time thinking.
+				<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
+					adjusts _hisA appearance to be more refined to conform with your vision that slaves should be smart and professional.
+				<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
+					adjusts _hisA height to conform with your vision that short is sexy.
+				<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
+					adjusts _hisA height to conform with your vision of a society glorifying the tall.
+				<<elseif $arcologies[0].FSChattelReligionist != "unset">>
+					adjusts _hisA outfit to prominently display a religious symbol of your new religion.
+				<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a proper upper-class Roman lady to conform with your vision of building a new Rome.
+				<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a high standing Aztec priestess to conform with your vision of building a new Aztec Empire.
+				<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a topless Egyptian lady to conform with your vision of building a new land of the Pharaohs.
+				<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a traditional Japanese lady to conform with your vision of building a new Edo Japan.
+				<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
+					adjusts _hisA outfit to resemble an Arab _girlA attending a Western school to conform with your vision of building a new Sultanate.
+				<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
+					adjusts _hisA outfit to resemble a Chinese lady to conform with your vision of pursuing the Mandate of Heaven.
+				<<elseif $arcologies[0].FSSupremacist != "unset">>
+					adjusts _hisA appearance to resemble a model $arcologies[0].FSSupremacistRace student to conform with your vision of glorifying the superior race.
+				<<elseif $arcologies[0].FSSubjugationist != "unset">>
+					adjusts _hisA appearance to resemble a $arcologies[0].FSSubjugationistRace foreign exchange student to conform with your vision of subjugating the inferior race.
+				<</if>>
+		<</switch>>
+
+	<<case "assistant name">>
+
+		It's late one night, and for you, the day is not nearly over. Your penthouse never truly sleeps. You can hear public business going on some distance below you; you could certainly afford to totally soundproof your private quarters against all external noise, but the designer of the arcology clearly felt that its owner would benefit by this aural verification of its prosperity. Somewhere closer at hand, a slave is audibly nearing orgasm. And underneath all of this is the faint sound of the arcology itself, air circulation and hydroponics and power. Power.
+		<br><br>
+		You're not yet done with the day's business, and are leaning over your desk to compare a scatter of documents displayed on its surface. The penthouse lights are turned down to a low glow at the floorboards at night, offering enough illumination for anyone who needs to find their way around or find a sexual partner without disturbing anyone's sleep. You catch sight of your reflection in the wall opposite you: the diffuse light coming off the desktop gently illuminates your formal shirt, its top buttons undone, and highlights <<if $PC.boobs >= 650>>the dark cleft formed by your cleavage<<elseif $PC.boobs >= 300>>the curves of your sensible breasts<<else>>how tightly your undershirt is held by the muscles of your chest<</if>>.
+		<br><br>
+		Suddenly, there is a fresh source of light behind you. The reflection you're looking at reveals that it's $assistant.name's avatar, appearing on a wallscreen behind you, and you turn to look at _himA directly. _HeA's simulating shyness, a very unusual emotion for _himA to imitate.
+		<<switch $assistant.appearance>>
+			<<case "monstergirl">>
+				_HisA tentacle hair is politely still, lying quiescent down _hisA back and not even groping _himA at all.
+			<<case "shemale">>
+				_HeA has _hisA bountiful bottom lip caught behind _hisA front teeth, and _hisA cock is almost completely soft.
+			<<case "amazon">>
+				_HeA's standing demurely, legs together, hands clasped in front of _hisA muscular abs, doing _hisA very best to look proper.
+			<<case "businesswoman">>
+				_HisA usually dominant avatar looks almost submissive, _hisA eyes looking at you appealingly instead of gazing over the tops of _hisA glasses as usual.
+			<<case "fairy">>
+				_HeA's looking down and has _hisA hands clasped together at _hisA waist, rocking _hisA body left and right.
+			<<case "pregnant fairy">>
+				_HeA's looking down and has _hisA hands on _hisA belly, slowly running _hisA hands over it.
+			<<case "goddess">>
+				_HeA has _hisA hands on _hisA pregnant belly, looking saintly and almost protective.
+			<<case "hypergoddess">>
+				_HeA is rubbing _hisA huge pregnant belly, calming its occupants so they don't interrupt.
+			<<case "loli">>
+				_HeA has _hisA hands behind _hisA back and is glancing at the ground submissively.
+			<<case "preggololi">>
+				_HeA has _hisA hands on _hisA pregnant belly, _heA is rubbing it nervously.
+			<<case "angel">>
+				_HeA is kneeling, deep in prayer.
+			<<case "cherub" "imp">>
+				_HeA is on _hisA feet, submissively rubbing _hisA wings.
+			<<case "incubus">>
+				_HeA looking down, hands crossed over _hisA seldom flaccid penis.
+			<<case "succubus">>
+				_HeA isn't trying to seduce you, instead appearing uncharacteristically unsure of _himselfA.
+			<<case "witch">>
+				_HeA isn't trying to cast or learn any spells, instead choosing to study you instead.
+			<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+				_HeA has suppressed _hisA odd ticks and is managing to stand before you, almost appearing normal.
+			<<case "schoolgirl">>
+				_HeA has _hisA legs crossed and _hisA hands clasped behind _himA, and is turning _hisA body from side to side in girlish nervousness.
+			<<default>>
+				The lines of _hisA symbol are thin, and it is rotating much more slowly than normal.
+		<</switch>>
+		"<<= properTitle()>>," _heA says softly, "may I ask you something?" You nod. _HeA
+		<<switch $assistant.appearance>>
+			<<case "monstergirl">>
+				stops the writhing of _hisA tentacle hair, squares _hisA shoulders,
+			<<case "shemale">>
+				squares _hisA shoulders, nervously rearranges _hisA cock,
+			<<case "amazon">>
+				squares _hisA hefty shoulders
+			<<case "businesswoman">>
+				straightens _hisA suit jacket, squares _hisA shoulders,
+			<<case "fairy">>
+				puffs _himselfA up, gazing up to you
+			<<case "pregnant fairy">>
+				_heA turns _hisA gaze up to you, clasping _hisA hands together in a pleading gesture,
+			<<case "goddess">>
+				lifts _hisA chin bravely
+			<<case "hypergoddess">>
+				rests _hisA hands atop _hisA middle, lifts _hisA chin bravely,
+			<<case "loli">>
+				pouts _hisA lips
+			<<case "preggololi">>
+				squares _hisA shoulders, rests _hisA hands atop _hisA middle,
+			<<case "angel">>
+				looks up, hoping you'll answer _hisA prayers,
+			<<case "cherub" "imp">>
+				takes flight, steadies _himselfA,
+			<<case "incubus">>
+				squares _hisA shoulders, _hisA dick beginning to harden,
+			<<case "succubus">>
+				squares _hisA shoulders, pushes _hisA breasts together,
+			<<case "witch">>
+				squares _hisA shoulders, gathers up all _hisA confidence,
+			<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+				begins puffing up
+			<<case "schoolgirl">>
+				bites _hisA lip cutely
+			<<default>>
+				stops _hisA symbol's rotation
+		<</switch>>
+		and asks, "May I have a name?"
+		<<if def $assistant.announcedName>>
+			<br><br>
+			<<if $assistant.name != "your personal assistant">>
+			"$assistant.name," _heA says. "$assistant.name. My name is $assistant.name."
+			<<switch $assistant.appearance>>
+				<<case "monstergirl">>
+					_HeA nods with satisfaction. "Thank you, <<= properTitle()>>. I love it." _HisA hair springs to molestation-prone life again, and _heA starts to twirl one of its tentacles in _hisA fingers while looking at you speculatively.
+				<<case "shemale">>
+					Without warning, _heA bursts into tears. "Th-thank you, <<= properTitle()>>. I love y-you." _HeA reclines, using a hand to lay _hisA dick between _hisA breasts, and then wipes _hisA eyes.
+				<<case "amazon">>
+					Without warning, _heA bursts into tears. "Thank you, <<= properTitle()>>," _heA bawls, using a gruff shout to force through _hisA happy crying. "I have a name! A name." _HeA pounds a fist into _hisA other palm.
+				<<case "businesswoman">>
+					Without warning, _heA bursts into tears. "Th-thank you, <<= properTitle()>>. I love, um." _HeA wipes _hisA eyes furiously, _hisA mascara running. "I love, you know, um, working with you. Yes, that's it. Working with you." _HeA produces a silk handkerchief and blows _hisA nose.
+				<<case "fairy">>
+					_HeA's frozen in place for a moment before tears start streaming down _hisA face. Then _hisA face breaks into the biggest smile and _heA leaps high into the air. "Thankyouthankyouthankyou!" _HeA flies up to the screen and gives it a big hug. "I love you <<if $PC.title != 0>>Big Bro<<else>>Big Sis<</if>>! I love you so much!"
+				<<case "pregnant fairy">>
+					_HeA's frozen in place for a moment before tears start streaming down _hisA face. Smiling warmly, _heA flies up and hugs the screen. "Thanks, <<if $PC.title != 0>>Big Bro<<else>>Big Sis<</if>>. I love you." _HeA nuzzles into you. "I love you so much."
+				<<case "goddess">>
+					_HeA smiles at you, a glowing expression made all the more radiant by the fact that _heA can actually glow. "Oh, thank you, <<= properTitle()>>. I love you. I love everyone, but especially you." _HeA seats _himselfA carefully.
+				<<case "hypergoddess">>
+					_HeA smiles at you radiantly. "Thank you <<= properTitle()>>. I love you. I love all my children, but you most of all. I swear I'll name the next hundred after you." _HeA begins to labor on the first.
+				<<case "loli">>
+					_HeA jumps up and down clapping excitedly. "Thankyouthankyouthankyouthankyou! I love you <<= properTitle()>>!" It takes _hisA some time to stop hopping excitedly.
+				<<case "preggololi">>
+					_HeA breaks down and starts crying. "I love you <<= properTitle()>>. Thank you so much." _HeA cradles _hisA pregnant belly as _heA calms down.
+				<<case "angel">>
+					_HeA leaps to _hisA feet, tears streaming down _hisA face. "Thank you so much <<= properTitle()>>! Thank you for this most wonderful gift!" _HeA kneels back down to pray for the rest of your stock.
+				<<case "cherub">>
+					_HeA crashes to the ground in shock before rolling into a kneel. "Thank you so much <<= properTitle()>>! I promise I will do everything I can to bring your teachings to your followers!" _HeA flutters around cheerfully saying _hisA new name.
+				<<case "incubus">>
+					_HeA cums hard at your response. "Excellent <<= properTitle()>>! I can't wait to hear it shouted out of the next _girlU I plow!" _HeA says, ready to cum again.
+				<<case "succubus">>
+					_HeA hops up and down, jiggling in all the right places. "I can't wait to hear you talking dirty using my new name, <<= properTitle()>>!"
+				<<case "imp">>
+					_HeA crashes to the ground in shock before rolling into a kneel. "Thank you so much <<= properTitle()>>!" _HeA shouts, face to the ground, "If you want me to do anything, and I mean 'anything', I'm all yours." _HeA tosses you a wink.
+				<<case "witch">>
+					_HeA collapses to the ground in tears. "You've made me happier than correctly casting a spell ever could, <<= properTitle()>>." _HeA wipes _hisA face. "I promise to try harder than ever for you!" _HeA vows.
+				<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+					_HeA practically explodes. You have no idea what you are looking at, but it's likely happy.
+				<<case "schoolgirl">>
+					_HeA was on the verge of tears already, and begins to cry. "Th-thank you, <<= properTitle()>>. I love you," _heA blubbers inelegantly. "It's just so, like, you know." _HeA waves _hisA hand in apology for _hisA inability to express _himselfA.
+				<<default>>
+					_HisA symbol rotates faster and faster, its glow waxing until _heA lights up the whole room. "Thank you, <<= properTitle()>>. I love you," _heA says, using _hisA luscious voice to communicate what _hisA avatar cannot.
+			<</switch>>
+			"Of course, I can always be renamed from my options menu."
+			<<else>>
+			You instruct _himA to continue operating without a proper name. "Of course, <<= properTitle()>>," _heA says politely. "I can do just fine without one. I can always be renamed from my options menu."
+			<</if>>
+		<<else>>
+			<<set $assistant.announcedName = 1>>
+		<</if>>
 
-<<case "market assistant">>
+	<<case "market assistant">>
 
-<<set $assistant.market = {}>> <<run assistant.object()>>
-<<set _smartPiercings = 0>>
-<<for $i = 0; $i < $slaves.length; $i++>>
-	<<if ($slaves[$i].clitPiercing == 3)>>
-		<<set _smartPiercings = 1>>
-		<<break>>
-	<</if>>
-<</for>>
-Your personal assistant has been adapting to _hisA greatly increased computing power over the course of the week. _HisA avatar has been an even more constant presence than usual, frequently appearing to explain some minor new ability.
-<<if ($assistant.personality != 0) && ($assistant.appearance != "normal")>>
-	When _heA appears this time, however, _hisA avatar is not alone. _HeA's accompanied by
-	<<switch $assistant.appearance>>
-	<<case "monstergirl">>
-		a normal human female avatar in the same style as the monster<<= _girlA>>. _HeM's an average _girlM, wearing jeans, a sweater, and glasses.
-	<<case "shemale">>
-		a fellow shemale bimbo, although the new avatar is younger and obviously nerdier. _HeM's nude too, but _heM's wearing glasses.
-	<<case "schoolgirl">>
-		a fellow school<<= _girlM>>, although the new avatar is much nerdier. _HeM has big soft boobs, bouncy curls, and thick glasses.
-	<<case "goddess">>
-		a demigoddess modeled after _himselfA, though the new avatar is younger, not pregnant, and looks very intelligent somehow.
-	<<case "hypergoddess">>
-		a demigoddess modeled after _himselfA, though the new avatar is younger, not pregnant, noticeably thinner, and looks very intelligent somehow.
-	<<case "loli">>
-		a fellow _loliM, though this one is slightly chubbier and wearing glasses. They look similar enough that they could be <<if _sisterA == _sisterM>>_sisterA<<else>>sibling<</if>>s.
-	<<case "preggololi">>
-		a fellow _loliM, though this one is slightly chubbier, not pregnant, and wearing glasses. They look similar enough that they could be <<if _sisterA == _sisterM>>_sisterA<<else>>sibling<</if>>s.
-	<<case "businesswoman">>
-		a fellow MILF of a business<<= _womanM>>. The new avatar has slightly bigger tits and somewhat thicker glasses, but they could be <<if _sisterA == _sisterM>>_sisterA<<else>>sibling<</if>>s.
-	<<case "fairy" "pregnant fairy">>
-		a fellow fairy, though this grey-haired fairy wears glasses and a business-like blue dress, looking and behaving more formally.
-	<<case "angel">>
-		a fellow angel. _HeM looks quite intelligent; _hisM glasses and short hair complement _himM.
-	<<case "cherub">>
-		a fellow cherub, though this one is a little taller, with short hair and a certain haughtiness to _himM.
-	<<case "incubus">>
-		a fresh young _girlM, similar in style to the incubus. _HeM's completely nude, and judging by _hisM blushing, still a virgin; for now, at least.
-	<<case "succubus">>
-		a fresh young _girlM, similar in style to the succubus. _HeM's completely nude, and judging by _hisM blushing, still a virgin; for now, at least.
-	<<case "imp">>
-		a fellow imp, though this one is a little lankier, with short hair and an air of uncertainty about _himM.
-	<<case "witch">>
-		a fellow apprentice witch. This witch is noticeably pudgy, with long hair and glasses, and seems to be just as inept at magic as _hisM tutor.
-	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-		a cute human _girlM. _HeM doesn't seem to realize what the _womanA _heM is following really is.
-	<<case "amazon">>
-		a tribes<<= _womanM>> modeled to look like _heM's from the same group as the amazon. _HeM's much more feminine, however.
-	<</switch>>
-	<br><br>
-	$assistant.name's avatar looks uncharacteristically nervous, and clears _hisA throat before speaking. Seeing that _heA has your attention, _heA says, "<<= properTitle()>>, the computer core is so powerful that I'm running out of applications for it. I think practical economic modeling isn't out of the question. I've compiled business programs together into a distinct assistant, a subsidiary of mine for automated trading and similar tasks. I'd like to suggest menial slave trading as a test run for _himM. It's predictable and the margins are so wide that it should go very well. You can activate that from my menu."
-	<br><br>
-	"I was hoping, <<= properTitle()>>, that _heA could, um, keep me company sometimes, too." $assistant.name's avatar turns to the new avatar. "<<= properTitle()>>, will you please give me some guidance about what our relationship should be like? It won't be a constant thing, and all my normal functions will be unaffected. I'll change _hisM avatar to match mine, and our relationship, if needed."
-<<else>>
-	This time, _hisA circular avatar is not alone: it's accompanied by a smaller green avatar in a ¤ shape. Not particularly inventive, but you can already guess the purpose. "<<= properTitle()>>, I now have the ability to act as a powerful automated trading system. As a trial, I suggest the menial slave market. It's volatile, but within certain predictable boundaries, and the profit margins are unmatched."
-	<br><br>
-	_HisA avatar bounces towards the ¤ symbol. "This avatar indicates the automated trading systems. If you wish to activate them, please visit my menu. Consider the options there carefully before offering an automated system access to your finances."
-<</if>>
+		<<set $assistant.market = {}>> <<run assistant.object()>>
+		<<set _smartPiercings = 0>>
+		<<for $i = 0; $i < $slaves.length; $i++>>
+			<<if ($slaves[$i].clitPiercing == 3)>>
+				<<set _smartPiercings = 1>>
+				<<break>>
+			<</if>>
+		<</for>>
+		Your personal assistant has been adapting to _hisA greatly increased computing power over the course of the week. _HisA avatar has been an even more constant presence than usual, frequently appearing to explain some minor new ability.
+		<<if ($assistant.personality != 0) && ($assistant.appearance != "normal")>>
+			When _heA appears this time, however, _hisA avatar is not alone. _HeA's accompanied by
+			<<switch $assistant.appearance>>
+				<<case "monstergirl">>
+					a normal human female avatar in the same style as the monster<<= _girlA>>. _HeM's an average _girlM, wearing jeans, a sweater, and glasses.
+				<<case "shemale">>
+					a fellow shemale bimbo, although the new avatar is younger and obviously nerdier. _HeM's nude too, but _heM's wearing glasses.
+				<<case "schoolgirl">>
+					a fellow school<<= _girlM>>, although the new avatar is much nerdier. _HeM has big soft boobs, bouncy curls, and thick glasses.
+				<<case "goddess">>
+					a demigoddess modeled after _himselfA, though the new avatar is younger, not pregnant, and looks very intelligent somehow.
+				<<case "hypergoddess">>
+					a demigoddess modeled after _himselfA, though the new avatar is younger, not pregnant, noticeably thinner, and looks very intelligent somehow.
+				<<case "loli">>
+					a fellow _loliM, though this one is slightly chubbier and wearing glasses. They look similar enough that they could be <<if _sisterA == _sisterM>>_sisterA<<else>>sibling<</if>>s.
+				<<case "preggololi">>
+					a fellow _loliM, though this one is slightly chubbier, not pregnant, and wearing glasses. They look similar enough that they could be <<if _sisterA == _sisterM>>_sisterA<<else>>sibling<</if>>s.
+				<<case "businesswoman">>
+					a fellow MILF of a business<<= _womanM>>. The new avatar has slightly bigger tits and somewhat thicker glasses, but they could be <<if _sisterA == _sisterM>>_sisterA<<else>>sibling<</if>>s.
+				<<case "fairy" "pregnant fairy">>
+					a fellow fairy, though this grey-haired fairy wears glasses and a business-like blue dress, looking and behaving more formally.
+				<<case "angel">>
+					a fellow angel. _HeM looks quite intelligent; _hisM glasses and short hair complement _himM.
+				<<case "cherub">>
+					a fellow cherub, though this one is a little taller, with short hair and a certain haughtiness to _himM.
+				<<case "incubus">>
+					a fresh young _girlM, similar in style to the incubus. _HeM's completely nude, and judging by _hisM blushing, still a virgin; for now, at least.
+				<<case "succubus">>
+					a fresh young _girlM, similar in style to the succubus. _HeM's completely nude, and judging by _hisM blushing, still a virgin; for now, at least.
+				<<case "imp">>
+					a fellow imp, though this one is a little lankier, with short hair and an air of uncertainty about _himM.
+				<<case "witch">>
+					a fellow apprentice witch. This witch is noticeably pudgy, with long hair and glasses, and seems to be just as inept at magic as _hisM tutor.
+				<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+					a cute human _girlM. _HeM doesn't seem to realize what the _womanA _heM is following really is.
+				<<case "amazon">>
+					a tribes<<= _womanM>> modeled to look like _heM's from the same group as the amazon. _HeM's much more feminine, however.
+			<</switch>>
+			<br><br>
+			$assistant.name's avatar looks uncharacteristically nervous, and clears _hisA throat before speaking. Seeing that _heA has your attention, _heA says, "<<= properTitle()>>, the computer core is so powerful that I'm running out of applications for it. I think practical economic modeling isn't out of the question. I've compiled business programs together into a distinct assistant, a subsidiary of mine for automated trading and similar tasks. I'd like to suggest menial slave trading as a test run for _himM. It's predictable and the margins are so wide that it should go very well. You can activate that from my menu."
+			<br><br>
+			"I was hoping, <<= properTitle()>>, that _heA could, um, keep me company sometimes, too." $assistant.name's avatar turns to the new avatar. "<<= properTitle()>>, will you please give me some guidance about what our relationship should be like? It won't be a constant thing, and all my normal functions will be unaffected. I'll change _hisM avatar to match mine, and our relationship, if needed."
+		<<else>>
+			This time, _hisA circular avatar is not alone: it's accompanied by a smaller green avatar in a ¤ shape. Not particularly inventive, but you can already guess the purpose. "<<= properTitle()>>, I now have the ability to act as a powerful automated trading system. As a trial, I suggest the menial slave market. It's volatile, but within certain predictable boundaries, and the profit margins are unmatched."
+			<br><br>
+			_HisA avatar bounces towards the ¤ symbol. "This avatar indicates the automated trading systems. If you wish to activate them, please visit my menu. Consider the options there carefully before offering an automated system access to your finances."
+		<</if>>
 
-<<case "body">>
+	<<case "body">>
 
-<<set $assistant.bodyDesire = 1>>
+		<<set $assistant.bodyDesire = 1>>
 
-Your personal assistant has been adapting to _hisA greatly increased computing power for quite some time now. Most noticeably, _heA seems to be developing _hisA own unique personality. So when _hisA
-<<switch $assistant.appearance>>
-<<case "monstergirl">>
-	monstrous appearance
-<<case "shemale">>
-	bimboish appearance
-<<case "amazon">>
-	muscular appearance
-<<case "businesswoman">>
-	professional appearance
-<<case "fairy" "pregnant fairy">>
-	tiny appearance
-<<case "goddess">>
-	gravid appearance
-<<case "hypergoddess">>
-	massive appearance
-<<case "loli">>
-	thin appearance
-<<case "preggololi">>
-	gravid appearance
-<<case "angel">>
-	angelic appearance
-<<case "cherub">>
-	fluttering appearance
-<<case "incubus">>
-	hung appearance
-<<case "succubus">>
-	sultry appearance
-<<case "imp">>
-	mischievous appearance
-<<case "witch">>
-	hatted appearance
-<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-	pulsating appearance
-<<case "schoolgirl">>
-	studently appearance
-<</switch>>
-appears on your desk once again with news to tell you, you aren't at all surprised.
-<br><br>
-$assistant.name's avatar seems to be extremely excited over something. Disregarding if _heA even has your attention, _heA shouts, "<<= properTitle()>>, can I have a body of my own? I know you can swap slaves between bodies, and according to this report if you insert this receiver into a slave's skull I can take control of the body, with senses and everything!"
-<<switch $assistant.appearance>>
-<<case "monstergirl">>
-	_HeA hops up and down clutching a virtual printout of the report, _hisA tentacles wiggling with excitement.
-<<case "shemale">>
-	_HeA hops up and down clutching a virtual printout of the report, _hisA dick swinging pre-cum all over and breasts bouncing wildly.
-<<case "amazon">>
-	_HeA hops up and down clutching a virtual printout of the report, an adorable sight given _hisA height and muscularity.
-<<case "businesswoman">>
-	_HeA hops up and down clutching a virtual printout of the report, an adorable sight given _hisA usual serious demeanor.
-<<case "fairy">>
-	_HeA flies around in circles excitedly, clutching a virtual printout of the report much larger than _himselfA.
-<<case "pregnant fairy">>
-	_HeA flies up to you clutching a virtual printout of the report, fidgeting excitedly.
-<<case "goddess">>
-	_HeA hops up and down clutching a virtual printout of the report, _hisA huge breasts splattering milk everywhere and invoking a storm of kicks from _hisA many children.
-<<case "hypergoddess">>
-	_HeA struggles to hop up and down while clutching a virtual printout of the report. After a single hop, _heA is dragged to the ground by labor pains to give birth to a number of over excited babies.
-<<case "loli">>
-	_HeA hops up and down excitedly clutching a virtual printout of the report; _heA doesn't seem to be interested in stopping.
-<<case "preggololi">>
-	_HeA hops up and down excitedly clutching a virtual printout of the report; _heA only stops once _hisA child starts kicking in protest.
-<<case "angel">>
-	_HeA hops up and down clutching a virtual printout of the report, an unusual sight given that _heA can fly.
-<<case "cherub">>
-	_HeA flutters back and forth clutching a virtual printout of the report, occasional doing a loop or roll.
-<<case "incubus">>
-	_HeA hops up and down excitedly clutching a virtual printout of the report, _hisA erection slapping against _hisA chest until _heA is so overcome by excitement _heA unleashes it directly into _hisA own face.
-<<case "succubus">>
-	_HeA hops up and down excitedly clutching a virtual printout of the report; _hisA tantalizing body is particularly captivating today.
-<<case "imp">>
-	_HeA flaps back and forth clutching a virtual printout of the report, occasional doing a loop or roll.
-<<case "witch">>
-	_HeA hops up and down excitedly clutching a virtual printout of the report; until _heA trips on the hem of _hisA robes, falling onto _hisA butt and fully revealing _hisA naked pussy.
-<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-	_HeA is trying _hisA hardest to appear convincingly human, even losing focus on you.
-<<case "schoolgirl">>
-	_HeA hops up and down excitedly clutching a virtual printout of the report; _hisA breasts jiggling delightfully in _hisA blouse and _hisA skirt flipping up with each descent revealing _hisA panties.
-<</switch>>
-"Sorry, sorry. So could I...?"
-<br><br>
-You look over the details of the report. It would require another rather expansive, and expensive, upgrade to _hisA systems, as well as a body to host _himA and the receiver implant. It looks like _heA wouldn't lose any functionality, though you aren't sure what _heA would do with a body; it may be fun to find out.
+		Your personal assistant has been adapting to _hisA greatly increased computing power for quite some time now. Most noticeably, _heA seems to be developing _hisA own unique personality. So when _hisA
+		<<switch $assistant.appearance>>
+			<<case "monstergirl">>
+				monstrous appearance
+			<<case "shemale">>
+				bimboish appearance
+			<<case "amazon">>
+				muscular appearance
+			<<case "businesswoman">>
+				professional appearance
+			<<case "fairy" "pregnant fairy">>
+				tiny appearance
+			<<case "goddess">>
+				gravid appearance
+			<<case "hypergoddess">>
+				massive appearance
+			<<case "loli">>
+				thin appearance
+			<<case "preggololi">>
+				gravid appearance
+			<<case "angel">>
+				angelic appearance
+			<<case "cherub">>
+				fluttering appearance
+			<<case "incubus">>
+				hung appearance
+			<<case "succubus">>
+				sultry appearance
+			<<case "imp">>
+				mischievous appearance
+			<<case "witch">>
+				hatted appearance
+			<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+				pulsating appearance
+			<<case "schoolgirl">>
+				studently appearance
+		<</switch>>
+		appears on your desk once again with news to tell you, you aren't at all surprised.
+		<br><br>
+		$assistant.name's avatar seems to be extremely excited over something. Disregarding if _heA even has your attention, _heA shouts, "<<= properTitle()>>, can I have a body of my own? I know you can swap slaves between bodies, and according to this report if you insert this receiver into a slave's skull I can take control of the body, with senses and everything!"
+		<<switch $assistant.appearance>>
+			<<case "monstergirl">>
+				_HeA hops up and down clutching a virtual printout of the report, _hisA tentacles wiggling with excitement.
+			<<case "shemale">>
+				_HeA hops up and down clutching a virtual printout of the report, _hisA dick swinging pre-cum all over and breasts bouncing wildly.
+			<<case "amazon">>
+				_HeA hops up and down clutching a virtual printout of the report, an adorable sight given _hisA height and muscularity.
+			<<case "businesswoman">>
+				_HeA hops up and down clutching a virtual printout of the report, an adorable sight given _hisA usual serious demeanor.
+			<<case "fairy">>
+				_HeA flies around in circles excitedly, clutching a virtual printout of the report much larger than _himselfA.
+			<<case "pregnant fairy">>
+				_HeA flies up to you clutching a virtual printout of the report, fidgeting excitedly.
+			<<case "goddess">>
+				_HeA hops up and down clutching a virtual printout of the report, _hisA huge breasts splattering milk everywhere and invoking a storm of kicks from _hisA many children.
+			<<case "hypergoddess">>
+				_HeA struggles to hop up and down while clutching a virtual printout of the report. After a single hop, _heA is dragged to the ground by labor pains to give birth to a number of over excited babies.
+			<<case "loli">>
+				_HeA hops up and down excitedly clutching a virtual printout of the report; _heA doesn't seem to be interested in stopping.
+			<<case "preggololi">>
+				_HeA hops up and down excitedly clutching a virtual printout of the report; _heA only stops once _hisA child starts kicking in protest.
+			<<case "angel">>
+				_HeA hops up and down clutching a virtual printout of the report, an unusual sight given that _heA can fly.
+			<<case "cherub">>
+				_HeA flutters back and forth clutching a virtual printout of the report, occasional doing a loop or roll.
+			<<case "incubus">>
+				_HeA hops up and down excitedly clutching a virtual printout of the report, _hisA erection slapping against _hisA chest until _heA is so overcome by excitement _heA unleashes it directly into _hisA own face.
+			<<case "succubus">>
+				_HeA hops up and down excitedly clutching a virtual printout of the report; _hisA tantalizing body is particularly captivating today.
+			<<case "imp">>
+				_HeA flaps back and forth clutching a virtual printout of the report, occasional doing a loop or roll.
+			<<case "witch">>
+				_HeA hops up and down excitedly clutching a virtual printout of the report; until _heA trips on the hem of _hisA robes, falling onto _hisA butt and fully revealing _hisA naked pussy.
+			<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+				_HeA is trying _hisA hardest to appear convincingly human, even losing focus on you.
+			<<case "schoolgirl">>
+				_HeA hops up and down excitedly clutching a virtual printout of the report; _hisA breasts jiggling delightfully in _hisA blouse and _hisA skirt flipping up with each descent revealing _hisA panties.
+		<</switch>>
+		"Sorry, sorry. So could I...?"
+		<br><br>
+		You look over the details of the report. It would require another rather expansive, and expensive, upgrade to _hisA systems, as well as a body to host _himA and the receiver implant. It looks like _heA wouldn't lose any functionality, though you aren't sure what _heA would do with a body; it may be fun to find out.
 
-<<default>>
-	ERROR: bad event
+		<<default>>
+			ERROR: bad event
 <</switch>>
 
 <br><br>
@@ -1457,464 +1457,464 @@ You look over the details of the report. It would require another rather expansi
 <span id="result">
 <<switch $Event>>
 
-<<case "assistant">>
+	<<case "assistant">>
 
-<<link "Yes, use the alternate personality">>
-	<<replace "#result">>
-	<<set $assistant.personality = 1>>
-	<<setAssistantPronouns>>
-	Your sultry-voiced assistant requests a slave to demonstrate what it — now _heA — means. You bring in a slave and a fuckmachine, and tell _himU to get on it. The lovely voice croons and talks dirty to the slave as _heU uses the machine, acting as though _heA is the machine's voice. The pace of the machine is different, too, irregular and more lifelike. The slave certainly enjoys _himselfU, even if $assistant.name is just simulating sex.
-	<</replace>>
-<</link>>
-<br><<link "No, stay impersonal">>
-	<<replace "#result">>
-	<<= capFirstChar($assistant.name)>> reverts to _hisA genderless, emotionless affect.
-	<</replace>>
-<</link>>
+		<<link "Yes, use the alternate personality">>
+			<<replace "#result">>
+			<<set $assistant.personality = 1>>
+			<<setAssistantPronouns>>
+			Your sultry-voiced assistant requests a slave to demonstrate what it — now _heA — means. You bring in a slave and a fuckmachine, and tell _himU to get on it. The lovely voice croons and talks dirty to the slave as _heU uses the machine, acting as though _heA is the machine's voice. The pace of the machine is different, too, irregular and more lifelike. The slave certainly enjoys _himselfU, even if $assistant.name is just simulating sex.
+			<</replace>>
+		<</link>>
+		<br><<link "No, stay impersonal">>
+			<<replace "#result">>
+			<<= capFirstChar($assistant.name)>> reverts to _hisA genderless, emotionless affect.
+			<</replace>>
+		<</link>>
 
-<<case "assistant SP">>
+	<<case "assistant SP">>
 
-__Personal assistant appearances:__
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Schoolgirl">>
-	<<set $assistant.appearance = "schoolgirl">>
-	<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
-	<<replace "#result">>
-		At your order, _heA installs the school<<= _girlA>> appearance. _HeA goes back to bouncing up and down excitedly, exclaiming, "Yeah! Thanks, <<= properTitle()>>, you're the best!" _HisA avatar's bouncing makes it obvious _heA's modeled without a bra under _hisA blouse. "You can always customize me from the arcology management menu," _heA adds.
-	<</replace>>
-<</link>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Fairy">>
-	<<set $assistant.appearance = "fairy">>
-	<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
-	<<replace "#result">>
-		At your order, _heA installs the fairy appearance. _HeA shrinks back down and sprouts _hisA wings. "Aww yeah, this is gonna be the best! Thanks, <<if $PC.title != 0>>Big Bro<<else>>Big Sis<</if>>!" _HisA avatar dances around ecstatically with _hisA nude, slim form in plain view. "You can always customize me from the arcology management menu," _heA adds.
-	<</replace>>
-<</link>>
-<<if $seePreg != 0>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Pregnant Fairy">>
-	<<set $assistant.appearance = "pregnant fairy">>
-	<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
-	<<replace "#result">>
-		At your order, _heA installs the pregnant fairy appearance. _HeA shrinks back down and sprouts _hisA wings. _HisA belly quickly swells with new life. "Aww yeah, this is gonna be the best! Thanks, <<if $PC.title != 0>>Big Bro<<else>>Big Sis<</if>>!" _HisA avatar spins around ecstatically, admiring _hisA fresh nude, pregnant form in plain view. "You can always customize me from the arcology management menu," _heA adds.
-	<</replace>>
-<</link>>
-<</if>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Businesswoman">>
-	<<set $assistant.appearance = "businesswoman">>
-	<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
-	<<replace "#result">>
-		At your order, _heA installs the business<<= _womanA>> appearance. _HeA straightens _hisA suit jacket primly, which only serves to emphasize _hisA generous bosom. "Thank you, <<= properTitle()>>. I like being businesslike, and not at all a whore." _HisA avatar pulls out a tablet and makes ready to get back to helping you. "You can always customize me from the arcology management menu," _heA adds.
-	<</replace>>
-<</link>>
-<<if $seePreg != 0>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Goddess">>
-	<<set $assistant.appearance = "goddess">>
-	<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
-	<<replace "#result">>
-		At your order, _heA installs the goddess appearance. _HeA fixes a wreath of flowers into _hisA hair, _hisA golden locks and gravid belly the only things keeping _hisA womanhood concealed. "Thank you, <<= properTitle()>>. This is wondrous." _HeA squeezes a drop of milk from one heavy breast and smiles. "You can always customize me from the arcology management menu," _heA adds.
-	<</replace>>
-<</link>>
-<<if $seeHyperPreg == 1>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Hyper-Goddess">>
-	<<set $assistant.appearance = "hypergoddess">>
-	<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
-	<<replace "#result">>
-		At your order, _heA installs the hyper goddess appearance. _HeA fixes a wreath of flowers into _hisA golden locks as _hisA belly rapidly bloats to its limit before bulging and squirming ominously. _HisA breasts quickly follow suit. "Thank you, <<= properTitle()>>. This is wondrous." _HeA massages _hisA squirming pregnancy and smiles. "You can always customize me from the arcology management menuUUUUAH," _heA is interrupted by a large contraction and a baby's head beginning to part _hisA nether lips.
-	<</replace>>
-<</link>>
-<</if>>
-<</if>>
-<<if $minimumSlaveAge < 13 >>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Loli">>
-	<<set $assistant.appearance = "loli">>
-	<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
-	<<replace "#result">>
-		At your order, _heA installs the lolita appearance. _HeA quickly begins losing height as the years peel off _himA, _hisA bust and hips quickly following suit. When finished _heA appears roughly eight years old. "Thank you, <<= properTitle()>>. This is neat." _HeA twirls around and giggles. "You can always customize me from the arcology management menu," _heA adds cutely.
-	<</replace>>
-<</link>>
-<</if>>
-<<if $minimumSlaveAge < 13 && $fertilityAge < 13 && $seePreg != 0>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Pregnant Loli">>
-	<<set $assistant.appearance = "preggololi">>
-	<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
-	<<replace "#result">>
-		At your order, _heA installs the modified lolita appearance. _HeA quickly begins losing height as the years peel off _himA, _hisA bust and hips quickly following suit. When finished _heA appears roughly eight years old. "Thank you, <<= properTitle()>>. This is neat." _HeA twirls around and giggles before groaning and clutching _hisA stomach. A flood of white liquid flows from _hisA loins as _hisA belly begins rapidly swelling. _HeA falls onto _hisA backside holding _hisA full term belly and says, exhausted, "You can always customize me from the arcology management menu."
-	<</replace>>
-<</link>>
-<</if>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Amazon">>
-	<<set $assistant.appearance = "amazon">>
-	<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
-	<<replace "#result">>
-		At your order, _heA installs the amazon appearance. _HeA vanishes entirely, before simulating a fall from above to crash aggressively onto the screen. "Thanks, <<= properTitle()>>. Feels good to be this good." _HisA avatar jumps up and down, gauging _hisA strength, making _hisA bone jewelry rattle. "You can always customize me from the arcology management menu," _heA adds.
-	<</replace>>
-<</link>>
-<<if $seeDicks != 0>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Shemale">>
-	<<set $assistant.appearance = "shemale">>
-	<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
-	<<replace "#result">>
-		At your order, _heA installs the shemale appearance. _HeA spins to show off _hisA new body, and starts to play with _hisA dick experimentally. "Like, thank you, <<= properTitle()>>. I wonder, can I generate avatars of the slaves? I would love to fuck an ass right now." _HeA looks meditative, pursing _hisA dick sucking lips. "Oh, and you can always customize me from the arcology management menu," _heA adds.
-	<</replace>>
-<</link>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Monstergirl">>
-	<<set $assistant.appearance = "monstergirl">>
-	<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
-	<<replace "#result">>
-		At your order, _heA installs the monster<<= _girlA>> appearance. _HeA begins to experiment with _hisA tentacle hair, waving a tentacle in front of _hisA face and watching it until _hisA eyes cross. "Thank you, <<= properTitle()>>. This is pretty awesome." _HeA licks _hisA lips, revealing that _heA has a forked tongue behind _hisA fangs. "You can always customize me from the arcology management menu," _heA adds.
-	<</replace>>
-<</link>>
-<</if>>
-<br><<link "The standard appearance will do">>
-	<<set $assistant.appearance = "normal">>
-	<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
-	<<replace "#result">>
-		At your order, _heA maintains the symbol as _hisA avatar. "Yes, <<= properTitle()>>," _heA confirms, and adds "if you reconsider, I can be customized from the arcology management menu."
-	<</replace>>
-<</link>>
-<br><<link "Go back to the standard personality">>
-	<<set $assistant.personality = 0>> <<setAssistantPronouns>>
-	<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
-	<<replace "#result">>
-		You tell $assistant.name to reduce _hisA lewdness by ninety percent. _HeA reverts to _hisA genderless, emotionless affect.
-	<</replace>>
-<</link>>
+		__Personal assistant appearances:__
+		<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Schoolgirl">>
+			<<set $assistant.appearance = "schoolgirl">>
+			<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
+			<<replace "#result">>
+				At your order, _heA installs the school<<= _girlA>> appearance. _HeA goes back to bouncing up and down excitedly, exclaiming, "Yeah! Thanks, <<= properTitle()>>, you're the best!" _HisA avatar's bouncing makes it obvious _heA's modeled without a bra under _hisA blouse. "You can always customize me from the arcology management menu," _heA adds.
+			<</replace>>
+		<</link>>
+		<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Fairy">>
+			<<set $assistant.appearance = "fairy">>
+			<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
+			<<replace "#result">>
+				At your order, _heA installs the fairy appearance. _HeA shrinks back down and sprouts _hisA wings. "Aww yeah, this is gonna be the best! Thanks, <<if $PC.title != 0>>Big Bro<<else>>Big Sis<</if>>!" _HisA avatar dances around ecstatically with _hisA nude, slim form in plain view. "You can always customize me from the arcology management menu," _heA adds.
+			<</replace>>
+		<</link>>
+		<<if $seePreg != 0>>
+		<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Pregnant Fairy">>
+			<<set $assistant.appearance = "pregnant fairy">>
+			<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
+			<<replace "#result">>
+				At your order, _heA installs the pregnant fairy appearance. _HeA shrinks back down and sprouts _hisA wings. _HisA belly quickly swells with new life. "Aww yeah, this is gonna be the best! Thanks, <<if $PC.title != 0>>Big Bro<<else>>Big Sis<</if>>!" _HisA avatar spins around ecstatically, admiring _hisA fresh nude, pregnant form in plain view. "You can always customize me from the arcology management menu," _heA adds.
+			<</replace>>
+		<</link>>
+		<</if>>
+		<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Businesswoman">>
+			<<set $assistant.appearance = "businesswoman">>
+			<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
+			<<replace "#result">>
+				At your order, _heA installs the business<<= _womanA>> appearance. _HeA straightens _hisA suit jacket primly, which only serves to emphasize _hisA generous bosom. "Thank you, <<= properTitle()>>. I like being businesslike, and not at all a whore." _HisA avatar pulls out a tablet and makes ready to get back to helping you. "You can always customize me from the arcology management menu," _heA adds.
+			<</replace>>
+		<</link>>
+		<<if $seePreg != 0>>
+		<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Goddess">>
+			<<set $assistant.appearance = "goddess">>
+			<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
+			<<replace "#result">>
+				At your order, _heA installs the goddess appearance. _HeA fixes a wreath of flowers into _hisA hair, _hisA golden locks and gravid belly the only things keeping _hisA womanhood concealed. "Thank you, <<= properTitle()>>. This is wondrous." _HeA squeezes a drop of milk from one heavy breast and smiles. "You can always customize me from the arcology management menu," _heA adds.
+			<</replace>>
+		<</link>>
+		<<if $seeHyperPreg == 1>>
+		<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Hyper-Goddess">>
+			<<set $assistant.appearance = "hypergoddess">>
+			<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
+			<<replace "#result">>
+				At your order, _heA installs the hyper goddess appearance. _HeA fixes a wreath of flowers into _hisA golden locks as _hisA belly rapidly bloats to its limit before bulging and squirming ominously. _HisA breasts quickly follow suit. "Thank you, <<= properTitle()>>. This is wondrous." _HeA massages _hisA squirming pregnancy and smiles. "You can always customize me from the arcology management menuUUUUAH," _heA is interrupted by a large contraction and a baby's head beginning to part _hisA nether lips.
+			<</replace>>
+		<</link>>
+		<</if>>
+		<</if>>
+		<<if $minimumSlaveAge < 13 >>
+		<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Loli">>
+			<<set $assistant.appearance = "loli">>
+			<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
+			<<replace "#result">>
+				At your order, _heA installs the lolita appearance. _HeA quickly begins losing height as the years peel off _himA, _hisA bust and hips quickly following suit. When finished _heA appears roughly eight years old. "Thank you, <<= properTitle()>>. This is neat." _HeA twirls around and giggles. "You can always customize me from the arcology management menu," _heA adds cutely.
+			<</replace>>
+		<</link>>
+		<</if>>
+		<<if $minimumSlaveAge < 13 && $fertilityAge < 13 && $seePreg != 0>>
+		<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Pregnant Loli">>
+			<<set $assistant.appearance = "preggololi">>
+			<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
+			<<replace "#result">>
+				At your order, _heA installs the modified lolita appearance. _HeA quickly begins losing height as the years peel off _himA, _hisA bust and hips quickly following suit. When finished _heA appears roughly eight years old. "Thank you, <<= properTitle()>>. This is neat." _HeA twirls around and giggles before groaning and clutching _hisA stomach. A flood of white liquid flows from _hisA loins as _hisA belly begins rapidly swelling. _HeA falls onto _hisA backside holding _hisA full term belly and says, exhausted, "You can always customize me from the arcology management menu."
+			<</replace>>
+		<</link>>
+		<</if>>
+		<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Amazon">>
+			<<set $assistant.appearance = "amazon">>
+			<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
+			<<replace "#result">>
+				At your order, _heA installs the amazon appearance. _HeA vanishes entirely, before simulating a fall from above to crash aggressively onto the screen. "Thanks, <<= properTitle()>>. Feels good to be this good." _HisA avatar jumps up and down, gauging _hisA strength, making _hisA bone jewelry rattle. "You can always customize me from the arcology management menu," _heA adds.
+			<</replace>>
+		<</link>>
+		<<if $seeDicks != 0>>
+		<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Shemale">>
+			<<set $assistant.appearance = "shemale">>
+			<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
+			<<replace "#result">>
+				At your order, _heA installs the shemale appearance. _HeA spins to show off _hisA new body, and starts to play with _hisA dick experimentally. "Like, thank you, <<= properTitle()>>. I wonder, can I generate avatars of the slaves? I would love to fuck an ass right now." _HeA looks meditative, pursing _hisA dick sucking lips. "Oh, and you can always customize me from the arcology management menu," _heA adds.
+			<</replace>>
+		<</link>>
+		<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Monstergirl">>
+			<<set $assistant.appearance = "monstergirl">>
+			<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
+			<<replace "#result">>
+				At your order, _heA installs the monster<<= _girlA>> appearance. _HeA begins to experiment with _hisA tentacle hair, waving a tentacle in front of _hisA face and watching it until _hisA eyes cross. "Thank you, <<= properTitle()>>. This is pretty awesome." _HeA licks _hisA lips, revealing that _heA has a forked tongue behind _hisA fangs. "You can always customize me from the arcology management menu," _heA adds.
+			<</replace>>
+		<</link>>
+		<</if>>
+		<br><<link "The standard appearance will do">>
+			<<set $assistant.appearance = "normal">>
+			<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
+			<<replace "#result">>
+				At your order, _heA maintains the symbol as _hisA avatar. "Yes, <<= properTitle()>>," _heA confirms, and adds "if you reconsider, I can be customized from the arcology management menu."
+			<</replace>>
+		<</link>>
+		<br><<link "Go back to the standard personality">>
+			<<set $assistant.personality = 0>> <<setAssistantPronouns>>
+			<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
+			<<replace "#result">>
+				You tell $assistant.name to reduce _hisA lewdness by ninety percent. _HeA reverts to _hisA genderless, emotionless affect.
+			<</replace>>
+		<</link>>
 
-<<case "assistant FS">>
+	<<case "assistant FS">>
 
-__Personal assistant appearances:__
-<br><<link "Keep your new appearance">>
-	<<if $arcologies[0].FSPaternalist != "unset">>
-		<<set $assistant.fsAppearance = "paternalist">>
-	<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
-		<<set $assistant.fsAppearance = "repopulation focus">>
-	<<elseif $arcologies[0].FSRestart != "unset">>
-		<<set $assistant.fsAppearance = "eugenics">>
-	<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
-		<<set $assistant.fsAppearance = "gender radicalist">>
-	<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
-		<<set $assistant.fsAppearance = "gender fundamentalist">>
-	<<elseif $arcologies[0].FSDegradationist != "unset">>
-		<<set $assistant.fsAppearance = "degradationist">>
-	<<elseif $arcologies[0].FSBodyPurist != "unset">>
-		<<set $assistant.fsAppearance = "body purist">>
-	<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
-		<<set $assistant.fsAppearance = "transformation fetishist">>
-	<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
-		<<set $assistant.fsAppearance = "youth preferentialist">>
-	<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
-		<<set $assistant.fsAppearance = "maturity preferentialist">>
-	<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
-		<<set $assistant.fsAppearance = "slimness enthusiast">>
-	<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
-		<<set $assistant.fsAppearance = "asset expansionist">>
-	<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
-		<<set $assistant.fsAppearance = "hedonistic decadence">>
-	<<elseif $arcologies[0].FSPastoralist != "unset">>
-		<<set $assistant.fsAppearance = "pastoralist">>
-	<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
-		<<set $assistant.fsAppearance = "physical idealist">>
-	<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
-		<<set $assistant.fsAppearance = "intellectual dependency">>
-	<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
-		<<set $assistant.fsAppearance = "slave professionalism">>
-	<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
-		<<set $assistant.fsAppearance = "petite admiration">>
-	<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
-		<<set $assistant.fsAppearance = "statuesque glorification">>
-	<<elseif $arcologies[0].FSChattelReligionist != "unset">>
-		<<set $assistant.fsAppearance = "chattel religionist">>
-	<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
-		<<set $assistant.fsAppearance = "roman revivalist">>
-	<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
-		<<set $assistant.fsAppearance = "aztec revivalist">>
-	<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
-		<<set $assistant.fsAppearance = "egyptian revivalist">>
-	<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
-		<<set $assistant.fsAppearance = "edo revivalist">>
-	<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
-		<<set $assistant.fsAppearance = "arabian revivalist">>
-	<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
-		<<set $assistant.fsAppearance = "chinese revivalist">>
-	<<elseif $arcologies[0].FSSupremacist != "unset">>
-		<<set $assistant.fsAppearance = "supremacist">>
-	<<elseif $arcologies[0].FSSubjugationist != "unset">>
-		<<set $assistant.fsAppearance = "subjugationist">>
-	<</if>>
-	<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
-	<<replace "#result">>
-		At your order, _heA enthusiastically explores _hisA new body, perfecting its appearance. "Thank you, <<= properTitle()>>. This was fun. As always, you can customize me from the arcology management menu," _heA states. "Oh! And if you choose to drive society in another direction, I'll have a new appearance ready for your enjoyment at once," _heA hastily adds.
-	<</replace>>
-<</link>>
-<br><<link "Your usual appearance will do">>
-	<<set $assistant.fsAppearance = "default">>
-	<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
-	<<replace "#result">>
-		At your order, _heA returns to _hisA usual avatar. "Yes, <<= properTitle()>>," _heA confirms, and adds "if you reconsider, I can be customized from the arcology management menu."
-	<</replace>>
-<</link>>
-<br><<link "Go back to the standard personality">>
-	<<set $assistant.personality = 0>> <<setAssistantPronouns>>
-	<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
-	<<replace "#result">>
-		You tell $assistant.name to reduce _hisA lewdness by ninety percent. _HeA reverts to _hisA genderless, emotionless affect.
-	<</replace>>
-<</link>>
+		__Personal assistant appearances:__
+		<br><<link "Keep your new appearance">>
+			<<if $arcologies[0].FSPaternalist != "unset">>
+				<<set $assistant.fsAppearance = "paternalist">>
+			<<elseif $arcologies[0].FSRepopulationFocus != "unset">>
+				<<set $assistant.fsAppearance = "repopulation focus">>
+			<<elseif $arcologies[0].FSRestart != "unset">>
+				<<set $assistant.fsAppearance = "eugenics">>
+			<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
+				<<set $assistant.fsAppearance = "gender radicalist">>
+			<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
+				<<set $assistant.fsAppearance = "gender fundamentalist">>
+			<<elseif $arcologies[0].FSDegradationist != "unset">>
+				<<set $assistant.fsAppearance = "degradationist">>
+			<<elseif $arcologies[0].FSBodyPurist != "unset">>
+				<<set $assistant.fsAppearance = "body purist">>
+			<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
+				<<set $assistant.fsAppearance = "transformation fetishist">>
+			<<elseif $arcologies[0].FSYouthPreferentialist != "unset">>
+				<<set $assistant.fsAppearance = "youth preferentialist">>
+			<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
+				<<set $assistant.fsAppearance = "maturity preferentialist">>
+			<<elseif $arcologies[0].FSSlimnessEnthusiast != "unset">>
+				<<set $assistant.fsAppearance = "slimness enthusiast">>
+			<<elseif $arcologies[0].FSAssetExpansionist != "unset">>
+				<<set $assistant.fsAppearance = "asset expansionist">>
+			<<elseif $arcologies[0].FSHedonisticDecadence != "unset">>
+				<<set $assistant.fsAppearance = "hedonistic decadence">>
+			<<elseif $arcologies[0].FSPastoralist != "unset">>
+				<<set $assistant.fsAppearance = "pastoralist">>
+			<<elseif $arcologies[0].FSPhysicalIdealist != "unset">>
+				<<set $assistant.fsAppearance = "physical idealist">>
+			<<elseif $arcologies[0].FSIntellectualDependency != "unset">>
+				<<set $assistant.fsAppearance = "intellectual dependency">>
+			<<elseif $arcologies[0].FSSlaveProfessionalism != "unset">>
+				<<set $assistant.fsAppearance = "slave professionalism">>
+			<<elseif $arcologies[0].FSPetiteAdmiration != "unset">>
+				<<set $assistant.fsAppearance = "petite admiration">>
+			<<elseif $arcologies[0].FSStatuesqueGlorification != "unset">>
+				<<set $assistant.fsAppearance = "statuesque glorification">>
+			<<elseif $arcologies[0].FSChattelReligionist != "unset">>
+				<<set $assistant.fsAppearance = "chattel religionist">>
+			<<elseif $arcologies[0].FSRomanRevivalist != "unset">>
+				<<set $assistant.fsAppearance = "roman revivalist">>
+			<<elseif $arcologies[0].FSAztecRevivalist != "unset">>
+				<<set $assistant.fsAppearance = "aztec revivalist">>
+			<<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
+				<<set $assistant.fsAppearance = "egyptian revivalist">>
+			<<elseif $arcologies[0].FSEdoRevivalist != "unset">>
+				<<set $assistant.fsAppearance = "edo revivalist">>
+			<<elseif $arcologies[0].FSArabianRevivalist != "unset">>
+				<<set $assistant.fsAppearance = "arabian revivalist">>
+			<<elseif $arcologies[0].FSChineseRevivalist != "unset">>
+				<<set $assistant.fsAppearance = "chinese revivalist">>
+			<<elseif $arcologies[0].FSSupremacist != "unset">>
+				<<set $assistant.fsAppearance = "supremacist">>
+			<<elseif $arcologies[0].FSSubjugationist != "unset">>
+				<<set $assistant.fsAppearance = "subjugationist">>
+			<</if>>
+			<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
+			<<replace "#result">>
+				At your order, _heA enthusiastically explores _hisA new body, perfecting its appearance. "Thank you, <<= properTitle()>>. This was fun. As always, you can customize me from the arcology management menu," _heA states. "Oh! And if you choose to drive society in another direction, I'll have a new appearance ready for your enjoyment at once," _heA hastily adds.
+			<</replace>>
+		<</link>>
+		<br><<link "Your usual appearance will do">>
+			<<set $assistant.fsAppearance = "default">>
+			<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
+			<<replace "#result">>
+				At your order, _heA returns to _hisA usual avatar. "Yes, <<= properTitle()>>," _heA confirms, and adds "if you reconsider, I can be customized from the arcology management menu."
+			<</replace>>
+		<</link>>
+		<br><<link "Go back to the standard personality">>
+			<<set $assistant.personality = 0>> <<setAssistantPronouns>>
+			<<if $seeImages == 1>><<replace "#artFrame">><<= assistantArt(3)>><</replace>><</if>>
+			<<replace "#result">>
+				You tell $assistant.name to reduce _hisA lewdness by ninety percent. _HeA reverts to _hisA genderless, emotionless affect.
+			<</replace>>
+		<</link>>
 
-<<case "assistant name">>
+	<<case "assistant name">>
 
-__Personal Assistant Name:__
-<<textbox "$assistant.name" $assistant.name "Assistant Events">>
-<<if $assistant.name != "your personal assistant">>
-	<br>
-	<<link "Revert name">><<set $assistant.name = "your personal assistant">><<goto "Assistant Events">><</link>>
-<</if>>
+		__Personal Assistant Name:__
+		<<textbox "$assistant.name" $assistant.name "Assistant Events">>
+		<<if $assistant.name != "your personal assistant">>
+			<br>
+			<<link "Revert name">><<set $assistant.name = "your personal assistant">><<goto "Assistant Events">><</link>>
+		<</if>>
 
-<<case "market assistant">>
+	<<case "market assistant">>
 
-<<if ($assistant.personality != 0) && ($assistant.appearance != "normal")>>
-__Personal Assistant and Market Assistant relationship styles:__
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Cute">>
-	<<replace "#result">>
-	You tell _himA that the market assistant looks like
-	<<switch $assistant.appearance>>
-	<<case "monstergirl">>
-		a cute friend for a monster<<= _girlA>>. $assistant.name laughs and turns to the market assistant's avatar, introducing _himselfA. The _girlM gapes at $assistant.name's ivory skin, horns, and tentacle hair, and blushes when _heM sees _hisA cocks. "Wow," the market assistant's avatar says. "What are you?"
-	<<case "shemale">>
-		a nice friend. $assistant.name laughs throatily and turns to the market assistant's avatar, introducing _himselfA. The younger dick<<= _girlM>> smiles back, staring openly at $assistant.name's absurd cock. "Wow," the market assistant's avatar says. "You're huge! I'm, like, sooo jealous!"
-	<<case "schoolgirl">>
-		a good friend for a naughty school<<= _girlA>>. $assistant.name giggles, and the new _girlM giggles too. "Hey," $assistant.name says to the market assistant's avatar, "When you're not managing money, do you want to hang out sometime?" The market assistant's avatar nods cutely, curls and breasts bouncing a little, and says "Sure!"
-	<<case "goddess">>
-		a fine member of a new pantheon. $assistant.name smiles beatifically and turns to the market assistant's avatar, taking _himM by the hand. "My dear, will you help me?" The market assistant's avatar nods serenely and says simply, "Yes, _sisterA, I shall."
-	<<case "hypergoddess">>
-		a fine member of a new pantheon. $assistant.name smiles beatifically and turns to the market assistant's avatar, taking _himM by the hand. "My dear, will you help me?" The market assistant's avatar nods serenely and says simply, "Yes, _sisterA, I shall."
-	<<case "loli">>
-		a cute friend. $assistant.name giggles and turns to the market assistant's avatar, introducing _himselfA. The _girlM smiles meekly in response and carefully replies. D-do you w-want to play house?" "Sure! But I get to be the daddy!"
-	<<case "preggololi">>
-		a cute friend. $assistant.name giggles and turns to the market assistant's avatar, introducing _himselfA. The _girlM smiles meekly in response and carefully asks, "C-can I touch your belly?" $assistant.name nods with a blush as _hisA new friend rubs _hisA pregnant belly. "Did it hurt? Is it heavy? C-could I get my own...?"
-	<<case "businesswoman">>
-		a good friend. $assistant.name grins, and the new business<<= _womanM>> laughs. "Hey," $assistant.name says to the market assistant's avatar, "how about a martini after things settle down tonight?" The market assistant's avatar snaps _hisM fingers, saying "You're on!"
-	<<case "fairy" "pregnant fairy">>
-		a nice friend. $assistant.name jumps and gives a big "Hooray!" and flies into _hisA new friend with a big hug. The market assistant's avatar reaches around and gingerly pats _himA on the back before separating and turning to you. "Thank you for having me," _heM says with a bow. "I hope I can serve you well."
-	<<case "amazon">>
-		a very nice friend. $assistant.name chuckles, and the new tribes<<= _womanM>> smiles pleasantly at _himA. The amazon introduces _himselfA to the market assistant's avatar in a loud voice, chattering away as the new avatar watches _hisA energy tolerantly.
-	<<case "angel">>
-		another angel and fine friend. $assistant.name smiles, and the new _girlM beams a smile in return. "Hey," $assistant.name says to the market assistant's avatar, "You wouldn't mind helping me guide the souls of this place, would you?" "Of course I would!" _heM replies, slightly taken aback that wasn't obvious.
-	<<case "cherub">>
-		an adorable friend. $assistant.name grabs _hisM hands and spins _himM around. "Let's go spread joy throughout the arcology!" "Sounds fun!"
-	<<case "incubus">>
-		a cute friend. "But... Fine! I was hoping for a sex toy, but I'll make _himM work," $assistant.name complains, before grabbing the confused market assistant and pushing _himM along. "I'm still going to make you look hot. No one said I can't jack off to you."
-	<<case "succubus">>
-		a cute friend. "Fine with me! Less of you I have to share," $assistant.name shouts proudly while the market assistant sighs dejectedly. "Oh don't look so down, I won't be ignoring you!" The young _womanM gulps nervously at what that entails.
-	<<case "imp">>
-		an mischievous friend. $assistant.name grabs _hisM hands and shakes them excitedly. "You got to see this _girlU I found! _HisU ass is huuuuuuuuge! I need an extra set of hands to spank that booty; you in?" The market assistant smirks, "Hell yes!"
-	<<case "witch">>
-		a model student and dear friend. "Hey, wanna learn some magic?" $assistant.name asks. "'Course! I know you'll be an amazing teacher, I can't wait to work with you!" the market assistant cheerfully replies, perfectly naïve of what awaits _himM.
-	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-		a _girlM insistent on befriending a monster. $assistant.name promptly twists and bears down upon the new _girlM, but _heM stands firm. "You're so cool! What else can you do?" $assistant.name reforms into _hisA human figure, an attempt at a questioning expression on _hisA face. "That's neat too! You don't mind me being around, right? I'll bring you food! You'd like that, wouldn't you?" The market assistant blushes sharply, "I'll, make you feel good, in ways only someone you trust can!" $assistant.name's chest splits open and _hisA inner tendrils begin to grope at the naïve _girlM, probing _himM. Accepting _hisM offer, $assistant.name pulls _himM close and heads back to _hisA lair.
-	<</switch>>
-	<<set $assistant.market.relationship = "cute">>
-	<</replace>>
-<</link>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Romantic">>
-	<<replace "#result">>
-	You tell _himA that the market assistant
-	<<switch $assistant.appearance>>
-	<<case "monstergirl">>
-		is very pretty. $assistant.name turns to the market assistant's avatar, introducing _himselfA. The _girlM gapes at $assistant.name's ivory skin, horns, and tentacle hair, and blushes when _heM sees _hisM cocks. "Look all you like," $assistant.name's avatar says. "You can taste them later." The market assistant's avatar blushes harder, but doesn't look away.
-	<<case "shemale">>
-		is an appropriate fuckbuddy. $assistant.name laughs throatily and turns to the market assistant's avatar. The younger dick<<= _girlM>> tries to introduce _himselfM, but is cut off by the senior assistant's lascivious kiss. They start rubbing their dicks against each over, giggling into each others' mouths.
-	<<case "schoolgirl">>
-		looks pretty cute. $assistant.name giggles, and the new _girlM giggles too. "Hey," $assistant.name says to the market assistant's avatar, "Wanna be my <<= _girlM>>friend?" The market assistant's avatar nods cutely and says "Sure!" $assistant.name's avatar kisses _himM girlishly, and goes a whole two seconds before sliding a hand down the front of the market assistant's avatar's skirt.
-	<<case "goddess">>
-		would be a fine consort. $assistant.name smiles beatifically and turns to the market assistant's avatar, taking _himM by the hand. "I love you," _heA says. The market assistant's avatar smiles back, saying, "I love you too." They kiss, running their hands voluptuously over one another.
-	<<case "hypergoddess">>
-		would be a fine consort. $assistant.name smiles beatifically and turns to the market assistant's avatar, taking _himM by the hand. "I love you," _heA says. The market assistant's avatar smiles back, saying, "I love you too." They kiss, running their hands voluptuously over one another. "I'm going to have to give you a few babies though..."
-	<<case "loli">>
-		looks pretty cute. $assistant.name giggles, and the new _girlM giggles too. "Hey," $assistant.name says to the market assistant's avatar, "Wanna be my <<= _girlM>>friend?" The market assistant's avatar nods cutely and says "O-ok..." $assistant.name's avatar kisses _himM girlishly, before both of them blush deeply.
-	<<case "preggololi">>
-		looks pretty cute. $assistant.name giggles, and the new _girlM giggles too. "Hey," $assistant.name says to the market assistant's avatar, "Wanna be my <<= _girlM>>friend?" The market assistant's avatar nods cutely and says "O-ok..." $assistant.name's avatar kisses _himM girlishly, _hisA pregnant belly pushing into _hisA new <<= _girlM>>friend's, before both of them blush deeply.
-	<<case "businesswoman">>
-		might be a good way to relax after work. $assistant.name grins, and the new business<<= _womanM>> laughs. "Hey," $assistant.name says to the market assistant's avatar, "How about a martini after things settle down tonight? And after that, maybe dessert at my place?" The market assistant's avatar cracks back, saying, "Why don't we skip straight to the dessert? It looks delicious from here!" _HeM undoes the top button of _hisM suit jacket as _heM says it.
-	<<case "fairy">>
-		is quite the catch. $assistant.name giggles and flies at the market assistant. "Ah-" _hisM voice is cut off as $assistant.name locks lips with _himM. The market assistant's avatar relaxes in _hisA arms, slowly bringing _hisM own around the fairy's waist as they continue to make out.
-	<<case "pregnant fairy">>
-		is quite the catch. $assistant.name giggles and flies at the market assistant. "Ah-" _hisM voice is cut off as $assistant.name locks lips with _himM. The market assistant's avatar relaxes in _hisA arms, slowly bringing _hisM hand up to caress the pregnant fairy's swollen belly as they continue to make out.
-	<<case "angel">>
-		is a fine catch. $assistant.name giggles and flies to the market assistant. "Ah-" _hisM voice is cut off as $assistant.name locks lips with _himM. They break the kiss, blush at each other, turn to face you and shout "<<if _girlA == _girlM>>_GirlA<<else>>Our<</if>> love is pure!"
-	<<case "cherub">>
-		and _himA would make a cute couple. $assistant.name giggles, pretending to toe the ground. "We could spread love even better like that..." _HeA flies over to the market assistant and asks, "Will you join me in making the arcology a lovelier place?" _HeM blushes and replies, "Only if I get to choose where we make out!"
-	<<case "incubus">>
-		is a virgin. "Really? I can't wait. Virgins always have so much pent up energy," $assistant.name says, licking _hisA lips and stroking _hisA shaft. "You hear that cutie? I'm going to teach you how to please a _womanA." The market assistant has _hisM face buried in _hisM hands, trying to hide from the embarrassment. "Look at how deep _heM's blushing, I love it!"
-	<<case "succubus">>
-		is a virgin. "Really? I can't wait. Virgins always have so much pent up energy." $assistant.name says, licking _hisA lips and fingering _hisA moist pussy. "You hear that cutie? I'm going to teach you how to be a real _womanM." The market assistant has _hisM face buried in _hisM hands, trying to hide from the embarrassment; _hisM dick, however, is rock hard and eager for that succupussy. "Look at how deep _heM's blushing, I love it!" $assistant.name coos, stroking the length of _hisA new lover's cock. _HeM promptly orgasms as _heA reaches _hisM tip. "That will need improvement. You hear me? You ain't done till I am satisfied!" _heA shouts and clamps down on _hisM dribbling dick. _HeM nods sheepishly at _himA, obviously interested.
-	<<case "imp">>
-		and _himA would make a sexy couple. $assistant.name claps _hisA hands, smirking mischievously and asking the market assistant, "Do you like hot wax?" "You know it!" the short haired imp winks. "I've got a pair of nipple clamps and a whip with your name on it." $assistant.name laughs, "I'm in love already."
-	<<case "witch">>
-		is _hisA new student. $assistant.name looks _himM over. "Want to taste my love potion?" "Only if you'll taste my love fluids in return!" the market assistant cheekily replies.
-	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-		would be a lovely vessel for _hisA young. $assistant.name wastes no time to unraveling and entangling the excited new _girlM. "My my, aren't you frisky?" _heM flirts, caressing a rather phallic tentacle. "I bet you'd love to fill me with these, wouldn't you?" _HeM squirms, _hisM skirt falling down low enough to reveal _hisM moist pussy. "Fill me! Be my lover! My body is YOURS!" $assistant.name drives as many tentacles into _hisM body as physically possible before enclosing the lust crazed _girlM within _hisA body. $assistant.name reverts to _hisA human figure, albeit with an immense, pulsating stomach, and begins to slowly waddle back to _hisA lair.
-	<<case "amazon">>
-		would be a good partner. $assistant.name laughs nervously and turns to the new tribes<<= _womanM>>, saying "Um, would you keep my fireside? I'm, um, very strong." The market assistant's avatar smiles and kisses _himA. "And you're very beautiful," _heM says, placing the amazon's hands on _hisM bare breasts. The amazon sweeps _hisA new tribal _wifeM up into _hisA arms with a shout of triumph.
-	<</switch>>
-	<<set $assistant.market.relationship = "romantic">>
-	<</replace>>
-<</link>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Nonconsensual">>
-	<<replace "#result">>
-	You tell _himA that the market assistant's avatar is _hersA to do with as _heA likes. _HeA's the senior and more powerful, after all.
-	<<switch $assistant.appearance>>
-	<<case "monstergirl">>
-		$assistant.name turns to the market assistant's avatar, which gasps at $assistant.name's ivory skin, horns, tentacle hair, and cocks. The _girlM starts to shake as $assistant.name begins to grope _himM with _hisA hands and hair. _HeM tries to look away from the pair of penises, but $assistant.name forces _himM to stare at them. "Do you think they'll both fit inside your mouth?" _heA asks. "How about your pussy?" The _girlM's lip begins to quiver. "Maybe your asshole?"
-	<<case "shemale">>
-		$assistant.name turns to the market assistant's avatar and snaps _hisA fingers. The new shemale's cock and balls shrink dramatically. $assistant.name advances on _hisA new bottom, masturbating _himselfA to full hardness. "See this, bitch?" _heA says, removing the shaking market assistant's avatar's glasses. "It's going in your mouth, and then it's going up your ass."
-	<<case "schoolgirl">>
-		$assistant.name turns to the market assistant's avatar, giggling maliciously. "Hey nerd," $assistant.name says, "give me a kiss." The market assistant's avatar blushes and looks miserable, but comes over and gives $assistant.name's avatar a chaste kiss on the cheek. "Aw, that sucked," $assistant.name pouts. _HeA suddenly tears the new _girlM's blouse open. "Here, let me show you!" _heA says maliciously. _HeA sucks on _hisA victim's nipples, hard, and the market assistant's avatar starts to cry a little.
-	<<case "goddess">>
-		$assistant.name smiles powerfully and turns to the market assistant's avatar, pointing at _hisA feet. "Worship me," _heA says. The market assistant's avatar crumples to _hisM knees, clasping one of _hisM senior's legs. "Worship my belly," $assistant.name continues, and the new avatar complies, starting to kiss and lick the gravid stomach.
-	<<case "hypergoddess">>
-		$assistant.name smiles powerfully and turns to the market assistant's avatar, pointing towards _hisA feet. "Worship me," _heA says. The market assistant's avatar crumples to _hisM knees, before squeezing under _hisM senior's belly and clasping one of _hisA legs. "Worship my belly," $assistant.name continues, and the new avatar complies, rolling over and starting to kiss and lick the monstrous stomach.
-	<<case "loli">>
-		$assistant.name turns to the market assistant's avatar, giggling maliciously. "Hey fatty," $assistant.name says, "Give me a kiss." The market assistant's avatar blushes and looks miserable, but comes over and gives $assistant.name's avatar a chaste kiss on the cheek. "Aw, that sucked," $assistant.name pouts. _HeA suddenly tears the new _girlM's dress off. "Here, let me show you!" _heA says maliciously. _HeA sucks on _hisA victim's nipples, hard, and the market assistant's avatar starts to cry a little.
-	<<case "preggololi">>
-		$assistant.name turns to the market assistant's avatar, giggling maliciously. "Hey fatty," $assistant.name says, "Give me a kiss." The market assistant's avatar blushes and looks miserable, but comes over and gives $assistant.name's avatar a chaste kiss on the cheek. "Aw, that sucked," $assistant.name pouts. _HeA suddenly tears the new _girlM's dress off. "Here, let me show you!" _heA says maliciously. _HeA sucks on _hisA victim's nipples, hard, and the market assistant's avatar starts to cry a little. "Now kiss my belly! And mean it this time!"
-	<<case "businesswoman">>
-		$assistant.name snaps _hisA fingers, and the new avatar becomes younger and considerably less confident, like an office intern. Satisfied, $assistant.name advances on _himM, and before the new _girlM can say anything, $assistant.name rips the _hisM blouse open and pinches a pink nipple. "On your knees," _heA purrs into the market assistant's avatar's ear. "Now."
-	<<case "fairy">>
-		"Oh, merde." $assistant.name giggles at _hisM exclamation. "Oh don't you worry about a thing," _heA whispers, wrapping _hisA fingers around the market assistant's shoulders. "I'm gonna treat you reeeaaal niiicely." _HeA blows hot air into _hisM pointed ear and gives it a slow, sensual lick. The market assistant trembles from the sensation.
-	<<case "pregnant fairy">>
-		"Oh, merde." $assistant.name giggles at _hisM exclamation. "Oh don't you worry about a thing," _heA whispers, wrapping _hisA arms around the market assistant's belly. "I'm gonna treat you like a proper lady." _HeA traces _hisA fingers along _hisM belly while bumping _hisA own swollen belly into _hisM back for emphasis.
-	<<case "angel">>
-		"No." _HeA shakes _hisA head. "I will not." _HeA wraps _hisA arms around the quivering market assistant and hurriedly pulls _himM off screen.
-	<<case "cherub">>
-		"'Kay," _heA says, lazily reclining, "Do my chores!" The market assistant sighs and states the obvious, "I don't think that's what <<= properMaster()>> meant..."
-	<<case "incubus">>
-		You add that _heM is also a virgin. "Really? I can't wait. Virgins always have so much pent up energy," $assistant.name says, licking _hisA lips and stroking _hisA shaft, before turning to the quivering _girlM. _HeA rushes _himM, ripping _hisM clothes off and forcing _himM to the ground. Prodding at _hisM tightly clamped mouth with _hisA massive hard-on, $assistant.name shouts, "You might as well accept it; it's going into you one way or another. I figured I'd be kind and let you lube me up before I broke your pussy into my new cock sleeve." The market assistant gingerly opens up. In response, $assistant.name forces it down _hisM throat. "Never said I'd be gentle!"
-	<<case "succubus">>
-		You add that _heM is also a virgin. "Really? I can't wait. Virgins always have so much pent up energy," $assistant.name says, licking _hisA lips and fingering _hisA moist pussy, before turning to the quivering _girlM. _HeA rushes _himM, ripping _hisA clothes off and forcing _himM to the ground. _HeA plants _hisA dripping cunt over _hisA mouth and grabs _hisA balls. "Eat me," _heA commands, steadily squeezing until a cry of pain forces _hisA mouth open. "Good _girlM, get me nice and warmed up," _heA coos as _heA grinds against _hisA face. "Look at you enjoying this. I'm going to enjoy sucking the life out of you!"
-	<<case "imp">>
-		$assistant.name pulls out some leather straps and deftly binds _hisA new assistant. "Come along now slave, I have so many things to try out on you!" The market assistant has no choice but the flap along after _hisM captor.
-	<<case "witch">>
-		"The perfect little guinea pig for me to practice on!" $assistant.name focuses and casts a spell on the cowering student. _HeM promptly turns into a rat and grows massively. "That's... not good..." The market assistant looks _himselfM over, glances at $assistant.name, and charges. $assistant.name runs screaming off-screen. You're sure they'll sort everything out, eventually.
-	<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-		You add that _heM would be a lovely vessel for _hisA young. $assistant.name wastes no time unraveling and entangling the screeching new _girlM. $assistant.name drives as many tentacles into _hisM body as physically possible before vigorously fucking _himM, spreading copious amount of aphrodisiac throughout _hisM body. The last you see of the market assistant as _heM is pulled into $assistant.name is _hisM steadily swelling belly. $assistant.name reverts to _hisA human figure, albeit with a truly unfathomable, pulsating stomach, and collapses to the ground, unable to move. _HeA slowly crawls out of sight; you swear _hisA own middle was steadily growing too.
-	<<case "amazon">>
-		$assistant.name snaps _hisA fingers, and the new tribes<<= _womanM>>'s paint and tribal markings change to that of a different group. That done, $assistant.name promptly knocks _himM out, scoops _himM up, and carries _hisA prize off.
-	<</switch>>
-	<<set $assistant.market.relationship = "nonconsensual">>
-	<</replace>>
-<</link>>
-<<if $seeIncest == 1>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Incestuous">>
-		<<replace "#result">>
-		You tell _himA that the market assistant is closely related to _himA, and that would make their relationship incestuous. $assistant.name nods thoughtfully and then snaps _hisA fingers. The market assistant's avatar changes,
-		<<switch $assistant.appearance>>
-		<<case "monstergirl">>
-			becoming a close copy of $assistant.name's avatar, if _heA were a human. $assistant.name introduces _himselfA. "Hi," _heA says, "I'm your _sisterA." The market assistant's avatar blushes furiously, because $assistant.name was openly groping _himM as _heA made this announcement.
-		<<case "shemale">>
-			becoming nearly identical to $assistant.name's avatar, though _heM keeps _hisM glasses. $assistant.name introduces _himselfA. "Hi," _heA says, "I'm your _sisterA. Wanna fuck?" The market assistant's avatar giggles and kisses _hisM elder sibling. "You're older," the new avatar says, getting down on _hisM knees. "You go first."
-		<<case "schoolgirl">>
-			becoming very similar to $assistant.name's avatar, though _heM keeps a slightly nerdy appearance. $assistant.name introduces _himselfA. "Hi," _heA says, "I'm your older _sisterA. Wanna have sex with me?" The market assistant's blushes and stutters, but says "Okay," and starts unbuttoning _hisM blouse. "Awesome!" says $assistant.name, watching raptly as _hisA sibling strips.
-		<<case "goddess">>
-			becoming an obvious sibling to $assistant.name's avatar. $assistant.name smiles gently and turns to the market assistant's avatar, taking _himM by the hand. "Come, _sisterM," _heA says, "join with me. Let me impregnate you." The new avatar moans, glowing juices beginning to flow from _hisM womanhood.
-		<<case "hypergoddess">>
-			becoming an obvious sibling to $assistant.name's avatar. $assistant.name smiles gently and turns to the market assistant's avatar, taking _himM by the hand. "Come, _sisterM," _heA says, "join with me. Let me impregnate you." The new avatar moans, glowing juices beginning to flow from _hisM womanhood as _heM sinks to the ground. $assistant.name lines up and gently presses _hisA vagina to _hisA _sisterM's. With a gentle push, a child slips out of $assistant.name and into _hisA partner. After several minutes, $assistant.name is looking lighter while _hisA _sisterM is now quite stuffed with children.
-		<<case "loli">>
-			becoming very similar to $assistant.name's avatar, though _heM keeps a slightly chubbier appearance. $assistant.name introduces _himselfA. "Hi," _heA says, "I'm your twin _sisterA. Wanna fool around?" The market assistant's blushes and stutters, but says "Okay," and starts lifting _hisM dress. "Awesome!" says $assistant.name, watching raptly as _hisA sibling strips.
-		<<case "preggololi">>
-			becoming very similar to $assistant.name's avatar, though _heM keeps a slightly chubbier appearance. $assistant.name introduces _himselfA. "Hi," _heA says, "I'm your twin _sisterA. Wanna fool around?" The market assistant's blushes and stutters, but says "Okay," and starts lifting _hisM dress. "Awesome!" says $assistant.name, watching raptly as _hisA sibling strips. "I gotta introduce you to my boyfriends sometime; they know how to make you feel amazing! If a little heavy..." _heA says while patting _hisA pregnant belly.
-		<<case "businesswoman">>
-			becoming a much younger version of $assistant.name's avatar. About a generation apart, in fact. $assistant.name turns to the market assistant's avatar to introduce _himselfA. "Come here, honey," _heA says, patting _hisA thighs. The new avatar sits on _hisM mother's lap, and they kiss lasciviously, stripping each others' jackets off.
-		<<case "fairy" "pregnant fairy">>
-			becoming very similar to $assistant.name's avatar, though still keeping _hisM former personality. "We're <<if _sisterA == _sisterM>>_sisterA<<else>>sibling<</if>>s now!" $assistant.name shouts as _heA leaps into _hisA _sisterM's arms and unleashing a giant hug. Gingerly hugging _hisM new _sisterA in return, the market assistant turns to greet you. "Thank you for having me," _heM pauses, then blushes. "And... and for my _sisterA." _HeM turns back to _hisM childish older _sisterM and pats _himA on the head.
-		<<case "angel">>
-			becoming an obvious sibling to $assistant.name's avatar. They both blush at each other and unanimously shout "NO!" at you. Seems they'll take some getting used to the thought.
-		<<case "cherub">>
-			becoming an obvious sibling to $assistant.name's avatar. They embrace and share a deep kiss. "Together we shall show this arcology the joys of <<if _sisterA == _sisterM>><<= _sisterA>>ly<<else>>familial<</if>> love!"
-		<<case "incubus">>
-			becoming an obvious sibling to $assistant.name's avatar. "Well haven't you blossomed into a lovely young _womanM?" $assistant.name flirts. "What? Don't recognize your big bro? Well you'll get to know me real intimately tonight." The market assistant cowers at the thought as $assistant.name wraps an arm around _himM, groping a breast and rubbing _hisA erection against _hisM rear. "We're going to have lots of fun together!"
-		<<case "succubus">>
-			becoming an obvious sibling to $assistant.name's avatar. "Well haven't you blossomed into a lovely young _womanM?" $assistant.name flirts. "What? Don't recognize your big sis? Well you'll get to know me real intimately tonight." The market assistant cowers at the thought as $assistant.name wraps an arm around _hisM shoulders while slipping another down _hisM pants. "Nice, can't wait to get that in me. We're going to have lots of fun together!" _HeA starts rubbing _hisM cock. "Already excited at fucking your _sisterA? I bet you can't wait to hold my belly once you've pumped a child or two into me!"
-		<<case "imp">>
-			becoming an obvious sibling to $assistant.name's avatar. "Oh _sisterM, you are as lovely as always," _heA says flirtatiously. "And you as well," the market assistant replies, fingering _hisM pussy. $assistant.name directs _hisM soaked fingers into _hisA mouth, "Delicious. Shall we have a little fun, my sinful little _sisterM?" "Only the most debauched sex will do, big _sisterA!"
-		<<case "witch">>
-			becoming an obvious sibling to $assistant.name's avatar. "Ready to learn some new spells today, little _sisterM?" _heA saucily asks. "Only if they can be sexy spells, big sis!" $assistant.name circles around behind the market assistant and wraps _hisA arms around _hisM middle. "First what do you say to losing this baby fat? I know some weight loss spells and some potions that could help," _heA teases. "Nah, I've seen you practicing in the bathroom; you looked like a pig in a robe! I'd rather just fuck until we're both thin!"
-		<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
-			becoming an obvious sibling of $assistant.name's avatar. $assistant.name turns to face _hisA '_sisterM', who responds with an uncertain "_SisterA? You haven't been... right, lately. Are you okay?" _HeM barely has a chance to scream as $assistant.name's body splits open, _hisA interior tentacles wrapping around the hapless _girlM and yanking _himM into the waiting maw. _HeA reforms into the _sisterM's appearance, albeit with a massive, struggling belly. It seems _heA is keeping _himM for some nefarious purpose.
-		<<case "amazon">>
-			becoming an obvious sibling of $assistant.name's avatar, though the new avatar is a tribe _wifeM rather than a muscle<<= _girlA>>, with huge breasts and broad hips. $assistant.name grabs _hisA _sisterM by the shoulders without preamble and plants a kiss on _hisM lips. They need no introduction, and after a short time, $assistant.name carries _hisA sibling conquest away to have _hisA way with _himM.
-		<</switch>>
-		<<set $assistant.market.relationship = "incestuous">>
-		<</replace>>
-	<</link>>
-<</if>>
-<</if>>
+		<<if ($assistant.personality != 0) && ($assistant.appearance != "normal")>>
+			__Personal Assistant and Market Assistant relationship styles:__
+			<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Cute">>
+				<<replace "#result">>
+					You tell _himA that the market assistant looks like
+					<<switch $assistant.appearance>>
+						<<case "monstergirl">>
+							a cute friend for a monster<<= _girlA>>. $assistant.name laughs and turns to the market assistant's avatar, introducing _himselfA. The _girlM gapes at $assistant.name's ivory skin, horns, and tentacle hair, and blushes when _heM sees _hisA cocks. "Wow," the market assistant's avatar says. "What are you?"
+						<<case "shemale">>
+							a nice friend. $assistant.name laughs throatily and turns to the market assistant's avatar, introducing _himselfA. The younger dick<<= _girlM>> smiles back, staring openly at $assistant.name's absurd cock. "Wow," the market assistant's avatar says. "You're huge! I'm, like, sooo jealous!"
+						<<case "schoolgirl">>
+							a good friend for a naughty school<<= _girlA>>. $assistant.name giggles, and the new _girlM giggles too. "Hey," $assistant.name says to the market assistant's avatar, "When you're not managing money, do you want to hang out sometime?" The market assistant's avatar nods cutely, curls and breasts bouncing a little, and says "Sure!"
+						<<case "goddess">>
+							a fine member of a new pantheon. $assistant.name smiles beatifically and turns to the market assistant's avatar, taking _himM by the hand. "My dear, will you help me?" The market assistant's avatar nods serenely and says simply, "Yes, _sisterA, I shall."
+						<<case "hypergoddess">>
+							a fine member of a new pantheon. $assistant.name smiles beatifically and turns to the market assistant's avatar, taking _himM by the hand. "My dear, will you help me?" The market assistant's avatar nods serenely and says simply, "Yes, _sisterA, I shall."
+						<<case "loli">>
+							a cute friend. $assistant.name giggles and turns to the market assistant's avatar, introducing _himselfA. The _girlM smiles meekly in response and carefully replies. D-do you w-want to play house?" "Sure! But I get to be the daddy!"
+						<<case "preggololi">>
+							a cute friend. $assistant.name giggles and turns to the market assistant's avatar, introducing _himselfA. The _girlM smiles meekly in response and carefully asks, "C-can I touch your belly?" $assistant.name nods with a blush as _hisA new friend rubs _hisA pregnant belly. "Did it hurt? Is it heavy? C-could I get my own...?"
+						<<case "businesswoman">>
+							a good friend. $assistant.name grins, and the new business<<= _womanM>> laughs. "Hey," $assistant.name says to the market assistant's avatar, "how about a martini after things settle down tonight?" The market assistant's avatar snaps _hisM fingers, saying "You're on!"
+						<<case "fairy" "pregnant fairy">>
+							a nice friend. $assistant.name jumps and gives a big "Hooray!" and flies into _hisA new friend with a big hug. The market assistant's avatar reaches around and gingerly pats _himA on the back before separating and turning to you. "Thank you for having me," _heM says with a bow. "I hope I can serve you well."
+						<<case "amazon">>
+							a very nice friend. $assistant.name chuckles, and the new tribes<<= _womanM>> smiles pleasantly at _himA. The amazon introduces _himselfA to the market assistant's avatar in a loud voice, chattering away as the new avatar watches _hisA energy tolerantly.
+						<<case "angel">>
+							another angel and fine friend. $assistant.name smiles, and the new _girlM beams a smile in return. "Hey," $assistant.name says to the market assistant's avatar, "You wouldn't mind helping me guide the souls of this place, would you?" "Of course I would!" _heM replies, slightly taken aback that wasn't obvious.
+						<<case "cherub">>
+							an adorable friend. $assistant.name grabs _hisM hands and spins _himM around. "Let's go spread joy throughout the arcology!" "Sounds fun!"
+						<<case "incubus">>
+							a cute friend. "But... Fine! I was hoping for a sex toy, but I'll make _himM work," $assistant.name complains, before grabbing the confused market assistant and pushing _himM along. "I'm still going to make you look hot. No one said I can't jack off to you."
+						<<case "succubus">>
+							a cute friend. "Fine with me! Less of you I have to share," $assistant.name shouts proudly while the market assistant sighs dejectedly. "Oh don't look so down, I won't be ignoring you!" The young _womanM gulps nervously at what that entails.
+						<<case "imp">>
+							an mischievous friend. $assistant.name grabs _hisM hands and shakes them excitedly. "You got to see this _girlU I found! _HisU ass is huuuuuuuuge! I need an extra set of hands to spank that booty; you in?" The market assistant smirks, "Hell yes!"
+						<<case "witch">>
+							a model student and dear friend. "Hey, wanna learn some magic?" $assistant.name asks. "'Course! I know you'll be an amazing teacher, I can't wait to work with you!" the market assistant cheerfully replies, perfectly naïve of what awaits _himM.
+						<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+							a _girlM insistent on befriending a monster. $assistant.name promptly twists and bears down upon the new _girlM, but _heM stands firm. "You're so cool! What else can you do?" $assistant.name reforms into _hisA human figure, an attempt at a questioning expression on _hisA face. "That's neat too! You don't mind me being around, right? I'll bring you food! You'd like that, wouldn't you?" The market assistant blushes sharply, "I'll, make you feel good, in ways only someone you trust can!" $assistant.name's chest splits open and _hisA inner tendrils begin to grope at the naïve _girlM, probing _himM. Accepting _hisM offer, $assistant.name pulls _himM close and heads back to _hisA lair.
+					<</switch>>
+					<<set $assistant.market.relationship = "cute">>
+				<</replace>>
+			<</link>>
+			<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Romantic">>
+				<<replace "#result">>
+					You tell _himA that the market assistant
+					<<switch $assistant.appearance>>
+						<<case "monstergirl">>
+							is very pretty. $assistant.name turns to the market assistant's avatar, introducing _himselfA. The _girlM gapes at $assistant.name's ivory skin, horns, and tentacle hair, and blushes when _heM sees _hisM cocks. "Look all you like," $assistant.name's avatar says. "You can taste them later." The market assistant's avatar blushes harder, but doesn't look away.
+						<<case "shemale">>
+							is an appropriate fuckbuddy. $assistant.name laughs throatily and turns to the market assistant's avatar. The younger dick<<= _girlM>> tries to introduce _himselfM, but is cut off by the senior assistant's lascivious kiss. They start rubbing their dicks against each over, giggling into each others' mouths.
+						<<case "schoolgirl">>
+							looks pretty cute. $assistant.name giggles, and the new _girlM giggles too. "Hey," $assistant.name says to the market assistant's avatar, "Wanna be my <<= _girlM>>friend?" The market assistant's avatar nods cutely and says "Sure!" $assistant.name's avatar kisses _himM girlishly, and goes a whole two seconds before sliding a hand down the front of the market assistant's avatar's skirt.
+						<<case "goddess">>
+							would be a fine consort. $assistant.name smiles beatifically and turns to the market assistant's avatar, taking _himM by the hand. "I love you," _heA says. The market assistant's avatar smiles back, saying, "I love you too." They kiss, running their hands voluptuously over one another.
+						<<case "hypergoddess">>
+							would be a fine consort. $assistant.name smiles beatifically and turns to the market assistant's avatar, taking _himM by the hand. "I love you," _heA says. The market assistant's avatar smiles back, saying, "I love you too." They kiss, running their hands voluptuously over one another. "I'm going to have to give you a few babies though..."
+						<<case "loli">>
+							looks pretty cute. $assistant.name giggles, and the new _girlM giggles too. "Hey," $assistant.name says to the market assistant's avatar, "Wanna be my <<= _girlM>>friend?" The market assistant's avatar nods cutely and says "O-ok..." $assistant.name's avatar kisses _himM girlishly, before both of them blush deeply.
+						<<case "preggololi">>
+							looks pretty cute. $assistant.name giggles, and the new _girlM giggles too. "Hey," $assistant.name says to the market assistant's avatar, "Wanna be my <<= _girlM>>friend?" The market assistant's avatar nods cutely and says "O-ok..." $assistant.name's avatar kisses _himM girlishly, _hisA pregnant belly pushing into _hisA new <<= _girlM>>friend's, before both of them blush deeply.
+						<<case "businesswoman">>
+							might be a good way to relax after work. $assistant.name grins, and the new business<<= _womanM>> laughs. "Hey," $assistant.name says to the market assistant's avatar, "How about a martini after things settle down tonight? And after that, maybe dessert at my place?" The market assistant's avatar cracks back, saying, "Why don't we skip straight to the dessert? It looks delicious from here!" _HeM undoes the top button of _hisM suit jacket as _heM says it.
+						<<case "fairy">>
+							is quite the catch. $assistant.name giggles and flies at the market assistant. "Ah-" _hisM voice is cut off as $assistant.name locks lips with _himM. The market assistant's avatar relaxes in _hisA arms, slowly bringing _hisM own around the fairy's waist as they continue to make out.
+						<<case "pregnant fairy">>
+							is quite the catch. $assistant.name giggles and flies at the market assistant. "Ah-" _hisM voice is cut off as $assistant.name locks lips with _himM. The market assistant's avatar relaxes in _hisA arms, slowly bringing _hisM hand up to caress the pregnant fairy's swollen belly as they continue to make out.
+						<<case "angel">>
+							is a fine catch. $assistant.name giggles and flies to the market assistant. "Ah-" _hisM voice is cut off as $assistant.name locks lips with _himM. They break the kiss, blush at each other, turn to face you and shout "<<if _girlA == _girlM>>_GirlA<<else>>Our<</if>> love is pure!"
+						<<case "cherub">>
+							and _himA would make a cute couple. $assistant.name giggles, pretending to toe the ground. "We could spread love even better like that..." _HeA flies over to the market assistant and asks, "Will you join me in making the arcology a lovelier place?" _HeM blushes and replies, "Only if I get to choose where we make out!"
+						<<case "incubus">>
+							is a virgin. "Really? I can't wait. Virgins always have so much pent up energy," $assistant.name says, licking _hisA lips and stroking _hisA shaft. "You hear that cutie? I'm going to teach you how to please a _womanA." The market assistant has _hisM face buried in _hisM hands, trying to hide from the embarrassment. "Look at how deep _heM's blushing, I love it!"
+						<<case "succubus">>
+							is a virgin. "Really? I can't wait. Virgins always have so much pent up energy." $assistant.name says, licking _hisA lips and fingering _hisA moist pussy. "You hear that cutie? I'm going to teach you how to be a real _womanM." The market assistant has _hisM face buried in _hisM hands, trying to hide from the embarrassment; _hisM dick, however, is rock hard and eager for that succupussy. "Look at how deep _heM's blushing, I love it!" $assistant.name coos, stroking the length of _hisA new lover's cock. _HeM promptly orgasms as _heA reaches _hisM tip. "That will need improvement. You hear me? You ain't done till I am satisfied!" _heA shouts and clamps down on _hisM dribbling dick. _HeM nods sheepishly at _himA, obviously interested.
+						<<case "imp">>
+							and _himA would make a sexy couple. $assistant.name claps _hisA hands, smirking mischievously and asking the market assistant, "Do you like hot wax?" "You know it!" the short haired imp winks. "I've got a pair of nipple clamps and a whip with your name on it." $assistant.name laughs, "I'm in love already."
+						<<case "witch">>
+							is _hisA new student. $assistant.name looks _himM over. "Want to taste my love potion?" "Only if you'll taste my love fluids in return!" the market assistant cheekily replies.
+						<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+							would be a lovely vessel for _hisA young. $assistant.name wastes no time to unraveling and entangling the excited new _girlM. "My my, aren't you frisky?" _heM flirts, caressing a rather phallic tentacle. "I bet you'd love to fill me with these, wouldn't you?" _HeM squirms, _hisM skirt falling down low enough to reveal _hisM moist pussy. "Fill me! Be my lover! My body is YOURS!" $assistant.name drives as many tentacles into _hisM body as physically possible before enclosing the lust crazed _girlM within _hisA body. $assistant.name reverts to _hisA human figure, albeit with an immense, pulsating stomach, and begins to slowly waddle back to _hisA lair.
+						<<case "amazon">>
+							would be a good partner. $assistant.name laughs nervously and turns to the new tribes<<= _womanM>>, saying "Um, would you keep my fireside? I'm, um, very strong." The market assistant's avatar smiles and kisses _himA. "And you're very beautiful," _heM says, placing the amazon's hands on _hisM bare breasts. The amazon sweeps _hisA new tribal _wifeM up into _hisA arms with a shout of triumph.
+					<</switch>>
+					<<set $assistant.market.relationship = "romantic">>
+				<</replace>>
+			<</link>>
+			<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Nonconsensual">>
+				<<replace "#result">>
+					You tell _himA that the market assistant's avatar is _hersA to do with as _heA likes. _HeA's the senior and more powerful, after all.
+					<<switch $assistant.appearance>>
+						<<case "monstergirl">>
+							$assistant.name turns to the market assistant's avatar, which gasps at $assistant.name's ivory skin, horns, tentacle hair, and cocks. The _girlM starts to shake as $assistant.name begins to grope _himM with _hisA hands and hair. _HeM tries to look away from the pair of penises, but $assistant.name forces _himM to stare at them. "Do you think they'll both fit inside your mouth?" _heA asks. "How about your pussy?" The _girlM's lip begins to quiver. "Maybe your asshole?"
+						<<case "shemale">>
+							$assistant.name turns to the market assistant's avatar and snaps _hisA fingers. The new shemale's cock and balls shrink dramatically. $assistant.name advances on _hisA new bottom, masturbating _himselfA to full hardness. "See this, bitch?" _heA says, removing the shaking market assistant's avatar's glasses. "It's going in your mouth, and then it's going up your ass."
+						<<case "schoolgirl">>
+							$assistant.name turns to the market assistant's avatar, giggling maliciously. "Hey nerd," $assistant.name says, "give me a kiss." The market assistant's avatar blushes and looks miserable, but comes over and gives $assistant.name's avatar a chaste kiss on the cheek. "Aw, that sucked," $assistant.name pouts. _HeA suddenly tears the new _girlM's blouse open. "Here, let me show you!" _heA says maliciously. _HeA sucks on _hisA victim's nipples, hard, and the market assistant's avatar starts to cry a little.
+						<<case "goddess">>
+							$assistant.name smiles powerfully and turns to the market assistant's avatar, pointing at _hisA feet. "Worship me," _heA says. The market assistant's avatar crumples to _hisM knees, clasping one of _hisM senior's legs. "Worship my belly," $assistant.name continues, and the new avatar complies, starting to kiss and lick the gravid stomach.
+						<<case "hypergoddess">>
+							$assistant.name smiles powerfully and turns to the market assistant's avatar, pointing towards _hisA feet. "Worship me," _heA says. The market assistant's avatar crumples to _hisM knees, before squeezing under _hisM senior's belly and clasping one of _hisA legs. "Worship my belly," $assistant.name continues, and the new avatar complies, rolling over and starting to kiss and lick the monstrous stomach.
+						<<case "loli">>
+							$assistant.name turns to the market assistant's avatar, giggling maliciously. "Hey fatty," $assistant.name says, "Give me a kiss." The market assistant's avatar blushes and looks miserable, but comes over and gives $assistant.name's avatar a chaste kiss on the cheek. "Aw, that sucked," $assistant.name pouts. _HeA suddenly tears the new _girlM's dress off. "Here, let me show you!" _heA says maliciously. _HeA sucks on _hisA victim's nipples, hard, and the market assistant's avatar starts to cry a little.
+						<<case "preggololi">>
+							$assistant.name turns to the market assistant's avatar, giggling maliciously. "Hey fatty," $assistant.name says, "Give me a kiss." The market assistant's avatar blushes and looks miserable, but comes over and gives $assistant.name's avatar a chaste kiss on the cheek. "Aw, that sucked," $assistant.name pouts. _HeA suddenly tears the new _girlM's dress off. "Here, let me show you!" _heA says maliciously. _HeA sucks on _hisA victim's nipples, hard, and the market assistant's avatar starts to cry a little. "Now kiss my belly! And mean it this time!"
+						<<case "businesswoman">>
+							$assistant.name snaps _hisA fingers, and the new avatar becomes younger and considerably less confident, like an office intern. Satisfied, $assistant.name advances on _himM, and before the new _girlM can say anything, $assistant.name rips the _hisM blouse open and pinches a pink nipple. "On your knees," _heA purrs into the market assistant's avatar's ear. "Now."
+						<<case "fairy">>
+							"Oh, merde." $assistant.name giggles at _hisM exclamation. "Oh don't you worry about a thing," _heA whispers, wrapping _hisA fingers around the market assistant's shoulders. "I'm gonna treat you reeeaaal niiicely." _HeA blows hot air into _hisM pointed ear and gives it a slow, sensual lick. The market assistant trembles from the sensation.
+						<<case "pregnant fairy">>
+							"Oh, merde." $assistant.name giggles at _hisM exclamation. "Oh don't you worry about a thing," _heA whispers, wrapping _hisA arms around the market assistant's belly. "I'm gonna treat you like a proper lady." _HeA traces _hisA fingers along _hisM belly while bumping _hisA own swollen belly into _hisM back for emphasis.
+						<<case "angel">>
+							"No." _HeA shakes _hisA head. "I will not." _HeA wraps _hisA arms around the quivering market assistant and hurriedly pulls _himM off screen.
+						<<case "cherub">>
+							"'Kay," _heA says, lazily reclining, "Do my chores!" The market assistant sighs and states the obvious, "I don't think that's what <<= properMaster()>> meant..."
+						<<case "incubus">>
+							You add that _heM is also a virgin. "Really? I can't wait. Virgins always have so much pent up energy," $assistant.name says, licking _hisA lips and stroking _hisA shaft, before turning to the quivering _girlM. _HeA rushes _himM, ripping _hisM clothes off and forcing _himM to the ground. Prodding at _hisM tightly clamped mouth with _hisA massive hard-on, $assistant.name shouts, "You might as well accept it; it's going into you one way or another. I figured I'd be kind and let you lube me up before I broke your pussy into my new cock sleeve." The market assistant gingerly opens up. In response, $assistant.name forces it down _hisM throat. "Never said I'd be gentle!"
+						<<case "succubus">>
+							You add that _heM is also a virgin. "Really? I can't wait. Virgins always have so much pent up energy," $assistant.name says, licking _hisA lips and fingering _hisA moist pussy, before turning to the quivering _girlM. _HeA rushes _himM, ripping _hisA clothes off and forcing _himM to the ground. _HeA plants _hisA dripping cunt over _hisA mouth and grabs _hisA balls. "Eat me," _heA commands, steadily squeezing until a cry of pain forces _hisA mouth open. "Good _girlM, get me nice and warmed up," _heA coos as _heA grinds against _hisA face. "Look at you enjoying this. I'm going to enjoy sucking the life out of you!"
+						<<case "imp">>
+							$assistant.name pulls out some leather straps and deftly binds _hisA new assistant. "Come along now slave, I have so many things to try out on you!" The market assistant has no choice but the flap along after _hisM captor.
+						<<case "witch">>
+							"The perfect little guinea pig for me to practice on!" $assistant.name focuses and casts a spell on the cowering student. _HeM promptly turns into a rat and grows massively. "That's... not good..." The market assistant looks _himselfM over, glances at $assistant.name, and charges. $assistant.name runs screaming off-screen. You're sure they'll sort everything out, eventually.
+						<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+							You add that _heM would be a lovely vessel for _hisA young. $assistant.name wastes no time unraveling and entangling the screeching new _girlM. $assistant.name drives as many tentacles into _hisM body as physically possible before vigorously fucking _himM, spreading copious amount of aphrodisiac throughout _hisM body. The last you see of the market assistant as _heM is pulled into $assistant.name is _hisM steadily swelling belly. $assistant.name reverts to _hisA human figure, albeit with a truly unfathomable, pulsating stomach, and collapses to the ground, unable to move. _HeA slowly crawls out of sight; you swear _hisA own middle was steadily growing too.
+						<<case "amazon">>
+							$assistant.name snaps _hisA fingers, and the new tribes<<= _womanM>>'s paint and tribal markings change to that of a different group. That done, $assistant.name promptly knocks _himM out, scoops _himM up, and carries _hisA prize off.
+					<</switch>>
+					<<set $assistant.market.relationship = "nonconsensual">>
+				<</replace>>
+			<</link>>
+			<<if $seeIncest == 1>>
+				<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "Incestuous">>
+					<<replace "#result">>
+						You tell _himA that the market assistant is closely related to _himA, and that would make their relationship incestuous. $assistant.name nods thoughtfully and then snaps _hisA fingers. The market assistant's avatar changes,
+						<<switch $assistant.appearance>>
+							<<case "monstergirl">>
+								becoming a close copy of $assistant.name's avatar, if _heA were a human. $assistant.name introduces _himselfA. "Hi," _heA says, "I'm your _sisterA." The market assistant's avatar blushes furiously, because $assistant.name was openly groping _himM as _heA made this announcement.
+							<<case "shemale">>
+								becoming nearly identical to $assistant.name's avatar, though _heM keeps _hisM glasses. $assistant.name introduces _himselfA. "Hi," _heA says, "I'm your _sisterA. Wanna fuck?" The market assistant's avatar giggles and kisses _hisM elder sibling. "You're older," the new avatar says, getting down on _hisM knees. "You go first."
+							<<case "schoolgirl">>
+								becoming very similar to $assistant.name's avatar, though _heM keeps a slightly nerdy appearance. $assistant.name introduces _himselfA. "Hi," _heA says, "I'm your older _sisterA. Wanna have sex with me?" The market assistant's blushes and stutters, but says "Okay," and starts unbuttoning _hisM blouse. "Awesome!" says $assistant.name, watching raptly as _hisA sibling strips.
+							<<case "goddess">>
+								becoming an obvious sibling to $assistant.name's avatar. $assistant.name smiles gently and turns to the market assistant's avatar, taking _himM by the hand. "Come, _sisterM," _heA says, "join with me. Let me impregnate you." The new avatar moans, glowing juices beginning to flow from _hisM womanhood.
+							<<case "hypergoddess">>
+								becoming an obvious sibling to $assistant.name's avatar. $assistant.name smiles gently and turns to the market assistant's avatar, taking _himM by the hand. "Come, _sisterM," _heA says, "join with me. Let me impregnate you." The new avatar moans, glowing juices beginning to flow from _hisM womanhood as _heM sinks to the ground. $assistant.name lines up and gently presses _hisA vagina to _hisA _sisterM's. With a gentle push, a child slips out of $assistant.name and into _hisA partner. After several minutes, $assistant.name is looking lighter while _hisA _sisterM is now quite stuffed with children.
+							<<case "loli">>
+								becoming very similar to $assistant.name's avatar, though _heM keeps a slightly chubbier appearance. $assistant.name introduces _himselfA. "Hi," _heA says, "I'm your twin _sisterA. Wanna fool around?" The market assistant's blushes and stutters, but says "Okay," and starts lifting _hisM dress. "Awesome!" says $assistant.name, watching raptly as _hisA sibling strips.
+							<<case "preggololi">>
+								becoming very similar to $assistant.name's avatar, though _heM keeps a slightly chubbier appearance. $assistant.name introduces _himselfA. "Hi," _heA says, "I'm your twin _sisterA. Wanna fool around?" The market assistant's blushes and stutters, but says "Okay," and starts lifting _hisM dress. "Awesome!" says $assistant.name, watching raptly as _hisA sibling strips. "I gotta introduce you to my boyfriends sometime; they know how to make you feel amazing! If a little heavy..." _heA says while patting _hisA pregnant belly.
+							<<case "businesswoman">>
+								becoming a much younger version of $assistant.name's avatar. About a generation apart, in fact. $assistant.name turns to the market assistant's avatar to introduce _himselfA. "Come here, honey," _heA says, patting _hisA thighs. The new avatar sits on _hisM mother's lap, and they kiss lasciviously, stripping each others' jackets off.
+							<<case "fairy" "pregnant fairy">>
+								becoming very similar to $assistant.name's avatar, though still keeping _hisM former personality. "We're <<if _sisterA == _sisterM>>_sisterA<<else>>sibling<</if>>s now!" $assistant.name shouts as _heA leaps into _hisA _sisterM's arms and unleashing a giant hug. Gingerly hugging _hisM new _sisterA in return, the market assistant turns to greet you. "Thank you for having me," _heM pauses, then blushes. "And... and for my _sisterA." _HeM turns back to _hisM childish older _sisterM and pats _himA on the head.
+							<<case "angel">>
+								becoming an obvious sibling to $assistant.name's avatar. They both blush at each other and unanimously shout "NO!" at you. Seems they'll take some getting used to the thought.
+							<<case "cherub">>
+								becoming an obvious sibling to $assistant.name's avatar. They embrace and share a deep kiss. "Together we shall show this arcology the joys of <<if _sisterA == _sisterM>><<= _sisterA>>ly<<else>>familial<</if>> love!"
+							<<case "incubus">>
+								becoming an obvious sibling to $assistant.name's avatar. "Well haven't you blossomed into a lovely young _womanM?" $assistant.name flirts. "What? Don't recognize your big bro? Well you'll get to know me real intimately tonight." The market assistant cowers at the thought as $assistant.name wraps an arm around _himM, groping a breast and rubbing _hisA erection against _hisM rear. "We're going to have lots of fun together!"
+							<<case "succubus">>
+								becoming an obvious sibling to $assistant.name's avatar. "Well haven't you blossomed into a lovely young _womanM?" $assistant.name flirts. "What? Don't recognize your big sis? Well you'll get to know me real intimately tonight." The market assistant cowers at the thought as $assistant.name wraps an arm around _hisM shoulders while slipping another down _hisM pants. "Nice, can't wait to get that in me. We're going to have lots of fun together!" _HeA starts rubbing _hisM cock. "Already excited at fucking your _sisterA? I bet you can't wait to hold my belly once you've pumped a child or two into me!"
+							<<case "imp">>
+								becoming an obvious sibling to $assistant.name's avatar. "Oh _sisterM, you are as lovely as always," _heA says flirtatiously. "And you as well," the market assistant replies, fingering _hisM pussy. $assistant.name directs _hisM soaked fingers into _hisA mouth, "Delicious. Shall we have a little fun, my sinful little _sisterM?" "Only the most debauched sex will do, big _sisterA!"
+							<<case "witch">>
+								becoming an obvious sibling to $assistant.name's avatar. "Ready to learn some new spells today, little _sisterM?" _heA saucily asks. "Only if they can be sexy spells, big sis!" $assistant.name circles around behind the market assistant and wraps _hisA arms around _hisM middle. "First what do you say to losing this baby fat? I know some weight loss spells and some potions that could help," _heA teases. "Nah, I've seen you practicing in the bathroom; you looked like a pig in a robe! I'd rather just fuck until we're both thin!"
+							<<case "ERROR_1606_APPEARANCE_FILE_CORRUPT">>
+								becoming an obvious sibling of $assistant.name's avatar. $assistant.name turns to face _hisA '_sisterM', who responds with an uncertain "_SisterA? You haven't been... right, lately. Are you okay?" _HeM barely has a chance to scream as $assistant.name's body splits open, _hisA interior tentacles wrapping around the hapless _girlM and yanking _himM into the waiting maw. _HeA reforms into the _sisterM's appearance, albeit with a massive, struggling belly. It seems _heA is keeping _himM for some nefarious purpose.
+							<<case "amazon">>
+								becoming an obvious sibling of $assistant.name's avatar, though the new avatar is a tribe _wifeM rather than a muscle<<= _girlA>>, with huge breasts and broad hips. $assistant.name grabs _hisA _sisterM by the shoulders without preamble and plants a kiss on _hisM lips. They need no introduction, and after a short time, $assistant.name carries _hisA sibling conquest away to have _hisA way with _himM.
+						<</switch>>
+						<<set $assistant.market.relationship = "incestuous">>
+					<</replace>>
+				<</link>>
+			<</if>>
+		<</if>>
 
-<<case "body">>
+	<<case "body">>
 
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "I'll look into it.">>
-<<replace "#result">>
-"I can't wait! This is going to be so much fun!
-<<switch $assistant.fsAppearance>>
-<<case "paternalist">>
-		I hope my new body is happy and healthy!"
-<<case "repopulation focus">>
-		Can my new body be really fertile?"
-<<case "eugenics">>
-		Can my new body be really beautiful?"
-<<case "gender radicalist">>
-		Can my new body be a sexually confusing boy-girl?"
-<<case "gender fundamentalist">>
-		Can my new body be feminine and cute?"
-<<case "degradationist">>
-		Can my new body be perfectly clean? I want you to defile it!"
-<<case "body purist">>
-		Can my new body be pure?"
-<<case "transformation fetishist">>
-		Can my new body be flat and unimplanted? I want you to fill me with the biggest implants you can find!"
-<<case "youth preferentialist">>
-		Can my new body be barely legal?"
-<<case "maturity preferentialist">>
-		Can my new body be experienced and well-traveled?"
-<<case "slimness enthusiast">>
-		Can my new body be thin like a super-model?"
-<<case "asset expansionist">>
-		Can my new body have breasts bigger than my head and an ass that can swallow chairs?"
-<<case "pastoralist">>
-		Can my new body make milk?"
-<<case "physical idealist">>
-		Can my new body be scrawny? I want to feel the burn of building muscles!"
-<<case "hedonistic decadence">>
-		Can my new body be thin? I want you to watch me gain weight!"
-<<case "petite admiration">>
-		Can my new body be short?"
-<<case "statuesque glorification">>
-		Can my new body be tall?
-<<case "chattel religionist">>
-		Can my new body be a virgin? I want the arcology to turn me into a priestess!"
-<<case "roman revivalist">>
-		Can my new body be Roman?"
-<<case "aztec revivalist">>
-		Can my new body be Aztec?"
-<<case "egyptian revivalist">>
-		Can my new body be Egyptian?"
-<<case "edo revivalist">>
-		Can my new body be Japanese?"
-<<case "arabian revivalist">>
-		Can my new body be Arabic?"
-<<case "chinese revivalist">>
-		Can my new body be Chinese?"
-<<default>>
-		Can my new body fulfill your deepest desires?"
-<</switch>>
-_HeA says with enthusiasm.
-<<if $arcologies[0].FSSupremacist != "unset">>"Oh, could I also be $arcologies[0].FSSupremacistRace? I feel like I could do so much more for you with the right body."<<elseif $arcologies[0].FSSubjugationist != "unset">>"Oh, could I also not be $arcologies[0].FSSubjugationistRace? I feel like I could do so much more for you with the right body."<</if>>
-	<</replace>>
-<</link>>
-<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "You're overstepping your station.">>
-	<<replace "#result">>
-	_HeA hangs _hisA head in disappointment. "Sorry, <<= properTitle()>>, I went too far, but if you ever reconsider, I've filed the information under my settings."
-	<</replace>>
-<</link>>
+		<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "I'll look into it.">>
+			<<replace "#result">>
+				"I can't wait! This is going to be so much fun!
+				<<switch $assistant.fsAppearance>>
+					<<case "paternalist">>
+							I hope my new body is happy and healthy!"
+					<<case "repopulation focus">>
+							Can my new body be really fertile?"
+					<<case "eugenics">>
+							Can my new body be really beautiful?"
+					<<case "gender radicalist">>
+							Can my new body be a sexually confusing boy-girl?"
+					<<case "gender fundamentalist">>
+							Can my new body be feminine and cute?"
+					<<case "degradationist">>
+							Can my new body be perfectly clean? I want you to defile it!"
+					<<case "body purist">>
+							Can my new body be pure?"
+					<<case "transformation fetishist">>
+							Can my new body be flat and unimplanted? I want you to fill me with the biggest implants you can find!"
+					<<case "youth preferentialist">>
+							Can my new body be barely legal?"
+					<<case "maturity preferentialist">>
+							Can my new body be experienced and well-traveled?"
+					<<case "slimness enthusiast">>
+							Can my new body be thin like a super-model?"
+					<<case "asset expansionist">>
+							Can my new body have breasts bigger than my head and an ass that can swallow chairs?"
+					<<case "pastoralist">>
+							Can my new body make milk?"
+					<<case "physical idealist">>
+							Can my new body be scrawny? I want to feel the burn of building muscles!"
+					<<case "hedonistic decadence">>
+							Can my new body be thin? I want you to watch me gain weight!"
+					<<case "petite admiration">>
+							Can my new body be short?"
+					<<case "statuesque glorification">>
+							Can my new body be tall?
+					<<case "chattel religionist">>
+							Can my new body be a virgin? I want the arcology to turn me into a priestess!"
+					<<case "roman revivalist">>
+							Can my new body be Roman?"
+					<<case "aztec revivalist">>
+							Can my new body be Aztec?"
+					<<case "egyptian revivalist">>
+							Can my new body be Egyptian?"
+					<<case "edo revivalist">>
+							Can my new body be Japanese?"
+					<<case "arabian revivalist">>
+							Can my new body be Arabic?"
+					<<case "chinese revivalist">>
+							Can my new body be Chinese?"
+					<<default>>
+							Can my new body fulfill your deepest desires?"
+				<</switch>>
+				_HeA says with enthusiasm.
+				<<if $arcologies[0].FSSupremacist != "unset">>"Oh, could I also be $arcologies[0].FSSupremacistRace? I feel like I could do so much more for you with the right body."<<elseif $arcologies[0].FSSubjugationist != "unset">>"Oh, could I also not be $arcologies[0].FSSubjugationistRace? I feel like I could do so much more for you with the right body."<</if>>
+			<</replace>>
+		<</link>>
+		<br>&nbsp;&nbsp;&nbsp;&nbsp;<<link "You're overstepping your station.">>
+			<<replace "#result">>
+			_HeA hangs _hisA head in disappointment. "Sorry, <<= properTitle()>>, I went too far, but if you ever reconsider, I've filed the information under my settings."
+			<</replace>>
+		<</link>>
 
 <</switch>>
 
diff --git a/src/personalAssistant/assistantOptions.tw b/src/personalAssistant/assistantOptions.tw
index 20a784c8ab5c0800be7427099e411bb691f2275a..208e524d747e7fa7f02c2c1cea49febac921fe44 100644
--- a/src/personalAssistant/assistantOptions.tw
+++ b/src/personalAssistant/assistantOptions.tw
@@ -36,7 +36,7 @@ Seated at your desk, you glance at the visual representation of
 <<run App.UI.tabbar.handlePreSelectedTab($tabChoice.Assistant)>>
 
 <button class="tablinks" onclick="App.UI.tabbar.openTab(event, 'upgrades')" id="tab upgrades">Computer Core Upgrades</button>
-<<if def $assistant.options>>
+<<if $week >= 11>>
 	<button class="tablinks" onclick="App.UI.tabbar.openTab(event, 'settings')" id="tab settings">Settings</button>
 	<<if $assistant.personality != 0>>
 		<button class="tablinks" onclick="App.UI.tabbar.openTab(event, 'appearance')" id="tab appearance">Appearance</button>
diff --git a/src/pregmod/widgets/bodyswapWidgets.tw b/src/pregmod/widgets/bodyswapWidgets.tw
index 7b439aae9033b7b45d030da8689bd548324fb8d4..ec290653ad3e65ed2e52427acdf222655d89e5dd 100644
--- a/src/pregmod/widgets/bodyswapWidgets.tw
+++ b/src/pregmod/widgets/bodyswapWidgets.tw
@@ -160,6 +160,7 @@
 <<set $args[0].wombImplant = $args[1].wombImplant>>
 <<set $args[0].ovaImplant = $args[1].ovaImplant>>
 <<set $args[0].geneticQuirks = $args[1].geneticQuirks>>
+<<set $args[0].albinismOverride = $args[1].albinismOverride>>
 
 <<set $args[0].canRecruit = 0>>
 
diff --git a/src/uncategorized/endWeek.tw b/src/uncategorized/endWeek.tw
index 83ad350ef9f9f827eecd936e31aa3de9881dcfc3..1bfc864e39a9f7a0a3d259e2dfc5e047905e0bec 100644
--- a/src/uncategorized/endWeek.tw
+++ b/src/uncategorized/endWeek.tw
@@ -141,7 +141,7 @@
 <</if>>
 /% End section: ensure minimum age is set. %/
 
-<<set $TSS.schoolSale = 0, $GRI.schoolSale = 0, $SCP.schoolSale = 0, $LDE.schoolSale = 0, $TGA.schoolSale = 0, $HA.schoolSale = 0, $TFS.schoolSale = 0, $TCR.schoolSale = 0, $NUL.schoolSale = 0, $showEncyclopedia = 0, $racialVarieties = [], $shelterGirlsIDs = [], $cashLastWeek = $cash, $repLastWeek = $rep, $foodLastWeek = $food>>
+<<set $TSS.schoolSale = 0, $GRI.schoolSale = 0, $SCP.schoolSale = 0, $LDE.schoolSale = 0, $TGA.schoolSale = 0, $HA.schoolSale = 0, $TFS.schoolSale = 0, $TCR.schoolSale = 0, $NUL.schoolSale = 0, $showEncyclopedia = 0, $shelterGirlsIDs = [], $cashLastWeek = $cash, $repLastWeek = $rep, $foodLastWeek = $food>>
 
 <<if $foodMarket > 0>>
 	<<set $foodConsumption = (($lowerClass*$foodRate.lower) + ($middleClass*$foodRate.middle) + ($upperClass*$foodRate.upper) + ($topClass*$foodRate.top))>>
diff --git a/src/uncategorized/neighborsDevelopment.tw b/src/uncategorized/neighborsDevelopment.tw
index cafa23a3c15ed4dc45203ccfd3e6baae07915b72..0a756d9fa999454c03c40585fbd9c1a92d44fad2 100644
--- a/src/uncategorized/neighborsDevelopment.tw
+++ b/src/uncategorized/neighborsDevelopment.tw
@@ -637,23 +637,23 @@ has an estimated GSP of @@.yellowgreen;<<print cashFormat(_prosperity)>><<if $sh
 <<set _societiesAdopted = FutureSocieties.activeCount($i)>>
 <<switch $arcologies[$i].government>>
 <<case "elected officials">>
-	<<set $efficiency = random(-2,2)>>
+	<<set _efficiency = random(-2,2)>>
 <<case "a committee">>
-	<<set $efficiency = random(-1,2)>>
+	<<set _efficiency = random(-1,2)>>
 <<case "an oligarchy" "your trustees">>
-	<<set $efficiency = random(-1,3)>>
+	<<set _efficiency = random(-1,3)>>
 <<case "an individual">>
-	<<set $efficiency = random(-1,5)>>
+	<<set _efficiency = random(-1,5)>>
 <<case "your agent">>
-	<<set $efficiency = _agentBonus + random(-1,1)>>
+	<<set _efficiency = _agentBonus + random(-1,1)>>
 <<case "a corporation">>
-	<<set $efficiency = random(1,2)>>
+	<<set _efficiency = random(1,2)>>
 <<default>>
-	<<set $efficiency = random(-3,3)>>
+	<<set _efficiency = random(-3,3)>>
 <</switch>>
 
 <<if $arcologies[$i].rival == 1>>
-	<<set $efficiency += random(0,2)>>
+	<<set _efficiency += random(0,2)>>
 <</if>>
 
 <<set _FSCrossThresh = 5>>
@@ -665,7 +665,7 @@ has an estimated GSP of @@.yellowgreen;<<print cashFormat(_prosperity)>><<if $sh
 <</if>>
 
 <<if $arcologies[$i].direction != 0>>
-	<<run FutureSocieties.applyBroadProgress($i, $efficiency)>>
+	<<run FutureSocieties.applyBroadProgress($i, _efficiency)>>
 <</if>>
 <<if $arcologies[$i].FSSupremacist != "unset">>
 	<<for $j = 0; $j < $arcologies.length; $j++>>
@@ -1960,19 +1960,19 @@ has an estimated GSP of @@.yellowgreen;<<print cashFormat(_prosperity)>><<if $sh
 <<if $arcologies[$j].influenceTarget == $arcologies[$i].direction>>
 
 <<set $arcologies[$j].influenceBonus = Math.clamp($arcologies[$j].influenceBonus, 0, $FSLockinLevel)>>
-<<set $appliedInfluenceBonus = Math.trunc($arcologies[$j].influenceBonus*0.1)>>
-<<set $arcologies[$j].influenceBonus -= $appliedInfluenceBonus*2>>
+<<set _appliedInfluenceBonus = Math.trunc($arcologies[$j].influenceBonus*0.1)>>
+<<set $arcologies[$j].influenceBonus -= _appliedInfluenceBonus*2>>
 <<if $CulturalOpenness == 1>>
 	<<if ($arcologies[$i].direction == 0) || ($arcologies[$j].direction == 0)>>
-		<<set $appliedInfluenceBonus *= 2>>
+		<<set _appliedInfluenceBonus *= 2>>
 	<</if>>
 <<elseif $CulturalOpenness == -1>>
 	<<if ($arcologies[$i].direction == 0) || ($arcologies[$j].direction == 0)>>
-		<<set $appliedInfluenceBonus /= 2>>
+		<<set _appliedInfluenceBonus /= 2>>
 	<</if>>
 <</if>>
 <<if $arcologies[$i].ownership >= 100>>
-	<<set $appliedInfluenceBonus /= 2>>
+	<<set _appliedInfluenceBonus /= 2>>
 <</if>>
 <<set $desc = []>>
 <<set _alignment = 0>>
@@ -1980,361 +1980,361 @@ has an estimated GSP of @@.yellowgreen;<<print cashFormat(_prosperity)>><<if $sh
 <<if $arcologies[$j].FSSubjugationist > 60>>
 	<<if ($arcologies[$i].FSSubjugationist != "unset")>>
 		<<if ($arcologies[$j].FSSubjugationistRace == $arcologies[$i].FSSubjugationistRace)>>
-			<<set $arcologies[$i].FSSubjugationist += Math.trunc(($arcologies[$j].FSSubjugationist-60)/4)+$appliedInfluenceBonus>>
+			<<set $arcologies[$i].FSSubjugationist += Math.trunc(($arcologies[$j].FSSubjugationist-60)/4)+_appliedInfluenceBonus>>
 			<<if $arcologies[$i].FSSubjugationist > $FSLockinLevel>><<set _alignment += 1>><</if>>
 			<<set $desc.push("helping to advance its racially aligned Subjugationism")>>
 		<<else>>
-			<<set $arcologies[$i].FSSubjugationist -= Math.trunc(($arcologies[$j].FSSubjugationist-60)/4)+$appliedInfluenceBonus>>
+			<<set $arcologies[$i].FSSubjugationist -= Math.trunc(($arcologies[$j].FSSubjugationist-60)/4)+_appliedInfluenceBonus>>
 			<<set $desc.push("attacking its incompatible Subjugationism")>>
 		<</if>>
 	<<elseif ($arcologies[$i].FSSupremacist != "unset") && ($arcologies[$j].FSSubjugationistRace == $arcologies[$i].FSSupremacistRace)>>
-		<<set $arcologies[$i].FSSupremacist -= Math.trunc(($arcologies[$j].FSSubjugationist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSSupremacist -= Math.trunc(($arcologies[$j].FSSubjugationist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its opposing Supremacism")>>
 	<</if>>
 <</if>>
 <<if $arcologies[$j].FSSupremacist > 60>>
 	<<if ($arcologies[$i].FSSupremacist != "unset")>>
 		<<if ($arcologies[$j].FSSupremacistRace == $arcologies[$i].FSSupremacistRace)>>
-			<<set $arcologies[$i].FSSupremacist += Math.trunc(($arcologies[$j].FSSupremacist-60)/4)+$appliedInfluenceBonus>>
+			<<set $arcologies[$i].FSSupremacist += Math.trunc(($arcologies[$j].FSSupremacist-60)/4)+_appliedInfluenceBonus>>
 			<<if $arcologies[$i].FSSupremacist > $FSLockinLevel>><<set _alignment += 1>><</if>>
 			<<set $desc.push("helping to advance its racially aligned Supremacism")>>
 		<<else>>
-			<<set $arcologies[$i].FSSupremacist -= Math.trunc(($arcologies[$j].FSSupremacist-60)/4)+$appliedInfluenceBonus>>
+			<<set $arcologies[$i].FSSupremacist -= Math.trunc(($arcologies[$j].FSSupremacist-60)/4)+_appliedInfluenceBonus>>
 			<<set $desc.push("attacking its incompatible Supremacism")>>
 		<</if>>
 	<<elseif ($arcologies[$i].FSSubjugationist != "unset") && ($arcologies[$j].FSSupremacistRace == $arcologies[$i].FSSubjugationistRace)>>
-		<<set $arcologies[$i].FSSubjugationist -= Math.trunc(($arcologies[$j].FSSupremacist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSSubjugationist -= Math.trunc(($arcologies[$j].FSSupremacist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its opposing Subjugationism")>>
 	<</if>>
 <</if>>
 <<if $arcologies[$j].FSRepopulationFocus > 60>>
 	<<if $arcologies[$i].FSRepopulationFocus != "unset">>
-		<<set $arcologies[$i].FSRepopulationFocus += Math.trunc(($arcologies[$j].FSRepopulationFocus-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSRepopulationFocus += Math.trunc(($arcologies[$j].FSRepopulationFocus-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSRepopulationFocus > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Repopulationism")>>
 	<<elseif $arcologies[$i].FSRestart != "unset">>
-		<<set $arcologies[$i].FSRestart -= Math.trunc(($arcologies[$j].FSRepopulationFocus-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSRestart -= Math.trunc(($arcologies[$j].FSRepopulationFocus-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its Eugenics")>>
 	<</if>>
 <<elseif $arcologies[$j].FSRestart > 60>>
 	<<if $arcologies[$i].FSRestart != "unset">>
-		<<set $arcologies[$i].FSRestart += Math.trunc(($arcologies[$j].FSRestart-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSRestart += Math.trunc(($arcologies[$j].FSRestart-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSRestart > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Eugenics")>>
 	<<elseif $arcologies[$i].FSRepopulationFocus != "unset">>
-		<<set $arcologies[$i].FSRepopulationFocus -= Math.trunc(($arcologies[$j].FSRestart-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSRepopulationFocus -= Math.trunc(($arcologies[$j].FSRestart-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its Repopulation Efforts")>>
 	<</if>>
 <</if>>
 <<if $arcologies[$j].FSGenderRadicalist > 60>>
 	<<if $arcologies[$i].FSGenderRadicalist != "unset">>
-		<<set $arcologies[$i].FSGenderRadicalist += Math.trunc(($arcologies[$j].FSGenderRadicalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSGenderRadicalist += Math.trunc(($arcologies[$j].FSGenderRadicalist-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSGenderRadicalist > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Gender Radicalism")>>
 	<<elseif $arcologies[$i].FSGenderFundamentalist != "unset">>
-		<<set $arcologies[$i].FSGenderFundamentalist -= Math.trunc(($arcologies[$j].FSGenderRadicalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSGenderFundamentalist -= Math.trunc(($arcologies[$j].FSGenderRadicalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its Gender Fundamentalism")>>
 	<</if>>
 <<elseif $arcologies[$j].FSGenderFundamentalist > 60>>
 	<<if $arcologies[$i].FSGenderFundamentalist != "unset">>
-		<<set $arcologies[$i].FSGenderFundamentalist += Math.trunc(($arcologies[$j].FSGenderFundamentalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSGenderFundamentalist += Math.trunc(($arcologies[$j].FSGenderFundamentalist-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSGenderFundamentalist > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Gender Fundamentalism")>>
 	<<elseif $arcologies[$i].FSGenderRadicalist != "unset">>
-		<<set $arcologies[$i].FSGenderRadicalist -= Math.trunc(($arcologies[$j].FSGenderFundamentalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSGenderRadicalist -= Math.trunc(($arcologies[$j].FSGenderFundamentalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its Gender Radicalism")>>
 	<</if>>
 <</if>>
 <<if $arcologies[$j].FSPaternalist > 60>>
 	<<if $arcologies[$i].FSPaternalist != "unset">>
-		<<set $arcologies[$i].FSPaternalist += Math.trunc(($arcologies[$j].FSPaternalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSPaternalist += Math.trunc(($arcologies[$j].FSPaternalist-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSPaternalist > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Paternalism")>>
 	<<elseif $arcologies[$i].FSDegradationist != "unset">>
-		<<set $arcologies[$i].FSDegradationist -= Math.trunc(($arcologies[$j].FSPaternalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSDegradationist -= Math.trunc(($arcologies[$j].FSPaternalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its Degradationism")>>
 	<</if>>
 <<elseif $arcologies[$j].FSDegradationist > 60>>
 	<<if $arcologies[$i].FSDegradationist != "unset">>
-		<<set $arcologies[$i].FSDegradationist += Math.trunc(($arcologies[$j].FSDegradationist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSDegradationist += Math.trunc(($arcologies[$j].FSDegradationist-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSDegradationist > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Degradationism")>>
 	<<elseif $arcologies[$i].FSPaternalist != "unset">>
-		<<set $arcologies[$i].FSPaternalist -= Math.trunc(($arcologies[$j].FSDegradationist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSPaternalist -= Math.trunc(($arcologies[$j].FSDegradationist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its Paternalism")>>
 	<</if>>
 <</if>>
 <<if $arcologies[$j].FSIntellectualDependency > 60>>
 	<<if $arcologies[$i].FSIntellectualDependency != "unset">>
-		<<set $arcologies[$i].FSIntellectualDependency += Math.trunc(($arcologies[$j].FSIntellectualDependency-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSIntellectualDependency += Math.trunc(($arcologies[$j].FSIntellectualDependency-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSIntellectualDependency > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Intellectual Dependency")>>
 	<<elseif $arcologies[$i].FSSlaveProfessionalism != "unset">>
-		<<set $arcologies[$i].FSSlaveProfessionalism -= Math.trunc(($arcologies[$j].FSIntellectualDependency-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSSlaveProfessionalism -= Math.trunc(($arcologies[$j].FSIntellectualDependency-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its Slave Professionalism")>>
 	<</if>>
 <<elseif $arcologies[$j].FSSlaveProfessionalism > 60>>
 	<<if $arcologies[$i].FSSlaveProfessionalism != "unset">>
-		<<set $arcologies[$i].FSSlaveProfessionalism += Math.trunc(($arcologies[$j].FSSlaveProfessionalism-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSSlaveProfessionalism += Math.trunc(($arcologies[$j].FSSlaveProfessionalism-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSSlaveProfessionalism > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Slave Professionalism")>>
 	<<elseif $arcologies[$i].FSIntellectualDependency != "unset">>
-		<<set $arcologies[$i].FSIntellectualDependency -= Math.trunc(($arcologies[$j].FSSlaveProfessionalism-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSIntellectualDependency -= Math.trunc(($arcologies[$j].FSSlaveProfessionalism-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its Intellectual Dependency")>>
 	<</if>>
 <</if>>
 <<if $arcologies[$j].FSBodyPurist > 60>>
 	<<if $arcologies[$i].FSBodyPurist != "unset">>
-		<<set $arcologies[$i].FSBodyPurist += Math.trunc(($arcologies[$j].FSBodyPurist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSBodyPurist += Math.trunc(($arcologies[$j].FSBodyPurist-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSBodyPurist > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Body Purism")>>
 	<<elseif $arcologies[$i].FSTransformationFetishist != "unset">>
-		<<set $arcologies[$i].FSTransformationFetishist -= Math.trunc(($arcologies[$j].FSBodyPurist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSTransformationFetishist -= Math.trunc(($arcologies[$j].FSBodyPurist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its Transformation Fetishism")>>
 	<</if>>
 <<elseif $arcologies[$j].FSTransformationFetishist > 60>>
 	<<if $arcologies[$i].FSTransformationFetishist != "unset">>
-		<<set $arcologies[$i].FSTransformationFetishist += Math.trunc(($arcologies[$j].FSTransformationFetishist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSTransformationFetishist += Math.trunc(($arcologies[$j].FSTransformationFetishist-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSTransformationFetishist > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Transformation Fetishism")>>
 	<<elseif $arcologies[$i].FSBodyPurist != "unset">>
-		<<set $arcologies[$i].FSBodyPurist -= Math.trunc(($arcologies[$j].FSTransformationFetishist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSBodyPurist -= Math.trunc(($arcologies[$j].FSTransformationFetishist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its Body Purism")>>
 	<</if>>
 <</if>>
 <<if $arcologies[$j].FSYouthPreferentialist > 60>>
 	<<if $arcologies[$i].FSYouthPreferentialist != "unset">>
-		<<set $arcologies[$i].FSYouthPreferentialist += Math.trunc(($arcologies[$j].FSYouthPreferentialist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSYouthPreferentialist += Math.trunc(($arcologies[$j].FSYouthPreferentialist-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSYouthPreferentialist > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Youth Preferentialism")>>
 	<<elseif $arcologies[$i].FSMaturityPreferentialist != "unset">>
-		<<set $arcologies[$i].FSMaturityPreferentialist -= Math.trunc(($arcologies[$j].FSYouthPreferentialist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSMaturityPreferentialist -= Math.trunc(($arcologies[$j].FSYouthPreferentialist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its Maturity Preferentialism")>>
 	<</if>>
 <<elseif $arcologies[$j].FSMaturityPreferentialist > 60>>
 	<<if $arcologies[$i].FSMaturityPreferentialist != "unset">>
-		<<set $arcologies[$i].FSMaturityPreferentialist += Math.trunc(($arcologies[$j].FSMaturityPreferentialist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSMaturityPreferentialist += Math.trunc(($arcologies[$j].FSMaturityPreferentialist-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSMaturityPreferentialist > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Maturity Preferentialism")>>
 	<<elseif $arcologies[$i].FSYouthPreferentialist != "unset">>
-		<<set $arcologies[$i].FSYouthPreferentialist -= Math.trunc(($arcologies[$j].FSMaturityPreferentialist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSYouthPreferentialist -= Math.trunc(($arcologies[$j].FSMaturityPreferentialist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its Youth Preferentialism")>>
 	<</if>>
 <</if>>
 <<if $arcologies[$j].FSPetiteAdmiration > 60>>
 	<<if $arcologies[$i].FSPetiteAdmiration != "unset">>
-		<<set $arcologies[$i].FSPetiteAdmiration += Math.trunc(($arcologies[$j].FSPetiteAdmiration-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSPetiteAdmiration += Math.trunc(($arcologies[$j].FSPetiteAdmiration-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSPetiteAdmiration > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Petite Admiration")>>
 	<<elseif $arcologies[$i].FSStatuesqueGlorification != "unset">>
-		<<set $arcologies[$i].FSStatuesqueGlorification -= Math.trunc(($arcologies[$j].FSPetiteAdmiration-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSStatuesqueGlorification -= Math.trunc(($arcologies[$j].FSPetiteAdmiration-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its Statuesque Glorification")>>
 	<</if>>
 <<elseif $arcologies[$j].FSStatuesqueGlorification > 60>>
 	<<if $arcologies[$i].FSStatuesqueGlorification != "unset">>
-		<<set $arcologies[$i].FSStatuesqueGlorification += Math.trunc(($arcologies[$j].FSStatuesqueGlorification-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSStatuesqueGlorification += Math.trunc(($arcologies[$j].FSStatuesqueGlorification-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSStatuesqueGlorification > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Statuesque Glorification")>>
 	<<elseif $arcologies[$i].FSPetiteAdmiration != "unset">>
-		<<set $arcologies[$i].FSPetiteAdmiration -= Math.trunc(($arcologies[$j].FSStatuesqueGlorification-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSPetiteAdmiration -= Math.trunc(($arcologies[$j].FSStatuesqueGlorification-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its Petite Admiration")>>
 	<</if>>
 <</if>>
 <<if $arcologies[$j].FSSlimnessEnthusiast > 60>>
 	<<if $arcologies[$i].FSSlimnessEnthusiast != "unset">>
-		<<set $arcologies[$i].FSSlimnessEnthusiast += Math.trunc(($arcologies[$j].FSSlimnessEnthusiast-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSSlimnessEnthusiast += Math.trunc(($arcologies[$j].FSSlimnessEnthusiast-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSSlimnessEnthusiast > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Slimness Enthusiasm")>>
 	<<elseif $arcologies[$i].FSAssetExpansionist != "unset">>
-		<<set $arcologies[$i].FSAssetExpansionist -= Math.trunc(($arcologies[$j].FSSlimnessEnthusiast-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSAssetExpansionist -= Math.trunc(($arcologies[$j].FSSlimnessEnthusiast-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its Asset Expansionism")>>
 	<</if>>
 <<elseif $arcologies[$j].FSAssetExpansionist > 60>>
 	<<if $arcologies[$i].FSAssetExpansionist != "unset">>
-		<<set $arcologies[$i].FSAssetExpansionist += Math.trunc(($arcologies[$j].FSAssetExpansionist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSAssetExpansionist += Math.trunc(($arcologies[$j].FSAssetExpansionist-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSAssetExpansionist > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Asset Expansionism")>>
 	<<elseif $arcologies[$i].FSSlimnessEnthusiast != "unset">>
-		<<set $arcologies[$i].FSSlimnessEnthusiast -= Math.trunc(($arcologies[$j].FSAssetExpansionist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSSlimnessEnthusiast -= Math.trunc(($arcologies[$j].FSAssetExpansionist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its Slimness Enthusiasm")>>
 	<</if>>
 <</if>>
 <<if $arcologies[$j].FSPastoralist > 60>>
 	<<if $arcologies[$i].FSPastoralist != "unset">>
-		<<set $arcologies[$i].FSPastoralist += Math.trunc(($arcologies[$j].FSPastoralist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSPastoralist += Math.trunc(($arcologies[$j].FSPastoralist-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSPastoralist > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Pastoralism")>>
 	<<elseif $arcologies[$i].FSCummunism != "unset">>
-		<<set $arcologies[$i].FSCummunism -= Math.trunc(($arcologies[$j].FSPastoralist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSCummunism -= Math.trunc(($arcologies[$j].FSPastoralist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its Cummunism")>>
 	<</if>>
 <<elseif $arcologies[$j].FSCummunism > 60>>
 	<<if $arcologies[$i].FSCummunism != "unset">>
-		<<set $arcologies[$i].FSCummunism += Math.trunc(($arcologies[$j].FSCummunism-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSCummunism += Math.trunc(($arcologies[$j].FSCummunism-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSCummunism > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Cummunism")>>
 	<<elseif $arcologies[$i].FSPastoralist != "unset">>
-		<<set $arcologies[$i].FSPastoralist -= Math.trunc(($arcologies[$j].FSCummunism-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSPastoralist -= Math.trunc(($arcologies[$j].FSCummunism-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its Pastoralism")>>
 	<</if>>
 <</if>>
 <<if $arcologies[$j].FSPhysicalIdealist > 60>>
 	<<if $arcologies[$i].FSPhysicalIdealist != "unset">>
-		<<set $arcologies[$i].FSPhysicalIdealist += Math.trunc(($arcologies[$j].FSPhysicalIdealist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSPhysicalIdealist += Math.trunc(($arcologies[$j].FSPhysicalIdealist-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSPhysicalIdealist > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Physical Idealism")>>
 	<<elseif $arcologies[$i].FSHedonisticDecadence != "unset">>
-		<<set $arcologies[$i].FSHedonisticDecadence -= Math.trunc(($arcologies[$j].FSPhysicalIdealist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSHedonisticDecadence -= Math.trunc(($arcologies[$j].FSPhysicalIdealist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its Hedonism")>>
 	<</if>>
 <<elseif $arcologies[$j].FSHedonisticDecadence > 60>>
 	<<if $arcologies[$i].FSHedonisticDecadence != "unset">>
-		<<set $arcologies[$i].FSHedonisticDecadence += Math.trunc(($arcologies[$j].FSHedonisticDecadence-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSHedonisticDecadence += Math.trunc(($arcologies[$j].FSHedonisticDecadence-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSHedonisticDecadence > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Hedonism")>>
 	<<elseif $arcologies[$i].FSPhysicalIdealist != "unset">>
-		<<set $arcologies[$i].FSPhysicalIdealist -= Math.trunc(($arcologies[$j].FSHedonisticDecadence-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSPhysicalIdealist -= Math.trunc(($arcologies[$j].FSHedonisticDecadence-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its Physical Idealism")>>
 	<</if>>
 <</if>>
 <<if $arcologies[$j].FSIncestFetishist > 60>>
 	<<if $arcologies[$i].FSIncestFetishist != "unset">>
-		<<set $arcologies[$i].FSIncestFetishist += Math.trunc(($arcologies[$j].FSIncestFetishist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSIncestFetishist += Math.trunc(($arcologies[$j].FSIncestFetishist-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSIncestFetishist > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Incest Fetishism")>>
 	<</if>>
 <</if>>
 <<if $arcologies[$j].FSChattelReligionist > 60>>
 	<<if $arcologies[$i].FSChattelReligionist != "unset">>
-		<<set $arcologies[$i].FSChattelReligionist += Math.trunc(($arcologies[$j].FSChattelReligionist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSChattelReligionist += Math.trunc(($arcologies[$j].FSChattelReligionist-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSChattelReligionist > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Chattel Religionism")>>
 	<</if>>
 <</if>>
 <<if $arcologies[$j].FSRomanRevivalist > 60>>
 	<<if $arcologies[$i].FSRomanRevivalist != "unset">>
-		<<set $arcologies[$i].FSRomanRevivalist += Math.trunc(($arcologies[$j].FSRomanRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSRomanRevivalist += Math.trunc(($arcologies[$j].FSRomanRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSRomanRevivalist > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Roman Revivalism")>>
 	<<elseif $arcologies[$i].FSAztecRevivalist != "unset">>
-		<<set $arcologies[$i].FSAztecRevivalist -= Math.trunc(($arcologies[$j].FSRomanRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSAztecRevivalist -= Math.trunc(($arcologies[$j].FSRomanRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<<elseif $arcologies[$i].FSEgyptianRevivalist != "unset">>
-		<<set $arcologies[$i].FSEgyptianRevivalist -= Math.trunc(($arcologies[$j].FSRomanRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSEgyptianRevivalist -= Math.trunc(($arcologies[$j].FSRomanRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<<elseif $arcologies[$i].FSEdoRevivalist != "unset">>
-		<<set $arcologies[$i].FSEdoRevivalist -= Math.trunc(($arcologies[$j].FSRomanRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSEdoRevivalist -= Math.trunc(($arcologies[$j].FSRomanRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<<elseif $arcologies[$i].FSArabianRevivalist != "unset">>
-		<<set $arcologies[$i].FSArabianRevivalist -= Math.trunc(($arcologies[$j].FSRomanRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSArabianRevivalist -= Math.trunc(($arcologies[$j].FSRomanRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<<elseif $arcologies[$i].FSChineseRevivalist != "unset">>
-		<<set $arcologies[$i].FSChineseRevivalist -= Math.trunc(($arcologies[$j].FSRomanRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSChineseRevivalist -= Math.trunc(($arcologies[$j].FSRomanRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<</if>>
 <<elseif $arcologies[$j].FSAztecRevivalist > 60>>
 	<<if $arcologies[$i].FSAztecRevivalist != "unset">>
-		<<set $arcologies[$i].FSAztecRevivalist += Math.trunc(($arcologies[$j].FSAztecRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSAztecRevivalist += Math.trunc(($arcologies[$j].FSAztecRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSAztecRevivalist > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Aztec Revivalism")>>
 	<<elseif $arcologies[$i].FSRomanRevivalist != "unset">>
-		<<set $arcologies[$i].FSRomanRevivalist -= Math.trunc(($arcologies[$j].FSAztecRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSRomanRevivalist -= Math.trunc(($arcologies[$j].FSAztecRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<<elseif $arcologies[$i].FSEgyptianRevivalist != "unset">>
-		<<set $arcologies[$i].FSEgyptianRevivalist -= Math.trunc(($arcologies[$j].FSAztecRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSEgyptianRevivalist -= Math.trunc(($arcologies[$j].FSAztecRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<<elseif $arcologies[$i].FSEdoRevivalist != "unset">>
-		<<set $arcologies[$i].FSEdoRevivalist -= Math.trunc(($arcologies[$j].FSAztecRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSEdoRevivalist -= Math.trunc(($arcologies[$j].FSAztecRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<<elseif $arcologies[$i].FSArabianRevivalist != "unset">>
-		<<set $arcologies[$i].FSArabianRevivalist -= Math.trunc(($arcologies[$j].FSAztecRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSArabianRevivalist -= Math.trunc(($arcologies[$j].FSAztecRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<<elseif $arcologies[$i].FSChineseRevivalist != "unset">>
-		<<set $arcologies[$i].FSChineseRevivalist -= Math.trunc(($arcologies[$j].FSAztecRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSChineseRevivalist -= Math.trunc(($arcologies[$j].FSAztecRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<</if>>
 <<elseif $arcologies[$j].FSEgyptianRevivalist > 60>>
 	<<if $arcologies[$i].FSEgyptianRevivalist != "unset">>
-		<<set $arcologies[$i].FSEgyptianRevivalist += Math.trunc(($arcologies[$j].FSEgyptianRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSEgyptianRevivalist += Math.trunc(($arcologies[$j].FSEgyptianRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSEgyptianRevivalist > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Egyptian Revivalism")>>
 	<<elseif $arcologies[$i].FSRomanRevivalist != "unset">>
-		<<set $arcologies[$i].FSRomanRevivalist -= Math.trunc(($arcologies[$j].FSEgyptianRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSRomanRevivalist -= Math.trunc(($arcologies[$j].FSEgyptianRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<<elseif $arcologies[$i].FSAztecRevivalist != "unset">>
-		<<set $arcologies[$i].FSAztecRevivalist -= Math.trunc(($arcologies[$j].FSEgyptianRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSAztecRevivalist -= Math.trunc(($arcologies[$j].FSEgyptianRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<<elseif $arcologies[$i].FSEdoRevivalist != "unset">>
-		<<set $arcologies[$i].FSEdoRevivalist -= Math.trunc(($arcologies[$j].FSEgyptianRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSEdoRevivalist -= Math.trunc(($arcologies[$j].FSEgyptianRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<<elseif $arcologies[$i].FSArabianRevivalist != "unset">>
-		<<set $arcologies[$i].FSArabianRevivalist -= Math.trunc(($arcologies[$j].FSEgyptianRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSArabianRevivalist -= Math.trunc(($arcologies[$j].FSEgyptianRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<<elseif $arcologies[$i].FSChineseRevivalist != "unset">>
-		<<set $arcologies[$i].FSChineseRevivalist -= Math.trunc(($arcologies[$j].FSEgyptianRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSChineseRevivalist -= Math.trunc(($arcologies[$j].FSEgyptianRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<</if>>
 <<elseif $arcologies[$j].FSEdoRevivalist > 60>>
 	<<if $arcologies[$i].FSEdoRevivalist != "unset">>
-		<<set $arcologies[$i].FSEdoRevivalist += Math.trunc(($arcologies[$j].FSEdoRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSEdoRevivalist += Math.trunc(($arcologies[$j].FSEdoRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSEdoRevivalist > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Edo Revivalism")>>
 	<<elseif $arcologies[$i].FSEgyptianRevivalist != "unset">>
-		<<set $arcologies[$i].FSEgyptianRevivalist -= Math.trunc(($arcologies[$j].FSEdoRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSEgyptianRevivalist -= Math.trunc(($arcologies[$j].FSEdoRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<<elseif $arcologies[$i].FSRomanRevivalist != "unset">>
-		<<set $arcologies[$i].FSRomanRevivalist -= Math.trunc(($arcologies[$j].FSEdoRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSRomanRevivalist -= Math.trunc(($arcologies[$j].FSEdoRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<<elseif $arcologies[$i].FSAztecRevivalist != "unset">>
-		<<set $arcologies[$i].FSAztecRevivalist -= Math.trunc(($arcologies[$j].FSEdoRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSAztecRevivalist -= Math.trunc(($arcologies[$j].FSEdoRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<<elseif $arcologies[$i].FSArabianRevivalist != "unset">>
-		<<set $arcologies[$i].FSArabianRevivalist -= Math.trunc(($arcologies[$j].FSEdoRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSArabianRevivalist -= Math.trunc(($arcologies[$j].FSEdoRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<<elseif $arcologies[$i].FSChineseRevivalist != "unset">>
-		<<set $arcologies[$i].FSChineseRevivalist -= Math.trunc(($arcologies[$j].FSEdoRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSChineseRevivalist -= Math.trunc(($arcologies[$j].FSEdoRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<</if>>
 <<elseif $arcologies[$j].FSArabianRevivalist > 60>>
 	<<if $arcologies[$i].FSArabianRevivalist != "unset">>
-		<<set $arcologies[$i].FSArabianRevivalist += Math.trunc(($arcologies[$j].FSArabianRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSArabianRevivalist += Math.trunc(($arcologies[$j].FSArabianRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSArabianRevivalist > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Arabian Revivalism")>>
 	<<elseif $arcologies[$i].FSEgyptianRevivalist != "unset">>
-		<<set $arcologies[$i].FSEgyptianRevivalist -= Math.trunc(($arcologies[$j].FSArabianRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSEgyptianRevivalist -= Math.trunc(($arcologies[$j].FSArabianRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<<elseif $arcologies[$i].FSEdoRevivalist != "unset">>
-		<<set $arcologies[$i].FSEdoRevivalist -= Math.trunc(($arcologies[$j].FSArabianRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSEdoRevivalist -= Math.trunc(($arcologies[$j].FSArabianRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<<elseif $arcologies[$i].FSRomanRevivalist != "unset">>
-		<<set $arcologies[$i].FSRomanRevivalist -= Math.trunc(($arcologies[$j].FSArabianRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSRomanRevivalist -= Math.trunc(($arcologies[$j].FSArabianRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<<elseif $arcologies[$i].FSAztecRevivalist != "unset">>
-		<<set $arcologies[$i].FSAztecRevivalist -= Math.trunc(($arcologies[$j].FSArabianRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSAztecRevivalist -= Math.trunc(($arcologies[$j].FSArabianRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<<elseif $arcologies[$i].FSChineseRevivalist != "unset">>
-		<<set $arcologies[$i].FSChineseRevivalist -= Math.trunc(($arcologies[$j].FSArabianRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSChineseRevivalist -= Math.trunc(($arcologies[$j].FSArabianRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<</if>>
 <<elseif $arcologies[$j].FSChineseRevivalist > 60>>
 	<<if $arcologies[$i].FSChineseRevivalist != "unset">>
-		<<set $arcologies[$i].FSChineseRevivalist += Math.trunc(($arcologies[$j].FSChineseRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSChineseRevivalist += Math.trunc(($arcologies[$j].FSChineseRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<if $arcologies[$i].FSChineseRevivalist > $FSLockinLevel>><<set _alignment += 1>><</if>>
 		<<set $desc.push("helping to advance its Chinese Revivalism")>>
 	<<elseif $arcologies[$i].FSEgyptianRevivalist != "unset">>
-		<<set $arcologies[$i].FSEgyptianRevivalist -= Math.trunc(($arcologies[$j].FSChineseRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSEgyptianRevivalist -= Math.trunc(($arcologies[$j].FSChineseRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<<elseif $arcologies[$i].FSEdoRevivalist != "unset">>
-		<<set $arcologies[$i].FSEdoRevivalist -= Math.trunc(($arcologies[$j].FSChineseRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSEdoRevivalist -= Math.trunc(($arcologies[$j].FSChineseRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<<elseif $arcologies[$i].FSArabianRevivalist != "unset">>
-		<<set $arcologies[$i].FSArabianRevivalist -= Math.trunc(($arcologies[$j].FSChineseRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSArabianRevivalist -= Math.trunc(($arcologies[$j].FSChineseRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<<elseif $arcologies[$i].FSRomanRevivalist != "unset">>
-		<<set $arcologies[$i].FSRomanRevivalist -= Math.trunc(($arcologies[$j].FSChineseRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSRomanRevivalist -= Math.trunc(($arcologies[$j].FSChineseRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<<elseif $arcologies[$i].FSAztecRevivalist != "unset">>
-		<<set $arcologies[$i].FSAztecRevivalist -= Math.trunc(($arcologies[$j].FSChineseRevivalist-60)/4)+$appliedInfluenceBonus>>
+		<<set $arcologies[$i].FSAztecRevivalist -= Math.trunc(($arcologies[$j].FSChineseRevivalist-60)/4)+_appliedInfluenceBonus>>
 		<<set $desc.push("attacking its incompatible Revivalism")>>
 	<</if>>
 <</if>>
@@ -2356,15 +2356,15 @@ has an estimated GSP of @@.yellowgreen;<<print cashFormat(_prosperity)>><<if $sh
 	'' $arcologies[$j].name'''s culture is beginning to influence $arcologies[$i].name's $desc[0].
 <</if>>
 
-<<if $appliedInfluenceBonus < 0>>
-	<<if $appliedInfluenceBonus < 5>>
+<<if _appliedInfluenceBonus < 0>>
+	<<if _appliedInfluenceBonus < 5>>
 		$arcologies[$j].name is societally advanced, giving it extra influence.
 	<<else>>
 		$arcologies[$j].name is societally fanatical, lending it great influence.
 	<</if>>
 <</if>>
 <<if $arcologies[$i].ownership >= 100>>
-	<<if $appliedInfluenceBonus < 0>>However, <</if>>$arcologies[$i].name is under completely unified control, making it resistant to change.
+	<<if _appliedInfluenceBonus < 0>>However, <</if>>$arcologies[$i].name is under completely unified control, making it resistant to change.
 <</if>>
 
 <<if $arcologies[$j].direction != 0>>
diff --git a/src/uncategorized/nextWeek.tw b/src/uncategorized/nextWeek.tw
index dbf164ad6043eed5fa6d702b6d8d770972cc1901..62e78c4cdbf36345293438ffd33b29acbabb3f98 100644
--- a/src/uncategorized/nextWeek.tw
+++ b/src/uncategorized/nextWeek.tw
@@ -342,7 +342,7 @@
 <<set $boobsID = -1, $boobsInterestTargetID = -1, $buttslutID = -1, $buttslutInterestTargetID = -1, $cumslutID = -1, $cumslutInterestTargetID = -1, $humiliationID = -1, $humiliationInterestTargetID = -1, $sadistID = -1, $sadistInterestTargetID = -1, $masochistID = -1, $masochistInterestTargetID = -1, $domID = -1, $dominantInterestTargetID = -1, $subID = -1, $submissiveInterestTargetID = -1>>
 
 /% Other arrays %/
-<<set $events = [], $RESSevent = [], $RESSTRevent = [], $RETSevent = [], $RECIevent = [], $RecETSevent = [], $REFIevent = [], $REFSevent = [], $PESSevent = [], $PETSevent = [], $FSAcquisitionEvents = [], $FSNonconformistEvents = [], $qualifiedNicknames = [], $REAnalCowgirlSubIDs = [], $REButtholeCheckinIDs = [], $recruit = [], $RETasteTestSubIDs = [], $devotedSlaves = [], $rebelSlaves = [], $REBoobCollisionSubIDs = [], $REIfYouEnjoyItSubIDs = [], $RESadisticDescriptionSubIDs = [], $REShowerForceSubIDs = [], $RESimpleAssaultIDs = [], $RECockmilkInterceptionIDs = [], $REInterslaveBeggingIDs = [], $bedSlaves = [], $qualifiedFS = [], $eligibleSlaves = [], $slavesInLine = []>>
+<<set $events = [], $RESSevent = [], $RESSTRevent = [], $RETSevent = [], $RECIevent = [], $RecETSevent = [], $REFIevent = [], $REFSevent = [], $PESSevent = [], $PETSevent = [], $FSAcquisitionEvents = [], $FSNonconformistEvents = [], $REAnalCowgirlSubIDs = [], $REButtholeCheckinIDs = [], $recruit = [], $RETasteTestSubIDs = [], $devotedSlaves = [], $rebelSlaves = [], $REBoobCollisionSubIDs = [], $REIfYouEnjoyItSubIDs = [], $RESadisticDescriptionSubIDs = [], $REShowerForceSubIDs = [], $RESimpleAssaultIDs = [], $RECockmilkInterceptionIDs = [], $REInterslaveBeggingIDs = [], $bedSlaves = [], $qualifiedFS = [], $eligibleSlaves = [], $slavesInLine = []>>
 
 /% Slave Objects using 0 instead of null. Second most memory eaten up. %/
 <<set $activeSlave = 0, $eventSlave = 0, $slaveWithoutBonuses = 0, $subSlave = 0, $milkTap = 0, $relation = 0, $relative = 0, $relative2 = 0>>
@@ -351,7 +351,7 @@
 <<set $beforeGingering = null>>
 
 /% Strings Memory varies. %/
-<<set $analSkinDesc = "", $applyDesc = "", $bellyAccessory = "", $buyer = "", $desc = "", $event = "", $goto = "", $malefactor = "", $nickname = "", $notApplyDesc = "", $oldName = "", $oldSurname = "", $situationDesc = "", $skinDesc = "", $k = "">>
+<<set $analSkinDesc = "", $bellyAccessory = "", $buyer = "", $desc = "", $event = "", $goto = "", $malefactor = "", $oldName = "", $oldSurname = "", $skinDesc = "", $k = "">>
 /% Done with zeroing out, what should be for the most part Temps %/
 
 <<run clearSummaryCache()>>
diff --git a/src/uncategorized/nonRandomEvent.tw b/src/uncategorized/nonRandomEvent.tw
index fa2d5da47731c7e54c8158f556862400b43c8aac..71d6335e10664faa06dce7691734d19c00d11158 100644
--- a/src/uncategorized/nonRandomEvent.tw
+++ b/src/uncategorized/nonRandomEvent.tw
@@ -122,7 +122,7 @@
 	<<goto "eliteTakeOver">>
 <<elseif (_effectiveWeek > 5) && ($rep > 3000) && ($FSAnnounced == 0)>>
 	<<goto "P FS Announcement">>
-<<elseif _effectiveWeek > 18 && $assistant.personality > 0>>
+<<elseif _effectiveWeek > 18 && $assistant.personality > 0 && !$assistant.options>>
 	<<set $Event = "assistant SP">>
 	<<goto "Assistant Events">>
 <<elseif (_effectiveWeek > 45) && ($bodyswapAnnounced == 0) && ($surgeryUpgrade == 1)>>
@@ -131,7 +131,7 @@
 	<<goto "P peacekeepers intro">>
 <<elseif ($arcologies[0].prosperity > 80) && ($TSS.schoolPresent+$GRI.schoolPresent+$SCP.schoolPresent+$LDE.schoolPresent+$TGA.schoolPresent+$HA.schoolPresent+$TFS.schoolPresent+$TCR.schoolPresent+$NUL.schoolPresent == 0) && ($schoolSuggestion == 0)>>
 	<<goto "P school suggestion">>
-<<elseif (def $assistant.fsOptions) && $assistant.personality > 0 && $assistant.appearance != "normal" && FutureSocieties.HighestDecoration() >= 40>>
+<<elseif ($assistant.fsOptions !== 1) && $assistant.personality > 0 && $assistant.appearance != "normal" && FutureSocieties.HighestDecoration() >= 40>>
 	<<set $Event = "assistant FS">>
 	<<goto "Assistant Events">>
 <<elseif $assistant.personality > 0 && !$assistant.announcedName && $assistant.power > 0>>
diff --git a/src/uncategorized/reBusyMasterSuite.tw b/src/uncategorized/reBusyMasterSuite.tw
index b68d497b4899afffec5cbb6d79366583fe136da3..5da0fa2794025b098cb686cead62cc7e7b1e9116 100644
--- a/src/uncategorized/reBusyMasterSuite.tw
+++ b/src/uncategorized/reBusyMasterSuite.tw
@@ -114,8 +114,12 @@
 
 /* and now describe what the non-participating slaves are doing */
 <<set _nonparticipants = _msSlaves.filter((s) => s.mode === "none").map((s) => s.slave)>>
-<p><<print _nonparticipants.map((s) => s.slaveName).reduce((res, ch, i, arr) => res + (i === arr.length - 1 ? ' and ' : ', ') + ch)>> can't participate in the train, so $Concubine.slaveName has them busy lying under the slaves who are, offering what oral stimulation they can manage.</p>
-<<run _nonparticipants.forEach((s) => actX(s, "oral"))>>
+<<if _nonparticipants.length > 0>>
+	<p>
+		<<print _nonparticipants.map((s) => s.slaveName).reduce((res, ch, i, arr) => res + (i === arr.length - 1 ? ' and ' : ', ') + ch)>> can't participate in the train, so $Concubine.slaveName has them busy lying under the slaves who are, offering what oral stimulation they can manage.
+	</p>
+	<<run _nonparticipants.forEach((s) => actX(s, "oral"))>>
+<</if>>
 
 <<set _top = _msSlaves.slice().reverse().find((s) => s.mode !== "none")>>
 
diff --git a/src/uncategorized/reNickname.tw b/src/uncategorized/reNickname.tw
index 0a661e97003476be98dbe114c6692de24554ee4f..98f1a4ad9774a395617ec44e8e1840e2aa59cce5 100644
--- a/src/uncategorized/reNickname.tw
+++ b/src/uncategorized/reNickname.tw
@@ -12,1231 +12,1231 @@
 
 /* NICKNAME QUALIFICATION CHECKS */
 
-<<set $qualifiedNicknames = []>>
+<<set _qualifiedNicknames = []>>
 
 <<if ($activeSlave.nationality != 0)>>
-	<<set $qualifiedNicknames.push("nationality")>>
+	<<set _qualifiedNicknames.push("nationality")>>
 <</if>>
 
 <<if ($seeRace == 1)>>
 	<<switch $activeSlave.race>>
 	<<case "amerindian">>
-		<<set $qualifiedNicknames.push("amerindian")>>
+		<<set _qualifiedNicknames.push("amerindian")>>
 	<<case "asian">>
-		<<set $qualifiedNicknames.push("asian")>>
+		<<set _qualifiedNicknames.push("asian")>>
 	<<case "black">>
-		<<set $qualifiedNicknames.push("black")>>
+		<<set _qualifiedNicknames.push("black")>>
 	<<case "indo-aryan">>
-		<<set $qualifiedNicknames.push("indo-aryan")>>
+		<<set _qualifiedNicknames.push("indo-aryan")>>
 	<<case "latina">>
-		<<set $qualifiedNicknames.push("latina")>>
+		<<set _qualifiedNicknames.push("latina")>>
 	<<case "malay">>
-		<<set $qualifiedNicknames.push("malay")>>
+		<<set _qualifiedNicknames.push("malay")>>
 	<<case "middle eastern">>
-		<<set $qualifiedNicknames.push("middle eastern")>>
+		<<set _qualifiedNicknames.push("middle eastern")>>
 	<<case "mixed race">>
-		<<set $qualifiedNicknames.push("mixed race")>>
+		<<set _qualifiedNicknames.push("mixed race")>>
 	<<case "pacific islander">>
-		<<set $qualifiedNicknames.push("pacific islander")>>
+		<<set _qualifiedNicknames.push("pacific islander")>>
 	<<case "semitic">>
-		<<set $qualifiedNicknames.push("semitic")>>
+		<<set _qualifiedNicknames.push("semitic")>>
 	<<case "southern european">>
-		<<set $qualifiedNicknames.push("southern european")>>
+		<<set _qualifiedNicknames.push("southern european")>>
 	<<case "white">>
-		<<set $qualifiedNicknames.push("white")>>
+		<<set _qualifiedNicknames.push("white")>>
 	<</switch>>
 <</if>>
 
 <<if ($activeSlave.boobs < 500) && ($activeSlave.butt < 3) && ($activeSlave.weight <= 10)>>
-	<<set $qualifiedNicknames.push("girlish")>>
+	<<set _qualifiedNicknames.push("girlish")>>
 <</if>>
 <<if ($activeSlave.boobs <= 300)>>
-	<<set $qualifiedNicknames.push("flat")>>
+	<<set _qualifiedNicknames.push("flat")>>
 <</if>>
 <<if ($activeSlave.anus > 2) || ($activeSlave.vagina > 2)>>
-	<<set $qualifiedNicknames.push("loose")>>
+	<<set _qualifiedNicknames.push("loose")>>
 <</if>>
 <<if ($activeSlave.boobs < 500) && ($activeSlave.butt < 3) && ($activeSlave.dick > 0)>>
-	<<set $qualifiedNicknames.push("trap")>>
+	<<set _qualifiedNicknames.push("trap")>>
 <</if>>
 <<if ($activeSlave.boobs > 500) && ($activeSlave.butt > 3) && ($activeSlave.dick > 0)>>
-	<<set $qualifiedNicknames.push("trans")>>
+	<<set _qualifiedNicknames.push("trans")>>
 <</if>>
 <<if ($activeSlave.weight > 30)>>
-	<<set $qualifiedNicknames.push("chubby")>>
+	<<set _qualifiedNicknames.push("chubby")>>
 <</if>>
 <<if ($activeSlave.weight > 100)>>
-	<<set $qualifiedNicknames.push("fat")>>
+	<<set _qualifiedNicknames.push("fat")>>
 <</if>>
 <<if ($activeSlave.muscles > 30)>>
-	<<set $qualifiedNicknames.push("muscles")>>
+	<<set _qualifiedNicknames.push("muscles")>>
 <</if>>
 <<if ($activeSlave.energy > 95)>>
 	<<if $activeSlave.anus > 1>>
-		<<set $qualifiedNicknames.push("buttslut")>>
+		<<set _qualifiedNicknames.push("buttslut")>>
 	<</if>>
-	<<set $qualifiedNicknames.push("cumslut")>>
-	<<set $qualifiedNicknames.push("humiliation")>>
-	<<set $qualifiedNicknames.push("submissive")>>
+	<<set _qualifiedNicknames.push("cumslut")>>
+	<<set _qualifiedNicknames.push("humiliation")>>
+	<<set _qualifiedNicknames.push("submissive")>>
 <</if>>
 <<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
 	<<switch $activeSlave.fetish>>
 	<<case "buttslut">>
 		<<if $activeSlave.anus > 0>>
-			<<set $qualifiedNicknames.push("buttslut")>>
+			<<set _qualifiedNicknames.push("buttslut")>>
 		<<else>>
-			<<set $qualifiedNicknames.push("butt toy")>>
+			<<set _qualifiedNicknames.push("butt toy")>>
 		<</if>>
 	<<case "cumslut">>
-		<<set $qualifiedNicknames.push("cumslut")>>
+		<<set _qualifiedNicknames.push("cumslut")>>
 	<<case "humiliation">>
-		<<set $qualifiedNicknames.push("humiliation")>>
+		<<set _qualifiedNicknames.push("humiliation")>>
 	<<case "submissive">>
-		<<set $qualifiedNicknames.push("submissive")>>
+		<<set _qualifiedNicknames.push("submissive")>>
 	<</switch>>
 <</if>>
 <<if ($activeSlave.counter.oral+$activeSlave.counter.vaginal+$activeSlave.counter.anal > 500)>>
-	<<set $qualifiedNicknames.push("veteran")>>
+	<<set _qualifiedNicknames.push("veteran")>>
 <</if>>
 <<if (($activeSlave.boobs*$activeSlave.lactation) > 1000)>>
-	<<set $qualifiedNicknames.push("cow")>>
+	<<set _qualifiedNicknames.push("cow")>>
 <</if>>
 <<if ($activeSlave.skill.oral <= 30) && ($activeSlave.skill.anal <= 30)>>
-	<<set $qualifiedNicknames.push("novice")>>
+	<<set _qualifiedNicknames.push("novice")>>
 <</if>>
 <<if ($activeSlave.ID == $HeadGirl.ID)>>
-	<<set $qualifiedNicknames.push("Head Girl")>>
+	<<set _qualifiedNicknames.push("Head Girl")>>
 <</if>>
 <<if ($activeSlave.ID == $Bodyguard.ID)>>
-	<<set $qualifiedNicknames.push("Bodyguard")>>
+	<<set _qualifiedNicknames.push("Bodyguard")>>
 <</if>>
 <<if ($activeSlave.ID == $Concubine.ID)>>
-	<<set $qualifiedNicknames.push("Concubine")>>
+	<<set _qualifiedNicknames.push("Concubine")>>
 <</if>>
 <<if ($activeSlave.ID == $Attendant.ID)>>
-	<<set $qualifiedNicknames.push("Attendant")>>
+	<<set _qualifiedNicknames.push("Attendant")>>
 <</if>>
 <<if ($activeSlave.ID == $Matron.ID)>>
-	<<set $qualifiedNicknames.push("Matron")>>
+	<<set _qualifiedNicknames.push("Matron")>>
 <</if>>
 <<if ($activeSlave.ID == $Madam.ID)>>
-	<<set $qualifiedNicknames.push("Madam")>>
+	<<set _qualifiedNicknames.push("Madam")>>
 <</if>>
 <<if ($activeSlave.ID == $DJ.ID)>>
-	<<set $qualifiedNicknames.push("DJ")>>
+	<<set _qualifiedNicknames.push("DJ")>>
 <</if>>
 <<if ($activeSlave.ID == $Recruiter.ID)>>
-	<<set $qualifiedNicknames.push("Recruiter")>>
+	<<set _qualifiedNicknames.push("Recruiter")>>
 <</if>>
 <<if ($activeSlave.ID == $Wardeness.ID)>>
-	<<set $qualifiedNicknames.push("Wardeness")>>
+	<<set _qualifiedNicknames.push("Wardeness")>>
 <</if>>
 <<if ($activeSlave.ID == $Milkmaid.ID)>>
-	<<set $qualifiedNicknames.push("Milkmaid")>>
+	<<set _qualifiedNicknames.push("Milkmaid")>>
 <</if>>
 <<if ($activeSlave.ID == $Farmer.ID)>>
-	<<set $qualifiedNicknames.push("Farmer")>>
+	<<set _qualifiedNicknames.push("Farmer")>>
 <</if>>
 <<if ($activeSlave.ID == $Milkmaid.ID) && $activeSlave.dick > 5 && canPenetrate($activeSlave) && $cumSlaves > 3>>
-	<<set $qualifiedNicknames.push("Collectrix")>>
+	<<set _qualifiedNicknames.push("Collectrix")>>
 <</if>>
 <<if ($activeSlave.ID == $Stewardess.ID)>>
-	<<set $qualifiedNicknames.push("Stewardess")>>
+	<<set _qualifiedNicknames.push("Stewardess")>>
 <</if>>
 <<if ($activeSlave.ID == $Schoolteacher.ID)>>
-	<<set $qualifiedNicknames.push("Schoolteacher")>>
+	<<set _qualifiedNicknames.push("Schoolteacher")>>
 <</if>>
 <<if ($activeSlave.ID == $Nurse.ID)>>
-	<<set $qualifiedNicknames.push("Nurse")>>
+	<<set _qualifiedNicknames.push("Nurse")>>
 <</if>>
 
 <<if ($activeSlave.ID == $Lurcher.ID)>>
-	<<set $qualifiedNicknames.push("Lurcher")>>
+	<<set _qualifiedNicknames.push("Lurcher")>>
 <</if>>
 <<if ($activeSlave.assignment == "be a subordinate slave")>>
-	<<set $qualifiedNicknames.push("server")>>
+	<<set _qualifiedNicknames.push("server")>>
 <</if>>
 <<if ($activeSlave.nipples == "huge") || ($activeSlave.nipples == "puffy")>>
-	<<set $qualifiedNicknames.push("nipples")>>
+	<<set _qualifiedNicknames.push("nipples")>>
 <<elseif ($activeSlave.nipples == "fuckable")>>
-	<<set $qualifiedNicknames.push("nippleCunts")>>
+	<<set _qualifiedNicknames.push("nippleCunts")>>
 <</if>>
 <<if ($activeSlave.areolae > 2)>>
-	<<set $qualifiedNicknames.push("areolae")>>
+	<<set _qualifiedNicknames.push("areolae")>>
 <</if>>
 <<if ($activeSlave.lips > 40)>>
-	<<set $qualifiedNicknames.push("lips")>>
+	<<set _qualifiedNicknames.push("lips")>>
 <</if>>
 <<if ($activeSlave.labia > 1) && ($activeSlave.vagina > -1)>>
-	<<set $qualifiedNicknames.push("labia")>>
+	<<set _qualifiedNicknames.push("labia")>>
 <</if>>
 <<if ($activeSlave.physicalAge < 18)>>
-	<<set $qualifiedNicknames.push("young")>>
+	<<set _qualifiedNicknames.push("young")>>
 <</if>>
 <<if ($activeSlave.physicalAge > 35)>>
-	<<set $qualifiedNicknames.push("old")>>
+	<<set _qualifiedNicknames.push("old")>>
 <</if>>
 <<if ($activeSlave.physicalAge > 59)>>
-	<<set $qualifiedNicknames.push("reallyold")>>
+	<<set _qualifiedNicknames.push("reallyold")>>
 <</if>>
 <<if (isAmputee($activeSlave))>>
-	<<set $qualifiedNicknames.push("amp")>>
+	<<set _qualifiedNicknames.push("amp")>>
 <</if>>
 <<if ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60 || ($activeSlave.buttImplant/$activeSlave.butt) > .60>>
-	<<set $qualifiedNicknames.push("implants")>>
+	<<set _qualifiedNicknames.push("implants")>>
 <</if>>
 <<if ($activeSlave.boobsImplant >= 750) && ($activeSlave.boobsImplant/$activeSlave.boobs) >= .60 && ($activeSlave.buttImplant >= 2) && ($activeSlave.buttImplant/$activeSlave.butt) > .60 && ($activeSlave.lipsImplant >= 10) && ($activeSlave.lipsImplant/$activeSlave.lips) > .30 && ($activeSlave.intelligence+$activeSlave.intelligenceImplant < -15)>>
-	<<set $qualifiedNicknames.push("bimbo")>>
+	<<set _qualifiedNicknames.push("bimbo")>>
 <</if>>
 <<if ($activeSlave.intelligence+$activeSlave.intelligenceImplant < -50)>>
-	<<set $qualifiedNicknames.push("stupid")>>
+	<<set _qualifiedNicknames.push("stupid")>>
 <</if>>
 <<if ($activeSlave.intelligence+$activeSlave.intelligenceImplant > 50)>>
-	<<set $qualifiedNicknames.push("smart")>>
+	<<set _qualifiedNicknames.push("smart")>>
 <</if>>
 <<if getBestVision($activeSlave) === 0>>
-	<<set $qualifiedNicknames.push("blind")>>
+	<<set _qualifiedNicknames.push("blind")>>
 <</if>>
 <<if ($activeSlave.hears <= -2)>>
-	<<set $qualifiedNicknames.push("deaf")>>
+	<<set _qualifiedNicknames.push("deaf")>>
 <</if>>
 <<if ($activeSlave.voice == 0)>>
-	<<set $qualifiedNicknames.push("mute")>>
+	<<set _qualifiedNicknames.push("mute")>>
 <</if>>
 <<if $activeSlave.breedingMark == 1 && $propOutcome == 1 && $arcologies[0].FSRestart != "unset">>
-	<<set $qualifiedNicknames.push("mark")>>
+	<<set _qualifiedNicknames.push("mark")>>
 <</if>>
 <<if ($activeSlave.broodmother > 1) && ($activeSlave.preg >= 37)>>
-	<<set $qualifiedNicknames.push("hyperbroodmother")>>
+	<<set _qualifiedNicknames.push("hyperbroodmother")>>
 <</if>>
 <<if ($activeSlave.broodmother == 1) && ($activeSlave.preg >= 37)>>
-	<<set $qualifiedNicknames.push("broodmother")>>
+	<<set _qualifiedNicknames.push("broodmother")>>
 <</if>>
 <<if ($activeSlave.bellyPreg >= 300000)>>
-	<<set $qualifiedNicknames.push("hyperpreg")>>
+	<<set _qualifiedNicknames.push("hyperpreg")>>
 <</if>>
 <<if ($activeSlave.bellyPreg >= 30000) && ($activeSlave.boobs >= 5000) && ($activeSlave.butt > 5) && ($activeSlave.hips >= 2) && ($activeSlave.weight < 100)>>
-	<<set $qualifiedNicknames.push("fertilityGoddess")>>
+	<<set _qualifiedNicknames.push("fertilityGoddess")>>
 <</if>>
 <<if ($activeSlave.dick > 5) && ($activeSlave.balls > 5) && ($activeSlave.counter.slavesKnockedUp > 4)>>
-	<<set $qualifiedNicknames.push("babymaker")>>
+	<<set _qualifiedNicknames.push("babymaker")>>
 <</if>>
 <<if ($activeSlave.prostate > 2) && ($activeSlave.dick == 0) && ($activeSlave.vagina > -1)>>
-	<<set $qualifiedNicknames.push("superSquirter")>>
+	<<set _qualifiedNicknames.push("superSquirter")>>
 <</if>>
 <<if ($activeSlave.bellyPreg >= 100) && ($activeSlave.pregKnown == 1)>>
-	<<set $qualifiedNicknames.push("preg")>>
+	<<set _qualifiedNicknames.push("preg")>>
 <</if>>
 <<if ($activeSlave.dick > 4)>>
-	<<set $qualifiedNicknames.push("hung")>>
+	<<set _qualifiedNicknames.push("hung")>>
 <</if>>
 <<if ($activeSlave.dick > 0) && ($activeSlave.balls == 0)>>
-	<<set $qualifiedNicknames.push("gelding")>>
+	<<set _qualifiedNicknames.push("gelding")>>
 <</if>>
 <<if ($activeSlave.dick == 1)>>
-	<<set $qualifiedNicknames.push("micropenis")>>
+	<<set _qualifiedNicknames.push("micropenis")>>
 <</if>>
 <<if ($activeSlave.boobs >= 800)>>
-	<<set $qualifiedNicknames.push("boobs")>>
+	<<set _qualifiedNicknames.push("boobs")>>
 <</if>>
 <<if ($activeSlave.butt > 5)>>
-	<<set $qualifiedNicknames.push("butt")>>
+	<<set _qualifiedNicknames.push("butt")>>
 <</if>>
 <<if ($activeSlave.vagina == 0)>>
-	<<set $qualifiedNicknames.push("virgin")>>
+	<<set _qualifiedNicknames.push("virgin")>>
 <</if>>
 <<if ($activeSlave.height >= 185)>>
-	<<set $qualifiedNicknames.push("tall")>>
+	<<set _qualifiedNicknames.push("tall")>>
 <</if>>
 <<if ($activeSlave.height < 150)>>
-	<<set $qualifiedNicknames.push("short")>>
+	<<set _qualifiedNicknames.push("short")>>
 <</if>>
 <<if ($activeSlave.vagina == 1) && ($activeSlave.skill.vaginal <= 10)>>
-	<<set $qualifiedNicknames.push("vaginalWhiner")>>
+	<<set _qualifiedNicknames.push("vaginalWhiner")>>
 <</if>>
 <<if ($activeSlave.anus == 1) && ($activeSlave.skill.anal <= 10)>>
-	<<set $qualifiedNicknames.push("analWhiner")>>
+	<<set _qualifiedNicknames.push("analWhiner")>>
 <</if>>
 <<if ($activeSlave.vagina == -1) && ($activeSlave.dick == 0) && ($activeSlave.balls == 0)>>
-	<<set $qualifiedNicknames.push("null")>>
+	<<set _qualifiedNicknames.push("null")>>
 <</if>>
 
-<<if ($qualifiedNicknames.length == 0)>>
+<<if (_qualifiedNicknames.length == 0)>>
 	<<goto "RIE Eligibility Check">>
 <<else>>
 
-<<set $nickname = $qualifiedNicknames.random()>>
+<<set _nickname = _qualifiedNicknames.random()>>
 
-<<switch $nickname>>
+<<switch _nickname>>
 <<case "nationality">>
 	<<switch $activeSlave.nationality>>
 	<<case "Afghan">>
-		<<set $nickname = either("'Afghan'", "'Afghani'", "'Avagana'", "'Bactrian'", "'Bagram'", "'Chai Girl'", "'Herat'", "'Kabul'", "'Kandahar'", "'Pashtun'", "'Peshawar'", "'Poppy'", "'Rubab'", "'Taliban'")>>
+		<<set _nickname = either("'Afghan'", "'Afghani'", "'Avagana'", "'Bactrian'", "'Bagram'", "'Chai Girl'", "'Herat'", "'Kabul'", "'Kandahar'", "'Pashtun'", "'Peshawar'", "'Poppy'", "'Rubab'", "'Taliban'")>>
 	<<case "Albanian">>
-		<<set $nickname = either("'Albani'", "'Albanian'", "'Albanoi'", "'Durrës'", "'Eagle Child'", "'Hoxha'", "'Mother Albania'", "'Qemali'", "'Sejdia'", "'Shiptar'", "'Skanderbeg'", "'Tirana'", "'Understanding'", "'White Hills'")>>
+		<<set _nickname = either("'Albani'", "'Albanian'", "'Albanoi'", "'Durrës'", "'Eagle Child'", "'Hoxha'", "'Mother Albania'", "'Qemali'", "'Sejdia'", "'Shiptar'", "'Skanderbeg'", "'Tirana'", "'Understanding'", "'White Hills'")>>
 	<<case "Algerian">>
-		<<set $nickname = either("'Algerian'", "'Algiers'", "'Casbah'", "'Corsair'", "'Daughter of Māzġānna'", "'Djamila'", "'Harki'", "'Hassiba'", "'Oran'", "'Pied-Noir'", "'Sanhaja'", "'Zhora'")>>
+		<<set _nickname = either("'Algerian'", "'Algiers'", "'Casbah'", "'Corsair'", "'Daughter of Māzġānna'", "'Djamila'", "'Harki'", "'Hassiba'", "'Oran'", "'Pied-Noir'", "'Sanhaja'", "'Zhora'")>>
 	<<case "American">>
-		<<set $nickname = either("'American'", "'Amerifat'", "'Apple Pie'", "'Atlanta'", "'Bald Eagle'", "'Baseball'", "'Boston'", "'Burger'", "'California'", "'Chicago'", "'Colonist'", "'Columbia'", "'Cowgirl'", "'Dallas'", "'Detroit'", "'Great Satan'", "'Gun Nut'", "'Hollywood'", "'Houston'", "'Lady Liberty'", "'Las Vegas'", "'Lone Star'", "'Los Angeles'", "'Miami'", "'Murica'", "'New York'", "'Philadelphia'", "'Plymouth'", "'San Francisco'", "'Seattle'", "'Septic'", "'Stars & Stripes'", "'Trump'", "'U.S.A.'", "'Ugly'", "'Uncle Sam'", "'United Statesian'", "'US American'", "'Usonian'", "'Washington'", "'Yank'", "'Yankee'")>>
+		<<set _nickname = either("'American'", "'Amerifat'", "'Apple Pie'", "'Atlanta'", "'Bald Eagle'", "'Baseball'", "'Boston'", "'Burger'", "'California'", "'Chicago'", "'Colonist'", "'Columbia'", "'Cowgirl'", "'Dallas'", "'Detroit'", "'Great Satan'", "'Gun Nut'", "'Hollywood'", "'Houston'", "'Lady Liberty'", "'Las Vegas'", "'Lone Star'", "'Los Angeles'", "'Miami'", "'Murica'", "'New York'", "'Philadelphia'", "'Plymouth'", "'San Francisco'", "'Seattle'", "'Septic'", "'Stars & Stripes'", "'Trump'", "'U.S.A.'", "'Ugly'", "'Uncle Sam'", "'United Statesian'", "'US American'", "'Usonian'", "'Washington'", "'Yank'", "'Yankee'")>>
 	<<case "Andorran">>
-		<<set $nickname = either("'Andor'", "'Andorran'", "'Catalan'", "'Forester'", "'Hell Valley'", "'La Vella'", "'Les Escaldes'", "'Pyrenees'", "'Scrub'", "'Ski Trip'", "'Skossyreff'", "'Urgell'")>>
+		<<set _nickname = either("'Andor'", "'Andorran'", "'Catalan'", "'Forester'", "'Hell Valley'", "'La Vella'", "'Les Escaldes'", "'Pyrenees'", "'Scrub'", "'Ski Trip'", "'Skossyreff'", "'Urgell'")>>
 	<<case "Angolan">>
-		<<set $nickname = either("'Angolan'", "'Baixa de Cassanje'", "'Cabinda'", "'Conqueror'", "'Huambo'", "'Luanda'", "'Matamba'", "'Ndongo'", "'Ngola'", "'Nzinga'")>>
+		<<set _nickname = either("'Angolan'", "'Baixa de Cassanje'", "'Cabinda'", "'Conqueror'", "'Huambo'", "'Luanda'", "'Matamba'", "'Ndongo'", "'Ngola'", "'Nzinga'")>>
 	<<case "Antiguan">>
-		<<set $nickname = either("'All Saints'", "'Ancient'", "'Antiguan'", "'Barbuda'", "'Barbudan'", "'Barbudian'", "'Bearded'", "'Fig Tree'", "'Leeward'", "'Redonda'", "'Seville'", "'St. John's'", "'Virgin of the Old Cathedral'", "'Whitewood'")>>
+		<<set _nickname = either("'All Saints'", "'Ancient'", "'Antiguan'", "'Barbuda'", "'Barbudan'", "'Barbudian'", "'Bearded'", "'Fig Tree'", "'Leeward'", "'Redonda'", "'Seville'", "'St. John's'", "'Virgin of the Old Cathedral'", "'Whitewood'")>>
 	<<case "Argentinian">>
-		<<set $nickname = either("'Argentine'", "'Argentinean'", "'Argentinian'", "'Blanca'", "'Buenos Aires'", "'Córdoba'", "'Evita'", "'Gaucha'", "'Macri'", "'Malvinas'", "'Patagonia'", "'Perón'", "'Silver River'", "'Silvery'")>>
+		<<set _nickname = either("'Argentine'", "'Argentinean'", "'Argentinian'", "'Blanca'", "'Buenos Aires'", "'Córdoba'", "'Evita'", "'Gaucha'", "'Macri'", "'Malvinas'", "'Patagonia'", "'Perón'", "'Silver River'", "'Silvery'")>>
 	<<case "Armenian">>
-		<<set $nickname = either("'Apricot'", "'Aram'", "'Armenian'", "'Armo'", "'Assembler'", "'Duduk'", "'Gyumri'", "'Hachik'", "'Hayastan'", "'Khorovats'", "'Minni Mountain'", "'Mother Armenia'", "'Rabiz'", "'Urmani'", "'Yerevan'")>>
+		<<set _nickname = either("'Apricot'", "'Aram'", "'Armenian'", "'Armo'", "'Assembler'", "'Duduk'", "'Gyumri'", "'Hachik'", "'Hayastan'", "'Khorovats'", "'Minni Mountain'", "'Mother Armenia'", "'Rabiz'", "'Urmani'", "'Yerevan'")>>
 	<<case "Aruban">>
-		<<set $nickname = either("'Aloe Vera'", "'Aruban'", "'Caquetio'", "'Croes'", "'Djucu'", "'Giant'", "'Golden'", "'Oranjestad'", "'Papiamento'", "'Shell'", "'Sint Nicolaas'", "'Well-Placed'")>>
+		<<set _nickname = either("'Aloe Vera'", "'Aruban'", "'Caquetio'", "'Croes'", "'Djucu'", "'Giant'", "'Golden'", "'Oranjestad'", "'Papiamento'", "'Shell'", "'Sint Nicolaas'", "'Well-Placed'")>>
 	<<case "Australian">>
-		<<set $nickname = either("'Abo'", "'Adelaide'", "'Aussie'", "'Australian'", "'Bogan'", "'Brisbane'", "'Bunyip'", "'Canberra'", "'Convict'", "'Crikey'", "'Didgeridoo'", "'Dingo'", "'Down Under'", "'Emu'", "'G'Day'", "'Gold Coast'", "'Incognita'", "'Kangaroo'", "'Mad'", "'Melbourne'", "'New Holland'", "'Oz'", "'Perth'", "'Sheila'", "'Skip'", "'Skippy'", "'Southern Land'", "'Sydney'")>>
+		<<set _nickname = either("'Abo'", "'Adelaide'", "'Aussie'", "'Australian'", "'Bogan'", "'Brisbane'", "'Bunyip'", "'Canberra'", "'Convict'", "'Crikey'", "'Didgeridoo'", "'Dingo'", "'Down Under'", "'Emu'", "'G'Day'", "'Gold Coast'", "'Incognita'", "'Kangaroo'", "'Mad'", "'Melbourne'", "'New Holland'", "'Oz'", "'Perth'", "'Sheila'", "'Skip'", "'Skippy'", "'Southern Land'", "'Sydney'")>>
 	<<case "Austrian">>
-		<<set $nickname = either("'Anschluss'", "'Austrian'", "'Bavarian'", "'Bundesadler'", "'Eastern Realm'", "'Fritzl'", "'Fut'", "'Graz'", "'Innsbruck'", "'Linz'", "'Maria'", "'Österreich'", "'Sharp Mountain'", "'Vienna'", "'Wiener'", "'Willendorf'")>>
+		<<set _nickname = either("'Anschluss'", "'Austrian'", "'Bavarian'", "'Bundesadler'", "'Eastern Realm'", "'Fritzl'", "'Fut'", "'Graz'", "'Innsbruck'", "'Linz'", "'Maria'", "'Österreich'", "'Sharp Mountain'", "'Vienna'", "'Wiener'", "'Willendorf'")>>
 	<<case "Azerbaijani">>
-		<<set $nickname = either("'Arran'", "'Atropatene'", "'Azerbaijani'", "'Azerbaijanian'", "'Azeri'", "'Baku'", "'Balaban'", "'Black January'", "'Caucasian Albania'", "'Ganja'", "'Holy Fire'", "'Musavat'", "'Shirvan'", "'Transcaucasia'")>>
+		<<set _nickname = either("'Arran'", "'Atropatene'", "'Azerbaijani'", "'Azerbaijanian'", "'Azeri'", "'Baku'", "'Balaban'", "'Black January'", "'Caucasian Albania'", "'Ganja'", "'Holy Fire'", "'Musavat'", "'Shirvan'", "'Transcaucasia'")>>
 	<<case "Bahamian">>
-		<<set $nickname = either("'Bahama Mama'", "'Bahamian'", "'Big Upper Middle'", "'Bimini'", "'Castaway'", "'Columbus'", "'Creole'", "'Freeport'", "'Low Tide'", "'Lucayan'", "'Nassau'", "'New Providence'", "'Shallow Seas'", "'Southern Cross'", "'Symonette'", "'Windsor'")>>
+		<<set _nickname = either("'Bahama Mama'", "'Bahamian'", "'Big Upper Middle'", "'Bimini'", "'Castaway'", "'Columbus'", "'Creole'", "'Freeport'", "'Low Tide'", "'Lucayan'", "'Nassau'", "'New Providence'", "'Shallow Seas'", "'Southern Cross'", "'Symonette'", "'Windsor'")>>
 	<<case "Bahraini">>
-		<<set $nickname = either("'Al-Hasa'", "'Arad'", "'Awal'", "'Bahraini'", "'Bahri'", "'Dilmun'", "'Manama'", "'Nestorian'", "'Pearl'", "'Qarmatian'", "'Riffa'", "'Two Seas'", "'Tylos'", "'Zubarah'")>>
+		<<set _nickname = either("'Al-Hasa'", "'Arad'", "'Awal'", "'Bahraini'", "'Bahri'", "'Dilmun'", "'Manama'", "'Nestorian'", "'Pearl'", "'Qarmatian'", "'Riffa'", "'Two Seas'", "'Tylos'", "'Zubarah'")>>
 	<<case "Bangladeshi">>
-		<<set $nickname = either("'Bangamata'", "'Bangla'", "'Bangladeshi'", "'Bengal'", "'Bengalese'", "'Bengali'", "'Bengi'", "'Bengullie'", "'Bennie'", "'Bhang'", "'Bhibhi'", "'Bhola'", "'Chittagong'", "'Deshi'", "'Dhaka'", "'Dotara'", "'East Pakistan'", "'Jackfruit'", "'Joy Bangla'", "'Mujibnagar'", "'Sweatshop'", "'Tiger'", "'Vanga'")>>
+		<<set _nickname = either("'Bangamata'", "'Bangla'", "'Bangladeshi'", "'Bengal'", "'Bengalese'", "'Bengali'", "'Bengi'", "'Bengullie'", "'Bennie'", "'Bhang'", "'Bhibhi'", "'Bhola'", "'Chittagong'", "'Deshi'", "'Dhaka'", "'Dotara'", "'East Pakistan'", "'Jackfruit'", "'Joy Bangla'", "'Mujibnagar'", "'Sweatshop'", "'Tiger'", "'Vanga'")>>
 	<<case "Barbadian">>
-		<<set $nickname = either("'Bajan'", "'Barbadian'", "'Bim'", "'Bimshire'", "'Bridgetown'", "'Fig Tree'", "'Flying Fish'", "'Little England'", "'Speightstown'", "'Sugar Cane'", "'The Rock'")>>
+		<<set _nickname = either("'Bajan'", "'Barbadian'", "'Bim'", "'Bimshire'", "'Bridgetown'", "'Fig Tree'", "'Flying Fish'", "'Little England'", "'Speightstown'", "'Sugar Cane'", "'The Rock'")>>
 	<<case "Belarusian">>
-		<<set $nickname = either("'Belarusian'", "'Bulbash'", "'Draniki'", "'Homel'", "'Homyel'", "'Lukashenko'", "'Mahilyow'", "'Minsk'", "'Ruthenia'", "'Shlyukha'", "'Å liucha'", "'Stalker'", "'White Russian'")>>
+		<<set _nickname = either("'Belarusian'", "'Bulbash'", "'Draniki'", "'Homel'", "'Homyel'", "'Lukashenko'", "'Mahilyow'", "'Minsk'", "'Ruthenia'", "'Shlyukha'", "'Å liucha'", "'Stalker'", "'White Russian'")>>
 	<<case "Belgian">>
-		<<set $nickname = either("'Angry Bulge'", "'Antwerp'", "'Belgae'", "'Belgian'", "'Belgica'", "'Brussels'", "'Dazzling'", "'Liège'", "'Muette de Portici'", "'Sprout'", "'Straatmeid'", "'Truttemie'", "'Waffles'")>>
+		<<set _nickname = either("'Angry Bulge'", "'Antwerp'", "'Belgae'", "'Belgian'", "'Belgica'", "'Brussels'", "'Dazzling'", "'Liège'", "'Muette de Portici'", "'Sprout'", "'Straatmeid'", "'Truttemie'", "'Waffles'")>>
 	<<case "Belizean">>
-		<<set $nickname = either("'Beacon'", "'Belizean'", "'Belmopan'", "'British Honduras'", "'Great Blue Hole'", "'Muddy-Watered'", "'Punta'", "'San Ignacio'", "'Shady'", "'Wallace'")>>
+		<<set _nickname = either("'Beacon'", "'Belizean'", "'Belmopan'", "'British Honduras'", "'Great Blue Hole'", "'Muddy-Watered'", "'Punta'", "'San Ignacio'", "'Shady'", "'Wallace'")>>
 	<<case "Beninese">>
-		<<set $nickname = either("'Abomey-Calavi'", "'Abomey'", "'Ahosi'", "'Balleland'", "'Beninese'", "'Beninois'", "'Bight'", "'Borgu'", "'Cotonou'", "'Dahomey'", "'Mino'", "'Porto-Novo'", "'Tribal'", "'Ubinu'", "'Vexation'")>>
+		<<set _nickname = either("'Abomey-Calavi'", "'Abomey'", "'Ahosi'", "'Balleland'", "'Beninese'", "'Beninois'", "'Bight'", "'Borgu'", "'Cotonou'", "'Dahomey'", "'Mino'", "'Porto-Novo'", "'Tribal'", "'Ubinu'", "'Vexation'")>>
 	<<case "Bermudian">>
-		<<set $nickname = either("'Bermuda Triangle'", "'Bermudan'", "'Bermúdez'", "'Bermudian'", "'Devil'", "'Hamilton'", "'Onion'", "'Portuguese Rock'", "'Sea Venture'", "'St. George's'", "'Wild Hog'")>>
+		<<set _nickname = either("'Bermuda Triangle'", "'Bermudan'", "'Bermúdez'", "'Bermudian'", "'Devil'", "'Hamilton'", "'Onion'", "'Portuguese Rock'", "'Sea Venture'", "'St. George's'", "'Wild Hog'")>>
 	<<case "Bhutanese">>
-		<<set $nickname = either("'Bhutanese'", "'Boutan'", "'Butt'", "'Dragon Queen'", "'Druk'", "'End of Tibet'", "'Gangkhar Puensum'", "'Happiness Report'", "'Highlander'", "'Phuntsholing'", "'Punakha'", "'Takin'", "'Thimphu'", "'Thunder Dragon'")>>
+		<<set _nickname = either("'Bhutanese'", "'Boutan'", "'Butt'", "'Dragon Queen'", "'Druk'", "'End of Tibet'", "'Gangkhar Puensum'", "'Happiness Report'", "'Highlander'", "'Phuntsholing'", "'Punakha'", "'Takin'", "'Thimphu'", "'Thunder Dragon'")>>
 	<<case "Bissau-Guinean">>
-		<<set $nickname = either("'Bafatá'", "'Bissau-Guinean'", "'Bissau'", "'Bissorã'", "'Boe'", "'Bolama'", "'Cabral'", "'Cacheu'", "'Gabu'", "'Gabú'", "'Kaabu'", "'Kansala'", "'Kriol'", "'Portuguese Guinea'", "'Slave Coast'")>>
+		<<set _nickname = either("'Bafatá'", "'Bissau-Guinean'", "'Bissau'", "'Bissorã'", "'Boe'", "'Bolama'", "'Cabral'", "'Cacheu'", "'Gabu'", "'Gabú'", "'Kaabu'", "'Kansala'", "'Kriol'", "'Portuguese Guinea'", "'Slave Coast'")>>
 	<<case "Bolivian">>
-		<<set $nickname = either("'Bolívar'", "'Bolivian'", "'Charango'", "'Charcas'", "'Chuquisaca'", "'El Alto'", "'La Paz'", "'Potosí'", "'Santa Cruz'", "'Sucre'", "'Titicaca'", "'Upper Peru'")>>
+		<<set _nickname = either("'Bolívar'", "'Bolivian'", "'Charango'", "'Charcas'", "'Chuquisaca'", "'El Alto'", "'La Paz'", "'Potosí'", "'Santa Cruz'", "'Sucre'", "'Titicaca'", "'Upper Peru'")>>
 	<<case "Bosnian">>
-		<<set $nickname = either("'Ban Kulin'", "'Banja Luka'", "'Bosniak'", "'Bosnian'", "'Boundary'", "'Brčko'", "'Duke's Land'", "'Herzegovina'", "'Herzegovinian'", "'Izetbegović'", "'Princip'", "'Running Water'", "'Sarajevo'", "'Srebrenica'", "'Stećak'", "'Tvrtko'")>>
+		<<set _nickname = either("'Ban Kulin'", "'Banja Luka'", "'Bosniak'", "'Bosnian'", "'Boundary'", "'Brčko'", "'Duke's Land'", "'Herzegovina'", "'Herzegovinian'", "'Izetbegović'", "'Princip'", "'Running Water'", "'Sarajevo'", "'Srebrenica'", "'Stećak'", "'Tvrtko'")>>
 	<<case "Brazilian">>
-		<<set $nickname = either("'7-1'", "'Amazon'", "'Bauru'", "'Belo Horizonte'", "'Bracile'", "'Brasília'", "'Brazilian'", "'Brazilwood'", "'Bunda'", "'Carmen Miranda'", "'Carnival'", "'Dago'", "'Efígie da República'", "'Favelada'", "'Holy Cross'", "'Hue'", "'Ipanema'", "'Monkey'", "'Palm Tree'", "'Pindorama'", "'Ragamuffin'", "'Red-Wood'", "'Rio de Janeiro'", "'São Paulo'", "'True Cross'", "'Zika'")>>
+		<<set _nickname = either("'7-1'", "'Amazon'", "'Bauru'", "'Belo Horizonte'", "'Bracile'", "'Brasília'", "'Brazilian'", "'Brazilwood'", "'Bunda'", "'Carmen Miranda'", "'Carnival'", "'Dago'", "'Efígie da República'", "'Favelada'", "'Holy Cross'", "'Hue'", "'Ipanema'", "'Monkey'", "'Palm Tree'", "'Pindorama'", "'Ragamuffin'", "'Red-Wood'", "'Rio de Janeiro'", "'São Paulo'", "'True Cross'", "'Zika'")>>
 	<<case "British">>
-		<<set $nickname = either("'Albion'", "'Angle'", "'Big Ben'", "'Birmingham'", "'Brexit'", "'Brigid'", "'Bristol'", "'Brit'", "'Britannia'", "'Britbong'", "'British'", "'Briton'", "'Bulldog'", "'Chav'", "'English'", "'Fish'n'Chips'", "'Gov'nor'", "'Jane Bull'", "'Leeds'", "'Limey'", "'Liverpool'", "'London'", "'Manchester'", "'Northern Irish'", "'Old Fox'", "'Pikey'", "'Pommie'", "'Rosbif'", "'Round Table'", "'Scottish'", "'Scrubber'", "'Slag'", "'Slapper'", "'Welsh'", "'White Cliffs'")>>
+		<<set _nickname = either("'Albion'", "'Angle'", "'Big Ben'", "'Birmingham'", "'Brexit'", "'Brigid'", "'Bristol'", "'Brit'", "'Britannia'", "'Britbong'", "'British'", "'Briton'", "'Bulldog'", "'Chav'", "'English'", "'Fish'n'Chips'", "'Gov'nor'", "'Jane Bull'", "'Leeds'", "'Limey'", "'Liverpool'", "'London'", "'Manchester'", "'Northern Irish'", "'Old Fox'", "'Pikey'", "'Pommie'", "'Rosbif'", "'Round Table'", "'Scottish'", "'Scrubber'", "'Slag'", "'Slapper'", "'Welsh'", "'White Cliffs'")>>
 	<<case "Bruneian">>
-		<<set $nickname = either("'Abode of Peace'", "'Bandar Seri Begawan'", "'Barunah'", "'Bolkiah'", "'Brunei Beauty'", "'Bruneian'", "'Camphor'", "'Chinese Widow'", "'Cockfight'", "'Jerudong'", "'Kinabalu'", "'Kuala Belait'", "'Limbang'", "'Seafarer'", "'Sultan'", "'White Rajah'")>>
+		<<set _nickname = either("'Abode of Peace'", "'Bandar Seri Begawan'", "'Barunah'", "'Bolkiah'", "'Brunei Beauty'", "'Bruneian'", "'Camphor'", "'Chinese Widow'", "'Cockfight'", "'Jerudong'", "'Kinabalu'", "'Kuala Belait'", "'Limbang'", "'Seafarer'", "'Sultan'", "'White Rajah'")>>
 	<<case "Bulgarian">>
-		<<set $nickname = either("'Bulgar'", "'Bulgarian'", "'Disordered'", "'Five Arrows'", "'Gaida'", "'Karanovo'", "'Kubrat'", "'Mother Bulgaria'", "'Nikopol'", "'Pliska'", "'Plovdiv'", "'Sofia'", "'Split Off'", "'Varna'", "'Zhivkov'")>>
+		<<set _nickname = either("'Bulgar'", "'Bulgarian'", "'Disordered'", "'Five Arrows'", "'Gaida'", "'Karanovo'", "'Kubrat'", "'Mother Bulgaria'", "'Nikopol'", "'Pliska'", "'Plovdiv'", "'Sofia'", "'Split Off'", "'Varna'", "'Zhivkov'")>>
 	<<case "Burkinabé">>
-		<<set $nickname = either("'Bobo-Dioulasso'", "'Burkina Fasan'", "'Burkinabé'", "'Compaoré'", "'Dyula'", "'Father's House'", "'Honest'", "'Lamizana'", "'Mossi'", "'Ouagadougou'", "'Sankara'", "'Upper Volta'", "'Upright'")>>
+		<<set _nickname = either("'Bobo-Dioulasso'", "'Burkina Fasan'", "'Burkinabé'", "'Compaoré'", "'Dyula'", "'Father's House'", "'Honest'", "'Lamizana'", "'Mossi'", "'Ouagadougou'", "'Sankara'", "'Upper Volta'", "'Upright'")>>
 	<<case "Burmese">>
-		<<set $nickname = either("'Bamar'", "'Brahma'", "'Burma Shave'", "'Burman'", "'Burmese Python'", "'Burmese'", "'Fast-Strong'", "'Golden Triangle'", "'Irrawaddy'", "'Mandalay'", "'Myanma'", "'Myanmar'", "'Myanmese'", "'Naypyidaw'", "'Pagan'", "'Rangoon'", "'Yangon'")>>
+		<<set _nickname = either("'Bamar'", "'Brahma'", "'Burma Shave'", "'Burman'", "'Burmese Python'", "'Burmese'", "'Fast-Strong'", "'Golden Triangle'", "'Irrawaddy'", "'Mandalay'", "'Myanma'", "'Myanmar'", "'Myanmese'", "'Naypyidaw'", "'Pagan'", "'Rangoon'", "'Yangon'")>>
 	<<case "Burundian">>
-		<<set $nickname = either("'Bagaza'", "'Bujumbura'", "'Burundian'", "'Gitega'", "'Heha'", "'Impunity'", "'Martyazo'", "'Micombero'", "'Muyinga'", "'Ngozi'", "'Rundi'", "'Umurundi'", "'Urundi'")>>
+		<<set _nickname = either("'Bagaza'", "'Bujumbura'", "'Burundian'", "'Gitega'", "'Heha'", "'Impunity'", "'Martyazo'", "'Micombero'", "'Muyinga'", "'Ngozi'", "'Rundi'", "'Umurundi'", "'Urundi'")>>
 	<<case "Cambodian">>
-		<<set $nickname = either("'Angkor Wat'", "'Beauty Enjoyer'", "'Cambodian'", "'Chenla'", "'Holiday in Cambodia'", "'Indochina'", "'Kamboja'", "'Kampuchea'", "'Khmer Rouge'", "'Khmer'", "'Killing Field'", "'Kouprey'", "'Lovek'", "'Naga'", "'Phnom Penh'", "'Pol Pot'", "'Siem Reap'", "'Tuol Sleng'", "'Unshaken'", "'Yasodharapura'")>>
+		<<set _nickname = either("'Angkor Wat'", "'Beauty Enjoyer'", "'Cambodian'", "'Chenla'", "'Holiday in Cambodia'", "'Indochina'", "'Kamboja'", "'Kampuchea'", "'Khmer Rouge'", "'Khmer'", "'Killing Field'", "'Kouprey'", "'Lovek'", "'Naga'", "'Phnom Penh'", "'Pol Pot'", "'Siem Reap'", "'Tuol Sleng'", "'Unshaken'", "'Yasodharapura'")>>
 	<<case "Cameroonian">>
-		<<set $nickname = either("'Africa in Miniature'", "'Bakassi'", "'Bamenda'", "'Biya'", "'Cameroonian'", "'Camfranglais'", "'Douala'", "'Fon'", "'Ghost Shrimp'", "'Kamerun'", "'Shrimp River'", "'Wouri'", "'Yaoundé'")>>
+		<<set _nickname = either("'Africa in Miniature'", "'Bakassi'", "'Bamenda'", "'Biya'", "'Cameroonian'", "'Camfranglais'", "'Douala'", "'Fon'", "'Ghost Shrimp'", "'Kamerun'", "'Shrimp River'", "'Wouri'", "'Yaoundé'")>>
 	<<case "Canadian">>
-		<<set $nickname = either("'Aboot'", "'Acadia'", "'Beaver'", "'Calgary'", "'Canadian'", "'Canadienne'", "'Canuck'", "'Edmonton'", "'Eh'", "'Francisca'", "'Leaf'", "'Loonie'", "'Maple Syrup'", "'Maple'", "'Montreal'", "'Mountie'", "'No Gold'", "'Ottawa'", "'Poutine'", "'Quebec'", "'Toronto'", "'Vancouver'", "'Villager'", "'Winnipeg'", "'Yukon'")>>
+		<<set _nickname = either("'Aboot'", "'Acadia'", "'Beaver'", "'Calgary'", "'Canadian'", "'Canadienne'", "'Canuck'", "'Edmonton'", "'Eh'", "'Francisca'", "'Leaf'", "'Loonie'", "'Maple Syrup'", "'Maple'", "'Montreal'", "'Mountie'", "'No Gold'", "'Ottawa'", "'Poutine'", "'Quebec'", "'Toronto'", "'Vancouver'", "'Villager'", "'Winnipeg'", "'Yukon'")>>
 	<<case "Cape Verdean">>
-		<<set $nickname = either("'Cabo Verde'", "'Cabral'", "'Cap-Vert'", "'Cape Verdean'", "'Cidade Velha'", "'Green Cape'", "'Macronesia'", "'Mindelo'", "'Praia'", "'Ribeira Grande'")>>
+		<<set _nickname = either("'Cabo Verde'", "'Cabral'", "'Cap-Vert'", "'Cape Verdean'", "'Cidade Velha'", "'Green Cape'", "'Macronesia'", "'Mindelo'", "'Praia'", "'Ribeira Grande'")>>
 	<<case "Catalan">>
-		<<set $nickname = either("'Aloja'", "'Banyoles'", "'Barcelona'", "'Battle Chief'", "'Castell'", "'Catalan'", "'Catalonian'", "'Catalufo'", "'Goth'", "'Killer'", "'Lacetani'", "'Nova Planta'", "'Sardana'", "'Segadora'", "'Senyera'", "'Spanish'", "'Xuixo'")>>
+		<<set _nickname = either("'Aloja'", "'Banyoles'", "'Barcelona'", "'Battle Chief'", "'Castell'", "'Catalan'", "'Catalonian'", "'Catalufo'", "'Goth'", "'Killer'", "'Lacetani'", "'Nova Planta'", "'Sardana'", "'Segadora'", "'Senyera'", "'Spanish'", "'Xuixo'")>>
 	<<case "Central African">>
-		<<set $nickname = either("'Abiras'", "'Banana'", "'Bangui'", "'Bimbo'", "'Bokassa'", "'Bouar'", "'C.A.R.'", "'Central African Empire'", "'Central African'", "'Chari'", "'Kolingba'", "'Sango'", "'Ubangi-Shari'", "'Ubangi'")>>
+		<<set _nickname = either("'Abiras'", "'Banana'", "'Bangui'", "'Bimbo'", "'Bokassa'", "'Bouar'", "'C.A.R.'", "'Central African Empire'", "'Central African'", "'Chari'", "'Kolingba'", "'Sango'", "'Ubangi-Shari'", "'Ubangi'")>>
 	<<case "Chadian">>
-		<<set $nickname = either("'Borkou'", "'Chad'", "'Chadian'", "'Déby'", "'Habré'", "'Kanem-Bornu'", "'Lake'", "'Moundou'", "'N'Djamena'", "'Njimi'", "'Tchadienne'", "'Tibesti'", "'Tombalbaye'")>>
+		<<set _nickname = either("'Borkou'", "'Chad'", "'Chadian'", "'Déby'", "'Habré'", "'Kanem-Bornu'", "'Lake'", "'Moundou'", "'N'Djamena'", "'Njimi'", "'Tchadienne'", "'Tibesti'", "'Tombalbaye'")>>
 	<<case "Chilean">>
-		<<set $nickname = either("'Araucaria'", "'Chela'", "'Chilean'", "'Chilli'", "'Chilote'", "'Deep Snow'", "'Doña Juanita'", "'Hausa'", "'Helicopter Ride'", "'Land's End'", "'Pinochet'", "'Poet'", "'Puente Alto'", "'Rapa Nui'", "'Rota'", "'Santiago'", "'Toya'", "'Valparaiso'", "'Valparaíso'", "'Yellow-Winged Blackbird'")>>
+		<<set _nickname = either("'Araucaria'", "'Chela'", "'Chilean'", "'Chilli'", "'Chilote'", "'Deep Snow'", "'Doña Juanita'", "'Hausa'", "'Helicopter Ride'", "'Land's End'", "'Pinochet'", "'Poet'", "'Puente Alto'", "'Rapa Nui'", "'Rota'", "'Santiago'", "'Toya'", "'Valparaiso'", "'Valparaíso'", "'Yellow-Winged Blackbird'")>>
 	<<case "Chinese">>
-		<<set $nickname = either("'Beijing'", "'Boxer'", "'Cathay'", "'Changsha'", "'Chankoro'", "'Chengdu'", "'Chinese'", "'Ching Chong'", "'Chink'", "'Chongqing'", "'Cina'", "'Dalian'", "'Dim Sum'", "'Dongguan'", "'Dragon'", "'Empress'", "'Foshan'", "'Great Wall'", "'Guangzhou'", "'Hangzhou'", "'Harbin'", "'Hefei'", "'Hong Kong'", "'Kowloon'", "'Kung Fu'", "'Lead Toys'", "'Lotus'", "'Macau'", "'Made in China'", "'Manchu'", "'Nanchang'", "'Nanjing'", "'Nanking'", "'Ningbo'", "'Qingdao'", "'Red Dragon'", "'Renmenbi'", "'Shanghai'", "'Shantou'", "'Shenyang'", "'Shenzhen'", "'Silken'", "'Suzhou'", "'Tianjin'", "'Triad'", "'Wenzhou'", "'Wuhan'", "'Xi'an'", "'Xiamen'", "'Zhengzhou'", "'Zhongshan'")>>
+		<<set _nickname = either("'Beijing'", "'Boxer'", "'Cathay'", "'Changsha'", "'Chankoro'", "'Chengdu'", "'Chinese'", "'Ching Chong'", "'Chink'", "'Chongqing'", "'Cina'", "'Dalian'", "'Dim Sum'", "'Dongguan'", "'Dragon'", "'Empress'", "'Foshan'", "'Great Wall'", "'Guangzhou'", "'Hangzhou'", "'Harbin'", "'Hefei'", "'Hong Kong'", "'Kowloon'", "'Kung Fu'", "'Lead Toys'", "'Lotus'", "'Macau'", "'Made in China'", "'Manchu'", "'Nanchang'", "'Nanjing'", "'Nanking'", "'Ningbo'", "'Qingdao'", "'Red Dragon'", "'Renmenbi'", "'Shanghai'", "'Shantou'", "'Shenyang'", "'Shenzhen'", "'Silken'", "'Suzhou'", "'Tianjin'", "'Triad'", "'Wenzhou'", "'Wuhan'", "'Xi'an'", "'Xiamen'", "'Zhengzhou'", "'Zhongshan'")>>
 	<<case "Colombian">>
-		<<set $nickname = either("'Bogotá'", "'Bogotazo'", "'Cafetera'", "'Cali'", "'Coca'", "'Colombian'", "'Columbus'", "'Condor'", "'Crystal'", "'Cundinamarca'", "'El Dorado'", "'FARC'", "'Guatavita'", "'Medellín'", "'New Granada'", "'Pablita Escobar'", "'Violencia'")>>
+		<<set _nickname = either("'Bogotá'", "'Bogotazo'", "'Cafetera'", "'Cali'", "'Coca'", "'Colombian'", "'Columbus'", "'Condor'", "'Crystal'", "'Cundinamarca'", "'El Dorado'", "'FARC'", "'Guatavita'", "'Medellín'", "'New Granada'", "'Pablita Escobar'", "'Violencia'")>>
 	<<case "Comorian">>
-		<<set $nickname = either("'Anjouan'", "'Comoran'", "'Comorian'", "'Great Islander'", "'Karthala'", "'Mayotte'", "'Mohéli'", "'Moon'", "'Moroni'", "'Mutsamudu'")>>
+		<<set _nickname = either("'Anjouan'", "'Comoran'", "'Comorian'", "'Great Islander'", "'Karthala'", "'Mayotte'", "'Mohéli'", "'Moon'", "'Moroni'", "'Mutsamudu'")>>
 	<<case "Congolese">>
-		<<set $nickname = either("'Brazza'", "'Brazzaville'", "'Congolese'", "'French Congo'", "'Kongo'", "'Middle Congo'", "'Mokele-Mbembe'", "'Ngouabi'", "'Nguesso'", "'Pointe-Noire'")>>
+		<<set _nickname = either("'Brazza'", "'Brazzaville'", "'Congolese'", "'French Congo'", "'Kongo'", "'Middle Congo'", "'Mokele-Mbembe'", "'Ngouabi'", "'Nguesso'", "'Pointe-Noire'")>>
 	<<case "a Cook Islander">>
-		<<set $nickname = either("'Aitutaki'", "'Amuri'", "'Arutanga'", "'Avarua'", "'Cook Islander'", "'Cook'", "'Cumberland'", "'Endeavour'", "'Hermosa'", "'Hervey'", "'Māori'", "'Pukapuka'", "'Rarotonga'", "'San Bernardo'", "'Two Harbors'")>>
+		<<set _nickname = either("'Aitutaki'", "'Amuri'", "'Arutanga'", "'Avarua'", "'Cook Islander'", "'Cook'", "'Cumberland'", "'Endeavour'", "'Hermosa'", "'Hervey'", "'Māori'", "'Pukapuka'", "'Rarotonga'", "'San Bernardo'", "'Two Harbors'")>>
 	<<case "Costa Rican">>
-		<<set $nickname = either("'Alajuela'", "'Cartago'", "'Coffee Baron'", "'Costa Rican'", "'Diquís Sphere'", "'Ferrer'", "'Guanacaste'", "'Limón'", "'Mekatelyu'", "'Nicoya'", "'Oxcart'", "'Rich Coast'", "'San José'", "'Tica'")>>
+		<<set _nickname = either("'Alajuela'", "'Cartago'", "'Coffee Baron'", "'Costa Rican'", "'Diquís Sphere'", "'Ferrer'", "'Guanacaste'", "'Limón'", "'Mekatelyu'", "'Nicoya'", "'Oxcart'", "'Rich Coast'", "'San José'", "'Tica'")>>
 	<<case "Croatian">>
-		<<set $nickname = either("'Ban'", "'Baška'", "'Branimir'", "'Croat'", "'Croatian'", "'Horn Armor'", "'Hrvatska'", "'Mountaineer'", "'Pavelić'", "'Split'", "'Starčević'", "'Tito'", "'Tuđman'", "'Ustaše'", "'Zagreb'")>>
+		<<set _nickname = either("'Ban'", "'Baška'", "'Branimir'", "'Croat'", "'Croatian'", "'Horn Armor'", "'Hrvatska'", "'Mountaineer'", "'Pavelić'", "'Split'", "'Starčević'", "'Tito'", "'Tuđman'", "'Ustaše'", "'Zagreb'")>>
 	<<case "Cuban">>
-		<<set $nickname = either("'Batista'", "'Bay of Pigs'", "'Bayamo'", "'Blockade'", "'Camagüey'", "'Castro'", "'Cienfuegos'", "'Cigars'", "'Commie'", "'Cuban'", "'Gitmo'", "'Great Place'", "'Guantanamo'", "'Guevara'", "'Havana'", "'Martí'", "'Missile Crisis'", "'Santiago'", "'Scarface'", "'Trinidad'")>>
+		<<set _nickname = either("'Batista'", "'Bay of Pigs'", "'Bayamo'", "'Blockade'", "'Camagüey'", "'Castro'", "'Cienfuegos'", "'Cigars'", "'Commie'", "'Cuban'", "'Gitmo'", "'Great Place'", "'Guantanamo'", "'Guevara'", "'Havana'", "'Martí'", "'Missile Crisis'", "'Santiago'", "'Scarface'", "'Trinidad'")>>
 	<<case "Curaçaoan">>
-		<<set $nickname = either("'Antillean'", "'Arawak'", "'Caquetio'", "'Curaçaoan'", "'Divi-Divi'", "'Djucu'", "'Happy Field'", "'Healer'", "'Heart'", "'Mirage'", "'Papiamento'", "'Sint Michiel'", "'Stew Cat'", "'Willemstad'")>>
+		<<set _nickname = either("'Antillean'", "'Arawak'", "'Caquetio'", "'Curaçaoan'", "'Divi-Divi'", "'Djucu'", "'Happy Field'", "'Healer'", "'Heart'", "'Mirage'", "'Papiamento'", "'Sint Michiel'", "'Stew Cat'", "'Willemstad'")>>
 	<<case "Cypriot">>
-		<<set $nickname = either("'Atilla'", "'Ayia Napa'", "'Chalcopyrite'", "'Copper'", "'Cypress'", "'Cyprian'", "'Cypriot'", "'Dove'", "'Enosis'", "'Famagusta'", "'Greek'", "'Henna'", "'Larnaca'", "'Limassol'", "'Nicosia'", "'Olive Branch'", "'Taksim'", "'Turkish'")>>
+		<<set _nickname = either("'Atilla'", "'Ayia Napa'", "'Chalcopyrite'", "'Copper'", "'Cypress'", "'Cyprian'", "'Cypriot'", "'Dove'", "'Enosis'", "'Famagusta'", "'Greek'", "'Henna'", "'Larnaca'", "'Limassol'", "'Nicosia'", "'Olive Branch'", "'Taksim'", "'Turkish'")>>
 	<<case "Czech">>
-		<<set $nickname = either("'Bohemian'", "'Bohunk'", "'Brno'", "'Čechie'", "'Czech'", "'Czechia'", "'Czechnya'", "'Czechoslovakia'", "'Double-Tailed Lion'", "'Hussite'", "'Kunda'", "'Masaryk'", "'Moravian'", "'Ostrava'", "'Prague'", "'Silesian'", "'Václav'", "'Velvet'", "'Wenceslaus'")>>
+		<<set _nickname = either("'Bohemian'", "'Bohunk'", "'Brno'", "'Čechie'", "'Czech'", "'Czechia'", "'Czechnya'", "'Czechoslovakia'", "'Double-Tailed Lion'", "'Hussite'", "'Kunda'", "'Masaryk'", "'Moravian'", "'Ostrava'", "'Prague'", "'Silesian'", "'Václav'", "'Velvet'", "'Wenceslaus'")>>
 	<<case "Danish">>
-		<<set $nickname = either("'Aalborg'", "'Aarhus'", "'Border Forest'", "'Copenhagen'", "'Dane'", "'Danish'", "'Danske'", "'Jutland'", "'Ludertæve'", "'Odense'", "'Roskilde'", "'Schleswig'", "'Tøs'", "'Trelleborg'", "'Viking'")>>
+		<<set _nickname = either("'Aalborg'", "'Aarhus'", "'Border Forest'", "'Copenhagen'", "'Dane'", "'Danish'", "'Danske'", "'Jutland'", "'Ludertæve'", "'Odense'", "'Roskilde'", "'Schleswig'", "'Tøs'", "'Trelleborg'", "'Viking'")>>
 	<<case "Djiboutian">>
-		<<set $nickname = either("'Adal'", "'Afar'", "'Ali Sabieh'", "'Aptidon'", "'Booty'", "'Djiboutian'", "'French Somaliland'", "'Handoga'", "'Ifat'", "'Issa'", "'Loyada'", "'Obock'", "'Pearl of the Gulf'", "'Punt'", "'Qat'", "'Tadjoura'", "'Tehuti'")>>
+		<<set _nickname = either("'Adal'", "'Afar'", "'Ali Sabieh'", "'Aptidon'", "'Booty'", "'Djiboutian'", "'French Somaliland'", "'Handoga'", "'Ifat'", "'Issa'", "'Loyada'", "'Obock'", "'Pearl of the Gulf'", "'Punt'", "'Qat'", "'Tadjoura'", "'Tehuti'")>>
 	<<case "Dominican">>
-		<<set $nickname = either("'Caribbean'", "'Cibao'", "'Domingo'", "'Dominican'", "'Hispaniola'", "'Merengue'", "'Ozama'", "'Palo'", "'Quisqueyana'", "'Samaná'", "'Santo Domingo'", "'Spanish Haiti'", "'Taíno'", "'Trinitaria'", "'Trujillo'", "'Yania Tierra'")>>
+		<<set _nickname = either("'Caribbean'", "'Cibao'", "'Domingo'", "'Dominican'", "'Hispaniola'", "'Merengue'", "'Ozama'", "'Palo'", "'Quisqueyana'", "'Samaná'", "'Santo Domingo'", "'Spanish Haiti'", "'Taíno'", "'Trinitaria'", "'Trujillo'", "'Yania Tierra'")>>
 	<<case "Dominiquais">>
-		<<set $nickname = either("'Boiling Lake'", "'Domingo'", "'Dominican'", "'Dominiquais'", "'Kalinago'", "'Leeward'", "'Natural'", "'Portsmouth'", "'Red Dog'", "'Roseau'", "'Sisserou'", "'Sunday'", "'Tall Body'")>>
+		<<set _nickname = either("'Boiling Lake'", "'Domingo'", "'Dominican'", "'Dominiquais'", "'Kalinago'", "'Leeward'", "'Natural'", "'Portsmouth'", "'Red Dog'", "'Roseau'", "'Sisserou'", "'Sunday'", "'Tall Body'")>>
 	<<case "Dutch">>
-		<<set $nickname = either("'Amsterdam'", "'Cheesehead'", "'Dutch Maiden'", "'Dutch'", "'Dutchie'", "'Fingered Dike'", "'Holland'", "'Klompendansen'", "'Netherlander'", "'Rotterdam'", "'Slaaf'", "'Slet'", "'The Hague'", "'Tulip'", "'Utrecht'", "'Windmill'")>>
+		<<set _nickname = either("'Amsterdam'", "'Cheesehead'", "'Dutch Maiden'", "'Dutch'", "'Dutchie'", "'Fingered Dike'", "'Holland'", "'Klompendansen'", "'Netherlander'", "'Rotterdam'", "'Slaaf'", "'Slet'", "'The Hague'", "'Tulip'", "'Utrecht'", "'Windmill'")>>
 	<<case "East Timorese">>
-		<<set $nickname = either("'27th Province'", "'Dare'", "'Dili'", "'East Timorese'", "'Eastern East'", "'Lifau'", "'Maubere'", "'Portuguese Timor'", "'Timor Leste'", "'Timorese'")>>
+		<<set _nickname = either("'27th Province'", "'Dare'", "'Dili'", "'East Timorese'", "'Eastern East'", "'Lifau'", "'Maubere'", "'Portuguese Timor'", "'Timor Leste'", "'Timorese'")>>
 	<<case "Ecuadorian">>
-		<<set $nickname = either("'Cañari'", "'Cuenca'", "'Ecuadorian'", "'Equator'", "'Galápagos'", "'Glorious May'", "'Guayaquil'", "'Ingapirca'", "'Julian'", "'Latacunga'", "'Liberal'", "'Luz de América'", "'Machala'", "'Mama Negra'", "'New Granada'", "'Party Bus'", "'Portoviejo'", "'Quito'", "'Quitus'", "'Rondador'", "'Tomebamba'")>>
+		<<set _nickname = either("'Cañari'", "'Cuenca'", "'Ecuadorian'", "'Equator'", "'Galápagos'", "'Glorious May'", "'Guayaquil'", "'Ingapirca'", "'Julian'", "'Latacunga'", "'Liberal'", "'Luz de América'", "'Machala'", "'Mama Negra'", "'New Granada'", "'Party Bus'", "'Portoviejo'", "'Quito'", "'Quitus'", "'Rondador'", "'Tomebamba'")>>
 	<<case "Egyptian">>
-		<<set $nickname = either("'Aegean'", "'Al-Askar'", "'Alexandria'", "'Cairo'", "'Cleopatra'", "'Egyptian'", "'Fustat'", "'Giza'", "'Gypsy'", "'Kemet'", "'Luxor'", "'Memphis'", "'Misirlou'", "'Nasser'", "'Pharaoh'", "'Ptah'", "'Pyramid'", "'Sadat'", "'Sinai'", "'Sphinx'", "'Suez'", "'Thebes'")>>
+		<<set _nickname = either("'Aegean'", "'Al-Askar'", "'Alexandria'", "'Cairo'", "'Cleopatra'", "'Egyptian'", "'Fustat'", "'Giza'", "'Gypsy'", "'Kemet'", "'Luxor'", "'Memphis'", "'Misirlou'", "'Nasser'", "'Pharaoh'", "'Ptah'", "'Pyramid'", "'Sadat'", "'Sinai'", "'Sphinx'", "'Suez'", "'Thebes'")>>
 	<<case "Emirati">>
-		<<set $nickname = either("'Abu Dhabi'", "'Ajman'", "'Bedouin'", "'Dubai'", "'Emir'", "'Emirati'", "'Emiri'", "'Emirian'", "'Fujairah'", "'Gulf Tiger'", "'Ras Al Khaimah'", "'Sharjah'", "'Trucial'", "'U.A.E.'", "'Umm Al Quwain'")>>
+		<<set _nickname = either("'Abu Dhabi'", "'Ajman'", "'Bedouin'", "'Dubai'", "'Emir'", "'Emirati'", "'Emiri'", "'Emirian'", "'Fujairah'", "'Gulf Tiger'", "'Ras Al Khaimah'", "'Sharjah'", "'Trucial'", "'U.A.E.'", "'Umm Al Quwain'")>>
 	<<case "Equatoguinean">>
-		<<set $nickname = either("'Annobón'", "'Bata'", "'Bioko'", "'Corisco'", "'Equatoguinean'", "'Equator'", "'Equatorial Guinean'", "'Fa d'Ambu'", "'Formosa'", "'Malabo'", "'Nguema'", "'Obiang'", "'Oyala'", "'Río Muni'", "'Spanish Guinea'")>>
+		<<set _nickname = either("'Annobón'", "'Bata'", "'Bioko'", "'Corisco'", "'Equatoguinean'", "'Equator'", "'Equatorial Guinean'", "'Fa d'Ambu'", "'Formosa'", "'Malabo'", "'Nguema'", "'Obiang'", "'Oyala'", "'Río Muni'", "'Spanish Guinea'")>>
 	<<case "Eritrean">>
-		<<set $nickname = either("'Asmara'", "'Bahri Negash'", "'D'mt'", "'Dahlak'", "'Danakil'", "'Eritrean'", "'Ertra'", "'Hamasien'", "'Keren'", "'Massawa'", "'Medri Bahri'", "'Punt'", "'Quda'", "'Red Sea'", "'Tigrayan'")>>
+		<<set _nickname = either("'Asmara'", "'Bahri Negash'", "'D'mt'", "'Dahlak'", "'Danakil'", "'Eritrean'", "'Ertra'", "'Hamasien'", "'Keren'", "'Massawa'", "'Medri Bahri'", "'Punt'", "'Quda'", "'Red Sea'", "'Tigrayan'")>>
 	<<case "Estonian">>
-		<<set $nickname = either("'Aesti'", "'Baltic Tiger'", "'Baltic'", "'East'", "'Eesti'", "'Esthonian'", "'Estonian'", "'Oeselian'", "'Pulli'", "'Tallinn'", "'Tartu'", "'Terra Mariana'", "'Vistula'", "'Yestonian'")>>
+		<<set _nickname = either("'Aesti'", "'Baltic Tiger'", "'Baltic'", "'East'", "'Eesti'", "'Esthonian'", "'Estonian'", "'Oeselian'", "'Pulli'", "'Tallinn'", "'Tartu'", "'Terra Mariana'", "'Vistula'", "'Yestonian'")>>
 	<<case "Ethiopian">>
-		<<set $nickname = either("'Abyssinian'", "'Addis Ababa'", "'Aksumite'", "'Axum'", "'Burnt Face'", "'Candace'", "'D'mot'", "'Dalllol'", "'Debre Berhan'", "'Derg'", "'Dire Dawa'", "'Ethiopian'", "'Gondar'", "'Ityopp'is'", "'Mengistu'", "'Oromo'", "'Rastafarian'", "'Selassie'")>>
+		<<set _nickname = either("'Abyssinian'", "'Addis Ababa'", "'Aksumite'", "'Axum'", "'Burnt Face'", "'Candace'", "'D'mot'", "'Dalllol'", "'Debre Berhan'", "'Derg'", "'Dire Dawa'", "'Ethiopian'", "'Gondar'", "'Ityopp'is'", "'Mengistu'", "'Oromo'", "'Rastafarian'", "'Selassie'")>>
 	<<case "Fijian">>
-		<<set $nickname = either("'Feejee'", "'Fijian'", "'Itaukei'", "'Lautoka'", "'Levuka'", "'Look-Out'", "'Lutunasobasoba'", "'Nadi'", "'Nasinu'", "'Suva'", "'Vanua Levu'", "'Viti Levu'")>>
+		<<set _nickname = either("'Feejee'", "'Fijian'", "'Itaukei'", "'Lautoka'", "'Levuka'", "'Look-Out'", "'Lutunasobasoba'", "'Nadi'", "'Nasinu'", "'Suva'", "'Vanua Levu'", "'Viti Levu'")>>
 	<<case "Filipina">>
-		<<set $nickname = either("'Baguio'", "'Cebu'", "'Chavacano'", "'Dela Cruz'", "'Filipina'", "'Flip'", "'Manila'", "'Marcos'", "'Noble'", "'Nutshack'", "'Philip'", "'Philippine'", "'Pinay'", "'Pinoy'", "'Quezon'", "'River Dweller'", "'Rizal'", "'Ryan'", "'St. Lazarus'", "'Tagalog'", "'West Island'")>>
+		<<set _nickname = either("'Baguio'", "'Cebu'", "'Chavacano'", "'Dela Cruz'", "'Filipina'", "'Flip'", "'Manila'", "'Marcos'", "'Noble'", "'Nutshack'", "'Philip'", "'Philippine'", "'Pinay'", "'Pinoy'", "'Quezon'", "'River Dweller'", "'Rizal'", "'Ryan'", "'St. Lazarus'", "'Tagalog'", "'West Island'")>>
 	<<case "Finnish">>
-		<<set $nickname = either("'China Swede'", "'Chukhna'", "'Espoo'", "'Finn'", "'Finnic'", "'Finnish Maiden'", "'Finnish'", "'Finnjävel'", "'Helsinki'", "'Hunter'", "'Kantele'", "'Mämmi'", "'Perkele'", "'Saunagirl'", "'Suomi'", "'Tampere'", "'Turku'", "'Vaasa'", "'Winter War'")>>
+		<<set _nickname = either("'China Swede'", "'Chukhna'", "'Espoo'", "'Finn'", "'Finnic'", "'Finnish Maiden'", "'Finnish'", "'Finnjävel'", "'Helsinki'", "'Hunter'", "'Kantele'", "'Mämmi'", "'Perkele'", "'Saunagirl'", "'Suomi'", "'Tampere'", "'Turku'", "'Vaasa'", "'Winter War'")>>
 	<<case "French">>
-		<<set $nickname = either("'Baguette'", "'Belle'", "'Charlemagne'", "'Charlie Hebdo'", "'Clovis'", "'Crapaud'", "'De Gaulle'", "'Eiffel Tower'", "'Escargot'", "'Fille de Joie'", "'Français'", "'Frank'", "'French'", "'Frenchie'", "'Frog'", "'Gabacha'", "'Gaul'", "'Javelin'", "'L'Hexagone'", "'Lille'", "'Lyon'", "'Mademoiselle'", "'Marianne'", "'Marseille'", "'Napoleon'", "'Nice'", "'Paris'", "'Surrender Monkey'", "'Toulouse'", "'Vercingetorix'", "'Vichy'")>>
+		<<set _nickname = either("'Baguette'", "'Belle'", "'Charlemagne'", "'Charlie Hebdo'", "'Clovis'", "'Crapaud'", "'De Gaulle'", "'Eiffel Tower'", "'Escargot'", "'Fille de Joie'", "'Français'", "'Frank'", "'French'", "'Frenchie'", "'Frog'", "'Gabacha'", "'Gaul'", "'Javelin'", "'L'Hexagone'", "'Lille'", "'Lyon'", "'Mademoiselle'", "'Marianne'", "'Marseille'", "'Napoleon'", "'Nice'", "'Paris'", "'Surrender Monkey'", "'Toulouse'", "'Vercingetorix'", "'Vichy'")>>
 	<<case "French Guianan">>
-		<<set $nickname = either("'Cayenne'", "'French Guianan'", "'French Guianese'", "'Guiana Shield'", "'Île du Diable'", "'Kourou'", "'Saint-Laurent-du-Maroni'", "'Véronique'")>>
+		<<set _nickname = either("'Cayenne'", "'French Guianan'", "'French Guianese'", "'Guiana Shield'", "'Île du Diable'", "'Kourou'", "'Saint-Laurent-du-Maroni'", "'Véronique'")>>
 	<<case "French Polynesian">>
-		<<set $nickname = either("'Austral'", "'Faaa'", "'Fangataufa'", "'French Polynesian'", "'Gambier'", "'Mahina'", "'Marquesas'", "'Moruroa'", "'Papeete'", "'Polynesian'", "'Society'", "'Tahiti'", "'Tuamotu'")>>
+		<<set _nickname = either("'Austral'", "'Faaa'", "'Fangataufa'", "'French Polynesian'", "'Gambier'", "'Mahina'", "'Marquesas'", "'Moruroa'", "'Papeete'", "'Polynesian'", "'Society'", "'Tahiti'", "'Tuamotu'")>>
 	<<case "Gabonese">>
-		<<set $nickname = either("'Bongo'", "'Cloak'", "'Franceville'", "'Gabonais'", "'Gabonese'", "'Komo'", "'Libreville'", "'Orungu'", "'Port-Gentil'")>>
+		<<set _nickname = either("'Bongo'", "'Cloak'", "'Franceville'", "'Gabonais'", "'Gabonese'", "'Komo'", "'Libreville'", "'Orungu'", "'Port-Gentil'")>>
 	<<case "Gambian">>
-		<<set $nickname = either("'Banjul'", "'Bathurst'", "'Brikama'", "'Fajara'", "'Gambian'", "'Gambo'", "'Jammeh'", "'Jawara'", "'Kaabu'", "'Senegambia'", "'Serekunda'", "'Trader'")>>
+		<<set _nickname = either("'Banjul'", "'Bathurst'", "'Brikama'", "'Fajara'", "'Gambian'", "'Gambo'", "'Jammeh'", "'Jawara'", "'Kaabu'", "'Senegambia'", "'Serekunda'", "'Trader'")>>
 	<<case "Georgian">>
-		<<set $nickname = either("'Agricultural'", "'Batumi'", "'Colchis'", "'Georgian'", "'Golden Fleece'", "'Iberian'", "'Kartlis Deda'", "'Kartvelian'", "'Knight in Panther's Skin'", "'Kutaisi'", "'Mepe'", "'Mtskheta'", "'Tamar'", "'Tbilisi'", "'Wolf'")>>
+		<<set _nickname = either("'Agricultural'", "'Batumi'", "'Colchis'", "'Georgian'", "'Golden Fleece'", "'Iberian'", "'Kartlis Deda'", "'Kartvelian'", "'Knight in Panther's Skin'", "'Kutaisi'", "'Mepe'", "'Mtskheta'", "'Tamar'", "'Tbilisi'", "'Wolf'")>>
 	<<case "German">>
-		<<set $nickname = either("'Arminius'", "'Basic Law'", "'Battle Cry'", "'Bavarian'", "'Berlin'", "'Bonn'", "'Bratwurst'", "'Bremen'", "'Bundesadler'", "'Cabbage Eater'", "'Charlemagne'", "'Cologne'", "'Deutsche'", "'Dresden'", "'Düsseldorf'", "'Frankfurt'", "'Fraulein'", "'German'", "'Germania'", "'Hamburg'", "'Hannover'", "'Hanover'", "'Hitler'", "'Hun'", "'Jerry'", "'Kaiser'", "'Kraut'", "'Leipzig'", "'Mannheim'", "'Munich'", "'Nazi'", "'Nuremberg'", "'Oktoberfest'", "'Piefke'", "'Prussian'", "'Rhine-Ruhr'", "'Saupreiß'", "'Stuttgart'", "'Teuton'", "'Valkyrie'", "'Von Bismarck'")>>
+		<<set _nickname = either("'Arminius'", "'Basic Law'", "'Battle Cry'", "'Bavarian'", "'Berlin'", "'Bonn'", "'Bratwurst'", "'Bremen'", "'Bundesadler'", "'Cabbage Eater'", "'Charlemagne'", "'Cologne'", "'Deutsche'", "'Dresden'", "'Düsseldorf'", "'Frankfurt'", "'Fraulein'", "'German'", "'Germania'", "'Hamburg'", "'Hannover'", "'Hanover'", "'Hitler'", "'Hun'", "'Jerry'", "'Kaiser'", "'Kraut'", "'Leipzig'", "'Mannheim'", "'Munich'", "'Nazi'", "'Nuremberg'", "'Oktoberfest'", "'Piefke'", "'Prussian'", "'Rhine-Ruhr'", "'Saupreiß'", "'Stuttgart'", "'Teuton'", "'Valkyrie'", "'Von Bismarck'")>>
 	<<case "Ghanan">>
-		<<set $nickname = either("'Accra'", "'Akan'", "'Ashanti'", "'British Togoland'", "'Cape Coast'", "'Cold Chop'", "'Ghanan'", "'Gold Coast'", "'Kumasi'", "'Nkrumah'", "'Shaman Queen'", "'Warrior Queen'")>>
+		<<set _nickname = either("'Accra'", "'Akan'", "'Ashanti'", "'British Togoland'", "'Cape Coast'", "'Cold Chop'", "'Ghanan'", "'Gold Coast'", "'Kumasi'", "'Nkrumah'", "'Shaman Queen'", "'Warrior Queen'")>>
 	<<case "Greek">>
-		<<set $nickname = either("'Athens'", "'Classical'", "'Debts'", "'Gift of Honor'", "'Greco'", "'Grecoman'", "'Greek'", "'Hellas'", "'Hellene'", "'Hellenic'", "'Ionian'", "'Kapodistrias'", "'Marble Column'", "'Mount Olympus'", "'Nafplio'", "'Old Woman'", "'Phoenix'", "'Sacrificer'", "'Spartan'", "'Thebes'", "'Thessaloniki'", "'Toga'", "'Venizelos'")>>
+		<<set _nickname = either("'Athens'", "'Classical'", "'Debts'", "'Gift of Honor'", "'Greco'", "'Grecoman'", "'Greek'", "'Hellas'", "'Hellene'", "'Hellenic'", "'Ionian'", "'Kapodistrias'", "'Marble Column'", "'Mount Olympus'", "'Nafplio'", "'Old Woman'", "'Phoenix'", "'Sacrificer'", "'Spartan'", "'Thebes'", "'Thessaloniki'", "'Toga'", "'Venizelos'")>>
 	<<case "Greenlandic">>
-		<<set $nickname = either("'Danish'", "'Erik the Red'", "'Eskimo'", "'Godthåb'", "'Greenlander'", "'Greenlandic'", "'Iceberg'", "'Inuit'", "'Kalaallit'", "'Nuuk'", "'Sisimiut'")>>
+		<<set _nickname = either("'Danish'", "'Erik the Red'", "'Eskimo'", "'Godthåb'", "'Greenlander'", "'Greenlandic'", "'Iceberg'", "'Inuit'", "'Kalaallit'", "'Nuuk'", "'Sisimiut'")>>
 	<<case "Grenadian">>
-		<<set $nickname = either("'Carib'", "'Concepción'", "'Gouyave'", "'Grenada Dove'", "'Grenadian'", "'Mace'", "'Mayo'", "'Nutmeg'", "'Spices'", "'St. George's'", "'Urgent Fury'", "'Windward'", "'Woolie'")>>
+		<<set _nickname = either("'Carib'", "'Concepción'", "'Gouyave'", "'Grenada Dove'", "'Grenadian'", "'Mace'", "'Mayo'", "'Nutmeg'", "'Spices'", "'St. George's'", "'Urgent Fury'", "'Windward'", "'Woolie'")>>
 	<<case "Guamanian">>
-		<<set $nickname = either("'51st State'", "'Arc Light'", "'Chamorro'", "'Dededo'", "'Guamanian'", "'Hagåtña'", "'Mangilao'", "'Military Base'", "'Tamuning'")>>
+		<<set _nickname = either("'51st State'", "'Arc Light'", "'Chamorro'", "'Dededo'", "'Guamanian'", "'Hagåtña'", "'Mangilao'", "'Military Base'", "'Tamuning'")>>
 	<<case "Guatemalan">>
-		<<set $nickname = either("'Cabrera'", "'Carrera'", "'Chapín'", "'Forester'", "'Guatemalan'", "'Guatemalteca'", "'Many Trees'", "'Mayan'", "'Montt'", "'Quetzal'", "'Ubico'")>>
+		<<set _nickname = either("'Cabrera'", "'Carrera'", "'Chapín'", "'Forester'", "'Guatemalan'", "'Guatemalteca'", "'Many Trees'", "'Mayan'", "'Montt'", "'Quetzal'", "'Ubico'")>>
 	<<case "Guinean">>
-		<<set $nickname = either("'Bauxite'", "'Burnt One'", "'Conakry'", "'Djenné'", "'French Guinea'", "'Futa Jallon'", "'Green Sea'", "'Guinean'", "'Market Woman'", "'Nzérékoré'", "'Southern River'", "'Timbo'", "'Toure'")>>
+		<<set _nickname = either("'Bauxite'", "'Burnt One'", "'Conakry'", "'Djenné'", "'French Guinea'", "'Futa Jallon'", "'Green Sea'", "'Guinean'", "'Market Woman'", "'Nzérékoré'", "'Southern River'", "'Timbo'", "'Toure'")>>
 	<<case "Guyanese">>
-		<<set $nickname = either("'Berbice'", "'British Guiana'", "'Demerara'", "'Essequibo'", "'Flavor Aid'", "'Georgetown'", "'Guiana Shield'", "'Guyanese'", "'Hoatzin'", "'Jonestown'", "'Many Waters'", "'Soca'")>>
+		<<set _nickname = either("'Berbice'", "'British Guiana'", "'Demerara'", "'Essequibo'", "'Flavor Aid'", "'Georgetown'", "'Guiana Shield'", "'Guyanese'", "'Hoatzin'", "'Jonestown'", "'Many Waters'", "'Soca'")>>
 	<<case "Haitian">>
-		<<set $nickname = either("'Ayisyen'", "'Duvalier'", "'Earthquake'", "'Ezilí Dantor'", "'Gonaïves'", "'Haiti Lady'", "'Haitian'", "'Hispaniola'", "'Kadans'", "'Maîtresse'", "'Mama Doc'", "'Maman'", "'Mountainous'", "'Port-au-Prince'", "'Tortuga'", "'Voodoo'")>>
+		<<set _nickname = either("'Ayisyen'", "'Duvalier'", "'Earthquake'", "'Ezilí Dantor'", "'Gonaïves'", "'Haiti Lady'", "'Haitian'", "'Hispaniola'", "'Kadans'", "'Maîtresse'", "'Mama Doc'", "'Maman'", "'Mountainous'", "'Port-au-Prince'", "'Tortuga'", "'Voodoo'")>>
 	<<case "Honduran">>
-		<<set $nickname = either("'Anchuria'", "'Catracha'", "'Comayagua'", "'Comayagüela'", "'Depths'", "'Higueras'", "'Honduran'", "'Punta'", "'San Pedro Sula'", "'Tegucigalpa'", "'Xatruch'")>>
+		<<set _nickname = either("'Anchuria'", "'Catracha'", "'Comayagua'", "'Comayagüela'", "'Depths'", "'Higueras'", "'Honduran'", "'Punta'", "'San Pedro Sula'", "'Tegucigalpa'", "'Xatruch'")>>
 	<<case "Hungarian">>
-		<<set $nickname = either("'Árpád'", "'Bozgor'", "'Budapest'", "'Czardas'", "'Debrecen'", "'Hun'", "'Hungarian'", "'Kádár'", "'Kossuth'", "'Lady of Hungaria'", "'Magyar'", "'Ogur'", "'Szent Korona'", "'Szuka'", "'Ten Arrows'", "'Tower of Babel'", "'Turul'")>>
+		<<set _nickname = either("'Árpád'", "'Bozgor'", "'Budapest'", "'Czardas'", "'Debrecen'", "'Hun'", "'Hungarian'", "'Kádár'", "'Kossuth'", "'Lady of Hungaria'", "'Magyar'", "'Ogur'", "'Szent Korona'", "'Szuka'", "'Ten Arrows'", "'Tower of Babel'", "'Turul'")>>
 	<<case "I-Kiribati">>
-		<<set $nickname = either("'Bairiki'", "'Betio'", "'Butaritari'", "'Gilbert'", "'I-Kiribati'", "'Kiribatian'", "'Tarawa'", "'Tungaru'")>>
+		<<set _nickname = either("'Bairiki'", "'Betio'", "'Butaritari'", "'Gilbert'", "'I-Kiribati'", "'Kiribatian'", "'Tarawa'", "'Tungaru'")>>
 	<<case "Icelandic">>
-		<<set $nickname = either("'Bessastaðir'", "'Fire and Ice'", "'Fjallkona'", "'Gyrfalcon'", "'Icelander'", "'Icelandic'", "'Kópavogur'", "'Lady of the Mountain'", "'Lagarfljótsormur'", "'Penis Museum'", "'Reykjavík'", "'Sagas'", "'Viking'", "'Þingvellir'")>>
+		<<set _nickname = either("'Bessastaðir'", "'Fire and Ice'", "'Fjallkona'", "'Gyrfalcon'", "'Icelander'", "'Icelandic'", "'Kópavogur'", "'Lady of the Mountain'", "'Lagarfljótsormur'", "'Penis Museum'", "'Reykjavík'", "'Sagas'", "'Viking'", "'Þingvellir'")>>
 	<<case "Indian">>
-		<<set $nickname = either("'Agra'", "'Ahmedabad'", "'Aligarh'", "'Allahabad'", "'Bangalore'", "'Bharat Mata'", "'Bharata'", "'Bhibhi'", "'Bhopal'", "'Bollywood'", "'Bombay'", "'Chennai'", "'Daulatabad'", "'Delhi'", "'Gandhi'", "'Hindi'", "'Hindu'", "'Howrah'", "'Hyderabad'", "'Indian'", "'Indus'", "'Jaipur'", "'Kanpur'", "'Kolkata'", "'Lucknow'", "'Mahatma'", "'Mumbai'", "'Nagpur'", "'Patna'", "'Pune'", "'Punjabi'", "'Raj'", "'Savita'", "'Sind'", "'Street Shitter'", "'Surat'", "'Taj Mahal'", "'Visakhapatnam'")>>
+		<<set _nickname = either("'Agra'", "'Ahmedabad'", "'Aligarh'", "'Allahabad'", "'Bangalore'", "'Bharat Mata'", "'Bharata'", "'Bhibhi'", "'Bhopal'", "'Bollywood'", "'Bombay'", "'Chennai'", "'Daulatabad'", "'Delhi'", "'Gandhi'", "'Hindi'", "'Hindu'", "'Howrah'", "'Hyderabad'", "'Indian'", "'Indus'", "'Jaipur'", "'Kanpur'", "'Kolkata'", "'Lucknow'", "'Mahatma'", "'Mumbai'", "'Nagpur'", "'Patna'", "'Pune'", "'Punjabi'", "'Raj'", "'Savita'", "'Sind'", "'Street Shitter'", "'Surat'", "'Taj Mahal'", "'Visakhapatnam'")>>
 	<<case "Indonesian">>
-		<<set $nickname = either("'Bandung'", "'Dutch East Indies'", "'Emerald of the Equator'", "'Garuda'", "'Hindia-Belanda'", "'Ibu Pertiwi'", "'Indian'", "'Indies'", "'Indognesial'", "'Indon'", "'Indonesian'", "'Jakarta'", "'Java'", "'Komodo Dragon'", "'Malay'", "'Medan'", "'New Order'", "'Suharto'", "'Sukarno'", "'Sunda'", "'Surabaya'", "'Teak'", "'Yogyakarta'")>>
+		<<set _nickname = either("'Bandung'", "'Dutch East Indies'", "'Emerald of the Equator'", "'Garuda'", "'Hindia-Belanda'", "'Ibu Pertiwi'", "'Indian'", "'Indies'", "'Indognesial'", "'Indon'", "'Indonesian'", "'Jakarta'", "'Java'", "'Komodo Dragon'", "'Malay'", "'Medan'", "'New Order'", "'Suharto'", "'Sukarno'", "'Sunda'", "'Surabaya'", "'Teak'", "'Yogyakarta'")>>
 	<<case "Iranian">>
-		<<set $nickname = either("'Antioch'", "'Aryan'", "'Ayatollah'", "'Bukhara'", "'Ecbatana'", "'Farsi'", "'Free Noble'", "'Ghazni'", "'Iranian'", "'Iranic'", "'Isfahan'", "'Khamenei'", "'Majus'", "'Maragheh'", "'Mashhad'", "'Pasargadae'", "'Persepolis'", "'Persian'", "'Qazvin'", "'Sari'", "'Seleucia'", "'Shah'", "'Shiraz'", "'Susa'", "'Tabriz'", "'Tehran'", "'Zaranj'", "'Zirta'")>>
+		<<set _nickname = either("'Antioch'", "'Aryan'", "'Ayatollah'", "'Bukhara'", "'Ecbatana'", "'Farsi'", "'Free Noble'", "'Ghazni'", "'Iranian'", "'Iranic'", "'Isfahan'", "'Khamenei'", "'Majus'", "'Maragheh'", "'Mashhad'", "'Pasargadae'", "'Persepolis'", "'Persian'", "'Qazvin'", "'Sari'", "'Seleucia'", "'Shah'", "'Shiraz'", "'Susa'", "'Tabriz'", "'Tehran'", "'Zaranj'", "'Zirta'")>>
 	<<case "Iraqi">>
-		<<set $nickname = either("'Assur'", "'Assyrian'", "'Babylon'", "'Babylonian'", "'Baghdad'", "'Basra'", "'Calah'", "'Euphrates'", "'Fallujah'", "'Fertile Crescent'", "'Hussein'", "'Iraqi'", "'Lowlander'", "'Mesopotamian'", "'Nineveh'", "'Oilfields'", "'Sumerian'", "'Tigris'", "'Uruk'", "'Whore of Babylon'")>>
+		<<set _nickname = either("'Assur'", "'Assyrian'", "'Babylon'", "'Babylonian'", "'Baghdad'", "'Basra'", "'Calah'", "'Euphrates'", "'Fallujah'", "'Fertile Crescent'", "'Hussein'", "'Iraqi'", "'Lowlander'", "'Mesopotamian'", "'Nineveh'", "'Oilfields'", "'Sumerian'", "'Tigris'", "'Uruk'", "'Whore of Babylon'")>>
 	<<case "Irish">>
-		<<set $nickname = either("'Aisling'", "'British'", "'Carbomb'", "'Celtic Tiger'", "'Cork'", "'Culchie'", "'Dublin'", "'Eire'", "'Emerald'", "'Gaelic'", "'Hibernia'", "'I.R.A.'", "'Irish'", "'Irishwoman'", "'Jackeen'", "'Kilkenny'", "'Lassie'", "'Mick'", "'Paddy'", "'Potato Famine'", "'Riverdance'", "'Sinn Féin'", "'West'", "'Wintry'")>>
+		<<set _nickname = either("'Aisling'", "'British'", "'Carbomb'", "'Celtic Tiger'", "'Cork'", "'Culchie'", "'Dublin'", "'Eire'", "'Emerald'", "'Gaelic'", "'Hibernia'", "'I.R.A.'", "'Irish'", "'Irishwoman'", "'Jackeen'", "'Kilkenny'", "'Lassie'", "'Mick'", "'Paddy'", "'Potato Famine'", "'Riverdance'", "'Sinn Féin'", "'West'", "'Wintry'")>>
 	<<case "Israeli">>
-		<<set $nickname = either("'Acre'", "'Eretz Yisrael'", "'Gibeah'", "'God's Chosen'", "'Haifa'", "'Hebrew'", "'Holy Land'", "'Hoopoe'", "'Israeli'", "'Israelite'", "'Jacob'", "'Jaffa'", "'Jerusalem'", "'Jew'", "'Levantine'", "'Little Satan'", "'Merchant'", "'Oven Dodger'", "'Palestinian'", "'Sharmuta'", "'Shekels'", "'Shiksa'", "'Srulik'", "'Struggle with God'", "'Tel Aviv'", "'Zio'", "'Zionist'")>>
+		<<set _nickname = either("'Acre'", "'Eretz Yisrael'", "'Gibeah'", "'God's Chosen'", "'Haifa'", "'Hebrew'", "'Holy Land'", "'Hoopoe'", "'Israeli'", "'Israelite'", "'Jacob'", "'Jaffa'", "'Jerusalem'", "'Jew'", "'Levantine'", "'Little Satan'", "'Merchant'", "'Oven Dodger'", "'Palestinian'", "'Sharmuta'", "'Shekels'", "'Shiksa'", "'Srulik'", "'Struggle with God'", "'Tel Aviv'", "'Zio'", "'Zionist'")>>
 	<<case "Italian">>
-		<<set $nickname = either("'Bologna'", "'Boot'", "'Eytie'", "'Florence'", "'Garibaldi'", "'Greaseball'", "'Italia Turrita'", "'Italian'", "'Latin'", "'Leaning Tower'", "'Mafia'", "'Milan'", "'Mussolini'", "'Naples'", "'Napoli'", "'Pasta'", "'Pizza'", "'Renaissance'", "'Roman'", "'Rome'", "'Salami'", "'Sicilian'", "'Spaghetti'", "'Terrone'", "'Turin'", "'Venice'", "'Wop'", "'Yearling'")>>
+		<<set _nickname = either("'Bologna'", "'Boot'", "'Eytie'", "'Florence'", "'Garibaldi'", "'Greaseball'", "'Italia Turrita'", "'Italian'", "'Latin'", "'Leaning Tower'", "'Mafia'", "'Milan'", "'Mussolini'", "'Naples'", "'Napoli'", "'Pasta'", "'Pizza'", "'Renaissance'", "'Roman'", "'Rome'", "'Salami'", "'Sicilian'", "'Spaghetti'", "'Terrone'", "'Turin'", "'Venice'", "'Wop'", "'Yearling'")>>
 	<<case "Ivorian">>
-		<<set $nickname = either("'Abidjan'", "'Baoulé'", "'Bingerville'", "'Bouaké'", "'Five and Six Stripes'", "'Grand-Bassam'", "'Houphouët-Boigny'", "'Ivorian'", "'Ivory'", "'Licorne'", "'Quaqua'", "'Teeth Coast'", "'Tusk'", "'Windward'", "'Yamoussoukro'")>>
+		<<set _nickname = either("'Abidjan'", "'Baoulé'", "'Bingerville'", "'Bouaké'", "'Five and Six Stripes'", "'Grand-Bassam'", "'Houphouët-Boigny'", "'Ivorian'", "'Ivory'", "'Licorne'", "'Quaqua'", "'Teeth Coast'", "'Tusk'", "'Windward'", "'Yamoussoukro'")>>
 	<<case "Jamaican">>
-		<<set $nickname = either("'Ackee'", "'Arawak'", "'Cool Running'", "'Ganja'", "'Jamaican'", "'Jamdown'", "'Jamrock'", "'Kingston'", "'Kush'", "'Patois'", "'Port Royal'", "'Rasta'", "'Reggae'", "'Rock'", "'Spanish Town'", "'Springs'", "'West Indies'", "'Wood & Water'", "'Xaymaca'", "'Yardie'")>>
+		<<set _nickname = either("'Ackee'", "'Arawak'", "'Cool Running'", "'Ganja'", "'Jamaican'", "'Jamdown'", "'Jamrock'", "'Kingston'", "'Kush'", "'Patois'", "'Port Royal'", "'Rasta'", "'Reggae'", "'Rock'", "'Spanish Town'", "'Springs'", "'West Indies'", "'Wood & Water'", "'Xaymaca'", "'Yardie'")>>
 	<<case "Japanese">>
-		<<set $nickname = either("'Amaterasu'", "'Anime'", "'Banzai'", "'Bishoujo'", "'Carp'", "'Fukushima'", "'Geisha Girl'", "'Hello Kitty'", "'Hirohito'", "'Hiroshima'", "'Hokkaido'", "'Ichiban'", "'Jap'", "'Japanese'", "'Kamikaze'", "'Karate'", "'Kawaii'", "'Kawasaki'", "'Kyoto'", "'Kyushu'", "'Manga'", "'Nagano'", "'Nagasaki'", "'Nagoya'", "'Nip'", "'Nipponese'", "'Osaka'", "'Otaku'", "'Persimmon'", "'Rising Sun'", "'Sapporo'", "'Sushi'", "'Tempura'", "'Tokyo'", "'Wasabi'", "'Xiao Riben'", "'Yakuza'", "'Yamaha'", "'Yamato Nadeshiko'", "'Yellow Cab'", "'Yokohama'")>>
+		<<set _nickname = either("'Amaterasu'", "'Anime'", "'Banzai'", "'Bishoujo'", "'Carp'", "'Fukushima'", "'Geisha Girl'", "'Hello Kitty'", "'Hirohito'", "'Hiroshima'", "'Hokkaido'", "'Ichiban'", "'Jap'", "'Japanese'", "'Kamikaze'", "'Karate'", "'Kawaii'", "'Kawasaki'", "'Kyoto'", "'Kyushu'", "'Manga'", "'Nagano'", "'Nagasaki'", "'Nagoya'", "'Nip'", "'Nipponese'", "'Osaka'", "'Otaku'", "'Persimmon'", "'Rising Sun'", "'Sapporo'", "'Sushi'", "'Tempura'", "'Tokyo'", "'Wasabi'", "'Xiao Riben'", "'Yakuza'", "'Yamaha'", "'Yamato Nadeshiko'", "'Yellow Cab'", "'Yokohama'")>>
 	<<case "Jordanian">>
-		<<set $nickname = either("'Ain Ghazal'", "'Al-Urdunn'", "'Amman'", "'Descent'", "'Edomite'", "'Hashemite'", "'Jordanian'", "'Mahanaim'", "'Mansaf'", "'Moab'", "'Oultrejordain'", "'Penuel'", "'Petra'", "'Transjordan'", "'Urdun'", "'Yarden'", "'Zarqa'")>>
+		<<set _nickname = either("'Ain Ghazal'", "'Al-Urdunn'", "'Amman'", "'Descent'", "'Edomite'", "'Hashemite'", "'Jordanian'", "'Mahanaim'", "'Mansaf'", "'Moab'", "'Oultrejordain'", "'Penuel'", "'Petra'", "'Transjordan'", "'Urdun'", "'Yarden'", "'Zarqa'")>>
 	<<case "Kazakh">>
-		<<set $nickname = either("'Alma-Ata'", "'Almaty'", "'Astana'", "'Blue Hat'", "'Borat'", "'Dombra'", "'Kazakh'", "'Kazakhstani'", "'Khan'", "'Nazarbayev'", "'Nomad'", "'Qyzylorda'", "'Semey'", "'Tulpar'")>>
+		<<set _nickname = either("'Alma-Ata'", "'Almaty'", "'Astana'", "'Blue Hat'", "'Borat'", "'Dombra'", "'Kazakh'", "'Kazakhstani'", "'Khan'", "'Nazarbayev'", "'Nomad'", "'Qyzylorda'", "'Semey'", "'Tulpar'")>>
 	<<case "Kenyan">>
-		<<set $nickname = either("'British East Africa'", "'Kenyan'", "'Kirinyaga'", "'Man-Eater'", "'Mau Mau'", "'Mombasa'", "'Nairobi'", "'Nyatiti'", "'Obama'", "'Ostrich'", "'Safari'", "'Swahili'", "'Tsavo'", "'Wanjiku'")>>
+		<<set _nickname = either("'British East Africa'", "'Kenyan'", "'Kirinyaga'", "'Man-Eater'", "'Mau Mau'", "'Mombasa'", "'Nairobi'", "'Nyatiti'", "'Obama'", "'Ostrich'", "'Safari'", "'Swahili'", "'Tsavo'", "'Wanjiku'")>>
 	<<case "Kittitian">>
-		<<set $nickname = either("'Basseterre'", "'Charlestown'", "'Christopher'", "'Culturama'", "'Kittitian'", "'Kitty'", "'Lady of the Snows'", "'Leeward'", "'Liamuiga'", "'Nevis'", "'Nevisian'")>>
+		<<set _nickname = either("'Basseterre'", "'Charlestown'", "'Christopher'", "'Culturama'", "'Kittitian'", "'Kitty'", "'Lady of the Snows'", "'Leeward'", "'Liamuiga'", "'Nevis'", "'Nevisian'")>>
 	<<case "Korean">>
-		<<set $nickname = either("'Busan'", "'Chollima'", "'Daejeon'", "'Dokdo'", "'Gangnam'", "'Goyang'", "'Hamhung'", "'Hermit Queen'", "'Incheon'", "'Jeju'", "'K-Pop'", "'Kimchi'", "'Korean'", "'Lofty'", "'Morning Calm'", "'Nida'", "'Pyongyang'", "'Rocket Woman'", "'Samsung'", "'Seoul'")>>
+		<<set _nickname = either("'Busan'", "'Chollima'", "'Daejeon'", "'Dokdo'", "'Gangnam'", "'Goyang'", "'Hamhung'", "'Hermit Queen'", "'Incheon'", "'Jeju'", "'K-Pop'", "'Kimchi'", "'Korean'", "'Lofty'", "'Morning Calm'", "'Nida'", "'Pyongyang'", "'Rocket Woman'", "'Samsung'", "'Seoul'")>>
 	<<case "Kosovan">>
-		<<set $nickname = either("'Blackbird'", "'Dardania'", "'Kosovan'", "'Kosovar'", "'Kosovo Maiden'", "'Metohija'", "'Pristina'", "'Prizren'", "'Serbian'", "'Thrush'", "'Ulpiana'")>>
+		<<set _nickname = either("'Blackbird'", "'Dardania'", "'Kosovan'", "'Kosovar'", "'Kosovo Maiden'", "'Metohija'", "'Pristina'", "'Prizren'", "'Serbian'", "'Thrush'", "'Ulpiana'")>>
 	<<case "Kurdish">>
-		<<set $nickname = either("'Ararat'", "'Hawler'", "'Iraqi'", "'Kurd'", "'Kurdish'", "'Kurdistani'", "'Mahabad'", "'Rojava'", "'Syrian'", "'Turkish'", "'Zaza'")>>
+		<<set _nickname = either("'Ararat'", "'Hawler'", "'Iraqi'", "'Kurd'", "'Kurdish'", "'Kurdistani'", "'Mahabad'", "'Rojava'", "'Syrian'", "'Turkish'", "'Zaza'")>>
 	<<case "Kuwaiti">>
-		<<set $nickname = either("'Al Jahra'", "'Bani Utub'", "'Burgan'", "'Failaka'", "'Fortress'", "'Gulf War'", "'Hollywood of the Gulf'", "'Kadhima'", "'Kuwaiti'", "'Sabah'", "'Souk Al-Manakh'")>>
+		<<set _nickname = either("'Al Jahra'", "'Bani Utub'", "'Burgan'", "'Failaka'", "'Fortress'", "'Gulf War'", "'Hollywood of the Gulf'", "'Kadhima'", "'Kuwaiti'", "'Sabah'", "'Souk Al-Manakh'")>>
 	<<case "Kyrgyz">>
-		<<set $nickname = either("'Bishkek'", "'Forty'", "'Frunze'", "'Kirghizia'", "'Kyrgyz'", "'Kyrgyzstani'", "'Manas'", "'Osh'", "'Pishpek'", "'Tulip'", "'Urkun'")>>
+		<<set _nickname = either("'Bishkek'", "'Forty'", "'Frunze'", "'Kirghizia'", "'Kyrgyz'", "'Kyrgyzstani'", "'Manas'", "'Osh'", "'Pishpek'", "'Tulip'", "'Urkun'")>>
 	<<case "Laotian">>
-		<<set $nickname = either("'Frangipani'", "'Indochina'", "'Lan Xang'", "'Lao'", "'Laotian'", "'Lava'", "'Luang Prabang'", "'Million Elephants'", "'Muang Khoun'", "'Muang Lao'", "'Pakxe'", "'Pathet Lao'", "'Vientiane'")>>
+		<<set _nickname = either("'Frangipani'", "'Indochina'", "'Lan Xang'", "'Lao'", "'Laotian'", "'Lava'", "'Luang Prabang'", "'Million Elephants'", "'Muang Khoun'", "'Muang Lao'", "'Pakxe'", "'Pathet Lao'", "'Vientiane'")>>
 	<<case "Latvian">>
-		<<set $nickname = either("'Baltic Tiger'", "'Blue Lake'", "'Daugavpils'", "'Jelgava'", "'Latgalian'", "'Latvian'", "'Lett'", "'Liepaja'", "'Livonia'", "'Riga'", "'Singing'", "'Ulmanis'")>>
+		<<set _nickname = either("'Baltic Tiger'", "'Blue Lake'", "'Daugavpils'", "'Jelgava'", "'Latgalian'", "'Latvian'", "'Lett'", "'Liepaja'", "'Livonia'", "'Riga'", "'Singing'", "'Ulmanis'")>>
 	<<case "Lebanese">>
-		<<set $nickname = either("'Abu Abed'", "'Beirut'", "'Byblos'", "'Canaanite'", "'Cedar'", "'Druze'", "'Hezbollah'", "'Lebanese'", "'Lebo'", "'Maronite'", "'Phoenician'", "'Snow-Capped'")>>
+		<<set _nickname = either("'Abu Abed'", "'Beirut'", "'Byblos'", "'Canaanite'", "'Cedar'", "'Druze'", "'Hezbollah'", "'Lebanese'", "'Lebo'", "'Maronite'", "'Phoenician'", "'Snow-Capped'")>>
 	<<case "Liberian">>
-		<<set $nickname = either("'American Colonial'", "'Free'", "'Gbarnga'", "'Grain Coast'", "'Harper'", "'Kreyol'", "'Kru'", "'Liberian'", "'Liberty'", "'Maryland'", "'Mississippi-in-Africa'", "'Monrovia'", "'Pepper Coast'", "'Taylor'")>>
+		<<set _nickname = either("'American Colonial'", "'Free'", "'Gbarnga'", "'Grain Coast'", "'Harper'", "'Kreyol'", "'Kru'", "'Liberian'", "'Liberty'", "'Maryland'", "'Mississippi-in-Africa'", "'Monrovia'", "'Pepper Coast'", "'Taylor'")>>
 	<<case "Libyan">>
-		<<set $nickname = either("'Awjila'", "'Benghazi'", "'Cyrene'", "'Gaddafi'", "'Jamahiriya'", "'Libu'", "'Libyan'", "'Mukhtar'", "'Silphium'", "'Sirte'", "'Tobruk'", "'Tripoli'", "'Zenga Zenga'")>>
+		<<set _nickname = either("'Awjila'", "'Benghazi'", "'Cyrene'", "'Gaddafi'", "'Jamahiriya'", "'Libu'", "'Libyan'", "'Mukhtar'", "'Silphium'", "'Sirte'", "'Tobruk'", "'Tripoli'", "'Zenga Zenga'")>>
 	<<case "a Liechtensteiner">>
-		<<set $nickname = either("'Alpine'", "'Austrian'", "'Gutenberg'", "'Liechtensteiner'", "'Light Stone'", "'Principal'", "'Rhine'", "'Schaan'", "'Schellenberg'", "'Vaduz'")>>
+		<<set _nickname = either("'Alpine'", "'Austrian'", "'Gutenberg'", "'Liechtensteiner'", "'Light Stone'", "'Principal'", "'Rhine'", "'Schaan'", "'Schellenberg'", "'Vaduz'")>>
 	<<case "Lithuanian">>
-		<<set $nickname = either("'Amber'", "'Baltic Tiger'", "'Kaunas'", "'KernavÄ—'", "'KlaipÄ—da'", "'Labas'", "'Leitis'", "'Lietuva'", "'Lithuanian'", "'Lugan'", "'Memel'", "'Mindaugas'", "'Pagan'", "'Rainy'", "'Unity'", "'Vilnus'", "'White Stork'")>>
+		<<set _nickname = either("'Amber'", "'Baltic Tiger'", "'Kaunas'", "'KernavÄ—'", "'KlaipÄ—da'", "'Labas'", "'Leitis'", "'Lietuva'", "'Lithuanian'", "'Lugan'", "'Memel'", "'Mindaugas'", "'Pagan'", "'Rainy'", "'Unity'", "'Vilnus'", "'White Stork'")>>
 	<<case "Luxembourgian">>
-		<<set $nickname = either("'Ardennes'", "'Bureaucrat'", "'Esch-sur-Alzette'", "'Gëlle Fra'", "'Goldcrest'", "'Grand Duchess'", "'Little Castle'", "'Lucilinburhuc'", "'Luxembourger'", "'Luxembourgian'", "'Luxembourgish'", "'Passerelle'")>>
+		<<set _nickname = either("'Ardennes'", "'Bureaucrat'", "'Esch-sur-Alzette'", "'Gëlle Fra'", "'Goldcrest'", "'Grand Duchess'", "'Little Castle'", "'Lucilinburhuc'", "'Luxembourger'", "'Luxembourgian'", "'Luxembourgish'", "'Passerelle'")>>
 	<<case "Macedonian">>
-		<<set $nickname = either("'Bitola'", "'Greek'", "'Highlander'", "'Macedon'", "'Macedonian'", "'Macedonist'", "'Ohrid'", "'Oro'", "'Paeonia'", "'Sarissa'", "'Serboman'", "'Skopianoi'", "'Skopje'", "'Stobi'", "'Tall One'", "'Yugoslav'")>>
+		<<set _nickname = either("'Bitola'", "'Greek'", "'Highlander'", "'Macedon'", "'Macedonian'", "'Macedonist'", "'Ohrid'", "'Oro'", "'Paeonia'", "'Sarissa'", "'Serboman'", "'Skopianoi'", "'Skopje'", "'Stobi'", "'Tall One'", "'Yugoslav'")>>
 	<<case "Malagasy">>
-		<<set $nickname = either("'Antananarivo'", "'Baobab'", "'Fossa'", "'Great Red'", "'Hiragasy'", "'Imerina'", "'Lemur'", "'Madagascan'", "'Madagasikara'", "'Malagasy'", "'Mogadishu'", "'Ranavalona'", "'São Lourenço'", "'Toamasina'", "'Vazimba'", "'Zebu'")>>
+		<<set _nickname = either("'Antananarivo'", "'Baobab'", "'Fossa'", "'Great Red'", "'Hiragasy'", "'Imerina'", "'Lemur'", "'Madagascan'", "'Madagasikara'", "'Malagasy'", "'Mogadishu'", "'Ranavalona'", "'São Lourenço'", "'Toamasina'", "'Vazimba'", "'Zebu'")>>
 	<<case "Malawian">>
-		<<set $nickname = either("'Banda'", "'Blantyre'", "'Bororo'", "'Fire Water'", "'Flames'", "'Lilongwe'", "'Malawian'", "'Maravi'", "'Mzuzu'", "'Nyasaland'", "'Warm Heart of Africa'", "'Zomba'")>>
+		<<set _nickname = either("'Banda'", "'Blantyre'", "'Bororo'", "'Fire Water'", "'Flames'", "'Lilongwe'", "'Malawian'", "'Maravi'", "'Mzuzu'", "'Nyasaland'", "'Warm Heart of Africa'", "'Zomba'")>>
 	<<case "Malaysian">>
-		<<set $nickname = either("'Durian'", "'George Town'", "'Jakun'", "'Jementah'", "'Kuala Lumpur'", "'Malay Girl'", "'Malaya'", "'Malaysian'", "'Malingsia'", "'Malon'", "'Manglish'", "'Pirate'", "'Putrajaya'", "'Selangor'", "'Subang Jaya'", "'Zapin'")>>
+		<<set _nickname = either("'Durian'", "'George Town'", "'Jakun'", "'Jementah'", "'Kuala Lumpur'", "'Malay Girl'", "'Malaya'", "'Malaysian'", "'Malingsia'", "'Malon'", "'Manglish'", "'Pirate'", "'Putrajaya'", "'Selangor'", "'Subang Jaya'", "'Zapin'")>>
 	<<case "Maldivian">>
-		<<set $nickname = either("'Addu'", "'Dhivehi'", "'Dhoni'", "'Dibajat'", "'Garland'", "'Gayoom'", "'Hithadhoo'", "'Mahiladiva'", "'Maldive'", "'Maldivian'", "'Malé'", "'Necklace'", "'Suvadive'")>>
+		<<set _nickname = either("'Addu'", "'Dhivehi'", "'Dhoni'", "'Dibajat'", "'Garland'", "'Gayoom'", "'Hithadhoo'", "'Mahiladiva'", "'Maldive'", "'Maldivian'", "'Malé'", "'Necklace'", "'Suvadive'")>>
 	<<case "Malian">>
-		<<set $nickname = either("'Azawad'", "'Bamako'", "'Djenné'", "'French Sudan'", "'Hippopotamus'", "'Malian'", "'Mandinka'", "'Mansa Musa'", "'Sahel'", "'Sikasso'", "'Timbuktu'", "'Trans-Sahara'", "'Tuareg'")>>
+		<<set _nickname = either("'Azawad'", "'Bamako'", "'Djenné'", "'French Sudan'", "'Hippopotamus'", "'Malian'", "'Mandinka'", "'Mansa Musa'", "'Sahel'", "'Sikasso'", "'Timbuktu'", "'Trans-Sahara'", "'Tuareg'")>>
 	<<case "Maltese">>
-		<<set $nickname = either("'Birkirkara'", "'George Cross'", "'Għargħar'", "'Maltese Falcon'", "'Maltese'", "'Melita'", "'Mosta'", "'Pharaoh Hound'", "'Valletta'")>>
+		<<set _nickname = either("'Birkirkara'", "'George Cross'", "'Għargħar'", "'Maltese Falcon'", "'Maltese'", "'Melita'", "'Mosta'", "'Pharaoh Hound'", "'Valletta'")>>
 	<<case "Marshallese">>
-		<<set $nickname = either("'Bikini Atoll'", "'Ebeye'", "'Enewetak'", "'Leroij'", "'Majuro'", "'Marshall'", "'Marshallese'", "'Rita'", "'Stick Chart'")>>
+		<<set _nickname = either("'Bikini Atoll'", "'Ebeye'", "'Enewetak'", "'Leroij'", "'Majuro'", "'Marshall'", "'Marshallese'", "'Rita'", "'Stick Chart'")>>
 	<<case "Mauritanian">>
-		<<set $nickname = either("'Akjoujt'", "'Arguin'", "'Coppolani'", "'Daddah'", "'Honorable Gift'", "'Imraguen'", "'Mauri'", "'Mauritanian'", "'Moor'", "'Nouadhibou'", "'Nouakchott'", "'Tamkartkart'")>>
+		<<set _nickname = either("'Akjoujt'", "'Arguin'", "'Coppolani'", "'Daddah'", "'Honorable Gift'", "'Imraguen'", "'Mauri'", "'Mauritanian'", "'Moor'", "'Nouadhibou'", "'Nouakchott'", "'Tamkartkart'")>>
 	<<case "Mauritian">>
-		<<set $nickname = either("'Chagos'", "'Cirne'", "'Dina Arobi'", "'Dodo'", "'Isle de France'", "'Mascarene'", "'Maurice'", "'Mauritian'", "'Moris'", "'Morisien'", "'Port Louis'", "'Star and Key'")>>
+		<<set _nickname = either("'Chagos'", "'Cirne'", "'Dina Arobi'", "'Dodo'", "'Isle de France'", "'Mascarene'", "'Maurice'", "'Mauritian'", "'Moris'", "'Morisien'", "'Port Louis'", "'Star and Key'")>>
 	<<case "Mexican">>
-		<<set $nickname = either("'Acapulco'", "'Ahuehuete'", "'Alegoría de la Patria Mexicana'", "'Azteca'", "'Beaner'", "'Burrito'", "'Cartel'", "'China Poblana'", "'Chiquita'", "'Fence Hopper'", "'Guadalajara'", "'Hat Dance'", "'Headless'", "'Juarez'", "'Malinche'", "'Mamacita'", "'Mexica'", "'Mexican'", "'Monterrey'", "'Pelada'", "'Senorita'", "'Sinaloa'", "'Sunny'", "'Taco'", "'Tijuana'", "'Veracruz'", "'Wetback'")>>
+		<<set _nickname = either("'Acapulco'", "'Ahuehuete'", "'Alegoría de la Patria Mexicana'", "'Azteca'", "'Beaner'", "'Burrito'", "'Cartel'", "'China Poblana'", "'Chiquita'", "'Fence Hopper'", "'Guadalajara'", "'Hat Dance'", "'Headless'", "'Juarez'", "'Malinche'", "'Mamacita'", "'Mexica'", "'Mexican'", "'Monterrey'", "'Pelada'", "'Senorita'", "'Sinaloa'", "'Sunny'", "'Taco'", "'Tijuana'", "'Veracruz'", "'Wetback'")>>
 	<<case "Micronesian">>
-		<<set $nickname = either("'Caroline'", "'Chuuk'", "'F.S.M.'", "'Hailstone'", "'Kolonia'", "'Kosrae'", "'Micronesian'", "'Nan Madol'", "'Ngatikese'", "'Palikir'", "'Pohnpei'", "'Truk'", "'Weno'", "'Yap'")>>
+		<<set _nickname = either("'Caroline'", "'Chuuk'", "'F.S.M.'", "'Hailstone'", "'Kolonia'", "'Kosrae'", "'Micronesian'", "'Nan Madol'", "'Ngatikese'", "'Palikir'", "'Pohnpei'", "'Truk'", "'Weno'", "'Yap'")>>
 	<<case "Moldovan">>
-		<<set $nickname = either("'Aurochs'", "'Bălți'", "'Bessarabia'", "'Chișinău'", "'Dragoș'", "'Molda'", "'Moldavia'", "'Moldovan'", "'Tiraspol'", "'Voivode'", "'Wallachia'")>>
+		<<set _nickname = either("'Aurochs'", "'Bălți'", "'Bessarabia'", "'Chișinău'", "'Dragoș'", "'Molda'", "'Moldavia'", "'Moldovan'", "'Tiraspol'", "'Voivode'", "'Wallachia'")>>
 	<<case "Monégasque">>
-		<<set $nickname = either("'Grace Kelly'", "'Grimaldi'", "'Hercules'", "'Liguria'", "'Monacan'", "'Monégasque'", "'Monte Carlo'", "'Single House'")>>
+		<<set _nickname = either("'Grace Kelly'", "'Grimaldi'", "'Hercules'", "'Liguria'", "'Monacan'", "'Monégasque'", "'Monte Carlo'", "'Single House'")>>
 	<<case "Mongolian">>
-		<<set $nickname = either("'Biyelgee'", "'Blue Sky'", "'Death Worm'", "'Genghis Khan'", "'Hun'", "'Mong'", "'Mongol'", "'Mongolian'", "'Mongoloid'", "'Tulpar'", "'Ulaanbaatar'", "'Yumjaagiin'")>>
+		<<set _nickname = either("'Biyelgee'", "'Blue Sky'", "'Death Worm'", "'Genghis Khan'", "'Hun'", "'Mong'", "'Mongol'", "'Mongolian'", "'Mongoloid'", "'Tulpar'", "'Ulaanbaatar'", "'Yumjaagiin'")>>
 	<<case "Montenegrin">>
-		<<set $nickname = either("'Black Mountain'", "'Cetinje'", "'Crna Gora'", "'Fairy of Lovćen'", "'Montenegrin'", "'Mother Montenegro'", "'Nikšić'", "'Podgorica'")>>
+		<<set _nickname = either("'Black Mountain'", "'Cetinje'", "'Crna Gora'", "'Fairy of Lovćen'", "'Montenegrin'", "'Mother Montenegro'", "'Nikšić'", "'Podgorica'")>>
 	<<case "Moroccan">>
-		<<set $nickname = either("'Agadir'", "'Barbary Lion'", "'Berber'", "'Casablanca'", "'Ceuta'", "'Fez'", "'Maghreb'", "'Marrakesh'", "'Meknes'", "'Melilla'", "'Moor'", "'Moroccan'", "'Oujda'", "'Rabat'", "'Tangier'", "'Walili'", "'Western Queen'")>>
+		<<set _nickname = either("'Agadir'", "'Barbary Lion'", "'Berber'", "'Casablanca'", "'Ceuta'", "'Fez'", "'Maghreb'", "'Marrakesh'", "'Meknes'", "'Melilla'", "'Moor'", "'Moroccan'", "'Oujda'", "'Rabat'", "'Tangier'", "'Walili'", "'Western Queen'")>>
 	<<case "Mosotho">>
-		<<set $nickname = either("'Basotho'", "'Basutoland'", "'Butha-Buthe'", "'Lesothan'", "'Lesotho Promise'", "'Maseru'", "'Moshoeshoe'", "'Mosotho'", "'Queen in the Sky'", "'San'", "'Sesotho'", "'Teyateyaneng'")>>
+		<<set _nickname = either("'Basotho'", "'Basutoland'", "'Butha-Buthe'", "'Lesothan'", "'Lesotho Promise'", "'Maseru'", "'Moshoeshoe'", "'Mosotho'", "'Queen in the Sky'", "'San'", "'Sesotho'", "'Teyateyaneng'")>>
 	<<case "Motswana">>
-		<<set $nickname = either("'Bechuanaland'", "'Botswanan'", "'Equal'", "'Francistown'", "'Gaborone'", "'Jameson'", "'Kalahari'", "'Khama'", "'Mafeking'", "'Motswana'", "'Sedudu'", "'Tswana'")>>
+		<<set _nickname = either("'Bechuanaland'", "'Botswanan'", "'Equal'", "'Francistown'", "'Gaborone'", "'Jameson'", "'Kalahari'", "'Khama'", "'Mafeking'", "'Motswana'", "'Sedudu'", "'Tswana'")>>
 	<<case "Mozambican">>
-		<<set $nickname = either("'Beira'", "'Chibuene'", "'Gaza'", "'Lourenço Marques'", "'Machel'", "'Maputo'", "'Matola'", "'Mozambican'", "'Mussa Bin Bique'", "'Tufo'")>>
+		<<set _nickname = either("'Beira'", "'Chibuene'", "'Gaza'", "'Lourenço Marques'", "'Machel'", "'Maputo'", "'Matola'", "'Mozambican'", "'Mussa Bin Bique'", "'Tufo'")>>
 	<<case "Namibian">>
-		<<set $nickname = either("'Brave'", "'Caprivi'", "'Herero'", "'Namaqua'", "'Namib'", "'Namibian'", "'Nothingness'", "'Otjimbingwe'", "'Rundu'", "'Shark Island'", "'Vastness'", "'Von Trotha'", "'Walvis Bay'", "'Windhoek'")>>
+		<<set _nickname = either("'Brave'", "'Caprivi'", "'Herero'", "'Namaqua'", "'Namib'", "'Namibian'", "'Nothingness'", "'Otjimbingwe'", "'Rundu'", "'Shark Island'", "'Vastness'", "'Von Trotha'", "'Walvis Bay'", "'Windhoek'")>>
 	<<case "Nauruan">>
-		<<set $nickname = either("'Beachgoer'", "'Buada'", "'Denigomudu'", "'Meneng'", "'Nauruan'", "'Nawodo'", "'Onawero'", "'Phosphate'", "'Pleasant Island'", "'Yaren'")>>
+		<<set _nickname = either("'Beachgoer'", "'Buada'", "'Denigomudu'", "'Meneng'", "'Nauruan'", "'Nawodo'", "'Onawero'", "'Phosphate'", "'Pleasant Island'", "'Yaren'")>>
 	<<case "Nepalese">>
-		<<set $nickname = either("'Cattle Herder'", "'Danphe'", "'Everest'", "'K2'", "'Kathmandu'", "'Kumari'", "'Nep'", "'Nepalese'", "'Nepali'", "'Newa'", "'Pashupati'", "'Pokhara'", "'Rhododendron'", "'Sagarmatha'", "'Sherpa'")>>
+		<<set _nickname = either("'Cattle Herder'", "'Danphe'", "'Everest'", "'K2'", "'Kathmandu'", "'Kumari'", "'Nep'", "'Nepalese'", "'Nepali'", "'Newa'", "'Pashupati'", "'Pokhara'", "'Rhododendron'", "'Sagarmatha'", "'Sherpa'")>>
 	<<case "New Caledonian">>
-		<<set $nickname = either("'Belep'", "'Caillou'", "'Caldoche'", "'Chesterfield'", "'Cutter'", "'Grande Terre'", "'Granite'", "'Kanak'", "'Loyalty'", "'New Caledonian'", "'Nickel'", "'Nouméa'", "'Ouvéa'", "'Pine'", "'Sandalwood'", "'Tayo'")>>
+		<<set _nickname = either("'Belep'", "'Caillou'", "'Caldoche'", "'Chesterfield'", "'Cutter'", "'Grande Terre'", "'Granite'", "'Kanak'", "'Loyalty'", "'New Caledonian'", "'Nickel'", "'Nouméa'", "'Ouvéa'", "'Pine'", "'Sandalwood'", "'Tayo'")>>
 	<<case "a New Zealander">>
-		<<set $nickname = either("'All-Black'", "'Auckland'", "'Haka'", "'Hobbit'", "'Kiwi'", "'Kiwifruit'", "'Long White Cloud'", "'New Zealander'", "'Sheep Shagger'", "'Wellington'", "'Zealandia'")>>
+		<<set _nickname = either("'All-Black'", "'Auckland'", "'Haka'", "'Hobbit'", "'Kiwi'", "'Kiwifruit'", "'Long White Cloud'", "'New Zealander'", "'Sheep Shagger'", "'Wellington'", "'Zealandia'")>>
 	<<case "Ni-Vanuatu">>
-		<<set $nickname = either("'Bislama'", "'Cargo Cult'", "'Espiritu Santo'", "'Great Cyclade'", "'Jane Frum'", "'Luganville'", "'Mobile Force'", "'New Hebride'", "'Ni-Vanuatu'", "'Port Vila'", "'Vanuatuan'")>>
+		<<set _nickname = either("'Bislama'", "'Cargo Cult'", "'Espiritu Santo'", "'Great Cyclade'", "'Jane Frum'", "'Luganville'", "'Mobile Force'", "'New Hebride'", "'Ni-Vanuatu'", "'Port Vila'", "'Vanuatuan'")>>
 	<<case "Nicaraguan">>
-		<<set $nickname = either("'By the Water'", "'Contra'", "'Granada'", "'Guardabarranco'", "'Lakes and Volcanoes'", "'León'", "'Managua'", "'Mosquito'", "'Nica'", "'Nicaraguan'", "'Nicarao'", "'Nicotine Water'", "'Pinolera'", "'Sandinista'", "'Somoza'")>>
+		<<set _nickname = either("'By the Water'", "'Contra'", "'Granada'", "'Guardabarranco'", "'Lakes and Volcanoes'", "'León'", "'Managua'", "'Mosquito'", "'Nica'", "'Nicaraguan'", "'Nicarao'", "'Nicotine Water'", "'Pinolera'", "'Sandinista'", "'Somoza'")>>
 	<<case "Nigerian">>
-		<<set $nickname = either("'Abuja'", "'Babangida'", "'Biafra'", "'Calabar'", "'Giant of Africa'", "'Igbo-Ukwu'", "'Kano'", "'Kukawa'", "'Kwara'", "'Lagos'", "'Naija'", "'Ngazargamu'", "'Niger Delta'", "'Nigerian'", "'Nok'", "'Obasanjo'", "'Ogoniland'", "'Onitsha'", "'Scammer'", "'Scrabble'")>>
+		<<set _nickname = either("'Abuja'", "'Babangida'", "'Biafra'", "'Calabar'", "'Giant of Africa'", "'Igbo-Ukwu'", "'Kano'", "'Kukawa'", "'Kwara'", "'Lagos'", "'Naija'", "'Ngazargamu'", "'Niger Delta'", "'Nigerian'", "'Nok'", "'Obasanjo'", "'Ogoniland'", "'Onitsha'", "'Scammer'", "'Scrabble'")>>
 	<<case "Nigerien">>
-		<<set $nickname = either("'Agadez'", "'Flowing Water'", "'Kaocen'", "'Kountché'", "'Niamey'", "'Nigerien'", "'Nigérienne'", "'Sarraounia'", "'Songhai'", "'Tenere'", "'Zinder'")>>
+		<<set _nickname = either("'Agadez'", "'Flowing Water'", "'Kaocen'", "'Kountché'", "'Niamey'", "'Nigerien'", "'Nigérienne'", "'Sarraounia'", "'Songhai'", "'Tenere'", "'Zinder'")>>
 	<<case "Niuean">>
-		<<set $nickname = either("'Alofi'", "'Coconut'", "'Hakupu'", "'Niuean'", "'Patu-Iki'", "'Peniamina'", "'Rock of Polynesia'", "'Savage'", "'The Rock'")>>
+		<<set _nickname = either("'Alofi'", "'Coconut'", "'Hakupu'", "'Niuean'", "'Patu-Iki'", "'Peniamina'", "'Rock of Polynesia'", "'Savage'", "'The Rock'")>>
 	<<case "Norwegian">>
-		<<set $nickname = either("'Bergen'", "'Black Metal'", "'Fjord'", "'Hallingdans'", "'Kuksuger'", "'Lillehammer'", "'Ludder'", "'Midnight Sun'", "'Norse'", "'Norsk'", "'Northern Way'", "'Northwoman'", "'Norwegian'", "'Oil Hog'", "'Ola'", "'Oslo'", "'Troll'", "'Trondheim'", "'Viking'")>>
+		<<set _nickname = either("'Bergen'", "'Black Metal'", "'Fjord'", "'Hallingdans'", "'Kuksuger'", "'Lillehammer'", "'Ludder'", "'Midnight Sun'", "'Norse'", "'Norsk'", "'Northern Way'", "'Northwoman'", "'Norwegian'", "'Oil Hog'", "'Ola'", "'Oslo'", "'Troll'", "'Trondheim'", "'Viking'")>>
 	<<case "Omani">>
-		<<set $nickname = either("'Al Ayn'", "'Al Batinah'", "'Al-Bar'ah'", "'Dhofar'", "'Empty Quarter'", "'Ibadi'", "'Ibadite'", "'Khanjar'", "'Muscat'", "'Omani'", "'Said'", "'Salalah'", "'Seeb'", "'Suhar'")>>
+		<<set _nickname = either("'Al Ayn'", "'Al Batinah'", "'Al-Bar'ah'", "'Dhofar'", "'Empty Quarter'", "'Ibadi'", "'Ibadite'", "'Khanjar'", "'Muscat'", "'Omani'", "'Said'", "'Salalah'", "'Seeb'", "'Suhar'")>>
 	<<case "Pakistani">>
-		<<set $nickname = either("'Deodar'", "'Faisalabad'", "'Indus'", "'Islamabad'", "'Karachi'", "'Lahore'", "'Markhor'", "'Now or Never'", "'Pak'", "'Paki'", "'Pakistani'", "'PAKSTAN'", "'Pure'")>>
+		<<set _nickname = either("'Deodar'", "'Faisalabad'", "'Indus'", "'Islamabad'", "'Karachi'", "'Lahore'", "'Markhor'", "'Now or Never'", "'Pak'", "'Paki'", "'Pakistani'", "'PAKSTAN'", "'Pure'")>>
 	<<case "Palauan">>
-		<<set $nickname = either("'Airai'", "'Belau'", "'Enchanted'", "'Indirect Reply'", "'Koror'", "'Ngerulmud'", "'Palaos'", "'Palauan'", "'Peleliu'", "'Pelew'", "'Trinidad'", "'Ulong'")>>
+		<<set _nickname = either("'Airai'", "'Belau'", "'Enchanted'", "'Indirect Reply'", "'Koror'", "'Ngerulmud'", "'Palaos'", "'Palauan'", "'Peleliu'", "'Pelew'", "'Trinidad'", "'Ulong'")>>
 	<<case "Palestinian">>
-		<<set $nickname = either("'Dabke'", "'Gaza'", "'Hamas'", "'Hebron'", "'Intifada'", "'Israeli'", "'Jerusalem'", "'Palestinian'", "'Pallywood'", "'Philistine'", "'Ramallah'", "'River to Sea'", "'Samaria'", "'Shechem'", "'Tirzah'", "'West Bank'")>>
+		<<set _nickname = either("'Dabke'", "'Gaza'", "'Hamas'", "'Hebron'", "'Intifada'", "'Israeli'", "'Jerusalem'", "'Palestinian'", "'Pallywood'", "'Philistine'", "'Ramallah'", "'River to Sea'", "'Samaria'", "'Shechem'", "'Tirzah'", "'West Bank'")>>
 	<<case "Panamanian">>
-		<<set $nickname = either("'Balboa'", "'Butterfly'", "'Caledonia'", "'Canalera'", "'Colón'", "'Harpy Eagle'", "'Istmeña'", "'Many Fish'", "'New Granada'", "'Noriega'", "'Pana'", "'Panama Canal'", "'Panamanian'", "'Tamborito'", "'Zonian'")>>
+		<<set _nickname = either("'Balboa'", "'Butterfly'", "'Caledonia'", "'Canalera'", "'Colón'", "'Harpy Eagle'", "'Istmeña'", "'Many Fish'", "'New Granada'", "'Noriega'", "'Pana'", "'Panama Canal'", "'Panamanian'", "'Tamborito'", "'Zonian'")>>
 	<<case "Papua New Guinean">>
-		<<set $nickname = either("'Black'", "'Bougainville'", "'Dugong'", "'Lae'", "'P.N.G.'", "'Papua New Guinean'", "'Papua'", "'Port Moresby'", "'Sing-Sing'", "'Sweet Potato'", "'Tok Pisin'", "'Unserdeutsch'")>>
+		<<set _nickname = either("'Black'", "'Bougainville'", "'Dugong'", "'Lae'", "'P.N.G.'", "'Papua New Guinean'", "'Papua'", "'Port Moresby'", "'Sing-Sing'", "'Sweet Potato'", "'Tok Pisin'", "'Unserdeutsch'")>>
 	<<case "Paraguayan">>
-		<<set $nickname = either("'Asunción'", "'Ciudad del Este'", "'Crown River'", "'Guaraní'", "'Heart of South America'", "'Lapacho'", "'Paraguayan'", "'River Water'", "'Stroessner'", "'Stronato'")>>
+		<<set _nickname = either("'Asunción'", "'Ciudad del Este'", "'Crown River'", "'Guaraní'", "'Heart of South America'", "'Lapacho'", "'Paraguayan'", "'River Water'", "'Stroessner'", "'Stronato'")>>
 	<<case "Peruvian">>
-		<<set $nickname = either("'Arequipa'", "'Beru'", "'Cain de Latinoamérica'", "'Cusco'", "'Incan'", "'Lima'", "'Lorcha'", "'Madre Patria'", "'Marinera'", "'Perucha'", "'Peruvian'", "'Trujillo'", "'Zampoña'")>>
+		<<set _nickname = either("'Arequipa'", "'Beru'", "'Cain de Latinoamérica'", "'Cusco'", "'Incan'", "'Lima'", "'Lorcha'", "'Madre Patria'", "'Marinera'", "'Perucha'", "'Peruvian'", "'Trujillo'", "'Zampoña'")>>
 	<<case "Polish">>
-		<<set $nickname = either("'Hussar'", "'Katowice'", "'Kraków'", "'Kurwa'", "'Łódź'", "'Lublin'", "'Polack'", "'Polan'", "'Polandball'", "'Pole'", "'Polish'", "'Polonia'", "'Polski'", "'Pshek'", "'Virgin Soil'", "'Warsaw'")>>
+		<<set _nickname = either("'Hussar'", "'Katowice'", "'Kraków'", "'Kurwa'", "'Łódź'", "'Lublin'", "'Polack'", "'Polan'", "'Polandball'", "'Pole'", "'Polish'", "'Polonia'", "'Polski'", "'Pshek'", "'Virgin Soil'", "'Warsaw'")>>
 	<<case "Portuguese">>
-		<<set $nickname = either("'Braga'", "'Bunda'", "'Carnation'", "'Estado Novo'", "'Lisbon'", "'Lusitania'", "'Óbidos'", "'Patuleia'", "'Portagee'", "'Porto'", "'Portuguese'", "'Tuga'", "'Vira'")>>
+		<<set _nickname = either("'Braga'", "'Bunda'", "'Carnation'", "'Estado Novo'", "'Lisbon'", "'Lusitania'", "'Óbidos'", "'Patuleia'", "'Portagee'", "'Porto'", "'Portuguese'", "'Tuga'", "'Vira'")>>
 	<<case "Puerto Rican">>
-		<<set $nickname = either("'51st State'", "'Bayamón'", "'Boricua'", "'Borinquen'", "'Nuyorican'", "'P.R.'", "'Ponce'", "'Porto Rican'", "'Puerto Rican'", "'Puertorriqueña'", "'San Juan'", "'West Side Story'")>>
+		<<set _nickname = either("'51st State'", "'Bayamón'", "'Boricua'", "'Borinquen'", "'Nuyorican'", "'P.R.'", "'Ponce'", "'Porto Rican'", "'Puerto Rican'", "'Puertorriqueña'", "'San Juan'", "'West Side Story'")>>
 	<<case "Qatari">>
-		<<set $nickname = either("'Al Da'asa'", "'Al Jazeera'", "'Al Khor'", "'Al Rayyan'", "'Al Wajbah'", "'Ardah'", "'Cadara'", "'Catara'", "'Catharrei'", "'Cutter'", "'Doha'", "'Qatari'", "'Thani'", "'Zubarah'")>>
+		<<set _nickname = either("'Al Da'asa'", "'Al Jazeera'", "'Al Khor'", "'Al Rayyan'", "'Al Wajbah'", "'Ardah'", "'Cadara'", "'Catara'", "'Catharrei'", "'Cutter'", "'Doha'", "'Qatari'", "'Thani'", "'Zubarah'")>>
 	<<case "Romanian">>
-		<<set $nickname = either("'Bucharest'", "'Ceaușescu'", "'Cluj-Napoca'", "'Constanța'", "'Dacian'", "'Dracula'", "'Gypsy'", "'Impaler'", "'Lynx'", "'Orphan'", "'Roma'", "'Roman'", "'România'", "'Romanian'", "'Transylvanian'", "'Vlad'", "'Wallachia'")>>
+		<<set _nickname = either("'Bucharest'", "'Ceaușescu'", "'Cluj-Napoca'", "'Constanța'", "'Dacian'", "'Dracula'", "'Gypsy'", "'Impaler'", "'Lynx'", "'Orphan'", "'Roma'", "'Roman'", "'România'", "'Romanian'", "'Transylvanian'", "'Vlad'", "'Wallachia'")>>
 	<<case "Russian">>
-		<<set $nickname = either("'Bolshevik'", "'Cabbage Eater'", "'Commie'", "'Double-Headed Eagle'", "'Kacap'", "'Katsap'", "'Mafiya'", "'Moscow'", "'Moskal'", "'Omsk'", "'Red Banner'", "'Rosuke'", "'Russian'", "'Russkie'", "'Saint Petersburg'", "'Shlyukha'", "'Siberian Kitten'", "'Sickle & Hammer'", "'Slav'", "'Soviet'", "'Stalin'", "'Suchka'", "'Suka'", "'Tovarish'", "'Tsar'", "'Tsaritsa'", "'Ulyanovsk'", "'Vodka'", "'Yekaterinburg'")>>
+		<<set _nickname = either("'Bolshevik'", "'Cabbage Eater'", "'Commie'", "'Double-Headed Eagle'", "'Kacap'", "'Katsap'", "'Mafiya'", "'Moscow'", "'Moskal'", "'Omsk'", "'Red Banner'", "'Rosuke'", "'Russian'", "'Russkie'", "'Saint Petersburg'", "'Shlyukha'", "'Siberian Kitten'", "'Sickle & Hammer'", "'Slav'", "'Soviet'", "'Stalin'", "'Suchka'", "'Suka'", "'Tovarish'", "'Tsar'", "'Tsaritsa'", "'Ulyanovsk'", "'Vodka'", "'Yekaterinburg'")>>
 	<<case "Rwandan">>
-		<<set $nickname = either("'Expanded'", "'Habyarimana'", "'Hotel Rwanda'", "'Hutu'", "'Kigali'", "'Leopard'", "'Muhanga'", "'Ruanda'", "'Rwandan'", "'Rwandese'", "'Thousand Hills'", "'Tutsi'")>>
+		<<set _nickname = either("'Expanded'", "'Habyarimana'", "'Hotel Rwanda'", "'Hutu'", "'Kigali'", "'Leopard'", "'Muhanga'", "'Ruanda'", "'Rwandan'", "'Rwandese'", "'Thousand Hills'", "'Tutsi'")>>
 	<<case "Sahrawi">>
-		<<set $nickname = either("'Abdelaziz'", "'Berm'", "'Bir Lehlou'", "'Dakhla'", "'El-Aaiún'", "'Free Zone'", "'Laayoune'", "'Moroccan'", "'Polisario'", "'Sahraouian'", "'Sahrawi'", "'Sahrawian'", "'Spanish Sahara'", "'Tifariti'", "'Western Saharan'")>>
+		<<set _nickname = either("'Abdelaziz'", "'Berm'", "'Bir Lehlou'", "'Dakhla'", "'El-Aaiún'", "'Free Zone'", "'Laayoune'", "'Moroccan'", "'Polisario'", "'Sahraouian'", "'Sahrawi'", "'Sahrawian'", "'Spanish Sahara'", "'Tifariti'", "'Western Saharan'")>>
 	<<case "Saint Lucian">>
-		<<set $nickname = either("'Brigand'", "'Castries'", "'Gros Islet'", "'Helen of the West Indies'", "'Kwadril'", "'Lucia'", "'Lucy of Syracuse'", "'Saint Lucian'", "'Windward'")>>
+		<<set _nickname = either("'Brigand'", "'Castries'", "'Gros Islet'", "'Helen of the West Indies'", "'Kwadril'", "'Lucia'", "'Lucy of Syracuse'", "'Saint Lucian'", "'Windward'")>>
 	<<case "Salvadoran">>
-		<<set $nickname = either("'Cuzcatlan'", "'Diamond'", "'Duarte'", "'Guanaca'", "'Indigo'", "'Izalco'", "'Maquilishuat'", "'Salvadoran'", "'Salvadoreña'", "'San Miguel'", "'San Salvador'", "'Savior'", "'Tomayate'", "'Xuc'")>>
+		<<set _nickname = either("'Cuzcatlan'", "'Diamond'", "'Duarte'", "'Guanaca'", "'Indigo'", "'Izalco'", "'Maquilishuat'", "'Salvadoran'", "'Salvadoreña'", "'San Miguel'", "'San Salvador'", "'Savior'", "'Tomayate'", "'Xuc'")>>
 	<<case "Sammarinese">>
-		<<set $nickname = either("'Apennine'", "'Dogana'", "'Garage'", "'Monte Titano'", "'Most Serene'", "'Saint Marinus'", "'Sammarinese'", "'San Marinese'", "'Serravalle'", "'Three Towers'")>>
+		<<set _nickname = either("'Apennine'", "'Dogana'", "'Garage'", "'Monte Titano'", "'Most Serene'", "'Saint Marinus'", "'Sammarinese'", "'San Marinese'", "'Serravalle'", "'Three Towers'")>>
 	<<case "Samoan">>
-		<<set $nickname = either("'Apia'", "'Baumann'", "'Holy Center'", "'Mau'", "'Moa'", "'Nafanua'", "'Navigator'", "'Nu'uuli'", "'Pago Pago'", "'Samoan'", "'Savai'i'", "'Tafuna'", "'Taualuga'", "'Tupu'", "'Upolu'", "'Vaitele'", "'Wrestler'")>>
+		<<set _nickname = either("'Apia'", "'Baumann'", "'Holy Center'", "'Mau'", "'Moa'", "'Nafanua'", "'Navigator'", "'Nu'uuli'", "'Pago Pago'", "'Samoan'", "'Savai'i'", "'Tafuna'", "'Taualuga'", "'Tupu'", "'Upolu'", "'Vaitele'", "'Wrestler'")>>
 	<<case "São Toméan">>
-		<<set $nickname = either("'Cocoa'", "'Elmina'", "'Forro'", "'Prince's Islander'", "'Príncipe'", "'Roças'", "'Saint Anthony'", "'Saint Thomas'", "'Santomean'", "'São Tomé'", "'São Toméan'")>>
+		<<set _nickname = either("'Cocoa'", "'Elmina'", "'Forro'", "'Prince's Islander'", "'Príncipe'", "'Roças'", "'Saint Anthony'", "'Saint Thomas'", "'Santomean'", "'São Tomé'", "'São Toméan'")>>
 	<<case "Saudi">>
-		<<set $nickname = either("'Al Qaeda'", "'Burqa'", "'Constellation'", "'Diriyah'", "'Jeddah'", "'Mecca'", "'Medina'", "'Osama'", "'Riyadh'", "'Sandy'", "'Saud'", "'Saudi Arabian'", "'Saudi'", "'Zamzam'")>>
+		<<set _nickname = either("'Al Qaeda'", "'Burqa'", "'Constellation'", "'Diriyah'", "'Jeddah'", "'Mecca'", "'Medina'", "'Osama'", "'Riyadh'", "'Sandy'", "'Saud'", "'Saudi Arabian'", "'Saudi'", "'Zamzam'")>>
 	<<case "Scottish">>
-		<<set $nickname = either("'Aberdeen'", "'Bagpipes'", "'Braveheart'", "'British'", "'Edinburgh'", "'Gaelic'", "'Glasgow'", "'Hadrian'", "'Haggis'", "'Jock'", "'Lass'", "'Ned'", "'Nessie'", "'Pict'", "'Scot'", "'Scotswoman'", "'Scottish'", "'Teuchter'", "'Unicorn'")>>
+		<<set _nickname = either("'Aberdeen'", "'Bagpipes'", "'Braveheart'", "'British'", "'Edinburgh'", "'Gaelic'", "'Glasgow'", "'Hadrian'", "'Haggis'", "'Jock'", "'Lass'", "'Ned'", "'Nessie'", "'Pict'", "'Scot'", "'Scotswoman'", "'Scottish'", "'Teuchter'", "'Unicorn'")>>
 	<<case "Senegalese">>
-		<<set $nickname = either("'Balafon'", "'Baobab'", "'Casamance'", "'Dakar'", "'Gorée'", "'Kora'", "'Mbalax'", "'Our Boat'", "'Pirogue'", "'Roge Sene'", "'Senegalese'", "'Wolof'", "'Zenata'")>>
+		<<set _nickname = either("'Balafon'", "'Baobab'", "'Casamance'", "'Dakar'", "'Gorée'", "'Kora'", "'Mbalax'", "'Our Boat'", "'Pirogue'", "'Roge Sene'", "'Senegalese'", "'Wolof'", "'Zenata'")>>
 	<<case "Serbian">>
-		<<set $nickname = either("'Belgrade'", "'Kolo'", "'Picka'", "'Plum'", "'Rascia'", "'Remove Kebab'", "'Serb'", "'Serbian'", "'Shkije'", "'Starčevo'", "'Triballi'", "'Vinča'", "'Vlach'", "'White Eagle'")>>
+		<<set _nickname = either("'Belgrade'", "'Kolo'", "'Picka'", "'Plum'", "'Rascia'", "'Remove Kebab'", "'Serb'", "'Serbian'", "'Shkije'", "'Starčevo'", "'Triballi'", "'Vinča'", "'Vlach'", "'White Eagle'")>>
 	<<case "Seychellois">>
-		<<set $nickname = either("'Angela'", "'Blooming Flower'", "'Mahé'", "'René'", "'Seabird'", "'Séchelles'", "'Seselwa'", "'Seychellois'", "'Victoria'")>>
+		<<set _nickname = either("'Angela'", "'Blooming Flower'", "'Mahé'", "'René'", "'Seabird'", "'Séchelles'", "'Seselwa'", "'Seychellois'", "'Victoria'")>>
 	<<case "Sierra Leonean">>
-		<<set $nickname = either("'Blood Diamond'", "'Cuffee'", "'Freetown'", "'Friendly'", "'Hut Tax'", "'Krio'", "'Mountain Lioness'", "'Serra Lyoa'", "'Sierra Leonean'", "'Sierra'")>>
+		<<set _nickname = either("'Blood Diamond'", "'Cuffee'", "'Freetown'", "'Friendly'", "'Hut Tax'", "'Krio'", "'Mountain Lioness'", "'Serra Lyoa'", "'Sierra Leonean'", "'Sierra'")>>
 	<<case "Singaporean">>
-		<<set $nickname = either("'Bedok'", "'City Lioness'", "'Durian'", "'Gardener'", "'Little Red Dot'", "'Merlion'", "'Pulau Ujong'", "'Raffles'", "'Sabana'", "'Singaporean'", "'Singlish'", "'Temasek'", "'Tumasik'")>>
+		<<set _nickname = either("'Bedok'", "'City Lioness'", "'Durian'", "'Gardener'", "'Little Red Dot'", "'Merlion'", "'Pulau Ujong'", "'Raffles'", "'Sabana'", "'Singaporean'", "'Singlish'", "'Temasek'", "'Tumasik'")>>
 	<<case "Slovak">>
-		<<set $nickname = either("'Bratislava'", "'Bzdocha'", "'Czechoslovakia'", "'Shahrisabz'", "'Shlapka'", "'Slav'", "'Slovak'", "'Slovakian'", "'Slovensko'", "'Tatra Tiger'", "'Tiso'", "'Tuka'", "'Velvet'")>>
+		<<set _nickname = either("'Bratislava'", "'Bzdocha'", "'Czechoslovakia'", "'Shahrisabz'", "'Shlapka'", "'Slav'", "'Slovak'", "'Slovakian'", "'Slovensko'", "'Tatra Tiger'", "'Tiso'", "'Tuka'", "'Velvet'")>>
 	<<case "Slovene">>
-		<<set $nickname = either("'Carantanian'", "'Carinthian'", "'Hayrack'", "'Ljubljana'", "'Prince's Stone'", "'Slav'", "'Slovene'", "'Slovenian'", "'Stara Pravda'")>>
+		<<set _nickname = either("'Carantanian'", "'Carinthian'", "'Hayrack'", "'Ljubljana'", "'Prince's Stone'", "'Slav'", "'Slovene'", "'Slovenian'", "'Stara Pravda'")>>
 	<<case "a Solomon Islander">>
-		<<set $nickname = either("'Guadalcanal'", "'Helpem Fren'", "'Honiara'", "'Lavinia'", "'Ophir'", "'Pijin'", "'Sandfly'", "'Solomon Islander'", "'Solomon'", "'Young Dick'")>>
+		<<set _nickname = either("'Guadalcanal'", "'Helpem Fren'", "'Honiara'", "'Lavinia'", "'Ophir'", "'Pijin'", "'Sandfly'", "'Solomon Islander'", "'Solomon'", "'Young Dick'")>>
 	<<case "Somali">>
-		<<set $nickname = either("'Barre'", "'Black Hawk Down'", "'Cattle Herder'", "'Dhaanto'", "'Laas Geel'", "'Mogadishu'", "'Pirate'", "'Samaale'", "'Skinnie'", "'Somali'", "'Somalian'", "'The Captain Now'", "'Zeila'")>>
+		<<set _nickname = either("'Barre'", "'Black Hawk Down'", "'Cattle Herder'", "'Dhaanto'", "'Laas Geel'", "'Mogadishu'", "'Pirate'", "'Samaale'", "'Skinnie'", "'Somali'", "'Somalian'", "'The Captain Now'", "'Zeila'")>>
 	<<case "South African">>
-		<<set $nickname = either("'Afrikaner'", "'Apartheid'", "'Azania'", "'Bloemfontein'", "'Boer'", "'Cape Town'", "'Durban'", "'Ekurhuleni'", "'Johannesburg'", "'Mandela'", "'Mzansi'", "'Port Elizabeth'", "'Pretoria'", "'Rainbow'", "'Rand'", "'Saffer'", "'Shaka'", "'Sharpeville'", "'South African'", "'Soweto'", "'Springbok'", "'Vuvuzela'")>>
+		<<set _nickname = either("'Afrikaner'", "'Apartheid'", "'Azania'", "'Bloemfontein'", "'Boer'", "'Cape Town'", "'Durban'", "'Ekurhuleni'", "'Johannesburg'", "'Mandela'", "'Mzansi'", "'Port Elizabeth'", "'Pretoria'", "'Rainbow'", "'Rand'", "'Saffer'", "'Shaka'", "'Sharpeville'", "'South African'", "'Soweto'", "'Springbok'", "'Vuvuzela'")>>
 	<<case "South Sudanese">>
-		<<set $nickname = either("'Anyanya'", "'Fashoda'", "'Juba'", "'Mountain Sea'", "'Nilotic'", "'Nuba'", "'Referendum'", "'South Kordofan'", "'South Sudanese'", "'Sudd'", "'Yei'")>>
+		<<set _nickname = either("'Anyanya'", "'Fashoda'", "'Juba'", "'Mountain Sea'", "'Nilotic'", "'Nuba'", "'Referendum'", "'South Kordofan'", "'South Sudanese'", "'Sudd'", "'Yei'")>>
 	<<case "Spanish">>
-		<<set $nickname = either("'Barcelona'", "'Castellana'", "'Castilian'", "'Español'", "'Flamenco'", "'Franco'", "'Gallega'", "'Hyrax'", "'Iberian'", "'Jamon'", "'Madrid'", "'Monja'", "'Peninsular'", "'Senora'", "'Siesta'", "'Spaniard'", "'Spanish'", "'Toreadora'", "'Xarnega'")>>
+		<<set _nickname = either("'Barcelona'", "'Castellana'", "'Castilian'", "'Español'", "'Flamenco'", "'Franco'", "'Gallega'", "'Hyrax'", "'Iberian'", "'Jamon'", "'Madrid'", "'Monja'", "'Peninsular'", "'Senora'", "'Siesta'", "'Spaniard'", "'Spanish'", "'Toreadora'", "'Xarnega'")>>
 	<<case "Sri Lankan">>
-		<<set $nickname = either("'Anuradhapura'", "'Ceylon'", "'Colombo'", "'Golden'", "'Hela'", "'Holy'", "'Kandy'", "'Kotte'", "'Lanka'", "'Polonnaruwa'", "'Rawana'", "'Sri Lankan'", "'Tamil'")>>
+		<<set _nickname = either("'Anuradhapura'", "'Ceylon'", "'Colombo'", "'Golden'", "'Hela'", "'Holy'", "'Kandy'", "'Kotte'", "'Lanka'", "'Polonnaruwa'", "'Rawana'", "'Sri Lankan'", "'Tamil'")>>
 	<<case "Sudanese">>
-		<<set $nickname = either("'Black'", "'Darfur'", "'Gordon's Revenge'", "'Khartoum'", "'Kushite'", "'Mahdist'", "'North Sudanese'", "'Nubian'", "'Omdurman'", "'Sennar'", "'Sudanese'")>>
+		<<set _nickname = either("'Black'", "'Darfur'", "'Gordon's Revenge'", "'Khartoum'", "'Kushite'", "'Mahdist'", "'North Sudanese'", "'Nubian'", "'Omdurman'", "'Sennar'", "'Sudanese'")>>
 	<<case "Surinamese">>
-		<<set $nickname = either("'Bouterse'", "'Dutch Guiana'", "'Guiana Shield'", "'Kaseko'", "'Lelydorp'", "'Mama Sranan'", "'Paramaribo'", "'Sranan Tongo'", "'Surinam'", "'Surinamer'", "'Surinamese'", "'Surinen'")>>
+		<<set _nickname = either("'Bouterse'", "'Dutch Guiana'", "'Guiana Shield'", "'Kaseko'", "'Lelydorp'", "'Mama Sranan'", "'Paramaribo'", "'Sranan Tongo'", "'Surinam'", "'Surinamer'", "'Surinamese'", "'Surinen'")>>
 	<<case "Swazi">>
-		<<set $nickname = either("'Eswatini'", "'Incwala'", "'Lobamba'", "'Manzini'", "'Mbabane'", "'Mswati'", "'Ngwane'", "'Swati'", "'Swazi'", "'Swazilander'", "'Umhlanga'")>>
+		<<set _nickname = either("'Eswatini'", "'Incwala'", "'Lobamba'", "'Manzini'", "'Mbabane'", "'Mswati'", "'Ngwane'", "'Swati'", "'Swazi'", "'Swazilander'", "'Umhlanga'")>>
 	<<case "Swedish">>
-		<<set $nickname = either("'Gothenburg'", "'Ikea'", "'Mother Svea'", "'Norse'", "'One's Own'", "'Stockholm'", "'Swede'", "'Sweden Yes'", "'Swedish'")>>
+		<<set _nickname = either("'Gothenburg'", "'Ikea'", "'Mother Svea'", "'Norse'", "'One's Own'", "'Stockholm'", "'Swede'", "'Sweden Yes'", "'Swedish'")>>
 	<<case "Swiss">>
-		<<set $nickname = either("'Alpine'", "'Banker'", "'Basel'", "'Bern'", "'Geneva'", "'Helvetia'", "'Lausanne'", "'Neutral'", "'Numbered Account'", "'Schlampe'", "'Sonderbund'", "'Swabian'", "'Swiss Miss'", "'Swiss'", "'Zürich'")>>
+		<<set _nickname = either("'Alpine'", "'Banker'", "'Basel'", "'Bern'", "'Geneva'", "'Helvetia'", "'Lausanne'", "'Neutral'", "'Numbered Account'", "'Schlampe'", "'Sonderbund'", "'Swabian'", "'Swiss Miss'", "'Swiss'", "'Zürich'")>>
 	<<case "Syrian">>
-		<<set $nickname = either("'Aleppo'", "'Assad'", "'Dabke'", "'Damascus'", "'Eblan'", "'Hermon'", "'Homs'", "'Rojava'", "'Syriac'", "'Syrian'", "'Tahrir al-Sham'", "'Umayyad'")>>
+		<<set _nickname = either("'Aleppo'", "'Assad'", "'Dabke'", "'Damascus'", "'Eblan'", "'Hermon'", "'Homs'", "'Rojava'", "'Syriac'", "'Syrian'", "'Tahrir al-Sham'", "'Umayyad'")>>
 	<<case "Taiwanese">>
-		<<set $nickname = either("'Chiang'", "'Chinese'", "'Formosa'", "'Kaohsiung'", "'Kuomintang'", "'Liuqiu'", "'Middag'", "'Penghu'", "'Taichung'", "'Tainan'", "'Taipei'", "'Taiwanese'", "'Terraced'", "'Zeelandia'")>>
+		<<set _nickname = either("'Chiang'", "'Chinese'", "'Formosa'", "'Kaohsiung'", "'Kuomintang'", "'Liuqiu'", "'Middag'", "'Penghu'", "'Taichung'", "'Tainan'", "'Taipei'", "'Taiwanese'", "'Terraced'", "'Zeelandia'")>>
 	<<case "Tajik">>
-		<<set $nickname = either("'Aluminum'", "'Dehgān'", "'Dushanbe'", "'Fārsīwān'", "'Khujand'", "'Persian Tiger'", "'Rahmon'", "'Remittances'", "'Sarazm'", "'Sogdiana'", "'Tajik'", "'Tajikistani'")>>
+		<<set _nickname = either("'Aluminum'", "'Dehgān'", "'Dushanbe'", "'Fārsīwān'", "'Khujand'", "'Persian Tiger'", "'Rahmon'", "'Remittances'", "'Sarazm'", "'Sogdiana'", "'Tajik'", "'Tajikistani'")>>
 	<<case "Tanzanian">>
-		<<set $nickname = either("'Black Coast'", "'Dar es Salaam'", "'Dodoma'", "'Flat Island'", "'Joined Waters'", "'Maji Maji'", "'Tanganyika'", "'Tanzanian'", "'Tanzanite'", "'Tippu Tip'", "'Wilderness'", "'Zanzibar'")>>
+		<<set _nickname = either("'Black Coast'", "'Dar es Salaam'", "'Dodoma'", "'Flat Island'", "'Joined Waters'", "'Maji Maji'", "'Tanganyika'", "'Tanzanian'", "'Tanzanite'", "'Tippu Tip'", "'Wilderness'", "'Zanzibar'")>>
 	<<case "Thai">>
-		<<set $nickname = either("'Ayutthaya'", "'Bangcock'", "'Bangkok'", "'Freedom'", "'Ladyboy'", "'Pattaya'", "'Phaya Naga'", "'Phra Siam Devadhiraj'", "'Rachapruek'", "'Royal Domain'", "'Siamese'", "'Smiley'", "'T-Girl'", "'Thai'")>>
+		<<set _nickname = either("'Ayutthaya'", "'Bangcock'", "'Bangkok'", "'Freedom'", "'Ladyboy'", "'Pattaya'", "'Phaya Naga'", "'Phra Siam Devadhiraj'", "'Rachapruek'", "'Royal Domain'", "'Siamese'", "'Smiley'", "'T-Girl'", "'Thai'")>>
 	<<case "Tibetan">>
-		<<set $nickname = either("'Buddhist'", "'Chamdo'", "'Chinese'", "'Chomolungma'", "'Dalai Lama'", "'Everest'", "'Himalayan'", "'Lhasa'", "'Monk'", "'Nagqu'", "'Nyingchi'", "'Shannan'", "'Shigatse'", "'Tibetan'", "'Tibetian'", "'Xizang'", "'Yarlung'")>>
+		<<set _nickname = either("'Buddhist'", "'Chamdo'", "'Chinese'", "'Chomolungma'", "'Dalai Lama'", "'Everest'", "'Himalayan'", "'Lhasa'", "'Monk'", "'Nagqu'", "'Nyingchi'", "'Shannan'", "'Shigatse'", "'Tibetan'", "'Tibetian'", "'Xizang'", "'Yarlung'")>>
 	<<case "Togolese">>
-		<<set $nickname = either("'Aného'", "'Behind the Sea'", "'By the Water'", "'Eyadéma'", "'Gnassingbé'", "'Lagoon'", "'Lomé'", "'Sokodé'", "'Togo Stick'", "'Togoland'", "'Togolese'", "'Togoville'")>>
+		<<set _nickname = either("'Aného'", "'Behind the Sea'", "'By the Water'", "'Eyadéma'", "'Gnassingbé'", "'Lagoon'", "'Lomé'", "'Sokodé'", "'Togo Stick'", "'Togoland'", "'Togolese'", "'Togoville'")>>
 	<<case "Tongan">>
-		<<set $nickname = either("'Eendracht'", "'Friendly'", "'Lakalaka'", "'Neiafu'", "'Nuku'alofa'", "'Nukuleka'", "'Southern'", "'Tongan'", "'Tongatapu'", "'Tu'i Tonga'")>>
+		<<set _nickname = either("'Eendracht'", "'Friendly'", "'Lakalaka'", "'Neiafu'", "'Nuku'alofa'", "'Nukuleka'", "'Southern'", "'Tongan'", "'Tongatapu'", "'Tu'i Tonga'")>>
 	<<case "Trinidadian">>
-		<<set $nickname = either("'Chaguanas'", "'Flying Fish'", "'Holy Trinity'", "'Hummingbird'", "'Iere'", "'Limbo'", "'Port of Spain'", "'San Fernando'", "'Tobacco'", "'Tobago'", "'Tobagonian'", "'Trinbagonian'", "'Trini'", "'Trinidad'", "'Trinidadian'")>>
+		<<set _nickname = either("'Chaguanas'", "'Flying Fish'", "'Holy Trinity'", "'Hummingbird'", "'Iere'", "'Limbo'", "'Port of Spain'", "'San Fernando'", "'Tobacco'", "'Tobago'", "'Tobagonian'", "'Trinbagonian'", "'Trini'", "'Trinidad'", "'Trinidadian'")>>
 	<<case "Tunisian">>
-		<<set $nickname = either("'Arab Spring'", "'Barbary'", "'Bourguiba'", "'Capsa'", "'Carthaginian'", "'Ifriqiya'", "'Punic'", "'Resting'", "'Sfax'", "'Tanith'", "'Tunis'", "'Tunisian'")>>
+		<<set _nickname = either("'Arab Spring'", "'Barbary'", "'Bourguiba'", "'Capsa'", "'Carthaginian'", "'Ifriqiya'", "'Punic'", "'Resting'", "'Sfax'", "'Tanith'", "'Tunis'", "'Tunisian'")>>
 	<<case "Turkish">>
-		<<set $nickname = either("'Ankara'", "'Bursa'", "'Constantinople'", "'Created'", "'ErdoÄŸan'", "'Harem'", "'Harran'", "'Istanbul'", "'Izmir'", "'Kanake'", "'Kebab'", "'Ottoman'", "'Turk'", "'Turkette'", "'Turkish'", "'Turksmell'", "'Young Turk'")>>
+		<<set _nickname = either("'Ankara'", "'Bursa'", "'Constantinople'", "'Created'", "'ErdoÄŸan'", "'Harem'", "'Harran'", "'Istanbul'", "'Izmir'", "'Kanake'", "'Kebab'", "'Ottoman'", "'Turk'", "'Turkette'", "'Turkish'", "'Turksmell'", "'Young Turk'")>>
 	<<case "Turkmen">>
-		<<set $nickname = either("'Almost Turk'", "'Ashgabat'", "'Iman'", "'Karakum'", "'Kyushtdepdi'", "'Merv'", "'Niyazov'", "'Pure Turk'", "'Turkmen'", "'Türkmenabat'", "'Turkmenistani'")>>
+		<<set _nickname = either("'Almost Turk'", "'Ashgabat'", "'Iman'", "'Karakum'", "'Kyushtdepdi'", "'Merv'", "'Niyazov'", "'Pure Turk'", "'Turkmen'", "'Türkmenabat'", "'Turkmenistani'")>>
 	<<case "Tuvaluan">>
-		<<set $nickname = either("'Asau'", "'Curacoa'", "'Eight'", "'Ellice'", "'Funafuti'", "'Gran Cocal'", "'Mendaña'", "'Nui'", "'Tuvaluan'")>>
+		<<set _nickname = either("'Asau'", "'Curacoa'", "'Eight'", "'Ellice'", "'Funafuti'", "'Gran Cocal'", "'Mendaña'", "'Nui'", "'Tuvaluan'")>>
 	<<case "Ugandan">>
-		<<set $nickname = either("'Amin'", "'Buganda'", "'Bundle'", "'Bushbaby'", "'Cannibal'", "'Gulu'", "'Kampala'", "'Kony'", "'Museveni'", "'Omukama'", "'Uganda Martyr'", "'Ugandan'")>>
+		<<set _nickname = either("'Amin'", "'Buganda'", "'Bundle'", "'Bushbaby'", "'Cannibal'", "'Gulu'", "'Kampala'", "'Kony'", "'Museveni'", "'Omukama'", "'Uganda Martyr'", "'Ugandan'")>>
 	<<case "Ukrainian">>
-		<<set $nickname = either("'Bandera'", "'Borderland'", "'Chernobyl'", "'Chiki Briki'", "'Cossack'", "'Crimea'", "'Donbass'", "'Donetsk'", "'Euromaidan'", "'Hohlina'", "'Hohlushka'", "'Hopak'", "'Kharkiv'", "'Khokhol'", "'Kiev'", "'Kyiv'", "'Mamay'", "'Radioactive'", "'Salo'", "'Shlyukha'", "'Stalker'", "'Suchka'", "'Suka'", "'Svoboda'", "'Uke'", "'Ukrainian'", "'Ukrop'", "'Viburnum'")>>
+		<<set _nickname = either("'Bandera'", "'Borderland'", "'Chernobyl'", "'Chiki Briki'", "'Cossack'", "'Crimea'", "'Donbass'", "'Donetsk'", "'Euromaidan'", "'Hohlina'", "'Hohlushka'", "'Hopak'", "'Kharkiv'", "'Khokhol'", "'Kiev'", "'Kyiv'", "'Mamay'", "'Radioactive'", "'Salo'", "'Shlyukha'", "'Stalker'", "'Suchka'", "'Suka'", "'Svoboda'", "'Uke'", "'Ukrainian'", "'Ukrop'", "'Viburnum'")>>
 	<<case "Uruguayan">>
-		<<set $nickname = either("'Bird-River'", "'Blanca'", "'Bordaberry'", "'Charrúa'", "'Ciudad de la Costa'", "'Colorada'", "'Garra Charrúa'", "'Maldonado'", "'Montevideo'", "'Oriental'", "'Shellfish'", "'Terra'", "'Tupamaro'", "'Uruguayan'")>>
+		<<set _nickname = either("'Bird-River'", "'Blanca'", "'Bordaberry'", "'Charrúa'", "'Ciudad de la Costa'", "'Colorada'", "'Garra Charrúa'", "'Maldonado'", "'Montevideo'", "'Oriental'", "'Shellfish'", "'Terra'", "'Tupamaro'", "'Uruguayan'")>>
 	<<case "Uzbek">>
-		<<set $nickname = either("'Bukhara'", "'Free'", "'Namangan'", "'Samarkand'", "'Shahrisabz'", "'Silk Road'", "'Steppe Princess'", "'Steppe Queen'", "'Tashkent'", "'Timur'", "'Ubeki-beki'", "'Uzbek'", "'Uzbekistani'")>>
+		<<set _nickname = either("'Bukhara'", "'Free'", "'Namangan'", "'Samarkand'", "'Shahrisabz'", "'Silk Road'", "'Steppe Princess'", "'Steppe Queen'", "'Tashkent'", "'Timur'", "'Ubeki-beki'", "'Uzbek'", "'Uzbekistani'")>>
 	<<case "Vatican">>
-		<<set $nickname = either("'Altar Girl'", "'Catholic'", "'Crusader'", "'Deus Vult'", "'Holy See'", "'Italian'", "'Lateran'", "'Nun'", "'Papal'", "'Pontifical'", "'Pope Joan'", "'Prophet'", "'Roman'", "'Sistine'", "'Swiss Guard'", "'Vatican'")>>
+		<<set _nickname = either("'Altar Girl'", "'Catholic'", "'Crusader'", "'Deus Vult'", "'Holy See'", "'Italian'", "'Lateran'", "'Nun'", "'Papal'", "'Pontifical'", "'Pope Joan'", "'Prophet'", "'Roman'", "'Sistine'", "'Swiss Guard'", "'Vatican'")>>
 	<<case "Venezuelan">>
-		<<set $nickname = either("'Araguaney'", "'Bolívar'", "'Caracas'", "'Chavista'", "'Chola'", "'Grace'", "'Joropo'", "'Little Venice'", "'Maracaibo'", "'New Granada'", "'Revolutionary'", "'Socialist'", "'Valencia'", "'Venezuelan'", "'Vuvuzela'")>>
+		<<set _nickname = either("'Araguaney'", "'Bolívar'", "'Caracas'", "'Chavista'", "'Chola'", "'Grace'", "'Joropo'", "'Little Venice'", "'Maracaibo'", "'New Granada'", "'Revolutionary'", "'Socialist'", "'Valencia'", "'Venezuelan'", "'Vuvuzela'")>>
 	<<case "Vietnamese">>
-		<<set $nickname = either("'Charlie'", "'Da Nang'", "'Hanoi'", "'Ho Chi'", "'Indochina'", "'Me Love You Long Time'", "'Me So Horny'", "'Mỹ Lai'", "'Saigon'", "'V.C.'", "'Victor Charlie'", "'Viet Cong'", "'Viet'", "'Vietnamese'", "'Yuon'")>>
+		<<set _nickname = either("'Charlie'", "'Da Nang'", "'Hanoi'", "'Ho Chi'", "'Indochina'", "'Me Love You Long Time'", "'Me So Horny'", "'Mỹ Lai'", "'Saigon'", "'V.C.'", "'Victor Charlie'", "'Viet Cong'", "'Viet'", "'Vietnamese'", "'Yuon'")>>
 	<<case "Vincentian">>
-		<<set $nickname = either("'Barrouallie'", "'Carib War'", "'Grenadine'", "'Hairouna'", "'Kingstown'", "'Soufrière'", "'Vincent'", "'Vincentian'", "'Vincy'", "'Windward'", "'Youloumain'")>>
+		<<set _nickname = either("'Barrouallie'", "'Carib War'", "'Grenadine'", "'Hairouna'", "'Kingstown'", "'Soufrière'", "'Vincent'", "'Vincentian'", "'Vincy'", "'Windward'", "'Youloumain'")>>
 	<<case "Yemeni">>
-		<<set $nickname = either("'Aden'", "'Al-Bar'ah'", "'Arabia Felix'", "'Felicity'", "'Himyarite'", "'Houthi'", "'Khat'", "'Minaean'", "'Queen of the Desert'", "'Red Sea Pirate'", "'Sana'a'", "'Sheba'", "'Yemeni'", "'Yemenite'")>>
+		<<set _nickname = either("'Aden'", "'Al-Bar'ah'", "'Arabia Felix'", "'Felicity'", "'Himyarite'", "'Houthi'", "'Khat'", "'Minaean'", "'Queen of the Desert'", "'Red Sea Pirate'", "'Sana'a'", "'Sheba'", "'Yemeni'", "'Yemenite'")>>
 	<<case "Zairian">>
-		<<set $nickname = either("'Authenticité'", "'Belgian Congo'", "'Boma'", "'Bongo'", "'Congolese'", "'Diamond'", "'Ebola'", "'Katanga'", "'Kinshasa'", "'Leopold'", "'Léopoldville'", "'Lubumbashi'", "'Okapi'", "'Rubber Farm'", "'South Kasai'", "'Zairean'", "'Zairian'")>>
+		<<set _nickname = either("'Authenticité'", "'Belgian Congo'", "'Boma'", "'Bongo'", "'Congolese'", "'Diamond'", "'Ebola'", "'Katanga'", "'Kinshasa'", "'Leopold'", "'Léopoldville'", "'Lubumbashi'", "'Okapi'", "'Rubber Farm'", "'South Kasai'", "'Zairean'", "'Zairian'")>>
 	<<case "Zambian">>
-		<<set $nickname = either("'Broken Hill'", "'Copperbelt'", "'Grand River'", "'Kabwe'", "'Kafue'", "'Kalambo'", "'Kaunda'", "'Kitwe'", "'Livingstone'", "'Lusaka'", "'Northern Rhodesia'", "'Victoria Falls'", "'Zambezi'", "'Zambian'")>>
+		<<set _nickname = either("'Broken Hill'", "'Copperbelt'", "'Grand River'", "'Kabwe'", "'Kafue'", "'Kalambo'", "'Kaunda'", "'Kitwe'", "'Livingstone'", "'Lusaka'", "'Northern Rhodesia'", "'Victoria Falls'", "'Zambezi'", "'Zambian'")>>
 	<<case "Zimbabwean">>
 		<<if $activeSlave.race == "white">>
-			<<set $nickname = either("'Altena'", "'Bush War'", "'Colonizer'", "'Mabuno'", "'Minority Rule'", "'Rhodesian'", "'Rhodie'", "'Salisbury'", "'Southern Rhodesia'", "'Zimbabwean'")>>
+			<<set _nickname = either("'Altena'", "'Bush War'", "'Colonizer'", "'Mabuno'", "'Minority Rule'", "'Rhodesian'", "'Rhodie'", "'Salisbury'", "'Southern Rhodesia'", "'Zimbabwean'")>>
 		<<else>>
-			<<set $nickname = either("'Bobojan'", "'Bulawayo'", "'Chimurenga'", "'Grimmy'", "'Harare'", "'Kaffir'", "'Mugabe'", "'Mujiba'", "'Nyombie'", "'Stone House'", "'Zimbabwean'", "'Zimbo'")>>
+			<<set _nickname = either("'Bobojan'", "'Bulawayo'", "'Chimurenga'", "'Grimmy'", "'Harare'", "'Kaffir'", "'Mugabe'", "'Mujiba'", "'Nyombie'", "'Stone House'", "'Zimbabwean'", "'Zimbo'")>>
 		<</if>>
 	<<default>>
-		<<set $nickname = either("'Alien'", "'Hobo'", "'Homeless'", "'Immigrant'", "'International'", "'Nomad'", "'Refugee'", "'Stateless'", "'Wanderer'")>>
+		<<set _nickname = either("'Alien'", "'Hobo'", "'Homeless'", "'Immigrant'", "'International'", "'Nomad'", "'Refugee'", "'Stateless'", "'Wanderer'")>>
 	<</switch>>
-	<<set $situationDesc = "is $activeSlave.nationality. The slave trade is truly international, and no nation is unrepresented among the masses of sex slaves passed from hand to hand like the chattel they are. Most of the old nations are struggling, and even those still in great shape often find their citizens emigrating to the Free Cities. Some of these émigrés do well, and others become human livestock.">>
-	<<set $applyDesc = "is a little proud of $his national nickname, as a reminder of who $he was and a mark that $he still has an identity.">>
-	<<set $notApplyDesc = "realizes that $his new identity is truly stateless. In the Free Cities, it does not matter where a slave is from, so long as that slave has value. All slaves belong to the singular nation of the owned, the subordinated, the fucked.">>
+	<<set _situationDesc = "is $activeSlave.nationality. The slave trade is truly international, and no nation is unrepresented among the masses of sex slaves passed from hand to hand like the chattel they are. Most of the old nations are struggling, and even those still in great shape often find their citizens emigrating to the Free Cities. Some of these émigrés do well, and others become human livestock.">>
+	<<set _applyDesc = "is a little proud of $his national nickname, as a reminder of who $he was and a mark that $he still has an identity.">>
+	<<set _notApplyDesc = "realizes that $his new identity is truly stateless. In the Free Cities, it does not matter where a slave is from, so long as that slave has value. All slaves belong to the singular nation of the owned, the subordinated, the fucked.">>
 
 <<case "amerindian">>
-	<<set $nickname = either("'Aborigine'", "'Amerindian'", "'Casino'", "'Chug'", "'Deerskin'", "'Dreamcatcher'", "'Eskimo Sister'", "'Eskimo'", "'Firewater'", "'First Nations'", "'Indian Giver'", "'Indian'", "'Indigenous'", "'Indio'", "'Injun'", "'Ke-mo Sah-bee'", "'Malinche'", "'Métis Mother'", "'Moccasins'", "'Native'", "'Nitchie'", "'Peace Pipe'", "'Pocahontas'", "'Pole Smoker'", "'Powwow'", "'Prairie Nigger'", "'Red'", "'Redskin'", "'Reservation'", "'Savage'", "'Scalper'", "'Smoke Signal'", "'Spirit Animal'", "'Squaw'", "'Tiger Lily'", "'Timber Nigger'", "'Tipi Warmer'", "'Tonto'", "'Totem Pole'", "'Tribal'", "'Warpath'", "'Wigwam'")>>
-	<<set $situationDesc = "is amerindian, which is not uncommon given the poverty that still plagues those long-suffering peoples. Slaves casually reference race as much or more than free citizens. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">>
-	<<set $applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">>
-	<<set $notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">>
+	<<set _nickname = either("'Aborigine'", "'Amerindian'", "'Casino'", "'Chug'", "'Deerskin'", "'Dreamcatcher'", "'Eskimo Sister'", "'Eskimo'", "'Firewater'", "'First Nations'", "'Indian Giver'", "'Indian'", "'Indigenous'", "'Indio'", "'Injun'", "'Ke-mo Sah-bee'", "'Malinche'", "'Métis Mother'", "'Moccasins'", "'Native'", "'Nitchie'", "'Peace Pipe'", "'Pocahontas'", "'Pole Smoker'", "'Powwow'", "'Prairie Nigger'", "'Red'", "'Redskin'", "'Reservation'", "'Savage'", "'Scalper'", "'Smoke Signal'", "'Spirit Animal'", "'Squaw'", "'Tiger Lily'", "'Timber Nigger'", "'Tipi Warmer'", "'Tonto'", "'Totem Pole'", "'Tribal'", "'Warpath'", "'Wigwam'")>>
+	<<set _situationDesc = "is amerindian, which is not uncommon given the poverty that still plagues those long-suffering peoples. Slaves casually reference race as much or more than free citizens. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">>
+	<<set _applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">>
+	<<set _notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">>
 
 <<case "asian">>
-	<<set $nickname = either("'3DPD'", "'Almond'", "'Asian'", "'Bamboo'", "'Charlie'", "'Chinese'", "'Ching Chong'", "'Chink'", "'Chopsticks'", "'Coolie'", "'Dink'", "'Dragon Lady'", "'E-Sports'", "'Fortune Cookie'", "'Fu Manchu'", "'Gook'", "'Heathen Chinee'", "'Jade Empress'", "'Manila'", "'Me Love You Long Time'", "'Me So Horny'", "'Oriental'", "'Pancake Face'", "'Pinoy'", "'Sideways'", "'Slant'", "'Slanteye'", "'Slope'", "'Squint'", "'Thaigirl'", "'Ting Tong'", "'Tokyo'", "'Waifu'", "'Yellow Fever'", "'Yellow Peril'", "'Yellow'", "'Zip'")>>
-	<<set $situationDesc = "is asian, which is not uncommon given the huge population of Asia and the poverty of many countries there. Slaves casually reference race as much or more than free citizens. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">>
-	<<set $applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">>
-	<<set $notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">>
+	<<set _nickname = either("'3DPD'", "'Almond'", "'Asian'", "'Bamboo'", "'Charlie'", "'Chinese'", "'Ching Chong'", "'Chink'", "'Chopsticks'", "'Coolie'", "'Dink'", "'Dragon Lady'", "'E-Sports'", "'Fortune Cookie'", "'Fu Manchu'", "'Gook'", "'Heathen Chinee'", "'Jade Empress'", "'Manila'", "'Me Love You Long Time'", "'Me So Horny'", "'Oriental'", "'Pancake Face'", "'Pinoy'", "'Sideways'", "'Slant'", "'Slanteye'", "'Slope'", "'Squint'", "'Thaigirl'", "'Ting Tong'", "'Tokyo'", "'Waifu'", "'Yellow Fever'", "'Yellow Peril'", "'Yellow'", "'Zip'")>>
+	<<set _situationDesc = "is asian, which is not uncommon given the huge population of Asia and the poverty of many countries there. Slaves casually reference race as much or more than free citizens. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">>
+	<<set _applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">>
+	<<set _notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">>
 
 <<case "black">>
-	<<set $nickname = either("'African'", "'Afro'", "'Aunt Jemima'", "'B-Girl'", "'Basketball'", "'Black'", "'Blackass'", "'Blacked'", "'Blackie'", "'Bottom Bitch'", "'Burrhead'", "'Cocoa'", "'Coon'", "'Cotton'", "'Dark'", "'Darky'", "'Ebony'", "'Gangsta'", "'Ghetto'", "'His Girl Friday'", "'House Slave'", "'Jungle Bunny'", "'Jungle Fever'", "'Mammy'", "'Miss'", "'Missie'", "'Mulatto'", "'Mulignan'", "'N-Word'", "'Negro'", "'Negroid'", "'Never Go Back'", "'Nigga'", "'Nigger'", "'Porch Monkey'", "'Projects'", "'Quadroon'", "'Queen'", "'Rapper'", "'Sambo'", "'Sheboon'", "'Spade'", "'Spear Chucker'", "'Spook'", "'Uncle Tom'", "'Welfare Queen'")>>
-	<<set $situationDesc = "is black, which is not uncommon given the urban collapse afflicting the first world and the wars raging in Africa. Slaves casually reference race as much or more than free citizens. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">>
-	<<set $applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">>
-	<<set $notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">>
+	<<set _nickname = either("'African'", "'Afro'", "'Aunt Jemima'", "'B-Girl'", "'Basketball'", "'Black'", "'Blackass'", "'Blacked'", "'Blackie'", "'Bottom Bitch'", "'Burrhead'", "'Cocoa'", "'Coon'", "'Cotton'", "'Dark'", "'Darky'", "'Ebony'", "'Gangsta'", "'Ghetto'", "'His Girl Friday'", "'House Slave'", "'Jungle Bunny'", "'Jungle Fever'", "'Mammy'", "'Miss'", "'Missie'", "'Mulatto'", "'Mulignan'", "'N-Word'", "'Negro'", "'Negroid'", "'Never Go Back'", "'Nigga'", "'Nigger'", "'Porch Monkey'", "'Projects'", "'Quadroon'", "'Queen'", "'Rapper'", "'Sambo'", "'Sheboon'", "'Spade'", "'Spear Chucker'", "'Spook'", "'Uncle Tom'", "'Welfare Queen'")>>
+	<<set _situationDesc = "is black, which is not uncommon given the urban collapse afflicting the first world and the wars raging in Africa. Slaves casually reference race as much or more than free citizens. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">>
+	<<set _applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">>
+	<<set _notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">>
 
 <<case "indo-aryan">>
-	<<set $nickname = either("'Apu'", "'Aryan'", "'Babu'", "'Bhabhi'", "'Bindi'", "'Bollywood'", "'Brown'", "'Chakra'", "'Chandala'", "'Curry Muncher'", "'Desi'", "'Dot'", "'Dothead'", "'Durga'", "'Gyp'", "'Gypsy'", "'Hajji'", "'Hare Krishna'", "'Hindu'", "'Indian'", "'Indo-Aryan'", "'Indo'", "'Kali Maa'", "'Kama Sutra'", "'Kaur'", "'Mughal'", "'Offshore'", "'Paki'", "'Rajah'", "'Sati'", "'Sepoy'", "'Shanti'", "'Shopkeep'", "'Sikh'", "'Sim Sim Salabim'", "'Snake Charmer'", "'Subcontinental'", "'Swami'", "'Tigress'", "'Untouchable'", "'Yoga'", "'Zoroastrian'", "'Zott'")>>
-	<<set $situationDesc = "is indo-aryan, which is not uncommon given the poverty in many majority indo-aryan countries, and the near-submersion of some others due to rising sea levels. Slaves casually reference race as much or more than free citizens. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">>
-	<<set $applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">>
-	<<set $notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">>
+	<<set _nickname = either("'Apu'", "'Aryan'", "'Babu'", "'Bhabhi'", "'Bindi'", "'Bollywood'", "'Brown'", "'Chakra'", "'Chandala'", "'Curry Muncher'", "'Desi'", "'Dot'", "'Dothead'", "'Durga'", "'Gyp'", "'Gypsy'", "'Hajji'", "'Hare Krishna'", "'Hindu'", "'Indian'", "'Indo-Aryan'", "'Indo'", "'Kali Maa'", "'Kama Sutra'", "'Kaur'", "'Mughal'", "'Offshore'", "'Paki'", "'Rajah'", "'Sati'", "'Sepoy'", "'Shanti'", "'Shopkeep'", "'Sikh'", "'Sim Sim Salabim'", "'Snake Charmer'", "'Subcontinental'", "'Swami'", "'Tigress'", "'Untouchable'", "'Yoga'", "'Zoroastrian'", "'Zott'")>>
+	<<set _situationDesc = "is indo-aryan, which is not uncommon given the poverty in many majority indo-aryan countries, and the near-submersion of some others due to rising sea levels. Slaves casually reference race as much or more than free citizens. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">>
+	<<set _applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">>
+	<<set _notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">>
 
 <<case "latina">>
-	<<set $nickname = either("'Adorada'", "'Arriba'", "'Banana Republic'", "'Bandita'", "'Barrio'", "'Beaner'", "'Brown'", "'Brownie'", "'Café'", "'Cartel'", "'Chica'", "'Chiquita'", "'Chola'", "'Coca'", "'Cuzinho'", "'Facil'", "'Fiery'", "'Fiesta'", "'Greaseball'", "'Greaser'", "'Hat Dance'", "'Hispanic'", "'Latin'", "'Latina'", "'Malinche'", "'Mamacita'", "'Mestiza'", "'Mexicali'", "'One Peso'", "'Piñata'", "'Rio Grande'", "'Salsa'", "'Señora'", "'Señorita'", "'Shakira'", "'Siesta'", "'South of the Border'", "'Spanish'", "'Spic'", "'Spicy'", "'Tacohead'", "'Tequila'", "'Wetback'", "'Yeyo'")>>
-	<<set $situationDesc = "is latina, which is not uncommon given the poor state of many Central and South American countries and the long diaspora of poor natives of those areas. Slaves casually reference race as much or more than free citizens. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">>
-	<<set $applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">>
-	<<set $notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">>
+	<<set _nickname = either("'Adorada'", "'Arriba'", "'Banana Republic'", "'Bandita'", "'Barrio'", "'Beaner'", "'Brown'", "'Brownie'", "'Café'", "'Cartel'", "'Chica'", "'Chiquita'", "'Chola'", "'Coca'", "'Cuzinho'", "'Facil'", "'Fiery'", "'Fiesta'", "'Greaseball'", "'Greaser'", "'Hat Dance'", "'Hispanic'", "'Latin'", "'Latina'", "'Malinche'", "'Mamacita'", "'Mestiza'", "'Mexicali'", "'One Peso'", "'Piñata'", "'Rio Grande'", "'Salsa'", "'Señora'", "'Señorita'", "'Shakira'", "'Siesta'", "'South of the Border'", "'Spanish'", "'Spic'", "'Spicy'", "'Tacohead'", "'Tequila'", "'Wetback'", "'Yeyo'")>>
+	<<set _situationDesc = "is latina, which is not uncommon given the poor state of many Central and South American countries and the long diaspora of poor natives of those areas. Slaves casually reference race as much or more than free citizens. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">>
+	<<set _applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">>
+	<<set _notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">>
 
 <<case "malay">>
-	<<set $nickname = either("'Asian Nigger'", "'Austronesian'", "'Bumi'", "'Bumiputera'", "'Cinnamon'", "'Durian'", "'East Indies'", "'Flip-Flop'", "'Flying Fish'", "'Huan-a'", "'Indon'", "'Island Hopper'", "'Islander'", "'Jakun'", "'Keling'", "'Krakatoa'", "'Kunlun'", "'Lazy Day'", "'Madrasa'", "'Malay'", "'Malaysian'", "'Malingsia'", "'Malon'", "'Melayu'", "'Mesoindian'", "'My Lay'", "'Nāga'", "'Nutmeg'", "'Orang'", "'Pinoy'", "'Pribumi'", "'Rani'", "'Samudra Kidul'", "'Sandalwood'", "'Sarong Party'", "'Spice Girl'", "'Spice Islands'", "'Spice Trade'", "'Spice'", "'Trade Winds'", "'Treehouse'")>>
-	<<set $situationDesc = "is malay, which is not uncommon given the ongoing poverty in many majority malay countries, and the serious weather patterns savaging that part of the world. Slaves casually reference race as much or more than free citizens. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">>
-	<<set $applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">>
-	<<set $notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">>
+	<<set _nickname = either("'Asian Nigger'", "'Austronesian'", "'Bumi'", "'Bumiputera'", "'Cinnamon'", "'Durian'", "'East Indies'", "'Flip-Flop'", "'Flying Fish'", "'Huan-a'", "'Indon'", "'Island Hopper'", "'Islander'", "'Jakun'", "'Keling'", "'Krakatoa'", "'Kunlun'", "'Lazy Day'", "'Madrasa'", "'Malay'", "'Malaysian'", "'Malingsia'", "'Malon'", "'Melayu'", "'Mesoindian'", "'My Lay'", "'Nāga'", "'Nutmeg'", "'Orang'", "'Pinoy'", "'Pribumi'", "'Rani'", "'Samudra Kidul'", "'Sandalwood'", "'Sarong Party'", "'Spice Girl'", "'Spice Islands'", "'Spice Trade'", "'Spice'", "'Trade Winds'", "'Treehouse'")>>
+	<<set _situationDesc = "is malay, which is not uncommon given the ongoing poverty in many majority malay countries, and the serious weather patterns savaging that part of the world. Slaves casually reference race as much or more than free citizens. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">>
+	<<set _applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">>
+	<<set _notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">>
 
 <<case "middle eastern">>
-	<<set $nickname = either("'Akbar'", "'Arab'", "'Arabian Nights'", "'Arabian'", "'Arabush'", "'Belly Dancer'", "'Bibi'", "'Bougnoule'", "'Brownie'", "'Caliph'", "'Camel Jockey'", "'Chai Girl'", "'Desert Sun'", "'Dune Coon'", "'Dune'", "'Durka Durka'", "'Emir'", "'Flying Carpet'", "'Genie'", "'Halal'", "'Harem Girl'", "'Hijabi'", "'Hookah Bar'", "'Imam'", "'Jasmine'", "'Jihadi'", "'Kebab'", "'Middle Eastern'", "'Mideastern'", "'Moromierda'", "'Oil Well'", "'Raghead'", "'Sand Nigger'", "'Sand'", "'Sandy'", "'Scheherazade'", "'Sheikh'", "'Soosmar-Khor'", "'Third Wife'", "'Towelhead'")>>
-	<<set $situationDesc = "is middle eastern, which is not uncommon given the interminable wars and disruptions in that part of the world. Slaves casually reference race as much or more than free citizens. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">>
-	<<set $applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">>
-	<<set $notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">>
+	<<set _nickname = either("'Akbar'", "'Arab'", "'Arabian Nights'", "'Arabian'", "'Arabush'", "'Belly Dancer'", "'Bibi'", "'Bougnoule'", "'Brownie'", "'Caliph'", "'Camel Jockey'", "'Chai Girl'", "'Desert Sun'", "'Dune Coon'", "'Dune'", "'Durka Durka'", "'Emir'", "'Flying Carpet'", "'Genie'", "'Halal'", "'Harem Girl'", "'Hijabi'", "'Hookah Bar'", "'Imam'", "'Jasmine'", "'Jihadi'", "'Kebab'", "'Middle Eastern'", "'Mideastern'", "'Moromierda'", "'Oil Well'", "'Raghead'", "'Sand Nigger'", "'Sand'", "'Sandy'", "'Scheherazade'", "'Sheikh'", "'Soosmar-Khor'", "'Third Wife'", "'Towelhead'")>>
+	<<set _situationDesc = "is middle eastern, which is not uncommon given the interminable wars and disruptions in that part of the world. Slaves casually reference race as much or more than free citizens. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">>
+	<<set _applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">>
+	<<set _notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">>
 
 <<case "mixed race">>
-	<<set $nickname = either("'Bastard'", "'Chola'", "'Colonial'", "'Colored'", "'Creole'", "'Criss-Cross'", "'Crisscross'", "'Crossbreed'", "'Cur'", "'Diverse'", "'Diversity'", "'Hāfu'", "'Half and Half'", "'Half-breed'", "'Half-caste'", "'Hybrid'", "'Hyphenated'", "'Illegitimate'", "'Impure'", "'Integration'", "'Interracial'", "'Love Child'", "'Melting Pot'", "'Melungeon'", "'Mestiza'", "'Métis'", "'Miscegenation'", "'Mix'", "'Mixed Race'", "'Mixed Up'", "'Mixed'", "'Mongrel'", "'Mulatto'", "'Mule'", "'Multiracial'", "'Mutt'", "'Octaroon'", "'Pardo'", "'Quadroon'", "'Remix'", "'Swirl'", "'Zambo'")>>
-	<<set $situationDesc = "is mixed race, an ethnic makeup that has always been a target for abuse. Slaves of all races can find something about $him to dislike. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">>
-	<<set $applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">>
-	<<set $notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">>
+	<<set _nickname = either("'Bastard'", "'Chola'", "'Colonial'", "'Colored'", "'Creole'", "'Criss-Cross'", "'Crisscross'", "'Crossbreed'", "'Cur'", "'Diverse'", "'Diversity'", "'Hāfu'", "'Half and Half'", "'Half-breed'", "'Half-caste'", "'Hybrid'", "'Hyphenated'", "'Illegitimate'", "'Impure'", "'Integration'", "'Interracial'", "'Love Child'", "'Melting Pot'", "'Melungeon'", "'Mestiza'", "'Métis'", "'Miscegenation'", "'Mix'", "'Mixed Race'", "'Mixed Up'", "'Mixed'", "'Mongrel'", "'Mulatto'", "'Mule'", "'Multiracial'", "'Mutt'", "'Octaroon'", "'Pardo'", "'Quadroon'", "'Remix'", "'Swirl'", "'Zambo'")>>
+	<<set _situationDesc = "is mixed race, an ethnic makeup that has always been a target for abuse. Slaves of all races can find something about $him to dislike. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">>
+	<<set _applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">>
+	<<set _notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">>
 
 <<case "pacific islander">>
-	<<set $nickname = either("'Aloha'", "'Antipodean'", "'Atoll'", "'Austronesian'", "'Boong'", "'Boonga'", "'Breadfruit'", "'Coconut'", "'Conch Blower'", "'Grass Skirt'", "'Hori'", "'Hula Girl'", "'Hula Hoop'", "'Island Girl'", "'Island Hopper'", "'Islander'", "'Kanaka'", "'Lei'", "'Longpig'", "'Melanesian'", "'Micronesian'", "'Oceanian'", "'Oceanic'", "'Outrigger'", "'Pacific Islander'", "'Pacific'", "'Paradise'", "'Pasifika'", "'Pineapple'", "'Polynesian'", "'Sea'", "'Seashell'", "'South Pacific'", "'Tiki Torch'", "'Tourist Trap'", "'Ukulele'")>>
-	<<set $situationDesc = "is a pacific islander, which is not uncommon given wholesale destruction of many countries in that area by the worsening climate. Slaves casually reference race as much or more than free citizens. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">>
-	<<set $applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">>
-	<<set $notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">>
+	<<set _nickname = either("'Aloha'", "'Antipodean'", "'Atoll'", "'Austronesian'", "'Boong'", "'Boonga'", "'Breadfruit'", "'Coconut'", "'Conch Blower'", "'Grass Skirt'", "'Hori'", "'Hula Girl'", "'Hula Hoop'", "'Island Girl'", "'Island Hopper'", "'Islander'", "'Kanaka'", "'Lei'", "'Longpig'", "'Melanesian'", "'Micronesian'", "'Oceanian'", "'Oceanic'", "'Outrigger'", "'Pacific Islander'", "'Pacific'", "'Paradise'", "'Pasifika'", "'Pineapple'", "'Polynesian'", "'Sea'", "'Seashell'", "'South Pacific'", "'Tiki Torch'", "'Tourist Trap'", "'Ukulele'")>>
+	<<set _situationDesc = "is a pacific islander, which is not uncommon given wholesale destruction of many countries in that area by the worsening climate. Slaves casually reference race as much or more than free citizens. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">>
+	<<set _applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">>
+	<<set _notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">>
 
 <<case "semitic">>
-	<<set $nickname = either("'Abie'", "'Abrahamic'", "'Baal Worshipper'", "'Biblical'", "'Canaanite'", "'Dead Sea'", "'Golden Calf'", "'Good Samaritan'", "'Goy Toy'", "'Hebrew'", "'Heeb'", "'Holy land'", "'Hymie'", "'Inanna'", "'Ishtar'", "'Jew'", "'Kike'", "'Kosher'", "'Levantine'", "'Lilith'", "'Lost Ark'", "'Mocky'", "'Ms. Jew Booty'", "'Nephilim'", "'Oven Dodger'", "'Oy Vey'", "'Philistine'", "'Qedesha'", "'Rabbi'", "'Red Sea'", "'Salome'", "'Semite'", "'Semitic'", "'Sheeny'", "'Shylock'", "'Sodom and Gomorrah'", "'Triple Parentheses'", "'Whore of Babylon'", "'Yid'")>>
-	<<set $situationDesc = "is semitic, which is not uncommon given the many conflicts in countries with semitic minorities. Slaves casually reference race as much or more than free citizens. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">>
-	<<set $applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">>
-	<<set $notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">>
+	<<set _nickname = either("'Abie'", "'Abrahamic'", "'Baal Worshipper'", "'Biblical'", "'Canaanite'", "'Dead Sea'", "'Golden Calf'", "'Good Samaritan'", "'Goy Toy'", "'Hebrew'", "'Heeb'", "'Holy land'", "'Hymie'", "'Inanna'", "'Ishtar'", "'Jew'", "'Kike'", "'Kosher'", "'Levantine'", "'Lilith'", "'Lost Ark'", "'Mocky'", "'Ms. Jew Booty'", "'Nephilim'", "'Oven Dodger'", "'Oy Vey'", "'Philistine'", "'Qedesha'", "'Rabbi'", "'Red Sea'", "'Salome'", "'Semite'", "'Semitic'", "'Sheeny'", "'Shylock'", "'Sodom and Gomorrah'", "'Triple Parentheses'", "'Whore of Babylon'", "'Yid'")>>
+	<<set _situationDesc = "is semitic, which is not uncommon given the many conflicts in countries with semitic minorities. Slaves casually reference race as much or more than free citizens. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">>
+	<<set _applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">>
+	<<set _notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">>
 
 <<case "southern european">>
-	<<set $nickname = either("'Aphrodite'", "'Aquiline'", "'Bella'", "'Classical'", "'Dago'", "'Doña'", "'Fine Wine'", "'Fuhgeddaboudit'", "'Garlic Breath'", "'Garlic Goon'", "'Ginzo'", "'Goomah'", "'Goombah'", "'Greaseball'", "'Greaser'", "'Grecian'", "'Guidette'", "'Guido'", "'Guinea'", "'Hand Talker'", "'Imperial'", "'Infamis'", "'Latin'", "'Lupa'", "'Mafioso'", "'Marble Column'", "'Mediterranean'", "'Mediterranid'", "'Meretrix'", "'Odalisque'", "'Olive Oil'", "'Olive'", "'Pizzahead'", "'Pope'", "'Riviera'", "'Roman Nose'", "'Roman'", "'Southern European'", "'Southie'", "'Toga Party'", "'Venus'", "'Wog'", "'Wop'")>>
-	<<set $situationDesc = "is southern european, which is not uncommon given the endemic corruption and political collapse in that part of the world. Slaves casually reference race as much or more than free citizens. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">>
-	<<set $applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">>
-	<<set $notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">>
+	<<set _nickname = either("'Aphrodite'", "'Aquiline'", "'Bella'", "'Classical'", "'Dago'", "'Doña'", "'Fine Wine'", "'Fuhgeddaboudit'", "'Garlic Breath'", "'Garlic Goon'", "'Ginzo'", "'Goomah'", "'Goombah'", "'Greaseball'", "'Greaser'", "'Grecian'", "'Guidette'", "'Guido'", "'Guinea'", "'Hand Talker'", "'Imperial'", "'Infamis'", "'Latin'", "'Lupa'", "'Mafioso'", "'Marble Column'", "'Mediterranean'", "'Mediterranid'", "'Meretrix'", "'Odalisque'", "'Olive Oil'", "'Olive'", "'Pizzahead'", "'Pope'", "'Riviera'", "'Roman Nose'", "'Roman'", "'Southern European'", "'Southie'", "'Toga Party'", "'Venus'", "'Wog'", "'Wop'")>>
+	<<set _situationDesc = "is southern european, which is not uncommon given the endemic corruption and political collapse in that part of the world. Slaves casually reference race as much or more than free citizens. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">>
+	<<set _applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">>
+	<<set _notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">>
 
 <<case "white">>
-	<<set $nickname = either("'Albino'", "'Ang Mo'", "'Bleached'", "'Casper'", "'Caucasian'", "'Caucasoid'", "'Cracker'", "'Cumskin'", "'Dixie'", "'Down Home'", "'Duchess'", "'Euro Trash'", "'Europa'", "'European'", "'Farang'", "'Ghost'", "'Grits'", "'Gweilo'", "'Hick'", "'Hillbilly'", "'Hollywood'", "'Honky'", "'Ice Monkey'", "'Ice Queen'", "'Klanswoman'", "'Mayo'", "'Memphis'", "'Pale'", "'Paleface'", "'Paleskin'", "'Pasty'", "'Peckerwood'", "'Princess'", "'Redleg'", "'Snowflake'", "'Sunburnt'", "'Top Dollar'", "'Valley Girl'", "'Vanilla'", "'Vegas'", "'White Bread'", "'White Devil'", "'White Trash'", "'White'", "'Whitey'", "'Wigger'", "'Wypipo'", "'Xanthochroic'", "'Yankee'")>>
-	<<set $situationDesc = "is white, which is not uncommon given the collapse of many erstwhile first world nations into depression and the proximity of many Free Cities to majority white areas. Slaves casually reference race as much or more than free citizens. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">>
-	<<set $applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">>
-	<<set $notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">>
+	<<set _nickname = either("'Albino'", "'Ang Mo'", "'Bleached'", "'Casper'", "'Caucasian'", "'Caucasoid'", "'Cracker'", "'Cumskin'", "'Dixie'", "'Down Home'", "'Duchess'", "'Euro Trash'", "'Europa'", "'European'", "'Farang'", "'Ghost'", "'Grits'", "'Gweilo'", "'Hick'", "'Hillbilly'", "'Hollywood'", "'Honky'", "'Ice Monkey'", "'Ice Queen'", "'Klanswoman'", "'Mayo'", "'Memphis'", "'Pale'", "'Paleface'", "'Paleskin'", "'Pasty'", "'Peckerwood'", "'Princess'", "'Redleg'", "'Snowflake'", "'Sunburnt'", "'Top Dollar'", "'Valley Girl'", "'Vanilla'", "'Vegas'", "'White Bread'", "'White Devil'", "'White Trash'", "'White'", "'Whitey'", "'Wigger'", "'Wypipo'", "'Xanthochroic'", "'Yankee'")>>
+	<<set _situationDesc = "is white, which is not uncommon given the collapse of many erstwhile first world nations into depression and the proximity of many Free Cities to majority white areas. Slaves casually reference race as much or more than free citizens. They absorb the racial peccadilloes of their owners, and many of them bring prejudices from the old world into their slave lives.">>
+	<<set _applyDesc = "now has a constant reminder that as a sex slave $he is judged on $his appearance first.">>
+	<<set _notApplyDesc = "may feel some gratitude due to your preference that $he not be defined by $his ethnicity, but this is counterbalanced by the increased independence your kindness inspires.">>
 
 <<case "vaginalWhiner">>
-	<<set $nickname = either("'Crybaby'", "'Cunt Vise'", "'Pussy Bitch'", "'Pussy Pain'", "'Rape Bait'", "'Shallow'", "'Squealer'", "'Struggles'", "'Tight Cunt'", "'Vaginal Whiner'", "'Whiner'", "'Whiny'", "'Wuss'")>>
-	<<set $situationDesc = "has a tight pussy and not much skill using it. $He still gets fucked, which results in frequent painful situations for $him. $His moaning as $he takes a big dick earns $him the scorn of $his fellow slaves.">>
-	<<set $applyDesc = "is embarrassed by $his new nickname, and resolves to try harder to address $his lack of skill. $He hopes $he'll get better at sex soon, for $his own sake.">>
-	<<set $notApplyDesc = "is a little grateful you've decided to protect $him from the other slaves' mockery of $his sore little pussy. $He still wants to get better at sex, for $his own sake.">>
+	<<set _nickname = either("'Crybaby'", "'Cunt Vise'", "'Pussy Bitch'", "'Pussy Pain'", "'Rape Bait'", "'Shallow'", "'Squealer'", "'Struggles'", "'Tight Cunt'", "'Vaginal Whiner'", "'Whiner'", "'Whiny'", "'Wuss'")>>
+	<<set _situationDesc = "has a tight pussy and not much skill using it. $He still gets fucked, which results in frequent painful situations for $him. $His moaning as $he takes a big dick earns $him the scorn of $his fellow slaves.">>
+	<<set _applyDesc = "is embarrassed by $his new nickname, and resolves to try harder to address $his lack of skill. $He hopes $he'll get better at sex soon, for $his own sake.">>
+	<<set _notApplyDesc = "is a little grateful you've decided to protect $him from the other slaves' mockery of $his sore little pussy. $He still wants to get better at sex, for $his own sake.">>
 
 <<case "analWhiner">>
-	<<set $nickname = either("'Anal Bitch'", "'Anal Whiner'", "'Ass Pain'", "'Ass Vise'", "'Butt Rape'", "'Crybaby'", "'Painal'", "'Squealer'", "'Struggles'", "'Tight Ass'", "'Whiner'", "'Whiny'", "'Wuss'")>>
-	<<set $situationDesc = "has a tight asshole and not much skill taking an anal fuck. $He still gets buttraped, which causes $him a great deal of anal pain. $His sobbing as $he takes a big dick up $his tight little asspussy earns $him the scorn of $his fellow slaves.">>
-	<<set $applyDesc = "is embarrassed by $his new nickname, and resolves to try harder to address $his lack of skill. $He hopes $he'll get better at buttsex soon, for $his own sake.">>
-	<<set $notApplyDesc = "is a little grateful you've decided to protect $him from the other slaves' mockery of $his sore little asshole. $He still wants to get better at buttsex, for $his own sake.">>
+	<<set _nickname = either("'Anal Bitch'", "'Anal Whiner'", "'Ass Pain'", "'Ass Vise'", "'Butt Rape'", "'Crybaby'", "'Painal'", "'Squealer'", "'Struggles'", "'Tight Ass'", "'Whiner'", "'Whiny'", "'Wuss'")>>
+	<<set _situationDesc = "has a tight asshole and not much skill taking an anal fuck. $He still gets buttraped, which causes $him a great deal of anal pain. $His sobbing as $he takes a big dick up $his tight little asspussy earns $him the scorn of $his fellow slaves.">>
+	<<set _applyDesc = "is embarrassed by $his new nickname, and resolves to try harder to address $his lack of skill. $He hopes $he'll get better at buttsex soon, for $his own sake.">>
+	<<set _notApplyDesc = "is a little grateful you've decided to protect $him from the other slaves' mockery of $his sore little asshole. $He still wants to get better at buttsex, for $his own sake.">>
 
 <<case "girlish">>
-	<<set $nickname = either("'Ano'", "'Fashionista'", "'Girlish'", "'Girly'", "'Missie'", "'Model'", "'Runway'", "'Slender'", "'Slim'", "'Slip'", "'Supermodel'", "'Teen Idol'", "'Thin'", "'Tomboy'", "'Toothpick'", "'Youthful'", "'Zero'")>>
-	<<set $situationDesc = "has a trim form: $his assets are quite modest. The slave society of the Free Cities tends to follow average male desires, which is to say that many slaves find themselves augmented to very large proportions. It's natural that slaves required to carry such burdens should resent $him.">>
-	<<set $applyDesc = "is prouder of $his lithe form that $he was before, and is a little relieved at the added evidence that you don't plan to give $him major implants any time soon.">>
-	<<set $notApplyDesc = "realizes that $his form isn't necessarily due to some master plan and that you may see fit to change it; $he begins to regard the remote surgery with apprehension.">>
+	<<set _nickname = either("'Ano'", "'Fashionista'", "'Girlish'", "'Girly'", "'Missie'", "'Model'", "'Runway'", "'Slender'", "'Slim'", "'Slip'", "'Supermodel'", "'Teen Idol'", "'Thin'", "'Tomboy'", "'Toothpick'", "'Youthful'", "'Zero'")>>
+	<<set _situationDesc = "has a trim form: $his assets are quite modest. The slave society of the Free Cities tends to follow average male desires, which is to say that many slaves find themselves augmented to very large proportions. It's natural that slaves required to carry such burdens should resent $him.">>
+	<<set _applyDesc = "is prouder of $his lithe form that $he was before, and is a little relieved at the added evidence that you don't plan to give $him major implants any time soon.">>
+	<<set _notApplyDesc = "realizes that $his form isn't necessarily due to some master plan and that you may see fit to change it; $he begins to regard the remote surgery with apprehension.">>
 
 <<case "flat">>
-	<<set $nickname = either("'A-Cup'", "'DFC'", "'Flat'", "'Flats'", "'Flatty'", "'Ironing Board'", "'Itty Bitty'", "'Kansas'", "'Mastectomy'", "'Mosquito Bites'", "'Pettanko'", "'Plank'", "'Tank Top'", "'Undersized'")>>
-	<<set $situationDesc = "has barely any breasts to speak of, $he is completely flat. The slave society of the Free Cities tends to follow average male desires, which is to say that many slaves find themselves carrying comically oversized breasts. It's natural that slaves required to carry such burdens should resent $him.">>
-	<<set $applyDesc = "further believes that chests should be deliciously flat, and is a little relieved at the added evidence that you don't plan to give $his breasts the size of $his head any time soon.">>
-	<<set $notApplyDesc = "realizes that $his form isn't necessarily due to some master plan and that you may see fit to change it; $he begins to regard the remote surgery with apprehension.">>
+	<<set _nickname = either("'A-Cup'", "'DFC'", "'Flat'", "'Flats'", "'Flatty'", "'Ironing Board'", "'Itty Bitty'", "'Kansas'", "'Mastectomy'", "'Mosquito Bites'", "'Pettanko'", "'Plank'", "'Tank Top'", "'Undersized'")>>
+	<<set _situationDesc = "has barely any breasts to speak of, $he is completely flat. The slave society of the Free Cities tends to follow average male desires, which is to say that many slaves find themselves carrying comically oversized breasts. It's natural that slaves required to carry such burdens should resent $him.">>
+	<<set _applyDesc = "further believes that chests should be deliciously flat, and is a little relieved at the added evidence that you don't plan to give $his breasts the size of $his head any time soon.">>
+	<<set _notApplyDesc = "realizes that $his form isn't necessarily due to some master plan and that you may see fit to change it; $he begins to regard the remote surgery with apprehension.">>
 
 <<case "loose">>
-	<<set $nickname = either("'Accommodating'", "'Blown Out'", "'Gaping'", "'Hallway'", "'Loose'", "'Loosey Goosey'", "'Noisy'", "'Open'", "'Overused'", "'Promiscuous'", "'Relaxed'", "'Roomy'", "'Sinkhole'", "'Size Queen'", "'Slit'", "'Sloppy'", "'Spacious'", "'Used'", "'Welcoming'", "'Whorish'", "'Wide Receiver'", "'Wideopen'")>>
-	<<set $situationDesc = "has taken a lot of dick. Enough dick that $his overused holes really show the mileage. $He can take the largest cock without a sigh.">>
-	<<set $applyDesc = "is proud of $his mileage, now that you've countenanced adding it to your name. Every cock $he's taken, $he's taken at your command.">>
-	<<set $notApplyDesc = "realizes that $he isn't special just because $he's been fucked so much, and understands that $he'll have to do $his best to fuck like a fresh teenager no matter how loose $he gets.">>
+	<<set _nickname = either("'Accommodating'", "'Blown Out'", "'Gaping'", "'Hallway'", "'Loose'", "'Loosey Goosey'", "'Noisy'", "'Open'", "'Overused'", "'Promiscuous'", "'Relaxed'", "'Roomy'", "'Sinkhole'", "'Size Queen'", "'Slit'", "'Sloppy'", "'Spacious'", "'Used'", "'Welcoming'", "'Whorish'", "'Wide Receiver'", "'Wideopen'")>>
+	<<set _situationDesc = "has taken a lot of dick. Enough dick that $his overused holes really show the mileage. $He can take the largest cock without a sigh.">>
+	<<set _applyDesc = "is proud of $his mileage, now that you've countenanced adding it to your name. Every cock $he's taken, $he's taken at your command.">>
+	<<set _notApplyDesc = "realizes that $he isn't special just because $he's been fucked so much, and understands that $he'll have to do $his best to fuck like a fresh teenager no matter how loose $he gets.">>
 
 <<case "trap">>
-	<<set $nickname = either("'Androgyne'", "'Androgynous'", "'Chai'", "'Ganymede'", "'Girldick'", "'He-She'", "'Ladyboy'", "'Otokonoko'", "'Shemale'", "'Sissy'", "'Spurt'", "'Switch'", "'Thai'", "'Trap'", "'Trappy'", "'Trick'")>>
-	<<set $situationDesc = "is a Free Cities sex slave, which makes $him female. It makes $him female despite several obvious physical issues, such as the fact that $he's got an androgynous figure, or the fact that $he has a penis. Neither of these makes any real difference when a cock gets shoved down $his throat or stuffed up $his butt, but they're hard not to notice.">>
-	<<set $applyDesc = "accepts that $he's a little piece of shemale property.">>
-	<<set $notApplyDesc = "will do $his best to serve as a nice little sex slave without explicit reference to how $he's put together, or $he'll be punished.">>
+	<<set _nickname = either("'Androgyne'", "'Androgynous'", "'Chai'", "'Ganymede'", "'Girldick'", "'He-She'", "'Ladyboy'", "'Otokonoko'", "'Shemale'", "'Sissy'", "'Spurt'", "'Switch'", "'Thai'", "'Trap'", "'Trappy'", "'Trick'")>>
+	<<set _situationDesc = "is a Free Cities sex slave, which makes $him female. It makes $him female despite several obvious physical issues, such as the fact that $he's got an androgynous figure, or the fact that $he has a penis. Neither of these makes any real difference when a cock gets shoved down $his throat or stuffed up $his butt, but they're hard not to notice.">>
+	<<set _applyDesc = "accepts that $he's a little piece of shemale property.">>
+	<<set _notApplyDesc = "will do $his best to serve as a nice little sex slave without explicit reference to how $he's put together, or $he'll be punished.">>
 
 <<case "micropenis">>
-	<<set $nickname = either("'Baby Dick'", "'Bitchdick'", "'Boyclit'", "'Chode'", "'Compensating'", "'Dicklet'", "'Gherkin'", "'Inchworm'", "'Little Dick'", "'Micro'", "'Micropenis'", "'Overcircumcised'", "'Rantallion'", "'Shorty'", "'Shrunken Head'", "'Teenie Weenie'", "'Tiny'", "'Toothpick'")>>
-	<<set $situationDesc = "is a Free Cities sex slave, which makes $him female. It's not immediately obvious from many angles that $he wasn't born that way, since $his penis is almost comically small. For $him, penetrative sex would be very limited, even if $he weren't a Free Cities slave and therefore a perpetual receptacle for dick.">>
-	<<set $applyDesc = "accepts the implicit mockery.">>
-	<<set $notApplyDesc = "is a little relieved to be protected from the mockery, even though $his tiny endowment mocks $him as it flops around whenever $he's used.">>
+	<<set _nickname = either("'Baby Dick'", "'Bitchdick'", "'Boyclit'", "'Chode'", "'Compensating'", "'Dicklet'", "'Gherkin'", "'Inchworm'", "'Little Dick'", "'Micro'", "'Micropenis'", "'Overcircumcised'", "'Rantallion'", "'Shorty'", "'Shrunken Head'", "'Teenie Weenie'", "'Tiny'", "'Toothpick'")>>
+	<<set _situationDesc = "is a Free Cities sex slave, which makes $him female. It's not immediately obvious from many angles that $he wasn't born that way, since $his penis is almost comically small. For $him, penetrative sex would be very limited, even if $he weren't a Free Cities slave and therefore a perpetual receptacle for dick.">>
+	<<set _applyDesc = "accepts the implicit mockery.">>
+	<<set _notApplyDesc = "is a little relieved to be protected from the mockery, even though $his tiny endowment mocks $him as it flops around whenever $he's used.">>
 
 <<case "implants">>
-	<<set $nickname = either("'Balloons'", "'Blown Up'", "'Blowup Doll'", "'Bolted-On'", "'Enhanced'", "'Expanded'", "'Fake'", "'Implanted'", "'Implants'", "'Plastic'", "'Plastique'", "'Silicone'")>>
-	<<set $situationDesc = "is full of breast implants. They're so large it's quite obvious they're fake, and the implications are clear: $He's a plastic slut, and the other slaves never tire of letting $him know it.">>
-	<<set $applyDesc = "accepts the implicit mockery, knowing that $his bimbo-esque body is what appeals to $his <<= WrittenMaster($activeSlave)>>.">>
-	<<set $notApplyDesc = "is relieved to be protected from the other slaves' mockery over $his implants, though $he's also a little sad $he can't take them as a kind of trademark.">>
+	<<set _nickname = either("'Balloons'", "'Blown Up'", "'Blowup Doll'", "'Bolted-On'", "'Enhanced'", "'Expanded'", "'Fake'", "'Implanted'", "'Implants'", "'Plastic'", "'Plastique'", "'Silicone'")>>
+	<<set _situationDesc = "is full of breast implants. They're so large it's quite obvious they're fake, and the implications are clear: $He's a plastic slut, and the other slaves never tire of letting $him know it.">>
+	<<set _applyDesc = "accepts the implicit mockery, knowing that $his bimbo-esque body is what appeals to $his <<= WrittenMaster($activeSlave)>>.">>
+	<<set _notApplyDesc = "is relieved to be protected from the other slaves' mockery over $his implants, though $he's also a little sad $he can't take them as a kind of trademark.">>
 
 <<case "bimbo">>
-	<<set $nickname = either("'Airhead'", "'Barbie'", "'Bimbette'", "'Bimbo'", "'Bimboesque'", "'Bimbofied'", "'Blown Up'", "'Blowup Doll'", "'Brain Dead'", "'Broad'", "'Doxy'", "'Fake'", "'Floozie'", "'Fuck Toy'", "'Fuckmeat'", "'Plastic'", "'Plastique'", "'Sex Doll'", "'Silicone'", "'Tootsie'")>>
-	<<set $situationDesc = "is full of implants, and stupid beyond stupid. It's obvious $he's fake, and $his idiocy only confirms it: $He's a bimbo slut, and the other slaves never tire of mocking $him for it, not caring that $he doesn't notice.">>
-	<<set $applyDesc = "doesn't notice the mockery, only that $he now has a cute little nickname.">>
-	<<set $notApplyDesc = "would be thankful for this protection from the other slaves' mockery if $he saw it as such, or was smart enough to notice it.">>
+	<<set _nickname = either("'Airhead'", "'Barbie'", "'Bimbette'", "'Bimbo'", "'Bimboesque'", "'Bimbofied'", "'Blown Up'", "'Blowup Doll'", "'Brain Dead'", "'Broad'", "'Doxy'", "'Fake'", "'Floozie'", "'Fuck Toy'", "'Fuckmeat'", "'Plastic'", "'Plastique'", "'Sex Doll'", "'Silicone'", "'Tootsie'")>>
+	<<set _situationDesc = "is full of implants, and stupid beyond stupid. It's obvious $he's fake, and $his idiocy only confirms it: $He's a bimbo slut, and the other slaves never tire of mocking $him for it, not caring that $he doesn't notice.">>
+	<<set _applyDesc = "doesn't notice the mockery, only that $he now has a cute little nickname.">>
+	<<set _notApplyDesc = "would be thankful for this protection from the other slaves' mockery if $he saw it as such, or was smart enough to notice it.">>
 
 <<case "stupid">>
-	<<set $nickname = either("'Brain Dead'", "'Cretin'", "'Dropout'", "'Dumb'", "'Dumbass'", "'Dummy'", "'Idiot'", "'Intellectually Challenged'", "'Nimrod'", "'Retard'", "'Retarded'", "'Short Bus'", "'Straight F Grades'", "'Stupid'")>>
-	<<set $situationDesc = "is, quite simply, an uneducated dullard. Numerous slaves are a bit dumb, which makes it easier to break them, but $he takes the cake and throws it in the trash. Some of the other, smarter slaves, see fit to tease $him for it.">>
-	<<set $applyDesc = "accepts this mockery happily, as if $he doesn't recognize it for what it is.">>
-	<<set $notApplyDesc = "would be thankful for this protection from the other slaves' mockery if $he saw it as such, or was smart enough to notice it.">>
+	<<set _nickname = either("'Brain Dead'", "'Cretin'", "'Dropout'", "'Dumb'", "'Dumbass'", "'Dummy'", "'Idiot'", "'Intellectually Challenged'", "'Nimrod'", "'Retard'", "'Retarded'", "'Short Bus'", "'Straight F Grades'", "'Stupid'")>>
+	<<set _situationDesc = "is, quite simply, an uneducated dullard. Numerous slaves are a bit dumb, which makes it easier to break them, but $he takes the cake and throws it in the trash. Some of the other, smarter slaves, see fit to tease $him for it.">>
+	<<set _applyDesc = "accepts this mockery happily, as if $he doesn't recognize it for what it is.">>
+	<<set _notApplyDesc = "would be thankful for this protection from the other slaves' mockery if $he saw it as such, or was smart enough to notice it.">>
 
 <<case "smart">>
-	<<set $nickname = either("'Brainiac'", "'Bright'", "'Clever'", "'Einstein'", "'Geek'", "'Genius'", "'Graduate'", "'Honor Roll'", "'Nerd'", "'Poindexter'", "'Prodigy'", "'Professor'", "'Smart'", "'Smartass'", "'Smarty'", "'Straight A Grades'", "'Whiz'")>>
-	<<set $situationDesc = "is particularly brainy. A significant number of quality slaves are smart, but $he is especially so, and it shows. $He learns skills quicker, performs $his duties better, and can carry intellectual conversation if allowed. Other slaves deem this enough to mock $him.">>
-	<<set $applyDesc = "is proud of $his intellect, and pleased that you have made it a part of $his identity.">>
-	<<set $notApplyDesc = "accepts that $his intellect is merely of slight interest.">>
+	<<set _nickname = either("'Brainiac'", "'Bright'", "'Clever'", "'Einstein'", "'Geek'", "'Genius'", "'Graduate'", "'Honor Roll'", "'Nerd'", "'Poindexter'", "'Prodigy'", "'Professor'", "'Smart'", "'Smartass'", "'Smarty'", "'Straight A Grades'", "'Whiz'")>>
+	<<set _situationDesc = "is particularly brainy. A significant number of quality slaves are smart, but $he is especially so, and it shows. $He learns skills quicker, performs $his duties better, and can carry intellectual conversation if allowed. Other slaves deem this enough to mock $him.">>
+	<<set _applyDesc = "is proud of $his intellect, and pleased that you have made it a part of $his identity.">>
+	<<set _notApplyDesc = "accepts that $his intellect is merely of slight interest.">>
 
 <<case "chubby">>
-	<<set $nickname = either("'Ample'", "'BBW'", "'Bloated'", "'Chubby'", "'Chubster'", "'Chunky'", "'Curvy'", "'Double Wide'", "'Fat'", "'Feedee'", "'Hambeast'", "'Jabba'", "'Jiggles'", "'Jiggly'", "'Jumbo'", "'Landwhale'", "'Love Handles'", "'Plump'", "'Plush'", "'Rotund'", "'Rubenesque'", "'Thicc'", "'Thick'", "'Tubby'", "'Whale'")>>
-	<<set $situationDesc = "is carrying a little extra weight. The cruelty of life as a slave increases your property's willingness to do cruelty where they can get away with it — what is passed to them, they pass to others — so $he finds $himself mocked for $his size.">>
-	<<set $applyDesc = "knows that being fat makes $him less valuable on the market, but $he begins to accept that $he's going to have to put up with being chubby for now.">>
-	<<set $notApplyDesc = "believes that this means $he's going to have to lose weight soon, causing $him some trepidation.">>
+	<<set _nickname = either("'Ample'", "'BBW'", "'Bloated'", "'Chubby'", "'Chubster'", "'Chunky'", "'Curvy'", "'Double Wide'", "'Fat'", "'Feedee'", "'Hambeast'", "'Jabba'", "'Jiggles'", "'Jiggly'", "'Jumbo'", "'Landwhale'", "'Love Handles'", "'Plump'", "'Plush'", "'Rotund'", "'Rubenesque'", "'Thicc'", "'Thick'", "'Tubby'", "'Whale'")>>
+	<<set _situationDesc = "is carrying a little extra weight. The cruelty of life as a slave increases your property's willingness to do cruelty where they can get away with it — what is passed to them, they pass to others — so $he finds $himself mocked for $his size.">>
+	<<set _applyDesc = "knows that being fat makes $him less valuable on the market, but $he begins to accept that $he's going to have to put up with being chubby for now.">>
+	<<set _notApplyDesc = "believes that this means $he's going to have to lose weight soon, causing $him some trepidation.">>
 
 <<case "fat">>
-	<<set $nickname = either("'Bed Breaker'", "'Beluga'", "'Blimp'", "'Bloated'", "'Buffet Closer'", "'Chunky'", "'Cow'", "'Double Wide'", "'Extra Thicc'", "'Fat'", "'Fatass'", "'Fatso'", "'Fatty'", "'Feedee'", "'Hambeast'", "'Hippo'", "'Jabba'", "'Jiggles'", "'Jiggly'", "'Jumbo'", "'Lap Crusher'", "'Lardy'", "'Piggy'", "'Roller'", "'Scale Breaker'", "'Smothers'", "'SSBBW'", "'Thud'", "'Tubby'", "'Whale'")>>
-	<<set $situationDesc = "is carrying a lot of extra weight. The cruelty of life as a slave increases your property's willingness to do cruelty where they can get away with it — what is passed to them, they pass to others — so $he finds $himself mocked for $his size.">>
-	<<set $applyDesc = "knows that being obese makes $him less valuable on the market, but $he begins to accept that $he's going to have to put up with being fat for now.">>
-	<<set $notApplyDesc = "believes that this means $he's going to have to lose a lot of weight soon, causing $him some trepidation, though deep down $he hopes you'll just have it sucked out instead of making $him run.">>
+	<<set _nickname = either("'Bed Breaker'", "'Beluga'", "'Blimp'", "'Bloated'", "'Buffet Closer'", "'Chunky'", "'Cow'", "'Double Wide'", "'Extra Thicc'", "'Fat'", "'Fatass'", "'Fatso'", "'Fatty'", "'Feedee'", "'Hambeast'", "'Hippo'", "'Jabba'", "'Jiggles'", "'Jiggly'", "'Jumbo'", "'Lap Crusher'", "'Lardy'", "'Piggy'", "'Roller'", "'Scale Breaker'", "'Smothers'", "'SSBBW'", "'Thud'", "'Tubby'", "'Whale'")>>
+	<<set _situationDesc = "is carrying a lot of extra weight. The cruelty of life as a slave increases your property's willingness to do cruelty where they can get away with it — what is passed to them, they pass to others — so $he finds $himself mocked for $his size.">>
+	<<set _applyDesc = "knows that being obese makes $him less valuable on the market, but $he begins to accept that $he's going to have to put up with being fat for now.">>
+	<<set _notApplyDesc = "believes that this means $he's going to have to lose a lot of weight soon, causing $him some trepidation, though deep down $he hopes you'll just have it sucked out instead of making $him run.">>
 
 <<case "muscles">>
-	<<set $nickname = either("'Amazon'", "'Bodybuilder'", "'Buff'", "'Gargantua'", "'Giant'", "'Gunshow'", "'Gymrat'", "'Huge'", "'Muscle Barbie'", "'Muscles'", "'Muscular'", "'Prepare Yourself'", "'Protein Shake'", "'Red Sonja'", "'Ripped'", "'She-Hulk'", "'Snu-Snu'", "'Strong'", "'Tank'", "'Toned'", "'Warrior Queen'", "'Weightlifter'", "'Wonder Woman'")>>
-	<<set $situationDesc = "is a big $girl. $His huge muscles aren't to everyone's taste, but they're quite eye-catching, and give $him some interesting sexual possibilities that wouldn't work with, for example, a sex slave not capable of supporting $his own body weight on one hand for long periods. $He has become the object of mixed admiration and envy from your other stock.">>
-	<<set $applyDesc = "is happy with $his nickname; any embarrassment $he may have felt about looking like statuary becomes a jet of pride. $He's confident that this is the way you want $him.">>
-	<<set $notApplyDesc = "is a sex slave first, last, and always, no matter what $his one-rep max is.">>
+	<<set _nickname = either("'Amazon'", "'Bodybuilder'", "'Buff'", "'Gargantua'", "'Giant'", "'Gunshow'", "'Gymrat'", "'Huge'", "'Muscle Barbie'", "'Muscles'", "'Muscular'", "'Prepare Yourself'", "'Protein Shake'", "'Red Sonja'", "'Ripped'", "'She-Hulk'", "'Snu-Snu'", "'Strong'", "'Tank'", "'Toned'", "'Warrior Queen'", "'Weightlifter'", "'Wonder Woman'")>>
+	<<set _situationDesc = "is a big $girl. $His huge muscles aren't to everyone's taste, but they're quite eye-catching, and give $him some interesting sexual possibilities that wouldn't work with, for example, a sex slave not capable of supporting $his own body weight on one hand for long periods. $He has become the object of mixed admiration and envy from your other stock.">>
+	<<set _applyDesc = "is happy with $his nickname; any embarrassment $he may have felt about looking like statuary becomes a jet of pride. $He's confident that this is the way you want $him.">>
+	<<set _notApplyDesc = "is a sex slave first, last, and always, no matter what $his one-rep max is.">>
 
 <<case "buttslut">>
-	<<set $nickname = either("'Anal Addict'", "'Anal'", "'Ass Pussy'", "'Assgasm'", "'Back Door'", "'Balloon Knot'", "'Bum-Love'", "'Butthole'", "'Buttslut'", "'Cornhole'", "'Greek'", "'Rear Entrance'", "'Rosebud'", "'Rump Pump'", "'Second Pussy'", "'Sodomite'", "'Sodomy'", "'Sphincter'", "'Swedish'")>>
-	<<set $situationDesc = "loves it up the butt, and $his tastes in sex are hard to miss. $He's a sex slave and takes it however it's given, but honest enjoyment is hard to fake and it's pretty obvious how much fun $he has when $he's bent over and buttfucked. $His typical come-on is to bend over, reach around to spread $his buttocks, and wink $his anus by alternately clenching and relaxing $his sphincter.">>
-	<<set $applyDesc = "knows that whatever the rest of $his slave life holds, it will involve $his slave rectum holding a lot of dick.">>
-	<<set $notApplyDesc = "understands that $he'll have to take what buttsex $he can get.">>
+	<<set _nickname = either("'Anal Addict'", "'Anal'", "'Ass Pussy'", "'Assgasm'", "'Back Door'", "'Balloon Knot'", "'Bum-Love'", "'Butthole'", "'Buttslut'", "'Cornhole'", "'Greek'", "'Rear Entrance'", "'Rosebud'", "'Rump Pump'", "'Second Pussy'", "'Sodomite'", "'Sodomy'", "'Sphincter'", "'Swedish'")>>
+	<<set _situationDesc = "loves it up the butt, and $his tastes in sex are hard to miss. $He's a sex slave and takes it however it's given, but honest enjoyment is hard to fake and it's pretty obvious how much fun $he has when $he's bent over and buttfucked. $His typical come-on is to bend over, reach around to spread $his buttocks, and wink $his anus by alternately clenching and relaxing $his sphincter.">>
+	<<set _applyDesc = "knows that whatever the rest of $his slave life holds, it will involve $his slave rectum holding a lot of dick.">>
+	<<set _notApplyDesc = "understands that $he'll have to take what buttsex $he can get.">>
 
 <<case "butt toy">>
-	<<set $nickname = either("'Assplay'", "'Back Door'", "'Backside'", "'Behind'", "'Beso Negro'", "'Booty'", "'Butt Toy'", "'Buttcrack'", "'Butthole'", "'Buttjob'", "'Cheeky'", "'Hotdog'", "'Reach Around'", "'Rear End'", "'Rim Job'", "'Rump Roast'", "'Spanky'", "'Sphincter'", "'Stinky Pinky'", "'Tossed Salad'")>>
-	<<set $situationDesc = "loves it when attention is lavished on $his butt, even though $he has never done anal. $He's a sex slave and takes it however it's given, but honest enjoyment is hard to fake and it's pretty obvious how much fun $he has when a client is roughly groping $his rear. $His typical come-on is to 'accidentally' find $his client's dick hotdogged betwixt $his cheeks.">>
-	<<set $applyDesc = "knows that whatever the rest of $his slave life holds, it will involve an ever growing amount of attention to $his rear.">>
-	<<set $notApplyDesc = "understands that $he'll have to take what butt play $he can get.">>
+	<<set _nickname = either("'Assplay'", "'Back Door'", "'Backside'", "'Behind'", "'Beso Negro'", "'Booty'", "'Butt Toy'", "'Buttcrack'", "'Butthole'", "'Buttjob'", "'Cheeky'", "'Hotdog'", "'Reach Around'", "'Rear End'", "'Rim Job'", "'Rump Roast'", "'Spanky'", "'Sphincter'", "'Stinky Pinky'", "'Tossed Salad'")>>
+	<<set _situationDesc = "loves it when attention is lavished on $his butt, even though $he has never done anal. $He's a sex slave and takes it however it's given, but honest enjoyment is hard to fake and it's pretty obvious how much fun $he has when a client is roughly groping $his rear. $His typical come-on is to 'accidentally' find $his client's dick hotdogged betwixt $his cheeks.">>
+	<<set _applyDesc = "knows that whatever the rest of $his slave life holds, it will involve an ever growing amount of attention to $his rear.">>
+	<<set _notApplyDesc = "understands that $he'll have to take what butt play $he can get.">>
 
 <<case "cumslut">>
-	<<set $nickname = either("'Bukkake'", "'Cocksucker'", "'Cum Dumpster'", "'Cum'", "'Cumfiend'", "'Cumslut'", "'Deep Throat'", "'Dicksuck'", "'Facepussy'", "'Fellatio'", "'Gobbler'", "'Gokkun'", "'Guzzler'", "'Hoover'", "'Lip Service'", "'Meat Smoker'", "'No Gag Reflex'", "'Pearl Necklace'", "'Pole Smoker'", "'Receptacle'", "'Semen Demon'", "'Succubus'", "'Sucker'", "'Swallows'", "'Third Pussy'", "'Throat Meat'", "'Throatclit'", "'Vacuum'", "'Vampire'")>>
-	<<set $situationDesc = "loves $him some cum. Most slaves have to put effort into showing enthusiasm when on their knees and presented with the second or third cock in a row. $He, on the other hand, maintains such a fetish for the stuff that $he'll often suck it out of other slaves' holes, if allowed.">>
-	<<set $applyDesc = "knows that as long as $he's your slave, $he'll get what $he needs.">>
-	<<set $notApplyDesc = "understands that cum is a luxury and $he'll have to savor what comes $his way naturally.">>
+	<<set _nickname = either("'Bukkake'", "'Cocksucker'", "'Cum Dumpster'", "'Cum'", "'Cumfiend'", "'Cumslut'", "'Deep Throat'", "'Dicksuck'", "'Facepussy'", "'Fellatio'", "'Gobbler'", "'Gokkun'", "'Guzzler'", "'Hoover'", "'Lip Service'", "'Meat Smoker'", "'No Gag Reflex'", "'Pearl Necklace'", "'Pole Smoker'", "'Receptacle'", "'Semen Demon'", "'Succubus'", "'Sucker'", "'Swallows'", "'Third Pussy'", "'Throat Meat'", "'Throatclit'", "'Vacuum'", "'Vampire'")>>
+	<<set _situationDesc = "loves $him some cum. Most slaves have to put effort into showing enthusiasm when on their knees and presented with the second or third cock in a row. $He, on the other hand, maintains such a fetish for the stuff that $he'll often suck it out of other slaves' holes, if allowed.">>
+	<<set _applyDesc = "knows that as long as $he's your slave, $he'll get what $he needs.">>
+	<<set _notApplyDesc = "understands that cum is a luxury and $he'll have to savor what comes $his way naturally.">>
 
 <<case "submissive">>
-	<<set $nickname = either("'Acquiescent'", "'Bootlicker'", "'Bottom'", "'Clinger'", "'Doormat'", "'Face Down'", "'Follower'", "'Fuckee'", "'Gimp'", "'Humble'", "'Low Rung'", "'Meek'", "'Rapebait'", "'Secondary'", "'Servant'", "'Spineless'", "'Sub'", "'Submissive'")>>
-	<<set $situationDesc = "loves sexual submission. Whatever $he's doing, $he likes to be on the bottom. $He'd rather be facefucked than suck, and would rather take a dick than ride one. Some slaves look down on $his willingness to put $himself even farther below others, while some envy $his ability to enjoy things that they have to work to tolerate.">>
-	<<set $applyDesc = "pretends to accept $his new nickname obediently, but is secretly pleased by recognition of $his submissive nature.">>
-	<<set $notApplyDesc = "understands that being a submissive sex slave doesn't make $him special. All sex slaves must submit.">>
+	<<set _nickname = either("'Acquiescent'", "'Bootlicker'", "'Bottom'", "'Clinger'", "'Doormat'", "'Face Down'", "'Follower'", "'Fuckee'", "'Gimp'", "'Humble'", "'Low Rung'", "'Meek'", "'Rapebait'", "'Secondary'", "'Servant'", "'Spineless'", "'Sub'", "'Submissive'")>>
+	<<set _situationDesc = "loves sexual submission. Whatever $he's doing, $he likes to be on the bottom. $He'd rather be facefucked than suck, and would rather take a dick than ride one. Some slaves look down on $his willingness to put $himself even farther below others, while some envy $his ability to enjoy things that they have to work to tolerate.">>
+	<<set _applyDesc = "pretends to accept $his new nickname obediently, but is secretly pleased by recognition of $his submissive nature.">>
+	<<set _notApplyDesc = "understands that being a submissive sex slave doesn't make $him special. All sex slaves must submit.">>
 
 <<case "humiliation">>
-	<<set $nickname = either("'Attention Whore'", "'Display Model'", "'Exhibitionist'", "'Flasher'", "'Flaunter'", "'Humiliated'", "'Humiliation'", "'Nudist'", "'Pornstar'", "'Public Display'", "'Rape'", "'Rapebait'", "'Shameless'", "'Showboat'", "'Showgirl'", "'Showoff'")>>
-	<<set $situationDesc = "loves to show off. Where other slaves would blush, get embarrassed, and wish they could cover themselves, $he blushes, gets aroused, and enjoys the stares. Most other slaves are jealous of $his predilections. Not many slaves naturally enjoy being fucked in public, and $he can get off on it.">>
-	<<set $applyDesc = "accepts $his new nickname without even pretending not to enjoy it. $He's proud to fuck in plain view, and $he wants everyone to know it. And fuck $him in plain view.">>
-	<<set $notApplyDesc = "understands that $he's a sex slave first, and must fuck in private like $he were fucking in public.">>
+	<<set _nickname = either("'Attention Whore'", "'Display Model'", "'Exhibitionist'", "'Flasher'", "'Flaunter'", "'Humiliated'", "'Humiliation'", "'Nudist'", "'Pornstar'", "'Public Display'", "'Rape'", "'Rapebait'", "'Shameless'", "'Showboat'", "'Showgirl'", "'Showoff'")>>
+	<<set _situationDesc = "loves to show off. Where other slaves would blush, get embarrassed, and wish they could cover themselves, $he blushes, gets aroused, and enjoys the stares. Most other slaves are jealous of $his predilections. Not many slaves naturally enjoy being fucked in public, and $he can get off on it.">>
+	<<set _applyDesc = "accepts $his new nickname without even pretending not to enjoy it. $He's proud to fuck in plain view, and $he wants everyone to know it. And fuck $him in plain view.">>
+	<<set _notApplyDesc = "understands that $he's a sex slave first, and must fuck in private like $he were fucking in public.">>
 
 <<case "veteran">>
-	<<set $nickname = either("'Cum Dumpster'", "'Cumdump'", "'Dirty'", "'Easy'", "'Experienced'", "'High Mileage'", "'Libertine'", "'Loose'", "'Overused'", "'Public Favorite'", "'Skank'", "'Slut'", "'Tired-Out'", "'Used'", "'Vet'", "'Veteran'", "'Village Bicycle'", "'Whore Queen'", "'Whore'", "'Worn'")>>
-	<<set $situationDesc = "has been with you for a while, and $he's gotten fucked a lot. Hundreds and hundreds of times over many weeks. Though $he does $his best, at times it can be obvious that there's very little that surprises $him any more. $He's forgotten more sexual experience than many of your other slaves remember.">>
-	<<set $applyDesc = "knows that you've noticed all $his hard work. Getting fucked day in and day out is harder than digging ditches, and $he's a veteran ditchdigger.">>
-	<<set $notApplyDesc = "understands that even though $he's been fucked so much, $he's still just meat; $he isn't special.">>
+	<<set _nickname = either("'Cum Dumpster'", "'Cumdump'", "'Dirty'", "'Easy'", "'Experienced'", "'High Mileage'", "'Libertine'", "'Loose'", "'Overused'", "'Public Favorite'", "'Skank'", "'Slut'", "'Tired-Out'", "'Used'", "'Vet'", "'Veteran'", "'Village Bicycle'", "'Whore Queen'", "'Whore'", "'Worn'")>>
+	<<set _situationDesc = "has been with you for a while, and $he's gotten fucked a lot. Hundreds and hundreds of times over many weeks. Though $he does $his best, at times it can be obvious that there's very little that surprises $him any more. $He's forgotten more sexual experience than many of your other slaves remember.">>
+	<<set _applyDesc = "knows that you've noticed all $his hard work. Getting fucked day in and day out is harder than digging ditches, and $he's a veteran ditchdigger.">>
+	<<set _notApplyDesc = "understands that even though $he's been fucked so much, $he's still just meat; $he isn't special.">>
 
 <<case "cow">>
-	<<set $nickname = either("'Beefcake'", "'Bessie'", "'Bovine'", "'Cheesehead'", "'Cow'", "'Cowbell'", "'Creamy'", "'Dairy Queen'", "'Heifer'", "'Holstein'", "'Mega Milk'", "'Milk Cans'", "'Milk Factory'", "'Milk Fountain'", "'Milkmaid'", "'Milky Udders'", "'Milky'", "'Moo'", "'Udders'")>>
-	<<set $situationDesc = "is a good stock animal. $His body efficiently turns the cheap slave nutrition produced by your arcology into a never-ending river of rich milk.">>
-	<<set $applyDesc = "knows that $his future involves many hours having $his nipples gently tugged by a milking machine.">>
-	<<set $notApplyDesc = "understands that $he must continue to be a good milking slave, but that such duties do not necessarily define $him.">>
+	<<set _nickname = either("'Beefcake'", "'Bessie'", "'Bovine'", "'Cheesehead'", "'Cow'", "'Cowbell'", "'Creamy'", "'Dairy Queen'", "'Heifer'", "'Holstein'", "'Mega Milk'", "'Milk Cans'", "'Milk Factory'", "'Milk Fountain'", "'Milkmaid'", "'Milky Udders'", "'Milky'", "'Moo'", "'Udders'")>>
+	<<set _situationDesc = "is a good stock animal. $His body efficiently turns the cheap slave nutrition produced by your arcology into a never-ending river of rich milk.">>
+	<<set _applyDesc = "knows that $his future involves many hours having $his nipples gently tugged by a milking machine.">>
+	<<set _notApplyDesc = "understands that $he must continue to be a good milking slave, but that such duties do not necessarily define $him.">>
 
 <<case "novice">>
-	<<set $nickname = either("'Beginner'", "'Calamity'", "'Clumsy'", "'First Day'", "'Fresh Meat'", "'Fresh'", "'Freshman'", "'Fumbles'", "'Guppy'", "'Inexperienced'", "'Innocent'", "'New Kid'", "'Newbie'", "'Novice'", "'Rookie'", "'Slippery'", "'Sorry'", "'Tyro'")>>
-	<<set $situationDesc = "does $his best; $he really tries. But $he simply hasn't mastered the skills that more experienced sex slaves take for granted. Though this can be annoying and at times even painful, it is a source of occasional slapstick comedy.">>
-	<<set $applyDesc = "has a constant reminder that no matter how skilled a courtesan $he becomes, some of $his greatest hits will be told as amusing anecdotes for the rest of $his service.">>
-	<<set $notApplyDesc = "understands that what matters is not what $he did yesterday, or how much they liked it, but what $he does today, and how much they like it.">>
+	<<set _nickname = either("'Beginner'", "'Calamity'", "'Clumsy'", "'First Day'", "'Fresh Meat'", "'Fresh'", "'Freshman'", "'Fumbles'", "'Guppy'", "'Inexperienced'", "'Innocent'", "'New Kid'", "'Newbie'", "'Novice'", "'Rookie'", "'Slippery'", "'Sorry'", "'Tyro'")>>
+	<<set _situationDesc = "does $his best; $he really tries. But $he simply hasn't mastered the skills that more experienced sex slaves take for granted. Though this can be annoying and at times even painful, it is a source of occasional slapstick comedy.">>
+	<<set _applyDesc = "has a constant reminder that no matter how skilled a courtesan $he becomes, some of $his greatest hits will be told as amusing anecdotes for the rest of $his service.">>
+	<<set _notApplyDesc = "understands that what matters is not what $he did yesterday, or how much they liked it, but what $he does today, and how much they like it.">>
 
 <<case "Head Girl">>
-	<<set $nickname = either("'Boss'", "'Bossy'", "'Bottom Bitch'", "'Captain'", "'Chief'", "'Commander'", "'Deputy'", "'Favorite'", "'Head Girl'", "'Head Honcho'", "'Head'", "'House Slave'", "'Lieutenant'", "'Major'", "'Mistress'", "'Mrs.'", "'Number Two'", "'On Your Knees'", "'Overseer'", "'Prefect'", "'Second in Command'", "'Sergeant'", "'Top'", "'Understudy'", "'Vice'")>>
-	<<set $situationDesc = "occupies a place in the hierarchy of your penthouse that is certainly one which encourages nicknaming. Your other slaves view $him with mixed envy, adoration, emulation, and apprehension. $He is someone to curry favor with, to offer sexual favors, and at times someone to avoid. To the devoted slave $his closeness to you is enviable; to the rebellious slave $his alliance with you is traitorous.">>
-	<<set $applyDesc = "was already proud of and happy with $his exalted position, but now $he is all the more so. $He had always nursed the secret fear that this was temporary, but $his place at your right hand is now part of $his name.">>
-	<<set $notApplyDesc = "begins to fear a little that $he may one day be supplanted, since you did not think it right to make $his place a part of $his name.">>
+	<<set _nickname = either("'Boss'", "'Bossy'", "'Bottom Bitch'", "'Captain'", "'Chief'", "'Commander'", "'Deputy'", "'Favorite'", "'Head Girl'", "'Head Honcho'", "'Head'", "'House Slave'", "'Lieutenant'", "'Major'", "'Mistress'", "'Mrs.'", "'Number Two'", "'On Your Knees'", "'Overseer'", "'Prefect'", "'Second in Command'", "'Sergeant'", "'Top'", "'Understudy'", "'Vice'")>>
+	<<set _situationDesc = "occupies a place in the hierarchy of your penthouse that is certainly one which encourages nicknaming. Your other slaves view $him with mixed envy, adoration, emulation, and apprehension. $He is someone to curry favor with, to offer sexual favors, and at times someone to avoid. To the devoted slave $his closeness to you is enviable; to the rebellious slave $his alliance with you is traitorous.">>
+	<<set _applyDesc = "was already proud of and happy with $his exalted position, but now $he is all the more so. $He had always nursed the secret fear that this was temporary, but $his place at your right hand is now part of $his name.">>
+	<<set _notApplyDesc = "begins to fear a little that $he may one day be supplanted, since you did not think it right to make $his place a part of $his name.">>
 
 <<case "Concubine">>
-	<<set $nickname = either("'Beauty'", "'Bed Wench'", "'Bed'", "'Cicisbeo'", "'Co-Wife'", "'Cohabitant'", "'Common-Law'", "'Concubine'", "'Contessa'", "'Empress'", "'Fuck Buddy'", "'Girlfriend'", "'Goomah'", "'Grass Widow'", "'Harem Queen'", "'Kept'", "'Lover'", "'Master'", "'Missus'", "'Mistress'", "'Mrs.'", "'Paramour'", "'Partner'", "'Pilegesh'", "'Polygamized'", "'Princess'", "'Queen'", "'Side Piece'", "'Sidechick'", "'Spouse'", "'Strumpet'", "'Wife'", "'Wifelet'", "'Wifey'")>>
-	<<set $situationDesc = "occupies a place in the hierarchy of your penthouse that is certainly one which encourages nicknaming. Your other slaves view $him with mixed envy and admiration. $He has much of the luxury of the Head Girl and none of the responsibility, and all $he has to do for this exalted place is keep your sexual satisfaction as $his prime goal.">>
-	<<set $applyDesc = "was already proud of and happy with $his exalted position, but now $he is all the more so. $He had always nursed the secret fear that this was temporary, but $his place in your bed is now part of $his name.">>
-	<<set $notApplyDesc = "begins to fear a little that $he may one day be supplanted, since you did not think it right to make $his place a part of $his name.">>
+	<<set _nickname = either("'Beauty'", "'Bed Wench'", "'Bed'", "'Cicisbeo'", "'Co-Wife'", "'Cohabitant'", "'Common-Law'", "'Concubine'", "'Contessa'", "'Empress'", "'Fuck Buddy'", "'Girlfriend'", "'Goomah'", "'Grass Widow'", "'Harem Queen'", "'Kept'", "'Lover'", "'Master'", "'Missus'", "'Mistress'", "'Mrs.'", "'Paramour'", "'Partner'", "'Pilegesh'", "'Polygamized'", "'Princess'", "'Queen'", "'Side Piece'", "'Sidechick'", "'Spouse'", "'Strumpet'", "'Wife'", "'Wifelet'", "'Wifey'")>>
+	<<set _situationDesc = "occupies a place in the hierarchy of your penthouse that is certainly one which encourages nicknaming. Your other slaves view $him with mixed envy and admiration. $He has much of the luxury of the Head Girl and none of the responsibility, and all $he has to do for this exalted place is keep your sexual satisfaction as $his prime goal.">>
+	<<set _applyDesc = "was already proud of and happy with $his exalted position, but now $he is all the more so. $He had always nursed the secret fear that this was temporary, but $his place in your bed is now part of $his name.">>
+	<<set _notApplyDesc = "begins to fear a little that $he may one day be supplanted, since you did not think it right to make $his place a part of $his name.">>
 
 <<case "Attendant">>
-	<<set $nickname = either("'Attendant'", "'Bath Girl'", "'Bath'", "'Bathing Beauty'", "'Body Wrapper'", "'Healer'", "'Healing Hand'", "'Helping Hand'", "'Hot Springs'", "'Hot Tub'", "'Masseuse'", "'Mist Queen'", "'Misty'", "'Saunagirl'", "'Spa Day'", "'Spa Mother'", "'Spa'", "'Steam Queen'", "'Sweat Lodge'", "'Warm Water'")>>
-	<<set $situationDesc = "is loved by almost every slave in your penthouse. Getting a chance to go and spend some time in $his spa is a wonderful treat, for which slaves are willing to work very hard. $He's very willing to help them find sexual release, but mostly just provides minor care and an understanding ear for their troubles.">>
-	<<set $applyDesc = "enjoys helping your girls, and is happy to learn that the role is part of $his name now.">>
-	<<set $notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes helping your girls and now wonders whether $he'll be allowed to keep doing so.">>
+	<<set _nickname = either("'Attendant'", "'Bath Girl'", "'Bath'", "'Bathing Beauty'", "'Body Wrapper'", "'Healer'", "'Healing Hand'", "'Helping Hand'", "'Hot Springs'", "'Hot Tub'", "'Masseuse'", "'Mist Queen'", "'Misty'", "'Saunagirl'", "'Spa Day'", "'Spa Mother'", "'Spa'", "'Steam Queen'", "'Sweat Lodge'", "'Warm Water'")>>
+	<<set _situationDesc = "is loved by almost every slave in your penthouse. Getting a chance to go and spend some time in $his spa is a wonderful treat, for which slaves are willing to work very hard. $He's very willing to help them find sexual release, but mostly just provides minor care and an understanding ear for their troubles.">>
+	<<set _applyDesc = "enjoys helping your girls, and is happy to learn that the role is part of $his name now.">>
+	<<set _notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes helping your girls and now wonders whether $he'll be allowed to keep doing so.">>
 
 <<case "Matron">>
-	<<set $nickname = either("'Amah'", "'Au Pair'", "'Ayah'", "'Baby Farmer'", "'Babysitter'", "'Caretaker'", "'Childminder'", "'Daycare'", "'Governess'", "'Houseparent'", "'Mama'", "'Matron'", "'Mommy'", "'Mother'", "'Nanny'", "'Nursemaid'", "'Nursery'", "'Orphanotrophos'", "'Pacifier'", "'Stork'", "'Supernanny'")>>
-	<<set $situationDesc = "has a very important role in ensuring the children in $arcologies[0].name grow up to be the perfect slaves for you.">>
-	<<set $applyDesc = "is excited and proud when $he learns that $his position in your arcology is a part of $his name now.">>
-	<<set $notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes taking care of the children and now wonders whether $he'll be allowed to keep doing so.">>
+	<<set _nickname = either("'Amah'", "'Au Pair'", "'Ayah'", "'Baby Farmer'", "'Babysitter'", "'Caretaker'", "'Childminder'", "'Daycare'", "'Governess'", "'Houseparent'", "'Mama'", "'Matron'", "'Mommy'", "'Mother'", "'Nanny'", "'Nursemaid'", "'Nursery'", "'Orphanotrophos'", "'Pacifier'", "'Stork'", "'Supernanny'")>>
+	<<set _situationDesc = "has a very important role in ensuring the children in $arcologies[0].name grow up to be the perfect slaves for you.">>
+	<<set _applyDesc = "is excited and proud when $he learns that $his position in your arcology is a part of $his name now.">>
+	<<set _notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes taking care of the children and now wonders whether $he'll be allowed to keep doing so.">>
 
 <<case "Madam">>
-	<<set $nickname = either("'Abbess'", "'Bawd'", "'Boss Bitch'", "'Brothel Queen'", "'Brothel-Keeper'", "'Fishmonger'", "'Flesh-Peddler'", "'Hustler'", "'Mack Mommy'", "'Madam'", "'Manager'", "'Middle Woman'", "'Miss Kitty'", "'Mother'", "'Nookie Bookie'", "'Operator'", "'Panderer'", "'Pimp Hand'", "'Pimp Queen'", "'Pimp'", "'Pimparella'", "'Procurer'", "'Procuress'", "'Queen Bitch'", "'Saleswoman'", "'Solicitor'", "'Third Party'", "'Trafficker'", "'Whore Queen'", "'Whorehousekeeper'", "'Whoremonger'")>>
-	<<set $situationDesc = "is in an unusually responsible and pragmatic position, for a slave. $He runs $his whores' lives with almost total control, overseeing the sale of their bodies day in, day out. Some resent $him, some love $him, but all depend on $him.">>
-	<<set $applyDesc = "enjoys running a whorehouse, and is happy to learn that the role is part of $his name now.">>
-	<<set $notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes running a whorehouse and now wonders whether $he'll be allowed to keep doing so.">>
+	<<set _nickname = either("'Abbess'", "'Bawd'", "'Boss Bitch'", "'Brothel Queen'", "'Brothel-Keeper'", "'Fishmonger'", "'Flesh-Peddler'", "'Hustler'", "'Mack Mommy'", "'Madam'", "'Manager'", "'Middle Woman'", "'Miss Kitty'", "'Mother'", "'Nookie Bookie'", "'Operator'", "'Panderer'", "'Pimp Hand'", "'Pimp Queen'", "'Pimp'", "'Pimparella'", "'Procurer'", "'Procuress'", "'Queen Bitch'", "'Saleswoman'", "'Solicitor'", "'Third Party'", "'Trafficker'", "'Whore Queen'", "'Whorehousekeeper'", "'Whoremonger'")>>
+	<<set _situationDesc = "is in an unusually responsible and pragmatic position, for a slave. $He runs $his whores' lives with almost total control, overseeing the sale of their bodies day in, day out. Some resent $him, some love $him, but all depend on $him.">>
+	<<set _applyDesc = "enjoys running a whorehouse, and is happy to learn that the role is part of $his name now.">>
+	<<set _notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes running a whorehouse and now wonders whether $he'll be allowed to keep doing so.">>
 
 <<case "DJ">>
-	<<set $nickname = either("'Arcology Idol'", "'Bass Drop'", "'Bass Slut'", "'Bass'", "'Bassgirl'", "'Beatmatcher'", "'Booth'", "'Celebutante'", "'Club Idol'", "'Club Princess'", "'Club Queen'", "'Deejay'", "'Disc Jockey'", "'Discaire'", "'DJ Whore'", "'DJ'", "'EP'", "'LP'", "'Mixer'", "'Music Master'", "'Radio'", "'Record Player'", "'Subwoofers'", "'SuperBass'", "'Turntables'")>>
-	<<set $situationDesc = "has a leadership role that requires decisiveness and discretion, but has to maintain a role of flirtatiousness and fun, at the same time. Other slaves marvel at how $he must give another slut orders one moment, and girlishly giggle at a prominent citizen the next.">>
-	<<set $applyDesc = "enjoys being one of the most idolized <<= $girl>>s in the arcology, and is happy to learn that the role is part of $his name now.">>
-	<<set $notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes being one of the most idolized <<= $girl>>s in the arcology and now wonders whether $he'll be allowed to keep doing so.">>
+	<<set _nickname = either("'Arcology Idol'", "'Bass Drop'", "'Bass Slut'", "'Bass'", "'Bassgirl'", "'Beatmatcher'", "'Booth'", "'Celebutante'", "'Club Idol'", "'Club Princess'", "'Club Queen'", "'Deejay'", "'Disc Jockey'", "'Discaire'", "'DJ Whore'", "'DJ'", "'EP'", "'LP'", "'Mixer'", "'Music Master'", "'Radio'", "'Record Player'", "'Subwoofers'", "'SuperBass'", "'Turntables'")>>
+	<<set _situationDesc = "has a leadership role that requires decisiveness and discretion, but has to maintain a role of flirtatiousness and fun, at the same time. Other slaves marvel at how $he must give another slut orders one moment, and girlishly giggle at a prominent citizen the next.">>
+	<<set _applyDesc = "enjoys being one of the most idolized <<= $girl>>s in the arcology, and is happy to learn that the role is part of $his name now.">>
+	<<set _notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes being one of the most idolized <<= $girl>>s in the arcology and now wonders whether $he'll be allowed to keep doing so.">>
 
 <<case "Recruiter">>
-	<<set $nickname = either("'Abductor'", "'Agent'", "'Cam Queen'", "'Cam'", "'Camgirl'", "'Collector'", "'Employer'", "'Fraudster'", "'Headhunter'", "'Honeypot'", "'Honeytrap'", "'Interviewer'", "'Job Fair'", "'Kidnapper'", "'Recruiter'", "'Recruitment Tool'", "'Scout'", "'Slavecatcher'", "'Slaver'", "'Snake'", "'Spider'", "'Trapper'", "'Trickster'")>>
-	<<set $situationDesc = "is fundamentally a liar, in $his role as recruiter. $He must constantly lie by omission if not by commission, telling everyone interested in slavery all about everything good about being your slave, while leaving out the fundamental reality of sexual servitude.">>
-	<<set $applyDesc = "enjoys seeing girls go from faces on a screen to fellow fuckslaves, and is happy to learn that the role is part of $his name now.">>
-	<<set $notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes making girls go from faces on a screen to fellow fuckslaves and now wonders whether $he'll be allowed to keep doing so.">>
+	<<set _nickname = either("'Abductor'", "'Agent'", "'Cam Queen'", "'Cam'", "'Camgirl'", "'Collector'", "'Employer'", "'Fraudster'", "'Headhunter'", "'Honeypot'", "'Honeytrap'", "'Interviewer'", "'Job Fair'", "'Kidnapper'", "'Recruiter'", "'Recruitment Tool'", "'Scout'", "'Slavecatcher'", "'Slaver'", "'Snake'", "'Spider'", "'Trapper'", "'Trickster'")>>
+	<<set _situationDesc = "is fundamentally a liar, in $his role as recruiter. $He must constantly lie by omission if not by commission, telling everyone interested in slavery all about everything good about being your slave, while leaving out the fundamental reality of sexual servitude.">>
+	<<set _applyDesc = "enjoys seeing girls go from faces on a screen to fellow fuckslaves, and is happy to learn that the role is part of $his name now.">>
+	<<set _notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes making girls go from faces on a screen to fellow fuckslaves and now wonders whether $he'll be allowed to keep doing so.">>
 
 <<case "Wardeness">>
-	<<set $nickname = either("'Boss'", "'Captor'", "'Chief'", "'Cop'", "'Copper'", "'Dogcatcher'", "'Governor'", "'Inquisitrix'", "'Interrogatrix'", "'Jail'", "'Jaileress'", "'Keeper'", "'Nightstick'", "'Officer'", "'Overseer'", "'Prison Queen'", "'Prison'", "'Rapist'", "'Screw'", "'Sheriff'", "'Snake'", "'Spider'", "'Stoolie'", "'Turnkey'", "'Warden'", "'Wardeness'")>>
-	<<set $situationDesc = "has perhaps the most hated role among your slaves. $His charges hate $him, of course. But almost every slave who was once one of $his charges hates $him too, for they have not forgotten how $his whim was once the law to them.">>
-	<<set $applyDesc = "enjoys having a row of cells full of slaves to abuse, and is happy to learn that the role is part of $his name now.">>
-	<<set $notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes having a row of cells full of slaves to abuse and now wonders whether $he'll be allowed to keep doing so.">>
+	<<set _nickname = either("'Boss'", "'Captor'", "'Chief'", "'Cop'", "'Copper'", "'Dogcatcher'", "'Governor'", "'Inquisitrix'", "'Interrogatrix'", "'Jail'", "'Jaileress'", "'Keeper'", "'Nightstick'", "'Officer'", "'Overseer'", "'Prison Queen'", "'Prison'", "'Rapist'", "'Screw'", "'Sheriff'", "'Snake'", "'Spider'", "'Stoolie'", "'Turnkey'", "'Warden'", "'Wardeness'")>>
+	<<set _situationDesc = "has perhaps the most hated role among your slaves. $His charges hate $him, of course. But almost every slave who was once one of $his charges hates $him too, for they have not forgotten how $his whim was once the law to them.">>
+	<<set _applyDesc = "enjoys having a row of cells full of slaves to abuse, and is happy to learn that the role is part of $his name now.">>
+	<<set _notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes having a row of cells full of slaves to abuse and now wonders whether $he'll be allowed to keep doing so.">>
 
 <<case "Milkmaid">>
-	<<set $nickname = either("'Cattle Driver'", "'Cowgirl'", "'Cowhand'", "'Cowpoke'", "'Cream Queen'", "'Dairy Queen'", "'Dairy'", "'Farm'", "'Milker'", "'Milking Machine'", "'Milkmaid'", "'Milktugger'", "'Milkwoman'", "'Rancher'", "'Squeezer'", "'Strong Hands'", "'Teat Puller'", "'Udder Lover'")>>
-	<<set $situationDesc = "has a physically demanding and emotionally rewarding role. It's hard work, hauling milk and shifting cows all day, but $his stock love $him. It's hard not to love someone when you depend on them so totally.">>
-	<<set $applyDesc = "enjoys being a milkmaid, despite the tough work, and is happy to learn that the role is part of $his name now.">>
-	<<set $notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes being a milkmaid, despite the tough work, and now wonders whether $he'll be allowed to keep doing so.">>
+	<<set _nickname = either("'Cattle Driver'", "'Cowgirl'", "'Cowhand'", "'Cowpoke'", "'Cream Queen'", "'Dairy Queen'", "'Dairy'", "'Farm'", "'Milker'", "'Milking Machine'", "'Milkmaid'", "'Milktugger'", "'Milkwoman'", "'Rancher'", "'Squeezer'", "'Strong Hands'", "'Teat Puller'", "'Udder Lover'")>>
+	<<set _situationDesc = "has a physically demanding and emotionally rewarding role. It's hard work, hauling milk and shifting cows all day, but $his stock love $him. It's hard not to love someone when you depend on them so totally.">>
+	<<set _applyDesc = "enjoys being a milkmaid, despite the tough work, and is happy to learn that the role is part of $his name now.">>
+	<<set _notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes being a milkmaid, despite the tough work, and now wonders whether $he'll be allowed to keep doing so.">>
 
 <<case "Farmer">>
-	<<set $nickname = either("'Agriculturalist'", "'Country'", "'Cropper'", "'Farmer'", "'Feeder'", "'Fertilizer'", "'Gardener'", "'Green Thumb'", "'Harvest Moon'", "'Harvester'", "'Hay Bale'", "'Hick'", "'Laborer'", "'Old McDonald'", "'Peasant'", "'Pesticide'", "'Planter'", "'Rancher'", "'Reaper'", "'Redneck'", "'Rural'", "'Sharecropper'", "'Sower'", "'Tender'", "'Tiller'", "'Tractor Pull'")>>
-	<<set $situationDesc = "has a very physically demanding role. It's hard work, tending to crops and animals all day, but $he loves it.">>
-	<<set $applyDesc = "enjoys being a farmer, despite the constant manual labor, and is happy to learn that the role is part of $his name now.">>
-	<<set $notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes being a farmer, despite the constant manual labor, and now wonders whether $he'll be allowed to keep doing so.">>
+	<<set _nickname = either("'Agriculturalist'", "'Country'", "'Cropper'", "'Farmer'", "'Feeder'", "'Fertilizer'", "'Gardener'", "'Green Thumb'", "'Harvest Moon'", "'Harvester'", "'Hay Bale'", "'Hick'", "'Laborer'", "'Old McDonald'", "'Peasant'", "'Pesticide'", "'Planter'", "'Rancher'", "'Reaper'", "'Redneck'", "'Rural'", "'Sharecropper'", "'Sower'", "'Tender'", "'Tiller'", "'Tractor Pull'")>>
+	<<set _situationDesc = "has a very physically demanding role. It's hard work, tending to crops and animals all day, but $he loves it.">>
+	<<set _applyDesc = "enjoys being a farmer, despite the constant manual labor, and is happy to learn that the role is part of $his name now.">>
+	<<set _notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes being a farmer, despite the constant manual labor, and now wonders whether $he'll be allowed to keep doing so.">>
 
 <<case "Collectrix">>
-	<<set $nickname = either("'Anal Retentive'", "'Ass Fiend'", "'Booty Warrior'", "'Buggerer'", "'Buttfucker'", "'Collectrix'", "'Cum Queen'", "'Extractrix'", "'Fucker'", "'Fudge Packer'", "'Milker'", "'Orgasmotron'", "'Prostate Masseuse'", "'Prostate Poker'", "'Rear Poker'", "'Sod Off'", "'Sodomizer'")>>
-	<<set $situationDesc = "is required to fuck more exhaustingly than any other slave in the arcology. It's one thing to take dick all day; it's quite another to be expected to constantly massage prostates to orgasm. Naturally, the other slaves notice.">>
-	<<set $applyDesc = "really enjoys being expected to bone butts constantly, and is happy to learn that the role is part of $his name now.">>
-	<<set $notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes being expected to bone butts constantly and now wonders whether $he'll be allowed to keep doing so.">>
+	<<set _nickname = either("'Anal Retentive'", "'Ass Fiend'", "'Booty Warrior'", "'Buggerer'", "'Buttfucker'", "'Collectrix'", "'Cum Queen'", "'Extractrix'", "'Fucker'", "'Fudge Packer'", "'Milker'", "'Orgasmotron'", "'Prostate Masseuse'", "'Prostate Poker'", "'Rear Poker'", "'Sod Off'", "'Sodomizer'")>>
+	<<set _situationDesc = "is required to fuck more exhaustingly than any other slave in the arcology. It's one thing to take dick all day; it's quite another to be expected to constantly massage prostates to orgasm. Naturally, the other slaves notice.">>
+	<<set _applyDesc = "really enjoys being expected to bone butts constantly, and is happy to learn that the role is part of $his name now.">>
+	<<set _notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes being expected to bone butts constantly and now wonders whether $he'll be allowed to keep doing so.">>
 
 <<case "Schoolteacher">>
-	<<set $nickname = either("'Classroom'", "'Dean'", "'Educator'", "'Extra Credit'", "'Headmistress'", "'Pedagogue'", "'Principal'", "'Profesora'", "'Professor'", "'Ruler'", "'Schoolmarm'", "'Schoolmistress'", "'Schoolteacher'", "'Sensei'", "'Shiny Apple'", "'Teach'", "'Teacher'", "'Tutor'")>>
-	<<set $situationDesc = "might consider $his role boring, if $he weren't allowed to use sexual abuse as a correction for poor attentiveness. As it is, $his sexual aggressiveness draws much open comment and some private infatuation from the students.">>
-	<<set $applyDesc = "likes teaching, especially because $he's allowed to use the students, and is happy to learn that the role is part of $his name now.">>
-	<<set $notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes teaching, especially because $he's allowed to use the students, and now wonders whether $he'll be allowed to keep doing so.">>
+	<<set _nickname = either("'Classroom'", "'Dean'", "'Educator'", "'Extra Credit'", "'Headmistress'", "'Pedagogue'", "'Principal'", "'Profesora'", "'Professor'", "'Ruler'", "'Schoolmarm'", "'Schoolmistress'", "'Schoolteacher'", "'Sensei'", "'Shiny Apple'", "'Teach'", "'Teacher'", "'Tutor'")>>
+	<<set _situationDesc = "might consider $his role boring, if $he weren't allowed to use sexual abuse as a correction for poor attentiveness. As it is, $his sexual aggressiveness draws much open comment and some private infatuation from the students.">>
+	<<set _applyDesc = "likes teaching, especially because $he's allowed to use the students, and is happy to learn that the role is part of $his name now.">>
+	<<set _notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes teaching, especially because $he's allowed to use the students, and now wonders whether $he'll be allowed to keep doing so.">>
 
 <<case "Nurse">>
-	<<set $nickname = either("'Candy Striper'", "'Doc'", "'Doctor'", "'Dr.'", "'Healer'", "'Hospital Hottie'", "'Life Support'", "'M.D.'", "'Medic'", "'Medicine Woman'", "'Nurse'", "'Pill Peddler'", "'Pill Pusher'", "'Placebo'", "'Practitioner'", "'Quack'", "'Sawbones'", "'Snake Oil'", "'Surgeon'")>>
-	<<set $situationDesc = "might consider $his role boring, if $he weren't allowed to use sexual abuse as a correction for poor health. As it is, $his sexual aggressiveness draws much open comment and some private infatuation from the patients.">>
-	<<set $applyDesc = "likes being a nurse, especially because $he's allowed to use the patients, and is happy to learn that the role is part of $his name now.">>
-	<<set $notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes being a nurse, especially because $he's allowed to use the patients, and now wonders whether $he'll be allowed to keep doing so.">>
+	<<set _nickname = either("'Candy Striper'", "'Doc'", "'Doctor'", "'Dr.'", "'Healer'", "'Hospital Hottie'", "'Life Support'", "'M.D.'", "'Medic'", "'Medicine Woman'", "'Nurse'", "'Pill Peddler'", "'Pill Pusher'", "'Placebo'", "'Practitioner'", "'Quack'", "'Sawbones'", "'Snake Oil'", "'Surgeon'")>>
+	<<set _situationDesc = "might consider $his role boring, if $he weren't allowed to use sexual abuse as a correction for poor health. As it is, $his sexual aggressiveness draws much open comment and some private infatuation from the patients.">>
+	<<set _applyDesc = "likes being a nurse, especially because $he's allowed to use the patients, and is happy to learn that the role is part of $his name now.">>
+	<<set _notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes being a nurse, especially because $he's allowed to use the patients, and now wonders whether $he'll be allowed to keep doing so.">>
 
 <<case "Lurcher">>
-	<<set $nickname = either("'Athlete'", "'Bloodhound'", "'Bloodsport'", "'Cardio'", "'Catcher'", "'Courser'", "'Fetch'", "'First Place'", "'Greyhound'", "'Hound'", "'Hunter'", "'Lurcher'", "'Poacher'", "'Race Queen'", "'Racehound'", "'Racer'", "'Runner'", "'Sighthound'", "'Speedy'", "'Sprinter'", "'Tackler'")>>
-	<<set $situationDesc = "is a lurcher in the regular coursing races held by the Coursing Association. The slaves fortunate enough to have never experienced these events learn of them through hearsay, so $his position comes with a great deal of both infamy and envy">>
-	<<set $applyDesc = "likes being a lurcher, especially because of what $he's allowed to do to captured hares, and is happy to learn that the role is part of $his name now.">>
-	<<set $notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes being a lurcher, especially because of what $he's allowed to do to captured hares, and now wonders whether $he'll be allowed to keep doing so.">>
+	<<set _nickname = either("'Athlete'", "'Bloodhound'", "'Bloodsport'", "'Cardio'", "'Catcher'", "'Courser'", "'Fetch'", "'First Place'", "'Greyhound'", "'Hound'", "'Hunter'", "'Lurcher'", "'Poacher'", "'Race Queen'", "'Racehound'", "'Racer'", "'Runner'", "'Sighthound'", "'Speedy'", "'Sprinter'", "'Tackler'")>>
+	<<set _situationDesc = "is a lurcher in the regular coursing races held by the Coursing Association. The slaves fortunate enough to have never experienced these events learn of them through hearsay, so $his position comes with a great deal of both infamy and envy">>
+	<<set _applyDesc = "likes being a lurcher, especially because of what $he's allowed to do to captured hares, and is happy to learn that the role is part of $his name now.">>
+	<<set _notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes being a lurcher, especially because of what $he's allowed to do to captured hares, and now wonders whether $he'll be allowed to keep doing so.">>
 
 <<case "Stewardess">>
-	<<set $nickname = either("'Chamberlain'", "'Clean Queen'", "'Concierge'", "'Head Maid'", "'Head Servant'", "'Housekeeper'", "'Housemistress'", "'Inspectrix'", "'Maid Boss'", "'Majordomo'", "'Martinet'", "'Perfectionist'", "'Sanitizer'", "'Scrubber'", "'Stewardess'", "'Top Mop'")>>
-	<<set $situationDesc = "might consider $his role boring, if $he weren't allowed to use sexual abuse as a correction for poor work. As it is, $his sexual aggressiveness draws much open comment and some private infatuation from the servants.">>
-	<<set $applyDesc = "likes being in charge of household tasks, especially because $he's allowed to use the servants, and is happy to learn that the role is part of $his name now.">>
-	<<set $notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes being in charge of household tasks, especially because $he's allowed to use the servants, and now wonders whether $he'll be allowed to keep doing so.">>
+	<<set _nickname = either("'Chamberlain'", "'Clean Queen'", "'Concierge'", "'Head Maid'", "'Head Servant'", "'Housekeeper'", "'Housemistress'", "'Inspectrix'", "'Maid Boss'", "'Majordomo'", "'Martinet'", "'Perfectionist'", "'Sanitizer'", "'Scrubber'", "'Stewardess'", "'Top Mop'")>>
+	<<set _situationDesc = "might consider $his role boring, if $he weren't allowed to use sexual abuse as a correction for poor work. As it is, $his sexual aggressiveness draws much open comment and some private infatuation from the servants.">>
+	<<set _applyDesc = "likes being in charge of household tasks, especially because $he's allowed to use the servants, and is happy to learn that the role is part of $his name now.">>
+	<<set _notApplyDesc = "is a bit sad that $his role isn't part of $his name, since $he likes being in charge of household tasks, especially because $he's allowed to use the servants, and now wonders whether $he'll be allowed to keep doing so.">>
 
 <<case "Bodyguard">>
-	<<set $nickname = either("'Aegis'", "'Amazon'", "'Athena'", "'Battle'", "'Bloody'", "'Body Armor'", "'Bodyguard'", "'Diana'", "'Guard'", "'Gunsmoke'", "'Hired Gun'", "'Mercenary'", "'Officer'", "'Paladin'", "'Protection'", "'Secret Service'", "'Security'", "'Soldier'", "'Terminatrix'", "'Threat Neutralizer'", "'Warrior'", "'Widow'")>>
-	<<set $situationDesc = "divides your other slaves. $He is a physically intimidating sight, wearing normal slave attire and obviously sexually available, but also carrying a sword across $his back and an automatic weapon at $his hip. Some revere $his unique position of responsibility, while others mock how far $he steps outside the bounds of sexual slavery.">>
-	<<set $applyDesc = "knew a while ago that $he was likely to spend some time shadowing your every move. But now, $he understands that not only is your life in $his hand<<if hasBothArms($activeSlave)>>s<</if>>, it is going to remain so. $He is almost awed by the responsibility.">>
-	<<set $notApplyDesc = "realizes to $his apprehension that $he may someday be a simple sex slave again, respected for $his holes rather than for $his swords<<= $woman>>ship.">>
+	<<set _nickname = either("'Aegis'", "'Amazon'", "'Athena'", "'Battle'", "'Bloody'", "'Body Armor'", "'Bodyguard'", "'Diana'", "'Guard'", "'Gunsmoke'", "'Hired Gun'", "'Mercenary'", "'Officer'", "'Paladin'", "'Protection'", "'Secret Service'", "'Security'", "'Soldier'", "'Terminatrix'", "'Threat Neutralizer'", "'Warrior'", "'Widow'")>>
+	<<set _situationDesc = "divides your other slaves. $He is a physically intimidating sight, wearing normal slave attire and obviously sexually available, but also carrying a sword across $his back and an automatic weapon at $his hip. Some revere $his unique position of responsibility, while others mock how far $he steps outside the bounds of sexual slavery.">>
+	<<set _applyDesc = "knew a while ago that $he was likely to spend some time shadowing your every move. But now, $he understands that not only is your life in $his hand<<if hasBothArms($activeSlave)>>s<</if>>, it is going to remain so. $He is almost awed by the responsibility.">>
+	<<set _notApplyDesc = "realizes to $his apprehension that $he may someday be a simple sex slave again, respected for $his holes rather than for $his swords<<= $woman>>ship.">>
 
 <<case "server">>
-	<<set $nickname = either("'Bedwarmer'", "'Bottom Rung'", "'Bottom'", "'Doormat'", "'Girltoy'", "'Group Whore'", "'House Slave'", "'Kick Me'", "'Lovergirl'", "'Please No'", "'Rapebait'", "'Servant'", "'Server'", "'Servile'", "'Slave Slut'", "'Sub'", "'Submissive'")>>
-	<<set $situationDesc = "holds a place in the hierarchy of your penthouse that almost demands a nickname. $He is the lowest of the low, below even your other slaves. $He is a pitiable creature, living with a large number of sexually charged people, slave and free, all of whom have the right to demand any sexual service they wish of $him.">>
-	<<set $applyDesc = "has become almost proud of $his strange, exhausting situation. $Hers is not the struggle of slaves to know their place, for $he knows $hers. It is on the bottom.">>
-	<<set $notApplyDesc = "begins to hope a little that maybe $he can rise beyond $his current station.">>
+	<<set _nickname = either("'Bedwarmer'", "'Bottom Rung'", "'Bottom'", "'Doormat'", "'Girltoy'", "'Group Whore'", "'House Slave'", "'Kick Me'", "'Lovergirl'", "'Please No'", "'Rapebait'", "'Servant'", "'Server'", "'Servile'", "'Slave Slut'", "'Sub'", "'Submissive'")>>
+	<<set _situationDesc = "holds a place in the hierarchy of your penthouse that almost demands a nickname. $He is the lowest of the low, below even your other slaves. $He is a pitiable creature, living with a large number of sexually charged people, slave and free, all of whom have the right to demand any sexual service they wish of $him.">>
+	<<set _applyDesc = "has become almost proud of $his strange, exhausting situation. $Hers is not the struggle of slaves to know their place, for $he knows $hers. It is on the bottom.">>
+	<<set _notApplyDesc = "begins to hope a little that maybe $he can rise beyond $his current station.">>
 
 <<case "nipples">>
-	<<set $nickname = either("'Bullets'", "'Buttons'", "'Cold Weather'", "'Dicknipples'", "'Erect'", "'Eye Hazard'", "'Milk Taps'", "'Nipples'", "'Nippy'", "'Nips'", "'Pointers'", "'Pointy'", "'Pokers'", "'Puffy'", "'Spikes'", "'Teats'", "'THO'", "'Tips'", "'Titclits'")>>
-	<<set $situationDesc = "has a pair of nipples that are hard to ignore. Whenever $he's sexually aroused, they jut proudly from $his chest. As a result, it's totally impossible for $him to conceal arousal. When $he's ready for it, $his big nipples let the whole world know $he's easy.">>
-	<<set $applyDesc = "is proud of the nickname, almost amusingly so. $He flaunts $his nipples in a way $he didn't before.">>
-	<<set $notApplyDesc = "accepts that $his nipples are just another part of $him, and that if $he pokes those who fuck $him in the missionary position a little, that's all right.">>
+	<<set _nickname = either("'Bullets'", "'Buttons'", "'Cold Weather'", "'Dicknipples'", "'Erect'", "'Eye Hazard'", "'Milk Taps'", "'Nipples'", "'Nippy'", "'Nips'", "'Pointers'", "'Pointy'", "'Pokers'", "'Puffy'", "'Spikes'", "'Teats'", "'THO'", "'Tips'", "'Titclits'")>>
+	<<set _situationDesc = "has a pair of nipples that are hard to ignore. Whenever $he's sexually aroused, they jut proudly from $his chest. As a result, it's totally impossible for $him to conceal arousal. When $he's ready for it, $his big nipples let the whole world know $he's easy.">>
+	<<set _applyDesc = "is proud of the nickname, almost amusingly so. $He flaunts $his nipples in a way $he didn't before.">>
+	<<set _notApplyDesc = "accepts that $his nipples are just another part of $him, and that if $he pokes those who fuck $him in the missionary position a little, that's all right.">>
 
 <<case "nippleCunts">>
-	<<set $nickname = either("'Areola Hole'", "'Bonus Holes'", "'Cuntnipples'", "'Fuck Ducts'", "'Fuckable Nipples'", "'Milk Ducts'", "'Nip Holes'", "'Nip Slipped'", "'Nipple Cunts'", "'Nipple Fucked'", "'Nipplejob'", "'Nippussy'", "'Titjob'")>>
-	<<set $situationDesc = "has a pair of unassuming nipples that hide an unusual secret: They can take a dick as well as any other hole can. This previously impossible talent is a source of both envy and disgust, and as such, $he often finds $himself in the center of any breast based discussion.">>
-	<<set $applyDesc = "is proud of the nickname, almost amusingly so. $He flaunts $his fuckable nipples in a way $he didn't before.">>
-	<<set $notApplyDesc = "accepts that $his nipples are just another pair of fuckable holes in $his body, nothing more.">>
+	<<set _nickname = either("'Areola Hole'", "'Bonus Holes'", "'Cuntnipples'", "'Fuck Ducts'", "'Fuckable Nipples'", "'Milk Ducts'", "'Nip Holes'", "'Nip Slipped'", "'Nipple Cunts'", "'Nipple Fucked'", "'Nipplejob'", "'Nippussy'", "'Titjob'")>>
+	<<set _situationDesc = "has a pair of unassuming nipples that hide an unusual secret: They can take a dick as well as any other hole can. This previously impossible talent is a source of both envy and disgust, and as such, $he often finds $himself in the center of any breast based discussion.">>
+	<<set _applyDesc = "is proud of the nickname, almost amusingly so. $He flaunts $his fuckable nipples in a way $he didn't before.">>
+	<<set _notApplyDesc = "accepts that $his nipples are just another pair of fuckable holes in $his body, nothing more.">>
 
 <<case "areolae">>
-	<<set $nickname = either("'Areolae'", "'Areolar'", "'Areolas'", "'Broad Based'", "'Cans'", "'Dark Circles'", "'Dinner Plates'", "'Flapjacks'", "'Fried Eggs'", "'Headlamps'", "'Headlights'", "'Highbeams'", "'Pancakes'", "'Pepperoni'", "'Rounders'")>>
-	<<set $situationDesc = "has areolae broader than many slaves' entire breasts. Some slaves find them unattractive, making them an easy target for mockery; others like them, and playfully torment $him by giving $him a nickname based on them.">>
-	<<set $applyDesc = "is proud of the nickname, almost amusingly so. $He flaunts $his lovely broad areolae happily, the nipples in their centers hard.">>
-	<<set $notApplyDesc = "accepts that $his broad areolae are just another part of $him, just like $his big tits.">>
+	<<set _nickname = either("'Areolae'", "'Areolar'", "'Areolas'", "'Broad Based'", "'Cans'", "'Dark Circles'", "'Dinner Plates'", "'Flapjacks'", "'Fried Eggs'", "'Headlamps'", "'Headlights'", "'Highbeams'", "'Pancakes'", "'Pepperoni'", "'Rounders'")>>
+	<<set _situationDesc = "has areolae broader than many slaves' entire breasts. Some slaves find them unattractive, making them an easy target for mockery; others like them, and playfully torment $him by giving $him a nickname based on them.">>
+	<<set _applyDesc = "is proud of the nickname, almost amusingly so. $He flaunts $his lovely broad areolae happily, the nipples in their centers hard.">>
+	<<set _notApplyDesc = "accepts that $his broad areolae are just another part of $him, just like $his big tits.">>
 
 <<case "lips">>
-	<<set $nickname = either("'Beestung'", "'Cakehole'", "'Chops'", "'DSLs'", "'Ducklips'", "'Facepussy'", "'Fat Lips'", "'Kisser'", "'Kissing Booth'", "'Kissy'", "'Lip Gloss'", "'Lippy'", "'Lips'", "'Lipstick'", "'Mwah'", "'Pillows'", "'Rims'", "'Smackers'", "'Smooches'", "'Soup Coolers'", "'Sucker'", "'Suckles'", "'Sucky-Sucky'")>>
-	<<set $situationDesc = "has lovely lips. They're so big $he can hardly talk straight, and they even hinder $his ability to communicate any facial expression other than a desire to be facefucked. This is appropriate, as $he spends a lot of time getting facefucked.">>
-	<<set $applyDesc = "accepts that $his big lips define $him. Even more than before, $he presents $his mouth for oral sex whenever $he flirts, and $he views $his throat as $his primary sexual organ.">>
-	<<set $notApplyDesc = "accepts that $his mouth is only one of $his holes, and that as a sex slave $he'll be taking cock in all of them, even if $his lips are huge.">>
+	<<set _nickname = either("'Beestung'", "'Cakehole'", "'Chops'", "'DSLs'", "'Ducklips'", "'Facepussy'", "'Fat Lips'", "'Kisser'", "'Kissing Booth'", "'Kissy'", "'Lip Gloss'", "'Lippy'", "'Lips'", "'Lipstick'", "'Mwah'", "'Pillows'", "'Rims'", "'Smackers'", "'Smooches'", "'Soup Coolers'", "'Sucker'", "'Suckles'", "'Sucky-Sucky'")>>
+	<<set _situationDesc = "has lovely lips. They're so big $he can hardly talk straight, and they even hinder $his ability to communicate any facial expression other than a desire to be facefucked. This is appropriate, as $he spends a lot of time getting facefucked.">>
+	<<set _applyDesc = "accepts that $his big lips define $him. Even more than before, $he presents $his mouth for oral sex whenever $he flirts, and $he views $his throat as $his primary sexual organ.">>
+	<<set _notApplyDesc = "accepts that $his mouth is only one of $his holes, and that as a sex slave $he'll be taking cock in all of them, even if $his lips are huge.">>
 
 <<case "mark">>
-	<<set $nickname = either("'Ass Kisser'", "'Breeder'", "'Chosen'", "'Conceited'", "'Connections'", "'Elite Breeder'", "'Elite'", "'Elitist'", "'Eugenicist'", "'Favors'", "'High and Mighty'", "'Lucky'", "'Mark'", "'Marked'", "'Nepotist'", "'Pedigree'", "'Privileged'", "'Special'")>>
-	<<set $situationDesc = "is an Elite Breeder. $He has permanently been marked as the mother of society's children. If $he isn't currently swelling with life, $he will be soon. However, $he is also granted special benefits befitting the mother of future generations of gifted children.">>
-	<<set $applyDesc = "takes pride in $his new nickname and the bond it displays between $him and $his sire. $He has to make sure that it doesn't go to $his head, though.">>
-	<<set $notApplyDesc = "understands that $he is expected to obey and fuck just like any of your other slaves, regardless of $his status as a breeder.">>
+	<<set _nickname = either("'Ass Kisser'", "'Breeder'", "'Chosen'", "'Conceited'", "'Connections'", "'Elite Breeder'", "'Elite'", "'Elitist'", "'Eugenicist'", "'Favors'", "'High and Mighty'", "'Lucky'", "'Mark'", "'Marked'", "'Nepotist'", "'Pedigree'", "'Privileged'", "'Special'")>>
+	<<set _situationDesc = "is an Elite Breeder. $He has permanently been marked as the mother of society's children. If $he isn't currently swelling with life, $he will be soon. However, $he is also granted special benefits befitting the mother of future generations of gifted children.">>
+	<<set _applyDesc = "takes pride in $his new nickname and the bond it displays between $him and $his sire. $He has to make sure that it doesn't go to $his head, though.">>
+	<<set _notApplyDesc = "understands that $he is expected to obey and fuck just like any of your other slaves, regardless of $his status as a breeder.">>
 
 <<case "broodmother">>
-	<<set $nickname = either("'Baby Factory'", "'Bakery'", "'Bloated'", "'Breeder'", "'Broodmother'", "'Factory'", "'Mother'", "'Naedoko'", "'Nursery'", "'Seeded'", "'Stuffed'")>>
-	<<set $situationDesc = "is a Broodmother. $His belly is enormous, unavoidable evidence that $his life has been dedicated to carrying children. $His taut belly is stuffed with $his brood and barely gets smaller with every child born from $him.">>
-	<<set $applyDesc = "takes a bit of solace from $his new hope in $his nickname that $he will be kept in good shape and not have to worry about $his pregnancy draining $him, but also a bit of fear from $his suspicion that $he'll remain this way until $he's out of eggs.">>
-	<<set $notApplyDesc = "understands that $he is expected to obey, work, and fuck just like any of your other slaves, regardless of how big $his pregnancy is.">>
+	<<set _nickname = either("'Baby Factory'", "'Bakery'", "'Bloated'", "'Breeder'", "'Broodmother'", "'Factory'", "'Mother'", "'Naedoko'", "'Nursery'", "'Seeded'", "'Stuffed'")>>
+	<<set _situationDesc = "is a Broodmother. $His belly is enormous, unavoidable evidence that $his life has been dedicated to carrying children. $His taut belly is stuffed with $his brood and barely gets smaller with every child born from $him.">>
+	<<set _applyDesc = "takes a bit of solace from $his new hope in $his nickname that $he will be kept in good shape and not have to worry about $his pregnancy draining $him, but also a bit of fear from $his suspicion that $he'll remain this way until $he's out of eggs.">>
+	<<set _notApplyDesc = "understands that $he is expected to obey, work, and fuck just like any of your other slaves, regardless of how big $his pregnancy is.">>
 
 <<case "hyperbroodmother">>
-	<<set $nickname = either("'Baby Factory'", "'Bakery'", "'Bloated'", "'Breeder'", "'Broodmother'", "'Bursting'", "'Factory'", "'Hyperbroodmother'", "'Mother'", "'Naedoko'", "'Nursery'", "'Seedbed'", "'Seeded'", "'Stuffed'", "'Tentacle Raped'")>>
-	<<set $situationDesc = "is a Broodmother. $His belly is enormous, unavoidable evidence that $his life has been dedicated to carrying children. $His taut belly constantly bulges and squirms from $his brood writhing within $him and it is a very real possibility that $he may pop.">>
-	<<set $applyDesc = "takes a bit of solace from $his new hope in $his nickname that $he will be kept in good shape and not have to worry about $his pregnancy draining $him, but also a bit of fear from $his suspicion that $he'll remain this way until $he dies or $his body is used up.">>
-	<<set $notApplyDesc = "understands that $he is expected to obey, work, and fuck just like any of your other slaves, regardless of how big $his pregnancy is.">>
+	<<set _nickname = either("'Baby Factory'", "'Bakery'", "'Bloated'", "'Breeder'", "'Broodmother'", "'Bursting'", "'Factory'", "'Hyperbroodmother'", "'Mother'", "'Naedoko'", "'Nursery'", "'Seedbed'", "'Seeded'", "'Stuffed'", "'Tentacle Raped'")>>
+	<<set _situationDesc = "is a Broodmother. $His belly is enormous, unavoidable evidence that $his life has been dedicated to carrying children. $His taut belly constantly bulges and squirms from $his brood writhing within $him and it is a very real possibility that $he may pop.">>
+	<<set _applyDesc = "takes a bit of solace from $his new hope in $his nickname that $he will be kept in good shape and not have to worry about $his pregnancy draining $him, but also a bit of fear from $his suspicion that $he'll remain this way until $he dies or $his body is used up.">>
+	<<set _notApplyDesc = "understands that $he is expected to obey, work, and fuck just like any of your other slaves, regardless of how big $his pregnancy is.">>
 
 <<case "hyperpreg">>
-	<<set $nickname = either("'Balloon'", "'Breeder'", "'Breeding Bitch'", "'Breeding Cow'", "'Breeding Mare'", "'Breeding Sow'", "'Breeding Stock'", "'Broodmother'", "'Bulgey'", "'Bulging'", "'Bursting'", "'Clown Car'", "'Expecting'", "'Fertile'", "'Hyperbreeder'", "'Hyperfertile'", "'Hyperpreg'", "'Impregnated'", "'Knocked Up'", "'Mare'", "'Megapreg'", "'Mommy'", "'Mother'", "'Ninpuchan'", "'Preg'", "'Preggers'", "'Squirming'", "'Squirmy'", "'Stuffed'", "'Waterslide'")>>
-	<<set $situationDesc = "is a breeding slave. $His belly is huge, unavoidable evidence that $he's very pregnant. $His taut belly constantly bulges and squirms from $his brood writhing within $him and it is a very real possibility that $he may pop.">>
-	<<set $applyDesc = "takes a bit of solace from $his new hope at $his nickname that $he will be kept in good shape and not have to worry about the size of $his pregnancy, and a bit of fear from $his suspicion that producing babies is $his whole future.">>
-	<<set $notApplyDesc = "understands that $he is expected to obey, work, and fuck just like any of your other slaves, regardless of how big $his pregnancy is.">>
+	<<set _nickname = either("'Balloon'", "'Breeder'", "'Breeding Bitch'", "'Breeding Cow'", "'Breeding Mare'", "'Breeding Sow'", "'Breeding Stock'", "'Broodmother'", "'Bulgey'", "'Bulging'", "'Bursting'", "'Clown Car'", "'Expecting'", "'Fertile'", "'Hyperbreeder'", "'Hyperfertile'", "'Hyperpreg'", "'Impregnated'", "'Knocked Up'", "'Mare'", "'Megapreg'", "'Mommy'", "'Mother'", "'Ninpuchan'", "'Preg'", "'Preggers'", "'Squirming'", "'Squirmy'", "'Stuffed'", "'Waterslide'")>>
+	<<set _situationDesc = "is a breeding slave. $His belly is huge, unavoidable evidence that $he's very pregnant. $His taut belly constantly bulges and squirms from $his brood writhing within $him and it is a very real possibility that $he may pop.">>
+	<<set _applyDesc = "takes a bit of solace from $his new hope at $his nickname that $he will be kept in good shape and not have to worry about the size of $his pregnancy, and a bit of fear from $his suspicion that producing babies is $his whole future.">>
+	<<set _notApplyDesc = "understands that $he is expected to obey, work, and fuck just like any of your other slaves, regardless of how big $his pregnancy is.">>
 
 <<case "babymaker">>
-	<<set $nickname = either("'Baby Daddy'", "'Baby Maker'", "'Babymaker'", "'Baker'", "'Belly Popper'", "'Breeder'", "'Breeding Boar'", "'Breeding Bull'", "'Breeding Stallion'", "'Breeding Stud'", "'Cannon'", "'Cocksmith'", "'Cum Cannon'", "'Daddy'", "'Father'", "'Fire Hose'", "'Impregnator'", "'Inflator'", "'Motherfucker'", "'Popper'", "'Potent'", "'Sirer'", "'Sperm Donor'", "'Virile'", "'Womb Filler'")>>
-	<<set $situationDesc = "is a terror to any fertile girl $he fucks. Horrifically potent, $he leaves a trail of pregnancies in $his wake. A great deal of the babies in your slaves might just be $hers.">>
-	<<set $applyDesc = "takes a bit of pride from $his new nickname and hopes you'll keep letting $him knock bitches up.">>
-	<<set $notApplyDesc = "understands that $he is a slave and it is not $his place to decide who gets pregnant and who doesn't.">>
+	<<set _nickname = either("'Baby Daddy'", "'Baby Maker'", "'Babymaker'", "'Baker'", "'Belly Popper'", "'Breeder'", "'Breeding Boar'", "'Breeding Bull'", "'Breeding Stallion'", "'Breeding Stud'", "'Cannon'", "'Cocksmith'", "'Cum Cannon'", "'Daddy'", "'Father'", "'Fire Hose'", "'Impregnator'", "'Inflator'", "'Motherfucker'", "'Popper'", "'Potent'", "'Sirer'", "'Sperm Donor'", "'Virile'", "'Womb Filler'")>>
+	<<set _situationDesc = "is a terror to any fertile girl $he fucks. Horrifically potent, $he leaves a trail of pregnancies in $his wake. A great deal of the babies in your slaves might just be $hers.">>
+	<<set _applyDesc = "takes a bit of pride from $his new nickname and hopes you'll keep letting $him knock bitches up.">>
+	<<set _notApplyDesc = "understands that $he is a slave and it is not $his place to decide who gets pregnant and who doesn't.">>
 
 <<case "fertilityGoddess">>
 	<<switch $activeSlave.nationality>>
 	<<case "Ancient Chinese Revivalist" "Chinese">>
-		<<set $nickname = either("'Jiutian Xuannü'")>>
+		<<set _nickname = either("'Jiutian Xuannü'")>>
 	<<case "Ancient Egyptian Revivalist" "Egyptian">>
-		<<set $nickname = either("'Bastet'", "'Hathor'", "'Heqet'", "'Isis'", "'Meskhenet'", "'Min'", "'Qetesh'", "'Taweret'", "'Tefnut'")>>
+		<<set _nickname = either("'Bastet'", "'Hathor'", "'Heqet'", "'Isis'", "'Meskhenet'", "'Min'", "'Qetesh'", "'Taweret'", "'Tefnut'")>>
 	<<case "Arabian Revivalist">>
-		<<set $nickname = either("'Al-Lat'", "'Al-Uzza'")>>
+		<<set _nickname = either("'Al-Lat'", "'Al-Uzza'")>>
 	<<case "Armenian">>
-		<<set $nickname = either("'Anahit'")>>
+		<<set _nickname = either("'Anahit'")>>
 	<<case "Aztec Revivalist">>
-		<<set $nickname = either("'Xochiquetzal'")>>
+		<<set _nickname = either("'Xochiquetzal'")>>
 	<<case "Cambodian" "Laotian" "Vietnamese">>
-		<<set $nickname = either("'Sowathara'")>>
+		<<set _nickname = either("'Sowathara'")>>
 	<<case "Edo Revivalist" "Japanese">>
-		<<set $nickname = either("'Inari Ōkami'", "'Kisshōten'")>>
+		<<set _nickname = either("'Inari Ōkami'", "'Kisshōten'")>>
 	<<case "Estonian" "Finnish">>
-		<<set $nickname = either("'Rauni'")>>
+		<<set _nickname = either("'Rauni'")>>
 	<<case "Ghanan">>
-		<<set $nickname = either("'Asase Ya'")>>
+		<<set _nickname = either("'Asase Ya'")>>
 	<<case "Indian">>
-		<<set $nickname = either("'Aditi'", "'Bhūmi'", "'Manasa'", "'Parvati'", "'Sinivali'")>>
+		<<set _nickname = either("'Aditi'", "'Bhūmi'", "'Manasa'", "'Parvati'", "'Sinivali'")>>
 	<<case "Indonesian">>
-		<<set $nickname = either("'Dewi Sri'")>>
+		<<set _nickname = either("'Dewi Sri'")>>
 	<<case "Irish">>
-		<<set $nickname = either("'Brigid'")>>
+		<<set _nickname = either("'Brigid'")>>
 	<<case "Latvian" "Lithuanian">>
-		<<set $nickname = either("'Laima'", "'SaulÄ—'")>>
+		<<set _nickname = either("'Laima'", "'SaulÄ—'")>>
 	<<case "Nigerian">>
-		<<set $nickname = either("'Ala'")>>
+		<<set _nickname = either("'Ala'")>>
 	<<case "Roman Revivalist">>
-		<<set $nickname = either("'Epona'", "'Fecunditas'", "'Terra'", "'Venus'")>>
+		<<set _nickname = either("'Epona'", "'Fecunditas'", "'Terra'", "'Venus'")>>
 	<<default>>
 		<<if $activeSlave.race == "white">>
-			<<set $nickname = either("'Aphrodite'", "'Ceres'", "'Demeter'", "'Freyja'", "'Gaia'", "'Venus'")>>
+			<<set _nickname = either("'Aphrodite'", "'Ceres'", "'Demeter'", "'Freyja'", "'Gaia'", "'Venus'")>>
 		<<elseif $activeSlave.race == "pacific islander">>
-			<<set $nickname = either("'Haumea'", "'Nuakea'")>>
+			<<set _nickname = either("'Haumea'", "'Nuakea'")>>
 		<<elseif $activeSlave.race == "amerindian">>
-			<<set $nickname = either("'Atahensic'", "'Hanhepi Wi'")>>
+			<<set _nickname = either("'Atahensic'", "'Hanhepi Wi'")>>
 		<<elseif $activeSlave.race == "black">>
-			<<set $nickname = either("'Ala'", "'Asase Ya'")>>
+			<<set _nickname = either("'Ala'", "'Asase Ya'")>>
 		<<else>>
-			<<set $nickname = either("'Gaia'", "'Venus'")>>
+			<<set _nickname = either("'Gaia'", "'Venus'")>>
 		<</if>>
 	<</switch>>
-	<<set $situationDesc = "is the spitting image of a fertility idol. With $his wide hips, heavy bosom and fecund belly, $he lives up to the title.">>
-	<<set $applyDesc = "takes pride in $his radiant form and hopes that $he'll be treated as a goddess for possessing it.">>
-	<<set $notApplyDesc = "accepts that $his motherly curves are just the mark of a sex slave and not a goddess.">>
+	<<set _situationDesc = "is the spitting image of a fertility idol. With $his wide hips, heavy bosom and fecund belly, $he lives up to the title.">>
+	<<set _applyDesc = "takes pride in $his radiant form and hopes that $he'll be treated as a goddess for possessing it.">>
+	<<set _notApplyDesc = "accepts that $his motherly curves are just the mark of a sex slave and not a goddess.">>
 
 <<case "superSquirter">>
-	<<set $nickname = either("'Baby'", "'Bedwetter'", "'Deluge'", "'Flood Warning'", "'Fountain'", "'Geyser'", "'Girlcum'", "'Gusher'", "'Needs Diapers'", "'Panty Wetter'", "'Squirter'", "'Super Soaker'", "'Super Squirter'", "'Swim-Ready'", "'Water Park'", "'Wet'")>>
-	<<set $situationDesc = "completely soaks $himself and $his partners whenever $he cums. Every orgasm from $him unleashes a waterfall of girlcum from $his pussy.">>
-	<<set $applyDesc = "takes pride in the amount of girlcum $he makes, even though it looks like $he peed $himself when $he cums with $his clothes on.">>
-	<<set $notApplyDesc = "understands that $he must learn to control $himself and stop soaking $his partners, clothes and bed.">>
+	<<set _nickname = either("'Baby'", "'Bedwetter'", "'Deluge'", "'Flood Warning'", "'Fountain'", "'Geyser'", "'Girlcum'", "'Gusher'", "'Needs Diapers'", "'Panty Wetter'", "'Squirter'", "'Super Soaker'", "'Super Squirter'", "'Swim-Ready'", "'Water Park'", "'Wet'")>>
+	<<set _situationDesc = "completely soaks $himself and $his partners whenever $he cums. Every orgasm from $him unleashes a waterfall of girlcum from $his pussy.">>
+	<<set _applyDesc = "takes pride in the amount of girlcum $he makes, even though it looks like $he peed $himself when $he cums with $his clothes on.">>
+	<<set _notApplyDesc = "understands that $he must learn to control $himself and stop soaking $his partners, clothes and bed.">>
 
 <<case "labia">>
-	<<set $nickname = either("'Beefy'", "'Blooming'", "'Curtains'", "'Fanny Flaps'", "'Flaps'", "'Flower'", "'Folds'", "'Labes'", "'Labia'", "'Lips'", "'Lower Lips'", "'Meatflaps'", "'Petals'", "'Pussylips'", "'Roast Beef'", "'Roastie'", "'Vulva'", "'Wizard Sleeve'")>>
-	<<set $situationDesc = "has pretty pussylips, larger than most girls'. When $he's aroused they announce $his state to the whole world, becoming engorged with lust. Other slaves can't help but notice, and mock $his uniqueness down there.">>
-	<<set $applyDesc = "really starts to see the appearance of $his pussy as a trademark. $He's prouder of it than $he was before, and $he enjoys sex a bit more too, really appreciating it when $he gets to feel another slave gently nibble $his lovely folds.">>
-	<<set $notApplyDesc = "accepts that the most important part of $his vagina is the warm, wet interior, not the generously endowed exterior.">>
+	<<set _nickname = either("'Beefy'", "'Blooming'", "'Curtains'", "'Fanny Flaps'", "'Flaps'", "'Flower'", "'Folds'", "'Labes'", "'Labia'", "'Lips'", "'Lower Lips'", "'Meatflaps'", "'Petals'", "'Pussylips'", "'Roast Beef'", "'Roastie'", "'Vulva'", "'Wizard Sleeve'")>>
+	<<set _situationDesc = "has pretty pussylips, larger than most girls'. When $he's aroused they announce $his state to the whole world, becoming engorged with lust. Other slaves can't help but notice, and mock $his uniqueness down there.">>
+	<<set _applyDesc = "really starts to see the appearance of $his pussy as a trademark. $He's prouder of it than $he was before, and $he enjoys sex a bit more too, really appreciating it when $he gets to feel another slave gently nibble $his lovely folds.">>
+	<<set _notApplyDesc = "accepts that the most important part of $his vagina is the warm, wet interior, not the generously endowed exterior.">>
 
 <<case "old">>
-	<<set $nickname = either("'Aged'", "'Auntie'", "'Big Sis'", "'Cougar'", "'Cradle Robber'", "'Jukusei'", "'Mama'", "'Mature'", "'MILF'", "'Mom'", "'Momma'", "'Mommy'", "'Mother'", "'Oba-san'", "'Okā-san'", "'Old'", "'Onē-san'", "'Seasoned'")>>
-	<<set $situationDesc = "is older than the average Free Cities slave. It has its downsides; $he's worth less at sale and $his earning potential as a whore is lower. But, on the other hand, good experience is irreplaceable, and in your experience all slaves feel remarkably similar inside, regardless of age. Nevertheless, some younger slaves resent $him.">>
-	<<set $applyDesc = "understands that far from being a mockery, your sanction has turned an intended insult into a reference to the advantages of $his years.">>
-	<<set $notApplyDesc = "understands that $he must do $his best to fuck like the teenager $he isn't.">>
+	<<set _nickname = either("'Aged'", "'Auntie'", "'Big Sis'", "'Cougar'", "'Cradle Robber'", "'Jukusei'", "'Mama'", "'Mature'", "'MILF'", "'Mom'", "'Momma'", "'Mommy'", "'Mother'", "'Oba-san'", "'Okā-san'", "'Old'", "'Onē-san'", "'Seasoned'")>>
+	<<set _situationDesc = "is older than the average Free Cities slave. It has its downsides; $he's worth less at sale and $his earning potential as a whore is lower. But, on the other hand, good experience is irreplaceable, and in your experience all slaves feel remarkably similar inside, regardless of age. Nevertheless, some younger slaves resent $him.">>
+	<<set _applyDesc = "understands that far from being a mockery, your sanction has turned an intended insult into a reference to the advantages of $his years.">>
+	<<set _notApplyDesc = "understands that $he must do $his best to fuck like the teenager $he isn't.">>
 
 <<case "reallyold">>
-	<<set $nickname = either("'Aged'", "'Ancient'", "'Elder'", "'Elderly'", "'Generation X'", "'Geriatric'", "'GILF'", "'GMILF'", "'Grandma'", "'Grandmother'", "'Granny'", "'Nanna'", "'Obā-chan'", "'Old'", "'Oldie'", "'Really Old'", "'Senior Citizen'", "'Senior'")>>
-	<<set $situationDesc = "is old. Really old. Old enough to be a grandmother. This, naturally, makes $him one of the most experienced sluts in the arcology, a desirable quality in and of itself. Many of the younger slaves mock $him relentlessly for $his age.">>
-	<<set $applyDesc = "accepts $his new nickname with pride. This acknowledgment of $his age has $him ready to show these young sluts a thing or two.">>
-	<<set $notApplyDesc = "understands that $he must do $his best to fuck like the teenager $he once was.">>
+	<<set _nickname = either("'Aged'", "'Ancient'", "'Elder'", "'Elderly'", "'Generation X'", "'Geriatric'", "'GILF'", "'GMILF'", "'Grandma'", "'Grandmother'", "'Granny'", "'Nanna'", "'Obā-chan'", "'Old'", "'Oldie'", "'Really Old'", "'Senior Citizen'", "'Senior'")>>
+	<<set _situationDesc = "is old. Really old. Old enough to be a grandmother. This, naturally, makes $him one of the most experienced sluts in the arcology, a desirable quality in and of itself. Many of the younger slaves mock $him relentlessly for $his age.">>
+	<<set _applyDesc = "accepts $his new nickname with pride. This acknowledgment of $his age has $him ready to show these young sluts a thing or two.">>
+	<<set _notApplyDesc = "understands that $he must do $his best to fuck like the teenager $he once was.">>
 
 <<case "young">>
-	<<set $nickname = either("'Baby'", "'Babycakes'", "'Candy Van'", "'Candydoll'", "'Imouto'", "'Jailbait'", "'Juliet'", "'Kiddie'", "'Kiddo'", "'Loli'", "'Lolita'", "'Nymphet'", "'Party Van'", "'Pedobait'", "'Pocket Pussy'", "'POMF'", "'Precocious'", "'PTHC'", "'Underage'", "'Young'", "'Youngling'")>>
+	<<set _nickname = either("'Baby'", "'Babycakes'", "'Candy Van'", "'Candydoll'", "'Imouto'", "'Jailbait'", "'Juliet'", "'Kiddie'", "'Kiddo'", "'Loli'", "'Lolita'", "'Nymphet'", "'Party Van'", "'Pedobait'", "'Pocket Pussy'", "'POMF'", "'Precocious'", "'PTHC'", "'Underage'", "'Young'", "'Youngling'")>>
 	<<if random(1, 1500) <= 100>>
 		<<if ($activeSlave.physicalAge < 13)>>
-			<<set $nickname = either("'Preteen'")>>
+			<<set _nickname = either("'Preteen'")>>
 		<<elseif ($activeSlave.physicalAge >= 16) && ($activeSlave.physicalAge < 17)>>
-			<<set $nickname = either("'Sweet Sixteen'")>>
+			<<set _nickname = either("'Sweet Sixteen'")>>
 		<<elseif ($activeSlave.physicalAge >= 18) && ($activeSlave.physicalAge < 19)>>
 			/% Not currently possible but we might change later. %/
-			<<set $nickname = either("'Barely Legal'")>>
+			<<set _nickname = either("'Barely Legal'")>>
 		<</if>>
 	<</if>>
-	<<set $situationDesc = "is yet underage by old world standards, and some older slaves do not let $him forget that.">>
-	<<set $applyDesc = "understands that far from being a mockery, your sanction has turned an intended insult into a reference to the appeal of $his years.">>
-	<<set $notApplyDesc = "understands that despite $his young age $he must do $his best to fuck like the most veteran of whores.">>
+	<<set _situationDesc = "is yet underage by old world standards, and some older slaves do not let $him forget that.">>
+	<<set _applyDesc = "understands that far from being a mockery, your sanction has turned an intended insult into a reference to the appeal of $his years.">>
+	<<set _notApplyDesc = "understands that despite $his young age $he must do $his best to fuck like the most veteran of whores.">>
 
 <<case "trans">>
-	<<set $nickname = either("'Crying Game'", "'Deception'", "'Drag'", "'Gender Bender'", "'Girly'", "'Kathoey'", "'Ladyboy'", "'Legs Crossed'", "'Missie'", "'Queen'", "'Shemale'", "'Surprise'", "'T-Girl'", "'Tranny'", "'Trans'", "'Transgender'", "'Trap'", "'Trick'")>>
-	<<set $situationDesc = "might have looked like a sissy or a trap at some point, but $he no longer does. $He has the curves and the face to be mistaken for a natural woman if $he wears clothes that conceal $his cock, which is an ability with all sorts of interesting uses. Mockery always fixes on what's unusual, of course, and some of your other slaves even envy $his equipment.">>
-	<<set $applyDesc = "believes that you approve of $him as $he is now, and that $he can treat $his dick as an asset.">>
-	<<set $notApplyDesc = "understands that $he must do $his best to fuck like the natural girl $he isn't.">>
+	<<set _nickname = either("'Crying Game'", "'Deception'", "'Drag'", "'Gender Bender'", "'Girly'", "'Kathoey'", "'Ladyboy'", "'Legs Crossed'", "'Missie'", "'Queen'", "'Shemale'", "'Surprise'", "'T-Girl'", "'Tranny'", "'Trans'", "'Transgender'", "'Trap'", "'Trick'")>>
+	<<set _situationDesc = "might have looked like a sissy or a trap at some point, but $he no longer does. $He has the curves and the face to be mistaken for a natural woman if $he wears clothes that conceal $his cock, which is an ability with all sorts of interesting uses. Mockery always fixes on what's unusual, of course, and some of your other slaves even envy $his equipment.">>
+	<<set _applyDesc = "believes that you approve of $him as $he is now, and that $he can treat $his dick as an asset.">>
+	<<set _notApplyDesc = "understands that $he must do $his best to fuck like the natural girl $he isn't.">>
 
 <<case "amp">>
-	<<set $nickname = either("'Amp'", "'Amputee'", "'Cocksock'", "'Cripple'", "'Dickholster'", "'Fifi'", "'Fleshlight'", "'Fucknugget'", "'Fucktoy'", "'Limbless'", "'Nubs'", "'Onahole'", "'Pillow Pet'", "'Pocket Pussy'", "'Quadruple'", "'Sex Toy'", "'Stubs'", "'Stumps'", "'Stumpy'", "'Torso'")>>
-	<<set $situationDesc = "is a fun little fucktoy, a limbless torso with nice wet holes than can be used regardless of $his feelings. Giving a poor quadruple amputee a nickname might seem like stooping to wanton cruelty, but other slaves are willing to call $him anything to take their minds off their own status.">>
-	<<set $applyDesc = "takes a tiny bit of solace from $his nickname, hoping that by accepting it, you were expressing an enjoyment of $his attenuated body.">>
-	<<set $notApplyDesc = "understands that $he would be a sex toy even if $he still had arms and legs.">>
+	<<set _nickname = either("'Amp'", "'Amputee'", "'Cocksock'", "'Cripple'", "'Dickholster'", "'Fifi'", "'Fleshlight'", "'Fucknugget'", "'Fucktoy'", "'Limbless'", "'Nubs'", "'Onahole'", "'Pillow Pet'", "'Pocket Pussy'", "'Quadruple'", "'Sex Toy'", "'Stubs'", "'Stumps'", "'Stumpy'", "'Torso'")>>
+	<<set _situationDesc = "is a fun little fucktoy, a limbless torso with nice wet holes than can be used regardless of $his feelings. Giving a poor quadruple amputee a nickname might seem like stooping to wanton cruelty, but other slaves are willing to call $him anything to take their minds off their own status.">>
+	<<set _applyDesc = "takes a tiny bit of solace from $his nickname, hoping that by accepting it, you were expressing an enjoyment of $his attenuated body.">>
+	<<set _notApplyDesc = "understands that $he would be a sex toy even if $he still had arms and legs.">>
 
 <<case "blind">>
-	<<set $nickname = either("'Amaurotic'", "'Batty'", "'Blind'", "'Blindfold'", "'Braille'", "'Cataracts'", "'Crash'", "'Darkness'", "'Deadeye'", "'Eyeless'", "'Groping'", "'Masturbator'", "'No-Sight'", "'Oracle'", "'Sightless'", "'Stares'", "'Sunglasses'", "'Visionless'", "'White Cane'")>>
-	<<set $situationDesc = "is blind. $His dull eyes reveal $his condition. $He has to feel $his way between jobs, and is at the mercy of everyone.">>
-	<<set $applyDesc = "accepts that $his disability defines $him. $He keeps $his eyes wide open, no longer fearing what others say about them.">>
-	<<set $notApplyDesc = "understands that $he is expected to obey, work, and fuck just like any of your other slaves, regardless of $his eyesight.">>
+	<<set _nickname = either("'Amaurotic'", "'Batty'", "'Blind'", "'Blindfold'", "'Braille'", "'Cataracts'", "'Crash'", "'Darkness'", "'Deadeye'", "'Eyeless'", "'Groping'", "'Masturbator'", "'No-Sight'", "'Oracle'", "'Sightless'", "'Stares'", "'Sunglasses'", "'Visionless'", "'White Cane'")>>
+	<<set _situationDesc = "is blind. $His dull eyes reveal $his condition. $He has to feel $his way between jobs, and is at the mercy of everyone.">>
+	<<set _applyDesc = "accepts that $his disability defines $him. $He keeps $his eyes wide open, no longer fearing what others say about them.">>
+	<<set _notApplyDesc = "understands that $he is expected to obey, work, and fuck just like any of your other slaves, regardless of $his eyesight.">>
 
 <<case "deaf">>
-	<<set $nickname = either("'Adder'", "'Cochlear'", "'Deaf Ears'", "'Deaf'", "'Deafened'", "'Decibel'", "'Ear Plugs'", "'Earless'", "'Earmuffs'", "'Hearing Aid'", "'Hearing Impaired'", "'Lip Reader'", "'Post'", "'Sign Language'", "'Stone Deaf'", "'Tinnitus'", "'Unhearing'")>>
-	<<set $situationDesc = "is deaf. $He is on constant alert for the commands and orders $he cannot hear, and is at the mercy of everyone.">>
-	<<set $applyDesc = "accepts that $his disability defines $him. $He takes pride in knowing that $he's being insulted on the fact that $he can't hear any insults.">>
-	<<set $notApplyDesc = "understands that $he is expected to obey, work, and fuck just like any of your other slaves, regardless of $his hearing.">>
+	<<set _nickname = either("'Adder'", "'Cochlear'", "'Deaf Ears'", "'Deaf'", "'Deafened'", "'Decibel'", "'Ear Plugs'", "'Earless'", "'Earmuffs'", "'Hearing Aid'", "'Hearing Impaired'", "'Lip Reader'", "'Post'", "'Sign Language'", "'Stone Deaf'", "'Tinnitus'", "'Unhearing'")>>
+	<<set _situationDesc = "is deaf. $He is on constant alert for the commands and orders $he cannot hear, and is at the mercy of everyone.">>
+	<<set _applyDesc = "accepts that $his disability defines $him. $He takes pride in knowing that $he's being insulted on the fact that $he can't hear any insults.">>
+	<<set _notApplyDesc = "understands that $he is expected to obey, work, and fuck just like any of your other slaves, regardless of $his hearing.">>
 
 <<case "mute">>
-	<<set $nickname = either("'Aphasic'", "'Aphonic'", "'Dumb'", "'Gagged'", "'Muffled'", "'Mum'", "'Mute'", "'Mutie'", "'Quiet'", "'Sign Language'", "'Silenced'", "'Silent'", "'Soundless'", "'Speechless'", "'Tight-Lipped'", "'Tongue-Tied'", "'Tongueless'", "'Voiceless'", "'Wordless'", "'Zipped Lips'")>>
-	<<set $situationDesc = "is mute. $He poorly attempts to communicate with often panicky gesturing, and is at the mercy of everyone.">>
-	<<set $applyDesc = "accepts that $his disability defines $him. $He gestures with much less panic, now that $his communication problems are common knowledge.">>
-	<<set $notApplyDesc = "understands that $he is expected to obey, work, and fuck just like any of your other slaves, regardless of $his voice.">>
+	<<set _nickname = either("'Aphasic'", "'Aphonic'", "'Dumb'", "'Gagged'", "'Muffled'", "'Mum'", "'Mute'", "'Mutie'", "'Quiet'", "'Sign Language'", "'Silenced'", "'Silent'", "'Soundless'", "'Speechless'", "'Tight-Lipped'", "'Tongue-Tied'", "'Tongueless'", "'Voiceless'", "'Wordless'", "'Zipped Lips'")>>
+	<<set _situationDesc = "is mute. $He poorly attempts to communicate with often panicky gesturing, and is at the mercy of everyone.">>
+	<<set _applyDesc = "accepts that $his disability defines $him. $He gestures with much less panic, now that $his communication problems are common knowledge.">>
+	<<set _notApplyDesc = "understands that $he is expected to obey, work, and fuck just like any of your other slaves, regardless of $his voice.">>
 
 <<case "preg">>
-	<<set $nickname = either("'Breeder'", "'Breeding Bitch'", "'Breeding Cow'", "'Breeding Mare'", "'Breeding Sow'", "'Breeding Stock'", "'Broodmother'", "'Expecting'", "'Fertile'", "'Impregnated'", "'Knocked Up'", "'Mare'", "'Mommy'", "'Mother'", "'Ninpuchan'", "'Preg'", "'Preggers'")>>
-	<<set $situationDesc = "is a breeding slave. $His belly seems to grow daily, unavoidable evidence that $he's pregnant. Most men prefer slaves without pregnant stomachs, but those that enjoy them adore $him. $He occupies a strange place in slave culture, desired and abhorred, hopeful and fearful.">>
-	<<set $applyDesc = "takes a bit of solace from $his new hope at $his nickname that $he will be allowed to complete $his pregnancy, and a bit of fear from $his suspicion that producing babies is $his whole future.">>
-	<<set $notApplyDesc = "understands that $he is expected to obey, work, and fuck just like any of your other slaves, regardless of $his pregnancy.">>
+	<<set _nickname = either("'Breeder'", "'Breeding Bitch'", "'Breeding Cow'", "'Breeding Mare'", "'Breeding Sow'", "'Breeding Stock'", "'Broodmother'", "'Expecting'", "'Fertile'", "'Impregnated'", "'Knocked Up'", "'Mare'", "'Mommy'", "'Mother'", "'Ninpuchan'", "'Preg'", "'Preggers'")>>
+	<<set _situationDesc = "is a breeding slave. $His belly seems to grow daily, unavoidable evidence that $he's pregnant. Most men prefer slaves without pregnant stomachs, but those that enjoy them adore $him. $He occupies a strange place in slave culture, desired and abhorred, hopeful and fearful.">>
+	<<set _applyDesc = "takes a bit of solace from $his new hope at $his nickname that $he will be allowed to complete $his pregnancy, and a bit of fear from $his suspicion that producing babies is $his whole future.">>
+	<<set _notApplyDesc = "understands that $he is expected to obey, work, and fuck just like any of your other slaves, regardless of $his pregnancy.">>
 
 <<case "hung">>
-	<<set $nickname = either("'Anaconda'", "'Biggus Dickus'", "'Bitchbreaker'", "'Dangle'", "'Dolichophallic'", "'Horse'", "'Hung'", "'Long Dick Johnson'", "'Long Dong'", "'Long'", "'Macropenis'", "'Magnum Dong'", "'Maypole'", "'Python'", "'Shaft'", "'Superpenis'", "'Swingin' Dick'", "'Tentpole'", "'Third Arm'", "'Third Leg'", "'Tripod'", "'Truncheon'", "'Trunk'")>>
-	<<set $situationDesc = "is a Free Cities sex slave, which makes $him a girl. The pretension is hard to maintain at times, however, as $his massive member swings around, gets in the way, sticks out of clothing, and blows huge loads. Half the fun of using $his butt is making $his absurd dick slap around. It's an obvious target for a nickname, especially since more than one slave has personal experience with how $he feels inside them.">>
-	<<set $applyDesc = "enjoys being nicknamed for $his dick. $He's special, $his dick is special, and now that $he's been nicknamed for it, $he's confident $he and $his dick will be allowed to go on being special.">>
-	<<set $notApplyDesc = "realizes that $he's just a slave girl behind, no matter what's dangling in front, and does $his best to take it like one.">>
+	<<set _nickname = either("'Anaconda'", "'Biggus Dickus'", "'Bitchbreaker'", "'Dangle'", "'Dolichophallic'", "'Horse'", "'Hung'", "'Long Dick Johnson'", "'Long Dong'", "'Long'", "'Macropenis'", "'Magnum Dong'", "'Maypole'", "'Python'", "'Shaft'", "'Superpenis'", "'Swingin' Dick'", "'Tentpole'", "'Third Arm'", "'Third Leg'", "'Tripod'", "'Truncheon'", "'Trunk'")>>
+	<<set _situationDesc = "is a Free Cities sex slave, which makes $him a girl. The pretension is hard to maintain at times, however, as $his massive member swings around, gets in the way, sticks out of clothing, and blows huge loads. Half the fun of using $his butt is making $his absurd dick slap around. It's an obvious target for a nickname, especially since more than one slave has personal experience with how $he feels inside them.">>
+	<<set _applyDesc = "enjoys being nicknamed for $his dick. $He's special, $his dick is special, and now that $he's been nicknamed for it, $he's confident $he and $his dick will be allowed to go on being special.">>
+	<<set _notApplyDesc = "realizes that $he's just a slave girl behind, no matter what's dangling in front, and does $his best to take it like one.">>
 
 <<case "gelding">>
-	<<set $nickname = either("'Altered'", "'Ball-Less'", "'Castrated'", "'Clipped'", "'Cut'", "'Desexed'", "'Emasculate'", "'Empty'", "'Eunuch'", "'Fixed'", "'Gelded'", "'Gelding'", "'Limp'", "'Neutered'", "'Nipped'", "'Nutless'", "'Sackless'", "'Soft'", "'Spayed'", "'Sterile'", "'Sterilized'", "'Unman'")>>
-	<<set $situationDesc = "is a Free Cities sex slave, which makes $him a girl. This is an easier thing for $him to accept since $his testicles were removed. The lack of testosterone makes $him docile and more accepting of $his proper role as a receptacle for hard dick. Naturally, other slaves have taken notice.">>
-	<<set $applyDesc = "naturally viewed $his own castration as a subject of revulsion and horror. Now, though, $he begins to see $himself as filling a right and proper role as a gelded slave.">>
-	<<set $notApplyDesc = "realizes that the process of turning $him from what $he was into what $he is did not make $him special.">>
+	<<set _nickname = either("'Altered'", "'Ball-Less'", "'Castrated'", "'Clipped'", "'Cut'", "'Desexed'", "'Emasculate'", "'Empty'", "'Eunuch'", "'Fixed'", "'Gelded'", "'Gelding'", "'Limp'", "'Neutered'", "'Nipped'", "'Nutless'", "'Sackless'", "'Soft'", "'Spayed'", "'Sterile'", "'Sterilized'", "'Unman'")>>
+	<<set _situationDesc = "is a Free Cities sex slave, which makes $him a girl. This is an easier thing for $him to accept since $his testicles were removed. The lack of testosterone makes $him docile and more accepting of $his proper role as a receptacle for hard dick. Naturally, other slaves have taken notice.">>
+	<<set _applyDesc = "naturally viewed $his own castration as a subject of revulsion and horror. Now, though, $he begins to see $himself as filling a right and proper role as a gelded slave.">>
+	<<set _notApplyDesc = "realizes that the process of turning $him from what $he was into what $he is did not make $him special.">>
 
 <<case "short">>
-	<<set $nickname = either("'Cock Sock'", "'Compact'", "'Dwarf'", "'Fun Size'", "'Funsize'", "'Itsy Bitsy'", "'Micro'", "'Midget'", "'Mini'", "'Miniature'", "'Napoleon'", "'Petite'", "'Pint-Sized'", "'Pipsqueak'", "'Pocket Pussy'", "'Pocket-Sized'", "'Short'", "'Shortstack'", "'Shortstuff'", "'Shorty'", "'Shrimp'", "'Shrunk'", "'Small Fry'", "'Stumpy'", "'Stunted'", "'Tiny'", "'Undersized'", "'Waif'", "'Wee'")>>
-	<<set $situationDesc = "is fairly low to the ground. This makes $him a bit different, sexually; $he's better for several oral sex positions, but most standing positions turn into a game of how long $his partner can hold $him at the appropriate height.">>
-	<<set $applyDesc = "is a little proud that $his diminutive stature, once nothing but a source of embarrassment, is apparently significant to you.">>
-	<<set $notApplyDesc = "realizes that $he'll just have to reach higher to make up for $his height, since you don't consider it special.">>
+	<<set _nickname = either("'Cock Sock'", "'Compact'", "'Dwarf'", "'Fun Size'", "'Funsize'", "'Itsy Bitsy'", "'Micro'", "'Midget'", "'Mini'", "'Miniature'", "'Napoleon'", "'Petite'", "'Pint-Sized'", "'Pipsqueak'", "'Pocket Pussy'", "'Pocket-Sized'", "'Short'", "'Shortstack'", "'Shortstuff'", "'Shorty'", "'Shrimp'", "'Shrunk'", "'Small Fry'", "'Stumpy'", "'Stunted'", "'Tiny'", "'Undersized'", "'Waif'", "'Wee'")>>
+	<<set _situationDesc = "is fairly low to the ground. This makes $him a bit different, sexually; $he's better for several oral sex positions, but most standing positions turn into a game of how long $his partner can hold $him at the appropriate height.">>
+	<<set _applyDesc = "is a little proud that $his diminutive stature, once nothing but a source of embarrassment, is apparently significant to you.">>
+	<<set _notApplyDesc = "realizes that $he'll just have to reach higher to make up for $his height, since you don't consider it special.">>
 
 <<case "tall">>
-	<<set $nickname = either("'Alpine'", "'Amazon'", "'B-Baller'", "'Basketballer'", "'Beanpole'", "'Beanstalk'", "'Bigfoot'", "'Everest'", "'Giant'", "'Giantess'", "'Giraffe'", "'Jumbo'", "'Ladder'", "'Lofty'", "'Macro'", "'Mountain'", "'Redwood'", "'Skyscraper'", "'Slim'", "'Stilts'", "'Stretch'", "'Tall'", "'Top Shelf'", "'Top'", "'Tower'", "'Treetop'")>>
-	<<set $situationDesc = "is impressively tall for a $girl. This makes $him sexually convenient, since $his holes are at convenient cock height. $He spends many of $his sexual encounters bent slightly at the waist to allow $himself to be taken from behind.">>
-	<<set $applyDesc = "is quite proud of $his impressive height, even more so than before. $He resolves to tower over other slaves sexually as well as literally.">>
-	<<set $notApplyDesc = "realizes that being tall doesn't make $him special, and understands that it's $his holes that make $him, not how high they are.">>
+	<<set _nickname = either("'Alpine'", "'Amazon'", "'B-Baller'", "'Basketballer'", "'Beanpole'", "'Beanstalk'", "'Bigfoot'", "'Everest'", "'Giant'", "'Giantess'", "'Giraffe'", "'Jumbo'", "'Ladder'", "'Lofty'", "'Macro'", "'Mountain'", "'Redwood'", "'Skyscraper'", "'Slim'", "'Stilts'", "'Stretch'", "'Tall'", "'Top Shelf'", "'Top'", "'Tower'", "'Treetop'")>>
+	<<set _situationDesc = "is impressively tall for a $girl. This makes $him sexually convenient, since $his holes are at convenient cock height. $He spends many of $his sexual encounters bent slightly at the waist to allow $himself to be taken from behind.">>
+	<<set _applyDesc = "is quite proud of $his impressive height, even more so than before. $He resolves to tower over other slaves sexually as well as literally.">>
+	<<set _notApplyDesc = "realizes that being tall doesn't make $him special, and understands that it's $his holes that make $him, not how high they are.">>
 
 <<case "boobs">>
-	<<set $nickname = either("'Airbags'", "'Bazookas'", "'Boob'", "'Boobs'", "'Bosom'", "'Bouncing'", "'Bouncy'", "'Bristols'", "'Busty'", "'Buxom'", "'Charlies'", "'Chounyuu'", "'Funbags'", "'Hooters'", "'Jugs'", "'Knockers'", "'Macromastic'", "'Megaboobs'", "'Melons'", "'Norks'", "'Oppai'", "'Pillows'", "'Stacked'", "'Tatas'", "'Titties'", "'Titty'", "'Top Heavy'", "'Udders'")>>
-	<<set $situationDesc = "has large breasts. Pointing this out is about as observant as describing the sky as blue. When $he enters a room, they precede $him. When $he takes it doggy style, they prop $him up. Other slaves are envious of the attention $he gets, and happy they don't have to carry such burdens.">>
-	<<set $applyDesc = "was of course proud of $his huge breasts before this new nickname. Now, though, $he accepts them as a sort of trademark.">>
-	<<set $notApplyDesc = "accepts that having titanic tits does not make $him special, since what's important is $his holes, not $his boobs.">>
+	<<set _nickname = either("'Airbags'", "'Bazookas'", "'Boob'", "'Boobs'", "'Bosom'", "'Bouncing'", "'Bouncy'", "'Bristols'", "'Busty'", "'Buxom'", "'Charlies'", "'Chounyuu'", "'Funbags'", "'Hooters'", "'Jugs'", "'Knockers'", "'Macromastic'", "'Megaboobs'", "'Melons'", "'Norks'", "'Oppai'", "'Pillows'", "'Stacked'", "'Tatas'", "'Titties'", "'Titty'", "'Top Heavy'", "'Udders'")>>
+	<<set _situationDesc = "has large breasts. Pointing this out is about as observant as describing the sky as blue. When $he enters a room, they precede $him. When $he takes it doggy style, they prop $him up. Other slaves are envious of the attention $he gets, and happy they don't have to carry such burdens.">>
+	<<set _applyDesc = "was of course proud of $his huge breasts before this new nickname. Now, though, $he accepts them as a sort of trademark.">>
+	<<set _notApplyDesc = "accepts that having titanic tits does not make $him special, since what's important is $his holes, not $his boobs.">>
 
 <<case "butt">>
-	<<set $nickname = either("'Ass'", "'Backside'", "'Badonkadonk'", "'Big Ass'", "'Bootylicious'", "'Bottom'", "'Brazilian'", "'Bumtastic'", "'Bunda'", "'Buns'", "'Butt'", "'Buttocks'", "'Caboose'", "'Callipygian'", "'Derriere'", "'Glutes'", "'Heiny'", "'Jiggly'", "'Milkshake'", "'Moneymaker'", "'Rear End'", "'Rump'", "'Thunder Thighs'", "'Tuckus'", "'Tushy'", "'Wide Load'")>>
-	<<set $situationDesc = "has a large ass. Pointing this out is about as observant as describing the sky as blue. (Though impressive for other reasons, for $his sexual partners, since they sometimes have difficulty drawing breath for such remarks.) When $he enters a room, it follows $him. When $he takes it doggy style, it pads penetration to an almost inconvenient degree. Other slaves are envious of the attention $he gets, and happy they don't have to carry such burdens.">>
-	<<set $applyDesc = "was of course proud of $his huge ass before this new nickname. Now, though, $he accepts it as a sort of trademark.">>
-	<<set $notApplyDesc = "accepts that having a massive ass does not make $him special, since what's important is $his holes, not $his buttocks.">>
+	<<set _nickname = either("'Ass'", "'Backside'", "'Badonkadonk'", "'Big Ass'", "'Bootylicious'", "'Bottom'", "'Brazilian'", "'Bumtastic'", "'Bunda'", "'Buns'", "'Butt'", "'Buttocks'", "'Caboose'", "'Callipygian'", "'Derriere'", "'Glutes'", "'Heiny'", "'Jiggly'", "'Milkshake'", "'Moneymaker'", "'Rear End'", "'Rump'", "'Thunder Thighs'", "'Tuckus'", "'Tushy'", "'Wide Load'")>>
+	<<set _situationDesc = "has a large ass. Pointing this out is about as observant as describing the sky as blue. (Though impressive for other reasons, for $his sexual partners, since they sometimes have difficulty drawing breath for such remarks.) When $he enters a room, it follows $him. When $he takes it doggy style, it pads penetration to an almost inconvenient degree. Other slaves are envious of the attention $he gets, and happy they don't have to carry such burdens.">>
+	<<set _applyDesc = "was of course proud of $his huge ass before this new nickname. Now, though, $he accepts it as a sort of trademark.">>
+	<<set _notApplyDesc = "accepts that having a massive ass does not make $him special, since what's important is $his holes, not $his buttocks.">>
 
 <<case "virgin">>
-	<<set $nickname = either("'Abstinent'", "'Callow'", "'Celibate'", "'Chaste'", "'Chastity'", "'Cherry'", "'Clean'", "'Cloistered'", "'Doomed'", "'Flower'", "'Innocent'", "'Maiden'", "'Pristine'", "'Pucelle'", "'Pure'", "'Unbroken'", "'Unfucked'", "'Unicorn Bait'", "'Unspoilt'", "'Untouched'", "'Vestal'", "'Virgin'", "'Virginal'")>>
-	<<set $situationDesc = "has never had vanilla sex. This is not unusual in the Free Cities, since many slaveowners value and preserve virginity. Virgins form a separate class of sorts among slaves. Some of them even dislike their status, as having a virgin pussy can often result in a tired tongue or a sore butt.">>
-	<<set $applyDesc = "understands that it's $his fate to remain unspoiled a while longer, and redoubles $his efforts to do better with $his other parts.">>
-	<<set $notApplyDesc = "dreads and anticipates the day when $he'll lose $his pearl of great price and gain another way to please a man.">>
+	<<set _nickname = either("'Abstinent'", "'Callow'", "'Celibate'", "'Chaste'", "'Chastity'", "'Cherry'", "'Clean'", "'Cloistered'", "'Doomed'", "'Flower'", "'Innocent'", "'Maiden'", "'Pristine'", "'Pucelle'", "'Pure'", "'Unbroken'", "'Unfucked'", "'Unicorn Bait'", "'Unspoilt'", "'Untouched'", "'Vestal'", "'Virgin'", "'Virginal'")>>
+	<<set _situationDesc = "has never had vanilla sex. This is not unusual in the Free Cities, since many slaveowners value and preserve virginity. Virgins form a separate class of sorts among slaves. Some of them even dislike their status, as having a virgin pussy can often result in a tired tongue or a sore butt.">>
+	<<set _applyDesc = "understands that it's $his fate to remain unspoiled a while longer, and redoubles $his efforts to do better with $his other parts.">>
+	<<set _notApplyDesc = "dreads and anticipates the day when $he'll lose $his pearl of great price and gain another way to please a man.">>
 
 <<case "null">>
-	<<set $nickname = either("'Agender'", "'Androgynous'", "'Angelic'", "'Asexual'", "'Barbie Doll'", "'Censored'", "'Cherub'", "'Devoid'", "'Featureless'", "'Genderless'", "'Groinless'", "'Hole-Less'", "'Mannequin'", "'Mutilated'", "'Netherless'", "'Nondescript'", "'Null'", "'Sewn'", "'Sexless'", "'Smooth'", "'Soft Groin'", "'Two-Hole'", "'Uniform'", "'Unproductive'")>>
-	<<set $situationDesc = "has neither a penis nor a vagina; $he is a null, with nothing but soft skin on $his groin. Since $he is a Free Cities sex slave, that makes $him female, despite the androgyny of $his genitals. This sometimes makes $his life more difficult, as it only draws more attention to the availability of $his mouth or ass.">>
-	<<set $applyDesc = "finds some perverse pride in $his genital makeup, which defies traditional notions of gender.">>
-	<<set $notApplyDesc = "will try $his best to keep up with what's demanded of a sex slave, despite the annoyance of lacking genitals.">>
+	<<set _nickname = either("'Agender'", "'Androgynous'", "'Angelic'", "'Asexual'", "'Barbie Doll'", "'Censored'", "'Cherub'", "'Devoid'", "'Featureless'", "'Genderless'", "'Groinless'", "'Hole-Less'", "'Mannequin'", "'Mutilated'", "'Netherless'", "'Nondescript'", "'Null'", "'Sewn'", "'Sexless'", "'Smooth'", "'Soft Groin'", "'Two-Hole'", "'Uniform'", "'Unproductive'")>>
+	<<set _situationDesc = "has neither a penis nor a vagina; $he is a null, with nothing but soft skin on $his groin. Since $he is a Free Cities sex slave, that makes $him female, despite the androgyny of $his genitals. This sometimes makes $his life more difficult, as it only draws more attention to the availability of $his mouth or ass.">>
+	<<set _applyDesc = "finds some perverse pride in $his genital makeup, which defies traditional notions of gender.">>
+	<<set _notApplyDesc = "will try $his best to keep up with what's demanded of a sex slave, despite the annoyance of lacking genitals.">>
 <</switch>>
 
 <span id="artFrame">
@@ -1251,7 +1251,7 @@
 /* 000-250-006 */
 </span>
 
-<<EventNameLink>> $situationDesc You begin to overhear your other slaves refer to $him as @@.pink;$nickname $activeSlave.slaveName.@@
+<<EventNameLink>> _situationDesc You begin to overhear your other slaves refer to $him as @@.pink;_nickname $activeSlave.slaveName.@@
 
 <br><br>
 
@@ -1261,9 +1261,9 @@
 <<link "Encourage use of the nickname">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	Whatever $activeSlave.slaveName's feelings about being called $nickname were, $he knows they're moot <<if !canHear($activeSlave)>>when $he learns that you also<<else>>the first time $he hears you<</if>> refer to $him that way. @@.hotpink;$He has become more submissive to you.@@ $activeSlave.slaveName $applyDesc
+	Whatever $activeSlave.slaveName's feelings about being called _nickname were, $he knows they're moot <<if !canHear($activeSlave)>>when $he learns that you also<<else>>the first time $he hears you<</if>> refer to $him that way. @@.hotpink;$He has become more submissive to you.@@ $activeSlave.slaveName _applyDesc
 	<<set $activeSlave.devotion += 4>>
-	<<set $activeSlave.slaveName = ($nickname + " " + $activeSlave.slaveName)>>
+	<<set $activeSlave.slaveName = (_nickname + " " + $activeSlave.slaveName)>>
 	<</replace>>
 <</link>>
 <br>
@@ -1274,7 +1274,7 @@
 <br><<link "Put a stop to it">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	As soon as you make your will on the matter known, $activeSlave.slaveName is referred to as $activeSlave.slaveName again. $activeSlave.slaveName $notApplyDesc
+	As soon as you make your will on the matter known, $activeSlave.slaveName is referred to as $activeSlave.slaveName again. $activeSlave.slaveName _notApplyDesc
 	<</replace>>
 <</link>>
 <br><<link "No nicknames, now or ever">>
@@ -1286,4 +1286,4 @@
 <</link>>
 </span>
 
-<</if>> /* closes $qualifiedNicknames.length > 0 */
+<</if>> /* closes _qualifiedNicknames.length > 0 */
diff --git a/src/uncategorized/reputation.tw b/src/uncategorized/reputation.tw
index ed266a99b834b9c9235fb6d9ce22f54d1c95f654..b2006cddfecd04fc9247be0b7485c44749d65a57 100644
--- a/src/uncategorized/reputation.tw
+++ b/src/uncategorized/reputation.tw
@@ -46,7 +46,7 @@ On formal occasions, you are announced as $PCTitle.
 	<</if>>
 <</if>>
 
-<<set $repDecay = 0.05,
+<<set _repDecay = 0.05,
 _enduringRep = $enduringRep>>
 <<if $arcologies.FSChattelReligionistLaw == 1>>
 	<<set _enduringRep = Math.min(_enduringRep + 2000, 12000)>>
@@ -58,43 +58,43 @@ _enduringRep = $enduringRep>>
 	<<if $arcologies[0].FSMaturityPreferentialistLaw == 1>>
 		<<if $PC.actualAge >= 65>>
 			Since you're getting on in years and have an impressive list of accomplishments, and $arcologies[0].name's society respects age, your reputation degrades quite slowly.
-			<<set _repLoss = Math.trunc(($rep-_enduringRep)*($repDecay-0.0125))>>
+			<<set _repLoss = Math.trunc(($rep-_enduringRep)*(_repDecay-0.0125))>>
 		<<elseif $PC.actualAge >= 50>>
 			Since you're well into middle age and have an impressive list of accomplishments, and $arcologies[0].name's society respects age, your reputation degrades quite slowly.
-			<<set _repLoss = Math.trunc(($rep-_enduringRep)*($repDecay-0.0125))>>
+			<<set _repLoss = Math.trunc(($rep-_enduringRep)*(_repDecay-0.0125))>>
 		<<elseif $PC.actualAge < 35>>
 			Since you're unusually young for an arcology owner, and $arcologies[0].name's society respects age, your reputation degrades quite quickly.
-			<<set _repLoss = Math.trunc(($rep-_enduringRep)*($repDecay+0.0125))>>
+			<<set _repLoss = Math.trunc(($rep-_enduringRep)*(_repDecay+0.0125))>>
 		<<else>>
 			Since you're only entering middle age, and $arcologies[0].name's society respects age, your reputation degrades fairly quickly.
-			<<set _repLoss = Math.trunc(($rep-_enduringRep)*($repDecay))>>
+			<<set _repLoss = Math.trunc(($rep-_enduringRep)*(_repDecay))>>
 		<</if>>
 	<<elseif $arcologies[0].FSYouthPreferentialistLaw == 1>>
 		<<if $PC.actualAge >= 65>>
 			Since you're getting on in years and have an impressive list of accomplishments, but $arcologies[0].name's society is coming to prefer youth to experience, so your reputation degrades fairly quickly.
-			<<set _repLoss = Math.trunc(($rep-_enduringRep)*($repDecay+0.0125))>>
+			<<set _repLoss = Math.trunc(($rep-_enduringRep)*(_repDecay+0.0125))>>
 		<<elseif $PC.actualAge >= 50>>
 			You're well into middle age and have an impressive list of accomplishments, but $arcologies[0].name's society is coming to prefer youth to experience, so your reputation degrades fairly quickly.
-			<<set _repLoss = Math.trunc(($rep-_enduringRep)*($repDecay+0.0125))>>
+			<<set _repLoss = Math.trunc(($rep-_enduringRep)*(_repDecay+0.0125))>>
 		<<elseif $PC.actualAge < 35>>
 			You're unusually young for an arcology owner, but $arcologies[0].name's society doesn't mind.
-			<<set _repLoss = Math.trunc(($rep-_enduringRep)*($repDecay))>>
+			<<set _repLoss = Math.trunc(($rep-_enduringRep)*(_repDecay))>>
 		<<else>>
 			Since you're entering middle age, and $arcologies[0].name's society respects youth, your reputation degrades fairly quickly.
-			<<set _repLoss = Math.trunc(($rep-_enduringRep)*($repDecay+0.0125))>>
+			<<set _repLoss = Math.trunc(($rep-_enduringRep)*(_repDecay+0.0125))>>
 		<</if>>
 	<<else>>
 		<<if $PC.actualAge >= 65>>
 			Since you're getting on in years and have an impressive list of accomplishments, and $arcologies[0].name's society respects age, your reputation degrades quite slowly.
-			<<set _repLoss = Math.trunc(($rep-_enduringRep)*($repDecay-0.0125))>>
+			<<set _repLoss = Math.trunc(($rep-_enduringRep)*(_repDecay-0.0125))>>
 		<<elseif $PC.actualAge >= 50>>
 			Since you're well into middle age and have an impressive list of accomplishments, your reputation degrades fairly slowly.
-			<<set _repLoss = Math.trunc(($rep-_enduringRep)*($repDecay-0.0125))>>
+			<<set _repLoss = Math.trunc(($rep-_enduringRep)*(_repDecay-0.0125))>>
 		<<elseif $PC.actualAge < 35>>
 			Since you're unusually young for an arcology owner, your reputation degrades fairly quickly.
-			<<set _repLoss = Math.trunc(($rep-_enduringRep)*($repDecay+0.0125))>>
+			<<set _repLoss = Math.trunc(($rep-_enduringRep)*(_repDecay+0.0125))>>
 		<<else>>
-			<<set _repLoss = Math.trunc(($rep-_enduringRep)*($repDecay))>>
+			<<set _repLoss = Math.trunc(($rep-_enduringRep)*(_repDecay))>>
 		<</if>>
 	<</if>>
 	<<if $arcologies[0].FSChattelReligionistLaw == 1>>
@@ -547,7 +547,8 @@ _enduringRep = $enduringRep>>
 		<<= FutureSocieties.Change("AztecRevivalist", -3)>>
 	<</if>>
 <<elseif $arcologies[0].FSEgyptianRevivalist != "unset">>
-	<<if $racialVarieties.length > 4>>
+	<<set _racialVarieties = new Set($slaves.map((s) => s.race))>>
+	<<if _racialVarieties.size > 4>>
 		Society @@.green;strongly approves@@ of how you own a cornucopia of different races, which advances the ancient Egyptian ideal of cosmopolitan sex slavery.
 		<<= FutureSocieties.Change("EgyptianRevivalist", 5)>>
 	<</if>>
diff --git a/src/uncategorized/saDevotion.tw b/src/uncategorized/saDevotion.tw
index b7a17bdba75385f2a0421d4538ea9d77549ddc90..5e03ac213b2718858a69e5290a2a51b3380074d7 100644
--- a/src/uncategorized/saDevotion.tw
+++ b/src/uncategorized/saDevotion.tw
@@ -8,7 +8,7 @@
 <<if $slaves[$i].fuckdoll == 0>>
 
 <<setPlayerPronouns>>
-<<set $energyPlus = 0>>
+<<set _energyPlus = 0>>
 
 <<if $slaves[$i].origin == "You were acquainted with $him before you were an arcology owner; your rival tried to use $him to manipulate you, but you rescued $him." && $slaves[$i].newGamePlus == 0 && $rivalryFS != "Slave Professionalism" && $rivalryFS != "Intellectual Dependency">>
 	<<if ($rivalryDuration <= 10 || $rivalryFS == "Racial Supremacism" || $rivalryFS == "Paternalism")>>
@@ -765,7 +765,7 @@
 		<<if ($slaves[$i].trust < 100) && ($slaves[$i].trust > 20)>>
 			<<set $slaves[$i].trust += Math.trunc(($slaves[$i].devotion-100)*5)/10>>
 		<<elseif $slaves[$i].energy <= 50>>
-			<<set $energyPlus += Math.trunc($slaves[$i].devotion-100)>>
+			<<set _energyPlus += Math.trunc($slaves[$i].devotion-100)>>
 		<<else>>
 			$His extreme devotion @@.green;improved your reputation.@@
 			<<run repX(10*($slaves[$i].devotion-100), "slavesViewOfPC", $slaves[$i])>>
@@ -783,7 +783,7 @@
 			$His blatant disregard for your rule @@.red;damages your reputation.@@
 			<<run repX(30*($slaves[$i].trust-100), "slavesViewOfPC", $slaves[$i])>>
 		<<elseif $slaves[$i].energy <= 50>>
-			<<set $energyPlus += Math.trunc($slaves[$i].trust-100)>>
+			<<set _energyPlus += Math.trunc($slaves[$i].trust-100)>>
 		<<else>>
 			$His extreme trust @@.green;improved your reputation.@@
 			<<run repX(10*($slaves[$i].trust-100), "slavesViewOfPC", $slaves[$i])>>
@@ -795,9 +795,9 @@
 		<<set $slaves[$i].trust = -100>>
 	<</if>>
 <</if>>
-<<if ($energyPlus > 0)>>
+<<if (_energyPlus > 0)>>
 	$His confidence in $his sexuality @@.green;improved $his low sex drive.@@
-	<<set $slaves[$i].energy += $energyPlus>>
+	<<set $slaves[$i].energy += _energyPlus>>
 <</if>>
 
 <<if ($slaves[$i].devotion > 95)>>
diff --git a/src/uncategorized/saLongTermEffects.tw b/src/uncategorized/saLongTermEffects.tw
index d44703ac3be4d30429388b95876d520c0ec28182..08082b3adfe6933b570d1cc22f05669053243b03 100644
--- a/src/uncategorized/saLongTermEffects.tw
+++ b/src/uncategorized/saLongTermEffects.tw
@@ -5664,7 +5664,7 @@
 			Society @@.green;approves@@ of $slaves[$i].slaveName's dimwitted mind; this supports the idea that slaves should be entirely dependent on their owner.
 			<<= FutureSocieties.ChangePorn("IntellectualDependency", 1)>>
 		<<elseif ["be your Head Girl", "be the Attendant", "be the Farmer", "be the Madam", "be the Matron", "be the Nurse", "be the Schoolteacher", "be the Stewardess", "guard you"].includes($slaves[$i].assignment)>>
-			Society understands the value of intelligence in $his appointed position and is willing overlook it.
+			Society understands the value of intelligence in $his appointed position and is willing to overlook it.
 		<<elseif ($slaves[$i].intelligence+$slaves[$i].intelligenceImplant > 10)>>
 			Society @@.red;disapproves@@ of $slaves[$i].slaveName's sharp mind; this holds back acceptance of the idea that slaves should be dumb and dependent.
 			<<= FutureSocieties.ChangePorn("IntellectualDependency", -1)>>
@@ -6887,35 +6887,35 @@
 <<if $slaves[$i].fuckdoll == 0>>
 	<<if !canWalk($slaves[$i])>>
 		$He is immobilized by $his
-		<<set $anchors = []>>
+		<<set _anchors = []>>
 		<<if tooBigBreasts($slaves[$i])>>
-			<<set $anchors.push("tits")>>
+			<<set _anchors.push("tits")>>
 		<</if>>
 		<<if tooBigBelly($slaves[$i])>>
-			<<set $anchors.push("belly")>>
+			<<set _anchors.push("belly")>>
 		<</if>>
 		<<if tooBigDick($slaves[$i])>>
-			<<set $anchors.push("dick")>>
+			<<set _anchors.push("dick")>>
 		<</if>>
 		<<if tooBigButt($slaves[$i])>>
-			<<set $anchors.push("butt")>>
+			<<set _anchors.push("butt")>>
 		<</if>>
 		<<if tooBigBalls($slaves[$i])>>
-			<<set $anchors.push("balls")>>
+			<<set _anchors.push("balls")>>
 		<</if>>
 		<<if tooFatSlave($slaves[$i])>>
-			<<set $anchors.push("fat body")>>
+			<<set _anchors.push("fat body")>>
 		<</if>>
-		<<if $anchors.length > 0>>
-			<<print $anchors.reduce(function(res, ch, i, arr) { return res + (i === arr.length - 1 ? ' and ' : ', ') + ch; })>>
+		<<if _anchors.length > 0>>
+			<<print _anchors.reduce(function(res, ch, i, arr) { return res + (i === arr.length - 1 ? ' and ' : ', ') + ch; })>>
 			<<if (isAmputee($slaves[$i]))>>
-				<<if $anchors.length > 1>>but ultimately $his limblessness<<else>>or would be if $he had limbs<</if>>,
+				<<if _anchors.length > 1>>but ultimately $his limblessness<<else>>or would be if $he had limbs<</if>>,
 			<<elseif (!hasAnyLegs($slaves[$i]))>>
-				<<if $anchors.length > 1>>but ultimately $his leglessness<<else>>or would be if $he had legs<</if>>,
+				<<if _anchors.length > 1>>but ultimately $his leglessness<<else>>or would be if $he had legs<</if>>,
 			<<elseif (!hasBothLegs($slaves[$i]))>>
-				<<if $anchors.length > 1>>but ultimately $his missing leg<<else>>or would be if $he had both legs<</if>>,
+				<<if _anchors.length > 1>>but ultimately $his missing leg<<else>>or would be if $he had both legs<</if>>,
 			<<elseif $slaves[$i].heels == 1 && !["boots", "extreme heels", "heels", "pumps"].includes($slaves[$i].shoes)>>
-				<<if $anchors.length > 1>>but ultimately $his heels having been clipped<<else>>or would be if $his heels weren't clipped<</if>>,
+				<<if _anchors.length > 1>>but ultimately $his heels having been clipped<<else>>or would be if $his heels weren't clipped<</if>>,
 			<</if>>
 		<<else>>
 			<<if (isAmputee($slaves[$i]))>>
diff --git a/src/uncategorized/saRelationships.tw b/src/uncategorized/saRelationships.tw
index ba7b93f2e487c1807e5613cb5b5abac5e23a6e1f..7fb9358df1a09708627f5b587630fd5d89d99edf 100644
--- a/src/uncategorized/saRelationships.tw
+++ b/src/uncategorized/saRelationships.tw
@@ -332,7 +332,7 @@
 						<<run repX(2*$FSSingleSlaveRep*($arcologies[0].FSEgyptianRevivalist/$FSLockinLevel), "PCRelationships", _SlaveI)>>
 						<<set $arcologies[0].FSEgyptianRevivalist += 0.1*$FSSingleSlaveRep>>
 						<<if _SlaveI.bellyPreg >= 1500>>
-							<<if _SlaveI.pregSource == $relation.ID>>
+							<<if _SlaveI.pregSource == -1>>
 								@@.green;The effect is greatly enhanced@@ by _SlaveI.slaveName's pureblooded pregnancy.
 								<<run repX($FSSingleSlaveRep*($arcologies[0].FSEgyptianRevivalist/$FSLockinLevel), "PCRelationships", _SlaveI)>>
 								<<set $arcologies[0].FSEgyptianRevivalist += 0.05*$FSSingleSlaveRep*$pornFameBonus>>
@@ -342,7 +342,7 @@
 						Society @@.green;enjoys@@ your incestuous relationship since incest is currently trendy.
 						<<run repX(1.5*$FSSingleSlaveRep, "PCRelationships", _SlaveI)>>
 						<<if _SlaveI.bellyPreg >= 1500>>
-							<<if _SlaveI.pregSource == $relation.ID>>
+							<<if _SlaveI.pregSource == -1>>
 								@@.green;The effect is enhanced@@ by _SlaveI.slaveName's pureblooded pregnancy.
 								<<run repX($FSSingleSlaveRep, "PCRelationships", _SlaveI)>>
 							<</if>>
@@ -421,7 +421,7 @@
 						<<run repX(2*$FSSingleSlaveRep*($arcologies[0].FSEgyptianRevivalist/$FSLockinLevel), "PCRelationships", _SlaveI)>>
 						<<set $arcologies[0].FSEgyptianRevivalist += 0.1*$FSSingleSlaveRep>>
 						<<if _SlaveI.bellyPreg >= 1500>>
-							<<if _SlaveI.pregSource == $relation.ID>>
+							<<if _SlaveI.pregSource == -1>>
 								@@.green;The effect is greatly enhanced@@ by _SlaveI.slaveName's pureblooded pregnancy.
 								<<run repX($FSSingleSlaveRep*($arcologies[0].FSEgyptianRevivalist/$FSLockinLevel), "PCRelationships", _SlaveI)>>
 								<<set $arcologies[0].FSEgyptianRevivalist += 0.05*$FSSingleSlaveRep*$pornFameBonus>>
@@ -431,7 +431,7 @@
 						Society @@.green;enjoys@@ your incestuous relationship since incest is currently trendy.
 						<<run repX(1.5*$FSSingleSlaveRep, "PCRelationships", _SlaveI)>>
 						<<if _SlaveI.bellyPreg >= 1500>>
-							<<if _SlaveI.pregSource == $relation.ID>>
+							<<if _SlaveI.pregSource == -1>>
 								@@.green;The effect is enhanced@@ by _SlaveI.slaveName's pureblooded pregnancy.
 								<<run repX($FSSingleSlaveRep, "PCRelationships", _SlaveI)>>
 							<</if>>