From 31b15610f8c59672bba701236eee29e79a4758aa Mon Sep 17 00:00:00 2001
From: klorpa <30924131+klorpa@users.noreply.github.com>
Date: Mon, 24 Dec 2018 21:39:13 -0600
Subject: [PATCH] Content Addition

---
 devNotes/Useful JS Function Documentation.txt |   2 -
 devNotes/VersionChangeLog-Premod+LoliMod.txt  |   2 +-
 devNotes/twine JS.txt                         |  10 +-
 player variables documentation - Pregmod.txt  |  14 +-
 src/SpecialForce/TrickShotNight.tw            |   2 +-
 src/art/vector/Feet.tw                        |   1 -
 src/cheats/PCCheatMenu.tw                     |   2 +-
 src/gui/Encyclopedia/encyclopedia.tw          |   2 +-
 src/js/assayJS.tw                             |  10 +-
 src/npc/abort.tw                              |   2 +-
 src/npc/descriptions/fBoobs.tw                |   2 +-
 src/npc/descriptions/fFuckdollWidgets.tw      | 140 ++---
 src/npc/descriptions/fVagina.tw               |   2 +-
 src/npc/fFeelings.tw                          |   2 +-
 src/npc/fSlaveImpregConsummate.tw             |   3 +-
 src/player/actions/fCaress.tw                 |  12 +-
 src/player/actions/fEmbrace.tw                |  12 +-
 src/pregmod/electiveSurgery.tw                |  20 +-
 src/pregmod/eliteTakeOverResult.tw            |   8 +-
 src/pregmod/fFeet.tw                          |   2 +-
 src/pregmod/fSlaveFeed.tw                     |  72 +--
 src/pregmod/fillUpFace.tw                     |   6 +-
 src/pregmod/forceFeeding.tw                   |   8 +-
 src/pregmod/killedSlave.tw                    |   3 +-
 src/pregmod/pcSurgeryDegredation.tw           |  12 +-
 src/pregmod/seFCTVshows.tw                    |   4 +-
 .../widgets/playerDescriptionWidgets.tw       |  14 +-
 src/uncategorized/PESS.tw                     |   2 +-
 src/uncategorized/RECI.tw                     |   4 +-
 src/uncategorized/RESS.tw                     |  14 +-
 src/uncategorized/RETS.tw                     |   2 +-
 src/uncategorized/lawCompliance.tw            |  16 +-
 src/uncategorized/longSlaveDescription.tw     |   4 +-
 src/uncategorized/motherDaughterWorkaround.tw |   8 +-
 src/uncategorized/pSnatchAndGrabResult.tw     |   4 +-
 .../personalAssistantAppearance.tw            |   6 +-
 src/uncategorized/ptWorkaround.tw             | 555 +++++++++---------
 src/uncategorized/reFSAcquisition.tw          |   6 +-
 src/uncategorized/reNickname.tw               |   4 +-
 src/uncategorized/rePokerNight.tw             |   2 +-
 src/uncategorized/reRecruit.tw                |   4 +-
 src/uncategorized/reSiblingRevenge.tw         |   3 +-
 src/uncategorized/reStaffedMorning.tw         |   5 +-
 src/uncategorized/remoteSurgery.tw            |  38 +-
 src/uncategorized/resMove.tw                  |   2 +-
 src/uncategorized/saDevotion.tw               |  14 +-
 src/uncategorized/saWorkAGloryHole.tw         |   2 +-
 src/uncategorized/slaveInteract.tw            |   8 +-
 src/utility/descriptionWidgetsFlesh.tw        |   2 +-
 src/utility/ptWidgets.tw                      |  24 +-
 50 files changed, 543 insertions(+), 555 deletions(-)

diff --git a/devNotes/Useful JS Function Documentation.txt b/devNotes/Useful JS Function Documentation.txt
index 82781dab732..991abc940b8 100644
--- a/devNotes/Useful JS Function Documentation.txt	
+++ b/devNotes/Useful JS Function Documentation.txt	
@@ -129,8 +129,6 @@ Display Functions:
 
 properTitle() - Returns the player's proper title. (customTitle, Sir, Ma'am)
 
-masterTitle() - Returns the player's slaveowning title. (customTitle, Master, Mistress)
-
 SlaveFullName(slave) - Returns the slave's full name.
 
 PlayerName() - Returns the player's full name.
diff --git a/devNotes/VersionChangeLog-Premod+LoliMod.txt b/devNotes/VersionChangeLog-Premod+LoliMod.txt
index 787ce37a2e9..eafb11d62fc 100644
--- a/devNotes/VersionChangeLog-Premod+LoliMod.txt
+++ b/devNotes/VersionChangeLog-Premod+LoliMod.txt
@@ -766,7 +766,7 @@
 
 	4
 	-areolae shape split from size
-	-player b-cups
+	-player b cups
 	-fixes
 
 8/17/2018
diff --git a/devNotes/twine JS.txt b/devNotes/twine JS.txt
index b8e6b1fd11c..be4ee44f70d 100644
--- a/devNotes/twine JS.txt	
+++ b/devNotes/twine JS.txt	
@@ -7476,14 +7476,6 @@ window.properTitle = function properTitle() {
 	else return "Ma'am";
 };
 
-// 2nd helper function returning PC's title
-window.masterTitle = function masterTitle() {
-	const PC = State.variables.PC;
-	if (PC.customTitle) return PC.customTitle;
-	else if (PC.title !== 0) return "Master";
-	else return "Mistress";
-};
-
 window.newSlave = function newSlave(slave) {
 	const V = State.variables;
 
@@ -7494,7 +7486,7 @@ window.newSlave = function newSlave(slave) {
 				break;
 			case "milky white":
 			case "implant":
-				slave.origEye = jsEither(["blue", "green", "brown", "hazel", "light blue", "light green", "dark green", "dark blue"]);
+				slave.origEye = jsEither(["blue", "brown", "dark blue", "dark green", "green", "hazel", "light blue", "light green"]);
 				break;
 			default:
 				slave.origEye = slave.eyeColor;
diff --git a/player variables documentation - Pregmod.txt b/player variables documentation - Pregmod.txt
index 0a50e92112c..07b2e6058ef 100644
--- a/player variables documentation - Pregmod.txt	
+++ b/player variables documentation - Pregmod.txt	
@@ -125,13 +125,13 @@ boobsBonus:
 
 (rare in events)
 breast size
--3	- B-cup
--2	- C-cup
--1	- D-cup
- 0	- DD-cup
- 1	- F-cup
- 2	- G-cup
- 3	- H-cup
+-3	- B cup
+-2	- C cup
+-1	- D cup
+ 0	- DD cup
+ 1	- F cup
+ 2	- G cup
+ 3	- H cup
 
 degeneracy:
 
diff --git a/src/SpecialForce/TrickShotNight.tw b/src/SpecialForce/TrickShotNight.tw
index 44d6c804aca..bf0e158cb42 100644
--- a/src/SpecialForce/TrickShotNight.tw
+++ b/src/SpecialForce/TrickShotNight.tw
@@ -6,7 +6,7 @@ Despite your direct elevator, interaction with the majority of your security for
 
 <br><br>On a particularly lackadaisical evening, you find yourself alerted to a message alert by $assistantName.
 <<if $assistant > 0>>
-	"<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>, a message from $SF.Lower." She pauses before continuing. "It seems they're asking if you'd like to join their trick shot night."
+	"<<= WrittenMaster()>>, a message from $SF.Lower." She pauses before continuing. "It seems they're asking if you'd like to join their trick shot night."
 <<else>>
 	It informs you that $SF.Lower have sent a message asking you to join them at their trick shot night.
 <</if>>
diff --git a/src/art/vector/Feet.tw b/src/art/vector/Feet.tw
index 3823eb72afc..3de08a30235 100644
--- a/src/art/vector/Feet.tw
+++ b/src/art/vector/Feet.tw
@@ -319,4 +319,3 @@
 		<</if>>
 	<</if>>
 <</if>>
-
diff --git a/src/cheats/PCCheatMenu.tw b/src/cheats/PCCheatMenu.tw
index 2b409e683a3..c15c4914fb3 100644
--- a/src/cheats/PCCheatMenu.tw
+++ b/src/cheats/PCCheatMenu.tw
@@ -50,7 +50,7 @@ Title: ''<<if $tempSlave.title == 0>>Master<<else>>Mistress<</if>>''
 
 <br>''Boobs'': <<textbox "$tempSlave.boobs" $tempSlave.boobs>> //0: masculine chest (if title = 1) or flat chested (if title = 0)(WIP) 1: feminine bust//
 <<if $tempSlave.boobs > 0>>
-	<br>''BoobsBonus'': <<textbox "$tempSlave.boobsBonus" $tempSlave.boobsBonus>> //breast size - -3: B-cup, -2: C-cup, -1: D-cup, 0: DD-cup, 1: F-cup, 2: G-cup, 3: H-cup//
+	<br>''BoobsBonus'': <<textbox "$tempSlave.boobsBonus" $tempSlave.boobsBonus>> //breast size - -3: B cup, -2: C cup, -1: D cup, 0: DD cup, 1: F cup, 2: G cup, 3: H cup//
 	<br>''BoobsImplant'': <<textbox "$tempSlave.boobsImplant" $tempSlave.boobsImplant>> //do you have breast implants - 0: no, 1: yes//
 <</if>>
 <br>''Skin'': <<textbox "$tempSlave.skin" $tempSlave.skin>>
diff --git a/src/gui/Encyclopedia/encyclopedia.tw b/src/gui/Encyclopedia/encyclopedia.tw
index 1ad943251d5..3bca8c1f46c 100644
--- a/src/gui/Encyclopedia/encyclopedia.tw
+++ b/src/gui/Encyclopedia/encyclopedia.tw
@@ -1478,7 +1478,7 @@ THE X-SERIES ARCOLOGY
 
 
 <<case "What the Upgrades Do">>
-	//There are a lot of upgrades available for your arcology, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>sir<<else>>ma'am<</if>>. Please relax; some panic upon reviewing the options is normal. This list should familiarize you with your choices.//
+	//There are a lot of upgrades available for your arcology, <<= properTitle()>>. Please relax; some panic upon reviewing the options is normal. This list should familiarize you with your choices.//
 
 	<br><br>''Construction''
 	<br>The first upgrade section on the arcology management menu offers an escalating series of generic upgrades for the arcology. A few of these have minor beneficial side effects, but all share the same main effect: they raise the arcology's maximum prosperity level. You will be informed on the end of week report if your arcology is nearing, at, or over this level. Upgrading early is //not// useless, since prosperity will increase more rapidly if the cap is much higher than the current prosperity level.
diff --git a/src/js/assayJS.tw b/src/js/assayJS.tw
index ba328654e19..c6bb3db02bd 100644
--- a/src/js/assayJS.tw
+++ b/src/js/assayJS.tw
@@ -235,14 +235,6 @@ window.properTitle = function properTitle() {
 	else return "Ma'am";
 };
 
-// 2nd helper function returning PC's title
-window.masterTitle = function masterTitle() {
-	const PC = State.variables.PC;
-	if (PC.customTitle) return PC.customTitle;
-	else if (PC.title !== 0) return "Master";
-	else return "Mistress";
-};
-
 window.newSlave = function newSlave(slave) {
 	const V = State.variables;
 
@@ -253,7 +245,7 @@ window.newSlave = function newSlave(slave) {
 				break;
 			case "milky white":
 			case "implant":
-				slave.origEye = jsEither(["blue", "green", "brown", "hazel", "light blue", "light green", "dark green", "dark blue"]);
+				slave.origEye = jsEither(["blue", "brown", "dark blue", "dark green", "green", "hazel", "light blue", "light green"]);
 				break;
 			default:
 				slave.origEye = slave.eyeColor;
diff --git a/src/npc/abort.tw b/src/npc/abort.tw
index 9807f2f7259..a289af221c8 100644
--- a/src/npc/abort.tw
+++ b/src/npc/abort.tw
@@ -4,7 +4,7 @@
 <<run clearSummaryCache($activeSlave)>>
 
 The remote surgery makes aborting a pregnancy quick and efficient. $activeSlave.slaveName is
-<<if $activeSlave.fuckdoll == 0 && $activeSlave.fetish != "mindbroken">>
+<<if ($activeSlave.fuckdoll != 0) || ($activeSlave.fetish == "mindbroken")>>
 	completely unmoved by the development.
 <<elseif $activeSlave.sexualFlaw == "breeder">>
 	@@.red;fundamentally broken.@@ $His entire concept of self and sexuality was wrapped up in the life growing within $him, and now it is gone.
diff --git a/src/npc/descriptions/fBoobs.tw b/src/npc/descriptions/fBoobs.tw
index 8deef2d824e..f573d570b52 100644
--- a/src/npc/descriptions/fBoobs.tw
+++ b/src/npc/descriptions/fBoobs.tw
@@ -187,7 +187,7 @@ tits.
 	<</if>>
 <<elseif (random(1,100) > (110-$activeSlave.devotion))>>
 	<<if ($activeSlave.fetish == "none") && ($activeSlave.behavioralFlaw !== "hates men")>>
-		Having attention and love lavished on $his boobs by $his <<= masterTitle()>> has $him thinking of $his @@.lightcoral;breasts as sexual organs.@@
+		Having attention and love lavished on $his boobs by $his <<= WrittenMaster()>> has $him thinking of $his @@.lightcoral;breasts as sexual organs.@@
 		<<set $activeSlave.fetish = "boobs", $activeSlave.fetishKnown = 1>>
 	<</if>>
 <</if>>
diff --git a/src/npc/descriptions/fFuckdollWidgets.tw b/src/npc/descriptions/fFuckdollWidgets.tw
index 6bfbbcec049..6a65a11d07b 100644
--- a/src/npc/descriptions/fFuckdollWidgets.tw
+++ b/src/npc/descriptions/fFuckdollWidgets.tw
@@ -6,28 +6,28 @@
 <<run clearSummaryCache($activeSlave)>>
 You decide to use the Fuckdoll's <<if $activeSlave.lips > 95>>facepussy<<else>>face hole<</if>>.
 <<if $activeSlave.fuckdoll <= 10>>
-	Since it is not well adapted to life as a living sex toy yet, it won't respond to position commands. So, you simply <<if $activeSlave.amp == 0>>shove it into a kneeling position<<else>>set it on the couch<</if>> and straddle its face.
+	Since $he is not well adapted to life as a living sex toy yet, $he won't respond to position commands. So, you simply <<if $activeSlave.amp == 0>>shove $him into a kneeling position<<else>>set $him on the couch<</if>> and straddle $his face.
 <<elseif $activeSlave.fuckdoll <= 80>>
-	It can follow intermediate commands, so you order it into a position for use of its face hole. It obediently <<if $activeSlave.amp == 0>>gets to its knees<<else>>cranes its neck up<</if>> and sticks its tongue out as far as it will go, wiggling it invitingly. You straddle its face.
+	$He can follow intermediate commands, so you order $him into a position for use of $his face hole. $He obediently <<if $activeSlave.amp == 0>>gets to $his knees<<else>>cranes $his neck up<</if>> and sticks $his tongue out as far as it will go, wiggling it invitingly. You straddle $his face.
 <<else>>
-	It can follow advanced commands, so you order it into a position for use of its face hole. It instantly <<if $activeSlave.amp == 0>><<if $PC.dick == 1>>bends at the waist and turns its head upward, placing its throat horizontally and at waist height.<<else>>gets to its knees and turns its head upward at just the right angle for a pussy to ride its face hole.<</if>><<else>>cranes its neck up and sticks its tongue out as far as it will go, wiggling it invitingly.<</if>> You straddle its face.
+	$He can follow advanced commands, so you order $him into a position for use of $his face hole. $He instantly <<if $activeSlave.amp == 0>><<if $PC.dick == 1>>bends at the waist and turns $his head upward, placing $his throat horizontally and at waist height.<<else>>gets to $his knees and turns $his head upward at just the right angle for a pussy to ride $his face hole.<</if>><<else>>cranes $his neck up and sticks $his tongue out as far as it will go, wiggling it invitingly.<</if>> You straddle $his face.
 <</if>>
 <<if $activeSlave.fuckdoll <= 20>>
-	It's not fully used to being surprised with face rape, so it struggles, and its difficulty breathing <<if $PC.dick == 1>>makes its throat spasm around your dickhead<<else>>feels lovely on your cunt<</if>>.
+	$He's not fully used to being surprised with face rape, so $he struggles, and $his difficulty breathing <<if $PC.dick == 1>>makes $his throat spasm around your dickhead<<else>>feels lovely on your cunt<</if>>.
 <<elseif $activeSlave.fuckdoll <= 50>>
-	Aware that it is supposed to relax and let you rape its face, it does its best to let you <<if $PC.dick == 1>>fuck its throat<<else>>ride its face<</if>>.
+	Aware that $he is supposed to relax and let you rape $his face, $he does $his best to let you <<if $PC.dick == 1>>fuck $his throat<<else>>ride $his face<</if>>.
 <<else>>
-	You command it to <<if $PC.dick == 1>>milk your dick, and it begins to suck with almost frightening force<<else>>pleasure your cunt, and it begins to eat you out with almost frightening hunger<</if>>.
+	You command $him to <<if $PC.dick == 1>>milk your dick, and $he begins to suck with almost frightening force<<else>>pleasure your cunt, and $he begins to eat you out with almost frightening hunger<</if>>.
 <</if>>
 <<if $activeSlave.fuckdoll <= 60>>
-	<<if $activeSlave.energy > 80>>Denied any other outlet for its extreme sex drive, it orgasms from nothing more than oral stimulation.<</if>>
+	<<if $activeSlave.energy > 80>>Denied any other outlet for $his extreme sex drive, $he orgasms from nothing more than oral stimulation.<</if>>
 <<else>>
-	It's so perfectly tuned that it begins to orgasm from nothing more than oral stimulation, and it continues to shiver with repeated orgasms as it sucks.
+	$He's so perfectly tuned that $he begins to orgasm from nothing more than oral stimulation, and $he continues to shiver with repeated orgasms as $he sucks.
 <</if>>
-You climax, <<if $PC.dick == 1>>blowing your load down its throat<<else>>giving it a good amount of femcum to swallow<</if>>, and return it to <<if $activeSlave.amp == 0>>a standing position<<else>>where it was resting<</if>>.
+You climax, <<if $PC.dick == 1>>blowing your load down $his throat<<else>>giving $him a good amount of femcum to swallow<</if>>, and return $him to <<if $activeSlave.amp == 0>>a standing position<<else>>where $he was resting<</if>>.
 <<if $PC.dick == 1>>
-	<<if $activeSlave.lips > 95>>It gives sloppy blowjobs, its lips being too big for much control, and strings of your cum beribbon its suit. The Fuckdoll will be cleaned by another slave.
-	<<else>>It swallows repeatedly as it returns to its resting posture.
+	<<if $activeSlave.lips > 95>>$He gives sloppy blowjobs, $his lips being too big for much control, and strings of your cum beribbon $his suit. The Fuckdoll will be cleaned by another slave.
+	<<else>>$He swallows repeatedly as $he returns to $his resting posture.
 	<</if>>
 <</if>>
 
@@ -43,34 +43,34 @@ You climax, <<if $PC.dick == 1>>blowing your load down its throat<<else>>giving
 <<run clearSummaryCache($activeSlave)>>
 You decide to use the Fuckdoll's <<if $activeSlave.vagina > 3>>cavernous<<elseif $activeSlave.vagina == 3>>soft<<elseif $activeSlave.vagina == 2>>inviting<<elseif $activeSlave.vagina == 1>>tight<</if>> front hole.
 <<if $activeSlave.fuckdoll <= 10>>
-	Since it is not well adapted to life as a living sex toy yet, it won't respond to position commands. So, you simply <<if $activeSlave.amp == 0>>push it down to lie on the couch<<else>>set it on your desk<</if>> and shove <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> inside its vagina.
+	Since $he is not well adapted to life as a living sex toy yet, $he won't respond to position commands. So, you simply <<if $activeSlave.amp == 0>>push $him down to lie on the couch<<else>>set $him on your desk<</if>> and shove <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> inside $his vagina.
 <<elseif $activeSlave.fuckdoll <= 70>>
-	It can follow intermediate commands, so you order it into a position for use of its front hole. It obediently <<if $activeSlave.amp == 0>>gets down on all fours and <</if>>cocks its hips, offering its cunt until you insert <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> into its wet channel.
+	$He can follow intermediate commands, so you order $him into a position for use of $his front hole. $He obediently <<if $activeSlave.amp == 0>>gets down on all fours and <</if>>cocks $his hips, offering $his cunt until you insert <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> into $his wet channel.
 <<else>>
-	It can follow advanced commands, so you bring it over to your chair <<if $activeSlave.amp == 0>>and order it to squat down onto your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> and ride.<<else>>and impale it on <<if $PC.dick == 1>>your cock<<else>>your strap-on<</if>>, ordering it to do its feeble best to bounce.<</if>>
+	$He can follow advanced commands, so you bring $him over to your chair <<if $activeSlave.amp == 0>>and order $him to squat down onto your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> and ride.<<else>>and impale $him on <<if $PC.dick == 1>>your cock<<else>>your strap-on<</if>>, ordering $him to do $his feeble best to bounce.<</if>>
 <</if>>
 <<if $activeSlave.fuckdoll <= 20>>
-	It's not fully used to being raped without warning, so it struggles, its muscles spasming delightfully.
+	$He's not fully used to being raped without warning, so $he struggles, $his muscles spasming delightfully.
 <<elseif $activeSlave.fuckdoll <= 40>>
-	Aware that it is supposed to relax and accept rape, it does its best to let you take it without resistance.
+	Aware that $he is supposed to relax and accept rape, $he does $his best to let you take $him without resistance.
 <<else>>
-	You command it to milk your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> with its vaginal walls, and it obediently starts to flex its well-developed cunt muscles, squeezing <<if $PC.dick == 1>>you<<else>>your strap-on<</if>> from base to tip.
+	You command $him to milk your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> with $his vaginal walls, and $he obediently starts to flex $his well-developed cunt muscles, squeezing <<if $PC.dick == 1>>you<<else>>your strap-on<</if>> from base to tip.
 <</if>>
 <<if $activeSlave.fuckdoll <= 60>>
-	<<if $activeSlave.energy > 40>>Denied any other outlet for its healthy sex drive, it orgasms.<</if>>
+	<<if $activeSlave.energy > 40>>Denied any other outlet for $his healthy sex drive, $he orgasms.<</if>>
 <<else>>
-	It orgasmed for the first time as you entered it, and it continues to do so as you fuck it. It's perfectly tuned.
+	$He orgasmed for the first time as you entered $him, and $he continues to do so as you fuck $him. $He's perfectly tuned.
 <</if>>
 <<if $activeSlave.voice == 0>>
-	Though it is mute, its breath hisses loudly <<if $activeSlave.lips > 95>>past the lips of its facepussy<<else>>through its mouth insert<</if>>.
+	Though $he is mute, $his breath hisses loudly <<if $activeSlave.lips > 95>>past the lips of $his facepussy<<else>>through $his mouth insert<</if>>.
 <<else>>
-	It moans, <<if $activeSlave.lips > 95>>and the lips of its facepussy quiver<<else>>struggling to force the sound past its mouth insert<</if>>.
+	$He moans, <<if $activeSlave.lips > 95>>and the lips of $his facepussy quiver<<else>>struggling to force the sound past $his mouth insert<</if>>.
 <</if>>
-You climax<<if $PC.dick == 1>>, your cum shooting forward to splash against its womb,<</if>> and return it to <<if $activeSlave.amp == 0>>a standing position<<else>>where it was resting<</if>>.
+You climax<<if $PC.dick == 1>>, your cum shooting forward to splash against $his womb,<</if>> and return $him to <<if $activeSlave.amp == 0>>a standing position<<else>>where $he was resting<</if>>.
 <<if $PC.dick == 1>>
-	<<if $activeSlave.vagina > 2>>Your cum flows out of its gaping front hole and down the material of its suit.
-	<<elseif $activeSlave.vagina == 2>>Your cum drips out of its well-fucked front hole and down the material of its suit.
-	<<else>>Its tight front hole retains almost every drop of your cum. A few escape and run down the material of its suit.
+	<<if $activeSlave.vagina > 2>>Your cum flows out of $his gaping front hole and down the material of $his suit.
+	<<elseif $activeSlave.vagina == 2>>Your cum drips out of $his well-fucked front hole and down the material of $his suit.
+	<<else>>$His tight front hole retains almost every drop of your cum. A few escape and run down the material of $his suit.
 	<</if>>
 	<<if canImpreg($activeSlave, $PC)>>
 		<<= knockMeUp($activeSlave, 5, 1, -1)>>
@@ -79,11 +79,11 @@ You climax<<if $PC.dick == 1>>, your cum shooting forward to splash against its
 <</if>>
 <<if $activeSlave.vagina == 0>>
 	<<if $activeSlave.fetish != "mindbroken">>
-		As you return to your business, it shakes slightly in place, and a few low moans come out of its face hole. This is probably a reaction to losing its virginity.
+		As you return to your business, $he shakes slightly in place, and a few low moans come out of $his face hole. This is probably a reaction to losing $his virginity.
 	<<else>>
-		It gives no external indication that it's aware that it's just lost its virginity.
+		$He gives no external indication that $he's aware that $he's just lost $his virginity.
 	<</if>>
-	In any case, @@.lime;its front hole has been broken in.@@
+	In any case, @@.lime;$his front hole has been broken in.@@
 	<<set $activeSlave.vagina = 1>>
 <</if>>
 
@@ -106,64 +106,64 @@ You climax<<if $PC.dick == 1>>, your cum shooting forward to splash against its
 
 You decide to use the Fuckdoll's fertile womb to grow a child.
 <<if $activeSlave.fuckdoll <= 10>>
-	Since it is not well adapted to life as a living sex toy yet, it won't respond to position commands. So, you simply <<if $activeSlave.amp == 0>>push it down to lie on the couch<<else>>set it on your desk<</if>> and shove <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> inside its <<if $activeSlave.mpreg == 1>>asshole<<else>>vagina<</if>>.
+	Since $he is not well adapted to life as a living sex toy yet, $he won't respond to position commands. So, you simply <<if $activeSlave.amp == 0>>push $him down to lie on the couch<<else>>set $him on your desk<</if>> and shove <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> inside $his <<if $activeSlave.mpreg == 1>>asshole<<else>>vagina<</if>>.
 <<elseif $activeSlave.fuckdoll <= 70>>
-	It can follow intermediate commands, so you order it into a position for use of its <<if $activeSlave.mpreg == 1>>rear<<else>>front<</if>> hole. It obediently <<if $activeSlave.amp == 0>>gets down on all fours and <</if>>cocks its hips, offering its <<if $activeSlave.mpreg == 1>>asspussy<<else>>cunt<</if>> until you insert your cock into its <<if $activeSlave.mpreg == 1>>winking<<else>>wet<</if>> channel.
+	$He can follow intermediate commands, so you order $him into a position for use of $his <<if $activeSlave.mpreg == 1>>rear<<else>>front<</if>> hole. $He obediently <<if $activeSlave.amp == 0>>gets down on all fours and <</if>>cocks $his hips, offering $his <<if $activeSlave.mpreg == 1>>asspussy<<else>>cunt<</if>> until you insert your cock into $his <<if $activeSlave.mpreg == 1>>winking<<else>>wet<</if>> channel.
 <<else>>
-	It can follow advanced commands, so you bring it over to your chair <<if $activeSlave.amp == 0>>and order it to squat down onto your cock and ride.<<else>>and impale it on your cock, ordering it to do its feeble best to bounce.<</if>>
+	$He can follow advanced commands, so you bring $him over to your chair <<if $activeSlave.amp == 0>>and order $him to squat down onto your cock and ride.<<else>>and impale $him on your cock, ordering $him to do $his feeble best to bounce.<</if>>
 <</if>>
 <<if $activeSlave.fuckdoll <= 20>>
-	It's not fully used to being raped without warning, so it struggles, its muscles spasming delightfully.
+	$He's not fully used to being raped without warning, so $he struggles, $his muscles spasming delightfully.
 <<elseif $activeSlave.fuckdoll <= 40>>
-	Aware that it is supposed to relax and accept rape, it does its best to let you take it without resistance.
+	Aware that $he is supposed to relax and accept rape, $he does $his best to let you take $him without resistance.
 <<else>>
-	You command it to milk your cock with its <<if $activeSlave.mpreg == 1>>anal<<else>>vaginal<</if>> walls, and it obediently starts to flex its well-developed <<if $activeSlave.mpreg == 1>>cunt<<else>>anal<</if>> muscles, squeezing you from base to tip.
+	You command $him to milk your cock with $his <<if $activeSlave.mpreg == 1>>anal<<else>>vaginal<</if>> walls, and $he obediently starts to flex $his well-developed <<if $activeSlave.mpreg == 1>>cunt<<else>>anal<</if>> muscles, squeezing you from base to tip.
 <</if>>
 <<if $activeSlave.fuckdoll <= 60>>
-	<<if $activeSlave.energy > 40>>Denied any other outlet for its healthy sex drive, it orgasms.<</if>>
+	<<if $activeSlave.energy > 40>>Denied any other outlet for $his healthy sex drive, $he orgasms.<</if>>
 <<else>>
-	It orgasmed for the first time as you entered it, and it continues to do so as you fuck it. It's perfectly tuned.
+	$He orgasmed for the first time as you entered $him, and $he continues to do so as you fuck $him. $He's perfectly tuned.
 <</if>>
 <<if $activeSlave.voice == 0>>
-	Though it is mute, its breath hisses loudly <<if $activeSlave.lips > 95>>past the lips of its facepussy<<else>>through its mouth insert<</if>>.
+	Though $he is mute, $his breath hisses loudly <<if $activeSlave.lips > 95>>past the lips of $his facepussy<<else>>through $his mouth insert<</if>>.
 <<else>>
-	It moans, <<if $activeSlave.lips > 95>>and the lips of its facepussy quiver<<else>>struggling to force the sound past its mouth insert<</if>>.
+	$He moans, <<if $activeSlave.lips > 95>>and the lips of $his facepussy quiver<<else>>struggling to force the sound past $his mouth insert<</if>>.
 <</if>>
-You climax, your cum shooting forward to splash against its womb, and return it to <<if $activeSlave.amp == 0>>a standing position<<else>>where it was resting<</if>> to allow your seed to find its mark.
+You climax, your cum shooting forward to splash against $his womb, and return $he to <<if $activeSlave.amp == 0>>a standing position<<else>>where $he was resting<</if>> to allow your seed to find $his mark.
 <<if $activeSlave.mpreg == 1>>
-	<<if $activeSlave.anus > 2>>Your cum flows out of its gaping rear hole and down the material of its suit.
-	<<elseif $activeSlave.anus == 2>>Your cum drips out of its well-fucked rear hole and down the material of its suit.
-	<<else>>Its tight rear hole retains almost every drop of your cum. A few escape and run down the material of its suit.
+	<<if $activeSlave.anus > 2>>Your cum flows out of $his gaping rear hole and down the material of $his suit.
+	<<elseif $activeSlave.anus == 2>>Your cum drips out of $his well-fucked rear hole and down the material of $his suit.
+	<<else>>$His tight rear hole retains almost every drop of your cum. A few escape and run down the material of $his suit.
 	<</if>>
 	The Fuckdoll will be cleaned by another slave.
 	<<if $activeSlave.anus == 0>>
 		<<if $activeSlave.fetish != "mindbroken">>
-			As you return to your business, it shakes slightly in place, and a few low moans come out of its face hole. This is probably a reaction to losing its anal virginity.
+			As you return to your business, $he shakes slightly in place, and a few low moans come out of $his face hole. This is probably a reaction to losing $his anal virginity.
 		<<else>>
-			It gives no external indication that it's aware that it's just lost its virginity.
+			$He gives no external indication that $he's aware that $he's just lost $his virginity.
 		<</if>>
-		In any case, @@.lime;its rear hole has been broken in.@@
+		In any case, @@.lime;$his rear hole has been broken in.@@
 		<<set $activeSlave.anus = 1>>
 	<</if>>
 <<else>>
-	<<if $activeSlave.vagina == 10>>Your cum steadily flows from its prolapsed front hole and down the material of its suit.
-	<<elseif $activeSlave.vagina > 2>>Your cum flows out of its gaping front hole and down the material of its suit.
-	<<elseif $activeSlave.vagina == 2>>Your cum drips out of its well-fucked front hole and down the material of its suit.
-	<<else>>Its tight front hole retains almost every drop of your cum. A few escape and run down the material of its suit.
+	<<if $activeSlave.vagina == 10>>Your cum steadily flows from its prolapsed front hole and down the material of $his suit.
+	<<elseif $activeSlave.vagina > 2>>Your cum flows out of $his gaping front hole and down the material of $his suit.
+	<<elseif $activeSlave.vagina == 2>>Your cum drips out of $his well-fucked front hole and down the material of $his suit.
+	<<else>>$His tight front hole retains almost every drop of your cum. A few escape and run down the material of $his suit.
 	<</if>>
 	The Fuckdoll will be cleaned by another slave.
 	<<if $activeSlave.vagina == 0>>
 		<<if $activeSlave.fetish != "mindbroken">>
-			As you return to your business, it shakes slightly in place, and a few low moans come out of its face hole. This is probably a reaction to losing its virginity.
+			As you return to your business, $he shakes slightly in place, and a few low moans come out of $his face hole. This is probably a reaction to losing $his virginity.
 		<<else>>
-			It gives no external indication that it's aware that it's just lost its virginity.
+			$He gives no external indication that $he's aware that $he's just lost $his virginity.
 		<</if>>
-		In any case, @@.lime;its front hole has been broken in.@@
+		In any case, @@.lime;$his front hole has been broken in.@@
 		<<set $activeSlave.vagina = 1>>
 	<</if>>
 <</if>>
 
-You repeat this ritual throughout the week, ensuring that it will be an @@.lime;incubator for your child.@@
+You repeat this ritual throughout the week, ensuring that $he will be an @@.lime;incubator for your child.@@
 
 <<= knockMeUp($activeSlave, 100, 2, -1, 1)>>
 
@@ -186,34 +186,34 @@ You repeat this ritual throughout the week, ensuring that it will be an @@.lime;
 <<run clearSummaryCache($activeSlave)>>
 You decide to use the Fuckdoll's <<if $activeSlave.anus > 3>>gaping<<elseif $activeSlave.anus == 3>>loose<<elseif $activeSlave.anus == 2>>relaxed<<elseif $activeSlave.anus == 1>>tight<</if>> rear hole.
 <<if $activeSlave.fuckdoll <= 10>>
-	Since it is not well adapted to life as a living sex toy yet, it won't respond to position commands. So, you simply <<if $activeSlave.amp == 0>>walk over to it<<else>>flip it over<</if>> and ram <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> up its rear hole.
+	Since $he is not well adapted to life as a living sex toy yet, $he won't respond to position commands. So, you simply <<if $activeSlave.amp == 0>>walk over to $him<<else>>flip $him over<</if>> and ram <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>> up $his rear hole.
 <<elseif $activeSlave.fuckdoll <= 80>>
-	It can follow intermediate commands, so you order it to present its rear hole. It obediently <<if $activeSlave.amp == 0>>bends over, arches its back, and<<else>>flips over and<</if>> winks its anus until you insert <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>>.
+	$He can follow intermediate commands, so you order $him to present $his rear hole. $He obediently <<if $activeSlave.amp == 0>>bends over, arches $his back, and<<else>>flips over and<</if>> winks $his anus until you insert <<if $PC.dick == 1>>your cock<<else>>a strap-on<</if>>.
 <<else>>
-	It can follow advanced commands, so you bring it over to your chair <<if $activeSlave.amp == 0>>and order it to squat down onto your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> and slide its anus up and down <<if $PC.dick == 1>>your<<else>>the<</if>> shaft.<<else>>and impale it on <<if $PC.dick == 1>>your cock<<else>>your strap-on<</if>>, ordering it to do its feeble best to bounce.<</if>>
+	$He can follow advanced commands, so you bring $him over to your chair <<if $activeSlave.amp == 0>>and order $him to squat down onto your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> and slide $his anus up and down <<if $PC.dick == 1>>your<<else>>the<</if>> shaft.<<else>>and impale $him on <<if $PC.dick == 1>>your cock<<else>>your strap-on<</if>>, ordering $him to do $his feeble best to bounce.<</if>>
 <</if>>
 <<if $activeSlave.fuckdoll <= 20>>
-	It's not fully used to having things suddenly forced up its ass, so it struggles, and its sphincter spasms deliciously.
+	$He's not fully used to having things suddenly forced up $his ass, so $he struggles, and $his sphincter spasms deliciously.
 <<elseif $activeSlave.fuckdoll <= 40>>
-	Aware that it is supposed to relax and accept anal rape, it does its best to accommodate the sodomy.
+	Aware that $he is supposed to relax and accept anal rape, $he does $his best to accommodate the sodomy.
 <<else>>
-	You command it to milk your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> with its asshole, and it obediently tightens its sphincter against the invading phallus rhythmically.
+	You command $him to milk your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> with $his asshole, and $he obediently tightens $his sphincter against the invading phallus rhythmically.
 <</if>>
 <<if $activeSlave.fuckdoll <= 60>>
-	<<if $activeSlave.energy > 60>>Denied any other outlet for its powerful sex drive, it orgasms.<</if>>
+	<<if $activeSlave.energy > 60>>Denied any other outlet for $his powerful sex drive, $he orgasms.<</if>>
 <<else>>
-	Tuned to enjoy any use by total denial of all other stimulation, it orgasms repeatedly as you fuck its anus.
+	Tuned to enjoy any use by total denial of all other stimulation, $he orgasms repeatedly as you fuck $his anus.
 <</if>>
 <<if $activeSlave.voice == 0>>
-	Though it is mute, its breath hisses loudly <<if $activeSlave.lips > 95>>past the lips of its facepussy<<else>>through its mouth insert<</if>>.
+	Though $he is mute, $his breath hisses loudly <<if $activeSlave.lips > 95>>past the lips of $his facepussy<<else>>through $his mouth insert<</if>>.
 <<else>>
-	It moans, <<if $activeSlave.lips > 95>>and the lips of its facepussy quiver<<else>>struggling to force the sound past its mouth insert<</if>>.
+	$He moans, <<if $activeSlave.lips > 95>>and the lips of $his facepussy quiver<<else>>struggling to force the sound past $his mouth insert<</if>>.
 <</if>>
-You climax<<if $PC.dick == 1>>, filling its rectum with your cum,<</if>> and return it to <<if $activeSlave.amp == 0>>a standing position<<else>>where it was resting<</if>>.
+You climax<<if $PC.dick == 1>>, filling $his rectum with your cum,<</if>> and return $him to <<if $activeSlave.amp == 0>>a standing position<<else>>where $he was resting<</if>>.
 <<if $PC.dick == 1>>
-	<<if $activeSlave.anus > 2>>Your cum flows out of its gaped rear hole and down the material of its suit.
-	<<elseif $activeSlave.anus == 2>>Your cum drips out of its loosened rear hole and down the material of its suit.
-	<<else>>Its tight rear hole retains every drop of your cum.
+	<<if $activeSlave.anus > 2>>Your cum flows out of $his gaped rear hole and down the material of $his suit.
+	<<elseif $activeSlave.anus == 2>>Your cum drips out of $his loosened rear hole and down the material of $his suit.
+	<<else>>$His tight rear hole retains every drop of your cum.
 	<</if>>
 	<<if canImpreg($activeSlave, $PC)>>
 		<<= knockMeUp($activeSlave, 5, 0, -1)>>
@@ -222,11 +222,11 @@ You climax<<if $PC.dick == 1>>, filling its rectum with your cum,<</if>> and ret
 <</if>>
 <<if $activeSlave.anus == 0>>
 	<<if $activeSlave.fetish != "mindbroken">>
-		As you return to your business, it shakes slightly in place, and a few low moans come out of its face hole. This is probably a reaction to losing its anal virginity.
+		As you return to your business, $he shakes slightly in place, and a few low moans come out of $his face hole. This is probably a reaction to losing $his anal virginity.
 	<<else>>
-		It gives no external indication that it's aware that it's just lost its anal virginity.
+		$He gives no external indication that $he's aware that $he's just lost $his anal virginity.
 	<</if>>
-	In any case, @@.lime;its rear hole has been broken in.@@
+	In any case, @@.lime;$his rear hole has been broken in.@@
 	<<set $activeSlave.anus = 1>>
 <</if>>
 
diff --git a/src/npc/descriptions/fVagina.tw b/src/npc/descriptions/fVagina.tw
index 4cc522e4bea..5089b2054b1 100644
--- a/src/npc/descriptions/fVagina.tw
+++ b/src/npc/descriptions/fVagina.tw
@@ -544,7 +544,7 @@ You call $him over so you can
 	<<case "be a subordinate slave">>
 		though it's only a matter of time before another slave decides to play with $his fuckhole.
 	<<case "be your Head Girl">>
-		worried that $his charges got up to trouble while $he enjoyed $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>'s use.
+		worried that $his charges got up to trouble while $he enjoyed $his <<= WrittenMaster()>>'s use.
 	<<case "guard you">>
 		so $he can be fresh and ready for more sexual use even as $he guards your person.
 	<<case "train slaves">>
diff --git a/src/npc/fFeelings.tw b/src/npc/fFeelings.tw
index 102157fc1c1..1a4beda4a1d 100644
--- a/src/npc/fFeelings.tw
+++ b/src/npc/fFeelings.tw
@@ -46,7 +46,7 @@
 
 <<if ($activeSlave.devotion <= 50)>>
 	<<if !canTalk($activeSlave)>>
-		$He gestures that you're $his <<= masterTitle()>>, and $he will do $his best to obey you. $He continues to sign<<if $activeSlave.accent == 3 && $activeSlave.voice != 0>>, using gestures to supplant $his poor $language<</if>>:
+		$He gestures that you're $his <<= WrittenMaster()>>, and $he will do $his best to obey you. $He continues to sign<<if $activeSlave.accent == 3 && $activeSlave.voice != 0>>, using gestures to supplant $his poor $language<</if>>:
 	<<else>>
 		"You're my <<Master>>, and I'll do my be<<s>>t to obey you," $he says
 	<</if>>
diff --git a/src/npc/fSlaveImpregConsummate.tw b/src/npc/fSlaveImpregConsummate.tw
index 498883065b5..028f2c9c9ad 100644
--- a/src/npc/fSlaveImpregConsummate.tw
+++ b/src/npc/fSlaveImpregConsummate.tw
@@ -8,6 +8,7 @@ The first necessary step is to prepare the donatrix.
 <<setLocalPronouns $activeSlave>>
 <<run clearSummaryCache($impregnatrix)>>
 <<setLocalPronouns $impregnatrix 2>>
+<<setPlayerPronouns>>
 
 <<if ($impregnatrix.fetish == "pregnancy") && ($impregnatrix.fetishKnown == 1) && ($impregnatrix.fetishStrength > 60) && ($impregnatrix.devotion >= -20)>>
 	This is very easy, since $impregnatrix.slaveName has an impregnation fetish.
@@ -126,7 +127,7 @@ Next, you see to $activeSlave.slaveName.
 <<elseif $activeSlave.devotion < 10>>
 	$He obeys your orders, arranging $himself for <<if $activeSlave.mpreg == 1>>anal<<else>>vaginal<</if>> sex despite $his slight hesitation at the idea of being made a breeder.
 <<else>>
-	$He happily obeys your orders, getting ready to serve <<if def $PC.customTitle>>$his $PC.customTitle by making you<<elseif $PC.title != 0>>$his Master by making him<<else>>$his Mistress by making her<</if>> another slave.
+	$He happily obeys your orders, getting ready to serve <<= WrittenMaster()>> by making _himP another slave.
 <</if>>
 
 
diff --git a/src/player/actions/fCaress.tw b/src/player/actions/fCaress.tw
index a08dfde2214..6de200dda78 100644
--- a/src/player/actions/fCaress.tw
+++ b/src/player/actions/fCaress.tw
@@ -20,12 +20,12 @@ You tell $activeSlave.slaveName to
 <</if>>
 
 <<if ($activeSlave.fetish == "mindbroken") && ($activeSlave.relationship != -3)>>
-	$He complies mechanically. $He remembers that when <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>>'s commands are not obeyed, there is punishment.
+	$He complies mechanically. $He remembers that when <<= WrittenMaster()>>'s commands are not obeyed, there is punishment.
 <<elseif ($activeSlave.relationship == -2)>>
 	$He eagerly complies, happy to be near the object of $his longing. Once $he's close, you hold $his face in your palms and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> $he loves overwhelming, and $his eyes flick downward after a moment. $He blushes furiously.
 <<elseif ($activeSlave.relationship == -3)>>
 	<<if $activeSlave.fetish == "mindbroken">>
-		$He complies mechanically. $He remembers that when <<= masterTitle()>>'s commands are not obeyed, there is punishment. Once $he's close, you hold $his face in your palms and look into $his blank $activeSlave.eyeColor eyes. $He doesn't react.
+		$He complies mechanically. $He remembers that when <<= WrittenMaster()>>'s commands are not obeyed, there is punishment. Once $he's close, you hold $his face in your palms and look into $his blank $activeSlave.eyeColor eyes. $He doesn't react.
 	<<elseif $activeSlave.devotion+$activeSlave.trust >= 175>>
 		$He happily complies, eager to be close to the <<if $PC.title == 1>>man<<else>>woman<</if>> who married $him. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> $he's married to affirming, and looks down with a smile<<if canSee($activeSlave)>>, running $his eyes over your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>><</if>>.
 	<<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>>
@@ -36,13 +36,13 @@ You tell $activeSlave.slaveName to
 		$He complies obediently. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> $he's married to reassuring, and looks down with a slight smile<<if $canSee($activeSlave)>>, running $his eyes over your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>><</if>>.
 	<</if>>
 <<elseif ($activeSlave.devotion > 75)>>
-	$He hurriedly complies, happy to be near you. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense look from $his beloved <<= masterTitle()>> disconcerting, and $his eyes flick downward after a moment. $He blushes furiously.
+	$He hurriedly complies, happy to be near you. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense look from $his beloved <<= WrittenMaster()>> disconcerting, and $his eyes flick downward after a moment. $He blushes furiously.
 <<elseif ($activeSlave.devotion > 50)>>
-	$He hurriedly complies, happy to be near you. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= masterTitle()>> disconcerting, and $he looks down after a moment, blushing.
+	$He hurriedly complies, happy to be near you. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= WrittenMaster()>> disconcerting, and $he looks down after a moment, blushing.
 <<elseif ($activeSlave.devotion > 20)>>
-	$He hurriedly complies, happy to be near you. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= masterTitle()>> worrying, and $he looks down after a moment, blushing nervously.
+	$He hurriedly complies, happy to be near you. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= WrittenMaster()>> worrying, and $he looks down after a moment, blushing nervously.
 <<elseif ($activeSlave.devotion >= -20) && ($activeSlave.trust >= -20)>>
-	$He visibly considers disobedience, but decides that complying with such an apparently harmless order is safe, for now. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= masterTitle()>> worrying, and $he looks down after a moment, $his lower lip trembling with nervousness.
+	$He visibly considers disobedience, but decides that complying with such an apparently harmless order is safe, for now. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= WrittenMaster()>> worrying, and $he looks down after a moment, $his lower lip trembling with nervousness.
 <<elseif ($activeSlave.trust < -20)>>
 	The command terrifies $him, but $he's more frightened still of the consequences of disobedience, and $he complies. Once $he's close, you hold $his face in your palms and look into $his $activeSlave.eyeColor eyes. $He looks down fearfully, and begins to shake with terror, tears leaking silently down $his cheeks.
 <<else>>
diff --git a/src/player/actions/fEmbrace.tw b/src/player/actions/fEmbrace.tw
index 5af5da594f0..21e8ad9208e 100644
--- a/src/player/actions/fEmbrace.tw
+++ b/src/player/actions/fEmbrace.tw
@@ -8,12 +8,12 @@ You tell $activeSlave.slaveName to
 <</if>>
 
 <<if ($activeSlave.fetish == "mindbroken") && ($activeSlave.relationship != -3)>>
-	$He complies automatically. $He remembers that when <<= masterTitle()>>'s commands are not obeyed, there is punishment.
+	$He complies automatically. $He remembers that when <<= WrittenMaster()>>'s commands are not obeyed, there is punishment.
 <<elseif ($activeSlave.relationship == -2)>>
 	$He excitedly complies, happy to be near the object of $his longing. Once $he's close, you take $his completely relaxed head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> $he loves overwhelming, and $his eyes flick downward after a moment. $He blushes furiously.
 <<elseif ($activeSlave.relationship == -3)>>
 	<<if $activeSlave.fetish == "mindbroken">>
-		$He complies mechanically. $He remembers that when <<= masterTitle()>>'s commands are not obeyed, there is punishment. Once $he's close, you hold $his face in your palms and look into $his blank $activeSlave.eyeColor eyes. $He shows no reaction.
+		$He complies mechanically. $He remembers that when <<= WrittenMaster()>>'s commands are not obeyed, there is punishment. Once $he's close, you hold $his face in your palms and look into $his blank $activeSlave.eyeColor eyes. $He shows no reaction.
 	<<elseif $activeSlave.devotion+$activeSlave.trust >= 175>>
 		$He lovingly complies, hurrying to come close to the <<if $PC.title == 1>>man<<else>>woman<</if>> who married $him. Once $he's close, you take your willing wife's head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> $he's married to affirming, and looks down with a smile<<if canSee($activeSlave)>>, running $his eyes over your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>><</if>>.
 	<<elseif $activeSlave.devotion < -20 && $activeSlave.trust > 20>>
@@ -24,13 +24,13 @@ You tell $activeSlave.slaveName to
 		$He complies obediently. Once $he's close, you take your willing wife's head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense look from the <<if $PC.title == 1>>man<<else>>woman<</if>> $he's married to reassuring, and looks down with a slight smile<<if $canSee($activeSlave)>>, running $his eyes over your <<if $PC.boobs == 1>>bosom<<else>>chest<</if>><</if>>.
 	<</if>>
 <<elseif ($activeSlave.devotion > 75)>>
-	$He elatedly complies, joyful at being near to you. Once $he's close, you take $his completely relaxed head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense look from $his beloved <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>> disconcerting, and $his eyes flick downward after a moment. $He blushes furiously.
+	$He elatedly complies, joyful at being near to you. Once $he's close, you take $his completely relaxed head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense look from $his beloved <<= WrittenMaster()>> disconcerting, and $his eyes flick downward after a moment. $He blushes furiously.
 <<elseif ($activeSlave.devotion > 50)>>
-	$He dotingly complies, being near you filling $his with delight. Once $he's close, you take $his completely relaxed head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= masterTitle()>> disconcerting, and $he looks down after a moment, blushing.
+	$He dotingly complies, being near you filling $his with delight. Once $he's close, you take $his completely relaxed head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= WrittenMaster()>> disconcerting, and $he looks down after a moment, blushing.
 <<elseif ($activeSlave.devotion > 20)>>
-	$He joyfully complies, happy to be near you. Once $he's close, you you take $his willing head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= masterTitle()>> worrying, and $he looks down after a moment, blushing nervously.
+	$He joyfully complies, happy to be near you. Once $he's close, you you take $his willing head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= WrittenMaster()>> worrying, and $he looks down after a moment, blushing nervously.
 <<elseif ($activeSlave.devotion >= -20) && ($activeSlave.trust >= -20)>>
-	$He visibly considers disobedience, but decides that complying with such an apparently harmless order is safe, for now. Once $he's close, you take $his head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= masterTitle()>> worrying, and $he looks down after a moment, $his lower lip trembling with nervousness.
+	$He visibly considers disobedience, but decides that complying with such an apparently harmless order is safe, for now. Once $he's close, you take $his head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes. $He finds the intense attention from $his <<= WrittenMaster()>> worrying, and $he looks down after a moment, $his lower lip trembling with nervousness.
 <<elseif ($activeSlave.trust < -20)>>
 	The command terrifies $him, but $he's more frightened still of the consequences of disobedience, and $he complies. Once $he's close, you take $his trembling head in your hands and gaze deeply into $his $activeSlave.eyeColor eyes for a moment. $He looks down fearfully, and begins to shake with terror, tears streaking down $his cheeks.
 <<else>>
diff --git a/src/pregmod/electiveSurgery.tw b/src/pregmod/electiveSurgery.tw
index ab8f73e80c6..199058f1dd8 100644
--- a/src/pregmod/electiveSurgery.tw
+++ b/src/pregmod/electiveSurgery.tw
@@ -132,39 +132,39 @@ You have @@.orange;$PC.skin skin.@@<<if $PC.skin != $PC.origSkin>> Your original
 <br><br>"Maybe some breast work? I assure you they are lovely." She says as she brushes the back of your head with her own pair. "@@.yellowgreen;<<print cashFormat(5000)>>@@ for a reduction, @@.yellowgreen;<<print cashFormat(10000)>>@@ for implants, that includes size ups, and @@.yellowgreen;<<print cashFormat(15000)>>@@ for additional breast tissue. That last one might as well be real!<<if $PC.boobsBonus <= 0>> With a little work, we can even remove a small amount of fat from your breasts to bring your cup size down without damaging their inner workings. Though we'll have to build them up some before we can stick reasonable implants into you.<</if>>"<br>
 <<if $PC.boobsBonus > 2>>
 	<<if $PC.boobsImplant == 1>>
-		You have a @@.orange;pair of round H-cup breasts;@@ they are very obviously implants.
+		You have a @@.orange;pair of round H cup breasts;@@ they are very obviously implants.
 		<br>//You are starting to experience back pain; any bigger and they might seriously impede your ability to run your arcology.// | [[Have your implants removed|PC Surgery Degradation][$PC.boobsBonus = 0, $PC.boobsImplant = 0, $cash -= 5000, $surgeryType = "breastReductionImplant"]]
 	<<else>>
-		You have a @@.orange;heavy H-cup bust.@@ They tend to sag a little when you free them from your top, though they have some perk to them.
+		You have a @@.orange;heavy H cup bust.@@ They tend to sag a little when you free them from your top, though they have some perk to them.
 		<br>//You are starting to experience back pain; any bigger and they might seriously impede your ability to run your arcology.// | [[Have tissue removed|PC Surgery Degradation][$PC.boobsBonus = 2, $cash -= 5000, $surgeryType = "breastShrinkage"]]
 	<</if>>
 <<elseif $PC.boobsBonus == 2>>
 	<<if $PC.boobsImplant == 1>>
-		You have a @@.orange;pair of rounded G-cup breasts;@@ they are a little too perky for their size to pass as natural.
+		You have a @@.orange;pair of rounded G cup breasts;@@ they are a little too perky for their size to pass as natural.
 		<br>[[Have your implants removed|PC Surgery Degradation][$PC.boobsBonus = 0, $PC.boobsImplant = 0, $cash -= 5000, $surgeryType = "breastReductionImplant"]] | [[Get the next size up|PC Surgery Degradation][$PC.boobsBonus = 3, $cash -= 10000, $surgeryType = "breastEnlargementImplant"]]
 	<<else>>
-		You have a @@.orange;huge G-cup bust.@@
+		You have a @@.orange;huge G cup bust.@@
 		<br>[[Add additional breast tissue|PC Surgery Degradation][$PC.boobsBonus = 3, $cash -= 15000, $surgeryType = "breastEnlargement"]] | [[Have tissue removed|PC Surgery Degradation][$PC.boobsBonus = 1, $cash -= 5000, $surgeryType = "breastShrinkage"]]
 	<</if>>
 <<elseif $PC.boobsBonus == 1>>
 	<<if $PC.boobsImplant == 1>>
-		You have a @@.orange;pair of perky F-cup breasts;@@ you can barely tell they are implanted.
+		You have a @@.orange;pair of perky F cup breasts;@@ you can barely tell they are implanted.
 		<br>[[Have your implants removed|PC Surgery Degradation][$PC.boobsBonus = 0, $PC.boobsImplant = 0, $cash -= 5000, $surgeryType = "breastReductionImplant"]] | [[Get the next size up|PC Surgery Degradation][$PC.boobsBonus = 2, $cash -= 10000, $surgeryType = "breastEnlargementImplant"]]
 	<<else>>
-		You have a @@.orange;hefty F-cup bust.@@
+		You have a @@.orange;hefty F cup bust.@@
 		<br>[[Add additional breast tissue|PC Surgery Degradation][$PC.boobsBonus = 2, $cash -= 15000, $surgeryType = "breastEnlargement"]] | [[Have tissue removed|PC Surgery Degradation][$PC.boobsBonus = 0, $cash -= 5000, $surgeryType = "breastShrinkage"]]
 	<</if>>
 <<elseif $PC.boobsBonus == -1>>
-	You have a @@.orange;pair of D-cup breasts.@@
+	You have a @@.orange;pair of D cup breasts.@@
 	<br>[[Add additional fatty tissue|PC Surgery Degradation][$PC.boobsBonus = 0, $cash -= 15000, $surgeryType = "breastEnlargement"]] | [[Have fatty tissue removed|PC Surgery Degradation][$PC.boobsBonus = -2, $cash -= 5000, $surgeryType = "breastShrinkage"]] | [[Have them removed|PC Surgery Degradation][$PC.boobs = 0, $PC.boobsBonus = 0, $cash -= 5000, $surgeryType = "flatChest"]]
 <<elseif $PC.boobsBonus == -2>>
-	You have a @@.orange;average pair of C-cup breasts.@@
+	You have a @@.orange;average pair of C cup breasts.@@
 	<br>[[Add additional fatty tissue|PC Surgery Degradation][$PC.boobsBonus = -1, $cash -= 15000, $surgeryType = "breastEnlargement"]] | [[Have fatty tissue removed|PC Surgery Degradation][$PC.boobsBonus = -3, $cash -= 5000, $surgeryType = "breastShrinkage"]] | [[Have them removed|PC Surgery Degradation][$PC.boobs = 0, $PC.boobsBonus = 0, $cash -= 5000, $surgeryType = "breastShrinkage"]] | //You lack sufficient fatty tissue to permit additional size reduction short of total breast removal.//
 <<elseif $PC.boobsBonus == -3>>
-	You have a @@.orange;small pair of B-cup breasts.@@
+	You have a @@.orange;small pair of B cup breasts.@@
 	<br>[[Add additional fatty tissue|PC Surgery Degradation][$PC.boobsBonus = -2, $cash -= 15000, $surgeryType = "breastEnlargement"]] | [[Have them removed|PC Surgery Degradation][$PC.boobs = 0, $PC.boobsBonus = 0, $cash -= 5000, $surgeryType = "flatChest"]] | //You lack sufficient fatty tissue to permit additional size reduction short of total breast removal.//
 <<elseif $PC.boobs == 1>>
-	You have a @@.orange;big pair of DD breasts.@@
+	You have a @@.orange;big pair of DD cup breasts.@@
 	<br>[[Get a pair of breast implants|PC Surgery Degradation][$PC.boobsBonus = 1, $PC.boobsImplant = 1, $cash -= 10000, $surgeryType = "breastEnlargementImplant"]] | [[Add additional breast tissue|PC Surgery Degradation][$PC.boobsBonus = 1, $cash -= 15000, $surgeryType = "breastEnlargement"]] | [[Have fatty tissue removed|PC Surgery Degradation][$PC.boobsBonus = -1, $cash -= 5000, $surgeryType = "breastShrinkage"]] | [[Have them removed|PC Surgery Degradation][$PC.boobs = 0, $PC.boobsBonus = 0, $cash -= 5000, $surgeryType = "flatChest"]]
 <<elseif $PC.title == 1>>
 	You have a @@.orange;masculine chest.@@ At your request, breast tissue could be added until you have a healthy bust, though society is unlikely to approve.
diff --git a/src/pregmod/eliteTakeOverResult.tw b/src/pregmod/eliteTakeOverResult.tw
index dd8508e6dcf..33be5a53179 100644
--- a/src/pregmod/eliteTakeOverResult.tw
+++ b/src/pregmod/eliteTakeOverResult.tw
@@ -51,7 +51,7 @@
 		<br>The <<if $eliteLeft < $eliteTotal>>remaining<</if>> elite are quickly captured, abused and enslaved.
 		The officer is thankful for giving the troops a chance to let off some stream. Two soldiers decide to double team an elite; one ass fucks while the other facefucks.
 		Another soldier takes a particular interest in an elite and politely asks you
-		"<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>sir<<else>>ma'am<</if>> can I keep _himU?"
+		"<<= properTitle()>>, can I keep _himU?"
 		<br><span id="choice1">
 			<<link "No">>
 				<<replace "#choice1">>
@@ -62,7 +62,7 @@
 			<<link "Yes">>
 				<<set $rep += 500, $eliteLeft -= 1>>
 				<<replace "#choice1">>
-					For a second your acceptance shocks them. Once they recover they are very grateful. "Thank you <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>sir<<else>>ma'am<</if>>, I'll make sure to look after _himU. Soon the story spreads of the kind arcology owner, enhancing your reputation.
+					For a second your acceptance shocks them. Once they recover they are very grateful. "Thank you <<= properTitle()>>, I'll make sure to look after _himU. Soon the story spreads of the kind arcology owner, enhancing your reputation.
 				<</replace>>
 			<</link>>
 		</span>
@@ -75,7 +75,7 @@
 		<<else>>
 			Two soldiers decide to double team an elite; one breaks out their knife and begins to make little breaks in the elite's skin while the other soldier facefucks them.
 		<</if>>
-		Another soldier takes a particular interest in an elite and politely asks you "<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>sir<<else>>ma'am<</if>> can I keep _himU?"
+		Another soldier takes a particular interest in an elite and politely asks you "<<= properTitle()>>, can I keep _himU?"
 		<br><span id="choice1">
 			<<link "No">>
 				<<set _SFHappyEverAfter = 0>>
@@ -87,7 +87,7 @@
 			<<link "Yes">>
 				<<set $rep += 500, $eliteLeft -= 1, _SFHappyEverAfter = 1>>
 				<<replace "#choice1">>
-					For a second your acceptance shocks them. Once they recover they are very grateful. "Thank you <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>sir<<else>>ma'am<</if>>, I'll make sure to look after _himU. Soon the story spreads of the kind arcology owner, enhancing your reputation.
+					For a second your acceptance shocks them. Once they recover they are very grateful. "Thank you <<= properTitle()>>, I'll make sure to look after _himU. Soon the story spreads of the kind arcology owner, enhancing your reputation.
 				<</replace>>
 			<</link>>
 		</span>
diff --git a/src/pregmod/fFeet.tw b/src/pregmod/fFeet.tw
index e3399f849ef..57858cbbd98 100644
--- a/src/pregmod/fFeet.tw
+++ b/src/pregmod/fFeet.tw
@@ -378,7 +378,7 @@ You call $activeSlave.slaveName to your office, telling $his to use $his feet to
 	<<elseif $activeSlave.fetish == "sadist" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>>
 		$activeSlave.slaveName is a sadist, and $his deft footjob toys with the boundaries of pain and pleasure. $His devoted yet belittling <<if canSee($activeSlave)>>gaze carefully watches your face<<else>>expressions are clear as $he feels<</if>> for every reaction.
 	<<elseif $activeSlave.fetish == "dom" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>>
-		$activeSlave.slaveName is a dominant and $his skilled feet roughly stroke your erect cock, but $he pauses often to rub $his soles on your <<if $PC.balls >= 2>>massive<<elseif $PC.balls >= 0>>large>><</if>> balls so $he doesn't get too aggressive with $his <<= masterTitle()>>.
+		$activeSlave.slaveName is a dominant and $his skilled feet roughly stroke your erect cock, but $he pauses often to rub $his soles on your <<if $PC.balls >= 2>>massive<<elseif $PC.balls >= 0>>large>><</if>> balls so $he doesn't get too aggressive with $his <<= WrittenMaster()>>.
 	<<elseif $activeSlave.fetish == "pregnancy" && $activeSlave.fetishKnown == 1 && $activeSlave.fetishStrength >= 60>>
 		$activeSlave.slaveName skillfully strokes your cock with $his feet, one of $his hands roaming across $his _belly belly as $he happily services you. $He occasionally pauses to <<if canSee($activeSlave)>>watch <<else>>feel <</if>>your <<if $PC.balls >= 2>>massive<<elseif $PC.balls >= 0>>large>><</if>> balls churn with sperm, clearly lost in a pregnancy fantasy.
 	<<else>>
diff --git a/src/pregmod/fSlaveFeed.tw b/src/pregmod/fSlaveFeed.tw
index 403e33ea12e..a7ca93c23b4 100644
--- a/src/pregmod/fSlaveFeed.tw
+++ b/src/pregmod/fSlaveFeed.tw
@@ -165,48 +165,48 @@ Next, you see to $activeSlave.slaveName.
 	<<set _pregDiscovery = 1>>
 
 <<elseif $milkTap.fuckdoll > 0>>
-	Slight moaning emanates from the fuckdoll as $activeSlave.slaveName drinks from its breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off it's nipple and settles into its breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off its nipple and settles into its breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off its nipple and settles into its breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+	Slight moaning emanates from the fuckdoll as $activeSlave.slaveName drinks from its breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off it's nipple and settles into its breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off its nipple and settles into its breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off its nipple and settles into its breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 
 <<elseif $milkTap.rivalryTarget == $activeSlave.ID>>
-	$milkTap.slaveName grins as $his rival is forced to drink until $his belly is <<if $activeSlave.inflation == 3>>nearly bursting with milk. $activeSlave.slaveName struggles against $his bindings until the pressure building in $him overwhelms $him, causing $him to pass out directly into $milkTap.slaveName's cushiony breasts. You quickly remove $him from the nipple before $he drowns<<elseif $activeSlave.inflation == 2>>is rounded, jiggling and sloshing with milk. You release $his bindings, allowing $him to flop to the floor. <<if $activeSlave.amp != 1>>$he gingerly crawls away from $milkTap.slaveName, one hand cradling $his overfull stomach<<else>>$he rolls onto $his side, groaning with discomfort<</if>><<elseif $activeSlave.inflation == 1>>bloated with milk. You release $his bindings, allowing $him to flop to the floor. <<if $activeSlave.amp != 1>>$he gingerly sits up and begins massaging $his full stomach<<else>>$he rolls onto $his back, hiccuping pathetically<</if>><</if>>.
+	$milkTap.slaveName grins as $his rival is forced to drink until $his belly is <<if $activeSlave.inflation == 3>>nearly bursting with milk. $activeSlave.slaveName struggles against $his bindings until the pressure building in $him overwhelms $him, causing $him to pass out directly into $milkTap.slaveName's cushiony breasts. You quickly remove $him from the nipple before $he drowns<<elseif $activeSlave.inflation == 2>>is rounded, jiggling and sloshing with milk. You release $his bindings, allowing $him to flop to the floor. <<if $activeSlave.amp != 1>>$he gingerly crawls away from $milkTap.slaveName, one hand cradling $his overfull stomach<<else>>$he rolls onto $his side, groaning with discomfort<</if>><<elseif $activeSlave.inflation == 1>>bloated with milk. You release $his bindings, allowing $him to flop to the floor. <<if $activeSlave.amp != 1>>$he gingerly sits up and begins massaging $his full stomach<<else>>$he rolls onto $his back, hiccupping pathetically<</if>><</if>>.
 
 <<elseif $milkTap.relationshipTarget == $activeSlave.ID>>
 	<<if $milkTap.relationship == 1>>
-		$milkTap.slaveName sighs contently as $his friend drinks deeply from $his breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his friend's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his friend's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his friend's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+		$milkTap.slaveName sighs contently as $his friend drinks deeply from $his breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his friend's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his friend's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his friend's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 	<<elseif $milkTap.relationship == 2>>
-		$milkTap.slaveName sighs contently as $his best friend drinks deeply from $his breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his best friend's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his best friend's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his best friend's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+		$milkTap.slaveName sighs contently as $his best friend drinks deeply from $his breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his best friend's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his best friend's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his best friend's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 	<<elseif $milkTap.relationship == 3>>
-		$milkTap.slaveName moans lewdly as $his friend with benefits drinks deeply from $his breasts, savoring it despite commonly being nursed by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his friend with benefits' nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his friend with benefits' nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his friend with benefits' nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+		$milkTap.slaveName moans lewdly as $his friend with benefits drinks deeply from $his breasts, savoring it despite commonly being nursed by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his friend with benefits' nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his friend with benefits' nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his friend with benefits' nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 	<<elseif $milkTap.relationship == 4>>
-		$milkTap.slaveName moans lewdly as $his lover drinks deeply from $his breasts, savoring it despite commonly being nursed by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his lover's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his lover's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his lover's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+		$milkTap.slaveName moans lewdly as $his lover drinks deeply from $his breasts, savoring it despite commonly being nursed by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his lover's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his lover's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his lover's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 	<<elseif $milkTap.relationship == 5>>
-		$milkTap.slaveName moans lewdly as $his wife drinks deeply from $his breasts, savoring it despite commonly being nursed by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his wife's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his wife's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his wife's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+		$milkTap.slaveName moans lewdly as $his wife drinks deeply from $his breasts, savoring it despite commonly being nursed by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his wife's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his wife's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his wife's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 	<</if>>
 
 <<elseif $activeSlave.mother == $milkTap.ID>>
-	$milkTap.slaveName sighs contently as _his2 little $girl once again suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+	$milkTap.slaveName sighs contently as _his2 little $girl once again suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 <<elseif $activeSlave.father == $milkTap.ID>>
-	$milkTap.slaveName moans lewdly as _his2 daughter suckles from _his2 breasts<<if $milkTap.dick > 0 && canAchieveErection($milkTap)>>, _his2 dick throbbing with lust<</if>>. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his father's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his father's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his father's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>><<if $milkTap.dick > 0 && canAchieveErection($milkTap)>><<if $activeSlave.sexualQuirk == "perverted">>. The way $he is wiggling $his hips suggests $he isn't finished with $his daddy just yet, and $his father's moaning confirms $he is teasing him with $his rear. $He giggles as the horny cow unloads on $his backside<<else>>. $He doesn't stay put for long, as a strong moan and a blast of cum across $his rear from the horny cow startles $his from $his rest<</if>><</if>>.
+	$milkTap.slaveName moans lewdly as _his2 daughter suckles from _his2 breasts<<if $milkTap.dick > 0 && canAchieveErection($milkTap)>>, _his2 dick throbbing with lust<</if>>. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his father's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his father's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his father's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>><<if $milkTap.dick > 0 && canAchieveErection($milkTap)>><<if $activeSlave.sexualQuirk == "perverted">>. The way $he is wiggling $his hips suggests $he isn't finished with $his daddy just yet, and $his father's moaning confirms $he is teasing him with $his rear. $He giggles as the horny cow unloads on $his backside<<else>>. $He doesn't stay put for long, as a strong moan and a blast of cum across $his rear from the horny cow startles $his from $his rest<</if>><</if>>.
 <<elseif $milkTap.mother == $activeSlave.ID>>
-	$milkTap.slaveName moans lewdly as _he2 enjoys some role reversal as _his2 mother suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+	$milkTap.slaveName moans lewdly as _he2 enjoys some role reversal as _his2 mother suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 <<elseif $milkTap.father == $activeSlave.ID>>
-	$milkTap.slaveName moans lewdly as _his2 father suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+	$milkTap.slaveName moans lewdly as _his2 father suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 <<elseif areSisters($activeSlave, $milkTap) == 1>>
-	$milkTap.slaveName sighs contently as _his2 twin sister suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his twin's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his twin's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his twin's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+	$milkTap.slaveName sighs contently as _his2 twin sister suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his twin's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his twin's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his twin's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 <<elseif areSisters($activeSlave, $milkTap) == 2>>
-	$milkTap.slaveName moans lewdly as _his2 <<if $milkTap.actualAge >= $activeSlave.actualAge>>little<<else>>big<</if>> sister suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+	$milkTap.slaveName moans lewdly as _his2 <<if $milkTap.actualAge >= $activeSlave.actualAge>>little<<else>>big<</if>> sister suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 <<elseif areSisters($activeSlave, $milkTap) == 3>>
-	$milkTap.slaveName moans lewdly as _his2 half-sister suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+	$milkTap.slaveName moans lewdly as _his2 half-sister suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 
 <<elseif $milkTap.relationTarget == $activeSlave.ID>>
 	<<if $milkTap.relation == "twin">>
-		$milkTap.slaveName sighs contently as _his2 twin sister suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his twin's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his twin's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his twin's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+		$milkTap.slaveName sighs contently as _his2 twin sister suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his twin's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his twin's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his twin's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 	<<elseif $milkTap.relation == "sister">>
-		$milkTap.slaveName moans lewdly as _his2 <<if $milkTap.actualAge >= $activeSlave.actualAge>>little<<else>>big<</if>> sister suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+		$milkTap.slaveName moans lewdly as _his2 <<if $milkTap.actualAge >= $activeSlave.actualAge>>little<<else>>big<</if>> sister suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his sister's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 	<<elseif $milkTap.relation == "mother">>
-		$milkTap.slaveName sighs contently as _his2 little $girl once again suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+		$milkTap.slaveName sighs contently as _his2 little $girl once again suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his mother's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 	<<elseif $milkTap.relation == "daughter">>
-		$milkTap.slaveName moans lewdly as $he enjoys some role reversal as _his2 mother suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+		$milkTap.slaveName moans lewdly as $he enjoys some role reversal as _his2 mother suckles from _his2 breasts. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with milk. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with milk. $He pops off $his daughter's nipple and settles into _his2 breasts for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 	<</if>>
 
 <<elseif ($activeSlave.devotion < -20) && ($milkTap.devotion < -20)>>
@@ -541,48 +541,48 @@ Next, you see to $activeSlave.slaveName.
 	<<set _pregDiscovery = 1>>
 
 <<elseif $milkTap.fuckdoll > 0>>
-	Slight moaning emanates from the fuckdoll as $activeSlave.slaveName sucks its dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off it's cock and settles into its balls for a short rest while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off its cock and settles into its balls for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off its cock and settles into its balls for a short rest while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+	Slight moaning emanates from the Fuckdoll as $activeSlave.slaveName sucks its dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off it's cock and settles into its balls for a short rest while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off its cock and settles into its balls for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off its cock and settles into its balls for a short rest while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 
 <<elseif $milkTap.rivalryTarget == $activeSlave.ID>>
-	$milkTap.slaveName grins as _his2 rival is forced to suck down loads until $his belly is <<if $activeSlave.inflation == 3>>nearly bursting with cum. $activeSlave.slaveName struggles against $his bindings until the pressure building in $his overwhelms $him, causing $him to pass out with $milkTap.slaveName's ejaculating cock still stuck in $him. You quickly remove $his from it, making sure $he gets roused from $his stupor by one last blast of cum directly to the face<<elseif $activeSlave.inflation == 2>>is rounded, jiggling and sloshing with cum. You release $his bindings, allowing $him to flop to the floor. <<if $activeSlave.amp != 1>>$he gingerly crawls away from $milkTap.slaveName, one hand cradling $his overfull stomach<<else>>$he rolls onto $his side, groaning with discomfort<</if>><<elseif $activeSlave.inflation == 1>>bloated with cum. You release $his bindings, allowing $him to flop to the floor. <<if $activeSlave.amp != 1>>$he gingerly sits up and begins massaging $his full stomach<<else>>$he rolls onto $his back, hiccuping pathetically<</if>><</if>>.
+	$milkTap.slaveName grins as _his2 rival is forced to suck down loads until $his belly is <<if $activeSlave.inflation == 3>>nearly bursting with cum. $activeSlave.slaveName struggles against $his bindings until the pressure building in $his overwhelms $him, causing $him to pass out with $milkTap.slaveName's ejaculating cock still stuck in $him. You quickly remove $his from it, making sure $he gets roused from $his stupor by one last blast of cum directly to the face<<elseif $activeSlave.inflation == 2>>is rounded, jiggling and sloshing with cum. You release $his bindings, allowing $him to flop to the floor. <<if $activeSlave.amp != 1>>$he gingerly crawls away from $milkTap.slaveName, one hand cradling $his overfull stomach<<else>>$he rolls onto $his side, groaning with discomfort<</if>><<elseif $activeSlave.inflation == 1>>bloated with cum. You release $his bindings, allowing $him to flop to the floor. <<if $activeSlave.amp != 1>>$he gingerly sits up and begins massaging $his full stomach<<else>>$he rolls onto $his back, hiccupping pathetically<</if>><</if>>.
 
 <<elseif $milkTap.relationshipTarget == $activeSlave.ID>>
 	<<if $milkTap.relationship == 1>>
-		$milkTap.slaveName moans as _his2 friend energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his friend's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his friend's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his friend's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+		$milkTap.slaveName moans as _his2 friend energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his friend's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his friend's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his friend's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 	<<elseif $milkTap.relationship == 2>>
-		$milkTap.slaveName moans as _his2 best friend energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his best friend's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his best friend's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his best friend's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+		$milkTap.slaveName moans as _his2 best friend energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his best friend's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his best friend's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his best friend's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 	<<elseif $milkTap.relationship == 3>>
-		$milkTap.slaveName moans lewdly as _his2 friend with benefits energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his friend with benefits' cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his friend with benefits' cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his friend with benefits' cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+		$milkTap.slaveName moans lewdly as _his2 friend with benefits energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his friend with benefits' cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his friend with benefits' cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his friend with benefits' cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 	<<elseif $milkTap.relationship == 4>>
-		$milkTap.slaveName moans lustfully as _his2 lover teases $his dick perfectly with _his2 tongue, savoring it despite commonly being sucked off by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his lover's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his lover's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his lover's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+		$milkTap.slaveName moans lustfully as _his2 lover teases $his dick perfectly with _his2 tongue, savoring it despite commonly being sucked off by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his lover's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his lover's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his lover's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 	<<elseif $milkTap.relationship == 5>>
-		$milkTap.slaveName moans lustfully as _his2 wife teases _his2 dick perfectly with $his tongue, savoring it despite commonly being sucked off by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his wife's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his wife's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his wife's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+		$milkTap.slaveName moans lustfully as _his2 wife teases _his2 dick perfectly with $his tongue, savoring it despite commonly being sucked off by $activeSlave.slaveName during their lovemaking. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his wife's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his wife's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his wife's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 	<</if>>
 
 <<elseif $activeSlave.mother == $milkTap.ID>>
-	$milkTap.slaveName moans lewdly as _his2 daughter energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his mother's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his mother's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his mother's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+	$milkTap.slaveName moans lewdly as _his2 daughter energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his mother's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his mother's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his mother's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 <<elseif $activeSlave.father == $milkTap.ID>>
-	$milkTap.slaveName moans lewdly as _his2 daughter energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his father's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his father's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his father's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+	$milkTap.slaveName moans lewdly as _his2 daughter energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his father's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his father's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his father's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 <<elseif $milkTap.mother == $activeSlave.ID>>
-	$milkTap.slaveName moans lewdly as _his2 mother energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+	$milkTap.slaveName moans lewdly as _his2 mother energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 <<elseif $milkTap.father == $activeSlave.ID>>
-	$milkTap.slaveName moans lewdly as _his2 father energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>><<if $activeSlave.dick > 0 && canAchieveErection($activeSlave)>>, $his own stiff prick throbbing against the underside of $his new belly<</if>>.
+	$milkTap.slaveName moans lewdly as _his2 father energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>><<if $activeSlave.dick > 0 && canAchieveErection($activeSlave)>>, $his own stiff prick throbbing against the underside of $his new belly<</if>>.
 <<elseif areSisters($activeSlave, $milkTap) == 1>>
-	$milkTap.slaveName moans lewdly as _his2 twin sister sucks _his2 off. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+	$milkTap.slaveName moans lewdly as _his2 twin sister sucks _his2 off. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 <<elseif areSisters($activeSlave, $milkTap) == 2>>
-	$milkTap.slaveName moans lewdly as _his2 <<if $milkTap.actualAge >= $activeSlave.actualAge>>little<<else>>big<</if>> sister energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+	$milkTap.slaveName moans lewdly as _his2 <<if $milkTap.actualAge >= $activeSlave.actualAge>>little<<else>>big<</if>> sister energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 <<elseif areSisters($activeSlave, $milkTap) == 3>>
-	$milkTap.slaveName moans lewdly as _his2 half-sister sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+	$milkTap.slaveName moans lewdly as _his2 half-sister sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 
 <<elseif $milkTap.relationTarget == $activeSlave.ID>>
 	<<if $milkTap.relation == "twin">>
-		$milkTap.slaveName moans lewdly as _his2 twin sister sucks _his2 off. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+		$milkTap.slaveName moans lewdly as _his2 twin sister sucks _his2 off. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 	<<elseif $milkTap.relation == "sister">>
-		$milkTap.slaveName moans lewdly as _his2 <<if $milkTap.actualAge >= $activeSlave.actualAge>>little<<else>>big<</if>> sister energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+		$milkTap.slaveName moans lewdly as _his2 <<if $milkTap.actualAge >= $activeSlave.actualAge>>little<<else>>big<</if>> sister energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his sister's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 	<<elseif $milkTap.relation == "mother">>
-		$milkTap.slaveName moans lewdly as _his2 daughter energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his mother's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his mother's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his mother's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+		$milkTap.slaveName moans lewdly as _his2 daughter energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his mother's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his mother's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his mother's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 	<<elseif $milkTap.relation == "daughter">>
-		$milkTap.slaveName moans lewdly as _his2 mother energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccuping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
+		$milkTap.slaveName moans lewdly as _his2 mother energetically sucks _his2 dick. You enjoy the show, specifically the sight of $activeSlave.slaveName's belly steadily growing larger with each orgasm until <<if $activeSlave.inflation == 3>>$his belly is round and taut, making $him look pregnant. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and rubbing $his gurgling stomach<</if>><<elseif $activeSlave.inflation == 2>>$his belly is round, jiggling and sloshing with cum. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his wobbling, gurgling stomach<</if>><<elseif $activeSlave.inflation == 1>>$his belly is distended and sloshing with cum. $He pops off $his daughter's cock and takes a seat facing the smiling $milkTap.slaveName while hiccupping<<if $activeSlave.amp != 1>> and teasing $his gurgling stomach<</if>><</if>>.
 	<</if>>
 
 <<elseif ($activeSlave.devotion < -20) && ($milkTap.devotion < -20)>>
diff --git a/src/pregmod/fillUpFace.tw b/src/pregmod/fillUpFace.tw
index ca01b204d74..53d3d919c48 100644
--- a/src/pregmod/fillUpFace.tw
+++ b/src/pregmod/fillUpFace.tw
@@ -59,7 +59,7 @@ You attach a hose to $dairyName tap with the pipes set to pump $activeSlave.infl
 	<<else>>
 		firm, flat
 	<</if>>
-	belly, pulling $him into your lap. You force the hose down $his throat, strapping it to $his head to prevent it from slipping out, and turn the flow to low. With everything in place, you return your hands to $his gurgling stomach.<<if $activeSlave.inflation == 2>>You can feel $his $activeSlave.skin belly growing taut with $activeSlave.inflationType as it pushes out against your hands. Once you have given $him $his fill, you give the firm orb of $his belly a slap, eliciting a large belch from the broken slave and no motion at all from $his gut. You order $him to keep $himself filled with two gallons of $activeSlave.inflationType until you say otherwise, before helping $his hiccuping bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the groaning $activeSlave.slaveName ready to be moved<<elseif $activeSlave.inflation == 1>>You can feel $his $activeSlave.skin belly growing larger with $activeSlave.inflationType as it pushes out against your hands. Once you have given $him $his fill, you give the jiggling orb of $his belly a slap, eliciting a burp from the broken slave and tons of motion from $his gut. You order $his to keep $himself filled with four liters of $activeSlave.inflationType until you say otherwise, before helping $his hiccuping bulk onto the couch to recover, After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the groaning $activeSlave.slaveName ready to be moved<<else>>You can feel $his $activeSlave.skin belly swelling with $activeSlave.inflationType as it pushes out against your hands. Once you have given $him $his fill, you give $his bloated belly a slap, eliciting a small burp from the broken slave and a little jiggle from $his gut. You order $him to keep $himself filled with two liters of $activeSlave.inflationType until you say otherwise, before helping $his sloshing bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the hiccuping $activeSlave.slaveName ready to be moved<</if>>.
+	belly, pulling $him into your lap. You force the hose down $his throat, strapping it to $his head to prevent it from slipping out, and turn the flow to low. With everything in place, you return your hands to $his gurgling stomach.<<if $activeSlave.inflation == 2>>You can feel $his $activeSlave.skin belly growing taut with $activeSlave.inflationType as it pushes out against your hands. Once you have given $him $his fill, you give the firm orb of $his belly a slap, eliciting a large belch from the broken slave and no motion at all from $his gut. You order $him to keep $himself filled with two gallons of $activeSlave.inflationType until you say otherwise, before helping $his hiccupping bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the groaning $activeSlave.slaveName ready to be moved<<elseif $activeSlave.inflation == 1>>You can feel $his $activeSlave.skin belly growing larger with $activeSlave.inflationType as it pushes out against your hands. Once you have given $him $his fill, you give the jiggling orb of $his belly a slap, eliciting a burp from the broken slave and tons of motion from $his gut. You order $his to keep $himself filled with four liters of $activeSlave.inflationType until you say otherwise, before helping $his hiccupping bulk onto the couch to recover, After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the groaning $activeSlave.slaveName ready to be moved<<else>>You can feel $his $activeSlave.skin belly swelling with $activeSlave.inflationType as it pushes out against your hands. Once you have given $him $his fill, you give $his bloated belly a slap, eliciting a small burp from the broken slave and a little jiggle from $his gut. You order $him to keep $himself filled with two liters of $activeSlave.inflationType until you say otherwise, before helping $his sloshing bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the hiccupping $activeSlave.slaveName ready to be moved<</if>>.
 
 <<elseif $activeSlave.devotion < -20>>
 	<<if canWalk($activeSlave)>>
@@ -98,7 +98,7 @@ You attach a hose to $dairyName tap with the pipes set to pump $activeSlave.infl
 	<<else>>
 		firm, flat
 	<</if>>
-	belly. You force the hose down $his throat, strapping it to $his head to prevent $him from removing it, and turn the flow to low. With everything in place, you return your hands to $his gurgling stomach.<<if $activeSlave.inflation == 2>>You can feel $his $activeSlave.skin belly growing taut with $activeSlave.inflationType as it pushes out against your hands. Once you have given $him $his fill, you give the firm orb of $his belly a slap, eliciting gagging from the overfilled slave and no motion at all from $his gut. $He <<if canSee($activeSlave)>>looks in your eyes<<else>>faces you<</if>>, as though almost demanding answers. $He looks apprehensive about what you will do next. You order $him to keep $himself filled with two gallons of $activeSlave.inflationType until you say otherwise, before helping $his hiccuping bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the groaning $activeSlave.slaveName ready to be moved<<elseif $activeSlave.inflation == 1>>You can feel $his $activeSlave.skin belly growing larger with $activeSlave.inflationType as it pushes out against your hands. Once you have given $him $his fill, you give the jiggling orb of $his belly a slap, eliciting a burp from the full slave and tons of motion from $his gut. $He <<if canSee($activeSlave)>>looks in your eyes<<else>>faces you<</if>>, as though almost demanding answers. $He looks apprehensive about what you will do next. You order $him to keep $himself filled with four liters of $activeSlave.inflationType until you say otherwise, before helping $his hiccuping bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the groaning $activeSlave.slaveName ready to be moved<<else>>You can feel $his $activeSlave.skin belly swelling with $activeSlave.inflationType as it pushes out against your hands. Once you have given $him $his fill, you give $his bloated belly a slap, eliciting a shudder from the bloated slave and a little jiggle from $his gut. $He <<if canSee($activeSlave)>>looks in your eyes<<else>>faces you<</if>>, as though almost demanding answers. $He looks apprehensive about what you will do next. You order $him to keep $himself filled with two liters of $activeSlave.inflationType until you say otherwise, before helping $his sloshing bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the hiccuping $activeSlave.slaveName ready to be moved<</if>>.
+	belly. You force the hose down $his throat, strapping it to $his head to prevent $him from removing it, and turn the flow to low. With everything in place, you return your hands to $his gurgling stomach.<<if $activeSlave.inflation == 2>>You can feel $his $activeSlave.skin belly growing taut with $activeSlave.inflationType as it pushes out against your hands. Once you have given $him $his fill, you give the firm orb of $his belly a slap, eliciting gagging from the overfilled slave and no motion at all from $his gut. $He <<if canSee($activeSlave)>>looks in your eyes<<else>>faces you<</if>>, as though almost demanding answers. $He looks apprehensive about what you will do next. You order $him to keep $himself filled with two gallons of $activeSlave.inflationType until you say otherwise, before helping $his hiccupping bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the groaning $activeSlave.slaveName ready to be moved<<elseif $activeSlave.inflation == 1>>You can feel $his $activeSlave.skin belly growing larger with $activeSlave.inflationType as it pushes out against your hands. Once you have given $him $his fill, you give the jiggling orb of $his belly a slap, eliciting a burp from the full slave and tons of motion from $his gut. $He <<if canSee($activeSlave)>>looks in your eyes<<else>>faces you<</if>>, as though almost demanding answers. $He looks apprehensive about what you will do next. You order $him to keep $himself filled with four liters of $activeSlave.inflationType until you say otherwise, before helping $his hiccupping bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the groaning $activeSlave.slaveName ready to be moved<<else>>You can feel $his $activeSlave.skin belly swelling with $activeSlave.inflationType as it pushes out against your hands. Once you have given $him $his fill, you give $his bloated belly a slap, eliciting a shudder from the bloated slave and a little jiggle from $his gut. $He <<if canSee($activeSlave)>>looks in your eyes<<else>>faces you<</if>>, as though almost demanding answers. $He looks apprehensive about what you will do next. You order $him to keep $himself filled with two liters of $activeSlave.inflationType until you say otherwise, before helping $his sloshing bulk onto the couch to recover. After a few minutes of rest, and several glares from you when it appears $his meal might be coming back up, is the hiccupping $activeSlave.slaveName ready to be moved<</if>>.
 
 <<elseif $activeSlave.devotion <= 20>>
 	<<if canWalk($activeSlave)>>
@@ -137,7 +137,7 @@ You attach a hose to $dairyName tap with the pipes set to pump $activeSlave.infl
 	<<else>>
 		firm, flat
 	<</if>>
-	belly. You insert the hose down $his throat, choosing to hold it place instead of strapping it to $him, and turn the flow to low. With everything in place, you place your free hand on $his gurgling stomach.<<if $activeSlave.inflation == 2>>You can feel $his $activeSlave.skin belly growing taut with $activeSlave.inflationType as it pushes out against your hand. Once you have given $him $his fill, you give the firm orb of $his belly a slap, eliciting a restrained gag from the overfilled slave and no motion at all from $his gut. $He looks up at you quizzically, unsure about what you will do next. You order $him to keep $himself filled with two gallons of $activeSlave.inflationType until you say otherwise, before helping $his hiccuping bulk onto the couch to recover. $His meal attempts to come back up on $his several times, but $he holds it down for fear of punishment should $he vomit. Only after a few minutes of rest is the groaning $activeSlave.slaveName ready to be moved<<elseif $activeSlave.inflation == 1>>You can feel $his $activeSlave.skin belly growing larger with $activeSlave.inflationType as it pushes out against your hand. Once you have given $him $his fill, you give the jiggling orb of $his belly a slap, eliciting a strained burp from the full slave and tons of motion from $his gut. $He looks up at you quizzically, unsure about what you will do next. You order $him to keep $himself filled with four liters of $activeSlave.inflationType until you say otherwise, before helping $his hiccuping bulk onto the couch to recover. $His meal attempts to come back up on $his several times, but $he holds it down for fear of punishment should $he vomit. Only after a few minutes of rest is the groaning $activeSlave.slaveName ready to be moved<<else>>You can feel $his $activeSlave.skin belly swelling with $activeSlave.inflationType as it pushes out against your hand. Once you have given $him $his fill, you give $his bloated belly a slap, eliciting a small shudder from the bloated slave and a little jiggle from $his gut. $He looks up at you quizzically, unsure about what you will do next. You order $him to keep $himself filled with two liters of $activeSlave.inflationType until you say otherwise, before helping $his sloshing bulk onto the couch to recover. $His meal attempts to come back up on $his several times, but $he holds it down for fear of punishment should $he vomit. Only after a few minutes of rest is the groaning $activeSlave.slaveName ready to be moved<</if>>.
+	belly. You insert the hose down $his throat, choosing to hold it place instead of strapping it to $him, and turn the flow to low. With everything in place, you place your free hand on $his gurgling stomach.<<if $activeSlave.inflation == 2>>You can feel $his $activeSlave.skin belly growing taut with $activeSlave.inflationType as it pushes out against your hand. Once you have given $him $his fill, you give the firm orb of $his belly a slap, eliciting a restrained gag from the overfilled slave and no motion at all from $his gut. $He looks up at you quizzically, unsure about what you will do next. You order $him to keep $himself filled with two gallons of $activeSlave.inflationType until you say otherwise, before helping $his hiccupping bulk onto the couch to recover. $His meal attempts to come back up on $his several times, but $he holds it down for fear of punishment should $he vomit. Only after a few minutes of rest is the groaning $activeSlave.slaveName ready to be moved<<elseif $activeSlave.inflation == 1>>You can feel $his $activeSlave.skin belly growing larger with $activeSlave.inflationType as it pushes out against your hand. Once you have given $him $his fill, you give the jiggling orb of $his belly a slap, eliciting a strained burp from the full slave and tons of motion from $his gut. $He looks up at you quizzically, unsure about what you will do next. You order $him to keep $himself filled with four liters of $activeSlave.inflationType until you say otherwise, before helping $his hiccupping bulk onto the couch to recover. $His meal attempts to come back up on $his several times, but $he holds it down for fear of punishment should $he vomit. Only after a few minutes of rest is the groaning $activeSlave.slaveName ready to be moved<<else>>You can feel $his $activeSlave.skin belly swelling with $activeSlave.inflationType as it pushes out against your hand. Once you have given $him $his fill, you give $his bloated belly a slap, eliciting a small shudder from the bloated slave and a little jiggle from $his gut. $He looks up at you quizzically, unsure about what you will do next. You order $him to keep $himself filled with two liters of $activeSlave.inflationType until you say otherwise, before helping $his sloshing bulk onto the couch to recover. $His meal attempts to come back up on $his several times, but $he holds it down for fear of punishment should $he vomit. Only after a few minutes of rest is the groaning $activeSlave.slaveName ready to be moved<</if>>.
 
 <<elseif $activeSlave.devotion <= 50>>
 	<<if canWalk($activeSlave)>>
diff --git a/src/pregmod/forceFeeding.tw b/src/pregmod/forceFeeding.tw
index 931cf841a2a..40ed3b8d8d2 100644
--- a/src/pregmod/forceFeeding.tw
+++ b/src/pregmod/forceFeeding.tw
@@ -361,13 +361,13 @@ and a little jiggle from $his gut.
 
 	Knocking the empty buckets aside, you help $his
 	<<if $activeSlave.fetish == "mindbroken">>
-		hiccuping
+		hiccupping
 	<<elseif $activeSlave.devotion < -20>>
-		hiccuping
+		hiccupping
 	<<elseif $activeSlave.fetish == "submissive">>
-		hiccuping
+		hiccupping
 	<<elseif $activeSlave.behavioralFlaw == "gluttonous">>
-		hiccuping
+		hiccupping
 	<<elseif $activeSlave.devotion <= 20>>
 		heaving
 	<<elseif $activeSlave.devotion <= 50>>
diff --git a/src/pregmod/killedSlave.tw b/src/pregmod/killedSlave.tw
index 15ee8a867c6..76486face53 100644
--- a/src/pregmod/killedSlave.tw
+++ b/src/pregmod/killedSlave.tw
@@ -138,7 +138,8 @@ $activeSlave.slaveName gives an audible sigh of relief and begins to thank you p
 	<<set $activeSlave.trust = -100>>
 
 <<elseif $killChoice == 2>>
-	You tell $him that you'll let your bodyguard $Bodyguard.slaveName decide $his fate -- if $he wants to live, $he'll have to beat <<if $Bodyguard.genes == "XY" && $diversePronouns == 1>>him<<else>>her<</if>> in hand-to-hand combat in $pitName.
+	<<setLocalPronouns $Bodyguard 2>>
+	You tell $him that you'll let your bodyguard $Bodyguard.slaveName decide $his fate -- if $he wants to live, $he'll have to beat _him2 in hand-to-hand combat in $pitName.
 	<<if $activeSlave.combatSkill == 0>>
 		The fear on $his face is palpable, though $he nods slowly and agrees, not seeing another choice.
 	<<else>>
diff --git a/src/pregmod/pcSurgeryDegredation.tw b/src/pregmod/pcSurgeryDegredation.tw
index 2782e386996..a1aff3e87b3 100644
--- a/src/pregmod/pcSurgeryDegredation.tw
+++ b/src/pregmod/pcSurgeryDegredation.tw
@@ -22,19 +22,19 @@
 	After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice how much lighter your breasts are. Pulling the covers off yourself, you observe your implant free boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your natural breasts. "We made sure to tighten them up a bit, get rid of that sag from not having the silicone pouch in them anymore." She begins groping your breasts, feeling for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your breasts. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
 
 <<case "breastShrinkage">>
-	After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice how much lighter your breasts are. Pulling the covers off yourself, you observe your smaller <<if $PC.boobsBonus == 2>>G-cup<<elseif $PC.boobsBonus == 1>>F-cup<<elseif $PC.boobsBonus == -1>>D-cup<<elseif $PC.boobsBonus == -2>>C-cup<<elseif $PC.boobsBonus == -3>>B-cup<<else>>DD<</if>> boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your shrunken breasts. "We made sure to tighten them up a bit, get rid of that sagginess from weight and the mass removed." She begins groping your breasts, feeling for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your breasts. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
+	After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice how much lighter your breasts are. Pulling the covers off yourself, you observe your smaller <<if $PC.boobsBonus == 2>>G cup<<elseif $PC.boobsBonus == 1>>F cup<<elseif $PC.boobsBonus == -1>>D cup<<elseif $PC.boobsBonus == -2>>C cup<<elseif $PC.boobsBonus == -3>>B cup<<else>>DD cup<</if>> boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your shrunken breasts. "We made sure to tighten them up a bit, get rid of that sagginess from weight and the mass removed." She begins groping your breasts, feeling for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your breasts. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
 
 <<case "breastEnlargementImplant">>
-	After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000 || $PC.boobsBonus == 3>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice how much heavier your breasts are. Pulling the covers off yourself, you observe your new, round <<if $PC.boobsBonus == 2>>G-cup<<elseif $PC.boobsBonus == 1>>F-cup<<else>>H-cup<</if>> boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your heaving breasts. "We did everything we could to keep them looking natural, <<if $PC.boobsBonus == 2>>but you can definitely tell<<elseif $PC.boobsBonus == 1>>and I say we did a pretty good job<<else>>but the implants were way too big for that<</if>>." She begins groping your breasts, feeling the implant within for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your implant laden breasts. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
+	After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000 || $PC.boobsBonus == 3>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice how much heavier your breasts are. Pulling the covers off yourself, you observe your new, round <<if $PC.boobsBonus == 2>>G cup<<elseif $PC.boobsBonus == 1>>F cup<<else>>H cup<</if>> boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your heaving breasts. "We did everything we could to keep them looking natural, <<if $PC.boobsBonus == 2>>but you can definitely tell<<elseif $PC.boobsBonus == 1>>and I say we did a pretty good job<<else>>but the implants were way too big for that<</if>>." She begins groping your breasts, feeling the implant within for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your implant laden breasts. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
 
 <<case "breastEnlargement">>
-	After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000 || $PC.boobsBonus == 3>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice how much heavier your breasts are. Pulling the covers off yourself, you observe your new, soft <<if $PC.boobsBonus == 3>>H-cup<<elseif $PC.boobsBonus == 2>>G-cup<<elseif $PC.boobsBonus == 1>>F-cup<<elseif $PC.boobsBonus == -1>>D-cup<<elseif $PC.boobsBonus == -2>>C-cup<<elseif $PC.boobsBonus == -3>>B-cup<<else>>DD<</if>> boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your heaving breasts. "We did everything we could to keep them perky, <<if $PC.boobsBonus == 3>>quite a feat given their size<<else>>not that hard given your natural perk<</if>>." She begins groping your breasts, feeling the added mass for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your fat tits. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
+	After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000 || $PC.boobsBonus == 3>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice how much heavier your breasts are. Pulling the covers off yourself, you observe your new, soft <<if $PC.boobsBonus == 3>>H cup<<elseif $PC.boobsBonus == 2>>G cup<<elseif $PC.boobsBonus == 1>>F cup<<elseif $PC.boobsBonus == -1>>D cup<<elseif $PC.boobsBonus == -2>>C cup<<elseif $PC.boobsBonus == -3>>B cup<<else>>DD cup<</if>> boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your heaving breasts. "We did everything we could to keep them perky, <<if $PC.boobsBonus == 3>>quite a feat given their size<<else>>not that hard given your natural perk<</if>>." She begins groping your breasts, feeling the added mass for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your fat tits. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
 
 <<case "flatChest">>
 	After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice the absence of the usual weight on your chest. Pulling the covers off yourself, you observe your flat chest in the mirror-covered wall across from your bed. "So do you like it?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your chest. "I honestly couldn't live without my pair." She begins groping your chest, feeling for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>She lets out a surprised squeak when a gush of milk escapes your tits and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts still work, but it's still strange coming from such a flat chest."<</if>> You can't help but moan under your building arousal as she massages and teases your nipples. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
 
 <<case "breasts">>
-	After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000 || $PC.boobsBonus == 3>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice a new weight on your chest. Pulling the covers off yourself, you observe your new, soft C-cup boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your heaving breasts. "With these, you should be able to compete with any girls around you." She begins groping your breasts, feeling the added mass for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your new tits. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
+	After a few hours, you awaken in the recovery wing with a sore chest. <<if $PC.belly >= 10000 || $PC.boobsBonus == 3>>Struggling to sit<<else>>Sitting<</if>> up, you immediately notice a new weight on your chest. Pulling the covers off yourself, you observe your new, soft C cup boobs in the mirror-covered wall across from your bed. "So do you like them?", asks the surgeon's assistant, seating herself behind you and wrapping her hands around to your heaving breasts. "With these, you should be able to compete with any girls around you." She begins groping your breasts, feeling the added mass for any oddities. "I know you're still a little sore, but bear with it." She moves on to your nipples and begins teasing them. <<if $PC.lactation > 0>>She lets out a surprised squeak when a gush of milk escapes your breasts and a moan escapes your lips. "<<if $PC.pregKnown == 1>>Should have expected that with the pregnancy and all.<<else>>You did recently have a child didn't you? Or have you just been enjoying your nipples too much?<</if>> Either way, this is a good thing. Your breasts work."<</if>> You can't help but moan under your building arousal as she massages and teases your new tits. "Enjoying yourself are we? Let me finish you off." She sneaks a hand down to your <<if $PC.dick == 1>>stiff prick and begins stroking its length, quickly bringing you to orgasm and relieving you of your built up tension.<<else>>stiff clit and begins teasing it as well, quickly bringing you to orgasm and relieving you of your built up tension.<</if>> She states, while licking her fingers, "I always did enjoy the way you taste. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Satisfied, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
 
 <<case "buttReductionImplant">>
 	After a few hours, you awaken in the recovery wing, face down in a bed made to accommodate as person with your body type, with a sore ass. You push yourself up and look at the mass under the cover behind you that is your rear, taking note of how much smaller it is now than when you arrived. "So do you like it?", asks the surgeon's assistant, seating herself beside you and bringing her hands to your butt. "Size isn't everything in an ass, shape is important too." She begins groping your bottom, feeling around for any oddities. "I know you're still a little sore, but bear with it. There, everything feels good, now rest up and you'll be set! Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around." Groggy, you lie back down to sleep off the rest of the anesthesia before returning to your arcology.
@@ -190,7 +190,7 @@
 	<<if $PC.boobsBonus == 3>>
 		that your enormous breasts make it difficult to get a good look so you settle for the mirror-covered wall across from your bed. Your dick is gone, along with the rest of your male reproductive organs, leaving you with a pussy, a new fertile set of ovaries and a fresh womb. You can't tell much more until you get a good feel of it, but you're too sore to try. Your body has also undergone large-scale reconstructive surgery; it is unlikely anyone will recognize you a man anymore.
 	<<else>>
-		your dick is gone, along with the rest of your male reproductive organs, leaving you with a pussy, a new fertile set of ovaries and a fresh womb. You can't tell much more until you get a good feel of it, but you're too sore to try.<<if $PC.boobs == 0>> You do take a moment to fondle your new C-cup breasts though; they feel nice.<</if>> Your body has also undergone large-scale reconstructive surgery; it is unlikely anyone will recognize you a man anymore.
+		your dick is gone, along with the rest of your male reproductive organs, leaving you with a pussy, a new fertile set of ovaries and a fresh womb. You can't tell much more until you get a good feel of it, but you're too sore to try.<<if $PC.boobs == 0>> You do take a moment to fondle your new C cup breasts though; they feel nice.<</if>> Your body has also undergone large-scale reconstructive surgery; it is unlikely anyone will recognize you a man anymore.
 	<</if>>
 	"So, how do you feel?", asks the surgeon's assistant, seating herself beside you and placing a hand on your belly. "I'd take it easy for the rest of the week, your body is going to take some time to recover from all the changes. Now, this might be uncomfortable, but it would be best to check if your new parts are functioning correctly." She circles around until she is between your legs and disappears between your thighs. You feel face brush your inner legs as she brings her mouth to your fresh pussy and begins to enthusiastically eat you out. She is quite good at her job and quickly brings you to climax; your new vagina squirting girl cum across her face. She raises from your crotch and licks her lips. "Your new taste is good too. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around. Oh! And before you leave, we'll write a prescription for some birth control for you. You don't have to use it, but it'll be there for you." Exhausted from the procedure, you settle back down to play with your tits and recover for the rest of your stay.
 	<<if $PC.boobs == 0>><<set $PC.boobs = 1, $PC.boobsBonus = -2>><</if>>
@@ -200,7 +200,7 @@
 	<<if $PC.boobsBonus == 3>>
 		that your enormous breasts make it difficult to get a good look so you settle for the mirror-covered wall across from your bed. You see<<if $PC.ballsImplant < 1>> your new pussy peeking from under your testicles<<else>> that your balls are big enough to completely obscure your new pussy<</if>>. Your lower belly is slightly larger too, likely from your new womb. You can't tell much more until you get a good feel of it, but you're too sore to try. Your body has also undergone large-scale reconstructive surgery; it is unlikely anyone will recognize you a man anymore.
 	<<else>>
-		<<if $PC.ballsImplant < 1>>your new pussy peeking from under your testicles<<else>>that your balls are big enough to completely obscure your new pussy<</if>>. Your lower belly is slightly larger too, likely from your new womb. You can't tell much more until you get a good feel of it, but you're too sore to try.<<if $PC.boobs == 0>> You do take a moment to fondle your new C-cup breasts though; they feel nice.<</if>> Your body has also undergone large-scale reconstructive surgery; it is unlikely anyone will recognize you a man anymore.
+		<<if $PC.ballsImplant < 1>>your new pussy peeking from under your testicles<<else>>that your balls are big enough to completely obscure your new pussy<</if>>. Your lower belly is slightly larger too, likely from your new womb. You can't tell much more until you get a good feel of it, but you're too sore to try.<<if $PC.boobs == 0>> You do take a moment to fondle your new C cup breasts though; they feel nice.<</if>> Your body has also undergone large-scale reconstructive surgery; it is unlikely anyone will recognize you a man anymore.
 	<</if>>
 	"So, how do you feel?", asks the surgeon's assistant, seating herself beside you and placing a hand on your belly. "I'd take it easy for the rest of the week, your body is going to take some time to recover from all the changes. Now, this might be uncomfortable, but it would be best to check if your new parts are functioning correctly." She circles around until she is between your legs and disappears between your thighs. You feel <<if $PC.ballsImplant > 1>>her lift your engorged sack and leave it resting atop her head<<else>>her head brush against your sack<</if>> as she brings her mouth to your fresh pussy and begins to enthusiastically eat you out. She is quite good at her job and quickly brings you to climax; your new vagina squirting girl cum across her face and your neglected dick spraying cum across your belly. She raises from your crotch to lick up your wayward cum. "I always did like the taste of you and your new flavor is good too. Feel free to rest as long as you need before departing. If you need, or want, me, I'll be around. Oh! And before you leave, we'll write a prescription for some birth control for you. You don't have to use it, but it'll be there for you. Just try not to mix your two halves, unless you want to watch your middle steadily swell with your own child." Exhausted from the procedure, you settle back down to play with your tits and recover for the rest of your stay.
 	<<if $PC.boobs == 0>><<set $PC.boobs = 1, $PC.boobsBonus = -2>><</if>>
diff --git a/src/pregmod/seFCTVshows.tw b/src/pregmod/seFCTVshows.tw
index 46312a4d096..f4870c0d716 100644
--- a/src/pregmod/seFCTVshows.tw
+++ b/src/pregmod/seFCTVshows.tw
@@ -511,7 +511,7 @@ The offered price is <<print cashFormat($slaveCost)>>.
 		<br><br>Overall, it's a convincing documentary, if a little too emotional for your tastes.
 
 	<<elseif $arcologies[0].FSGenderFundamentalist == "unset" && $randShow == 2>>
-		a documentary on the increasingly-popular Gender Radicalist movement titled: "Power, not Biology". After the opening credits, the documentary introduces an androgynous documentarian in a nicely-cut suit. The finely tailored suit doesn't try to hide the person's breasts, which seem to be a pretty average D-cup. Similarly, another bulge is visible stretching down one of the pants legs. The futanari opens with a pretty simple question: "Am I a man, or am I a woman?" The documentary is focused on answering that question in the context of a modern era where medical science means that genitalia are irrelevant. It argues that a person's body no longer has any relation to their sexuality or ambition, that being free means choosing the body that pleases you most, and that society needs new criteria from which to determine gender.
+		a documentary on the increasingly-popular Gender Radicalist movement titled: "Power, not Biology". After the opening credits, the documentary introduces an androgynous documentarian in a nicely-cut suit. The finely tailored suit doesn't try to hide the person's breasts, which seem to be a pretty average D cup. Similarly, another bulge is visible stretching down one of the pants legs. The futanari opens with a pretty simple question: "Am I a man, or am I a woman?" The documentary is focused on answering that question in the context of a modern era where medical science means that genitalia are irrelevant. It argues that a person's body no longer has any relation to their sexuality or ambition, that being free means choosing the body that pleases you most, and that society needs new criteria from which to determine gender.
 		<br><br>The criteria suggested by the documentary is power. The idea is simple; the powerful are male, the weak are female. It argues that the biology and sexual proclivities of a person simply can't represent them any longer. The powerful are often free to choose the body and activities they wish to pursue, while the weak have those decisions made for them. It's a practical argument, and the documentary gives a long list of evidence supporting it, from expert interviews to ancient civilizations that followed a similar idea. The concept is somewhat appealing to you; after all, you wield extraordinary power, and a large part of that power includes altering the bodies of others. Whatever you choose to do, you can't see any reason to let your slaves and citizens criticize you for it.
 		<br><br>.....
 
@@ -522,7 +522,7 @@ The offered price is <<print cashFormat($slaveCost)>>.
 
 	<<elseif $arcologies[0].FSSlimnessEnthusiast == "unset" && $randShow == 3>>
 		a documentary on the growing Asset Expansionist movement titled: "More of a Good Thing". After a brief set of opening credits the documentary dives immediately into short clips of numerous interviews with stacked women stating that they love having big tits and a big ass. Eventually, a man and woman are introduced as the hosts of the program. Both are finely dressed in the recent fashions, and despite the subject of the documentary, they don't have humongous assets. The woman does have huge breasts, wide hips, and a large derrière; the man has a noticeable bulge in his pants, but nothing extreme. The hosts explain that seeing Asset Expansionism as a call for ridiculous size is something of a misconception. They emphasize that it's about the freedom to enjoy more of a good thing.
-		<br><br>The documentary makes several arguments in favor of the movement, and is clear about explaining the natural biological attraction humans have to large assets. By interviewing stacked members of the movement and psychological experts alike, they try to demonstrate how larger assets lead to happier and more pleasurable lives, both in and out of the bedroom. The documentary neatly tops off its argument by demonstrating how assets have been expanding naturally since the start of the twentieth century, and claiming that it's silly to idolize the way humans looked before modern nutrition and medicine. Western countries in the old world already had average bust sizes of D-cup or larger by the turn of the century, the hosts claim that trying to go back to smaller sizes is synonymous with reducing the prosperity of free citizens.
+		<br><br>The documentary makes several arguments in favor of the movement, and is clear about explaining the natural biological attraction humans have to large assets. By interviewing stacked members of the movement and psychological experts alike, they try to demonstrate how larger assets lead to happier and more pleasurable lives, both in and out of the bedroom. The documentary neatly tops off its argument by demonstrating how assets have been expanding naturally since the start of the twentieth century, and claiming that it's silly to idolize the way humans looked before modern nutrition and medicine. Western countries in the old world already had average bust sizes of D cup or larger by the turn of the century, the hosts claim that trying to go back to smaller sizes is synonymous with reducing the prosperity of free citizens.
 		<br><br>.....
 
 	<<elseif $arcologies[0].FSAssetExpansionist == "unset" && $randShow == 3>>
diff --git a/src/pregmod/widgets/playerDescriptionWidgets.tw b/src/pregmod/widgets/playerDescriptionWidgets.tw
index fdaf3975cb1..96c74270e0c 100644
--- a/src/pregmod/widgets/playerDescriptionWidgets.tw
+++ b/src/pregmod/widgets/playerDescriptionWidgets.tw
@@ -6,7 +6,7 @@
 
 <<if _passage == "Manage Personal Affairs">>
 	<<if $PC.boobsBonus > 2>>
-		you have a @@.orange;pair of H-cup breasts.@@
+		you have a @@.orange;pair of H cup breasts.@@
 		<<if $PC.boobsImplant == 1>>
 			They are big, round, and obviously implants. They barely move when you fuck your slaves.
 		<<else>>
@@ -21,7 +21,7 @@
 			They are covered in freckles, which are particularly dense in the cleft between them.
 		<</if>>
 	<<elseif $PC.boobsBonus == 2>>
-		you have a @@.orange;pair of G-cup breasts.@@
+		you have a @@.orange;pair of G cup breasts.@@
 		<<if $PC.boobsImplant == 1>>
 			They are kind of rounded and much too perky for their size to pass as real. They have a bit of bounce to them as you fuck a slave.
 		<<else>>
@@ -36,7 +36,7 @@
 			They are covered in freckles, which are particularly dense in the cleft between them.
 		<</if>>
 	<<elseif $PC.boobsBonus == 1>>
-		you have a @@.orange;pair of F-cup breasts.@@
+		you have a @@.orange;pair of F cup breasts.@@
 		<<if $PC.boobsImplant == 1>>
 			They are nice, perky and not obviously implants. Though the way they move when you fuck a slave pins them as such.
 		<<else>>
@@ -51,7 +51,7 @@
 			They are covered in freckles, which are particularly dense in the cleft between them.
 		<</if>>
 	<<elseif $PC.boobsBonus == -1>>
-		you have a @@.orange;pair of D-cup breasts.@@ They are nice, perky and bounce pleasantly as you fuck your slaves.
+		you have a @@.orange;pair of D cup breasts.@@ They are nice, perky and bounce pleasantly as you fuck your slaves.
 		<<if $PC.lactation > 0>>
 			Your breasts feel bigger lately; likely a side effect of your lactation.
 		<</if>>
@@ -61,7 +61,7 @@
 			They are covered in freckles, which are particularly dense in the cleft between them.
 		<</if>>
 	<<elseif $PC.boobsBonus == -2>>
-		you have a @@.orange;pair of C-cup breasts.@@ They are nice and perky, with just a little bounce when you fuck your slaves.
+		you have a @@.orange;pair of C cup breasts.@@ They are nice and perky, with just a little bounce when you fuck your slaves.
 		<<if $PC.lactation > 0>>
 			Your breasts feel bigger lately; likely a side effect of your lactation.
 		<</if>>
@@ -71,7 +71,7 @@
 			They are covered in freckles, which are particularly dense in the cleft between them.
 		<</if>>
 	<<elseif $PC.boobsBonus == -3>>
-		you have a @@.orange;pair of B-cup breasts.@@ They are nice and perky, with almost no bounce when you fuck your slaves.
+		you have a @@.orange;pair of B cup breasts.@@ They are nice and perky, with almost no bounce when you fuck your slaves.
 		<<if $PC.lactation > 0>>
 			Your breasts feel bigger lately; likely a side effect of your lactation.
 		<</if>>
@@ -81,7 +81,7 @@
 			They are covered in freckles, which are particularly dense in the cleft between them.
 		<</if>>
 	<<elseif $PC.boobs == 1>>
-		you have a @@.orange;healthy pair of DD breasts.@@ They are nice, perky and jiggle pleasantly with your every move.
+		you have a @@.orange;healthy pair of DD cup breasts.@@ They are nice, perky and jiggle pleasantly with your every move.
 		<<if $PC.lactation > 0>>
 			Your breasts feel fuller lately; likely a side effect of your lactation.
 		<</if>>
diff --git a/src/uncategorized/PESS.tw b/src/uncategorized/PESS.tw
index c5c29d4d317..159cd0b4cd9 100644
--- a/src/uncategorized/PESS.tw
+++ b/src/uncategorized/PESS.tw
@@ -101,7 +101,7 @@ Your milkmaid <<EventNameLink $activeSlave>> worked hard today. The cows have it
 
 <<case "loving concubine">>
 
-It's been a long, harassing day as owner of the arcology. You're composing an angry communication to a couple of imbecile tenants who seem to think they're still in their old world shithole of a homeland, insist on acting like it, and are also wealthy enough to make it unwise to simply defenestrate them from the nearest window. Not that you aren't tempted. Suddenly, you feel a moist, <<if ($activeSlave.lips > 70)>>massive<<elseif ($activeSlave.lips > 40)>>pillowlike<<else>>girlish<</if>> pair of lips nibbling their way along your ear, and a <<if ($activeSlave.muscles > 95)>>powerful<<elseif ($activeSlave.muscles > 30)>>strong<<else>>feminine<</if>> hand over your shoulder. Its owner <<if !canTalk($activeSlave)>>passes you a handwritten note: "? ? It can wait, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>> ? ?"<<else>><<say whisper>>s: "It can wait, <<Master>>."<</if>>
+It's been a long, harassing day as owner of the arcology. You're composing an angry communication to a couple of imbecile tenants who seem to think they're still in their old world shithole of a homeland, insist on acting like it, and are also wealthy enough to make it unwise to simply defenestrate them from the nearest window. Not that you aren't tempted. Suddenly, you feel a moist, <<if ($activeSlave.lips > 70)>>massive<<elseif ($activeSlave.lips > 40)>>pillowlike<<else>>girlish<</if>> pair of lips nibbling their way along your ear, and a <<if ($activeSlave.muscles > 95)>>powerful<<elseif ($activeSlave.muscles > 30)>>strong<<else>>feminine<</if>> hand over your shoulder. Its owner <<if !canTalk($activeSlave)>>passes you a handwritten note: "? ? It can wait, <<= WrittenMaster()>> ? ?"<<else>><<say whisper>>s: "It can wait, <<Master>>."<</if>>
 
 You turn to see your concubine <<EventNameLink $activeSlave>>'s <<if ($activeSlave.butt > 5)>>massive, nude ass<<elseif ($activeSlave.butt > 2)>>big naked butt<<else>>nice, nude rear<</if>> vanishing back into your suite.<<if ($activeSlave.boobs > 2000)>> As $he sways away from you, you can clearly see the sides of $his massive tits, sticking out on either side of $his torso.<</if>>
 
diff --git a/src/uncategorized/RECI.tw b/src/uncategorized/RECI.tw
index 28f297dc4e0..445b9123600 100644
--- a/src/uncategorized/RECI.tw
+++ b/src/uncategorized/RECI.tw
@@ -217,7 +217,7 @@ And, <<Master>>." $He arches $his back prettily and then scoots $himself down th
 	<</if>>
 <</for>>
 
-<<EventNameLink $activeSlave>> is standing before your desk for an inspection. The $desc is naked, of course, and is devoted enough to find the situation arousing: $he's being inspected by $his <<= masterTitle()>> in the nude, which is sexual enough, and past inspections have often led to a quick fuck. The horny bitch obviously wants it;
+<<EventNameLink $activeSlave>> is standing before your desk for an inspection. The $desc is naked, of course, and is devoted enough to find the situation arousing: $he's being inspected by $his <<= WrittenMaster()>> in the nude, which is sexual enough, and past inspections have often led to a quick fuck. The horny bitch obviously wants it;
 <<if ($activeSlave.dick > 0) && ($activeSlave.dickAccessory == "chastity" || $activeSlave.dickAccessory == "combined chastity")>>
 	$his chastity cage is dribbling precum, and $he's clearly uncomfortable with simultaneous arousal and unwillingness to suffer a hardon inside it.
 <<elseif canAchieveErection($activeSlave)>>
@@ -493,7 +493,7 @@ $He looks pensive, and goes through two false starts before $he clears $his thro
 <<link "Yes $he can">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	When $he sees you stand up from behind your desk<<if ($PC.dick == 0)>>and pull on a strap-on<</if>>, $he turns fully away from you, cocking $his hips at just the right angle to offer you $his anus, without any preamble or foreplay. But you come up behind $him and encircle $his <<if ($activeSlave.belly >= 1500)>><<if $activeSlave.preg > $activeSlave.pregData.normalBirth/8>>pregnant <<else>>rounded <</if>>belly<<elseif ($activeSlave.weight > 10)>>plush belly<<elseif ($activeSlave.muscles > 5)>>toned stomach<<else>>trim waist<</if>> with your capable hands, your lips nibbling along the line of $his <<if ($activeSlave.muscles > 30)>>strong<<elseif ($activeSlave.muscles > 5)>>toned<<else>>soft<</if>> shoulders and neck. $He shudders as the embrace brings your <<if ($PC.dick == 0)>>strap-on<<else>>dick<</if>> <<if ($activeSlave.height >= 185)>>up between $his buttocks, since $he's nearly as tall as you<<elseif ($activeSlave.height >= 170)>>pressing into $his asscrack, since $he's shorter than you<<else>>nestling down into $his asscrack, since $he's so much shorter than you<</if>>. You whisper that a good slave girl doesn't have to touch $himself to come when $his <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>> fucks $his butt, and ask whether $he's a good slave girl. $He shivers and promises that $he is, rubbing $his asshole against your <<if ($PC.dick == 0)>>phallus<<else>>cockhead<</if>>. $He gives a feminine sigh as it slides into $him, and moves softly within your embrace, doing $his best to pleasure you with $his girly ass. $He was already very close, and your loving touch so aroused $him that $he gasps and stiffens after only a few thrusts,
+	When $he sees you stand up from behind your desk<<if ($PC.dick == 0)>>and pull on a strap-on<</if>>, $he turns fully away from you, cocking $his hips at just the right angle to offer you $his anus, without any preamble or foreplay. But you come up behind $him and encircle $his <<if ($activeSlave.belly >= 1500)>><<if $activeSlave.preg > $activeSlave.pregData.normalBirth/8>>pregnant <<else>>rounded <</if>>belly<<elseif ($activeSlave.weight > 10)>>plush belly<<elseif ($activeSlave.muscles > 5)>>toned stomach<<else>>trim waist<</if>> with your capable hands, your lips nibbling along the line of $his <<if ($activeSlave.muscles > 30)>>strong<<elseif ($activeSlave.muscles > 5)>>toned<<else>>soft<</if>> shoulders and neck. $He shudders as the embrace brings your <<if ($PC.dick == 0)>>strap-on<<else>>dick<</if>> <<if ($activeSlave.height >= 185)>>up between $his buttocks, since $he's nearly as tall as you<<elseif ($activeSlave.height >= 170)>>pressing into $his asscrack, since $he's shorter than you<<else>>nestling down into $his asscrack, since $he's so much shorter than you<</if>>. You whisper that a good slave girl doesn't have to touch $himself to come when $his <<= WrittenMaster()>> fucks $his butt, and ask whether $he's a good slave girl. $He shivers and promises that $he is, rubbing $his asshole against your <<if ($PC.dick == 0)>>phallus<<else>>cockhead<</if>>. $He gives a feminine sigh as it slides into $him, and moves softly within your embrace, doing $his best to pleasure you with $his girly ass. $He was already very close, and your loving touch so aroused $him that $he gasps and stiffens after only a few thrusts,
 	<<if ($activeSlave.dick > 0) && ($activeSlave.dickAccessory == "chastity")>>
 		shuddering
 	<<elseif ($activeSlave.dick > 0) && canAchieveErection($activeSlave)>>
diff --git a/src/uncategorized/RESS.tw b/src/uncategorized/RESS.tw
index afeda57b497..09b30c7f66d 100644
--- a/src/uncategorized/RESS.tw
+++ b/src/uncategorized/RESS.tw
@@ -2469,7 +2469,7 @@ You decide to stop by to see $his method at work. By the time you arrive, $he's
 <<case "forbidden masturbation">>
 
 <<if $assistant > 0>>
-	There is an alert from $assistantName, in her deliciously feminine voice: "$activeSlave.slaveName is masturbating, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>>. Ooh, $he's breaking the rules, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>>!" Her avatar
+	There is an alert from $assistantName, in her deliciously feminine voice: "$activeSlave.slaveName is masturbating, <<= WrittenMaster()>>. Ooh, $he's breaking the rules, <<= WrittenMaster()>>!" Her avatar
 	<<switch $assistantAppearance>>
 	<<case "monstergirl">>
 		strokes its dicks suggestively.
@@ -2507,7 +2507,7 @@ You decide to stop by to see $his method at work. By the time you arrive, $he's
 		spins accusingly.
 	<</switch>>
 <<else>>
-	There is a gentle alert from $assistantName: "$activeSlave.slaveName is masturbating in violation of the rules, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>>."
+	There is a gentle alert from $assistantName: "$activeSlave.slaveName is masturbating in violation of the rules, <<= WrittenMaster()>>."
 <</if>>
 A video feed appears.
 <<if ["chastity belt", "combined chastity"].includes($activeSlave.vaginalAccessory)>>
@@ -3100,7 +3100,7 @@ $He doesn't phrase it quite like that, of course.
 
 One evening, $assistantName breaks in on your
 <<if $assistant > 0>>
-	work, her $assistantAppearance avatar looking uncharacteristically somber. "<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>>," she says, "a group of tourists are giving <<EventNameLink $activeSlave>> a bad time." Before you can ask why the security drones haven't addressed the situation, she continues, "They're not abusing $him physically or anything. But, look." She
+	work, her $assistantAppearance avatar looking uncharacteristically somber. "<<= WrittenMaster()>>," she says, "a group of tourists are giving <<EventNameLink $activeSlave>> a bad time." Before you can ask why the security drones haven't addressed the situation, she continues, "They're not abusing $him physically or anything. But, look." She
 <<else>>
 	work, announcing that a group of visitors to the arcology are being verbally abusive to <<EventNameLink $activeSlave>>. Before you can ask why it's bothering you with this, it continues, "An enslavement opportunity may exist," and
 <</if>>
@@ -4773,7 +4773,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 		<<if $mutinery != 1>>
 			<br><<link "Lock $his dick in chastity">>
 				<<replace "#result2">>
-				You simply clamp a chastity cage onto her limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.mediumaquamarine;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<if $PC.customTitle != 0>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>> is getting locked in chastity, @@.mediumaquamarine;spreading defiance@@ through your rebellious slaves.
+				You simply clamp a chastity cage onto her limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.mediumaquamarine;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<= WrittenMaster()>> is getting locked in chastity, @@.mediumaquamarine;spreading defiance@@ through your rebellious slaves.
 				<<set $activeSlave.trust += 10, $activeSlave.dickAccessory = "chastity">>
 				<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
 				<</replace>>
@@ -4873,7 +4873,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 		<<if $mutinery != 1>>
 			<br><<link "Lock $his dick in chastity">>
 				<<replace "#result2">>
-				You simply clamp a chastity cage onto $his limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.mediumaquamarine;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<if $PC.customTitle != 0>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>> is getting locked in chastity, @@.mediumaquamarine;spreading defiance@@ through your rebellious slaves.
+				You simply clamp a chastity cage onto $his limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.mediumaquamarine;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<= WrittenMaster()>> is getting locked in chastity, @@.mediumaquamarine;spreading defiance@@ through your rebellious slaves.
 				<<set $activeSlave.trust += 10, $activeSlave.dickAccessory = "chastity">>
 				<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
 				<</replace>>
@@ -4968,7 +4968,7 @@ brought in to you. This time <<EventNameLink $activeSlave>> has been sent to del
 		<<if $mutinery != 1>>
 			<br><<link "Lock $his dick in chastity">>
 				<<replace "#result2">>
-				You simply clamp a chastity cage onto $his limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.mediumaquamarine;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master<<else>>Mistress<</if>> is getting locked in chastity, @@.mediumaquamarine;spreading defiance@@ through your rebellious slaves.
+				You simply clamp a chastity cage onto $his limp dick; $he'll be taking a little break from fucking girls for the time being. When $he comes to and finds $himself locked in chastity, immediately begins fiddling with it in an attempt to remove it. $He feels this punishment is laughable and only @@.mediumaquamarine;grows more defiant.@@ Word spreads through your chattel that the only downside of trying to rape <<= WrittenMaster()>> is getting locked in chastity, @@.mediumaquamarine;spreading defiance@@ through your rebellious slaves.
 				<<set $activeSlave.trust += 10, $activeSlave.dickAccessory = "chastity">>
 				<<set $slaves.forEach(function(s) { if (s.devotion < -50) { s.trust += 5; } })>>
 				<</replace>>
@@ -18544,7 +18544,7 @@ You tell her kindly that you understand, and that $he'll be trained to address t
 <br><<link "Threaten to convert $him into a Fuckdoll">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-		You order a Fuckdoll brought to your office. $activeSlave.slaveName <<if canSee($activeSlave)>>watches it totter in<<elseif canHear($activeSlave)>>listens to the clicks of its approaching heels and the ominous squeaking of its latex shell<<else>>feels the uncomfortable latex skin of its suit when it brushes up against $him<</if>>, automatically following the tugs on its leash and the tonal commands passed by its suit. $He already understands the implicit threat, and $he shivers uncontrollably, @@.gold;almost falling to $his knees in fear.@@ Not content with that, you tell $him that $he's trying your patience with her behavior. If $he doesn't control $himself better in the future, you'll give up on $him and convert her into a Fuckdoll. At the spoken threat $activeSlave.slaveName does collapse, but you order $him to get back to her feet and <<if canSee($activeSlave)>>watch<<else>>pay attention<</if>>. $He does, shakily, tears streaming down her face as you put the Fuckdoll on its all fours, as though it were about to take dick. Its <<if $activeSlave.vagina > -1>>holes are pointed straight at $activeSlave.slaveName's face, <<if canSee($activeSlave)>>and $he can't avoid seeing how loose and used they look<<else>>grab both $his hands, and force one into each of its blown out holes. $activeSlave.slaveName shrieks in horror at the recognizable sensation<</if>><<else>>rear hole is pointed straight at $activeSlave.slaveName's face,<<if canSee($activeSlave)>> and $he can't avoid seeing how loose and used it looks<<else>>grab both $his hands, and force them into its blown out ass. $activeSlave.slaveName shrieks in horror at the recognizable sensation<</if>><</if>>. Suddenly, you activate the Fuckdoll's suit's punishment systems. It does not and cannot scream, but <<if canSee($activeSlave)>>a slight stiffening of its posture communicates extreme anguish, and its sphincter spasms tightly closed with obviously involuntary force<<else>>the sudden, pitiful attempt to clamp down on $his arms makes it perfectly clear that you just forced it to undergo extreme anguish<</if>>. $activeSlave.slaveName is almost incapacitated by terror.
+		You order a Fuckdoll brought to your office. $activeSlave.slaveName <<if canSee($activeSlave)>>watches it totter in<<elseif canHear($activeSlave)>>listens to the clicks of its approaching heels and the ominous squeaking of its latex shell<<else>>feels the uncomfortable latex skin of its suit when it brushes up against $him<</if>>, automatically following the tugs on its leash and the tonal commands passed by its suit. $He already understands the implicit threat, and $he shivers uncontrollably, @@.gold;almost falling to $his knees in fear.@@ Not content with that, you tell $him that $he's trying your patience with $his behavior. If $he doesn't control $himself better in the future, you'll give up on $him and convert $him into a Fuckdoll. At the spoken threat $activeSlave.slaveName does collapse, but you order $him to get back to $his feet and <<if canSee($activeSlave)>>watch<<else>>pay attention<</if>>. $He does, shakily, tears streaming down $his face as you put the Fuckdoll on all fours, as though it were about to take dick. Its <<if $activeSlave.vagina > -1>>holes are pointed straight at $activeSlave.slaveName's face, <<if canSee($activeSlave)>>and $he can't avoid seeing how loose and used they look<<else>>so you grab both $his hands and force one into each of its blown out holes. $activeSlave.slaveName shrieks in horror at the recognizable sensation<</if>><<else>>rear hole is pointed straight at $activeSlave.slaveName's face,<<if canSee($activeSlave)>> and $he can't avoid seeing how loose and used it looks<<else>>so you grab both $his hands and force them into its blown out ass. $activeSlave.slaveName shrieks in horror at the recognizable sensation<</if>><</if>>. Suddenly, you activate the Fuckdoll's suit's punishment systems. It does not and cannot scream, but <<if canSee($activeSlave)>>a slight stiffening of its posture communicates extreme anguish, and its sphincter spasms tightly closed with obviously involuntary force<<else>>the sudden, pitiful attempt to clamp down on $his arms makes it perfectly clear that you just forced it to undergo extreme anguish<</if>>. $activeSlave.slaveName is almost incapacitated by terror.
 		<<set $activeSlave.trust -= 8>>
 	<</replace>>
 <</link>>
diff --git a/src/uncategorized/RETS.tw b/src/uncategorized/RETS.tw
index cadb2bc0441..9c3cbef9919 100644
--- a/src/uncategorized/RETS.tw
+++ b/src/uncategorized/RETS.tw
@@ -1354,7 +1354,7 @@ $he adds impishly. Hearing this, $subSlave.slaveName lets the breast pop free of
 <br><<link "What a cute couple">>
 	<<EventNameDelink $activeSlave>>
 	<<replace "#result">>
-	You tell them they make a cute couple. The slaves start with surprise, since they didn't know you were watching, producing a delightful jiggle of smashed-together boob. "Thank you, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>," they chorus correctly, before turning back to look at each other. They take your comment quite seriously, both of them seemingly forgetting that they're in the middle of having sex to consider it. $activeSlave.slaveName speaks first.
+	You tell them they make a cute couple. The slaves start with surprise, since they didn't know you were watching, producing a delightful jiggle of smashed-together boob. "Thank you, <<= WrittenMaster()>>," they chorus correctly, before turning back to look at each other. They take your comment quite seriously, both of them seemingly forgetting that they're in the middle of having sex to consider it. $activeSlave.slaveName speaks first.
 	"I gue<<ss>> I never really thought about you that way,"
 	$he says to the huge-boobed <<if $subSlave.physicalAge > 30>>_woman2<<elseif $subSlave.physicalAge > 18>>_girl2<<elseif $subSlave.physicalAge > 12>>teen<<else>>_loli2<</if>> trapped beneath $him.
 	<br><br>
diff --git a/src/uncategorized/lawCompliance.tw b/src/uncategorized/lawCompliance.tw
index 5f9d806230d..91804a9aca1 100644
--- a/src/uncategorized/lawCompliance.tw
+++ b/src/uncategorized/lawCompliance.tw
@@ -341,7 +341,7 @@
 	<<if $activeSlave.face < 0>>
 		<<set $activeSlave.face = random(0,60)>>
 	<</if>>
-	While $he was in the slave pens, $he saw that less attractive slaves were immediately designated as menials and fuckdolls, and $he is @@.gold;terrified@@ that should $he lose $his beauty, $he'll be considered worthless and be reassigned on the spot.
+	While $he was in the slave pens, $he saw that less attractive slaves were immediately designated as menials and Fuckdolls, and $he is @@.gold;terrified@@ that should $he lose $his beauty, $he'll be considered worthless and be reassigned on the spot.
 	<<set $activeSlave.trust -= 5>>
 <</if>>
 
@@ -349,7 +349,7 @@
 	<<if $activeSlave.face < 20>>
 		<<set $activeSlave.face = random(20,100)>>
 	<</if>>
-	While $he was in the slave pens, $he saw that less attractive slaves were immediately designated as menials and fuckdolls, and $he is @@.gold;terrified@@ that should $he loses $his beauty, $he'll be considered worthless and be reassigned on the spot.
+	While $he was in the slave pens, $he saw that less attractive slaves were immediately designated as menials and Fuckdolls, and $he is @@.gold;terrified@@ that should $he loses $his beauty, $he'll be considered worthless and be reassigned on the spot.
 	<<set $activeSlave.trust -= 5>>
 <</if>>
 
@@ -372,7 +372,7 @@
 			<<set $activeSlave.devotion += 10, $activeSlave.trust -= 10>>
 		<</if>>
 	<<else>>
-		While $he was in the slave pens, $he saw that short and even average sized slaves were commonly designated as menials and fuckdolls. $His tall stature gives $him a promising future compared to $his shorter peers, leaving $him @@.mediumOrchid;inappropriately proud@@ of $his height.
+		While $he was in the slave pens, $he saw that short and even average sized slaves were commonly designated as menials and Fuckdolls. $His tall stature gives $him a promising future compared to $his shorter peers, leaving $him @@.mediumOrchid;inappropriately proud@@ of $his height.
 		<<set $activeSlave.devotion -= 10>>
 	<</if>>
 <<elseif $BasicHeightSMR == -1>>
@@ -386,14 +386,14 @@
 			<<set $activeSlave.devotion += 10, $activeSlave.trust -= 10>>
 		<</if>>
 	<<else>>
-		While $he was in the slave pens, $he saw that tall and even average sized slaves were commonly designated as menials and fuckdolls. $His short stature gives $him a promising future compared to $his towering peers, leaving $him @@.mediumOrchid;inappropriately proud@@ of $his height.
+		While $he was in the slave pens, $he saw that tall and even average sized slaves were commonly designated as menials and Fuckdolls. $His short stature gives $him a promising future compared to $his towering peers, leaving $him @@.mediumOrchid;inappropriately proud@@ of $his height.
 		<<set $activeSlave.devotion -= 10>>
 	<</if>>
 <</if>>
 
 <<if $AdvancedHeightSMR == 1>>
 	<<set $activeSlave.height = Math.round(Height.random($activeSlave, {skew: $AdvancedHeightSMR, limitMult: [0, 5 * $AdvancedHeightSMR]}))>>
-	While $he was in the slave pens, $he saw that slaves on the shorter end of the height curve were immediately designated as menials and fuckdolls.
+	While $he was in the slave pens, $he saw that slaves on the shorter end of the height curve were immediately designated as menials and Fuckdolls.
 	<<if $activeSlave.physicalAge < 16>>
 		$He is @@.gold;terrified@@ that if $he doesn't keep growing, $he'll be reassigned on the spot without a second thought.
 		<<set $activeSlave.trust -= 5>>
@@ -403,7 +403,7 @@
 	<</if>>
 <<elseif $AdvancedHeightSMR == -1>>
 	<<set $activeSlave.height = Math.round(Height.random($activeSlave, {skew: $AdvancedHeightSMR, limitMult: [0, 5 * $AdvancedHeightSMR]}))>>
-	While $he was in the slave pens, $he saw that slaves on the taller end of the height curve were immediately designated as menials and fuckdolls.
+	While $he was in the slave pens, $he saw that slaves on the taller end of the height curve were immediately designated as menials and Fuckdolls.
 	<<if $activeSlave.physicalAge < 16>>
 		$He is @@.gold;terrified@@ that if $he goes through a growth spurt, $he'll be reassigned on the spot without a second thought.
 		<<set $activeSlave.trust -= 5>>
@@ -417,7 +417,7 @@
 	<<if $activeSlave.intelligence <= -15>>
 		<<set $activeSlave.intelligence = Intelligence.random({limitIntelligence: [0,40]})>>
 	<</if>>
-	While $he was in the slave pens, $he saw that less intelligent slaves were immediately designated as menials and fuckdolls, and $he is @@.gold;terrified@@ that if $he makes a mistake, $he'll be thought stupid and be reassigned on the spot.
+	While $he was in the slave pens, $he saw that less intelligent slaves were immediately designated as menials and Fuckdolls, and $he is @@.gold;terrified@@ that if $he makes a mistake, $he'll be thought stupid and be reassigned on the spot.
 	<<set $activeSlave.trust -= 5>>
 <</if>>
 
@@ -425,7 +425,7 @@
 	<<if $activeSlave.intelligence <= 15>>
 		<<set $activeSlave.intelligence = Intelligence.random({limitIntelligence: [16,100]})>>
 	<</if>>
-	While $he was in the slave pens, $he saw that less intelligent slaves were immediately designated as menials and fuckdolls, and $he is @@.gold;terrified@@ that if $he makes a mistake, $he'll be thought stupid and be reassigned on the spot.
+	While $he was in the slave pens, $he saw that less intelligent slaves were immediately designated as menials and Fuckdolls, and $he is @@.gold;terrified@@ that if $he makes a mistake, $he'll be thought stupid and be reassigned on the spot.
 	<<set $activeSlave.trust -= 5>>
 <</if>>
 
diff --git a/src/uncategorized/longSlaveDescription.tw b/src/uncategorized/longSlaveDescription.tw
index e49cd581481..55f7725c891 100644
--- a/src/uncategorized/longSlaveDescription.tw
+++ b/src/uncategorized/longSlaveDescription.tw
@@ -953,7 +953,7 @@ is
 
 <<else>> /* FUCKDOLL MENTAL REPORT */
 
-	It's impossible to tell what intelligence or inclinations a fuckdoll might have by looking at it, but the most recent records indicate that this one is
+	It's impossible to tell what intelligence or inclinations a Fuckdoll might have by looking at it, but the most recent records indicate that this one is
 	<<if ($activeSlave.intelligence+$activeSlave.intelligenceImplant > 95)>>
 		@@.deepskyblue;brilliant@@
 	<<elseif ($activeSlave.intelligence+$activeSlave.intelligenceImplant > 50)>>
@@ -989,7 +989,7 @@ is
 
 	<<if ($activeSlave.behavioralFlaw != "none") ||($activeSlave.sexualFlaw != "none") ||($activeSlave.behavioralQuirk != "none") ||($activeSlave.sexualQuirk != "none")>>
 		<<if ($activeSlave.behavioralFlaw != "none") ||($activeSlave.sexualFlaw != "none")>>
-			$His remaining mental flaws are likewise impossible to discern, but if $he was allowed out of $his suit, this fuckdoll would probably still
+			$His remaining mental flaws are likewise impossible to discern, but if $he was allowed out of $his suit, this Fuckdoll would probably still
 			<<if $activeSlave.behavioralFlaw != "none">>
 				<<switch $activeSlave.behavioralFlaw>>
 				<<case "hates men">>
diff --git a/src/uncategorized/motherDaughterWorkaround.tw b/src/uncategorized/motherDaughterWorkaround.tw
index 7b4655921d5..e21e5f7e5b3 100644
--- a/src/uncategorized/motherDaughterWorkaround.tw
+++ b/src/uncategorized/motherDaughterWorkaround.tw
@@ -46,12 +46,12 @@ Your new pair of slaves look frightened and uncertain, but seem encouraged by ea
 <<set _secondSlave.attrXY = Math.clamp(_secondSlave.attrXY, 0, 100)>>
 <<set _secondSlave.energy += random(-20,20)>>
 <<set _secondSlave.fetishStrength = random(0,90)>>
-<<set _secondSlave.fetish = either("none", "none", "none", "none", "none", "none", "submissive", "cumslut", "humiliation", "buttslut", "pregnancy", "sadist", "dom", "masochist")>>
-<<set _secondSlave.behavioralFlaw = either("none", "none", "none", "arrogant", "bitchy", "odd", "hates men", "hates women", "hates women", "anorexic", "masochist", "gluttonous", "devout", "liberated")>>
+<<set _secondSlave.fetish = either("buttslut", "cumslut", "dom", "humiliation", "masochist", "none", "none", "none", "none", "none", "none", "pregnancy", "sadist", "submissive")>>
+<<set _secondSlave.behavioralFlaw = either("anorexic", "arrogant", "bitchy", "devout", "gluttonous", "hates men", "hates women", "hates women", "liberated", "masochist", "none", "none", "none", "odd")>>
 <<if (_secondSlave.behavioralFlaw == "devout")>>
-	<<set _secondSlave.sexualFlaw = either("none", "repressed", "shamefast", "apathetic")>>
+	<<set _secondSlave.sexualFlaw = either("apathetic", "none", "repressed", "shamefast")>>
 <<else>>
-	<<set _secondSlave.sexualFlaw = either("none", "none", "none", "none", "hates oral", "hates anal", "hates penetration", "repressed", "idealistic", "shamefast", "apathetic", "crude", "judgemental")>>
+	<<set _secondSlave.sexualFlaw = either("apathetic", "crude", "hates anal", "hates oral", "hates penetration", "idealistic", "judgemental", "none", "none", "none", "none", "repressed", "shamefast")>>
 <</if>>
 
 <<if $familyTesting == 1>>
diff --git a/src/uncategorized/pSnatchAndGrabResult.tw b/src/uncategorized/pSnatchAndGrabResult.tw
index 922509ec8b4..88ea9ebab58 100644
--- a/src/uncategorized/pSnatchAndGrabResult.tw
+++ b/src/uncategorized/pSnatchAndGrabResult.tw
@@ -130,9 +130,9 @@
 
 In the middle of the night, there is a polite knock on your penthouse door. You are alerted by $assistantName, who observes with some irritation that the mercenary who knocked has gone, has left a large case outside the door, and has satisfied the security systems that the case contains nothing hazardous.
 
-The case prompts you for a handprint code; your hand works just fine. It contains a naked, hairless, perfectly healthy young body in the fetal position. This person awakes as the case opens, looks you confidently in the eye, and says "Are you my <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>?"
+The case prompts you for a handprint code; your hand works just fine. It contains a naked, hairless, perfectly healthy young body in the fetal position. This person awakes as the case opens, looks you confidently in the eye, and says "Are you my <<= WrittenMaster()>>?"
 
-When you state that, apparently, you are, she climbs out of the case, prostrates herself in the hall before you, and says reverentially into the floor, "I love you, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>."
+When you state that, apparently, you are, she climbs out of the case, prostrates herself in the hall before you, and says reverentially into the floor, "I love you, <<= WrittenMaster()>>."
 
 <br><br>
 <<set $saleDescription = 0, $applyLaw = 0>><<include "Long Slave Description">>
diff --git a/src/uncategorized/personalAssistantAppearance.tw b/src/uncategorized/personalAssistantAppearance.tw
index 1393d8d2c19..f76086e9dba 100644
--- a/src/uncategorized/personalAssistantAppearance.tw
+++ b/src/uncategorized/personalAssistantAppearance.tw
@@ -625,7 +625,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFS
 	<<case "eugenics">>
 		slavegirl wearing nothing but an overly complex chastity belt and trying her best to do master proud.
 	<<case "degradationist">>
-		girl wearing an oversized v-neck t-shirt. The neck hole hangs low enough to show off her perky A-cup tits and the piercings through them.
+		girl wearing an oversized v-neck t-shirt. The neck hole hangs low enough to show off her perky A cup tits and the piercings through them.
 	<<case "physical idealist">>
 		girl wearing spats and a tight shirt. She occasionally renders herself sweaty, as if just finishing exercising.
 	<<case "hedonistic decadence">>
@@ -710,7 +710,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFS
 	<<case "eugenics">>
 		belly, rather, she was. Her chastity belt has been torn open and her belly is grotesquely swollen with subhuman spawn. Occasionally a malformed, impish child claws its way out of her violated pussy.
 	<<case "degradationist">>
-		belly wearing an open vest and a thong. It shows off her pierced milky B-cup tits and swollen pregnant belly. A large bar is driven through her popped navel.
+		belly wearing an open vest and a thong. It shows off her pierced milky B cup tits and swollen pregnant belly. A large bar is driven through her popped navel.
 	<<case "physical idealist">>
 		belly wearing spats and a tight shirt. Her shirt rides up on her large belly and her growing butt fills out her spats nicely. She cradles her belly with a sullen look knowing it limits her activities.
 	<<case "hedonistic decadence">>
@@ -724,7 +724,7 @@ She's a cute little <<if $arcologies[0].FSSupremacist != "unset" && $assistantFS
 	<<case "transformation fetishist">>
 		belly wearing short shorts and a t-shirt. At first glance it looks like she stuck two overinflated balloons up her shirt but with closer inspection they are revealed to be ridiculous implants. They sit atop her bulging belly.
 	<<case "pastoralist">>
-		belly wearing shorts and a white shirt. There's a little wet spot over each of her nipples. Her breasts have swollen to C-cups thanks to her pregnancy and the milkings.
+		belly wearing shorts and a white shirt. There's a little wet spot over each of her nipples. Her breasts have swollen to C cups thanks to her pregnancy and the milkings.
 	<<case "maturity preferentialist">>
 		belly wearing a school uniform. Her top is left unbuttoned to allow her belly room. She keeps rubbing her bottom, making it look like Teacher just spanked her.
 	<<case "youth preferentialist">>
diff --git a/src/uncategorized/ptWorkaround.tw b/src/uncategorized/ptWorkaround.tw
index d5d6f3c1733..e455be89ed4 100644
--- a/src/uncategorized/ptWorkaround.tw
+++ b/src/uncategorized/ptWorkaround.tw
@@ -20,46 +20,46 @@
 <<case "build her devotion">>
 	<<set $activeSlave.devotion += 6>>
 	<<if ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish == "submissive")>>
-		Since $activeSlave.slaveName is a submissive, you @@.hotpink;build $his devotion to you@@ by indulging $his need to be dominated. Already smiling to $himself, $he changes into bondage gear that blinds her, forces her arms behind her back, forces her to present her breasts uncomfortably, and forces a painfully large dildo up her <<if $activeSlave.vagina > 0>>vagina<<if $activeSlave.anus > 0>> and anus<</if>><<elseif $activeSlave.anus > 0>>anus<</if>>. Thus attired, she is forced to serve you in whatever petty ways occur to you. $He holds your tablet for you on $his upthrust ass as you work, holds a thin beverage glass for you in her upturned mouth when you eat, and lies still so you can use her tits as a pillow whenever you recline. $He loves it.
+		Since $activeSlave.slaveName is a submissive, you @@.hotpink;build $his devotion to you@@ by indulging $his need to be dominated. Already smiling to $himself, $he changes into bondage gear that blinds her, forces her arms behind her back, forces her to present her breasts uncomfortably, and forces a painfully large dildo up her <<if $activeSlave.vagina > 0>>vagina<<if $activeSlave.anus > 0>> and anus<</if>><<elseif $activeSlave.anus > 0>>anus<</if>>. Thus attired, $he is forced to serve you in whatever petty ways occur to you. $He holds your tablet for you on $his upthrust ass as you work, holds a thin beverage glass for you in $his upturned mouth when you eat, and lies still so you can use $his tits as a pillow whenever you recline. $He loves it.
 	<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish == "cumslut") && ($PC.dick == 1)>>
-		Since $activeSlave.slaveName has an unusual taste for oral sex and cum, you @@.hotpink;build her devotion to you@@ by indulging her. You allow her to spend her free time following you around. She is permitted to act as your private cum receptacle. If you use another slave, you usually pull out and give her smiling face a facial. When you come inside another slave instead, $activeSlave.slaveName is allowed to get your cum anyway, regardless of whether that requires the other slave to spit it into her mouth or $activeSlave.slaveName to suck it out of the other slave's vagina or rectum. Either way, she rubs her stomach happily after she's swallowed it down.
+		Since $activeSlave.slaveName has an unusual taste for oral sex and cum, you @@.hotpink;build her devotion to you@@ by indulging her. You allow her to spend her free time following you around. $He is permitted to act as your private cum receptacle. If you use another slave, you usually pull out and give her smiling face a facial. When you come inside another slave instead, $activeSlave.slaveName is allowed to get your cum anyway, regardless of whether that requires the other slave to spit it into her mouth or $activeSlave.slaveName to suck it out of the other slave's vagina or rectum. Either way, $he rubs $his stomach happily after $he's swallowed it down.
 		<<set $activeSlave.oralCount += 20, $oralTotal += 20>>
 	<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish == "boobs")>>
-		Since $activeSlave.slaveName has an unusual taste for having her tits fondled, you @@.hotpink;build her devotion to you@@ by indulging her. You keep her near you as a sort of living stress ball. Whenever you have a free hand, whether you're conducting business or buttfucking another slave, you reach over and play with her. She sometimes masturbates while you massage her breasts and <<if $activeSlave.nipples == "fuckable">>finger<<else>>pinch<</if>> her nipples, but often she doesn't even need to.
+		Since $activeSlave.slaveName has an unusual taste for having her tits fondled, you @@.hotpink;build her devotion to you@@ by indulging her. You keep her near you as a sort of living stress ball. Whenever you have a free hand, whether you're conducting business or buttfucking another slave, you reach over and play with her. $He sometimes masturbates while you massage her breasts and <<if $activeSlave.nipples == "fuckable">>finger<<else>>pinch<</if>> her nipples, but often $he doesn't even need to.
 		<<set $activeSlave.mammaryCount += 20, $mammaryTotal += 20>>
 	<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish == "pregnancy")>>
-		Since $activeSlave.slaveName has an unusual taste for big pregnant bellies, you @@.hotpink;build her devotion to you@@ by indulging her. You <<if isItemAccessible("a small empathy belly") && $activeSlave.belly < 1500 && $activeSlave.weight < 130>>strap an enormous sympathy belly onto her and <<elseif $activeSlave.belly < 1500>>strap a pillow around her middle, give her an oversized shirt and <</if>>keep her near you as a sort of living stress ball. Whenever you have a free hand, whether you're conducting business or buttfucking another slave, you reach over and rub her dome of a belly for luck. Occasionally you pay more attention to her, making sure to fondle her rounded middle as you feel up $his motherly body. She sometimes masturbates when you aren't groping her, enjoying her gravid figure, but often she doesn't even need to.
+		Since $activeSlave.slaveName has an unusual taste for big pregnant bellies, you @@.hotpink;build her devotion to you@@ by indulging her. You <<if isItemAccessible("a small empathy belly") && $activeSlave.belly < 1500 && $activeSlave.weight < 130>>strap an enormous sympathy belly onto her and <<elseif $activeSlave.belly < 1500>>strap a pillow around her middle, give her an oversized shirt and <</if>>keep her near you as a sort of living stress ball. Whenever you have a free hand, whether you're conducting business or buttfucking another slave, you reach over and rub her dome of a belly for luck. Occasionally you pay more attention to her, making sure to fondle her rounded middle as you feel up $his motherly body. $He sometimes masturbates when you aren't groping her, enjoying her gravid figure, but often $he doesn't even need to.
 	<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish == "humiliation") && ((canDoVaginal($activeSlave) && $activeSlave.vagina > 0) || (canDoAnal($activeSlave) && $activeSlave.anus > 0))>>
-		Since $activeSlave.slaveName has an unusual sexuality, you @@.hotpink;build her devotion to you@@ by indulging her perversions. Since she's an absolute slut for humiliation, you let her whore around inside the special camera room whenever possible. When you're going out and feel like putting on a show, you bring her on a leash and fuck her in public. She comes harder than ever when you push her naked body up against the wall of a crowded public arcology elevator and molest her.
+		Since $activeSlave.slaveName has an unusual sexuality, you @@.hotpink;build her devotion to you@@ by indulging her perversions. Since $he's an absolute slut for humiliation, you let her whore around inside the special camera room whenever possible. When you're going out and feel like putting on a show, you bring her on a leash and fuck her in public. $He comes harder than ever when you push her naked body up against the wall of a crowded public arcology elevator and molest her.
 		<<set $activeSlave.oralCount += 4, $oralTotal += 4>>
 		<<= BothVCheck(4, 2)>>
 	<<elseif ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetish == "humiliation")>>
-		Since $activeSlave.slaveName has an unusual sexuality, you @@.hotpink;build her devotion to you@@ by indulging her perversions. Since she's an absolute slut for humiliation, you let her whore around inside the special camera room whenever possible. When you're going out and feel like putting on a show, you
+		Since $activeSlave.slaveName has an unusual sexuality, you @@.hotpink;build her devotion to you@@ by indulging her perversions. Since $he's an absolute slut for humiliation, you let her whore around inside the special camera room whenever possible. When you're going out and feel like putting on a show, you
 		<<if ($activeSlave.amp != 1)>>
-			bring her on a leash and have her service you in public. She comes harder than ever when you push her down on her knees in a crowded public arcology elevator and facefuck her while she masturbates fervently.
+			bring her on a leash and have her service you in public. $He comes harder than ever when you push her down on her knees in a crowded public arcology elevator and facefuck her while $he masturbates fervently.
 		<<else>>
-			carry her out and have her service you in public. She comes harder than ever when you push her face to your <<if $PC.dick == 1>>dick<<else>>pussy<</if>> in a crowded public arcology elevator and facefuck her while she tries her hardest to masturbate.
+			carry her out and have her service you in public. $He comes harder than ever when you push her face to your <<if $PC.dick == 1>>dick<<else>>pussy<</if>> in a crowded public arcology elevator and facefuck her while $he tries her hardest to masturbate.
 		<</if>>
 		<<set $activeSlave.oralCount += 8, $oralTotal += 8>>
 	<<elseif ($activeSlave.anus == 3) && ($activeSlave.vagina == 3) && $activeSlave.geneMods.rapidCellGrowth != 1>>
-		$activeSlave.slaveName is a stretched-out, well-traveled slut. Some like their holes loose, but most prefer cunts and butts that don't make sloppy noises when fucked. So, you spend some quality care time with her, carefully massaging her abused holes with oils and lotions. She comes, of course, but her pussy and asshole do benefit from the treatment. You allow her to service you with her mouth to avoid spoiling your work right away. Afterward, she <<if ($activeSlave.amp != 1)>>@@.hotpink;hugs you and gives you a kiss@@<<else>>@@.hotpink;gives you a kiss and tries to hug you,@@ but without arms, all she manages is a sort of nuzzle<</if>>.
+		$activeSlave.slaveName is a stretched-out, well-traveled slut. Some like their holes loose, but most prefer cunts and butts that don't make sloppy noises when fucked. So, you spend some quality care time with $him, carefully massaging $his abused holes with oils and lotions. $He comes, of course, but $his pussy and asshole do benefit from the treatment. You allow $him to service you with $his mouth to avoid spoiling your work right away. Afterward, $he <<if ($activeSlave.amp != 1)>>@@.hotpink;hugs you and gives you a kiss@@<<else>>@@.hotpink;gives you a kiss and tries to hug you,@@ but without arms, all $he manages is a sort of nuzzle<</if>>.
 		<<set $activeSlave.vagina--, $activeSlave.anus--,
 		$activeSlave.oralCount += 5, $oralTotal += 5>>
 	<<elseif $activeSlave.vagina == 0>>
-		$activeSlave.slaveName's accustomed to the slave life, so the experience is almost novel for her and she is @@.hotpink;touched by the affection.@@ She isn't used to being kissed, teased and massaged. She's almost disappointed when it becomes clear that you don't mean to take her virginity. You gently stimulate her <<if $activeSlave.dick>>dick<<elseif $activeSlave.clit>>clit<<else>>nipples<</if>> while she sucks you off, bringing her to a moaning climax as you cum in her mouth.
+		$activeSlave.slaveName's accustomed to the slave life, so the experience is almost novel for $him and $he is @@.hotpink;touched by the affection.@@ $He isn't used to being kissed, teased and massaged. $He's almost disappointed when it becomes clear that you don't mean to take $his virginity. You gently stimulate $his <<if $activeSlave.dick>>dick<<elseif $activeSlave.clit>>clit<<else>>nipples<</if>> while $he sucks you off, bringing $him to a moaning climax as you cum in $his mouth.
 		<<set $activeSlave.oralCount += 5, $oralTotal += 5>>
 	<<elseif ($activeSlave.anus == 0) && ($activeSlave.vagina < 0)>>
-		You haven't decided to take $activeSlave.slaveName's anus yet, so you let her suck you off and play with herself while she does. You stroke her hair, play with her tits, and generally pamper her while she orally services you. She's accustomed to the slave life, so the experience of affection is novel for her and she is @@.hotpink;touched by the affection.@@ She isn't used to being kissed, teased and massaged. She's almost disappointed when it becomes clear that you don't mean to take her virgin hole.
+		You haven't decided to take $activeSlave.slaveName's anus yet, so you let $him suck you off and play with $himself while $he does. You stroke $his hair, play with $his tits, and generally pamper $him while $he orally services you. $He's accustomed to the slave life, so the experience of affection is novel for $him and $he is @@.hotpink;touched by the affection.@@ $He isn't used to being kissed, teased and massaged. $He's almost disappointed when it becomes clear that you don't mean to take $his virgin hole.
 		<<set $activeSlave.oralCount += 5, $oralTotal += 5>>
 	<<elseif ($activeSlave.anus == 0) && ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>>
-		You fuck $activeSlave.slaveName, of course, but you do it slowly and lovingly, and keep well clear of her still-virgin asshole in the process. She's accustomed to the slave life, so the experience is almost novel for her and she is affectingly @@.hotpink;touched by the affection.@@ She isn't used to being kissed, teased and massaged before she takes cock. Slaves are usually used without regard to their orgasm, so she's also surprised and gratified when you make meticulous efforts to delay your own orgasm so it can coincide with her own. She's a puddle on the sheets under your hands.
+		You fuck $activeSlave.slaveName, of course, but you do it slowly and lovingly, and keep well clear of $his still-virgin asshole in the process. $He's accustomed to the slave life, so the experience is almost novel for $him and $he is affectingly @@.hotpink;touched by the affection.@@ $He isn't used to being kissed, teased and massaged before $he takes cock. Slaves are usually used without regard to their orgasm, so $he's also surprised and gratified when you make meticulous efforts to delay your own orgasm so it can coincide with $his own. $He's a puddle on the sheets under your hands.
 		<<set $activeSlave.oralCount += 4, $oralTotal += 4>>
 		<<= VaginalVCheck(4)>>
 	<<elseif $activeSlave.anus == 0>>
-		$activeSlave.slaveName's accustomed to the slave life, so the experience is almost novel for her and she is @@.hotpink;touched by the affection.@@ She isn't used to being kissed, teased and massaged. She's almost disappointed when it becomes clear that you don't mean to take her anal virginity. You gently stimulate her <<if $activeSlave.dick>>dick<<elseif $activeSlave.clit>>clit<<else>>nipples<</if>> while she sucks you off, bringing her to a moaning climax as you cum in her mouth.
+		$activeSlave.slaveName's accustomed to the slave life, so the experience is almost novel for $him and $he is @@.hotpink;touched by the affection.@@ $He isn't used to being kissed, teased and massaged. $He's almost disappointed when it becomes clear that you don't mean to take $his anal virginity. You gently stimulate $his <<if $activeSlave.dick>>dick<<elseif $activeSlave.clit>>clit<<else>>nipples<</if>> while $he sucks you off, bringing $him to a moaning climax as you cum in $his mouth.
 		<<set $activeSlave.oralCount += 5, $oralTotal += 5>>
 	<<else>>
-		You fuck $activeSlave.slaveName, of course, but you do it slowly and lovingly. She's accustomed to the slave life, so the experience is almost novel for her and she is affectingly @@.hotpink;touched by the affection.@@ She isn't used to being kissed, teased and massaged before she takes cock. Slaves are usually used without regard to their orgasm, so she's also surprised and gratified when you make meticulous efforts to delay your own orgasm so it can coincide with her own. She's a puddle on the sheets under your hands.
+		You fuck $activeSlave.slaveName, of course, but you do it slowly and lovingly. $He's accustomed to the slave life, so the experience is almost novel for $him and $he is affectingly @@.hotpink;touched by the affection.@@ $He isn't used to being kissed, teased and massaged before $he takes cock. Slaves are usually used without regard to their orgasm, so $he's also surprised and gratified when you make meticulous efforts to delay your own orgasm so it can coincide with $his own. $He's a puddle on the sheets under your hands.
 		<<set $activeSlave.oralCount += 4, $oralTotal += 4>>
 		<<if $activeSlave.vagina == 0>>
 			<<= VaginalVCheck(4)>>
@@ -68,21 +68,21 @@
 		<</if>>
 	<</if>>
 	<<if ($PC.slaving >= 100)>>
-		Your @@.springgreen;slave training experience@@ allows you to @@.hotpink;bend her to your will@@ more quickly without provoking resistance.
+		Your @@.springgreen;slave training experience@@ allows you to @@.hotpink;bend $him to your will@@ more quickly without provoking resistance.
 		<<set $activeSlave.devotion += 1>>
 	<</if>>
 	<<if ($activeSlave.trust > 10)>>
-		Spending time with you @@.mediumaquamarine;builds her trust in <<= WrittenMaster()>>.@@
+		Spending time with you @@.mediumaquamarine;builds $his trust in <<= WrittenMaster()>>.@@
 		<<set $activeSlave.trust += 4>>
 	<<else>>
-		Spending time with you @@.mediumaquamarine;reduces her fear towards you.@@
+		Spending time with you @@.mediumaquamarine;reduces $his fear towards you.@@
 		<<set $activeSlave.trust += 6>>
 	<</if>>
 	<<set $activeSlave.training = 0>>
 
 <<case "look after her">>
 	<<if $activeSlave.relationship == -3 && $activeSlave.fetish == "mindbroken">>
-		Since $activeSlave.slaveName is your wife and not all there, you keep $him under a watchful eye to make sure no harm comes to the broken girl. $He almost seems in better spirits under your care, not that it will matter in an hour or two.
+		Since $activeSlave.slaveName is your wife and not all there, you keep $him under a watchful eye to make sure no harm comes to the broken $girl. $He almost seems in better spirits under your care, not that it will matter in an hour or two.
 		<<set $activeSlave.kindness++>>
 	<</if>>
 	<<if ($activeSlave.health < 100)>>
@@ -90,89 +90,89 @@
 		<<set $activeSlave.health = $activeSlave.health+10>>
 	<</if>>
 	<<if (($activeSlave.anus == 3) || ($activeSlave.vagina == 3)) && $activeSlave.geneMods.rapidCellGrowth != 1>>
-		$activeSlave.slaveName is a veteran sex slave and has seen hard use. Tightening up a slave is difficult, but with close supervision and attention it can be done. You and your other slaves carefully apply injections, creams, and massage, and her other work is carefully managed to reduce wear and tear.
+		$activeSlave.slaveName is a veteran sex slave and has seen hard use. Tightening up a slave is difficult, but with close supervision and attention it can be done. You and your other slaves carefully apply injections, creams, and massage, and $his other work is carefully managed to reduce wear and tear.
 		<<if ($activeSlave.anus == 3) && (random(1,100) > 50)>>
-			@@.orange;Her anus has recovered and is now merely loose.@@
+			@@.orange;$His anus has recovered and is now merely loose.@@
 			<<set $activeSlave.anus-->>
 		<<elseif ($activeSlave.anus == 3)>>
-			Her distended anus does not improve this week.
+			$His distended anus does not improve this week.
 		<</if>>
 		<<if ($activeSlave.vagina == 3) && (random(1,100) > 50)>>
-			@@.orange;Her pussy has tightened.@@
+			@@.orange;$His pussy has tightened.@@
 			<<set $activeSlave.vagina-->>
 		<<elseif ($activeSlave.vagina == 3)>>
-			Her loose pussy does not recover this week.
+			$His loose pussy does not recover this week.
 		<</if>>
 	<</if>>
 	<<set $activeSlave.training = 0>>
 
 <<case "soften her behavioral flaw">>
 	<<if ($activeSlave.behavioralFlaw == "none")>>
-		$activeSlave.slaveName got over her behavioral flaw without you,
-		@@.yellow;her training assignment has defaulted to
-		<<if ["cum addict", "anal addict", "attention whore", "breast growth", "abusive", "malicious", "self hating", "neglectful", "breeder", "none"].includes($activeSlave.sexualFlaw)>>
+		$activeSlave.slaveName got over $his behavioral flaw without you,
+		@@.yellow;$his training assignment has defaulted to
+		<<if ["abusive", "anal addict", "attention whore", "breast growth", "breeder", "cum addict", "malicious", "neglectful", "none", "self hating"].includes($activeSlave.sexualFlaw)>>
 			<<if ($activeSlave.devotion <= 20) && ($activeSlave.trust >= -20)>>
-				breaking her will.
+				breaking $his will.
 				<<set $personalAttention[_ptwi].trainingRegimen = "break her will">>
 			<<else>>
 				fostering devotion.
 				<<set $personalAttention[_ptwi].trainingRegimen = "build her devotion">>
 			<</if>>
 		<<else>>
-			softening her sexual flaw.
+			softening $his sexual flaw.
 			<<set $personalAttention[_ptwi].trainingRegimen = "soften her sexual flaw">>
 		<</if>>
 		@@
 	<<else>>
 		<<if ($activeSlave.behavioralFlaw == "arrogant")>>
-			$activeSlave.slaveName thinks she's better than everyone else. She has some basis for a high opinion of herself; otherwise you wouldn't be bothering with her. You do your best to maintain her belief that she has something special to offer while training her to offer it to you without objection.
+			$activeSlave.slaveName thinks $he's better than everyone else. $He has some basis for a high opinion of $himself; otherwise you wouldn't be bothering with $him. You do your best to maintain $his belief that $he has something special to offer while training $him to offer it to you without objection.
 		<<elseif ($activeSlave.behavioralFlaw == "bitchy")>>
-			$activeSlave.slaveName always has a cutting remark ready. Some of them are actually pretty good, and you'd prefer to keep her cutting wit intact. You strike a careful balance with her, punishing the wrong remark at the wrong time, but rewarding appropriately biting comments.
+			$activeSlave.slaveName always has a cutting remark ready. Some of them are actually pretty good, and you'd prefer to keep $his cutting wit intact. You strike a careful balance with $him, punishing the wrong remark at the wrong time, but rewarding appropriately biting comments.
 		<<elseif ($activeSlave.behavioralFlaw == "odd")>>
-			$activeSlave.slaveName is odd. She's usually annoying, but on occasion her oddities can produce great comic relief. You strike a careful balance with her, punishing her when she irritates you, but allowing and even rewarding harmless little idiosyncrasies.
+			$activeSlave.slaveName is odd. $He's usually annoying, but on occasion $his oddities can produce great comic relief. You strike a careful balance with $him, punishing $him when $he irritates you, but allowing and even rewarding harmless little idiosyncrasies.
 		<<elseif ($activeSlave.behavioralFlaw == "hates men")>>
-			$activeSlave.slaveName does not like men. She desperately needs social contact, though, so you encourage her to rely on women to address her emotional needs. This is easy, since
+			$activeSlave.slaveName does not like men. $He desperately needs social contact, though, so you encourage $him to rely on women to address $his emotional needs. This is easy, since
 			<<if $PC.vagina == 1>>
 				you've got a pussy yourself.
 			<<else>>
 				there are several readily available.
 			<</if>>
 		<<elseif ($activeSlave.behavioralFlaw == "hates women")>>
-			$activeSlave.slaveName does not like girls. She desperately needs social contact, though, so you encourage her to rely on men to address her emotional needs. This is easy, since
+			$activeSlave.slaveName does not like girls. $He desperately needs social contact, though, so you encourage $him to rely on men to address $his emotional needs. This is easy, since
 			<<if $PC.dick == 0>>
 				there are several readily available.
 			<<else>>
 				you've got a cock yourself.
 			<</if>>
 		<<elseif ($activeSlave.behavioralFlaw == "anorexic")>>
-			$activeSlave.slaveName suffers from anorexia. You work with her patiently, applying the very best in modern therapy for this troubling condition. It's usually a product of poor self esteem, and you do your best to build hers up without diminishing her submission to you.
+			$activeSlave.slaveName suffers from anorexia. You work with $him patiently, applying the very best in modern therapy for this troubling condition. It's usually a product of poor self esteem, and you do your best to build $hers up without diminishing $his submission to you.
 		<<elseif ($activeSlave.behavioralFlaw == "gluttonous")>>
-			$activeSlave.slaveName's diet is already closely controlled, but the impulse to overeat is strong in her and like most gluttons she manages to be quite cunning. You take a hard line with her, and do your best to replace her addiction to the endorphin release of eating with an addiction to the endorphin release of exercise.
+			$activeSlave.slaveName's diet is already closely controlled, but the impulse to overeat is strong in $him and like most gluttons $he manages to be quite cunning. You take a hard line with $him, and do your best to replace $his addiction to the endorphin release of eating with an addiction to the endorphin release of exercise.
 		<<elseif ($activeSlave.behavioralFlaw == "liberated")>>
-			$activeSlave.slaveName can express a decent argument for why it's wrong to use her as a sex slave. With a combination of rote training, discussion, and reinforcement, you do your best to turn this into a sincere belief in the moral rightness of slavery.
+			$activeSlave.slaveName can express a decent argument for why it's wrong to use $him as a sex slave. With a combination of rote training, discussion, and reinforcement, you do your best to turn this into a sincere belief in the moral rightness of slavery.
 		<<elseif ($activeSlave.behavioralFlaw == "devout")>>
-			$activeSlave.slaveName remains devoted to an old world faith that serves her as a reservoir of mental resilience. Like all such beliefs, hers has certain sexual elements; you amuse yourself by forcing her to break them, and rewarding her generously when she does.
+			$activeSlave.slaveName remains devoted to an old world faith that serves $him as a reservoir of mental resilience. Like all such beliefs, $hers has certain sexual elements; you amuse yourself by forcing $him to break them, and rewarding $him generously when $he does.
 		<</if>>
 		<<if $activeSlave.training < 100>>
-			You make progress, but she's the same at the end of the week.
+			You make progress, but $he's the same at the end of the week.
 		<<else>>
 			<<set $activeSlave.training = 0>>
-			By the end of the week, @@.green;you resolve her flaw into something special.@@ @@.hotpink;Her obedience has increased.@@
+			By the end of the week, @@.green;you resolve $his flaw into something special.@@ @@.hotpink;$His obedience has increased.@@
 			<<run SoftenBehavioralFlaw($activeSlave)>>
 			<<set $activeSlave.devotion += 4>>
 		<</if>>
 		<<if $activeSlave.fetishKnown != 1>>
 			<<if ($activeSlave.fetish == "submissive")>>
-				She really takes to your close attention; @@.pink;she's a natural submissive!@@
+				$He really takes to your close attention; @@.pink;$he's a natural submissive!@@
 				<<set ($activeSlave.fetishKnown = 1)>>
 			<<elseif ($activeSlave.fetish == "cumslut")>>
-				While you're giving her personal attention, you discover by chance that @@.pink;she has an oral fixation!@@
+				While you're giving $him personal attention, you discover by chance that @@.pink;$he has an oral fixation!@@
 				<<set ($activeSlave.fetishKnown = 1)>>
 			<<elseif ($activeSlave.fetish == "masochist")>>
-				While you're giving her personal correction, you discover by chance that @@.pink;she likes pain!@@
+				While you're giving $him personal correction, you discover by chance that @@.pink;$he likes pain!@@
 				<<set ($activeSlave.fetishKnown = 1)>>
 			<<elseif ($activeSlave.fetish == "humiliation")>>
-				While you're giving her personal attention in public, you discover by chance that @@.pink;she likes humiliation!@@
+				While you're giving her personal attention in public, you discover by chance that @@.pink;$he likes humiliation!@@
 				<<set ($activeSlave.fetishKnown = 1)>>
 			<</if>>
 		<</if>>
@@ -223,96 +223,96 @@
 			<<if canDoAnal($activeSlave)>>
 				<<= AnalVCheck(10)>>
 			<<else>>
-				The inability to actually penetrate her ass hinders your efforts, however.
+				The inability to actually penetrate $his ass hinders your efforts, however.
 				<<set $activeSlave.training -= 20>> /* more difficult training */
 			<</if>>
 		<<case "hates penetration">>
 			<<if ($activeSlave.vagina > -1) && canDoVaginal($activeSlave)>>
-				does not like sex. Though it would be simpler to train her out of it, you do your best to train her to safely take a hard pounding without losing the fun aspects of forced sex, like the struggles, the whining, and the tears.
+				does not like sex. Though it would be simpler to train $him out of it, you do your best to train $him to safely take a hard pounding without losing the fun aspects of forced sex, like the struggles, the whining, and the tears.
 				<<= VaginalVCheck(10)>>
 			<<elseif canDoAnal($activeSlave)>>
-				does not like it up the butt. Though it would be simpler to train her out of it, you do your best to train her to safely take a rough buttfuck without losing the fun aspects of anal rape, like the struggles, the whining, and the tears.
+				does not like it up the butt. Though it would be simpler to train $him out of it, you do your best to train $him to safely take a rough buttfuck without losing the fun aspects of anal rape, like the struggles, the whining, and the tears.
 				<<= AnalVCheck(10)>>
 			<<else>>
-				does not dicks in her mouth. Though it would be simpler to train her out of it, you do your best to train her to safely take a rough facefuck without losing the fun aspects of forcing a slave to swallow a phallus, like the struggles, the gagging, and the tears.
+				does not dicks in $his mouth. Though it would be simpler to train $him out of it, you do your best to train $him to safely take a rough facefuck without losing the fun aspects of forcing a slave to swallow a phallus, like the struggles, the gagging, and the tears.
 				<<set $activeSlave.oralCount += 10, $oralTotal += 10>>
 			<</if>>
 		<<case "apathetic">>
-			doesn't put out much effort when having sex. You do your best to redirect this apathy into caring for her partners; since she obviously doesn't think much of herself, she can spare the effort.
+			doesn't put out much effort when having sex. You do your best to redirect this apathy into caring for $his partners; since $he obviously doesn't think much of $himself, $he can spare the effort.
 			<<set $activeSlave.oralCount += 10, $oralTotal += 10>>
 		<<case "crude">>
-			does not pay enough attention to standards when having sex, leading to crude comments and unsexy noises. To remedy this, you have her give you oral regularly: a sacrifice, but you make sacrifices for your slaves' improvement. Oral sex can be difficult to make elegant, but you work with her to make it as pretty as possible, even when you require her to apply her mouth to some of the less common erogenous zones. You do your best to retain her sexual openness while making her more sexually presentable.
+			does not pay enough attention to standards when having sex, leading to crude comments and unsexy noises. To remedy this, you have $him give you oral regularly: a sacrifice, but you make sacrifices for your slaves' improvement. Oral sex can be difficult to make elegant, but you work with $him to make it as pretty as possible, even when you require $him to apply $his mouth to some of the less common erogenous zones. You do your best to retain $his sexual openness while making $him more sexually presentable.
 			<<set $activeSlave.oralCount += 10, $oralTotal += 10>>
 		<<case "judgemental">>
-			has a bad habit of being sexually judgemental, belittling anyone who doesn't live up to her pretensions of standards. You do your best to train her to perform regardless of her partners' endowments, aiming for a delicate balance that will allow her to get off with anyone while permitting her to retain and even build on her appetite for big dicks. You permit her to achieve release only when she's done well with <<if $PC.dick == 1>>your thick cock<<else>>a fat dildo<</if>>
+			has a bad habit of being sexually judgemental, belittling anyone who doesn't live up to $his pretensions of standards. You do your best to train $him to perform regardless of $his partners' endowments, aiming for a delicate balance that will allow $him to get off with anyone while permitting $him to retain and even build on $his appetite for big dicks. You permit $him to achieve release only when $he's done well with <<if $PC.dick == 1>>your thick cock<<else>>a fat dildo<</if>>
 			<<if $activeSlave.vagina > 0 && canDoVaginal($activeSlave)>>
-				lodged up her cunt.
+				lodged up $his cunt.
 				<<= VaginalVCheck(10)>>
 			<<elseif $activeSlave.anus > 0 && canDoAnal($activeSlave)>>
-				lodged up her butt.
+				lodged up $his butt.
 				<<= AnalVCheck(10)>>
 			<<else>>
-				down her throat.
+				down $his throat.
 				<<set $activeSlave.oralCount += 10, $oralTotal += 10>>
 			<</if>>
 		<<case "shamefast">>
-			is shamefast. You do your best to train her out of this, but carefully retain the essential core of embarrassment, aiming for a slave that can use her body to titillate the viewer and then offer an authentic blush at herself.
+			is shamefast. You do your best to train $him out of this, but carefully retain the essential core of embarrassment, aiming for a slave that can use $his body to titillate the viewer and then offer an authentic blush at $himself.
 			<<set $activeSlave.oralCount += 10, $oralTotal += 10>>
 		<<case "idealistic">>
-			still sees sex in a naïve light, hoping to be romanced, teased to arousal, and asked permission. Training her directly out of this would shatter the poor girl's world, so you work with her carefully, doing your best to keep sex special for her.
+			still sees sex in a naïve light, hoping to be romanced, teased to arousal, and asked permission. Training $him directly out of this would shatter the poor $girl's world, so you work with $him carefully, doing your best to keep sex special for $him.
 		<<case "repressed">>
-			is repressed. You strike a delicate balance with her, doing your best to train her to fuck as a sex slave should, but trying to retain the rush of doing the forbidden that makes her flush, shiver, and moan.
+			is repressed. You strike a delicate balance with $him, doing your best to train $him to fuck as a sex slave should, but trying to retain the rush of doing the forbidden that makes $him flush, shiver, and moan.
 			<<set $activeSlave.oralCount += 10, $oralTotal += 10>>
-		<<case "cum addict" "anal addict" "attention whore" "breast growth" "abusive" "malicious" "self hating" "neglectful" "breeder">>
+		<<case "abusive" "anal addict" "attention whore" "breast growth" "breeder" "cum addict" "malicious" "neglectful" "self hating">>
 			has a paraphilia. Typical methods will have no effect on this kind of flaw.
 			<<set $activeSlave.training = 0>>
-			@@.yellow;Her training assignment has defaulted to
+			@@.yellow;$His training assignment has defaulted to
 			<<if ($activeSlave.devotion <= 20) && ($activeSlave.trust >= -20)>>
-				breaking her will.
+				breaking $his will.
 				<<set $personalAttention[_ptwi].trainingRegimen = "break her will">>
 			<<else>>
 				fostering devotion.
 				<<set $personalAttention[_ptwi].trainingRegimen = "build her devotion">>
 			<</if>>
 		<<default>>
-			has something. You should probably report this as nobody knows what is currently happening. Her flaw was supposed to be $activeSlave.sexualFlaw.
+			has something. You should probably report this as nobody knows what is currently happening. $His flaw was supposed to be $activeSlave.sexualFlaw.
 		<</switch>>
 		<<if $activeSlave.training < 100>>
-			You make progress, but she's the same at the end of the week.
+			You make progress, but $he's the same at the end of the week.
 		<<else>>
 			<<set $activeSlave.training = 0>>
-			By the end of the week, @@.green;you resolve her flaw into something special.@@ @@.hotpink;Her obedience has increased.@@
+			By the end of the week, @@.green;you resolve $his flaw into something special.@@ @@.hotpink;$His obedience has increased.@@
 			<<run SoftenSexualFlaw($activeSlave)>>
 			<<set $activeSlave.devotion += 4>>
 		<</if>>
 		<<if $activeSlave.fetishKnown != 1>>
 			<<if ($activeSlave.fetish == "submissive")>>
-				She really takes to your close attention; @@.pink;she's a natural submissive!@@
+				$He really takes to your close attention; @@.pink;$he's a natural submissive!@@
 				<<set ($activeSlave.fetishKnown = 1)>>
 			<<elseif ($activeSlave.fetish == "cumslut")>>
-				While you're giving her personal attention, you discover by chance that @@.pink;she has an oral fixation!@@
+				While you're giving $him personal attention, you discover by chance that @@.pink;$he has an oral fixation!@@
 				<<set ($activeSlave.fetishKnown = 1)>>
 			<<elseif ($activeSlave.fetish == "masochist")>>
-				While you're giving her personal correction, you discover by chance that @@.pink;she likes pain!@@
+				While you're giving $him personal correction, you discover by chance that @@.pink;$he likes pain!@@
 				<<set ($activeSlave.fetishKnown = 1)>>
 			<<elseif ($activeSlave.fetish == "humiliation")>>
-				While you're giving her personal attention in public, you discover by chance that @@.pink;she likes humiliation!@@
+				While you're giving $him personal attention in public, you discover by chance that @@.pink;$he likes humiliation!@@
 				<<set ($activeSlave.fetishKnown = 1)>>
 			<</if>>
 		<</if>>
 		<<if ($activeSlave.sexualFlaw == "none")>>
-			With her sexual flaw softened,
-			@@.yellow;her training assignment has defaulted to
+			With $his sexual flaw softened,
+			@@.yellow;$his training assignment has defaulted to
 			<<if ($activeSlave.behavioralFlaw == "none")>>
 				<<if ($activeSlave.devotion <= 20) && ($activeSlave.trust >= -20)>>
-				breaking her will.
+				breaking $his will.
 				<<set $personalAttention[_ptwi].trainingRegimen = "break her will">>
 				<<else>>
 				fostering devotion.
 				<<set $personalAttention[_ptwi].trainingRegimen = "build her devotion">>
 				<</if>>
 			<<else>>
-				softening her behavioral flaw.
+				softening $his behavioral flaw.
 				<<set $personalAttention[_ptwi].trainingRegimen = "soften her behavioral flaw">>
 			<</if>>
 			@@
@@ -329,56 +329,56 @@
 	<<if $activeSlave.devotion > 50>>
 		$He's devoted to you, making sexual training much easier.
 	<<elseif $activeSlave.devotion > 20>>
-		$He's accepted her place as a sex slave, making sexual training easier.
+		$He's accepted $his place as a sex slave, making sexual training easier.
 	<<elseif $activeSlave.devotion < -20>>
 		$He's unhappy being a sex slave, making sexual training harder.
 	<</if>>
 	<<if $activeSlave.intelligence+$activeSlave.intelligenceImplant > 15>>
-		Her intelligence allows her to absorb her lessons quickly.
+		$His intelligence allows $him to absorb $his lessons quickly.
 	<<elseif $activeSlave.intelligence+$activeSlave.intelligenceImplant < -15>>
-		Her stupidity makes her absorb her lessons slowly.
+		$His stupidity makes $him absorb $his lessons slowly.
 	<</if>>
 	<<if $activeSlave.oralSkill <= 10>>
-		Since she's orally unskilled, you start with her mouth. She <<if $PC.dick == 1>>sucks your dick<<else>>eats you out<</if>>, of course, but her training is more creative than just that. You give her delicious hard candies to suck and feed her phallic fruits and vegetables that she must deepthroat before she can eat. As her skill improves, she wears a gag with an inward-facing dildo, which is swapped out for a bigger size every so often. You only let her orgasm when she's sucking, and before long she's associating giving someone oral pleasure with experiencing pleasure herself. @@.lime;Her oral skills have improved.@@
+		Since $he's orally unskilled, you start with $his mouth. $He <<if $PC.dick == 1>>sucks your dick<<else>>eats you out<</if>>, of course, but $his training is more creative than just that. You give $him delicious hard candies to suck and feed $him phallic fruits and vegetables that $he must deepthroat before $he can eat. As $his skill improves, $he wears a gag with an inward-facing dildo, which is swapped out for a bigger size every so often. You only let $him orgasm when $he's sucking, and before long $he's associating giving someone oral pleasure with experiencing pleasure $himself. @@.lime;$His oral skills have improved.@@
 		<<OralSkillIncrease $activeSlave>>
 	<<elseif ($activeSlave.vaginalSkill <= 10) && ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>>
-		Since she's vaginally unskilled, and not a virgin, you start with her pussy. @@.lime;Her vaginal skills have improved.@@
+		Since $he's vaginally unskilled, and not a virgin, you start with $his pussy. @@.lime;$His vaginal skills have improved.@@
 		<<VaginalSkillIncrease $activeSlave>>
 	<<elseif ($activeSlave.analSkill <= 10) && ($activeSlave.anus > 0) && canDoAnal($activeSlave)>>
-		Since she's anally unskilled, and not an anal virgin, you start with her ass. @@.lime;Her anal skills have improved.@@
+		Since $he's anally unskilled, and not an anal virgin, you start with $his ass. @@.lime;$His anal skills have improved.@@
 		<<AnalSkillIncrease $activeSlave>>
 	<<elseif $activeSlave.oralSkill <= 30>>
-		Since she's sexually experienced, you work with her on the finer points of oral sex. @@.lime;Her oral skills have improved.@@
+		Since $he's sexually experienced, you work with $him on the finer points of oral sex. @@.lime;$His oral skills have improved.@@
 		<<OralSkillIncrease $activeSlave>>
 	<<elseif ($activeSlave.vaginalSkill <= 30) && ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>>
-		Since she's sexually experienced, you work with her on the finer points of penetrative sex. She can already fuck pretty well, but her muscular control could be improved. She works her kegel muscles all week, using fingers, dildos, and your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> as training tools. She becomes expert enough that she is able to make you cum without any thrusting at all by you or any riding by her; she just flexes her muscles enough to <<if $PC.dick == 0>>grind the fake phallus back against your cunt<<else>>stimulate you<</if>>. @@.lime;Her vaginal skills have improved.@@
+		Since $he's sexually experienced, you work with $him on the finer points of penetrative sex. $He can already fuck pretty well, but $his muscular control could be improved. $He works $his kegel muscles all week, using fingers, dildos, and your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> as training tools. $He becomes expert enough that $he is able to make you cum without any thrusting at all by you or any riding by $him; $he just flexes $his muscles enough to <<if $PC.dick == 0>>grind the fake phallus back against your cunt<<else>>stimulate you<</if>>. @@.lime;$His vaginal skills have improved.@@
 		<<VaginalSkillIncrease $activeSlave>>
 	<<elseif ($activeSlave.analSkill <= 30) && ($activeSlave.anus > 0) && canDoAnal($activeSlave)>>
-		Since she's anally experienced, you work with her on the finer points of penetrative sex. She can already take it up her ass, but her muscular control could be improved. She works her kegel muscles and anal sphincter all week, using fingers, dildos, and your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> as training tools. She becomes expert enough that she is able to make you cum without any thrusting at all by you or any riding by her; she just flexes her muscles enough to <<if $PC.dick == 0>>squeeze the fake phallus<<else>>stimulate you<</if>>. @@.lime;Her anal skills have improved.@@
+		Since $he's anally experienced, you work with $him on the finer points of penetrative sex. $He can already take it up $his ass, but $his muscular control could be improved. $He works $his kegel muscles and anal sphincter all week, using fingers, dildos, and your <<if $PC.dick == 0>>strap-on<<else>>cock<</if>> as training tools. $He becomes expert enough that $he is able to make you cum without any thrusting at all by you or any riding by $him; $he just flexes $his muscles enough to <<if $PC.dick == 0>>squeeze the fake phallus<<else>>stimulate you<</if>>. @@.lime;$His anal skills have improved.@@
 		<<AnalSkillIncrease $activeSlave>>
 	<<elseif $activeSlave.oralSkill < 100>>
-		She is already a skilled oral whore, but her skills can be polished further. You train her in the basics of urine play, massage, pet play, needle play, and many other niche skills. You also expand her oral endurance, enabling her to deepthroat for extended periods. @@.lime;Her oral skills have improved.@@
+		$He is already a skilled oral whore, but $his skills can be polished further. You train $him in the basics of urine play, massage, pet play, needle play, and many other niche skills. You also expand $his oral endurance, enabling $him to deepthroat for extended periods. @@.lime;$His oral skills have improved.@@
 		<<OralSkillIncrease $activeSlave>>
 	<<elseif ($activeSlave.vaginalSkill < 100) && ($activeSlave.vagina > 0) && canDoVaginal($activeSlave)>>
-		She is already a skilled pussy slut, but her skills can be polished further. You train her in the basics of urine play, massage, pet play, needle play, and many other niche skills. You also work with her to develop a personal regimen of vaginal muscle exercises. This will enable her to squeeze and massage dicks with her practiced vaginal walls. @@.lime;Her vaginal skills have improved.@@
+		$He is already a skilled pussy slut, but $his skills can be polished further. You train $him in the basics of urine play, massage, pet play, needle play, and many other niche skills. You also work with $him to develop a personal regimen of vaginal muscle exercises. This will enable $him to squeeze and massage dicks with $his practiced vaginal walls. @@.lime;$His vaginal skills have improved.@@
 		<<VaginalSkillIncrease $activeSlave>>
 	<<elseif ($activeSlave.analSkill < 100) && ($activeSlave.anus > 0) && canDoAnal($activeSlave)>>
-		She is already a skilled anal bitch, but her skills can be polished further. You train her in the basics of urine play, massage, pet play, needle play, and many other niche skills. You also expand her knowledge of sexual positions. She learns to balance herself on tiptoe for the challenge of standing anal sex without support. @@.lime;Her sexual skills have improved.@@
+		$He is already a skilled anal bitch, but $his skills can be polished further. You train $him in the basics of urine play, massage, pet play, needle play, and many other niche skills. You also expand $his knowledge of sexual positions. $He learns to balance $himself on tiptoe for the challenge of standing anal sex without support. @@.lime;$His sexual skills have improved.@@
 		<<AnalSkillIncrease $activeSlave>>
 	<<elseif $activeSlave.whoreSkill <= 10>>
-		Since she's dangerously naïve about selling sex, you teach her the basics of self protection and business. @@.lime;Her prostitution skills have improved.@@
+		Since $he's dangerously naïve about selling sex, you teach $him the basics of self protection and business. @@.lime;$His prostitution skills have improved.@@
 		<<WhoreSkillIncrease $activeSlave>>
 	<<elseif $activeSlave.entertainSkill <= 10>>
-		Since she's rough and unskilled at entertainment, you teach her the basics of polite conversation, music, and dance. @@.lime;Her entertainment skills have improved.@@
+		Since $he's rough and unskilled at entertainment, you teach $him the basics of polite conversation, music, and dance. @@.lime;$His entertainment skills have improved.@@
 		<<EntertainSkillIncrease $activeSlave>>
 	<<elseif $activeSlave.whoreSkill <= 30>>
-		Since she has only basic entertainment skills, you teach her to steer clients to more lucrative sex acts. @@.lime;Her prostitution skills have improved.@@
+		Since $he has only basic entertainment skills, you teach $him to steer clients to more lucrative sex acts. @@.lime;$His prostitution skills have improved.@@
 		<<WhoreSkillIncrease $activeSlave>>
 	<<elseif $activeSlave.entertainSkill <= 30>>
-		Since she has only basic entertainment skills, you teach her more about poise and Free Cities etiquette. @@.lime;Her entertainment skills have improved.@@
+		Since $he has only basic entertainment skills, you teach $him more about poise and Free Cities etiquette. @@.lime;$His entertainment skills have improved.@@
 		<<EntertainSkillIncrease $activeSlave>>
 	<<else>>
-		She's learned everything you can teach, and is now a masterful
+		$He's learned everything you can teach, and is now a masterful
 		<<if ($activeSlave.vaginalSkill >= 100)>>
 			slut;
 		<<elseif ($activeSlave.vagina == 0)>>
@@ -388,11 +388,11 @@
 		<<elseif ($activeSlave.vagina == -1)>>
 			shemale slut;
 		<<elseif ($activeSlave.vaginalAccessory == "chastity belt") || ($activeSlave.vaginalAccessory == "combined chastity")>>
-			slut, notwithstanding her chastity belt;
+			slut, notwithstanding $his chastity belt;
 		<<else>>
 			slave;
 		<</if>>
-		 @@.yellow;her assignment has defaulted to fostering devotion.@@
+		@@.yellow;$his assignment has defaulted to fostering devotion.@@
 		<<set $personalAttention[_ptwi].trainingRegimen = "build her devotion">>
 	<</if>>
 	<<set $activeSlave.training = 0>>
@@ -405,38 +405,38 @@
 		<<set $activeSlave.trust -= 10>>
 	<</if>>
 	<<if ($activeSlave.devotion < -80)>>
-		You bind her securely to a special chair in your office<<if !canDoAnal($activeSlave) || ($activeSlave.vagina > -1 && !canDoVaginal($activeSlave))>> with her holes exposed and vulnerable<</if>>. Yours is a busy week, with a lot of business interviews, so whenever the interviewee has pleased you, you offer him or her the use of the poor slave's body on the way out. The chair is specially designed so that the seat, back and armrests can rotate vertically relative to the ground, so her body can be spun to make any of her available holes convenient. Fortunately, it also has a pan beneath it to stop the generous stream of ejaculate and lubricant that drips from her from besmirching the floor. She can't help but @@.gold;become used to the abuse@@ despite her @@.mediumorchid;resentment.@@
+		You bind $him securely to a special chair in your office<<if !canDoAnal($activeSlave) || ($activeSlave.vagina > -1 && !canDoVaginal($activeSlave))>> with her holes exposed and vulnerable<</if>>. Yours is a busy week, with a lot of business interviews, so whenever the interviewee has pleased you, you offer him or her the use of the poor slave's body on the way out. The chair is specially designed so that the seat, back and armrests can rotate vertically relative to the ground, so $his body can be spun to make any of her available holes convenient. Fortunately, it also has a pan beneath it to stop the generous stream of ejaculate and lubricant that drips from her from besmirching the floor. $He can't help but @@.gold;become used to the abuse@@ despite $his @@.mediumorchid;resentment.@@
 		<<= BothVCheck(10, 5)>>
 	<<elseif ($activeSlave.devotion < -60) && ($activeSlave.anus != 0)>>
-		$activeSlave.slaveName is really wild and stern measures must be taken. So, she is<<if !canDoAnal($activeSlave) || ($activeSlave.vagina > -1 && !canDoVaginal($activeSlave))>> stripped of her protective chastity and<</if>> forced, struggling and screaming, into a latex suit that completely blinds, deafens, and immobilizes her. So attired, the only places where she can feel any sensations at all other than endless latex darkness are her <<if ($activeSlave.dick != 0) && ($activeSlave.vagina != -1)>>pussy, and cock<<elseif ($activeSlave.dick != 0)>>cock<<else>>pussy<</if>> and backdoor. For her, time becomes a featureless, torturous boredom broken only by occasional rape. Eventually, she becomes so @@.mediumorchid;desperate@@ for something, anything, to break the monotony that she begins to look forward to the next time a phallus will @@.gold;force@@ its way into her.
+		$activeSlave.slaveName is really wild and stern measures must be taken. So, $he is<<if !canDoAnal($activeSlave) || ($activeSlave.vagina > -1 && !canDoVaginal($activeSlave))>> stripped of $his protective chastity and<</if>> forced, struggling and screaming, into a latex suit that completely blinds, deafens, and immobilizes her. So attired, the only places where $he can feel any sensations at all other than endless latex darkness are $his <<if ($activeSlave.dick != 0) && ($activeSlave.vagina != -1)>>pussy, and cock<<elseif ($activeSlave.dick != 0)>>cock<<else>>pussy<</if>> and backdoor. For her, time becomes a featureless, torturous boredom broken only by occasional rape. Eventually, $he becomes so @@.mediumorchid;desperate@@ for something, anything, to break the monotony that $he begins to look forward to the next time a phallus will @@.gold;force@@ its way into her.
 		<<= BothVCheck(6, 3)>>
 	<<elseif ($activeSlave.devotion < -50) && ($activeSlave.hStyle != "shaved") && (random(1,100) > 90)>>
-		$activeSlave.slaveName needs to be taken down a peg. Fortunately, you know just the thing. You bring her into a bathroom, place a chair in the tub, and tie her securely to the chair. She isn't too perturbed - she probably expects a face fuck under running water or something like that - but she begins to cry when she hears you switch on an electric shaver. She luxuriates in her hair, flaunting it every chance she gets; it's something of value in a bleak slave world and she sobs as you shave it off her. Afterward, she sniffles and @@.gold;looks at you in fear@@ and @@.mediumorchid;unhappiness@@ when you rub her newly bald scalp. Of course, there's always the body modification studio if you ever feel like she's earned her hair back.
+		$activeSlave.slaveName needs to be taken down a peg. Fortunately, you know just the thing. You bring her into a bathroom, place a chair in the tub, and tie her securely to the chair. $He isn't too perturbed - $he probably expects a face fuck under running water or something like that - but $he begins to cry when $he hears you switch on an electric shaver. $he luxuriates in $his hair, flaunting it every chance $he gets; it's something of value in a bleak slave world and $he sobs as you shave it off her. Afterward, $he sniffles and @@.gold;looks at you in fear@@ and @@.mediumorchid;unhappiness@@ when you rub $his newly bald scalp. Of course, there's always the body modification studio if you ever feel like $he's earned $his hair back.
 		<<set $activeSlave.hStyle = "shaved", $activeSlave.hLength = 0>>
 	<<elseif canDoAnal($activeSlave) && (random(1,100) < 10)>>
-		Sometimes, there's no need to be clever. The first indication she gets that you've decided to train her this week is when she wakes suddenly in the middle of the night to the burning sensation of a <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> being shoved up her ass. Not knowing what is happening, she struggles, but since she was already lying in her bed you just lie on top of her and press her wriggling body into the sheets as you assrape her. For the rest of the week, she finds herself grabbed and fucked. She can't help but @@.gold;become used to the abuse@@ despite her @@.mediumorchid;resentment.@@
+		Sometimes, there's no need to be clever. The first indication $he gets that you've decided to train her this week is when $he wakes suddenly in the middle of the night to the burning sensation of a <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> being shoved up $his ass. Not knowing what is happening, $he struggles, but since $he was already lying in $his bed you just lie on top of her and press $his wriggling body into the sheets as you assrape her. For the rest of the week, $he finds $himself grabbed and fucked. $He can't help but @@.gold;become used to the abuse@@ despite $his @@.mediumorchid;resentment.@@
 		<<= AnalVCheck(6)>>
 	<<elseif canDoVaginal($activeSlave) && (random(1,100) < 10)>>
-		Sometimes, there's no need to be clever. The first indication she gets that you've decided to train her this week is when she wakes suddenly in the middle of the night to the filling sensation of a <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> being shoved up into her pussy. Not knowing what is happening, she struggles, but since she was already lying in her bed you just lie on top of her and press her wriggling body into the sheets as you assrape her. For the rest of the week, she finds herself grabbed and fucked. She can't help but @@.gold;become used to the abuse@@ despite her @@.mediumorchid;resentment.@@
+		Sometimes, there's no need to be clever. The first indication $he gets that you've decided to train her this week is when $he wakes suddenly in the middle of the night to the filling sensation of a <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> being shoved up into her pussy. Not knowing what is happening, $he struggles, but since $he was already lying in her bed you just lie on top of her and press her wriggling body into the sheets as you assrape her. For the rest of the week, $he finds $himself grabbed and fucked. $He can't help but @@.gold;become used to the abuse@@ despite her @@.mediumorchid;resentment.@@
 		<<= VaginalVCheck(6)>>
 	<<else>>
-		$activeSlave.slaveName violently resists you whenever she can. This cannot be permitted, so after a particularly severe bout of physical resistance, you decide to employ an old method of breaking a mind without damaging a body. You secure her to a board and gently wash her face with a wet cloth. She spits in defiance, only to be surprised when you lower the board so that her feet are higher than her head. You tie the cloth around her face. A thin stream of water onto the cloth produces all the feeling and none of the reality of a slow death by drowning. Waterboarding isn't much use for extracting information, but it works well for @@.gold;slavebreaking.@@
+		$activeSlave.slaveName violently resists you whenever $he can. This cannot be permitted, so after a particularly severe bout of physical resistance, you decide to employ an old method of breaking a mind without damaging a body. You secure her to a board and gently wash her face with a wet cloth. $He spits in defiance, only to be surprised when you lower the board so that her feet are higher than her head. You tie the cloth around her face. A thin stream of water onto the cloth produces all the feeling and none of the reality of a slow death by drowning. Waterboarding isn't much use for extracting information, but it works well for @@.gold;slavebreaking.@@
 	<</if>>
 	<<if ($PC.slaving >= 100)>>
 		Your @@.springgreen;slavebreaking experience@@ allows you to apply @@.gold;exquisitely calibrated@@ mental pressure.
 		<<set $activeSlave.trust -= 2>>
 	<</if>>
 	<<if ($activeSlave.trust < -20) && ($activeSlave.fetishKnown == 0)>>
-		She is now fully broken; @@.yellow;her training assignment has defaulted to exploring her sexuality.@@
+		$He is now fully broken; @@.yellow;her training assignment has defaulted to exploring her sexuality.@@
 		<<set $personalAttention[_ptwi].trainingRegimen = "explore her sexuality">>
 	<<elseif ($activeSlave.trust < -20)>>
-		She is now fully broken; @@.yellow;her training assignment has defaulted to fostering devotion.@@
+		$He is now fully broken; @@.yellow;her training assignment has defaulted to fostering devotion.@@
 		<<set $personalAttention[_ptwi].trainingRegimen = "build her devotion">>
 	<<elseif ($activeSlave.devotion > 20) && ($activeSlave.fetishKnown == 0)>>
-		She is now obedient and attentive; @@.yellow;her training assignment has defaulted to exploring her sexuality.@@
+		$He is now obedient and attentive; @@.yellow;her training assignment has defaulted to exploring her sexuality.@@
 		<<set $personalAttention[_ptwi].trainingRegimen = "explore her sexuality">>
 	<<elseif ($activeSlave.devotion > 20)>>
-		She is now obedient and attentive; @@.yellow;her training assignment has defaulted to fostering devotion.@@
+		$He is now obedient and attentive; @@.yellow;her training assignment has defaulted to fostering devotion.@@
 		<<set $personalAttention[_ptwi].trainingRegimen = "build her devotion">>
 	<</if>>
 	<<set $activeSlave.training = 0>>
@@ -445,31 +445,31 @@
 	<<set $activeSlave.devotion -= 5, $activeSlave.trust -= 10, $activeSlave.health-->>
 	<<if ($activeSlave.fetish == "mindbroken")>>
 		<<set $activeSlave.minorInjury = either("black eye", "split lip", "bruise")>>
-		$activeSlave.slaveName's mind is broken. She is a boring slave to torture, though her body will still occasionally react to intense pain. No matter what you try, nothing really reaches her destroyed soul. The agonies do @@.red;affect her health, leaving her with a $activeSlave.minorInjury.@@
+		$activeSlave.slaveName's mind is broken. $He is a boring slave to torture, though her body will still occasionally react to intense pain. No matter what you try, nothing really reaches her destroyed soul. The agonies do @@.red;affect her health, leaving her with a $activeSlave.minorInjury.@@
 	<<elseif ($activeSlave.devotion < -90)>>
 		<<set $activeSlave.minorInjury = either("black eye", "split lip", "bruise")>>
-		Old traditions should not be forgotten. The scourge is the oldest slavebreaking tool known to man, and to slave girls who do not properly obey men. For the whole week, whenever $activeSlave.slaveName disobeys you or whenever the whim strikes, you bind her securely and flog her without mercy. You use a soft leather appliance and apply medical care afterward, so there will be no permanent scarring, but @@.red;her health is affected and the beatings leave her with a $activeSlave.minorInjury.@@ She is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience.@@
+		Old traditions should not be forgotten. The scourge is the oldest slavebreaking tool known to man, and to slave girls who do not properly obey men. For the whole week, whenever $activeSlave.slaveName disobeys you or whenever the whim strikes, you bind her securely and flog her without mercy. You use a soft leather appliance and apply medical care afterward, so there will be no permanent scarring, but @@.red;her health is affected and the beatings leave her with a $activeSlave.minorInjury.@@ $He is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience.@@
 	<<elseif ($activeSlave.devotion < -50) && canDoAnal($activeSlave)>>
 		<<set $activeSlave.minorInjury = either("black eye", "split lip", "bruise")>>
-		$activeSlave.slaveName is willing to physically defend herself against sexual abuse. Training her out of this rebelliousness is a nice sexual change of pace. For the entire week, whenever she commits some minor sin, you fight her into a state of physical submission and then sodomize her. This usually requires an extended beating to render her quiescent, followed by holding her down so that her struggles do not dislodge your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> from her delightfully spasming butthole. She is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the extreme stress @@.red;affects her health, leaving her with a $activeSlave.minorInjury.@@
+		$activeSlave.slaveName is willing to physically defend $himself against sexual abuse. Training her out of this rebelliousness is a nice sexual change of pace. For the entire week, whenever $he commits some minor sin, you fight her into a state of physical submission and then sodomize her. This usually requires an extended beating to render her quiescent, followed by holding her down so that her struggles do not dislodge your <<if $PC.dick == 1>>cock<<else>>strap-on<</if>> from her delightfully spasming butthole. $He is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the extreme stress @@.red;affects her health, leaving her with a $activeSlave.minorInjury.@@
 		<<= AnalVCheck(6)>>
 	<<elseif ($activeSlave.scrotum > 0)>>
 		<<set $activeSlave.minorInjury = either("black eye", "split lip", "bruise")>>
-		$activeSlave.slaveName has indefensible, obvious targets for harsh breaking. Whenever she falls short in the smallest way, you bind her in such a way that her <<if $activeSlave.dick>>cock and <</if>>balls are dangling defenseless, and she cannot move to avoid blows. You then indulge your inventiveness, applying clips, weights, and simple beatings to her <<if $activeSlave.dick>>member and <</if>>sack, while beating the rest of her thoroughly. She is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the beatings @@.red;affect her health, leaving her with a $activeSlave.minorInjury.@@
+		$activeSlave.slaveName has indefensible, obvious targets for harsh breaking. Whenever $he falls short in the smallest way, you bind her in such a way that her <<if $activeSlave.dick>>cock and <</if>>balls are dangling defenseless, and $he cannot move to avoid blows. You then indulge your inventiveness, applying clips, weights, and simple beatings to her <<if $activeSlave.dick>>member and <</if>>sack, while beating the rest of her thoroughly. $He is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the beatings @@.red;affect her health, leaving her with a $activeSlave.minorInjury.@@
 	<<elseif ($activeSlave.dick > 0)>>
 		<<set $activeSlave.minorInjury = either("black eye", "split lip", "bruise")>>
-		$activeSlave.slaveName has an indefensible, obvious target for harsh breaking. Whenever she falls short in the smallest way, you bind her in such a way that her cock is dangling defenseless, and she cannot move to avoid blows. You then indulge your inventiveness, applying clips, weights, and simple beatings to her member, while beating the rest of her thoroughly. She is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the beatings @@.red;affect her health, leaving her with a $activeSlave.minorInjury.@@
+		$activeSlave.slaveName has an indefensible, obvious target for harsh breaking. Whenever $he falls short in the smallest way, you bind her in such a way that her cock is dangling defenseless, and $he cannot move to avoid blows. You then indulge your inventiveness, applying clips, weights, and simple beatings to her member, while beating the rest of her thoroughly. $He is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the beatings @@.red;affect her health, leaving her with a $activeSlave.minorInjury.@@
 	<<elseif ($activeSlave.clit > 0)>>
 		<<set $activeSlave.minorInjury = either("black eye", "split lip", "bruise")>>
-		$activeSlave.slaveName has an indefensible, obvious target for harsh breaking. Whenever she falls short in the smallest way, you bind her in such a way that her unusually large clit is visible and defenseless, and she cannot move to avoid blows. You then indulge your inventiveness, applying clips, weights, and simple slaps to her womanhood, while beating the rest of her thoroughly. She is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the beatings @@.red;affect her health, leaving her with a $activeSlave.minorInjury.@@
+		$activeSlave.slaveName has an indefensible, obvious target for harsh breaking. Whenever $he falls short in the smallest way, you bind her in such a way that her unusually large clit is visible and defenseless, and $he cannot move to avoid blows. You then indulge your inventiveness, applying clips, weights, and simple slaps to her womanhood, while beating the rest of her thoroughly. $He is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the beatings @@.red;affect her health, leaving her with a $activeSlave.minorInjury.@@
 	<<elseif ($activeSlave.nipples == "huge")>>
 		<<set $activeSlave.minorInjury = either("black eye", "split lip", "bruise")>>
-		$activeSlave.slaveName's nipples beg for punishment. Whenever she falls short in the smallest way, you bind her in such a way that breasts dangle, her nipples are free and at your mercy, and she can only move enough to cause her boobs to sway erotically when she flinches with pain. You then indulge your inventiveness, applying clips, weights, and simple abuse to her nipples, while beating the rest of her thoroughly. She is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the beatings @@.red;affect her health, leaving her with a $activeSlave.minorInjury.@@
+		$activeSlave.slaveName's nipples beg for punishment. Whenever $he falls short in the smallest way, you bind her in such a way that breasts dangle, her nipples are free and at your mercy, and $he can only move enough to cause her boobs to sway erotically when $he flinches with pain. You then indulge your inventiveness, applying clips, weights, and simple abuse to her nipples, while beating the rest of her thoroughly. $He is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the beatings @@.red;affect her health, leaving her with a $activeSlave.minorInjury.@@
 	<<elseif ($activeSlave.anus > 0) && canDoAnal($activeSlave)>>
-		You bind $activeSlave.slaveName with the head of an uncomfortably large dildo just inside her anus. The setup offers her a choice: she can either stand and have only tip up her butt, or she can take her weight off her legs, and take a massive phallus up the ass. You keep her like this for hours on end. At the start she tries to stand all the time. Then, she tries to rest on it for short periods, but realizes that this up and down motion really just leads to her assraping herself. Finally, she becomes so tired and apathetic that she accepts having a dildo up the ass, and sits down. She is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the extreme stress @@.red;affects her health.@@
+		You bind $activeSlave.slaveName with the head of an uncomfortably large dildo just inside her anus. The setup offers her a choice: $he can either stand and have only tip up her butt, or $he can take her weight off her legs, and take a massive phallus up the ass. You keep her like this for hours on end. At the start $he tries to stand all the time. Then, $he tries to rest on it for short periods, but realizes that this up and down motion really just leads to her assraping $himself. Finally, $he becomes so tired and apathetic that $he accepts having a dildo up the ass, and sits down. $He is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the extreme stress @@.red;affects her health.@@
 	<<else>>
 		<<set $activeSlave.minorInjury = either("black eye", "split lip", "bruise")>>
-		The first time you force $activeSlave.slaveName to please you this week, she could be forgiven for thinking sexual abuse is to be her sentence. By the end of the week she remembers only fearing rape as a pleasant dream. This change is due to your program of roughly using her whenever she shows any sign of sleeping. You reward her with a short doze now and then, but she is slowly reduced to a nearly insensible state of agonizing fatigue. She is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the extreme stress and rough treatment @@.red;affect her health and leave her with a $activeSlave.minorInjury.@@
+		The first time you force $activeSlave.slaveName to please you this week, $he could be forgiven for thinking sexual abuse is to be her sentence. By the end of the week $he remembers only fearing rape as a pleasant dream. This change is due to your program of roughly using her whenever $he shows any sign of sleeping. You reward her with a short doze now and then, but $he is slowly reduced to a nearly insensible state of agonizing fatigue. $He is subjected to @@.mediumorchid;immense mental pressure@@ @@.gold;in favor of obedience,@@ but the extreme stress and rough treatment @@.red;affect her health and leave her with a $activeSlave.minorInjury.@@
 	<</if>>
 	<<if ($activeSlave.fetish != "mindbroken")>>
 		<<set _seed = random(1,100)>>
@@ -479,14 +479,14 @@
 		<<elseif (_seed > 80) && ($activeSlave.behavioralFlaw != "hates men") && ($activeSlave.behavioralFlaw != "hates women")>>
 			This abuse has associated
 			<<if ($PC.dick == 1)>>
-				cocks and masculinity with pain in her mind; @@.red;she now instinctively hates men.@@
+				cocks and masculinity with pain in her mind; @@.red;$he now instinctively hates men.@@
 				<<set $activeSlave.behavioralFlaw = "hates men">>
 			<<else>>
-				pussies and femininity with pain in her mind; @@.red;she now instinctively hates women.@@
+				pussies and femininity with pain in her mind; @@.red;$he now instinctively hates women.@@
 				<<set $activeSlave.behavioralFlaw = "hates women">>
 			<</if>>
 		<<elseif (_seed > 70) && ($activeSlave.sexualFlaw != "odd")>>
-			This abuse has changed her a bit; @@.red;she has begun to act strangely.@@
+			This abuse has changed her a bit; @@.red;$he has begun to act strangely.@@
 			<<set $activeSlave.behavioralFlaw = "odd">>
 		<</if>>
 	<</if>>
@@ -503,80 +503,80 @@
 		<<set $activeSlave.trust -= 5>>
 	<</if>>
 	<<if ($activeSlave.devotion > 20)>>
-		She is now fully broken; @@.yellow;her training assignment has defaulted to fostering devotion.@@
+		$He is now fully broken; @@.yellow;her training assignment has defaulted to fostering devotion.@@
 		<<set $personalAttention[_ptwi].trainingRegimen = "build her devotion">>
 	<</if>>
 	<<set $activeSlave.training = 0>>
 
 <<case "fix her behavioral flaw">>
 	<<if ($activeSlave.behavioralFlaw == "arrogant")>>
-		$activeSlave.slaveName seems to think she's better than everyone else. Naturally, as her owner you have the means to correct this sad misapprehension. As you train her during the week, you ensure that she submits to anyone and everyone. She is rarely permitted to enjoy sex under your tutelage, but is instead required to use her mouth and hands to get others off. She cleans, washes, and serves.
+		$activeSlave.slaveName seems to think $he's better than everyone else. Naturally, as $his owner you have the means to correct this sad misapprehension. As you train $him during the week, you ensure that $he submits to anyone and everyone. $He is rarely permitted to enjoy sex under your tutelage, but is instead required to use $his mouth and hands to get others off. $He cleans, washes, and serves.
 		<<set $activeSlave.oralCount += 10, $oralTotal += 10>>
 	<<elseif ($activeSlave.behavioralFlaw == "bitchy")>>
-		$activeSlave.slaveName always has a cutting remark ready. The more obedient she's feeling, the more she directs them at people other than her <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>, but it's still a serious problem. When you train her this week, you keep a sharp ear on her. Whenever she bitches out, you require her to promptly offer the target of her pissiness the use of her mouth. She'll either shut her mouth or have it roughly filled.
+		$activeSlave.slaveName always has a cutting remark ready. The more obedient $he's feeling, the more $he directs them at people other than her <<= WrittenMaster()>>, but it's still a serious problem. When you train $him this week, you keep a sharp ear on $him. Whenever $he bitches out, you require her to promptly offer the target of her pissiness the use of her mouth. $He'll either shut $his mouth or have it roughly filled.
 		<<set $activeSlave.oralCount += 10, $oralTotal += 10>>
 	<<elseif ($activeSlave.behavioralFlaw == "odd")>>
-		$activeSlave.slaveName is odd. She behaves strangely, speaking randomly at times and doing things for no apparent reason. In earlier times this might have been considered 'adorable' or 'unique,' but in a slave it's just annoying. You punish her severely whenever she fails to do or say the right thing for the right reasons.
+		$activeSlave.slaveName is odd. $He behaves strangely, speaking randomly at times and doing things for no apparent reason. In earlier times this might have been considered 'adorable' or 'unique,' but in a slave it's just annoying. You punish $him severely whenever $he fails to do or say the right thing for the right reasons.
 	<<elseif ($activeSlave.behavioralFlaw == "hates men")>>
-		$activeSlave.slaveName does not like spending time around men. This is of course a huge obstacle to her performing her duties well. Breaking her of this is an unusually difficult task,
+		$activeSlave.slaveName does not like spending time around men. This is of course a huge obstacle to $him performing $his duties well. Breaking $him of this is an unusually difficult task,
 		<<if $PC.dick == 1>>
-			so you approach it subtly. You simply require her to spend as much time as possible around you, eating, sleeping, and going about normal business. She already understood what you were to your slaves, sexually; she now is accustomed to who you are when your cock isn't pounding a nice hole.
+			so you approach it subtly. You simply require $him to spend as much time as possible around you, eating, sleeping, and going about normal business. $He already understood what you were to your slaves, sexually; $he now is accustomed to who you are when your cock isn't pounding a nice hole.
 		<<else>>
-			all the more so since you cannot use yourself as a teaching tool. Fortunately, there are any number of men coming and going as you do business, and it's trivial to force her to rely on them for social contact.
+			all the more so since you cannot use yourself as a teaching tool. Fortunately, there are any number of men coming and going as you do business, and it's trivial to force $him to rely on them for social contact.
 		<</if>>
 		<<set $activeSlave.oralCount += 10, $oralTotal += 10>>
 	<<elseif ($activeSlave.behavioralFlaw == "hates women")>>
 		$activeSlave.slaveName does not like spending time around girls. This is of course a huge obstacle to her performing her duties well. Breaking her of this is an unusually difficult task,
 		<<if $PC.dick != 0>>
-			all the moreso since you cannot use your penis-equipped self as a teaching tool. Fortunately, there are any number of girls around, and it's trivial to force her to rely on them for social contact.
+			all the more so since you cannot use your penis-equipped self as a teaching tool. Fortunately, there are any number of girls around, and it's trivial to force her to rely on them for social contact.
 		<<else>>
-			so you approach it subtly. You simply require her to spend as much time as possible around you, eating, sleeping, and going about normal business. She already understood what you were to your slaves, sexually; she now is accustomed to who you are when you're not fucking.
+			so you approach it subtly. You simply require her to spend as much time as possible around you, eating, sleeping, and going about normal business. $He already understood what you were to your slaves, sexually; $he now is accustomed to who you are when you're not fucking.
 		<</if>>
 		<<set $activeSlave.oralCount += 10, $oralTotal += 10>>
 	<<elseif ($activeSlave.behavioralFlaw == "anorexic")>>
-		$activeSlave.slaveName has an unreasonable, psychologically based belief that she is too fat. This is a serious enough condition in the clinical sense that the usual routine of punishment will not affect it. Instead, you apply a regime of positive reinforcement: she is given attention and approval for her curves when they grow.
+		$activeSlave.slaveName has an unreasonable, psychologically based belief that $he is too fat. This is a serious enough condition in the clinical sense that the usual routine of punishment will not affect it. Instead, you apply a regime of positive reinforcement: $he is given attention and approval for her curves when they grow.
 	<<elseif ($activeSlave.behavioralFlaw == "gluttonous")>>
-		$activeSlave.slaveName's diet is already closely controlled, but the impulse to overeat is strong in her and like most gluttons she manages to be quite cunning. You watch her closely and administer harsh punishment to associate overeating with pain in her mind.
+		$activeSlave.slaveName's diet is already closely controlled, but the impulse to overeat is strong in $him and like most gluttons $he manages to be quite cunning. You watch $him closely and administer harsh punishment to associate overeating with pain in her mind.
 	<<elseif ($activeSlave.behavioralFlaw == "liberated")>>
-		$activeSlave.slaveName has not yet accepted that her world has changed. You could wait for the weight of circumstances to bear it home to her, but you accelerated the process by giving her as many trivial orders as possible. She is required to receive orders to perform the most humiliatingly obvious of tasks.
+		$activeSlave.slaveName has not yet accepted that her world has changed. You could wait for the weight of circumstances to bear it home to her, but you accelerated the process by giving her as many trivial orders as possible. $He is required to receive orders to perform the most humiliatingly obvious of tasks.
 	<<elseif ($activeSlave.behavioralFlaw == "devout")>>
-		$activeSlave.slaveName remains devoted to an old world faith that serves her as a reservoir of mental resilience. You carefully select pressure points to break her of this by forcing her to violate her faith's purity codes, constantly. She is forced to eat, dress, and fuck in ways that convince her that she must either condemn herself as an irredeemable sinner, or abandon her beliefs.
+		$activeSlave.slaveName remains devoted to an old world faith that serves $him as a reservoir of mental resilience. You carefully select pressure points to break $him of this by forcing $him to violate $his faith's purity codes, constantly. $He is forced to eat, dress, and fuck in ways that convince $him that $he must either condemn $himself as an irredeemable sinner, or abandon $his beliefs.
 	<</if>>
 	<<set $activeSlave.training += 40>> /* fixing is easier than softening */
 	<<if $activeSlave.training < 100>>
-		You make progress, but she's the same at the end of the week.
+		You make progress, but $he's the same at the end of the week.
 	<<else>>
 		<<set $activeSlave.training = 0>>
-		By the end of the week, @@.green;you break her of her bad habits.@@ @@.hotpink;Her obedience has increased.@@
+		By the end of the week, @@.green;you break $him of $his bad habits.@@ @@.hotpink;$His obedience has increased.@@
 		<<set $activeSlave.behavioralFlaw = "none", $activeSlave.devotion += 4>>
 	<</if>>
 	<<if $activeSlave.fetishKnown != 1>>
 		<<if ($activeSlave.fetish == "submissive")>>
-			She really takes to your close attention; @@.pink;she's a natural submissive!@@
+			$He really takes to your close attention; @@.pink;$he's a natural submissive!@@
 			<<set ($activeSlave.fetishKnown = 1)>>
 		<<elseif ($activeSlave.fetish == "cumslut")>>
-			While you're giving her personal attention, you discover by chance that @@.pink;she has an oral fixation!@@
+			While you're giving $his personal attention, you discover by chance that @@.pink;$he has an oral fixation!@@
 			<<set ($activeSlave.fetishKnown = 1)>>
 		<<elseif ($activeSlave.fetish == "masochist")>>
-			While you're giving her personal correction, you discover by chance that @@.pink;she likes pain!@@
+			While you're giving $his personal correction, you discover by chance that @@.pink;$he likes pain!@@
 			<<set ($activeSlave.fetishKnown = 1)>>
 		<<elseif ($activeSlave.fetish == "humiliation")>>
-			While you're giving her personal attention in public, you discover by chance that @@.pink;she likes humiliation!@@
+			While you're giving $his personal attention in public, you discover by chance that @@.pink;$he likes humiliation!@@
 			<<set ($activeSlave.fetishKnown = 1)>>
 		<</if>>
 	<</if>>
 	<<if ($activeSlave.behavioralFlaw == "none")>>
-		With her behavioral flaw trained out,
+		With $his behavioral flaw trained out,
 		<<if ($activeSlave.sexualFlaw == "none")>>
 			<<if ($activeSlave.devotion <= 20) && ($activeSlave.trust >= -20)>>
-				@@.yellow;her training assignment has defaulted to breaking her will.@@
+				@@.yellow;$his training assignment has defaulted to breaking $his will.@@
 				<<set $personalAttention[_ptwi].trainingRegimen = "break her will">>
 			<<else>>
-				@@.yellow;her training assignment has defaulted to fostering devotion.@@
+				@@.yellow;$his training assignment has defaulted to fostering devotion.@@
 				<<set $personalAttention[_ptwi].trainingRegimen = "build her devotion">>
 			<</if>>
 		<<else>>
-			@@.yellow;her training assignment has defaulted to addressing her sexual flaw.@@
+			@@.yellow;$his training assignment has defaulted to addressing $his sexual flaw.@@
 			<<set $personalAttention[_ptwi].trainingRegimen = "fix her sexual flaw">>
 		<</if>>
 	<</if>>
@@ -584,131 +584,131 @@
 <<case "fix her sexual flaw">>
 	<<switch $activeSlave.sexualFlaw>>
 	<<case "hates oral">>
-		$activeSlave.slaveName has a powerful gag reflex. As a result, it's pretty unpleasant to receive oral sex from her, no matter how hard she tries. You apply various inventive techniques for addressing this, all of which involve requiring her to repeatedly deepthroat some object or other.
+		$activeSlave.slaveName has a powerful gag reflex. As a result, it's pretty unpleasant to receive oral sex from $him, no matter how hard $he tries. You apply various inventive techniques for addressing this, all of which involve requiring $him to repeatedly deepthroat some object or other.
 		<<set $activeSlave.oralCount += 10, $oralTotal += 10>>
 	<<case "hates anal">>
 		<<if canDoAnal($activeSlave)>>
-			$activeSlave.slaveName does not like it up the butt. She views her rectum as a dirty place that should not be involved in sex. Naturally, this is an unacceptable view for a Free Cities sex slave to hold. The best way to address this foolishness is by long practice, so you take every opportunity to stick things up her behind, and when you bore of that, you require her to assfuck herself with a dildo instead.
+			$activeSlave.slaveName does not like it up the butt. $He views $his rectum as a dirty place that should not be involved in sex. Naturally, this is an unacceptable view for a Free Cities sex slave to hold. The best way to address this foolishness is by long practice, so you take every opportunity to stick things up $his behind, and when you bore of that, you require $him to assfuck $himself with a dildo instead.
 			<<= AnalVCheck(10)>>
 		<<else>>
-			$activeSlave.slaveName does not like it up the butt. She views her rectum as a dirty place that should not be involved in sex. Naturally, this is an unacceptable view for a Free Cities sex slave to hold. The best way to address this foolishness is by long practice, so you take every opportunity to toy with her rear. The inability to actually penetrate her ass hinders your efforts, however.
+			$activeSlave.slaveName does not like it up the butt. $He views $his rectum as a dirty place that should not be involved in sex. Naturally, this is an unacceptable view for a Free Cities sex slave to hold. The best way to address this foolishness is by long practice, so you take every opportunity to toy with $his rear. The inability to actually penetrate $his ass hinders your efforts, however.
 			<<set $activeSlave.training -= 20>> /* more difficult training */
 		<</if>>
 	<<case "hates penetration">>
 		<<if ($activeSlave.vagina > -1)>>
 			$activeSlave.slaveName does not like sex. In earlier times, it was accepted and understood that some, particularly some women, had a low sex drive. No Free Cities sex slave is allowed to engage in such foolishness. It's a hard flaw to fix, and for now you substitute obedience for honest enjoyment, and just get her used to strong stimulation without putting anything in her.
 		<<elseif canDoAnal($activeSlave)>>
-			$activeSlave.slaveName does not like it up the butt. She views her rectum as a dirty place that should not be involved in sex. Naturally, this is an unacceptable view for a Free Cities slut to hold. The best way to address this foolishness is by long practice, so you take every opportunity to stick things up her behind, and when you bore of that, you require her to assfuck herself instead.
+			$activeSlave.slaveName does not like it up the butt. $He views $his rectum as a dirty place that should not be involved in sex. Naturally, this is an unacceptable view for a Free Cities slut to hold. The best way to address this foolishness is by long practice, so you take every opportunity to stick things up $his behind, and when you bore of that, you require $him to assfuck $himself instead.
 			<<= AnalVCheck(10)>>
 		<<else>>
-			$activeSlave.slaveName does not like it up the butt. She views her rectum as a dirty place that should not be involved in sex. Naturally, this is an unacceptable view for a Free Cities slut to hold. It's a hard flaw to fix when you can't introduce her anus to things, but for now you substitute obedience for honest enjoyment, and just get her used to strong stimulation without putting anything in her.
+			$activeSlave.slaveName does not like it up the butt. $He views $his rectum as a dirty place that should not be involved in sex. Naturally, this is an unacceptable view for a Free Cities slut to hold. It's a hard flaw to fix when you can't introduce $his anus to things, but for now you substitute obedience for honest enjoyment, and just get $him used to strong stimulation without putting anything in $him.
 		<</if>>
 	<<case "apathetic">>
-		You are well practiced at forcing slaves to get you off or suffer punishment. To address $activeSlave.slaveName's sexual apathy, you adapt the method by requiring her to work her mouth under your desk while you do business. She does all the work, start to finish, and she does it well if she wants to avoid pain.
+		You are well practiced at forcing slaves to get you off or suffer punishment. To address $activeSlave.slaveName's sexual apathy, you adapt the method by requiring $him to work $his mouth under your desk while you do business. $He does all the work, start to finish, and $he does it well if $he wants to avoid pain.
 		<<set $activeSlave.oralCount += 10, $oralTotal += 10>>
 	<<case "crude">>
-		$activeSlave.slaveName does not pay enough attention to standards when having sex, leading to crude comments and unsexy noises. To remedy this, you have her give you oral regularly: a sacrifice, but you make sacrifices for your slaves' improvement. Oral sex can be difficult to make elegant, but you work with her to make it as pretty as possible, and spank her cruelly when she fails.
+		$activeSlave.slaveName does not pay enough attention to standards when having sex, leading to crude comments and unsexy noises. To remedy this, you have $him give you oral regularly: a sacrifice, but you make sacrifices for your slaves' improvement. Oral sex can be difficult to make elegant, but you work with $him to make it as pretty as possible, and spank $him cruelly when $he fails.
 		<<set $activeSlave.oralCount += 10, $oralTotal += 10>>
 	<<case "judgemental">>
-		$activeSlave.slaveName has a bad habit of being sexually judgemental, belittling anyone who doesn't live up to her pretensions of standards. To her regret, she frequently implies that she prefers partners with big dicks: regret, because whenever she's caught doing this, you have her brought to you and <<if $PC.dick == 1>>apply your big dick<<else>>apply a big dildo<</if>>
+		$activeSlave.slaveName has a bad habit of being sexually judgemental, belittling anyone who doesn't live up to $his pretensions of standards. To $his regret, $he frequently implies that $he prefers partners with big dicks: regret, because whenever $he's caught doing this, you have $him brought to you and <<if $PC.dick == 1>>apply your big dick<<else>>apply a big dildo<</if>>
 		<<if ($activeSlave.anus > 0) && canDoAnal($activeSlave)>>
-			to her anus without mercy.
+			to $his anus without mercy.
 			<<= AnalVCheck(10)>>
 		<<else>>
-			to her gagging throat.
+			to $his gagging throat.
 			<<set $activeSlave.oralCount += 10, $oralTotal += 10>>
 		<</if>>
 	<<case "shamefast">>
-		Fortunately, shamefastness is a simple problem to break. Whenever you feel the inclination, you strip $activeSlave.slaveName naked, drag her out into whatever public space catches your fancy, and force her to <<if $PC.dick != 0>>suck your dick<<else>>eat you out<</if>>. To make sure she's really working over her shame despite having her face buried against you, you force her to spread her buttocks to show off her asshole while she <<if $PC.dick != 0>>sucks<<else>>licks you<</if>>.
+		Fortunately, shamefastness is a simple problem to break. Whenever you feel the inclination, you strip $activeSlave.slaveName naked, drag her out into whatever public space catches your fancy, and force her to <<if $PC.dick != 0>>suck your dick<<else>>eat you out<</if>>. To make sure $he's really working over $his shame despite having $his face buried against you, you force her to spread $his buttocks to show off $his asshole while $he <<if $PC.dick != 0>>sucks<<else>>licks you<</if>>.
 		<<set $activeSlave.oralCount += 10, $oralTotal += 10>>
 	<<case "idealistic">>
-		$activeSlave.slaveName still sees sex in a naïve light, hoping to be romanced, teased to arousal, and asked permission. This might be an annoyingly ignorant outlook if it wasn't so amusing to break. By the tenth time you slap her $activeSlave.skin face at the slightest hesitation to <<if $PC.dick != 0>>suck your cock<<else>>eat your pussy<</if>>, her illusions are guttering low.
+		$activeSlave.slaveName still sees sex in a naïve light, hoping to be romanced, teased to arousal, and asked permission. This might be an annoyingly ignorant outlook if it wasn't so amusing to break. By the tenth time you slap $his $activeSlave.skin face at the slightest hesitation to <<if $PC.dick != 0>>suck your cock<<else>>eat your pussy<</if>>, $his illusions are guttering low.
 		<<set $activeSlave.oralCount += 10, $oralTotal += 10>>
 	<<case "repressed">>
-		$activeSlave.slaveName's innocence and hesitations about sex are unlikely to survive much longer, but you decide to hurry the process along by making her <<if $PC.dick != 0>>eat dick<<else>>eat your pussy<</if>> while masturbating. She's repressed enough that masturbation is still a partial punishment for her, but she usually gets herself off anyway, shaking with release and sobbing with crushed illusions.
+		$activeSlave.slaveName's innocence and hesitations about sex are unlikely to survive much longer, but you decide to hurry the process along by making $him <<if $PC.dick != 0>>eat dick<<else>>eat your pussy<</if>> while masturbating. $He's repressed enough that masturbation is still a partial punishment for her, but $he usually gets $himself off anyway, shaking with release and sobbing with crushed illusions.
 		<<set $activeSlave.oralCount += 10, $oralTotal += 10>>
 	<<case "cum addict">>
 		$activeSlave.slaveName is utterly addicted to cum. You keep her in your office whenever you can, and subject her to a strict sexual diet of
 		<<if canDoVaginal($activeSlave)>>sex,<<elseif canDoAnal($activeSlave)>>buttsex,<<else>>breast play,<</if>>
-		no oral allowed, no matter how much she begs to be permitted to <<if $PC.dick == 1>>suck you off<<else>>eat you out<</if>>.
+		no oral allowed, no matter how much $he begs to be permitted to <<if $PC.dick == 1>>suck you off<<else>>eat you out<</if>>.
 		<<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><</if>>
 	<<case "anal addict">>
 		$activeSlave.slaveName is utterly addicted to buttsex. You keep her in your office whenever you can, and subject her to a strict sexual diet of
 		<<if canDoVaginal($activeSlave)>>vanilla sex,<<else>>oral and manual intercourse,<</if>>
-		no anal allowed, no matter how much she begs you to stick something, anything, up her ass.
+		no anal allowed, no matter how much $he begs you to stick something, anything, up $his ass.
 		<<if ($activeSlave.vagina > -1) && canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<else>><<set $activeSlave.oralCount += 10, $oralTotal += 10>><</if>>
 	<<case "attention whore">>
-		$activeSlave.slaveName is an obnoxious attention whore. You keep her in your office and make love to her whenever you can, but only whenever you're alone in the office. You even instruct $assistantName not to bother you while the slave is receiving her therapy.
+		$activeSlave.slaveName is an obnoxious attention whore. You keep her in your office and make love to her whenever you can, but only whenever you're alone in the office. You even instruct $assistantName not to bother you while the slave is receiving $his therapy.
 		<<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><</if>>
 	<<case "breast growth">>
-		$activeSlave.slaveName is completely devoted to her own tits. You keep her in your office whenever you can, <<if canDoVaginal($activeSlave)>>fucking her<<elseif canDoAnal($activeSlave)>>fucking her ass<<else>>fucking her face<</if>>
-		in positions that offer her boobs no stimulation at all. When you're not broadening her sexual horizons, she's restrained to keep her from touching her own nipples, despite piteous begging.
+		$activeSlave.slaveName is completely devoted to $his own tits. You keep her in your office whenever you can, <<if canDoVaginal($activeSlave)>>fucking $him<<elseif canDoAnal($activeSlave)>>fucking $his ass<<else>>fucking $his face<</if>>
+		in positions that offer $his boobs no stimulation at all. When you're not broadening $his sexual horizons, $he's restrained to keep $him from touching $his own nipples, despite piteous begging.
 		<<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><</if>>
 	<<case "abusive" "malicious">>
-		$activeSlave.slaveName seems to have forgotten that she's your bitch, so you remind her. You keep her in your office whenever she's not otherwise occupied, and hold her down and fuck her whenever you feel like it. It's been a long time since she was on the bottom this regularly.
+		$activeSlave.slaveName seems to have forgotten that $he's your bitch, so you remind $him. You keep $him in your office whenever $he's not otherwise occupied, and hold $him down and fuck $him whenever you feel like it. It's been a long time since $he was on the bottom this regularly.
 		<<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><</if>>
 	<<case "self hating">>
-		$activeSlave.slaveName hates herself much more than is normal for a well trained sex slave, to the point where she actively seeks out unhealthy and destructive assignments. You build up her sexual self esteem with a steady diet of
+		$activeSlave.slaveName hates $himself much more than is normal for a well trained sex slave, to the point where $he actively seeks out unhealthy and destructive assignments. You build up $his sexual self esteem with a steady diet of
 		<<if canDoVaginal($activeSlave)>>missionary lovemaking,<<elseif canDoAnal($activeSlave)>>gentle anal loving,<<else>>gentle oral sex,<</if>>
-		and make sure to praise her and keep her spirits up as much as you can.
+		and make sure to praise her and keep $his spirits up as much as you can.
 		<<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><</if>>
 	<<case "neglectful">>
-		$activeSlave.slaveName has given up on her own sexual pleasure to an extent, focusing only on getting others off. You keep her in your office and play with her regularly, making a game of getting her off as often as possible. You're careful to use other slaves for your own pleasure.
+		$activeSlave.slaveName has given up on $his own sexual pleasure to an extent, focusing only on getting others off. You keep her in your office and play with her regularly, making a game of getting her off as often as possible. You're careful to use other slaves for your own pleasure.
 		<<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><</if>>
 	<<case "breeder">>
 		$activeSlave.slaveName has become so sexually obsessed with pregnancy that impregnation holds less interest for her than being pregnant.
 		<<if $activeSlave.pregKnown == 1>>
-			Since she's pregnant, getting her out of this perversion is more difficult than just fucking her.
+			Since $he's pregnant, getting her out of this perversion is more difficult than just fucking her.
 		<<elseif !canDoAnal($activeSlave)>>
 			Fortunately, all slaves have a convenient hole in which they can be fucked without even the slightest danger of pregnancy.
-			Since her ass is off-limits, you address the situation by fucking her throat, and making sure she enjoys it, too.
+			Since $his ass is off-limits, you address the situation by fucking $his throat, and making sure $he enjoys it, too.
 			<<set $activeSlave.oralCount += 10, $oralTotal += 10>>
 		<<elseif $activeSlave.mpreg == 1>>
-			Fortunately, all slaves have a convenient hole in which they can be fucked without even the slightest danger of pregnancy, which, in her case, is not her fertile ass.
-			So, you address the situation by fucking her throat, and making sure she enjoys it, too.
+			Fortunately, all slaves have a convenient hole in which they can be fucked without even the slightest danger of pregnancy, which, in $his case, is not $his fertile ass.
+			So, you address the situation by fucking $his throat, and making sure $he enjoys it, too.
 			<<set $activeSlave.oralCount += 10, $oralTotal += 10>>
 		<<else>>
 			Fortunately, all slaves have a convenient hole in which they can be fucked without even the slightest danger of pregnancy.
-			So, you address the situation by fucking her up the ass, and making sure she gets off to it, too.
+			So, you address the situation by fucking $him up the ass, and making sure $he gets off to it, too.
 			<<= AnalVCheck(10)>>
 		<</if>>
 	<</switch>>
 	<<set $activeSlave.training += 40>> /* fixing is easier than softening */
 	<<if $activeSlave.training < 100>>
-		You make progress, but she's the same at the end of the week.
+		You make progress, but $he's the same at the end of the week.
 	<<else>>
 		<<set $activeSlave.training = 0>>
-		By the end of the week, @@.green;you break her of her bad habits.@@ @@.hotpink;Her obedience has increased.@@
+		By the end of the week, @@.green;you break $him of $his bad habits.@@ @@.hotpink;$His obedience has increased.@@
 		<<set $activeSlave.sexualFlaw = "none", $activeSlave.devotion += 4>>
 	<</if>>
 	<<if $activeSlave.fetishKnown != 1>>
 		<<if ($activeSlave.fetish == "submissive")>>
-			She really takes to your close attention; @@.pink;she's a natural submissive!@@
+			$He really takes to your close attention; @@.pink;$he's a natural submissive!@@
 			<<set ($activeSlave.fetishKnown = 1)>>
 		<<elseif ($activeSlave.fetish == "cumslut")>>
-			While you're giving her personal attention, you discover by chance that @@.pink;she has an oral fixation!@@
+			While you're giving her personal attention, you discover by chance that @@.pink;$he has an oral fixation!@@
 			<<set ($activeSlave.fetishKnown = 1)>>
 		<<elseif ($activeSlave.fetish == "masochist")>>
-			While you're giving her personal correction, you discover by chance that @@.pink;she likes pain!@@
+			While you're giving her personal correction, you discover by chance that @@.pink;$he likes pain!@@
 			<<set ($activeSlave.fetishKnown = 1)>>
 		<<elseif ($activeSlave.fetish == "humiliation")>>
-			While you're giving her personal attention in public, you discover by chance that @@.pink;she likes humiliation!@@
+			While you're giving her personal attention in public, you discover by chance that @@.pink;$he likes humiliation!@@
 			<<set ($activeSlave.fetishKnown = 1)>>
 		<</if>>
 	<</if>>
 	<<if ($activeSlave.sexualFlaw == "none")>>
-		With her sexual flaw trained out,
-		@@.yellow;her training assignment has defaulted to
+		With $his sexual flaw trained out,
+		@@.yellow;$his training assignment has defaulted to
 		<<if ($activeSlave.behavioralFlaw == "none")>>
 			<<if ($activeSlave.devotion <= 20) && ($activeSlave.trust >= -20)>>
-				breaking her will.
+				breaking $his will.
 				<<set $personalAttention[_ptwi].trainingRegimen = "break her will">>
 			<<else>>
 				fostering devotion.
 				<<set $personalAttention[_ptwi].trainingRegimen = "build her devotion">>
 			<</if>>
 		<<else>>
-			addressing her behavioral flaw.
+			addressing $his behavioral flaw.
 			<<set $personalAttention[_ptwi].trainingRegimen = "fix her behavioral flaw">>
 		<</if>>
 		@@
@@ -718,12 +718,12 @@
 	<<set $activeSlave.attrKnown = 1>>
 	You set about investigating her sexuality.
 	<<if ($activeSlave.devotion < -20) && ($activeSlave.trust >= -20)>>
-		She's so resistant that you have to fill her with psychoactive drugs and restrain her painfully in order to learn anything. This abuse @@.mediumorchid;increases her hatred.@@
+		$He's so resistant that you have to fill her with psychoactive drugs and restrain her painfully in order to learn anything. This abuse @@.mediumorchid;increases $his hatred.@@
 		<<set $activeSlave.devotion -= 5>>
 	<<elseif $activeSlave.devotion <= 20>>
-		You anticipate that she won't be sufficiently compliant with some of the extreme practices you mean to investigate, so you give her a hearty dose of aphrodisiacs and place her in bondage gear. She isn't happy, but soon she's too horny to care.
+		You anticipate that $he won't be sufficiently compliant with some of the extreme practices you mean to investigate, so you give her a hearty dose of aphrodisiacs and place her in bondage gear. $He isn't happy, but soon $he's too horny to care.
 	<<else>>
-		She's obedient enough that there is no trouble with any of the sexual kinks you subject her to. Some she likes more than others, but when she's not enjoying herself, she grits her teeth and concentrates on obeying you.
+		$He's obedient enough that there is no trouble with any of the sexual kinks you subject her to. Some $he likes more than others, but when $he's not enjoying $himself, $he grits $his teeth and concentrates on obeying you.
 	<</if>>
 	You start off by making $him view a medley of pornography while $assistantName monitors $him for arousal. It seems $he is
 	<<if $activeSlave.attrXY <= 5>>
@@ -761,84 +761,85 @@
 	<<set $activeSlave.fetishKnown = 1>>
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;You then give $him a good exploratory fondle. You play with $his nipples and each of $his holes and gauge $his reaction.
 	<<if $activeSlave.fetish == "boobs">>
-		You've barely touched $his nipples before she moans. After some experimentation, it becomes clear that her nipples might as well be a pair of slightly less sensitive <<if $activeSlave.nipples == "fuckable">>pussies<<else>>clits<</if>>. Finding her mammary fixation with you has @@.hotpink;increased her devotion to you.@@
+		You've barely touched $his nipples before $he moans. After some experimentation, it becomes clear that $his nipples might as well be a pair of slightly less sensitive <<if $activeSlave.nipples == "fuckable">>pussies<<else>>clits<</if>>. Finding $his mammary fixation with you has @@.hotpink;increased $his devotion to you.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif $activeSlave.fetish == "buttslut">>
-		<<if $activeSlave.vagina >= 0>>When you move from fingering her pussy to her asshole,<<else>>When you move from fondling her mouth to her asshole,<</if>> you've barely touched her butt before she comes explosively. After some experimentation, it becomes clear that her g-spot might as well be located up her ass. Finding her anal fixation with you has @@.hotpink;increased her devotion to you.@@
+		<<if $activeSlave.vagina >= 0>>When you move from fingering $his pussy to $his asshole,<<else>>When you move from fondling $his mouth to $his asshole,<</if>> you've barely touched $his butt before $he comes explosively. After some experimentation, it becomes clear that $his g-spot might as well be located up $his ass. Finding $his anal fixation with you has @@.hotpink;increased $his devotion to you.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif $activeSlave.energy > 95>>
 		$He shows no real reaction when you move your fingers from hole to hole, because $he seems to react with arousal to fingers in any of them.
 	<<else>>
 		Nothing unusual happens.
 	<</if>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;Next, you demand extreme submission from $him. You make her change into bondage gear that blinds her, restricts her movement, forces her to present her breasts uncomfortably, and holds vibrators against her. Thus attired, she is forced to serve you in whatever petty ways occur to you.
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;Next, you demand extreme submission from $him. You make her change into bondage gear that blinds her, restricts $his movement, forces her to present $his breasts uncomfortably, and holds vibrators against her. Thus attired, $he is forced to serve you in whatever petty ways occur to you.
 	<<if $activeSlave.fetish == "submissive">>
-		During the first hour of this treatment, she cums hard against the vibrators. She's a natural submissive! Discovering this about herself under your hands has @@.hotpink;increased her devotion to you.@@
+		During the first hour of this treatment, $he cums hard against the vibrators. $He's a natural submissive! Discovering this about $himself under your hands has @@.hotpink;increased $his devotion to you.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif $activeSlave.energy > 95>>
-		She complies, showing the same enthusiasm for this as for other sex.
+		$He complies, showing the same enthusiasm for this as for other sex.
 	<<else>>
-		She complies, but she's not a natural submissive.
+		$He complies, but $he's not a natural submissive.
 	<</if>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;Before you let $him out of the extreme bondage, you rain a series of light blows across her nipples and buttocks.
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;Before you let $him out of the extreme bondage, you rain a series of light blows across $his nipples and buttocks.
 	<<if $activeSlave.fetish == "masochist">>
-		She almost orgasms at the stinging pain. She's a masochist! This discovery has @@.hotpink;increased her devotion to $He.@@
+		$He almost orgasms at the stinging pain. $He's a masochist! This discovery has @@.hotpink;increased $his devotion to $He.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif $activeSlave.energy > 95>>
 		$He enjoys the pain play, but $he seems to enjoy everything you try.
 	<<else>>
 		$He struggles and tries to avoid the blows.
 	<</if>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;The next day, she continues to accompany you. Whenever cum is involved in your day's affairs in any way, you require her to clean it up with her mouth.
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;The next day, $he continues to accompany you. Whenever cum is involved in your day's affairs in any way, you require $him to clean it up with $his mouth.
 	<<if $activeSlave.fetish == "cumslut">>
-		She enjoys this treatment. She's a cumslut! Discovering this about herself under your hands has @@.hotpink;increased her devotion to you.@@
+		$He enjoys this treatment. $He's a cumslut! Discovering this about $himself under your hands has @@.hotpink;increased $his devotion to you.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif $activeSlave.energy > 95>>
-		She enjoys using her mouth, but no more than other kinds of sexual activity.
+		$He enjoys using $his mouth, but no more than other kinds of sexual activity.
 	<<else>>
 		If $he had any special regard for cum, you'd know it, and $he doesn't.
 	<</if>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;You carefully watch her reaction as you let her spend a short time relaxing with a pregnant slave.
+	<<setNonlocalPronouns 0>>
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;You carefully watch $his reaction as you let $him spend a short time relaxing with a pregnant slave.
 	<<if $activeSlave.fetish == "pregnancy">>
-		$He's fascinated. $He fetishizes fertility! Discovering this with you has @@.hotpink;increased her devotion to you.@@
+		$He's fascinated. $He fetishizes fertility! Discovering this with you has @@.hotpink;increased $his devotion to you.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif $activeSlave.energy > 95>>
 		$He spends most of the rest ogling the pregnant slave's boobs.
 	<<else>>
 		$He simply enjoys the rest.
 	<</if>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;You restrain the pregnant slave and administer a brief beating across her bare buttocks, ensuring that you cause enough pain to produce a few tears, a bit of begging, and some struggling.
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;You restrain the pregnant slave and administer a brief beating across _hisU bare buttocks, ensuring that you cause enough pain to produce a few tears, a bit of begging, and some struggling.
 	<<if $activeSlave.fetish == "sadist">>
-		$He's almost painfully aroused. She's titillated by the idea of causing pain! Discovering this about herself under your direction has @@.hotpink;increased her devotion to you.@@
+		$He's almost painfully aroused. $He's titillated by the idea of causing pain! Discovering this about $himself under your direction has @@.hotpink;increased $his devotion to you.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif $activeSlave.energy > 95>>
-		$He enjoys watching the poor pregnant slave wriggle, but $he's watching her butt rather than the beating.
+		$He enjoys watching the poor pregnant slave wriggle, but $he's watching _hisU butt rather than the beating.
 	<<else>>
-		$He's a bit disturbed by the sight of you punishing the pregnant girl.
+		$He's a bit disturbed by the sight of you punishing the pregnant _girlU.
 	<</if>>
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;Before letting the poor pregnant slave go, you require $activeSlave.slaveName to add a blindfold to the restraints.
 	<<if $activeSlave.fetish == "dom">>
-		She seems to really enjoy blindfolding the poor girl, reassuring her as she does. She's a natural sexual top! Discovering this about herself under your direction has @@.hotpink;increased her devotion to you.@@
+		$He seems to really enjoy blindfolding the poor _girlU, reassuring _himU as $he does. $He's a natural sexual top! Discovering this about $himself under your direction has @@.hotpink;increased $his devotion to you.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif $activeSlave.energy > 95>>
-		She enjoys getting closer to the slave, mostly so she can give her pregnant pussy a thorough grope.
+		$He enjoys getting closer to the slave, mostly so $he can give _hisU pregnant pussy a thorough grope.
 	<<else>>
-		She just follows orders.
+		$He just follows orders.
 	<</if>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;Lastly, you place her in a special room in your penthouse filled with live video equipment. They get to see her groped, deepthroated, facial'd, teased, and tortured.
+	<br>&nbsp;&nbsp;&nbsp;&nbsp;Lastly, you place $him in a special room in your penthouse filled with live video equipment. They get to see $him groped, deepthroated, facial'd, teased, and tortured.
 	<<if $activeSlave.fetish == "humiliation">>
-		The more viewers she gets, the harder she comes. She's a slut for humiliation! Discovering this about herself under your hands has @@.hotpink;increased her devotion to you.@@
+		The more viewers $he gets, the harder $he comes. $He's a slut for humiliation! Discovering this about $himself under your hands has @@.hotpink;increased $his devotion to you.@@
 		<<set $activeSlave.devotion += 4>>
 	<<elseif $activeSlave.energy > 95>>
-		She enjoys showing off sexually, but focuses on the sex first. She got off on everything, and is clearly a nympho. Discovering this about herself under your hands has @@.hotpink;greatly increased her devotion to you.@@
+		$He enjoys showing off sexually, but focuses on the sex first. $He got off on everything, and is clearly a nympho. Discovering this about $himself under your hands has @@.hotpink;greatly increased $his devotion to you.@@
 		<<set $activeSlave.devotion += 9>>
 	<<else>>
-		She gets through it, but she doesn't seem to enjoy seeing her audience on the screen.
+		$He gets through it, but $he doesn't seem to enjoy seeing $his audience on the screen.
 	<</if>>
 	<<else>>
-		<br>&nbsp;&nbsp;&nbsp;&nbsp;You already know that she
+		<br>&nbsp;&nbsp;&nbsp;&nbsp;You already know that $he
 		<<switch $activeSlave.fetish>>
-		<<case "submissive" "cumslut" "buttslut" "sadist" "masochist" "dom">>
+		<<case "buttslut" "cumslut" "dom" "masochist" "sadist" "submissive">>
 			is a @@.coral;$activeSlave.fetish,@@
 		<<case "mindbroken">>
 			is @@.red;mindbroken,@@
@@ -852,7 +853,7 @@
 	<<BasicTrainingDefaulter>>
 
 <<case "induce arrogance">>
-	Since you've decided to incite her to arrogance, you praise her effusively, and give orders that others are to do so as well. Other slaves are punished for things $he's allowed to get away with.
+	Since you've decided to incite $him to arrogance, you praise $him effusively, and give orders that others are to do so as well. Other slaves are punished for things $he's allowed to get away with.
 	<<InduceFlawLenityEffects>>
 	<<if $activeSlave.training < 100>>
 		$He isn't seriously affected; you'll have to be more subtle next week.
@@ -868,69 +869,69 @@
 	<<if $activeSlave.training < 100>>
 		$He goes along, but remains cautious and will need more practice.
 	<<else>>
-		She starts making @@.red;bitchy@@ remarks without being prompted.
+		$He starts making @@.red;bitchy@@ remarks without being prompted.
 		<<set $activeSlave.behavioralFlaw = "bitchy">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
 <<case "induce odd behavior">>
-	Since you've decided to abuse her into odd behavior, you target her for a campaign of surprise sex. You constantly ambush her, shove her onto the ground, and fuck her. Sometimes she wakes up from bad dreams to find you penetrating her.
+	Since you've decided to abuse $him into odd behavior, you target $him for a campaign of surprise sex. You constantly ambush $him, shove $him onto the ground, and fuck $him. Sometimes $he wakes up from bad dreams to find you penetrating $him.
 	<<InduceFlawAbuseEffects>>
 	<<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><<else>><<set $activeSlave.oralCount += 10, $oralTotal += 10>><</if>>
 	<<if $activeSlave.training < 100>>
-		She does her best to tolerate the abuse.
+		$He does $his best to tolerate the abuse.
 	<<else>>
-		She starts @@.red;behaving oddly,@@ jumping at noises and mumbling to herself.
+		$He starts @@.red;behaving oddly,@@ jumping at noises and mumbling to $himself.
 		<<set $activeSlave.behavioralFlaw = "odd">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
 <<case "induce hatred of men">>
-	In order to make her hate men, you sometimes simply <<if $PC.dick == 1>>stick your dick in her without asking<<else>>stuff a strap-on inside her without asking<</if>>, and sometimes force shockingly juvenile pranks on her. She is regularly smacked in the face with floppy dildos.
+	In order to make $him hate men, you sometimes simply <<if $PC.dick == 1>>stick your dick in $him without asking<<else>>stuff a strap-on inside $him without asking<</if>>, and sometimes force shockingly juvenile pranks on $him. $He is regularly smacked in the face with floppy dildos.
 	<<InduceFlawAbuseEffects>>
 	<<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><<else>><<set $activeSlave.oralCount += 10, $oralTotal += 10>><</if>>
 	<<if $activeSlave.training < 100>>
-		She focuses more on you than on the masculine aspects of this. You'll need to be more subtle next week.
+		$He focuses more on you than on the masculine aspects of this. You'll need to be more subtle next week.
 	<<else>>
-		You notice her starting to @@.red;shoot hateful glances@@ at any men she sees.
+		You notice $him starting to @@.red;shoot hateful glances@@ at any men $he sees.
 		<<set $activeSlave.behavioralFlaw = "hates men">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
 <<case "induce hatred of women">>
-	In order to make her hate women, you keep her in your office when she's not otherwise occupied, and <<if $PC.vagina == 0>>make her eat other slaves out<<else>>sit on her face<</if>> until she's thoroughly sick of pussy.
+	In order to make $him hate women, you keep $him in your office when $he's not otherwise occupied, and <<if $PC.vagina == 0>>make $him eat other slaves out<<else>>sit on $his face<</if>> until $he's thoroughly sick of pussy.
 	<<InduceFlawAbuseEffects>>
 	<<if $activeSlave.training < 100>>
-		She focuses more on you than on the feminine aspects of this. You'll need to be more subtle next week.
+		$He focuses more on you than on the feminine aspects of this. You'll need to be more subtle next week.
 	<<else>>
-		You notice her starting to @@.red;shoot hateful glances@@ at any vaginas she sees.
+		You notice $him starting to @@.red;shoot hateful glances@@ at any vaginas $he sees.
 		<<set $activeSlave.behavioralFlaw = "hates women">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
 <<case "induce gluttony">>
-	Inducing gluttony is harder than inducing anorexia; you force her to orgasm when she's eating, and praise her effusively when she gains weight. You also provide her with ample rations for stress eating.
+	Inducing gluttony is harder than inducing anorexia; you force $him to orgasm when $he's eating, and praise $him effusively when $he gains weight. You also provide $him with ample rations for stress eating.
 	<<set $activeSlave.training -= 20>> /* more difficult training */
 	<<if $activeSlave.training < 100>>
-		She eats when ordered, but isn't deeply affected. She'll need more practice being a pig.
+		$He eats when ordered, but isn't deeply affected. $He'll need more practice being a pig.
 	<<else>>
-		You notice her starting to @@.red;enjoy eating@@ for its own sake, even when she's not hungry.
+		You notice her starting to @@.red;enjoy eating@@ for its own sake, even when $he's not hungry.
 		<<set $activeSlave.behavioralFlaw = "gluttonous">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
 <<case "induce anorexia">>
-	You criticize her cruelly whenever she eats, and praise thinner slaves to her face at every opportunity.
+	You criticize her cruelly whenever $he eats, and praise thinner slaves to $his face at every opportunity.
 	<<InduceFlawAbuseEffects>>
 	<<if $activeSlave.training < 100>>
-		She continues consuming her rations when ordered, and will need further training.
+		$He continues consuming $his rations when ordered, and will need further training.
 	<<else>>
-		She begins to @@.red;eat only when repeatedly ordered to.@@
+		$He begins to @@.red;eat only when repeatedly ordered to.@@
 		<<set $activeSlave.behavioralFlaw = "anorexic">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
 <<case "induce religious devotion">>
-	You direct a campaign of abuse and threats at her, and surreptitiously ensure that a little religious text from her home country finds its way into a hiding place in her living area.
+	You direct a campaign of abuse and threats at her, and surreptitiously ensure that a little religious text from her home country finds its way into a hiding place in $his living area.
 	<<InduceFlawAbuseEffects>>
 	<<if $activeSlave.training < 100>>
-		She keeps her head down and shows no sign of religious introspection, at least this week.
+		$He keeps $his head down and shows no sign of religious introspection, at least this week.
 	<<else>>
-		She begins to read it when she thinks she's alone, and @@.red;talks to God@@ when she thinks only He is listening.
+		$He begins to read it when $he thinks $he's alone, and @@.red;talks to God@@ when $he thinks only He is listening.
 		<<set $activeSlave.behavioralFlaw = "devout">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
@@ -938,53 +939,53 @@
 	You direct a campaign of abuse and threats at her, making sure to threaten her with the absolute worst of slavery in your arcology. You also arrange for her to witness other citizen's slaves in situations that aren't much fun.
 	<<InduceFlawAbuseEffects>>
 	<<if $activeSlave.training < 100>>
-		She does her best to endure the abuse, unknowingly condemning herself to more.
+		$He does $his best to endure the abuse, unknowingly condemning $himself to more.
 	<<else>>
-		A deep @@.red;anger about slavery@@ builds within her.
+		A deep @@.red;anger about slavery@@ builds within $him.
 		<<set $activeSlave.behavioralFlaw = "liberated">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
 <<case "induce hatred of oral">>
-	Since you've decided to force her to dislike oral sex, you're forced to use a complicated and refined slave breaking technique: constantly raping her face.
+	Since you've decided to force $him to dislike oral sex, you're forced to use a complicated and refined slave breaking technique: constantly raping $his face.
 	<<InduceFlawAbuseEffects>>
 	<<set $activeSlave.oralCount += 10, $oralTotal += 10>>
 	<<if $activeSlave.training < 100>>
-		She does her best to comply with the oral abuse, unknowingly condemning herself to more.
+		$He does $his best to comply with the oral abuse, unknowingly condemning $himself to more.
 	<<else>>
-		After gagging enough, she finally starts to @@.red;hate oral.@@
+		After gagging enough, $he finally starts to @@.red;hate oral.@@
 		<<set $activeSlave.sexualFlaw = "hates oral">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
 <<case "induce hatred of anal">>
-	Since you've decided to force her to dislike anal sex, you're forced to use a complicated and refined slave breaking technique: constantly raping her ass.
-	<<if !canDoAnal($activeSlave)>>Every time you catch her with her chastity off, you're there to penetrate her rectum<</if>>.
+	Since you've decided to force $him to dislike anal sex, you're forced to use a complicated and refined slave breaking technique: constantly raping $his ass.
+	<<if !canDoAnal($activeSlave)>>Every time you catch $him with $his chastity off, you're there to penetrate $his rectum<</if>>.
 	<<InduceFlawAbuseEffects>>
 	<<= AnalVCheck(10)>>
 	<<if $activeSlave.training < 100>>
-		She does her best to comply with your abuse of her butthole, unknowingly condemning herself to more assrape.
+		$He does $his best to comply with your abuse of $his butthole, unknowingly condemning $himself to more assrape.
 	<<else>>
-		After feeling her poor sphincter grow sorer and sorer, she starts to @@.red;hate anal.@@
+		After feeling $his poor sphincter grow sorer and sorer, $he starts to @@.red;hate anal.@@
 		<<set $activeSlave.sexualFlaw = "hates anal">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
 <<case "induce hatred of penetration">>
-	Since you've decided to force her to dislike penetration, you're forced to use a complicated and refined slave breaking technique: constantly raping her.
+	Since you've decided to force $him to dislike penetration, you're forced to use a complicated and refined slave breaking technique: constantly raping $him.
 	<<InduceFlawAbuseEffects>>
 	<<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><<else>><<set $activeSlave.oralCount += 10, $oralTotal += 10>><</if>>
 	<<if $activeSlave.training < 100>>
-		She does her best to comply with your abuse, unknowingly condemning herself to more of it.
+		$He does $his best to comply with your abuse, unknowingly condemning $himself to more of it.
 	<<else>>
-		After feeling her poor holes grow sorer and sorer, she starts to @@.red;hate getting fucked.@@
+		After feeling $his poor holes grow sorer and sorer, $he starts to @@.red;hate getting fucked.@@
 		<<set $activeSlave.sexualFlaw = "hates penetration">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
 <<case "induce shame">>
-	Since you've decided to force shame on her, you keep her in your office whenever she's not otherwise occupied, and heap derision on her at every opportunity, even inviting visitors to join you in chats about how unattractive and worthless she is.
+	Since you've decided to force shame on her, you keep her in your office whenever $he's not otherwise occupied, and heap derision on her at every opportunity, even inviting visitors to join you in chats about how unattractive and worthless $he is.
 	<<InduceFlawAbuseEffects>>
 	<<if $activeSlave.training < 100>>
-		She does her best to keep her chin up, unknowingly condemning herself to more of this abuse.
+		$He does her best to keep her chin up, unknowingly condemning $himself to more of this abuse.
 	<<else>>
-		She wants nothing more than to hide in corner and cry, and is now @@.red;shamefast.@@
+		$He wants nothing more than to hide in corner and cry, and is now @@.red;shamefast.@@
 		<<set $activeSlave.sexualFlaw = "shamefast">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
@@ -992,140 +993,140 @@
 	Since you've decided to induce her to sexual idealism, you keep her in your office, and when the two of you are all alone, gossip with her about other slaves and even citizens. You do your best to encourage her to believe absurdities.
 	<<InduceFlawLenityEffects>>
 	<<if $activeSlave.training < 100>>
-		She doesn't know what to make of this; you'll have to keep at it.
+		$He doesn't know what to make of this; you'll have to keep at it.
 	<<else>>
-		She follows along, and is now @@.red;sexually idealistic.@@
+		$He follows along, and is now @@.red;sexually idealistic.@@
 		<<set $activeSlave.sexualFlaw = "idealistic">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
 <<case "induce sexual repression">>
-	Since you've decided to force sexual repression on her, you keep her in your office whenever she's not otherwise occupied. You use the monitoring systems to reveal her sexual arousal whenever it appears, and castigate and punish her for it.
+	Since you've decided to force sexual repression on her, you keep her in your office whenever $he's not otherwise occupied. You use the monitoring systems to reveal $his sexual arousal whenever it appears, and castigate and punish $him for it.
 	<<InduceFlawAbuseEffects>>
 	<<if $activeSlave.training < 100>>
-		She does her best to keep her chin up, unknowingly condemning herself to more of this abuse.
+		$He does $his best to keep $his chin up, unknowingly condemning $himself to more of this abuse.
 	<<else>>
-		She desperately tries to avoid even thinking about subjects that get her punished, and is now @@.red;sexually repressed.@@
+		$He desperately tries to avoid even thinking about subjects that get her punished, and is now @@.red;sexually repressed.@@
 		<<set $activeSlave.sexualFlaw = "repressed">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
 <<case "induce sexual apathy">>
-	Since you've decided to force sexual apathy on her, you keep her in your office whenever she's not otherwise occupied. You use her regularly, and punish her whenever she shows any sign of enjoyment.
+	Since you've decided to force sexual apathy on her, you keep her in your office whenever $he's not otherwise occupied. You use her regularly, and punish her whenever $he shows any sign of enjoyment.
 	<<InduceFlawAbuseEffects>>
 	<<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><<else>><<set $activeSlave.oralCount += 10, $oralTotal += 10>><</if>>
 	<<if $activeSlave.training < 100>>
-		She continues to experience arousal when fucked, and will need more of this treatment.
+		$He continues to experience arousal when fucked, and will need more of this treatment.
 	<<else>>
-		She desperately tries to avoid arousal, and is now @@.red;sexually apathetic.@@
+		$He desperately tries to avoid arousal, and is now @@.red;sexually apathetic.@@
 		<<set $activeSlave.sexualFlaw = "apathetic">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
 <<case "induce crudity">>
-	Since you've decided to force sexual crudeness on her, you keep her in your office whenever she's not otherwise occupied, and degrade her cruelly. You relax the normal cleanliness rules, and require her to leave her used holes as they are until she's too disgusting to fuck.
+	Since you've decided to force sexual crudeness on $him, you keep $him in your office whenever $he's not otherwise occupied, and degrade $him cruelly. You relax the normal cleanliness rules, and require $him to leave $his used holes as they are until $he's too disgusting to fuck.
 	<<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><<else>><<set $activeSlave.oralCount += 10, $oralTotal += 10>><</if>>
 	<<InduceFlawAbuseEffects>>
 	<<if $activeSlave.training < 100>>
-		She does her best to tolerate the unclean feelings, condemning herself to more of this.
+		$He does $his best to tolerate the unclean feelings, condemning $himself to more of this.
 	<<else>>
-		She slowly stops caring, and is now @@.red;sexually crude.@@
+		$He slowly stops caring, and is now @@.red;sexually crude.@@
 		<<set $activeSlave.sexualFlaw = "crude">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
 <<case "induce judgement">>
-	Since you've decided to make her sexually judgemental, you keep her in your office and fuck her, <<if $PC.dick == 1>>praising her whenever she takes your big dick well<<else>>using a huge strap-on on her and praising her when she takes it like a good girl<</if>>. You also judge others' endowments in her presence.
+	Since you've decided to make $him sexually judgemental, you keep $him in your office and fuck $him, <<if $PC.dick == 1>>praising $him whenever $he takes your big dick well<<else>>using a huge strap-on on $him and praising $him when $he takes it like a good girl<</if>>. You also judge others' endowments in $his presence.
 	<<InduceFlawLenityEffects>>
 	<<if $activeSlave.training < 100>>
-		She writes this off as bravado, and will need more training.
+		$He writes this off as bravado, and will need more training.
 	<<else>>
-		She starts to consider herself reserved for special sexual treatment, and is now @@.red;sexually judgemental.@@
+		$He starts to consider $himself reserved for special sexual treatment, and is now @@.red;sexually judgemental.@@
 		<<set $activeSlave.sexualFlaw = "judgemental">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
 <<case "induce cum addiction">>
-	The cumslut is quite pleased when you order her to stay in your office whenever she can for use as one of your personal oral toys. You carefully limit her orgasms to when <<if $PC.dick == 1>>you're blowing your load down her throat<<else>>she's swallowing your pussyjuice<</if>>, and make her oral adventures predictably regular.
+	The cumslut is quite pleased when you order $him to stay in your office whenever $he can for use as one of your personal oral toys. You carefully limit $his orgasms to when <<if $PC.dick == 1>>you're blowing your load down $his throat<<else>>$he's swallowing your pussyjuice<</if>>, and make $his oral adventures predictably regular.
 	<<set $activeSlave.oralCount += 10, $oralTotal += 10>>
 	<<if $activeSlave.training < 100>>
-		She enjoys giving you lots of oral, but will need more training to develop psychological addiction to it.
+		$He enjoys giving you lots of oral, but will need more training to develop psychological addiction to it.
 	<<else>>
-		She begins to develop a psychological @@.yellow;addiction to cum.@@
+		$He begins to develop a psychological @@.yellow;addiction to cum.@@
 		<<set $activeSlave.sexualFlaw = "cum addict">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
 <<case "induce anal addiction">>
-	The buttslut is quite pleased when you order her to stay in your office<<if !canDoAnal($activeSlave)>>and remove her chastity<</if>> whenever she can for use as one of your personal anal toys. You make her anal orgasms predictably regular, doing your best to inculcate reliance on them.
+	The buttslut is quite pleased when you order $him to stay in your office<<if !canDoAnal($activeSlave)>>and remove $his chastity<</if>> whenever $he can for use as one of your personal anal toys. You make $his anal orgasms predictably regular, doing your best to inculcate reliance on them.
 	<<= AnalVCheck(10)>>
 	<<if $activeSlave.training < 100>>
-		She enjoys all the anal attention, but will need more training to develop psychological addiction to buttsex.
+		$He enjoys all the anal attention, but will need more training to develop psychological addiction to buttsex.
 	<<else>>
-		She begins to develop a psychological @@.yellow;addiction to anal sex.@@
+		$He begins to develop a psychological @@.yellow;addiction to anal sex.@@
 		<<set $activeSlave.sexualFlaw = "anal addict">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
 <<case "induce attention whoring">>
-	The humiliation slut is quite pleased when you order her to stay in your office whenever she can, and fucking her whenever other slaves are present. You do your best to focus her attention on how the others react to the spectacle.
+	The humiliation slut is quite pleased when you order $him to stay in your office whenever $he can, and fucking $him whenever other slaves are present. You do your best to focus her attention on how the others react to the spectacle.
 	<<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><<else>><<set $activeSlave.oralCount += 10, $oralTotal += 10>><</if>>
 	<<if $activeSlave.training < 100>>
-		She enjoys all the humiliation, but will need more training to become a true attention whore.
+		$He enjoys all the humiliation, but will need more training to become a true attention whore.
 	<<else>>
-		She becomes a @@.yellow;true attention whore,@@ caring more about the spectators than the sex.
+		$He becomes a @@.yellow;true attention whore,@@ caring more about the spectators than the sex.
 		<<set $activeSlave.sexualFlaw = "attention whore">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
 <<case "induce breast growth obsession">>
-	You inspect her breasts multiple times a day, and praise her effusively when they grow at all. You treat it as though it were something she could control personally.
+	You inspect her breasts multiple times a day, and praise $him effusively when they grow at all. You treat it as though it were something $he could control personally.
 	<<if $activeSlave.training < 100>>
-		She enjoys your attention to her favorite part of herself, but doesn't truly internalize your focus on their growth.
+		$He enjoys your attention to $his favorite part of $himself, but doesn't truly internalize your focus on their growth.
 	<<else>>
-		She begins to believe you despite herself, and becomes @@.yellow;obsessed with breast growth.@@
+		$He begins to believe you despite $himself, and becomes @@.yellow;obsessed with breast growth.@@
 		<<set $activeSlave.sexualFlaw = "breast growth">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
 <<case "induce abusiveness">>
-	The dom is gratified when you order her to stay in your office whenever she can to fuck any slave you feel like throwing her way. You do your best to limit her menu items to reluctant or even rebellious slaves, and praise her when she forces herself on them.
+	The dom is gratified when you order $him to stay in your office whenever $he can to fuck any slave you feel like throwing $his way. You do your best to limit $his menu items to reluctant or even rebellious slaves, and praise $him when $he forces $himself on them.
 	<<set $activeSlave.penetrativeCount += 20, $penetrativeTotal += 20>>
 	<<if $activeSlave.training < 100>>
-		She has fun, but she continues to enjoy getting off more than getting to use bitches. She'll need more practice.
+		$He has fun, but $he continues to enjoy getting off more than getting to use bitches. $He'll need more practice.
 	<<else>>
-		She becomes @@.yellow;sexually abusive,@@ looking over each slave that comes into your office in the hope they'll resist.
+		$He becomes @@.yellow;sexually abusive,@@ looking over each slave that comes into your office in the hope they'll resist.
 		<<set $activeSlave.sexualFlaw = "abusive">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
 <<case "induce maliciousness">>
-	The sadist is gratified when you order her to stay in your office whenever she can to have her way with any slave you feel like throwing her way. You do your best to limit her menu items to rebellious slaves, and praise her when her sadism makes her an effective punishment tool.
+	The sadist is gratified when you order $him to stay in your office whenever $he can to have $his way with any slave you feel like throwing $his way. You do your best to limit $his menu items to rebellious slaves, and praise $him when $his sadism makes $him an effective punishment tool.
 	<<set $activeSlave.penetrativeCount += 20, $penetrativeTotal += 20>>
 	<<if $activeSlave.training < 100>>
-		She enjoys herself, but still betrays occasional concern when slaves are really broken by what she does to them. She'll need more practice.
+		$He enjoys $himself, but still betrays occasional concern when slaves are really broken by what $he does to them. $He'll need more practice.
 	<<else>>
-		She becomes @@.yellow;sexually malicious,@@ going so far as to lick tears off her victims' faces.
+		$He becomes @@.yellow;sexually malicious,@@ going so far as to lick tears off $his victims' faces.
 		<<set $activeSlave.sexualFlaw = "malicious">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
 <<case "induce self hatred">>
-	You order the masochist to stay in your office whenever she's not working or resting. You fuck her cruelly, going beyond the pain she enjoys into harsh degradation. And every time you use her, you make sure to tell her how useless she is.
+	You order the masochist to stay in your office whenever $he's not working or resting. You fuck $him cruelly, going beyond the pain $he enjoys into harsh degradation. And every time you use $him, you make sure to tell $him how useless $he is.
 	<<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><<else>><<set $activeSlave.oralCount += 10, $oralTotal += 10>><</if>>
 	<<if $activeSlave.training < 100>>
-		She gets off on the pain, but her sense of self isn't seriously affected this week.
+		$He gets off on the pain, but $his sense of self isn't seriously affected this week.
 	<<else>>
-		She becomes @@.yellow;sexually self hating,@@ and tearfully begs to you do worse to her, no matter how bad it gets.
+		$He becomes @@.yellow;sexually self hating,@@ and tearfully begs to you do worse to her, no matter how bad it gets.
 		<<set $activeSlave.sexualFlaw = "self hating">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
 <<case "induce sexual self neglect">>
-	You order the sub to stay in your office whenever she's not working or resting, and use her body for your pleasure. The instant you climax, you go back to your work or to another slave, treating her like a piece of used tissue.
+	You order the sub to stay in your office whenever $he's not working or resting, and use $his body for your pleasure. The instant you climax, you go back to your work or to another slave, treating her like a piece of used tissue.
 	<<if canDoVaginal($activeSlave)>><<= VaginalVCheck(10)>><<elseif canDoAnal($activeSlave)>><<= AnalVCheck(10)>><<else>><<set $activeSlave.oralCount += 10, $oralTotal += 10>><</if>>
 	<<if $activeSlave.training < 100>>
-		She accepts her utterly submissive role, but her sense of self isn't seriously affected this week.
+		$He accepts $his utterly submissive role, but $his sense of self isn't seriously affected this week.
 	<<else>>
-		She becomes @@.yellow;sexually self neglectful,@@ and loses all expectation that those who use her will address her pleasure at all.
+		$He becomes @@.yellow;sexually self neglectful,@@ and loses all expectation that those who use $him will address $his pleasure at all.
 		<<set $activeSlave.sexualFlaw = "neglectful">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
 <<case "induce breeding obsession">>
-	You order the pregnant slut to stay in your office whenever she's not working or resting.
-	<<if $activeSlave.pregKnown == 0>>Since she's not pregnant, you keep her rigged up with an enormous sympathy belly when she's there.<</if>> Rather than fucking her, you praise her pregnancy effusively, and only allow her to get off when you're doing so.
+	You order the pregnant slut to stay in your office whenever $he's not working or resting.
+	<<if $activeSlave.pregKnown == 0>>Since $he's not pregnant, you keep her rigged up with an enormous sympathy belly when $he's there.<</if>> Rather than fucking her, you praise $his pregnancy effusively, and only allow her to get off when you're doing so.
 	<<if $activeSlave.training < 100>>
-		She enjoys herself, but mostly because of the pleasure. She'll need more training.
+		$He enjoys $himself, but mostly because of the pleasure. $He'll need more training.
 	<<else>>
-		She develops an @@.yellow;obsession with breeding,@@ and begins to stroke her belly in a disturbingly masturbatory way.
+		$He develops an @@.yellow;obsession with breeding,@@ and begins to stroke $his belly in a disturbingly masturbatory way.
 		<<set $activeSlave.sexualFlaw = "breeder">>
 		<<BasicTrainingDefaulter>>
 	<</if>>
diff --git a/src/uncategorized/reFSAcquisition.tw b/src/uncategorized/reFSAcquisition.tw
index 59e3703b5c2..d9f1a9208b9 100644
--- a/src/uncategorized/reFSAcquisition.tw
+++ b/src/uncategorized/reFSAcquisition.tw
@@ -1379,9 +1379,9 @@ The call comes in from an office, and you suppress the urge to check whether $as
 	<<case "Degradationist Two">>
 		When $he arrives as part of the anonymous slave transfers that make up a good part of the inter-arcology commerce, $he has clearly had some time to mull over $his situation. As soon as $he sees you, $he glares deep into your eyes and addresses you directly, "Those fuckers threw everything they could at me, you can't break me. No one can."
 	<<case "Body Purist">>
-		When $he arrives, it's obvious that $he isn't particularly happy with the situation, but there is some evident relief to $him. When asked about it, $he says, "I really hate the idea of surgery, especially implant surgery, M-<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>. Just - the idea of having fake shit in here -" $he rubs $his chest a little "- ugh." $He laughs bitterly at $himself, and then rubs $his chest again, looking at you with mixed fear and invitation.
+		When $he arrives, it's obvious that $he isn't particularly happy with the situation, but there is some evident relief to $him. When asked about it, $he says, "I really hate the idea of surgery, especially implant surgery, <<= WrittenMaster()>>. Just - the idea of having fake shit in here -" $he rubs $his chest a little "- ugh." $He laughs bitterly at $himself, and then rubs $his chest again, looking at you with mixed fear and invitation.
 	<<case "Body Purist Two">>
-		When $he arrives, it's obvious that $he's fairly happy. After all, the slave school trained $him for this. When asked about it, $he says, "Some of the girls who graduated before me were given implants, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>. Just - the idea of having fake shit in here -" $he rubs $his chest a little "- ugh. I'm glad you're not into that" $He laughs bitterly at $himself, and then rubs $his chest again, looking at you with mixed fear and invitation.
+		When $he arrives, it's obvious that $he's fairly happy. After all, the slave school trained $him for this. When asked about it, $he says, "Some of the girls who graduated before me were given implants, <<= WrittenMaster()>>. Just - the idea of having fake shit in here -" $he rubs $his chest a little "- ugh. I'm glad you're not into that" $He laughs bitterly at $himself, and then rubs $his chest again, looking at you with mixed fear and invitation.
 	<<case "Transformation Fetishist">>
 		$He arrives with various medical devices still attached to $him, wrapped up in supportive hospital clothing. Despite this, it's obvious that you've made a good decision. The new tits that got $him into this situation are so cartoonish that some of the medical tubing has been hastily routed between them. After a few weeks on curatives and a few more in training, $he'll be ready to bounce those fake boobs up and down as $he takes dick.
 	<<case "Transformation Fetishist Two">>
@@ -1471,7 +1471,7 @@ The call comes in from an office, and you suppress the urge to check whether $as
 	<<case "Body Purist">>
 		When $he arrives, it's obvious that $he isn't particularly happy with the situation, but there is some evident relief to $him. It vanishes when a purchaser's agent arrives to take $him away. $He looks at you desperately, begging to know who's purchased $him. You tell $him truthfully that a wealthy citizen one arcology over bought $him as a house slave; you neglect to mention that he likes big tits, and he isn't particular about whether they're natural.
 	<<case "Body Purist Two">>
-		When $he arrives, it's obvious that $he's fairly happy. After all, the slave school trained $him for this. When asked about it, $he says, "Some of the girls who graduated before me were given implants, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>. Just - the idea of having fake shit in here -" $he rubs $his chest a little "- ugh. I'm glad you're not into that" $He laughs bitterly at $himself, and then rubs $his chest again, looking at you with mixed fear and invitation. $His playfulness vanishes when a purchaser's agent arrives to take $him away. $He looks at you desperately, begging to know who's purchased $him. You tell $him truthfully that a wealthy citizen one arcology over bought $him as a house slave; you neglect to mention that he likes big tits, and he isn't particular about whether they're natural.
+		When $he arrives, it's obvious that $he's fairly happy. After all, the slave school trained $him for this. When asked about it, $he says, "Some of the girls who graduated before me were given implants, <<= WrittenMaster()>>. Just - the idea of having fake shit in here -" $he rubs $his chest a little "- ugh. I'm glad you're not into that" $He laughs bitterly at $himself, and then rubs $his chest again, looking at you with mixed fear and invitation. $His playfulness vanishes when a purchaser's agent arrives to take $him away. $He looks at you desperately, begging to know who's purchased $him. You tell $him truthfully that a wealthy citizen one arcology over bought $him as a house slave; you neglect to mention that he likes big tits, and he isn't particular about whether they're natural.
 	<<case "Transformation Fetishist">>
 		The only downside to $his condition is that reselling $him is utterly anticlimactic. A purchaser's agent arrives and takes charge of $him, transferring $him to a medical transport bed. He takes $him away, and it's done.
 	<<case "Transformation Fetishist Two">>
diff --git a/src/uncategorized/reNickname.tw b/src/uncategorized/reNickname.tw
index f1c7d461c49..e2cce13760b 100644
--- a/src/uncategorized/reNickname.tw
+++ b/src/uncategorized/reNickname.tw
@@ -791,7 +791,7 @@
 	<<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'", "'Flatty'", "'Ironing Board'", "'Itty Bitty'", "'Mosquito Bites'", "'Pettanko'", "'Plank'", "'Undersized'")>>
+	<<set $nickname = either("'A Cup'", "'DFC'", "'Flat'", "'Flatty'", "'Ironing Board'", "'Itty Bitty'", "'Mosquito Bites'", "'Pettanko'", "'Plank'", "'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.">>
@@ -817,7 +817,7 @@
 <<case "implants">>
 	<<set $nickname = either("'Balloons'", "'Blowup Doll'", "'Bolted-On'", "'Enhanced'", "'Fake'", "'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 <<= masterTitle()>>.
+	<<set $applyDesc = "accepts the implicit mockery, knowing that $his bimbo-esque body is what appeals to $his <<= WrittenMaster()>>.
 	<<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">>
diff --git a/src/uncategorized/rePokerNight.tw b/src/uncategorized/rePokerNight.tw
index 8c19c6e1d78..64487a91bd3 100644
--- a/src/uncategorized/rePokerNight.tw
+++ b/src/uncategorized/rePokerNight.tw
@@ -8,7 +8,7 @@ Despite their persistent presence in your arcology, interaction with your mercen
 
 On a particularly lackadaisical evening, you find yourself alerted to a message alert by $assistantName.
 <<if $assistant > 0>>
-	"<<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>, a message from your $mercenariesTitle." She pauses before continuing. "It seems they're asking if you'd like to join their poker night."
+	"<<= WrittenMaster()>>, a message from your $mercenariesTitle." She pauses before continuing. "It seems they're asking if you'd like to join their poker night."
 <<else>>
 	It informs you that the $mercenariesTitle have sent a message asking you to join them at their poker night.
 <</if>>
diff --git a/src/uncategorized/reRecruit.tw b/src/uncategorized/reRecruit.tw
index 08965be79f9..281dc0a5c3c 100644
--- a/src/uncategorized/reRecruit.tw
+++ b/src/uncategorized/reRecruit.tw
@@ -2116,7 +2116,7 @@ A young slave is going door to door offering $himself for sale on behalf of $his
 <br><br>
 "I have been trained for obedience since I came to the orphanage. I came as a male, but they reassigned me to female right away. At <<print Math.min(14, $activeSlave.actualAge - 4)>> they put me on drugs to make sure I'd grow nice T&A and look more feminine. Those drugs also stopped my penis from growing much, so it's small, <<= properTitle()>>. On my <<print ordinalSuffix(Math.min(16, $activeSlave.actualAge - 2))>> birthday I got my first set of implants. Every time my chest got used to the implants, I got sent in for a bigger set. I'm on my third set." $He unbuttons $his blouse and displays a pair of fake tits.
 <br><br>
-$He hikes up $his skirt and spins around slowly, displaying a petite, half-hard cock. "The drugs also made my butt bigger and my hips wider. <<if $activeSlave.actualAge == $minimumSlaveAge>>Since it wasn't okay to fuck me before I had turned $minimumSlaveAge and been made a slave<<else>>Since my owner thought it would make me more desirable<</if>>, my anus has never had anything up it, <<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>." $He pulls $his buttocks apart to prove it. "I... I would be happy to serve you like I am now <<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>, or you could send me for surgery to give me a pussy instead, I would like that too, <<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>."
+$He hikes up $his skirt and spins around slowly, displaying a petite, half-hard cock. "The drugs also made my butt bigger and my hips wider. <<if $activeSlave.actualAge == $minimumSlaveAge>>Since it wasn't okay to fuck me before I had turned $minimumSlaveAge and been made a slave<<else>>Since my owner thought it would make me more desirable<</if>>, my anus has never had anything up it, <<= properTitle()>>." $He pulls $his buttocks apart to prove it. "I... I would be happy to serve you like I am now <<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>, or you could send me for surgery to give me a pussy instead, I would like that too, <<if $PC.title != 0>>Sir<<else>>Ma'am<</if>>."
 <br><br>
 "I cost <<print cashFormat(2500)>>, <<= properTitle()>>."
 
@@ -2126,7 +2126,7 @@ $He hikes up $his skirt and spins around slowly, displaying a petite, half-hard
 <br><br>
 The young girl who is admitted to your office quails a bit at the sight of you, and you believe you can detect a bit of infatuation there, too. You wordlessly query $assistantName, and she turns to the massive task of sorting through arcology records to come up with a possible explanation. Meanwhile, you start interviewing the potential slave. It appears that $he left home, in a settlement near the arcology, right after $his <<print ordinalSuffix($activeSlave.actualAge)>> birthday and came straight here. $He's no innocent, and not destitute, and you're surprised $he's done something this foolish.
 <br><br>
-After a short while, your assistant whispers in your earpiece, <<if $assistant == 0>><<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>"Sir<<else>>"Ma'am<</if>>,<<else>>"Sweetheart,<</if>> $he doesn't live here. Look at this." $He pulls up footage of a public event several weeks ago, and the $girl is in the crowd, staring at you with limpid eyes. Rather than confronting $him directly, you probe the subject, and after some evasion $he admits that yes, $he did come here out of infatuation with you. "Pretty fuckin' stupid," $he admits. "But I've come too far now. I just really want to live here. With you, I guess. If that means being your slave, that's okay. Can I be your house servant, maybe?"
+After a short while, your assistant whispers in your earpiece, <<= properTitle()>> $he doesn't live here. Look at this." She pulls up footage of a public event several weeks ago, and the $girl is in the crowd, staring at you with limpid eyes. Rather than confronting $him directly, you probe the subject, and after some evasion $he admits that yes, $he did come here out of infatuation with you. "Pretty fuckin' stupid," $he admits. "But I've come too far now. I just really want to live here. With you, I guess. If that means being your slave, that's okay. Can I be your house servant, maybe?"
 
 <<case "womanly PC">>
 
diff --git a/src/uncategorized/reSiblingRevenge.tw b/src/uncategorized/reSiblingRevenge.tw
index 90272450095..bd2cff88c2d 100644
--- a/src/uncategorized/reSiblingRevenge.tw
+++ b/src/uncategorized/reSiblingRevenge.tw
@@ -9,7 +9,8 @@
 
 $slaves[$i].slaveName, whose older sister tried to sell $him to you, is up for inspection. As usual, you pepper your inspection with questions about $his duties, $his feelings about $his physical condition, and experiences. More information about one's property is never a bad thing. When the inspection reaches $slaves[$i].slaveName's asshole, you ask whether $he enjoyed having $his older sister sell $his butt.
 
-"No, <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title != 0>>Master<<else>>Mistress<</if>>," $he says.
+<<run Enunciate($slaves[$i])>>
+"No, <<Master>>," $he <<says>>.
 
 <br><br>
 
diff --git a/src/uncategorized/reStaffedMorning.tw b/src/uncategorized/reStaffedMorning.tw
index 65871b58957..a1daef323de 100644
--- a/src/uncategorized/reStaffedMorning.tw
+++ b/src/uncategorized/reStaffedMorning.tw
@@ -6,6 +6,9 @@
 	<<goto "RIE Eligibility Check">>
 <<else>>
 <<set _bedSlaves = _bedSlaves.shuffle()>>
+<<setLocalPronouns _bedSlaves[0]>>
+<<setLocalPronouns _bedSlaves[1] 2>>
+<<setPlayerPronouns>>
 
 Sleep leaves you quickly one morning to the sensation of two of your fucktoys performing human alarm clock duty. You open your eyes and look down: it's _bedSlaves[0].slaveName and _bedSlaves[1].slaveName today.
 <<if $PC.dick == 1>>
@@ -40,7 +43,7 @@ The bathroom door is open and the shower is running. Though the steam is beginni
 	<<if $PC.dick == 1>>
 		next to the neat stack of clothes, the two slaves are bent over the bed with their buttocks spread. You select _bedSlaves[1].slaveName and slide your dick up her <<if _bedSlaves[1].anus > 2>>welcoming asspussy<<elseif _bedSlaves[1].anus > 1>>soft butthole<<else>>tight anus<</if>>, sodomizing her while _bedSlaves[0].slaveName buttons your shirt. When it's done, you push her down next to _bedSlaves[1].slaveName and switch assholes, letting _bedSlaves[1].slaveName up to do her best to help you into your trousers in the meantime. She gets them on and fastens everything, except the fly, of course.
 	<<else>>
-		next to the neat stack of clothes, the two slaves are kneeling on the floor and looking at you with mock innocence. You select _bedSlaves[1].slaveName and straddle her face, letting her<<if _bedSlaves[1].lips > 0>> use her big soft lips to<</if>> eat you out while _bedSlaves[0].slaveName helps you into your top. When you're buttoned, you take her face in your hands and kiss her deeply, favoring her with the sensation of kissing her <<if def $PC.customTitle>>$PC.customTitle<<elseif $PC.title == 1>>Master while he<<else>>Mistress while she<</if>> orgasms. You keep making out with her while _bedSlaves[1].slaveName dresses your lower half.
+		next to the neat stack of clothes, the two slaves are kneeling on the floor and looking at you with mock innocence. You select _bedSlaves[1].slaveName and straddle her face, letting her<<if _bedSlaves[1].lips > 0>> use her big soft lips to<</if>> eat you out while _bedSlaves[0].slaveName helps you into your top. When you're buttoned, you take her face in your hands and kiss her deeply, favoring her with the sensation of kissing $his <<= WrittenMaster()>> while _heP orgasms. You keep making out with her while _bedSlaves[1].slaveName dresses your lower half.
 	<</if>>
 	When you finally leave the suite, _bedSlaves[0].slaveName and _bedSlaves[1].slaveName head into the shower for their turn, while _bedSlaves[2].slaveName and _bedSlaves[3].slaveName have finished drying each other off so they can have sex on the bed without getting the sheets wet. They pause for a moment to wave at you as you go, though. @@.mediumaquamarine;Your fucktoys are very satisfied with their morning routine.@@
 	<<set $slaves.forEach(function(s) { if ([_bedSlaves[0].ID, _bedSlaves[1].ID, _bedSlaves[2].ID, _bedSlaves[3].ID].includes(s.ID)) { s.trust += 4, s.analCount += 1, s.oralCount += 1; } })>>
diff --git a/src/uncategorized/remoteSurgery.tw b/src/uncategorized/remoteSurgery.tw
index 33be15a6ebc..17f3fc36a0c 100644
--- a/src/uncategorized/remoteSurgery.tw
+++ b/src/uncategorized/remoteSurgery.tw
@@ -342,25 +342,25 @@ Work on $his chest:
 <br>&nbsp;&nbsp;&nbsp;&nbsp;
 	$His
 	<<if $activeSlave.boobs < 300>><<print either("androgynous", "flat")>> chest is barely there.
-	<<elseif $activeSlave.boobs < 400>><<print either("pointy", "tiny")>>, <<print $activeSlave.boobs>>cc chest only fills an A-cup.
-	<<elseif $activeSlave.boobs < 500>><<print either("perky", "small")>>, <<print $activeSlave.boobs>>cc <<print either("boobs", "bosom", "breasts", "tits")>> would fill a B-cup.
-	<<elseif $activeSlave.boobs < 650>><<print either("curved", "healthy")>>, <<print $activeSlave.boobs>>cc <<print either("boobs", "bosom", "breasts", "bust", "tits")>> would fill a C-cup.
-	<<elseif $activeSlave.boobs < 800>><<print either("big", "sizable")>>, <<print $activeSlave.boobs>>cc <<print either("boobs", "bosom", "breasts", "bust", "tits")>> would fill a D-cup.
-	<<elseif $activeSlave.boobs < 1000>><<print either("big", "large")>>, <<print $activeSlave.boobs>>cc <<print either("boobs", "bosom", "breasts", "bust", "tits")>> would fill a DD-cup.
-	<<elseif $activeSlave.boobs < 1200>><<print either("hefty", "proud")>>, <<print $activeSlave.boobs>>cc <<print either("boobs", "breasts", "mammaries", "tits", "udders")>> would fill an F-cup.
-	<<elseif $activeSlave.boobs < 1400>><<print either("hefty", "huge")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill a G-cup.
-	<<elseif $activeSlave.boobs < 1600>><<print either("huge", "massive")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill an H-cup.
-	<<elseif $activeSlave.boobs < 1800>><<print either("enormous", "massive")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill an I-cup.
-	<<elseif $activeSlave.boobs < 2050>><<print either("enormous", "titanic")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill a J-cup.
-	<<elseif $activeSlave.boobs < 2300>><<print either("stupendous", "titanic")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill a K-cup.
-	<<elseif $activeSlave.boobs < 2600>><<print either("magnificent", "stupendous")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill an L-cup.
-	<<elseif $activeSlave.boobs < 2900>><<print either("magnificent", "tremendous")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill an M-cup.
-	<<elseif $activeSlave.boobs < 3250>><<print either("awe-inspiring", "tremendous")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill an N-cup.
-	<<elseif $activeSlave.boobs < 3600>><<print either("absurd", "awe-inspiring")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill an O-cup.
-	<<elseif $activeSlave.boobs < 3950>><<print either("attention-grabbing", "disproportionate")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill a P-cup.
-	<<elseif $activeSlave.boobs < 4300>><<print either("massive", "shocking")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill a Q-cup.
-	<<elseif $activeSlave.boobs < 4700>><<print either("jaw-dropping", "unreal")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill an R-cup.
-	<<elseif $activeSlave.boobs < 5100>><<print either("astounding", "tremendous")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill an S-cup.
+	<<elseif $activeSlave.boobs < 400>><<print either("pointy", "tiny")>>, <<print $activeSlave.boobs>>cc chest only fills an A cup.
+	<<elseif $activeSlave.boobs < 500>><<print either("perky", "small")>>, <<print $activeSlave.boobs>>cc <<print either("boobs", "bosom", "breasts", "tits")>> would fill a B cup.
+	<<elseif $activeSlave.boobs < 650>><<print either("curved", "healthy")>>, <<print $activeSlave.boobs>>cc <<print either("boobs", "bosom", "breasts", "bust", "tits")>> would fill a C cup.
+	<<elseif $activeSlave.boobs < 800>><<print either("big", "sizable")>>, <<print $activeSlave.boobs>>cc <<print either("boobs", "bosom", "breasts", "bust", "tits")>> would fill a D cup.
+	<<elseif $activeSlave.boobs < 1000>><<print either("big", "large")>>, <<print $activeSlave.boobs>>cc <<print either("boobs", "bosom", "breasts", "bust", "tits")>> would fill a DD cup.
+	<<elseif $activeSlave.boobs < 1200>><<print either("hefty", "proud")>>, <<print $activeSlave.boobs>>cc <<print either("boobs", "breasts", "mammaries", "tits", "udders")>> would fill an F cup.
+	<<elseif $activeSlave.boobs < 1400>><<print either("hefty", "huge")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill a G cup.
+	<<elseif $activeSlave.boobs < 1600>><<print either("huge", "massive")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill an H cup.
+	<<elseif $activeSlave.boobs < 1800>><<print either("enormous", "massive")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill an I cup.
+	<<elseif $activeSlave.boobs < 2050>><<print either("enormous", "titanic")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill a J cup.
+	<<elseif $activeSlave.boobs < 2300>><<print either("stupendous", "titanic")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill a K cup.
+	<<elseif $activeSlave.boobs < 2600>><<print either("magnificent", "stupendous")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill an L cup.
+	<<elseif $activeSlave.boobs < 2900>><<print either("magnificent", "tremendous")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill an M cup.
+	<<elseif $activeSlave.boobs < 3250>><<print either("awe-inspiring", "tremendous")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill an N cup.
+	<<elseif $activeSlave.boobs < 3600>><<print either("absurd", "awe-inspiring")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill an O cup.
+	<<elseif $activeSlave.boobs < 3950>><<print either("attention-grabbing", "disproportionate")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill a P cup.
+	<<elseif $activeSlave.boobs < 4300>><<print either("massive", "shocking")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill a Q cup.
+	<<elseif $activeSlave.boobs < 4700>><<print either("jaw-dropping", "unreal")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill an R cup.
+	<<elseif $activeSlave.boobs < 5100>><<print either("astounding", "tremendous")>>, <<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> would fill an S cup.
 	<<elseif ($activeSlave.amp == 1)>><<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> fill out an enormous custom bra; $his tits dominate $his entire frame.
 	<<else>><<print $activeSlave.boobs>>cc <<print either("breasts", "mammaries", "tits", "udders")>> fill out an enormous custom bra; $his tits dominate $his entire frame.
 	<</if>>
diff --git a/src/uncategorized/resMove.tw b/src/uncategorized/resMove.tw
index ef00aca55b4..2aa6a3a27fa 100644
--- a/src/uncategorized/resMove.tw
+++ b/src/uncategorized/resMove.tw
@@ -156,7 +156,7 @@ as you suspected,
 		<<case "incubus">>
 			those amazing breasts; I can't wait to wrap them around my dick!" She exclaims, her hard-on twitching with anticipation.
 		<<case "succubus">>
-			those saggy tits and fat asses, then compare them to MINE." She states, pushing out her perfectly perky M-cup bust before twirling around to show off her enormous, toned ass.
+			those saggy tits and fat asses, then compare them to MINE." She states, pushing out her perfectly perky M cup bust before twirling around to show off her enormous, toned ass.
 		<<case "imp">>
 			those heavy tits," her avatar says, "I just want to tease them all day long!"
 		<<case "witch">>
diff --git a/src/uncategorized/saDevotion.tw b/src/uncategorized/saDevotion.tw
index 45c50e6f28b..740419ecfb8 100644
--- a/src/uncategorized/saDevotion.tw
+++ b/src/uncategorized/saDevotion.tw
@@ -903,23 +903,23 @@
 
 <<else>> /* IS FUCKDOLL */
 
-It is confined in a suit that limits its perception of the outside world to tonal commands from the suit itself and things that are inserted into its mouth<<if $activeSlave.vagina > -1>>, vagina,<</if>> and anus.
+$He is confined in a suit that limits $his perception of the outside world to tonal commands from the suit itself and things that are inserted into $his mouth<<if $activeSlave.vagina > -1>>, vagina,<</if>> and anus.
 <<if $slaves[$i].sexualFlaw == "self hating">>
-	Its self hatred @@.gold;cannot eliminate the growing fear@@ engendered by its remaining spark of self-preservation.
+	$His self hatred @@.gold;cannot eliminate the growing fear@@ engendered by $his remaining spark of self-preservation.
 	<<set $slaves[$i].trust -= 5>>
 <<elseif $slaves[$i].trust > 50>>
-	It still hopes you'll let it out of its suit so it can be your good slave again, but @@.gold;fear and doubt creep in@@ by the minute. And there are a lot of them.
+	$He still hopes you'll let $him out of $his suit so $he can be your good slave again, but @@.gold;fear and doubt creep in@@ by the minute. And there are a lot of them.
 <<else>>
-	With little to do but <<if $activeSlave.fuckdoll <= 60>>wonder if it's about to be used<<else>>desperately hope it'll be used soon<</if>>, it dwells on the @@.gold;horrible fear@@ that this dark existence will be perpetual.
+	With little to do but <<if $activeSlave.fuckdoll <= 60>>wonder if $he's about to be used<<else>>desperately hope $he'll be used soon<</if>>, $he dwells on the @@.gold;horrible fear@@ that this dark existence will be perpetual.
 <</if>>
 <<set $slaves[$i].trust -= 10>>
 <<if $slaves[$i].sexualFlaw == "self hating">>
-	It knows to its core that it deserves this, @@.mediumorchid;slowing but not stopping its descent into depression.@@
+	$He knows to $his core that $he deserves this, @@.mediumorchid;slowing but not stopping $his descent into depression.@@
 	<<set $slaves[$i].devotion += 5>>
 <<elseif $slaves[$i].devotion > 50>>
-	It spirals through @@.mediumorchid;obsessive depression,@@ wondering what it did to deserve this fate.
+	$He spirals through @@.mediumorchid;obsessive depression,@@ wondering what $he did to deserve this fate.
 <<else>>
-	In the silence and darkness between the times it's used, it has little to do but @@.mediumorchid;hate you.@@
+	In the silence and darkness between the times $he's used, $he has little to do but @@.mediumorchid;hate you.@@
 <</if>>
 <<set $slaves[$i].devotion -= 10>>
 
diff --git a/src/uncategorized/saWorkAGloryHole.tw b/src/uncategorized/saWorkAGloryHole.tw
index d7099e65967..b493f5f4ec5 100644
--- a/src/uncategorized/saWorkAGloryHole.tw
+++ b/src/uncategorized/saWorkAGloryHole.tw
@@ -72,7 +72,7 @@ is <<if $slaves[$i].fuckdoll == 0>>restrained in a glory hole<<else>>set out for
 <</if>>
 
 <<if ($slaves[$i].anus == 0) && canDoAnal($slaves[$i])>>
-	$His anal virginity goes to a <<if $slaves[$i].fuckdoll == 0>>glory hole <</if>>user, who doesn't understand why this particular run at <<if $slaves[$i].fuckdoll == 0>>the glory hole<<else>>a Fuckdoll<</if>> is so great. @@.lime;$His ass has been broken in@@ in a @@.gold;painful@@ and @@.mediumorchid;degrading@@ way.
+	$His anal virginity goes to a <<if $slaves[$i].fuckdoll == 0>>glory hole <<else>>a Fuckdoll<</if>>user, who doesn't understand why this particular run at <<if $slaves[$i].fuckdoll == 0>>the glory hole<<else>>a Fuckdoll<</if>> is so great. @@.lime;$His ass has been broken in@@ in a @@.gold;painful@@ and @@.mediumorchid;degrading@@ way.
 	<<set $slaves[$i].devotion -= 5, $slaves[$i].trust -= 5, $slaves[$i].anus = 1>>
 <<elseif ($slaves[$i].anus < 3) && canDoAnal($slaves[$i]) && (random(1,100) > ((150-$beauty)+($slaves[$i].anus*10)))>>
 	@@.lime;$His asshole sees constant use and loosens.@@
diff --git a/src/uncategorized/slaveInteract.tw b/src/uncategorized/slaveInteract.tw
index 68b4e55fbc4..b6a3f0da8b9 100644
--- a/src/uncategorized/slaveInteract.tw
+++ b/src/uncategorized/slaveInteract.tw
@@ -352,16 +352,16 @@
 		| <<link "Check $his stats">><<replace "#miniscene">><<set $deadliness = Deadliness($activeSlave)>><<include "Slave Stats">><br>&nbsp;&nbsp;&nbsp;&nbsp;<</replace>><</link>>
 	<</if>>
 <<else>> /* IS A FUCKDOLL */
-	<<link "Fuck its face hole">><<replace "#miniscene">><<FFuckdollOral>><br><</replace>><</link>>
+	<<link "Fuck $his face hole">><<replace "#miniscene">><<FFuckdollOral>><br><</replace>><</link>>
 	<<if canDoVaginal($activeSlave)>>
-		| <<link "Fuck its front hole">><<replace "#miniscene">><<FFuckdollVaginal>><br><</replace>><</link>>
+		| <<link "Fuck $his front hole">><<replace "#miniscene">><<FFuckdollVaginal>><br><</replace>><</link>>
 	<</if>>
 	<<if canDoAnal($activeSlave)>>
-		| <<link "Fuck its rear hole">><<replace "#miniscene">><<FFuckdollAnal>><br><</replace>><</link>>
+		| <<link "Fuck $his rear hole">><<replace "#miniscene">><<FFuckdollAnal>><br><</replace>><</link>>
 	<</if>>
 	<<if (canGetPregnant($activeSlave)) && $seePreg != 0>>
 		<<if canImpreg($activeSlave, $PC)>>
-			| <<link "Put a baby in it">><<replace "#miniscene">><<FFuckdollImpreg>><br><</replace>><</link>>
+			| <<link "Put a baby in $him">><<replace "#miniscene">><<FFuckdollImpreg>><br><</replace>><</link>>
 		<</if>>
 	<</if>>
 <</if>>
diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw
index 61fd01059aa..4ef5edbee64 100644
--- a/src/utility/descriptionWidgetsFlesh.tw
+++ b/src/utility/descriptionWidgetsFlesh.tw
@@ -2656,7 +2656,7 @@ $He's got a
 			<</if>>
 			<<if $activeSlave.vagina > -1>>
 				<<if $activeSlave.dick > 0>>
-					$His front hole, meanwhile, is left completely bare.
+					front hole, meanwhile, is left completely bare.
 				<<else>>
 					front hole is left completely bare by the Fuckdoll suit's protective material.
 				<</if>>
diff --git a/src/utility/ptWidgets.tw b/src/utility/ptWidgets.tw
index 3683b9af6d2..60b4566da9b 100644
--- a/src/utility/ptWidgets.tw
+++ b/src/utility/ptWidgets.tw
@@ -2,14 +2,14 @@
 
 <<widget "InduceFlawAbuseEffects">>
 <<if $activeSlave.devotion > 20>>
-	She's @@.mediumorchid;desperately confused@@ by this treatment, since the effect would be ruined if you explained it to her, and her @@.gold;trust in you is reduced.@@
+	$He's @@.mediumorchid;desperately confused@@ by this treatment, since the effect would be ruined if you explained it to $him, and $his @@.gold;trust in you is reduced.@@
 <<elseif $activeSlave.devotion >= -20>>
-	She's @@.mediumorchid;confused, depressed@@ and @@.gold;frightened@@ by this treatment, since the effect would be ruined if you explained it to her.
+	$He's @@.mediumorchid;confused, depressed@@ and @@.gold;frightened@@ by this treatment, since the effect would be ruined if you explained it to $him.
 <<else>>
-	She's @@.mediumorchid;angry@@ and @@.gold;afraid@@ that you would treat her like this.
+	$He's @@.mediumorchid;angry@@ and @@.gold;afraid@@ that you would treat $him like this.
 <</if>>
 <<if $activeSlave.energy > 10>>
-	Her @@.red;appetite for sex is also reduced.@@
+	$His @@.red;appetite for sex is also reduced.@@
 	<<set $activeSlave.energy -= 2>>
 <</if>>
 <<set $activeSlave.devotion -= 5>>
@@ -18,7 +18,7 @@
 
 <<widget "InduceFlawLenityEffects">>
 <<if $activeSlave.devotion <= 20>>
-	She doesn't understand what you intend by this strange treatment, but it does make her @@.mediumaquamarine;inappropriately trusting.@@
+	$He doesn't understand what you intend by this strange treatment, but it does make $him @@.mediumaquamarine;inappropriately trusting.@@
 	<<set $activeSlave.trust += 5>>
 <</if>>
 <</widget>>
@@ -27,22 +27,22 @@
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<set _pti = $personalAttention.findIndex(function(s) { return s.ID == $activeSlave.ID; })>>
 	<<if ($activeSlave.devotion > 20) && ($activeSlave.behavioralFlaw != "none") && ($activeSlave.behavioralQuirk == "none")>>
-		Since she's obedient, @@.yellow;her training assignment has defaulted to softening her behavioral flaw.@@
+		Since $he's obedient, @@.yellow;$his training assignment has defaulted to softening $his behavioral flaw.@@
 		<<set $personalAttention[_pti].trainingRegimen = "soften her behavioral flaw">>
 	<<elseif ($activeSlave.devotion > 20) && ($activeSlave.sexualQuirk == "none") && !["cum addict", "anal addict", "attention whore", "breast growth", "abusive", "malicious", "self hating", "neglectful", "breeder", "none"].includes($activeSlave.sexualFlaw)>>
-		Since she's obedient, @@.yellow;her training assignment has defaulted to softening her sexual flaw.@@
+		Since $he's obedient, @@.yellow;$his training assignment has defaulted to softening $his sexual flaw.@@
 		<<set $personalAttention[_pti].trainingRegimen = "soften her sexual flaw">>
 	<<elseif ($activeSlave.devotion > 20) && ($activeSlave.behavioralFlaw != "none") && ($activeSlave.behavioralQuirk != "none")>>
-		Since she's obedient and already has a behavioral quirk, @@.yellow;her training assignment has defaulted to removing her behavioral flaw.@@
+		Since $he's obedient and already has a behavioral quirk, @@.yellow;$his training assignment has defaulted to removing $his behavioral flaw.@@
 		<<set $personalAttention[_pti].trainingRegimen = "fix her behavioral flaw">>
-	<<elseif ($activeSlave.devotion > 20) && !["cum addict", "anal addict", "attention whore", "breast growth", "abusive", "malicious", "self hating", "neglectful", "breeder", "none"].includes($activeSlave.sexualFlaw)>>
-		Since she's obedient and already has a sexual quirk, @@.yellow;her training assignment has defaulted to removing her sexual flaw.@@
+	<<elseif ($activeSlave.devotion > 20) && !["abusive", "anal addict", "attention whore", "breast growth", "breeder", "cum addict", "malicious", "neglectful", "none", "self hating"].includes($activeSlave.sexualFlaw)>>
+		Since $he's obedient and already has a sexual quirk, @@.yellow;$his training assignment has defaulted to removing $his sexual flaw.@@
 		<<set $personalAttention[_pti].trainingRegimen = "fix her sexual flaw">>
 	<<elseif ($activeSlave.devotion <= 20) && ($activeSlave.trust >= -20)>>
-		@@.yellow;Her training assignment has defaulted to breaking her will.@@
+		@@.yellow;$His training assignment has defaulted to breaking $his will.@@
 		<<set $personalAttention[_pti].trainingRegimen = "break her will">>
 	<<else>>
-		She is now fully broken; @@.yellow;her training assignment has defaulted to fostering devotion.@@
+		$He is now fully broken; @@.yellow;$his training assignment has defaulted to fostering devotion.@@
 		<<set $personalAttention[_pti].trainingRegimen = "build her devotion">>
 	<</if>>
 	<<set $activeSlave.training = 0, $slaves[$slaveIndices[$activeSlave.ID]].training = 0>>
-- 
GitLab