diff --git a/devNotes/legacy files/walkPast.txt b/devNotes/legacy files/walkPast.txt
index 445a993afd094d198600aa4e9fad589fa9f95400..c880e54e5835223df697acac63b68efcce52ee5a 100644
--- a/devNotes/legacy files/walkPast.txt	
+++ b/devNotes/legacy files/walkPast.txt	
@@ -1947,8 +1947,8 @@
 			Slight jiggling can be seen in $his chubby belly as $he moves.
 		<</if>>
 		<<= App.Desc.crotch($activeSlave)>>
-		<<dickDescription>>
-		<<vaginaDescription>>
+		<<= App.Desc.dick($activeSlave)>>
+		<<= App.Desc.vagina($activeSlave)>>
 		<<switch $activeSlave.clothes>>
 		<<case "a Fuckdoll suit">>
 			Its suit is expressly designed to encourage use of its holes.
@@ -2256,7 +2256,7 @@
 	<</if>>
 	<<else>> /* implant descs */
 	<<if $activeSlave.bellyImplant >= 32000>>
-		<<BellyImplantDescription>>
+		<<= App.Desc.bellyImplant($activeSlave)>>
 		<<switch $activeSlave.clothes>>
 		<<case "a very tight corset">>
 			$His corset struggles to contain $his enormous belly.
@@ -2302,7 +2302,7 @@
 			$His bare enormous stomach catches your eye.
 		<</switch>>
 	<<elseif $activeSlave.bellyImplant >= 16000>>
-		<<BellyImplantDescription>>
+		<<= App.Desc.bellyImplant($activeSlave)>>
 		<<switch $activeSlave.clothes>>
 		<<case "a very tight corset">>
 			$His corset struggles to contain $his giant belly.
@@ -2414,7 +2414,7 @@
 			$His massive bare jiggling gut catches your eye.
 		<</switch>>
 	<<elseif $activeSlave.bellyImplant >= 8000>>
-		<<BellyImplantDescription>>
+		<<= App.Desc.bellyImplant($activeSlave)>>
 		<<switch $activeSlave.clothes>>
 		<<case "conservative clothing">>
 			$His taut blouse shows off $his huge belly.
@@ -2642,7 +2642,7 @@
 			$His big bare jiggling gut catches your eye.
 		<</switch>>
 	<<elseif $activeSlave.bellyImplant >= 4000>>
-		<<BellyImplantDescription>>
+		<<= App.Desc.bellyImplant($activeSlave)>>
 		<<switch $activeSlave.clothes>>
 		<<case "conservative clothing">>
 			$His taut blouse shows off $his big belly.
@@ -2716,7 +2716,7 @@
 			$His bare belly catches your eye.
 		<</switch>>
 	<<elseif $activeSlave.weight >= 95>>
-		<<BellyImplantDescription>>
+		<<= App.Desc.bellyImplant($activeSlave)>>
 		<<switch $activeSlave.clothes>>
 		<<case "a Fuckdoll suit">>
 			Its suit is expressly designed to encourage use of its holes.
@@ -2792,7 +2792,7 @@
 			$His bare, jiggling, fat gut catches your eye.
 		<</switch>>
 	<<elseif $activeSlave.bellyImplant >= 2000>>
-		<<BellyImplantDescription>>
+		<<= App.Desc.bellyImplant($activeSlave)>>
 		<<switch $activeSlave.clothes>>
 		<<case "a Fuckdoll suit">>
 			Its suit is expressly designed to encourage use of its holes.
@@ -2937,7 +2937,7 @@
 			$His massive bare jiggling gut catches your eye.
 		<</switch>>
 	<<elseif $activeSlave.inflation == 3>>
-		<<BellyInflationDescription>>
+		<<= App.Desc.bellyInflation($activeSlave)>>
 		<<switch $activeSlave.clothes>>
 		<<case "a Fuckdoll suit">>
 			Its suit is expressly designed to encourage use of its holes.
@@ -3165,7 +3165,7 @@
 			$His big bare jiggling gut catches your eye.
 		<</switch>>
 	<<elseif $activeSlave.inflation == 2>>
-		<<BellyInflationDescription>>
+		<<= App.Desc.bellyInflation($activeSlave)>>
 		<<switch $activeSlave.clothes>>
 		<<case "a Fuckdoll suit">>
 			Its suit is expressly designed to encourage use of its holes.
@@ -3319,7 +3319,7 @@
 			$His bare, jiggling, fat gut catches your eye.
 		<</switch>>
 	<<elseif $activeSlave.inflation == 1>>
-		<<BellyInflationDescription>>
+		<<= App.Desc.bellyInflation($activeSlave)>>
 		<<switch $activeSlave.clothes>>
 		<<case "a Fuckdoll suit">>
 			Its suit is expressly designed to encourage use of its holes.
@@ -3539,8 +3539,8 @@
 	<</switch>>
 	<<set _target = "FAnus">>
 <<elseif (_seed > 0)>>
-	<<faceDescription>>
-	<<mouthDescription>>
+	<<= App.Desc.face($activeSlave)>>
+	<<= App.Desc.mouth($activeSlave)>>
 	<<switch $activeSlave.collar>>
 	<<case "a Fuckdoll suit">>
 		Its suit is expressly designed to encourage use of its face hole.
diff --git a/js/002-config/fc-js-init.js b/js/002-config/fc-js-init.js
index 550ee01672b9960ed4cbf4b99e439ee30785b1ff..c5c8c5e63e3daa5774f6cbb578156c0da08d0ea8 100644
--- a/js/002-config/fc-js-init.js
+++ b/js/002-config/fc-js-init.js
@@ -21,6 +21,7 @@ App.Data.HeroSlaves = {};
 App.Data.Weather = {};
 App.Debug = {};
 App.Desc = {};
+App.Desc.Player = {};
 App.Encyclopedia = {};
 App.Encyclopedia.Entries = {};
 App.EndWeek = {};
diff --git a/src/facilities/nursery/widgets/children/longChildDescription.js b/src/facilities/nursery/widgets/children/longChildDescription.js
index ad93b939ac7e418a09cae5500fb62dd450359f31..41d6e727587e1ec076eaa2a3c7905ab2341758e5 100644
--- a/src/facilities/nursery/widgets/children/longChildDescription.js
+++ b/src/facilities/nursery/widgets/children/longChildDescription.js
@@ -7922,10 +7922,11 @@ App.Facilities.Nursery.LongChildDescription = function(child) {
 
 	if (child.inflation > 0) {
 		V.activeSlave = child;
-		r += `<<BellyInflationDescription>> `; // TODO:
+		r += `${App.Desc.bellyInflation(slave)}  `; // TODO:
 	} else if (child.bellyImplant >= 2000) {
 		V.activeSlave = child;
-		r += `<<BellyImplantDescription>> `; // TODO:
+		r += App.Desc.bellyImplant($activeSlave); // TODO:
+		r += ` `;
 	} else {
 		V.activeSlave = child;
 		r += `${App.Desc.belly($activeSlave)} `; // TODO:
diff --git a/src/interaction/main/walkPast.js b/src/interaction/main/walkPast.js
index 1bcdc0139cccd8222ed5af00c378e7de6189656d..8e0722e0e0f63b5c1b545e4ccfc6e603a0eaa88c 100644
--- a/src/interaction/main/walkPast.js
+++ b/src/interaction/main/walkPast.js
@@ -4500,7 +4500,7 @@ globalThis.walkPast = (function() {
 				}
 			} else { /* implant descs */
 				if (slave.bellyImplant >= 32000) {
-					t += `<<BellyImplantDescription>>`;
+					t += `${App.Desc.bellyImplant(slave)} `;
 					t += `${App.Desc.mods(slave, "belly")} `;
 					switch (slave.clothes) {
 						case "a very tight corset":
@@ -4647,7 +4647,7 @@ globalThis.walkPast = (function() {
 							t += `${His} bare enormous stomach catches your eye.`;
 					}
 				} else if (slave.bellyImplant >= 16000) {
-					t += `<<BellyImplantDescription>>`;
+					t += `${App.Desc.bellyImplant(slave)} `;
 					t += `${App.Desc.mods(slave, "belly")} `;
 					switch (slave.clothes) {
 						case "a very tight corset":
@@ -4968,7 +4968,7 @@ globalThis.walkPast = (function() {
 							t += `${His} massive bare jiggling gut catches your eye.`;
 					}
 				} else if (slave.bellyImplant >= 8000) {
-					t += `<<BellyImplantDescription>>`;
+					t += `${App.Desc.bellyImplant(slave)} `;
 					t += `${App.Desc.mods(slave, "belly")} `;
 					switch (slave.clothes) {
 						case "conservative clothing":
@@ -5598,7 +5598,7 @@ globalThis.walkPast = (function() {
 							t += `${His} big bare jiggling gut catches your eye.`;
 					}
 				} else if (slave.bellyImplant >= 4000) {
-					t += `<<BellyImplantDescription>>`;
+					t += `${App.Desc.bellyImplant(slave)} `;
 					t += `${App.Desc.mods(slave, "belly")} `;
 					switch (slave.clothes) {
 						case "conservative clothing":
@@ -5805,7 +5805,7 @@ globalThis.walkPast = (function() {
 							t += `${His} bare belly catches your eye.`;
 					}
 				} else if (slave.weight >= 95) {
-					t += `<<BellyImplantDescription>>`;
+					t += `${App.Desc.bellyImplant(slave)} `;
 					t += `${App.Desc.mods(slave, "belly")} `;
 					switch (slave.clothes) {
 						case "a Fuckdoll suit":
@@ -6015,7 +6015,7 @@ globalThis.walkPast = (function() {
 							t += `${His} bare, jiggling, fat gut catches your eye.`;
 					}
 				} else if (slave.bellyImplant >= 2000) {
-					t += `<<BellyImplantDescription>>`;
+					t += `${App.Desc.bellyImplant(slave)} `;
 					t += `${App.Desc.mods(slave, "belly")} `;
 					switch (slave.clothes) {
 						case "a Fuckdoll suit":
@@ -6405,7 +6405,7 @@ globalThis.walkPast = (function() {
 						t += `${His} massive bare jiggling gut catches your eye.`;
 				}
 			} else if (slave.inflation === 3) {
-				t += `<<BellyInflationDescription>>`;
+				t += `${App.Desc.bellyInflation(slave)} `;
 				t += `${App.Desc.mods(slave, "belly")} `;
 				switch (slave.clothes) {
 					case "a Fuckdoll suit":
@@ -7035,7 +7035,7 @@ globalThis.walkPast = (function() {
 						t += `${His} big bare jiggling gut catches your eye.`;
 				}
 			} else if (slave.inflation === 2) {
-				t += `<<BellyInflationDescription>>`;
+				t += `${App.Desc.bellyInflation(slave)} `;
 				t += `${App.Desc.mods(slave, "belly")} `;
 				switch (slave.clothes) {
 					case "a Fuckdoll suit":
@@ -7458,7 +7458,7 @@ globalThis.walkPast = (function() {
 						t += `${His} bare, jiggling, fat gut catches your eye.`;
 				}
 			} else if (slave.inflation === 1) {
-				t += `<<BellyInflationDescription>>`;
+				t += `${App.Desc.bellyInflation(slave)} `;
 				t += `${App.Desc.mods(slave, "belly")} `;
 				switch (slave.clothes) {
 					case "a Fuckdoll suit":
@@ -7686,7 +7686,8 @@ globalThis.walkPast = (function() {
 		// Desc dick and vag
 		t += App.Desc.crotch(slave);
 		t += ` `;
-		t += `<<vaginaDescription>>`;
+		t += App.Desc.vagina(slave);
+		t += ` `;
 		switch (slave.clothes) {
 			case "a Fuckdoll suit":
 				t += `${His} suit is expressly designed to encourage use of ${his} holes.`;
@@ -8256,7 +8257,8 @@ globalThis.walkPast = (function() {
 		// Desc dick and vag
 		t += App.Desc.crotch(slave);
 		t += ` `;
-		t += `<<dickDescription>>`;
+		t += App.Desc.dick(slave);
+		t += ` `;
 		switch (slave.clothes) {
 			case "a Fuckdoll suit":
 				t += `${His} suit is expressly designed to encourage use of ${his} holes.`;
@@ -9137,8 +9139,10 @@ globalThis.walkPast = (function() {
 			He, His
 		} = getPronouns(slave);
 
-		t += `<<faceDescription>>`;
-		t += `<<mouthDescription>>`;
+		t += App.Desc.face(slave);
+		t += ` `;
+		t += App.Desc.mouth(slave);
+		t += ` `;
 		switch (slave.collar) {
 			case "uncomfortable leather":
 				t += `${His} uncomfortable leather collar makes ${him} swallow and lick ${his} lips periodically, making it look like ${he}'s offering oral even though ${he}'s just trying to relieve the discomfort.`;
diff --git a/src/interaction/wardrobeUse.js b/src/interaction/wardrobeUse.js
index 464117b8e027260a885508286ca56b72475cce98..fd36ba9added0e693b466a93ab58304789a4f1e5 100644
--- a/src/interaction/wardrobeUse.js
+++ b/src/interaction/wardrobeUse.js
@@ -421,7 +421,7 @@ App.UI.Wardrobe.bellyAccessory = function(slave) {
 	if (slave.fuckdoll !== 0) {
 		return;
 	}
-	// <<waistDescription>><<pregnancyDescription>><<clothingCorsetDescription>>
+	// <<waistDescription>><<= App.Desc.pregnancy($activeSlave)>><<clothingCorsetDescription>>
 
 	const {
 		// eslint-disable-next-line no-unused-vars
diff --git a/src/npc/descriptions/accent.js b/src/npc/descriptions/accent.js
new file mode 100644
index 0000000000000000000000000000000000000000..07ef4aad9dbcf41c7c6ca41e5132c6f51eda1651
--- /dev/null
+++ b/src/npc/descriptions/accent.js
@@ -0,0 +1,29 @@
+App.Desc.accent = function(slave) {
+	const r = [];
+	const {
+		he, him, his, hers, himself, boy, He, His
+	} = getPronouns(slave);
+	let accent;
+	if (slave.accent !== 0) {
+		if (slave.accent === 1) {
+			accent = either("a beautiful", "a distinctive", "an intriguing", "a light", "a lovely", "a mild", "a pleasant", "a rich", "a slight", "a smooth");
+			r.push(`${He} speaks ${V.language} in ${accent} ${aNational(slave.nationality)}`);
+			if (slave.rules.speech === "accent elimination") {
+				r.push(`accent, which the rules encourage ${him} to suppress.`);
+			} else {
+				r.push(`accent.`);
+			}
+		} else if (slave.accent === 2) {
+			accent = either("a broad", "a harsh", "a heavy", "an intense", "a marked", "a noticeable", "a rough", "a significant", "a stressed", "a strong", "a thick");
+			r.push(`${He} speaks ${V.language} in ${accent} ${aNational(slave.nationality)} accent that can be hard to`);
+			if (slave.rules.speech === "accent elimination") {
+				r.push(`understand, and the rules encourage ${him} to make an effort to suppress it.`);
+			} else {
+				r.push(`understand.`);
+			}
+		} else {
+			r.push(`${He} speaks little ${V.language}, but understands enough to be given orders.`);
+		}
+	}
+	return r.join(" ");
+};
diff --git a/src/npc/descriptions/belly/bellyImplant.js b/src/npc/descriptions/belly/bellyImplant.js
new file mode 100644
index 0000000000000000000000000000000000000000..4afe9cc87e89a4a50f44cd80c9bcb9b98288e33c
--- /dev/null
+++ b/src/npc/descriptions/belly/bellyImplant.js
@@ -0,0 +1,2315 @@
+App.Desc.bellyImplant = function(slave) {
+	const r = [];
+	const {
+		he, him, his, hers, himself, boy, He, His
+	} = getPronouns(slave);
+	if (slave.bellyImplant >= 32000) {
+		r.push(`${He} looks inhumanly pregnant,`);
+		if (slave.physicalAge <= 3) {
+			r.push(`and ${he} is nearly spherical. ${His} toddlerish form is utterly dwarfed by ${his} implant, all ${he} can do is lay on top of it. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so taut, not one motion can be seen in its contents.`);
+		} else if (slave.physicalAge <= 12) {
+			r.push(`and ${he} is more belly than ${girl}. ${His} absolutely gigantic, overfilled implant keeps ${his} pinned to the ground. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so taut, not one motion can be seen in its contents.`);
+		} else if (slave.height >= 185) {
+			r.push(`but ${his} tall frame barely keeps ${his} grotesque belly off the ground. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so taut, not one motion can be seen in its contents.`);
+		} else if (slave.height < 150) {
+			r.push(`and ${he} is more belly than ${girl}. ${His} absolutely gigantic, overfilled implant keeps ${his} pinned to the ground. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so taut, not one motion can be seen in its contents.`);
+		} else if (slave.muscles > 1) {
+			r.push(`and ${he} can barely hold ${his} overfilled belly upright. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so taut, not one motion can be seen in its contents.`);
+		} else {
+			r.push(`and ${he} is more belly than ${girl}. ${His} gigantic, overfilled implant keeps ${his} pinned to the ground. ${He} is so overfilled you can clearly make out the implant within ${his} body through ${his} skin. It is so taut, not one motion can be seen in its contents.`);
+		}
+	} else if (slave.bellyImplant >= 16000) {
+		r.push(`${He} looks unbelievably pregnant,`);
+		if (slave.physicalAge <= 3) {
+			r.push(`and ${his} belly pins ${him} to the ground. ${His} toddlerish form is dwarfed by ${his} implant; try as ${he} might, ${he} cannot even drag the massive thing. ${He} is so full you can nearly make out the implant within ${his} body through ${his} skin.`);
+		} else if (slave.physicalAge <= 12) {
+			r.push(`and ${he} can barely function with ${his} enormous belly. ${He} is so full you can nearly make out the implant within ${his} body through ${his} skin.`);
+		} else if (slave.height >= 185) {
+			r.push(`but ${his} tall frame barely bears ${his} obscene, drum-taut belly. ${He} is so full you can nearly make out the implant within ${his} body through ${his} skin.`);
+		} else if (slave.height < 150) {
+			r.push(`and ${he} can barely function with ${his} enormous belly. ${He} is so full you can nearly make out the implant within ${his} body through ${his} skin.`);
+		} else if (slave.muscles > 30) {
+			r.push(`and ${his} fit body allows ${him} to carry ${his} obscene belly without too much trouble. ${He} is so full you can nearly make out the implant within ${his} body through ${his} skin.`);
+		} else {
+			r.push(`and ${he} can barely function with ${his} enormous belly. ${He} is so full you can nearly make out the implant within ${his} body through ${his} skin.`);
+		}
+	} else if (slave.bellyImplant >= 8000) {
+		r.push(`${He} looks hugely pregnant,`);
+		if (slave.physicalAge <= 3) {
+			r.push(`and ${his} toddlerish body is absolutely filled by ${his} implant. ${He} can barely move ${him}self and resembles an over inflated blow-up doll.`);
+		} else if (slave.physicalAge <= 12) {
+			r.push(`and ${his} massive, drum-taut belly dominates ${his} poor little frame.`);
+		} else if (slave.height >= 185) {
+			r.push(`but ${his} tall frame bears ${his} massive, drum-taut belly well.`);
+		} else if (slave.height < 150) {
+			r.push(`and ${his} massive, drum-taut belly dominates ${his} poor little frame.`);
+		} else if (slave.muscles > 30) {
+			r.push(`and ${his} fit body bears ${his} massive, drum-taut belly well.`);
+		} else {
+			r.push(`and ${his} massive, drum-taut belly dominates ${his} frame.`);
+		}
+	} else if (slave.bellyImplant >= 4000) {
+		r.push(`${He} looks pregnant,`);
+		if (slave.physicalAge <= 3) {
+			r.push(`and ${his} swollen belly is nearly as big as ${his} toddlerish body.`);
+		} else if (slave.physicalAge <= 12) {
+			r.push(`and ${his} swollen belly dominates ${his} poor little frame.`);
+		} else if (slave.height >= 185) {
+			r.push(`but ${his} tall frame bears ${his} swollen belly well.`);
+		} else if (slave.height < 150) {
+			r.push(`and ${his} swollen belly dominates ${his} poor little frame.`);
+		} else if (slave.muscles > 30) {
+			r.push(`and ${his} fit body bears ${his} swollen belly well.`);
+		} else {
+			r.push(`and ${his} swollen belly dominates ${his} frame.`);
+		}
+	} else if (slave.bellyImplant >= 2000) {
+		r.push(`${He} looks bloated,`);
+		if (slave.physicalAge <= 3) {
+			r.push(`and ${his} swollen belly looks obscene on ${his} toddlerish body.`);
+		} else if (slave.physicalAge <= 12) {
+			r.push(`and ${his} swollen belly already looks huge on ${his} tiny frame.`);
+		} else if (slave.weight > 95) {
+			r.push(`but ${he}'s sufficiently overweight that it's not obvious.`);
+		} else if (slave.height < 150) {
+			r.push(`and ${his} swollen belly already looks huge on ${his} tiny frame.`);
+		} else if (slave.weight < -10) {
+			r.push(`${his} thin form making ${his} swollen belly very obvious.`);
+		} else {
+			r.push(`the implant just beginning to visibly bulge ${his} belly.`);
+		}
+	}
+
+	if (V.showClothing === 1 && V.saleDescription === 0) {
+		if (V.surgeryDescription === 0) {
+			if (slave.bellyImplant >= 32000) {
+				if (slave.bellyAccessory === "an extreme corset") {
+					r.push(`${slave.slaveName}'s titanic implant-filled belly makes a mockery of ${his} corset; one or the other will eventually win out.`);
+				} else if ((slave.bellyAccessory === "a corset")) {
+					r.push(`${slave.slaveName}'s corset looks ridiculous trying to bind ${his} middle while allowing ${his} monstrous belly to hang out.`);
+				}
+				switch (slave.clothes) {
+					case "a Fuckdoll suit":
+						r.push(`${slave.slaveName}'s titanic implant-filled belly is allowed to bulge out of a huge hole in the suit.`);
+						break;
+					case "conservative clothing":
+						if (slave.boobs > 24000) {
+							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} titanic implant-filled belly.`);
+						} else if ((slave.boobs > 12000)) {
+							r.push(`${slave.slaveName}'s titanic implant-filled belly adds even more strain to ${his} struggling oversized sweater.`);
+						} else if ((slave.boobs > 8000)) {
+							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} titanic implant-filled belly.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s sweater rests atop ${his} titanic implant-filled belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s blouse rests atop ${his} titanic implant-filled belly.`);
+						}
+						break;
+					case "chains":
+						r.push(`${slave.slaveName}'s titanic implant-filled belly is tightly wrapped with chains; they can barely sink into the overfilled implant.`);
+						break;
+					case "Western clothing":
+						r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} titanic implant-filled belly so ${he} has left the bottom buttons open leaving ${his} stomach hanging out.`);
+						break;
+					case "body oil":
+						r.push(`${slave.slaveName}'s titanic implant-filled is covered in a sheen of stretch-mark defeating oil.`);
+						break;
+					case "a succubus outfit":
+						r.push(`${slave.slaveName}'s titanic implant-filled sticks out of ${his} corset, which is laced above it as best ${he} can manage.`);
+						break;
+					case "a toga":
+						r.push(`${slave.slaveName}'s titanic implant-filled belly parts ${his} toga.`);
+						break;
+					case "a huipil":
+						r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} titanic implant-filled belly.`);
+						break;
+					case "a slutty qipao":
+						r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} titanic implant-filled belly.`);
+						break;
+					case "uncomfortable straps":
+						r.push(`${slave.slaveName}'s slave outfit's straining straps barely press into ${his} titanic implant-filled belly. The straps connect to a steel ring encircling ${his} popped navel.`);
+						break;
+					case "shibari ropes":
+						r.push(`${slave.slaveName}'s titanic bulging implant-filled is tightly bound with rope; they can barely sink into the overfilled implant`);
+						break;
+					case "a latex catsuit":
+					case "restrictive latex":
+						r.push(`${slave.slaveName}'s titanic bulging implant-filled greatly distends ${his} latex suit. ${He} looks like an over inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`);
+						break;
+					case "a military uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s titanic implant-filled belly hangs out ${his} open tunic and shirt`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt lies half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`);
+						} else {
+							r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`);
+						}
+						break;
+					case "a schutzstaffel uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s titanic implant-filled belly hangs out ${his} open tunic and shirt`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt lies half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`);
+						} else {
+							r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`);
+						}
+						break;
+					case "a slutty schutzstaffel uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s titanic implant-filled belly hangs out ${his} open tunic and shirt`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt lies half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`);
+						} else {
+							r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`);
+						}
+						break;
+					case "a red army uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s titanic implant-filled belly hangs out ${his} open tunic and shirt`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt lies half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`);
+						} else {
+							r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} titanic implant-filled belly has triumphed over ${his} buttons.`);
+						}
+						break;
+					case "a nice nurse outfit":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s titanic implant-filled belly parts ${his} uncovered breasts.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} titanic implant-filled belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} titanic implant-filled belly.`);
+						}
+						break;
+					case "a bimbo outfit":
+						r.push(`${slave.slaveName}'s titanic implant-filled belly eclipses ${his} miniskirt and leaves little to hold up ${his} thong.`);
+						break;
+					case "a courtesan dress":
+						r.push(`${slave.slaveName}'s corset attempts to cradle, rather than bind, ${his} titanic implant-filled belly, but the sheer size of ${his} artificial bump forces the ribs wide, exposing the thin cloth beneath.`);
+						break;
+					case "a mini dress":
+						r.push(`${slave.slaveName}'s mini dress has burst trying to contain ${his} titanic implant-filled belly leaving it hanging out the hole it made.`);
+						break;
+					case "battlearmor":
+						r.push(`${slave.slaveName}'s armor has burst trying to contain ${his} gigantic implant-filled belly leaving it hanging out the hole it made.`);
+						break;
+					case "a mounty outfit":
+						r.push(`${slave.slaveName}'s tunic lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`);
+						break;
+					case "lederhosen":
+						r.push(`${slave.slaveName}'s tunic lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`);
+						break;
+					case "a long qipao":
+						r.push(`${slave.slaveName}'s dress is almost conservative, it barely contains ${his} gigantic implant-filled belly. Its seams strain to hold back ${his} overfilled middle.`);
+						break;
+					case "a dirndl":
+						r.push(`${slave.slaveName}'s dress is almost conservative, it barely contains ${his} gigantic implant-filled belly. Its seams strain to hold back ${his} overfilled middle.`);
+						break;
+					case "a biyelgee costume":
+						r.push(`${slave.slaveName}'s dress is almost conservative, it barely contains ${his} gigantic implant-filled belly. Its seams strain to hold back ${his} overfilled middle.`);
+						break;
+					case "attractive lingerie":
+						r.push(`${slave.slaveName}'s titanic implant-filled belly completely hides ${his} lacy g-string.`);
+						break;
+					case "attractive lingerie for a pregnant woman":
+						r.push(`${slave.slaveName}'s titanic implant-filled belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} overfilled middle.`);
+						break;
+					case "kitty lingerie":
+						r.push(`${slave.slaveName}'s titanic implant-filled belly completely hides ${his} silk panties.`);
+						break;
+					case "a maternity dress":
+						r.push(`${slave.slaveName}'s titanic implant-filled belly strains ${his} dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} abnormal midriff.`);
+						break;
+					case "stretch pants and a crop-top":
+						r.push(`${slave.slaveName}'s titanic implant-filled belly takes full advantage of ${his} exposed midriff to hang freely.`);
+						break;
+					case "a slutty maid outfit":
+						r.push(`${slave.slaveName}'s maid dress fails to cover ${his} titanic implant-filled belly, but the outfit includes a thin white blouse that rests meekly atop ${his} immense stomach.`);
+						break;
+					case "a nice maid outfit":
+						r.push(`${slave.slaveName}'s maid dress was almost conservative, but it has burst open trying to contain ${his} titanic implant-filled belly. ${His} immense stomach hangs out the hole it made, its sides peeking out from behind ${his} apron.`);
+						break;
+					case "a fallen nuns habit":
+						r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} titanic implant-filled belly.`);
+						break;
+					case "a penitent nuns habit":
+						r.push(`${slave.slaveName}'s titanic implant-filled belly stretches ${his} habit. The coarse cloth aggravates ${his} sensitive stretched skin, even more so, given the amount of skin it has to torment.`);
+						break;
+					case "a string bikini":
+						r.push(`${slave.slaveName}'s titanic implant-filled belly hides most of ${his} string bikini.`);
+						break;
+					case "a scalemail bikini":
+						r.push(`${slave.slaveName}'s scalemail bikini exposes ${his} titanic implant-filled belly.`);
+						break;
+					case "striped panties":
+						r.push(`${slave.slaveName}'s cute panties expose ${his} titanic implant-filled belly.`);
+						break;
+					case "clubslut netting":
+						r.push(`${slave.slaveName}'s titanic implant-filled belly has burst through ${his} clubslut netting.`);
+						break;
+					case "a cheerleader outfit":
+						r.push(`${slave.slaveName}'s cheerleader top rests atop ${his} implant-filled pregnant belly making it look like that this cheerleader has fucked the entire school.`);
+						break;
+					case "cutoffs and a t-shirt":
+						if (slave.boobs > 4000) {
+							r.push(`${slave.slaveName}'s titanic implant-filled belly parts ${his} uncovered breasts.`);
+						} else if ((slave.boobs > 2000)) {
+							r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} titanic implant-filled belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s t-shirt fails to cover ${his} titanic implant-filled belly at all.`);
+						}
+						break;
+					case "a slutty outfit":
+						r.push(`${slave.slaveName}'s titanic implant-filled belly is allowed to hang free, demonstrating just how slutty ${he} is.`);
+						break;
+					case "a slave gown":
+						r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual motherly look as it carefully caresses ${his} titanic implant-filled belly.`);
+						break;
+					case "slutty business attire":
+						r.push(`${slave.slaveName}'s titanic implant-filled stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could close them.`);
+						break;
+					case "nice business attire":
+						r.push(`${slave.slaveName}'s titanic implant-filled belly hangs out the front of ${his} specially tailored blouse and jacket as there is no way for ${him} to close them.`);
+						break;
+					case "harem gauze":
+						r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} titanic implant-filled belly.`);
+						break;
+					case "a comfortable bodysuit":
+						r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} titanic implant-filled belly and prominently displaying ${his} popped navel.`);
+						break;
+					case "a slutty nurse outfit":
+						r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} titanic implant-filled belly leaving ${him} with only the button below ${his} breasts done.`);
+						break;
+					case "a schoolgirl outfit":
+						r.push(`${slave.slaveName}'s blouse rests atop ${his} titanic implant-filled belly, making ${him} look like the super promiscuous school slut.`);
+						break;
+					case "a kimono":
+						r.push(`${slave.slaveName}'s titanic implant-filled belly parts the front of ${his} kimono leaving it gracefully hanging to its sides.`);
+						break;
+					case "a hijab and abaya":
+					case "a niqab and abaya":
+						r.push(`${slave.slaveName}'s abaya lies completely taut on ${his} titanic implant-filled belly.`);
+						break;
+					case "a klan robe":
+						r.push(`${slave.slaveName}'s robe lies completely taut on ${his} titanic implant-filled belly.`);
+						break;
+					case "a burqa":
+						r.push(`The heavy fabric of ${slave.slaveName}'s burqa lies taut against ${his} titanic implant-filled belly.`);
+						break;
+					case "a nice pony outfit":
+					case "a slutty pony outfit":
+						r.push(`The leather material of ${slave.slaveName}'s pony outfit lies taut against ${his} titanic implant-filled belly.`);
+						break;
+					case "a tube top and thong":
+					case "a bra":
+					case "a thong":
+					case "a tube top":
+					case "a striped bra":
+					case "striped underwear":
+					case "a skimpy loincloth":
+					case "a slutty klan robe":
+					case "a sports bra":
+					case "boyshorts":
+					case "cutoffs":
+					case "leather pants and pasties":
+					case "leather pants":
+					case "panties":
+					case "panties and pasties":
+					case "pasties":
+					case "sport shorts and a sports bra":
+					case "jeans":
+					case "leather pants and a tube top":
+					case "sport shorts":
+						r.push(`${slave.slaveName}'s outfit completely bares ${his} titanic implant-filled belly.`);
+						break;
+					case "a one-piece swimsuit":
+						r.push(`${slave.slaveName}'s swimsuit lies completely taut on ${his} titanic implant-filled belly.`);
+						break;
+					case "a sweater":
+					case "a sweater and cutoffs":
+					case "a sweater and panties":
+						r.push(`${slave.slaveName}'s sweater lies completely taut on ${his} titanic implant-filled belly.`);
+						break;
+					case "a police uniform":
+						r.push(`${slave.slaveName}'s uniform lies completely taut on ${his} titanic implant-filled belly.`);
+						break;
+					case "a hanbok":
+						r.push(`${slave.slaveName}'s hanbok has been retrofitted with a large elastic band to accommodate ${his} titanic implant-filled belly.`);
+						break;
+					case "a gothic lolita dress":
+						r.push(`${slave.slaveName}'s dress lies completely taut on ${his} titanic implant-filled belly.`);
+						break;
+					case "a tank-top":
+					case "a tank-top and panties":
+						r.push(`${slave.slaveName}'s tank-top lies completely taut on ${his} titanic implant-filled belly.`);
+						break;
+					case "a button-up shirt and panties":
+					case "a button-up shirt":
+					case "a t-shirt":
+					case "a t-shirt and thong":
+					case "an oversized t-shirt and boyshorts":
+					case "an oversized t-shirt":
+					case "sport shorts and a t-shirt":
+					case "a t-shirt and jeans":
+					case "a t-shirt and panties":
+						r.push(`${slave.slaveName}'s shirt lies completely taut on ${his} titanic implant-filled belly.`);
+						break;
+					case "a Santa dress":
+						r.push(`The bottom of ${slave.slaveName}'s titanic implant-filled belly is stretching ${his} dress's belt to its breaking point.`);
+						break;
+					case "a burkini":
+						r.push(`The bottom of ${slave.slaveName}'s burkini's tunic lies at crotch-level due to ${his} titanic implant-filled belly.`);
+						break;
+					case "a hijab and blouse":
+						r.push(`${slave.slaveName}'s skirt has been retrofitted with a large elastic band to accommodate ${his} titanic implant-filled belly.`);
+						break;
+					case "battledress":
+						r.push(`${slave.slaveName}'s tank top rests atop ${his} titanic implant-filled belly leaving ${him} looking like someone who fucked half the country.`);
+						break;
+					case "a halter top dress":
+						r.push(`${slave.slaveName}'s beautiful halter top dress has been torn open by ${his} titanic implant-filled belly. ${His} immense stomach hangs out the whole it made.`);
+						break;
+					case "a ball gown":
+						r.push(`${slave.slaveName}'s fabulous silken ball gown has been retailored to expose ${his} titanic implant-filled belly while still maintaining its beauty.`);
+						break;
+					case "slutty jewelry":
+						r.push(`${slave.slaveName}'s bangles include a long thin chain that looks ready to snap as in encircles ${his} titanic implant-filled belly.`);
+						break;
+					case "a leotard":
+						r.push(`${slave.slaveName}'s tight leotard shows off every`);
+						if (V.showInches === 2) {
+							r.push(`inch`);
+						} else {
+							r.push(`centimeter`);
+						}
+						r.push(`of ${his} titanic implant-filled belly. ${His} immense stomach slightly protrudes from the various rips and tears that have begun appearing in the fabric.`);
+						break;
+					case "a monokini":
+						r.push(`${slave.slaveName}'s titanic implant-filled belly has pushed down the front of ${his} monokini, leaving ${his} belly mostly bare.`);
+						break;
+					case "overalls":
+						if (slave.boobs > (slave.belly + 250)) {
+							r.push(`${slave.slaveName}'s gigantic breasts push out ${his} overalls so far that ${his} huge implant-filled belly is left halfway uncovered.`);
+						} else {
+							r.push(`The front of ${slave.slaveName}'s overalls barely covers half of ${his} huge implant-filled pregnant belly.`);
+						}
+						break;
+					case "an apron":
+						r.push(`${slave.slaveName} has given up trying to tie ${his} apron's strings, allowing the frilly garment to idly rest upon ${his} titanic implant-filled belly.`);
+						break;
+					case "a cybersuit":
+						r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} titanic implant-filled belly and prominently displaying ${his} popped navel.`);
+						break;
+					case "a chattel habit":
+						r.push(`The strip of cloth running down ${his} front is forced to one side by ${his} titanic implant-filled belly.`);
+						break;
+					case "a bunny outfit":
+						r.push(`${slave.slaveName}'s teddy has burst trying to contain ${his} titanic implant-filled belly leaving it hanging out the hole it made.`);
+						break;
+					case "spats and a tank top":
+						if (slave.boobs > 1200) {
+							r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} titanic implant-filled belly by ${his} breasts.`);
+						} else {
+							r.push(`${slave.slaveName}'s top fails to cover ${his} titanic implant-filled belly at all.`);
+						}
+						break;
+					default:
+				}
+				if (V.arcologies[0].FSTransformationFetishist !== "unset") {
+					r.push(`Your transformation fetishizing society is fascinated by ${his} unusual implant.`);
+				}
+			} else if (slave.bellyImplant >= 16000) {
+				if (slave.bellyAccessory === "an extreme corset") {
+					r.push(`${slave.slaveName}'s gigantic implant-filled belly is strains ${his} corset, threatening to burst it; one or the other will eventually win out.`);
+				} else if ((slave.bellyAccessory === "a corset")) {
+					r.push(`${slave.slaveName}'s corset strains around ${his} monstrous belly.`);
+				}
+				switch (slave.clothes) {
+					case "a Fuckdoll suit":
+						r.push(`${slave.slaveName}'s gigantic implant-filled belly is allowed to bulge out of a huge hole in the suit.`);
+						break;
+					case "conservative clothing":
+						if (slave.boobs > 20000) {
+							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater far from ${his} gigantic implant-filled belly.`);
+						} else if ((slave.boobs > 10000)) {
+							r.push(`${slave.slaveName}'s gigantic implant-filled belly adds even more strain to ${his} struggling oversized sweater.`);
+						} else if ((slave.boobs > 8000)) {
+							r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} poorly covered breasts.`);
+						} else if ((slave.boobs > 8000)) {
+							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} gigantic implant-filled belly.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s sweater rests atop ${his} gigantic implant-filled belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s blouse rests atop ${his} gigantic implant-filled belly.`);
+						}
+						break;
+					case "chains":
+						r.push(`${slave.slaveName}'s gigantic implant-filled belly is tightly wrapped with chains causing it to bulge angrily.`);
+						break;
+					case "Western clothing":
+						r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} gigantic implant-filled belly so ${he} has left the bottom buttons open leaving ${his} stomach hanging out.`);
+						break;
+					case "a succubus outfit":
+						r.push(`${slave.slaveName}'s gigantic implant-filled belly sticks out of ${his} corset, which is laced above and below it as best ${he} can manage. The laces are straining to hold together.`);
+						break;
+					case "body oil":
+						r.push(`${slave.slaveName}'s gigantic implant-filled belly is covered in a sheen of stretch-mark defeating oil.`);
+						break;
+					case "a toga":
+						r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} toga.`);
+						break;
+					case "a huipil":
+						r.push(`${slave.slaveName}'s huipil meekly rests atop ${his} gigantic implant-filled belly.`);
+						break;
+					case "a slutty qipao":
+						r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} gigantic implant-filled belly.`);
+						break;
+					case "uncomfortable straps":
+						r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} gigantic implant-filled belly causing flesh to spill out the gaps. The straps connect to a steel ring encircling ${his} popped navel.`);
+						break;
+					case "shibari ropes":
+						r.push(`${slave.slaveName}'s gigantic implant-filled belly is tightly bound with rope, flesh angrily bulges from between them.`);
+						break;
+					case "a latex catsuit":
+					case "restrictive latex":
+						r.push(`${slave.slaveName}'s gigantic implant-filled belly greatly distends ${his} latex suit. ${He} looks like an over inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`);
+						break;
+					case "a military uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs out ${his} open tunic and shirt`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`);
+						} else {
+							r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`);
+						}
+						break;
+					case "a schutzstaffel uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs out ${his} open tunic and shirt`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`);
+						} else {
+							r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`);
+						}
+						break;
+					case "a slutty schutzstaffel uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs out ${his} open tunic and shirt`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`);
+						} else {
+							r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`);
+						}
+						break;
+					case "a red army uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs out ${his} open tunic and shirt`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`);
+						} else {
+							r.push(`${slave.slaveName}'s tunic and shirt lie half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`);
+						}
+						break;
+					case "a nice nurse outfit":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} uncovered breasts.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s oversized breasts keep ${his} scrub top far from ${his} gigantic implant-filled belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s scrub top rests meekly atop ${his} gigantic implant-filled belly.`);
+						}
+						break;
+					case "a mini dress":
+						r.push(`${slave.slaveName}'s mini dress has burst trying to contain ${his} gigantic implant-filled belly leaving it hanging out the hole it made.`);
+						break;
+					case "battlearmor":
+						r.push(`${slave.slaveName}'s armor has burst trying to contain ${his} gigantic implant-filled belly leaving it hanging out the hole it made.`);
+						break;
+					case "a mounty outfit":
+						r.push(`${slave.slaveName}'s tunic lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`);
+						break;
+					case "lederhosen":
+						r.push(`${slave.slaveName}'s tunic lies half open, since ${his} gigantic implant-filled belly has triumphed over ${his} buttons.`);
+						break;
+					case "a long qipao":
+						r.push(`${slave.slaveName}'s dress is almost conservative, it barely contains ${his} gigantic implant-filled belly. Its seams strain to hold back ${his} overfilled middle.`);
+						break;
+					case "a dirndl":
+						r.push(`${slave.slaveName}'s dress is almost conservative, it barely contains ${his} gigantic implant-filled belly. Its seams strain to hold back ${his} overfilled middle.`);
+						break;
+					case "a biyelgee costume":
+						r.push(`${slave.slaveName}'s dress is almost conservative, it barely contains ${his} gigantic implant-filled belly. Its seams strain to hold back ${his} overfilled middle.`);
+						break;
+					case "attractive lingerie":
+						r.push(`${slave.slaveName}'s gigantic implant-filled belly completely hides ${his} lacy g-string.`);
+						break;
+					case "attractive lingerie for a pregnant woman":
+						r.push(`${slave.slaveName}'s gigantic implant-filled belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} overfilled belly.`);
+						break;
+					case "kitty lingerie":
+						r.push(`${slave.slaveName}'s gigantic implant-filled belly completely hides ${his} silk panties.`);
+						break;
+					case "a maternity dress":
+						r.push(`${slave.slaveName}'s gigantic implant-filled belly fills ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} giant middle.`);
+						break;
+					case "stretch pants and a crop-top":
+						r.push(`${slave.slaveName}'s gigantic implant-filled belly takes full advantage of ${his} exposed midriff to hang freely.`);
+						break;
+					case "a slutty maid outfit":
+						r.push(`${slave.slaveName}'s maid dress fails to cover ${his} gigantic implant-filled belly, but the outfit includes a thin white blouse that rests meekly atop ${his} stomach.`);
+						break;
+					case "a nice maid outfit":
+						r.push(`${slave.slaveName}'s maid dress is almost conservative, it barely contains ${his} gigantic implant-filled belly. Its seams strain to hold back ${his} overfilled middle.`);
+						break;
+					case "a fallen nuns habit":
+						r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} gigantic implant-filled belly.`);
+						break;
+					case "a penitent nuns habit":
+						r.push(`${slave.slaveName}'s gigantic implant-filled belly completely fills ${his} habit. The coarse cloth aggravates ${his} sensitive stretched skin.`);
+						break;
+					case "a string bikini":
+						r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} string bikini to either side.`);
+						break;
+					case "a scalemail bikini":
+						r.push(`${slave.slaveName}'s scalemail bikini exposes ${his} gigantic implant-filled belly.`);
+						break;
+					case "striped panties":
+						r.push(`${slave.slaveName}'s cute panties expose ${his} gigantic implant-filled belly.`);
+						break;
+					case "clubslut netting":
+						r.push(`${slave.slaveName}'s gigantic implant-filled belly has burst through ${his} clubslut netting.`);
+						break;
+					case "a cheerleader outfit":
+						r.push(`${slave.slaveName}'s cheerleader top rests atop ${his} gigantic implant-filled belly displaying that this cheerleader is a massive slut.`);
+						break;
+					case "cutoffs and a t-shirt":
+						if (slave.boobs > 4000) {
+							r.push(`${slave.slaveName}'s gigantic implant-filled belly parts ${his} uncovered breasts.`);
+						} else if ((slave.boobs > 2000)) {
+							r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} gigantic implant-filled belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s t-shirt fails to cover ${his} gigantic implant-filled belly at all.`);
+						}
+						break;
+					case "a slutty outfit":
+						r.push(`${slave.slaveName}'s gigantic implant-filled belly really shows how big of a slut ${he} is.`);
+						break;
+					case "a slave gown":
+						r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual motherly look as it carefully caresses ${his} gigantic implant-filled belly.`);
+						break;
+					case "slutty business attire":
+						r.push(`${slave.slaveName}'s gigantic implant-filled stomach hangs out the front of ${his} suit jacket and blouse as there is no way ${he} could close them.`);
+						break;
+					case "nice business attire":
+						r.push(`${slave.slaveName}'s gigantic implant-filled belly hangs out the front of ${his} specially tailored blouse and jacket as there is no way for ${him} to close them.`);
+						break;
+					case "harem gauze":
+						r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} gigantic implant-filled belly.`);
+						break;
+					case "a comfortable bodysuit":
+						r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} gigantic implant-filled belly, prominently displaying ${his} popped navel.`);
+						break;
+					case "a slutty nurse outfit":
+						r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} gigantic implant-filled belly leaving ${him} with only the button below ${his} breasts done.`);
+						break;
+					case "a schoolgirl outfit":
+						r.push(`${slave.slaveName}'s blouse rests atop ${his} gigantic implant-filled belly, leaving ${him} looking particularly slutty.`);
+						break;
+					case "a kimono":
+						r.push(`${slave.slaveName}'s gigantic implant-filled belly parts the front of ${his} kimono leaving it gracefully covering its sides.`);
+						break;
+					case "a hijab and abaya":
+					case "a niqab and abaya":
+						r.push(`${slave.slaveName}'s abaya is straining to contain ${his} huge implant-filled belly.`);
+						break;
+					case "a klan robe":
+						r.push(`${slave.slaveName}'s robe is straining to contain ${his} huge implant-filled belly.`);
+						break;
+					case "a burqa":
+						r.push(`${slave.slaveName}'s burqa is filled out by ${his} huge implant-filled belly.`);
+						break;
+					case "a nice pony outfit":
+					case "a slutty pony outfit":
+						r.push(`The leather material of ${slave.slaveName}'s pony outfit lies taut against ${his} huge implant-filled belly.`);
+						break;
+					case "a tube top and thong":
+					case "a bra":
+					case "a thong":
+					case "a tube top":
+					case "a striped bra":
+					case "striped underwear":
+					case "a skimpy loincloth":
+					case "a slutty klan robe":
+					case "a sports bra":
+					case "boyshorts":
+					case "cutoffs":
+					case "leather pants and pasties":
+					case "leather pants":
+					case "panties":
+					case "panties and pasties":
+					case "pasties":
+					case "sport shorts and a sports bra":
+					case "jeans":
+					case "leather pants and a tube top":
+					case "sport shorts":
+						r.push(`${slave.slaveName}'s outfit completely bares ${his} huge implant-filled belly.`);
+						break;
+					case "a one-piece swimsuit":
+						r.push(`${slave.slaveName}'s swimsuit lies completely taut on ${his} huge implant-filled belly.`);
+						break;
+					case "a sweater":
+					case "a sweater and cutoffs":
+					case "a sweater and panties":
+						r.push(`${slave.slaveName}'s sweater lies completely taut on ${his} huge implant-filled belly.`);
+						break;
+					case "a police uniform":
+						r.push(`${slave.slaveName}'s uniform lies completely taut on ${his} huge implant-filled belly.`);
+						break;
+					case "a hanbok":
+						r.push(`${slave.slaveName}'s hanbok has been retrofitted with a large elastic band to accommodate ${his} huge implant-filled belly.`);
+						break;
+					case "a gothic lolita dress":
+						r.push(`${slave.slaveName}'s dress lies completely taut on ${his} huge implant-filled belly.`);
+						break;
+					case "a tank-top":
+					case "a tank-top and panties":
+						r.push(`${slave.slaveName}'s tank-top lies completely taut on ${his} huge implant-filled belly.`);
+						break;
+					case "a button-up shirt and panties":
+					case "a button-up shirt":
+					case "a t-shirt":
+					case "a t-shirt and thong":
+					case "an oversized t-shirt and boyshorts":
+					case "an oversized t-shirt":
+					case "sport shorts and a t-shirt":
+					case "a t-shirt and jeans":
+					case "a t-shirt and panties":
+						r.push(`${slave.slaveName}'s shirt lies completely taut on ${his} huge implant-filled belly.`);
+						break;
+					case "a Santa dress":
+						r.push(`${slave.slaveName}'s leather belt can only just barely fit around ${his} huge implant-filled belly.`);
+						break;
+					case "a burkini":
+						r.push(`The fabric of ${slave.slaveName}'s burkini is pushed up to just below ${his} crotch due to ${his} huge implant-filled belly.`);
+						break;
+					case "a hijab and blouse":
+						r.push(`${slave.slaveName}'s shirts are straining to contain ${his} huge implant-filled belly.`);
+						break;
+					case "battledress":
+						r.push(`${slave.slaveName}'s tank top rests atop ${his} gigantic implant-filled belly leaving ${him} looking like someone who fucked all the locals.`);
+						break;
+					case "a halter top dress":
+						r.push(`${slave.slaveName}'s beautiful halter top dress is strained by ${his} gigantic implant-filled belly. ${His} popped navel prominently pokes through the front of ${his} dress as its seams strain to hold together.`);
+						break;
+					case "a ball gown":
+						r.push(`${slave.slaveName}'s fabulous silken ball gown, while tailored, strains to contain ${his} gigantic implant-filled belly.`);
+						break;
+					case "slutty jewelry":
+						r.push(`${slave.slaveName}'s bangles include a long thin chain that rests above ${his} popped navel.`);
+						break;
+					case "a leotard":
+						r.push(`${slave.slaveName}'s tight leotard shows off every kick and movement within ${his} gigantic implant-filled belly. The material tightly clings to ${his} popped navel and strains to hold together.`);
+						break;
+					case "a monokini":
+						r.push(`${slave.slaveName}'s gigantic implant-filled belly pushes the fabric of ${his} monokini to below ${his} popped navel.`);
+						break;
+					case "overalls":
+						if (slave.boobs > (slave.belly + 250)) {
+							r.push(`${slave.slaveName}'s enormous breasts push out ${his} overalls so far that ${his} huge implant-filled belly is left mostly uncovered.`);
+						} else {
+							r.push(`${slave.slaveName}'s overalls are pulled taut by ${his} huge implant-filled belly.`);
+						}
+						break;
+					case "an apron":
+						r.push(`The strings of ${slave.slaveName}'s apron struggle to stay tied due to the size of ${his} huge implant-filled belly.`);
+						break;
+					case "a cybersuit":
+						r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} gigantic implant-filled belly, prominently displaying ${his} popped navel.`);
+						break;
+					case "a chattel habit":
+						r.push(`The strip of cloth running down ${his} front is parted to one side by ${his} gigantic implant-filled belly.`);
+						break;
+					case "a bunny outfit":
+						r.push(`${slave.slaveName}'s teddy has burst trying to contain ${his} gigantic implant-filled belly, leaving it hanging out the hole it made.`);
+						break;
+					case "spats and a tank top":
+						if (slave.boobs > 1200) {
+							r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} gigantic implant-filled belly by ${his} breasts.`);
+						} else {
+							r.push(`${slave.slaveName}'s top merely rests on ${his} gigantic implant-filled belly.`);
+						}
+						break;
+					case "a bimbo outfit":
+						r.push(`${slave.slaveName}'s gigantic implant-filled belly eclipses ${his} miniskirt and leaves little to hold up ${his} thong.`);
+						break;
+					case "a courtesan dress":
+						r.push(`${slave.slaveName}'s corset cradles, rather than binds, ${his} gigantic implant-filled belly, but the sheer size of ${his} artificial bump forces the ribs wide, exposing the thin cloth beneath.`);
+						break;
+					default:
+				}
+				if (V.arcologies[0].FSTransformationFetishist !== "unset") {
+					r.push(`Your transformation fetishizing society is fascinated by ${his} unusual implant.`);
+				}
+			} else if (slave.bellyImplant >= 8000) {
+				if (slave.bellyAccessory === "an extreme corset") {
+					r.push(`${slave.slaveName}'s huge implant-filled belly is tightly compressed by ${his} corset; one or the other will eventually win out.`);
+				} else if ((slave.bellyAccessory === "a corset")) {
+					r.push(`${slave.slaveName}'s huge implant-filled belly comfortably bulges out of ${his} corset.`);
+				}
+				switch (slave.clothes) {
+					case "a Fuckdoll suit":
+						r.push(`${slave.slaveName}'s huge implant-filled belly is allowed to bulge out of a huge hole in the suit.`);
+						break;
+					case "conservative clothing":
+						if (slave.boobs > 24000) {
+							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} huge implant-filled belly, though they do a fine job of hiding it themselves.`);
+						} else if ((slave.boobs > 12000)) {
+							r.push(`${slave.slaveName}'s huge implant-filled belly is hidden by ${his} massive tits and oversized sweater.`);
+						} else if ((slave.boobs > 8000)) {
+							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} huge implant-filled belly.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} huge implant-filled belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in the material.`);
+						} else {
+							r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} huge implant-filled belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in ${his} shirt.`);
+						}
+						break;
+					case "attractive lingerie for a pregnant woman":
+						r.push(`${slave.slaveName}'s huge implant-filled belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy stomach.`);
+						break;
+					case "a maternity dress":
+						r.push(`${slave.slaveName}'s huge implant-filled belly fills out ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} expanded middle.`);
+						break;
+					case "stretch pants and a crop-top":
+						r.push(`${slave.slaveName}'shuge implant-filled belly takes full advantage of ${his} exposed midriff to hang freely and obscure ${his} stretch pants.`);
+						break;
+					case "chains":
+						r.push(`${slave.slaveName}'s huge implant-filled belly is tightly wrapped with chains, causing it to bulge angrily.`);
+						break;
+					case "Western clothing":
+						r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} huge implant-filled belly so ${he} has left the bottom buttons open, leaving ${his} stomach hanging out.`);
+						break;
+					case "body oil":
+						r.push(`${slave.slaveName}'s huge implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`);
+						break;
+					case "a toga":
+						r.push(`${slave.slaveName}'s huge implant-filled belly parts ${his} toga.`);
+						break;
+					case "a huipil":
+						r.push(`${slave.slaveName}'s huge implant-filled belly lifts ${his} huipil.`);
+						break;
+					case "a slutty qipao":
+						r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} huge implant-filled belly.`);
+						break;
+					case "uncomfortable straps":
+						r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} huge implant-filled belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`);
+						break;
+					case "shibari ropes":
+						r.push(`${slave.slaveName}'s huge implant-filled belly is tightly bound with ropes; flesh bulges angrily from between them.`);
+						break;
+					case "a latex catsuit":
+					case "restrictive latex":
+						r.push(`${slave.slaveName}'s huge implant-filled belly greatly distends ${his} latex suit. ${He} looks like an over inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`);
+						break;
+					case "a military uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s huge implant-filled belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt strains to contain ${his} huge implant-filled belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s huge implant-filled belly greatly stretches ${his} uniform's jacket.`);
+						}
+						break;
+					case "a schutzstaffel uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s huge implant-filled belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt strains to contain ${his} huge implant-filled belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s huge implant-filled belly greatly stretches ${his} uniform's jacket.`);
+						}
+						break;
+					case "a slutty schutzstaffel uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s huge implant-filled belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt strains to contain ${his} huge implant-filled belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s huge implant-filled belly greatly stretches ${his} uniform's jacket.`);
+						}
+						break;
+					case "a red army uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s huge implant-filled belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt strains to contain ${his} huge implant-filled belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s huge implant-filled belly greatly stretches ${his} uniform's jacket.`);
+						}
+						break;
+					case "a nice nurse outfit":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s huge implant-filled belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} huge implant-filled belly hangs out from under them, obscuring ${his} trousers.`);
+						} else {
+							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} huge implant-filled belly hangs out from under ${his} top, obscuring ${his} trousers.`);
+						}
+						break;
+					case "a mini dress":
+						r.push(`${slave.slaveName}'s mini dress barely clings to ${his} huge implant-filled belly.`);
+						break;
+					case "battlearmor":
+						r.push(`${slave.slaveName}'s armor tightly clings to ${his} huge implant-filled belly.`);
+						break;
+					case "a mounty outfit":
+						r.push(`${slave.slaveName}'s tunic tightly clings to ${his} huge implant-filled belly.`);
+						break;
+					case "lederhosen":
+						r.push(`${slave.slaveName}'s tunic tightly clings to ${his} huge implant-filled belly.`);
+						break;
+					case "a long qipao":
+						r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge implant-filled belly.`);
+						break;
+					case "a dirndl":
+						r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge implant-filled belly.`);
+						break;
+					case "a biyelgee costume":
+						r.push(`${slave.slaveName}'s dress tightly clings to ${his} huge implant-filled belly.`);
+						break;
+					case "attractive lingerie":
+						r.push(`${slave.slaveName}'s huge implant-filled belly completely hides ${his} lacy g-string.`);
+						break;
+					case "kitty lingerie":
+						r.push(`${slave.slaveName}'s huge implant-filled belly completely hides ${his} silk panties.`);
+						break;
+					case "a succubus outfit":
+						r.push(`${slave.slaveName}'s huge implant-filled belly sticks out of ${his} corset, which is laced above and below it as best ${he} can manage.`);
+						break;
+					case "a slutty maid outfit":
+						r.push(`${slave.slaveName}'s maid dress fails to cover ${his} huge implant-filled belly, but the outfit includes a thin white blouse that conceals only the upper part of ${his} stomach.`);
+						break;
+					case "a nice maid outfit":
+						r.push(`${slave.slaveName}'s maid dress is almost conservative. It covers ${his} huge implant-filled belly completely, though it cannot hide ${his} popped navel, poking through the front.`);
+						break;
+					case "a fallen nuns habit":
+						r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} huge implant-filled belly.`);
+						break;
+					case "a penitent nuns habit":
+						r.push(`${He} looks absolutely blasphemous in a habit with such a huge implant-filled belly. The coarse cloth aggravates ${his} sensitive stretched skin.`);
+						break;
+					case "a string bikini":
+						r.push(`${slave.slaveName}'s huge implant-filled belly parts ${his} string bikini to either side.`);
+						break;
+					case "a scalemail bikini":
+						r.push(`${slave.slaveName}'s scalemail bikini exposes ${his} huge implant-filled belly.`);
+						break;
+					case "striped panties":
+						r.push(`${slave.slaveName}'s cute panties expose ${his} huge implant-filled belly.`);
+						break;
+					case "clubslut netting":
+						r.push(`${slave.slaveName}'s clubslut netting is stretched to the breaking point by ${his} huge implant-filled belly.`);
+						break;
+					case "a cheerleader outfit":
+						r.push(`${slave.slaveName}'s cheerleader top rides up ${his} huge implant-filled belly, covering only the top of it while leaving the rest on display to show how slutty this cheerleader is.`);
+						break;
+					case "cutoffs and a t-shirt":
+						if (slave.boobs > 4000) {
+							r.push(`${slave.slaveName}'s huge implant-filled belly is obscured by ${his} huge tits.`);
+						} else if ((slave.boobs > 2000)) {
+							r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} huge implant-filled belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s t-shirt fails to cover ${his} huge implant-filled belly at all.`);
+						}
+						break;
+					case "a slutty outfit":
+						r.push(`${slave.slaveName}'s huge implant-filled belly really shows what a slut ${he} is.`);
+						break;
+					case "a slave gown":
+						r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual motherly look as it carefully caresses ${his} huge implant-filled belly.`);
+						break;
+					case "slutty business attire":
+						r.push(`${slave.slaveName}'s huge implant-filled belly hangs out the front of ${his} suit jacket and blouse, as there is no way ${he} could close them.`);
+						break;
+					case "nice business attire":
+						r.push(`${slave.slaveName}'s huge implant-filled belly strains ${his} specially tailored blouse and jacket.`);
+						break;
+					case "harem gauze":
+						r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} huge implant-filled belly.`);
+						break;
+					case "a comfortable bodysuit":
+						r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} huge implant-filled belly, prominently displaying ${his} popped navel.`);
+						break;
+					case "a slutty nurse outfit":
+						r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} huge implant-filled belly, leaving ${him} with only the button below ${his} breasts done.`);
+						break;
+					case "a schoolgirl outfit":
+						r.push(`${slave.slaveName}'s blouse rides up ${his} huge implant-filled belly, leaving ${him} looking particularly slutty.`);
+						break;
+					case "a kimono":
+						r.push(`${slave.slaveName}'s huge implant-filled belly parts the front of ${his} kimono, leaving it gracefully covering its sides.`);
+						break;
+					case "a hijab and abaya":
+					case "a niqab and abaya":
+						r.push(`${slave.slaveName}'s burqa is noticeably rounded out by ${his} huge implant-filled belly.`);
+						break;
+					case "a klan robe":
+						r.push(`${slave.slaveName}'s robe is noticeably rounded out by ${his} huge implant-filled belly.`);
+						break;
+					case "a burqa":
+						r.push(`${slave.slaveName}'s burqa is noticeably rounded out by ${his} huge implant-filled belly.`);
+						break;
+					case "a nice pony outfit":
+					case "a slutty pony outfit":
+						r.push(`The leather material of ${slave.slaveName}'s pony outfit is noticeably rounded out by ${his} huge implant-filled belly.`);
+						break;
+					case "a tube top and thong":
+					case "a bra":
+					case "a thong":
+					case "a tube top":
+					case "a striped bra":
+					case "striped underwear":
+					case "a skimpy loincloth":
+					case "a slutty klan robe":
+					case "a sports bra":
+					case "boyshorts":
+					case "cutoffs":
+					case "leather pants and pasties":
+					case "leather pants":
+					case "panties":
+					case "panties and pasties":
+					case "pasties":
+					case "sport shorts and a sports bra":
+					case "jeans":
+					case "leather pants and a tube top":
+					case "sport shorts":
+						r.push(`${slave.slaveName}'s outfit completely bares ${his} huge implant-filled belly.`);
+						break;
+					case "a one-piece swimsuit":
+						r.push(`${slave.slaveName}'s swimsuit is noticeably rounded out by ${his} huge implant-filled belly.`);
+						break;
+					case "a sweater":
+					case "a sweater and cutoffs":
+					case "a sweater and panties":
+						r.push(`${slave.slaveName}'s sweater is noticeably rounded out by ${his} huge implant-filled belly.`);
+						break;
+					case "a police uniform":
+						r.push(`${slave.slaveName}'s uniform is noticeably rounded out by ${his} huge implant-filled belly.`);
+						break;
+					case "a hanbok":
+						r.push(`${slave.slaveName}'s hanbok is noticeably rounded out by ${his} huge implant-filled belly.`);
+						break;
+					case "a gothic lolita dress":
+						r.push(`${slave.slaveName}'s dress is noticeably rounded out by ${his} huge implant-filled belly.`);
+						break;
+					case "a tank-top":
+					case "a tank-top and panties":
+						r.push(`${slave.slaveName}'s tank-top is noticeably rounded out by ${his} huge implant-filled belly.`);
+						break;
+					case "a button-up shirt and panties":
+					case "a button-up shirt":
+					case "a t-shirt":
+					case "a t-shirt and thong":
+					case "an oversized t-shirt and boyshorts":
+					case "an oversized t-shirt":
+					case "sport shorts and a t-shirt":
+					case "a t-shirt and jeans":
+					case "a t-shirt and panties":
+						r.push(`${slave.slaveName}'s shirt is noticeably rounded out by ${his} huge implant-filled belly.`);
+						break;
+					case "a Santa dress":
+						r.push(`${slave.slaveName}'s belt is struggling to fully encircle ${his} huge implant-filled belly.`);
+						break;
+					case "a burkini":
+						r.push(`The fabric of ${slave.slaveName}'s burkini is slightly pushed up thanks to ${his} huge implant-filled belly.`);
+						break;
+					case "a hijab and blouse":
+						r.push(`${slave.slaveName} has trouble pulling ${his} skirt up to fit around ${his} huge implant-filled belly.`);
+						break;
+					case "battledress":
+						r.push(`${slave.slaveName}'s tank top barely even covers the top of ${his} huge implant-filled belly, leaving ${him} looking like someone who had too much fun on shore leave.`);
+						break;
+					case "a halter top dress":
+						r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} huge implant-filled belly. ${His} popped navel prominently pokes through its front.`);
+						break;
+					case "a ball gown":
+						r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} huge implant-filled belly, but draw attention to it.`);
+						break;
+					case "slutty jewelry":
+						r.push(`${slave.slaveName}'s bangles include a long thin chain that rests above ${his} popped navel.`);
+						break;
+					case "a leotard":
+						r.push(`${slave.slaveName}'s tight leotard shows off every kick and movement within ${his} huge implant-filled belly. The material tightly clings to ${his} popped navel.`);
+						break;
+					case "a monokini":
+						r.push(`${slave.slaveName}'s huge implant-filled belly pushes the fabric of ${his} monokini to rest just above ${his} popped navel.`);
+						break;
+					case "overalls":
+						if (slave.boobs > (slave.belly + 250)) {
+							r.push(`${slave.slaveName}'s massive breasts push out ${his} overalls so far that ${his} hugely swollen belly is left almost entirely uncovered.`);
+						} else {
+							r.push(`${slave.slaveName}'s hugely swollen belly stretches out the fabric of ${his} overalls.`);
+						}
+						break;
+					case "an apron":
+						r.push(`${slave.slaveName}'s apron is pushed away from ${his} body by ${his} huge implant-filled belly.`);
+						break;
+					case "a cybersuit":
+						r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} huge implant-filled belly, prominently displaying ${his} popped navel.`);
+						break;
+					case "a chattel habit":
+						r.push(`The strip of cloth running down ${his} front is parted to one side by ${his} huge implant-filled belly.`);
+						break;
+					case "a bunny outfit":
+						r.push(`${slave.slaveName}'s teddy is stretched to tearing by ${his} huge implant-filled belly. ${His} popped navel prominently pokes through the material.`);
+						break;
+					case "spats and a tank top":
+						if (slave.boobs > 4000) {
+							r.push(`${slave.slaveName}'s huge implant-filled belly is obscured by ${his} huge tits.`);
+						} else if ((slave.boobs > 1200)) {
+							r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} huge implant-filled belly by ${his} breasts.`);
+						} else {
+							r.push(`${slave.slaveName}'s top merely rests on ${his} huge implant-filled belly.`);
+						}
+						break;
+					case "a bimbo outfit":
+						r.push(`${slave.slaveName}'s miniskirt is trapped beneath ${his} huge implant-filled belly and ${his} thong strings forced to caress its curves.`);
+						break;
+					case "a courtesan dress":
+						r.push(`${slave.slaveName}'s huge implant-filled belly strains the ribs of ${his} corset.`);
+						break;
+					default:
+				}
+				if (V.arcologies[0].FSTransformationFetishist !== "unset") {
+					r.push(`Your transformation fetishizing society is fascinated by ${his} unusual implant.`);
+				}
+			} else if (slave.bellyImplant >= 4000) {
+				if (slave.bellyAccessory === "an extreme corset") {
+					r.push(`${slave.slaveName}'s implant-filled belly is tightly compressed by ${his} corset; one or the other will eventually win out.`);
+				} else if ((slave.bellyAccessory === "a corset")) {
+					r.push(`${slave.slaveName}'s implant-filled belly comfortably bulges out of ${his} corset.`);
+				}
+				switch (slave.clothes) {
+					case "a Fuckdoll suit":
+						r.push(`${slave.slaveName}'s implant-filled belly is allowed to bulge out of a hole in the suit.`);
+						break;
+					case "conservative clothing":
+						if (slave.boobs > 20000) {
+							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} implant-filled belly, though they do a fine job of hiding it themselves.`);
+						} else if ((slave.boobs > 10000)) {
+							r.push(`${slave.slaveName}'s implant-filled belly is hidden by ${his} massive tits and oversized sweater.`);
+						} else if ((slave.boobs > 8000)) {
+							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} implant-filled belly.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} implant-filled belly. ${His} popped navel forms a small tent in material.`);
+						} else {
+							r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} implant-filled belly. ${His} popped navel forms a small tent in ${his} shirt.`);
+						}
+						break;
+					case "attractive lingerie for a pregnant woman":
+						r.push(`${slave.slaveName}'s implant-filled belly hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy stomach.`);
+						break;
+					case "a maternity dress":
+						r.push(`${slave.slaveName}'s implant-filled belly fills out ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} rounded middle.`);
+						break;
+					case "stretch pants and a crop-top":
+						r.push(`${slave.slaveName}'s implant-filled belly takes full advantage of ${his} exposed midriff to bulge freely and slightly obscure ${his} stretch pants.`);
+						break;
+					case "chains":
+						r.push(`${slave.slaveName}'s implant-filled belly is tightly wrapped with chains, causing it to bulge angrily.`);
+						break;
+					case "Western clothing":
+						r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} implant-filled belly, so ${he} has left the bottom buttons open leaving ${his} belly hanging out.`);
+						break;
+					case "body oil":
+						r.push(`${slave.slaveName}'s implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.`);
+						break;
+					case "a toga":
+						r.push(`${slave.slaveName}'s implant-filled belly parts ${his} toga.`);
+						break;
+					case "a huipil":
+						r.push(`${slave.slaveName}'s implant-filled belly lifts ${his} huipil.`);
+						break;
+					case "a slutty qipao":
+						r.push(`${His} qipao is slit up the side. However, it only covers the top of ${his} implant-filled belly.`);
+						break;
+					case "uncomfortable straps":
+						r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} implant-filled belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`);
+						break;
+					case "shibari ropes":
+						r.push(`${slave.slaveName}'s implant-filled belly is tightly bound with rope; flesh bulges angrily from between them.`);
+						break;
+					case "a latex catsuit":
+					case "restrictive latex":
+						r.push(`${slave.slaveName}'s implant-filled belly greatly distends ${his} latex suit. ${He} looks like an over inflated balloon. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`);
+						break;
+					case "a military uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt strains to contain ${his} implant-filled belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`);
+						}
+						break;
+					case "a schutzstaffel uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt strains to contain ${his} implant-filled belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`);
+						}
+						break;
+					case "a slutty schutzstaffel uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt strains to contain ${his} implant-filled belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`);
+						}
+						break;
+					case "a red army uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt strains to contain ${his} implant-filled belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s implant-filled belly notably distends ${his} uniform's jacket.`);
+						}
+						break;
+					case "a nice nurse outfit":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} implant-filled belly hangs out from under them, obscuring ${his} trousers.`);
+						} else {
+							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} implant-filled hangs out from under ${his} top, slightly obscuring ${his} trousers.`);
+						}
+						break;
+					case "a mini dress":
+						r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} implant-filled belly.`);
+						break;
+					case "battlearmor":
+						r.push(`${slave.slaveName}'s armor tightly clings to ${his} implant-filled belly.`);
+						break;
+					case "a mounty outfit":
+						r.push(`${slave.slaveName}'s tunic tightly clings to ${his} implant-filled belly.`);
+						break;
+					case "lederhosen":
+						r.push(`${slave.slaveName}'s tunic tightly clings to ${his} implant-filled belly.`);
+						break;
+					case "a long qipao":
+						r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-filled belly.`);
+						break;
+					case "a dirndl":
+						r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-filled belly.`);
+						break;
+					case "a biyelgee costume":
+						r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-filled belly.`);
+						break;
+					case "attractive lingerie":
+						r.push(`${slave.slaveName}'s implant-filled belly hides ${his} lacy g-string.`);
+						break;
+					case "kitty lingerie":
+						r.push(`${slave.slaveName}'s implant-filled belly hides ${his} silk panties.`);
+						break;
+					case "a succubus outfit":
+						r.push(`${slave.slaveName}'s implant-filled belly sticks out of ${his} corset, which is laced above and below it.`);
+						break;
+					case "a slutty maid outfit":
+						r.push(`${slave.slaveName}'s maid dress fails to cover ${his} implant-filled belly, but the outfit includes a thin white blouse that conceals only the top half of ${his} stomach.`);
+						break;
+					case "a nice maid outfit":
+						r.push(`${slave.slaveName}'s maid dress is almost conservative, it covers ${his} implant-filled belly completely. Though it cannot hide ${his} popped navel poking through the front.`);
+						break;
+					case "a fallen nuns habit":
+						r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} implant-filled belly.`);
+						break;
+					case "a penitent nuns habit":
+						r.push(`${He} looks absolutely blasphemous in a habit with an implant-filled belly. The coarse cloth aggravates ${his} sensitive stretched skin.`);
+						break;
+					case "a string bikini":
+						r.push(`${slave.slaveName}'s implant-filled belly parts ${his} string bikini to either side.`);
+						break;
+					case "a scalemail bikini":
+						r.push(`${slave.slaveName}'s scalemail bikini exposes ${his} implant-filled belly.`);
+						break;
+					case "striped panties":
+						r.push(`${slave.slaveName}'s cute panties expose ${his} implant-filled belly.`);
+						break;
+					case "clubslut netting":
+						r.push(`${slave.slaveName}'s clubslut netting is stretched out by ${his} implant-filled belly.`);
+						break;
+					case "a cheerleader outfit":
+						r.push(`${slave.slaveName}'s cheerleader top covers most of ${his} implant-filled belly, the bottom of which peeks out showing how slutty this cheerleader is.`);
+						break;
+					case "cutoffs and a t-shirt":
+						if (slave.boobs > 4000) {
+							r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} huge tits.`);
+						} else if ((slave.boobs > 2000)) {
+							r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} implant-filled belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s t-shirt covers only the top of ${his} implant-filled belly.`);
+						}
+						break;
+					case "a slutty outfit":
+						r.push(`${slave.slaveName}'s implant-filled belly really shows how big of a slut ${he} is.`);
+						break;
+					case "a slave gown":
+						r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual motherly look as it carefully caresses ${his} implant-filled belly.`);
+						break;
+					case "slutty business attire":
+						r.push(`${slave.slaveName}'s implant-filled belly strains the buttons of ${his} suit jacket and blouse.`);
+						break;
+					case "nice business attire":
+						r.push(`${slave.slaveName}'s implant-filled belly looks good in ${his} specially tailored blouse and jacket.`);
+						break;
+					case "harem gauze":
+						r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} implant-filled belly.`);
+						break;
+					case "a comfortable bodysuit":
+						r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} implant-filled belly, prominently displaying ${his} popped navel.`);
+						break;
+					case "a slutty nurse outfit":
+						r.push(`${slave.slaveName}'s jacket barely closes over ${his} implant-filled belly leaving its buttons threatening to pop.`);
+						break;
+					case "a schoolgirl outfit":
+						r.push(`${slave.slaveName}'s blouse rides up ${his} implant-filled belly, leaving ${him} looking particularly slutty.`);
+						break;
+					case "a kimono":
+						r.push(`${slave.slaveName}'s implant-filled belly is demurely covered by ${his} kimono.`);
+						break;
+					case "a hijab and abaya":
+					case "a niqab and abaya":
+						r.push(`${slave.slaveName}'s abaya is filled out by ${his} implant-filled belly.`);
+						break;
+					case "a klan robe":
+						r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s robe, thanks to ${his} implant-filled belly.`);
+						break;
+					case "a burqa":
+						r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s burqa, thanks to ${his} implant-filled belly.`);
+						break;
+					case "a nice pony outfit":
+					case "a slutty pony outfit":
+						r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s pony outfit, thanks to ${his} implant-filled belly.`);
+						break;
+					case "a tube top and thong":
+					case "a bra":
+					case "a thong":
+					case "a tube top":
+					case "a striped bra":
+					case "striped underwear":
+					case "a skimpy loincloth":
+					case "a slutty klan robe":
+					case "a sports bra":
+					case "boyshorts":
+					case "cutoffs":
+					case "leather pants and pasties":
+					case "leather pants":
+					case "panties":
+					case "panties and pasties":
+					case "pasties":
+					case "sport shorts and a sports bra":
+					case "jeans":
+					case "leather pants and a tube top":
+					case "sport shorts":
+						r.push(`${slave.slaveName}'s outfit completely bares ${his} implant-filled belly.`);
+						break;
+					case "a one-piece swimsuit":
+						r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s swimsuit, thanks to ${his} implant-filled belly.`);
+						break;
+					case "a sweater":
+					case "a sweater and cutoffs":
+					case "a sweater and panties":
+						r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s sweater, thanks to ${his} implant-filled belly.`);
+						break;
+					case "a police uniform":
+						r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s uniform, thanks to ${his} implant-filled belly.`);
+						break;
+					case "a hanbok":
+						r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s hanbok, thanks to ${his} implant-filled belly.`);
+						break;
+					case "a gothic lolita dress":
+						r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s dress, thanks to ${his} implant-filled belly.`);
+						break;
+					case "a tank-top":
+					case "a tank-top and panties":
+						r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s tank-top, thanks to ${his} implant-filled belly.`);
+						break;
+					case "a button-up shirt and panties":
+					case "a button-up shirt":
+					case "a t-shirt":
+					case "a t-shirt and thong":
+					case "an oversized t-shirt and boyshorts":
+					case "an oversized t-shirt":
+					case "sport shorts and a t-shirt":
+					case "a t-shirt and jeans":
+					case "a t-shirt and panties":
+						r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s shirt, thanks to ${his} implant-filled belly.`);
+						break;
+					case "a Santa dress":
+						r.push(`The belt on ${slave.slaveName}'s dress has been loosened to accommodate the significant bulge of ${his} implant-filled belly.`);
+						break;
+					case "a burkini":
+						r.push(`${slave.slaveName}'s burkini bulges significantly from ${his} implant-filled belly.`);
+						break;
+					case "a hijab and blouse":
+						r.push(`${slave.slaveName}'s skirt is slightly pushed down by ${his} implant-filled belly.`);
+						break;
+					case "battledress":
+						r.push(`${slave.slaveName}'s tank top rides up ${his} implant-filled belly leaving ${him} looking like someone who had too much fun on shore leave.`);
+						break;
+					case "a halter top dress":
+						r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} implant-filled belly. ${His} popped navel prominently pokes through the front of ${his} dress.`);
+						break;
+					case "a ball gown":
+						r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} implant-filled belly but draw attention to it.`);
+						break;
+					case "slutty jewelry":
+						r.push(`${slave.slaveName}'s bangles include a long thin chain that rests above ${his} popped navel.`);
+						break;
+					case "a leotard":
+						r.push(`${slave.slaveName}'s tight leotard shows off every kick and movement within ${his} implant-filled belly. The material tightly clings to ${his} popped navel.`);
+						break;
+					case "a monokini":
+						r.push(`${slave.slaveName}'s implant-filled belly pushes down the fabric of ${his} monokini down somewhat.`);
+						break;
+					case "overalls":
+						if (slave.boobs > (slave.belly + 250)) {
+							r.push(`${slave.slaveName}'s huge breasts push out ${his} overalls so far that ${his} implant-filled belly is left uncovered.`);
+						} else {
+							r.push(`${slave.slaveName}'s overalls are significantly curved by ${his} implant-filled belly.`);
+						}
+						break;
+					case "an apron":
+						r.push(`${slave.slaveName}'s apron is filled out by ${his} implant-filled belly.`);
+						break;
+					case "a cybersuit":
+						r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} implant-filled belly, prominently displaying ${his} popped navel.`);
+						break;
+					case "a chattel habit":
+						r.push(`The strip of cloth running down ${his} front is parted to one side by ${his} implant-filled belly.`);
+						break;
+					case "a bunny outfit":
+						r.push(`${slave.slaveName}'s teddy is stretched out by ${his} implant-filled belly. ${His} popped navel prominently pokes through the material.`);
+						break;
+					case "spats and a tank top":
+						if (slave.boobs > 4000) {
+							r.push(`${slave.slaveName}'s implant-filled belly is obscured by ${his} huge tits.`);
+						} else if ((slave.boobs > 1200)) {
+							r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} implant-filled belly by ${his} breasts, allowing it to slightly obscure ${his} spats from view.`);
+						} else {
+							r.push(`${slave.slaveName}'s top can't entirely cover ${his} implant-filled belly, allowing it to slightly obscure ${his} spats from view.`);
+						}
+						break;
+					case "a bimbo outfit":
+						r.push(`${slave.slaveName}'s miniskirt rests at the base of ${his} implant-filled belly.`);
+						break;
+					case "a courtesan dress":
+						r.push(`${slave.slaveName}'s implant-filled belly is carefully caressed by the ribs of ${his} corset.`);
+						break;
+					default:
+				}
+				if (V.arcologies[0].FSTransformationFetishist !== "unset") {
+					r.push(`Your transformation fetishizing society is fascinated by ${his} unusual implant.`);
+				}
+			} else if (slave.weight > 95) {
+				if (slave.bellyAccessory === "an extreme corset") {
+					r.push(`${slave.slaveName}'s huge gut is tightly compressed by ${his} corset, ${his} fat billows out of any gap it can find.`);
+				} else if ((slave.bellyAccessory === "a corset")) {
+					r.push(`${slave.slaveName}'s huge gut hangs out the hole in ${his} corset designed to accommodate a pregnant belly.`);
+				} else if ((slave.bellyAccessory === "a small empathy belly")) {
+					r.push(`${slave.slaveName}'s small empathy belly is barely noticeable over ${his} huge gut.`);
+				}
+				switch (slave.clothes) {
+					case "a Fuckdoll suit":
+						r.push(`${slave.slaveName}'s fat belly is cruelly squeezed by the suit.`);
+						break;
+					case "conservative clothing":
+						if (slave.boobs > 20000) {
+							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} fat belly, though they do a fine job of hiding it themselves.`);
+						} else if ((slave.boobs > 10000)) {
+							r.push(`${slave.slaveName}'s fat belly is hidden by ${his} massive tits and oversized sweater.`);
+						} else if ((slave.boobs > 8000)) {
+							r.push(`${slave.slaveName}'s oversized breasts ${his} fat belly hang free.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s sweater is pulled tight over ${his} fat belly. The bottom of which peeks out from under it.`);
+						} else {
+							r.push(`${slave.slaveName}'s blouse is pulled tight over ${his} fat belly. The bottom of which peeks out from under it.`);
+						}
+						break;
+					case "attractive lingerie for a pregnant woman":
+						r.push(`${slave.slaveName}'s fat belly is large enough to hide ${his} panties. ${His} silken vest sensually frames ${his} heavy, jiggly gut.`);
+						break;
+					case "a maternity dress":
+						r.push(`${slave.slaveName}'s fat belly fills out ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to a growing pregnancy, though it works on big, jiggly guts all the same.`);
+						break;
+					case "stretch pants and a crop-top":
+						r.push(`${slave.slaveName}'s fat belly takes full advantage of ${his} exposed midriff to hang freely and obscure ${his} stretch pants.`);
+						break;
+					case "chains":
+						r.push(`${slave.slaveName}'s chains sink deep into ${his} fat belly, several even disappearing beneath ${his} folds.`);
+						break;
+					case "Western clothing":
+						r.push(`${slave.slaveName}'s flannel shirt strains to stay shut over ${his} fat belly, fat bulges between ${his} buttons and quite a bit of ${his} lower belly hangs out beneath ${his} shirt.`);
+						break;
+					case "body oil":
+						r.push(`${slave.slaveName}'s fat belly is covered in a sheen of oil.`);
+						break;
+					case "a toga":
+						r.push(`${slave.slaveName}'s toga can barely be pulled shut over ${his} fat belly.`);
+						break;
+					case "a huipil":
+						r.push(`${slave.slaveName}'s huipil gets lifted by ${his} fat belly, so it's useless for covering ${his} body.`);
+						break;
+					case "a slutty qipao":
+						r.push(`${His} qipao is slit up the side. However, it only covers the top of ${his} fat belly, allowing it to hang free.`);
+						break;
+					case "uncomfortable straps":
+						r.push(`${slave.slaveName}'s slave outfit's straps sink deep into ${his} fat belly, several even disappearing beneath ${his} folds. The straps connect to a steel ring that parts the fold concealing ${his} navel, allowing it to be seen once again.`);
+						break;
+					case "shibari ropes":
+						r.push(`${slave.slaveName}'s binding ropes sink deep into ${his} fat belly, several even disappearing beneath ${his} folds.`);
+						break;
+					case "a latex catsuit":
+					case "restrictive latex":
+						r.push(`${slave.slaveName}'s fat belly is compressed by ${his} latex suit, leaving it looking round and smooth.`);
+						break;
+					case "a military uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`);
+						} else {
+							r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`);
+						}
+						break;
+					case "a schutzstaffel uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`);
+						} else {
+							r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`);
+						}
+						break;
+					case "a slutty schutzstaffel uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`);
+						} else {
+							r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`);
+						}
+						break;
+					case "a red army uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`);
+						} else {
+							r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`);
+						}
+						break;
+					case "a nice nurse outfit":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} fat belly freely hangs out from under them, obscuring ${his} trousers.`);
+						} else {
+							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} fat belly freely hangs from under ${his} top, obscuring ${his} trousers.`);
+						}
+						break;
+					case "a mini dress":
+						r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`);
+						break;
+					case "battlearmor":
+						r.push(`${slave.slaveName}'s armor tightly clings to ${his} fat belly.`);
+						break;
+					case "lederhosen":
+						r.push(`${slave.slaveName}'s tunic tightly clings to ${his} fat belly, clearly showing every fold and roll.`);
+						break;
+					case "a mounty outfit":
+						r.push(`${slave.slaveName}'s tunic tightly clings to ${his} fat belly, clearly showing every fold and roll.`);
+						break;
+					case "a long qipao":
+						r.push(`${slave.slaveName}'s dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`);
+						break;
+					case "a dirndl":
+						r.push(`${slave.slaveName}'s dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`);
+						break;
+					case "a biyelgee costume":
+						r.push(`${slave.slaveName}'s dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`);
+						break;
+					case "attractive lingerie":
+						r.push(`${slave.slaveName}'s fat belly hides ${his} lacy g-string.`);
+						break;
+					case "kitty lingerie":
+						r.push(`${slave.slaveName}'s fat belly hides ${his} silk panties.`);
+						break;
+					case "a succubus outfit":
+						r.push(`${slave.slaveName}'s fat belly sticks out of ${his} corset, which is laced above and below it allowing it to hang free.`);
+						break;
+					case "a slutty maid outfit":
+						r.push(`${slave.slaveName}'s maid dress fails to cover ${his} fat belly, but the outfit includes a thin white blouse that, when stretched, only manages to wrangle the top of ${his} gut.`);
+						break;
+					case "a nice maid outfit":
+						r.push(`${slave.slaveName}'s maid dress is almost conservative, it covers ${his} fat belly completely, but does nothing to hide how big it is.`);
+						break;
+					case "a fallen nuns habit":
+						r.push(`${slave.slaveName}'s latex habit's corset is barely holding together over ${his} fat belly, causing flab to spill out from every opening.`);
+						break;
+					case "a penitent nuns habit":
+						r.push(`${His} fat belly fills out ${his} habit. The coarse cloth has plenty of extra skin to aggravate.`);
+						break;
+					case "a string bikini":
+						r.push(`${slave.slaveName}'s fat belly parts ${his} string bikini to either side.`);
+						break;
+					case "a scalemail bikini":
+						r.push(`${slave.slaveName}'s scalemail bikini exposes ${his} fat belly.`);
+						break;
+					case "striped panties":
+						r.push(`${slave.slaveName}'s cute panties expose ${his} fat belly.`);
+						break;
+					case "clubslut netting":
+						r.push(`${slave.slaveName}'s clubslut netting is stretched out by ${his} fat belly, forcing flab to poke through the mesh.`);
+						break;
+					case "a cheerleader outfit":
+						r.push(`${slave.slaveName}'s cheerleader top covers most of ${his} fat belly. However, the bottom of it peeks out, obscuring ${his} skirt and a letting everyone know how badly this cheerleader needs to diet.`);
+						break;
+					case "cutoffs and a t-shirt":
+						if (slave.boobs > 4000) {
+							r.push(`${slave.slaveName}'s fat belly is obscured by ${his} huge tits.`);
+						} else if ((slave.boobs > 2000)) {
+							r.push(`${slave.slaveName}'s tits keep ${his} t-shirt busy, allowing ${his} fat belly to hang free.`);
+						} else {
+							r.push(`${slave.slaveName}'s t-shirt covers only the top of ${his} fat belly, allowing it to hang mostly free and cover ${his} jeans.`);
+						}
+						break;
+					case "a slutty outfit":
+						r.push(`${slave.slaveName} lets ${his} fat belly hang free, leaving ${him} looking particularly slutty.`);
+						break;
+					case "a slave gown":
+						r.push(`${slave.slaveName}'s slave gown is carefully tailored, accentuating and hugging every curve of ${his} fat belly.`);
+						break;
+					case "slutty business attire":
+						r.push(`${slave.slaveName}'s fat belly strains the buttons of ${his} suit jacket and blouse. The bottom of which just barely peeks out from under them.`);
+						break;
+					case "nice business attire":
+						r.push(`${slave.slaveName}'s tailored blouse and jacket fit ${his} fat belly well, though they do nothing to hide how big ${his} gut is.`);
+						break;
+					case "harem gauze":
+						r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} fat belly.`);
+						break;
+					case "a comfortable bodysuit":
+						r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} fat belly, displaying every fold and roll in it.`);
+						break;
+					case "a slutty nurse outfit":
+						r.push(`${slave.slaveName}'s jacket barely closes over ${his} fat belly forcing plenty of flab out from under its bottom and between the straining buttons.`);
+						break;
+					case "a schoolgirl outfit":
+						r.push(`${slave.slaveName}'s blouse rides up ${his} fat belly, leaving it hanging loose and covering ${his} skirt.`);
+						break;
+					case "a kimono":
+						r.push(`${slave.slaveName}'s fat belly is demurely covered by ${his} kimono.`);
+						break;
+					case "a hijab and abaya":
+					case "a niqab and abaya":
+						r.push(`${slave.slaveName}'s abaya is filled out by ${his} fat belly.`);
+						break;
+					case "a klan robe":
+						r.push(`${slave.slaveName}'s robe is filled out by ${his} fat belly.`);
+						break;
+					case "a burqa":
+						r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} burqa.`);
+						break;
+					case "a nice pony outfit":
+					case "a slutty pony outfit":
+						r.push(`${slave.slaveName}'s fat belly molds itself against ${his} pony outfit.`);
+						break;
+					case "a tube top and thong":
+					case "a bra":
+					case "a thong":
+					case "a tube top":
+					case "a striped bra":
+					case "striped underwear":
+					case "a skimpy loincloth":
+					case "a slutty klan robe":
+					case "a sports bra":
+					case "boyshorts":
+					case "cutoffs":
+					case "leather pants and pasties":
+					case "leather pants":
+					case "panties":
+					case "panties and pasties":
+					case "pasties":
+					case "sport shorts and a sports bra":
+					case "jeans":
+					case "leather pants and a tube top":
+					case "sport shorts":
+						r.push(`${slave.slaveName}'s outfit completely bares ${his} fat belly.`);
+						break;
+					case "a one-piece swimsuit":
+						r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} swimsuit.`);
+						break;
+					case "a sweater":
+					case "a sweater and cutoffs":
+					case "a sweater and panties":
+						r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} sweater.`);
+						break;
+					case "a police uniform":
+						r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} uniform.`);
+						break;
+					case "a hanbok":
+						r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} hanbok.`);
+						break;
+					case "a gothic lolita dress":
+						r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} dress.`);
+						break;
+					case "a tank-top":
+					case "a tank-top and panties":
+						r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} tank-top.`);
+						break;
+					case "a button-up shirt and panties":
+					case "a button-up shirt":
+					case "a t-shirt":
+					case "a t-shirt and thong":
+					case "an oversized t-shirt and boyshorts":
+					case "an oversized t-shirt":
+					case "sport shorts and a t-shirt":
+					case "a t-shirt and jeans":
+					case "a t-shirt and panties":
+						r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} shirt.`);
+						break;
+					case "a Santa dress":
+						r.push(`${slave.slaveName}'s fat belly bulges around the belt around ${his} waist.`);
+						break;
+					case "a burkini":
+						r.push(`${slave.slaveName}'s burkini bulges from ${his} fat belly.`);
+						break;
+					case "a hijab and blouse":
+						r.push(`${slave.slaveName}'s blouse and skirt are filled out by ${his} fat belly.`);
+						break;
+					case "battledress":
+						r.push(`${slave.slaveName}'s tank top rests atop ${his} fat belly, leaving everyone wondering how this recruit passed basic.`);
+						break;
+					case "a halter top dress":
+						r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} fat belly. Every crease, fold and roll is clearly visible within it.`);
+						break;
+					case "a ball gown":
+						r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} fat belly but draw attention to it.`);
+						break;
+					case "slutty jewelry":
+						r.push(`${slave.slaveName}'s bangles include long, thin chains running along ${his} fat folds.`);
+						break;
+					case "a leotard":
+						r.push(`${slave.slaveName}'s tight leotard tightly clings to ${his} fat belly, clearly displaying every fold and roll.`);
+						break;
+					case "a monokini":
+						r.push(`${slave.slaveName}'s monokini tightly clings to ${his} fat belly, clearly displaying every fold and roll.`);
+						break;
+					case "overalls":
+						if (slave.boobs > (slave.belly + 250)) {
+							r.push(`${slave.slaveName}'s large breasts push out ${his} overalls so far that ${his} fat belly is left uncovered.`);
+						} else {
+							r.push(`${slave.slaveName}'s fat belly bulges out from over the sides of ${his} overalls.`);
+						}
+						break;
+					case "an apron":
+						r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`);
+						break;
+					case "a cybersuit":
+						r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} fat belly, displaying every fold and roll in it.`);
+						break;
+					case "a chattel habit":
+						r.push(`The strip of cloth running down ${his} front is gently sinks into ${his} fat belly.`);
+						break;
+					case "a bunny outfit":
+						r.push(`${slave.slaveName}'s teddy is stretched out by ${his} fat belly. ${His} flab juts out around its edges and it does nothing to hide ${his} folds and rolls.`);
+						break;
+					case "spats and a tank top":
+						if (slave.boobs > 4000) {
+							r.push(`${slave.slaveName}'s fat belly is obscured by ${his} huge tits.`);
+						} else if ((slave.boobs > 1200)) {
+							r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} fat belly by ${his} breasts, allowing it to hang loose and obscure ${his} spats from view.`);
+						} else {
+							r.push(`${slave.slaveName}'s top can't entirely cover ${his} fat belly, allowing it to hang loose and slightly obscure ${his} spats from view.`);
+						}
+						break;
+					case "a bimbo outfit":
+						r.push(`${slave.slaveName}'s thong strings dig into ${his} fat belly as it lewdly draps over ${his} miniskirt.`);
+						break;
+					case "a courtesan dress":
+						r.push(`${slave.slaveName}'s fat belly bulges the ribs of ${his} corset, creating valleys of soft flesh.`);
+						break;
+					default:
+				}
+				if (V.arcologies[0].FSSlimnessEnthusiast !== "unset") {
+					r.push(`Your sleek, slim society finds ${his} bloated body unsightly.`);
+				}
+			} else if (slave.bellyImplant >= 2000) {
+				if (slave.bellyAccessory === "an extreme corset") {
+					r.push(`${slave.slaveName}'s implant-rounded belly is tightly compressed by ${his} corset causing ${his} distress.`);
+				} else if ((slave.bellyAccessory === "a corset")) {
+					r.push(`${slave.slaveName}'s implant-rounded belly comfortably rounds out ${his} corset.`);
+				}
+				switch (slave.clothes) {
+					case "a Fuckdoll suit":
+						r.push(`${slave.slaveName}'s implant-rounded belly nearly requires ${him} to be switched into a suit with a hole for it to hang out from.`);
+						break;
+					case "conservative clothing":
+						if (slave.boobs > 20000) {
+							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} implant-rounded belly, though they do a fine job of hiding it themselves.`);
+						} else if ((slave.boobs > 10000)) {
+							r.push(`${slave.slaveName}'s implant-rounded belly is hidden by ${his} massive tits and oversized sweater.`);
+						} else if ((slave.boobs > 8000)) {
+							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} implant-rounded belly.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s sweater bulges with ${his} implant-rounded belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s blouse bulges with ${his} implant-rounded belly.`);
+						}
+						break;
+					case "attractive lingerie for a pregnant woman":
+						r.push(`${slave.slaveName}'s implant-rounded belly rests above ${his} silken panties. ${His} silken vest sensually frames ${his} swollen belly.`);
+						break;
+					case "a maternity dress":
+						r.push(`${slave.slaveName}'s implant-rounded belly is noticeable under ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} swollen middle.`);
+						break;
+					case "stretch pants and a crop-top":
+						r.push(`${slave.slaveName}'s implant-rounded belly takes full advantage of ${his} exposed midriff to bulge freely.`);
+						break;
+					case "chains":
+						r.push(`${slave.slaveName}'s implant-rounded belly is tightly wrapped with chains.`);
+						break;
+					case "Western clothing":
+						r.push(`${slave.slaveName}'s flannel shirt bulges with ${his} implant-rounded belly.`);
+						break;
+					case "body oil":
+						r.push(`${slave.slaveName}'s implant-rounded belly is covered in a sheen of oil.`);
+						break;
+					case "a toga":
+						r.push(`${slave.slaveName}'s implant-rounded belly gently bulges under ${his} toga.`);
+						break;
+					case "a huipil":
+						r.push(`${slave.slaveName}'s implant-rounded belly slightly bulges under ${his} huipil.`);
+						break;
+					case "a slutty qipao":
+						r.push(`${His} qipao is slit up the side. The front is pushed out by ${his} implant-rounded belly.`);
+						break;
+					case "uncomfortable straps":
+						r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} implant-rounded belly.`);
+						break;
+					case "shibari ropes":
+						r.push(`${slave.slaveName}'s implant-rounded belly is tightly bound with rope, flesh bulges from between them.`);
+						break;
+					case "a latex catsuit":
+					case "restrictive latex":
+						r.push(`${slave.slaveName}'s implant-rounded belly greatly bulges under ${his} latex suit.`);
+						break;
+					case "a military uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`);
+							break;
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s undershirt covers ${his} implant-rounded belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s uniform covers ${his} implant-rounded belly.`);
+						}
+						break;
+					case "a schutzstaffel uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s undershirt covers ${his} implant-rounded belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s uniform covers ${his} implant-rounded belly.`);
+						}
+						break;
+					case "a slutty schutzstaffel uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s undershirt covers ${his} implant-rounded belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s uniform covers ${his} implant-rounded belly.`);
+						}
+						break;
+					case "a red army uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s undershirt covers ${his} implant-rounded belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s uniform covers ${his} implant-rounded belly.`);
+						}
+						break;
+					case "a nice nurse outfit":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} implant-rounded belly is completely exposed.`);
+						} else {
+							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, it covers ${his} implant-rounded belly completely.`);
+						}
+						break;
+					case "a mini dress":
+						r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} implant-rounded belly.`);
+						break;
+					case "battlearmor":
+						r.push(`${slave.slaveName}'s armor tightly clings to ${his} implant-rounded belly.`);
+						break;
+					case "a mounty outfit":
+						r.push(`${slave.slaveName}'s tunic tightly clings to ${his} implant-rounded belly.`);
+						break;
+					case "lederhosen":
+						r.push(`${slave.slaveName}'s tunic tightly clings to ${his} implant-rounded belly.`);
+						break;
+					case "a long qipao":
+						r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-rounded belly.`);
+						break;
+					case "a dirndl":
+						r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-rounded belly.`);
+						break;
+					case "a biyelgee costume":
+						r.push(`${slave.slaveName}'s dress tightly clings to ${his} implant-rounded belly.`);
+						break;
+					case "attractive lingerie":
+						r.push(`${slave.slaveName}'s implant-rounded belly rests above ${his} lacy g-string.`);
+						break;
+					case "kitty lingerie":
+						r.push(`${slave.slaveName}'s implant-rounded belly rests above ${his} silk panties.`);
+						break;
+					case "a succubus outfit":
+						r.push(`${slave.slaveName}'s implant-rounded belly peeks out of ${his} corset, which is laced above and below it.`);
+						break;
+					case "a slutty maid outfit":
+						r.push(`${slave.slaveName}'s maid dress is slightly distended by ${his} implant-rounded belly.`);
+						break;
+					case "a nice maid outfit":
+						r.push(`${slave.slaveName}'s maid dress is almost conservative, it covers ${his} implant-rounded belly completely.`);
+						break;
+					case "a fallen nuns habit":
+						r.push(`${slave.slaveName}'s latex habit's corset struggles to hold ${his} implant-rounded belly.`);
+						break;
+					case "a penitent nuns habit":
+						r.push(`${slave.slaveName}'s habit gently bulges from ${his} implant-rounded belly. The coarse cloth aggravates ${his} sensitive skin.`);
+						break;
+					case "a string bikini":
+						r.push(`${slave.slaveName}'s implant-rounded belly juts out between the strings of ${his} bikini.`);
+						break;
+					case "a scalemail bikini":
+						r.push(`${slave.slaveName}'s implant-rounded belly juts out underneath ${his} bikini.`);
+						break;
+					case "striped panties":
+						r.push(`${slave.slaveName}'s implant-rounded belly juts out above ${his} panties.`);
+						break;
+					case "clubslut netting":
+						r.push(`${slave.slaveName}'s clubslut netting clings to ${his} implant-rounded belly.`);
+						break;
+					case "a cheerleader outfit":
+						r.push(`${slave.slaveName}'s cheerleader top gently bulges from ${his} implant-rounded belly displaying how slutty this cheerleader is.`);
+						break;
+					case "cutoffs and a t-shirt":
+						if (slave.boobs > 4000) {
+							r.push(`${slave.slaveName}'s implant-rounded belly is obscured by ${his} huge tits.`);
+						} else if ((slave.boobs > 2000)) {
+							r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} implant-rounded belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s t-shirt bulges with ${his} implant-rounded belly. The bottom of which is beginning to peek from under ${his} T-shirt.`);
+						}
+						break;
+					case "a slutty outfit":
+						r.push(`${slave.slaveName}'s implant-rounded belly shows how big of a slut ${he} is.`);
+						break;
+					case "a slave gown":
+						r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual look as it carefully caresses ${his} implant-rounded belly.`);
+						break;
+					case "slutty business attire":
+						r.push(`${slave.slaveName}'s implant-rounded belly bulges ${his} suit jacket and blouse. It peeks out from under their bottom slightly.`);
+						break;
+					case "nice business attire":
+						r.push(`${slave.slaveName}'s implant-rounded belly bulges under ${his} tailored blouse and jacket.`);
+						break;
+					case "harem gauze":
+						r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} implant-rounded middle.`);
+						break;
+					case "a comfortable bodysuit":
+						r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} implant-rounded belly, displaying ${his} swollen body.`);
+						break;
+					case "a slutty nurse outfit":
+						r.push(`${slave.slaveName}'s jacket bulges with ${his} implant-rounded belly, which can be seen peeking out from underneath.`);
+						break;
+					case "a schoolgirl outfit":
+						r.push(`${slave.slaveName}'s blouse bulges with ${his} implant-rounded belly. It peeks out from the bottom leaving ${him} looking particularly slutty.`);
+						break;
+					case "a kimono":
+						r.push(`${slave.slaveName}'s implant-rounded belly is demurely covered by ${his} kimono.`);
+						break;
+					case "a hijab and abaya":
+					case "a niqab and abaya":
+						r.push(`${slave.slaveName}'s abaya bulges with ${his} implant-rounded belly.`);
+						break;
+					case "a klan robe":
+						r.push(`${slave.slaveName}'s robe is filled out by ${his} implant-swollen belly.`);
+						break;
+					case "a burqa":
+						r.push(`${slave.slaveName}'s burqa is filled out by ${his} implant-swollen belly.`);
+						break;
+					case "a nice pony outfit":
+					case "a slutty pony outfit":
+						r.push(`${slave.slaveName}'s pony outfit is rounded out by ${his} implant-swollen belly.`);
+						break;
+					case "a tube top and thong":
+					case "a bra":
+					case "a thong":
+					case "a tube top":
+					case "a striped bra":
+					case "striped underwear":
+					case "a skimpy loincloth":
+					case "a slutty klan robe":
+					case "a sports bra":
+					case "boyshorts":
+					case "cutoffs":
+					case "leather pants and pasties":
+					case "leather pants":
+					case "panties":
+					case "panties and pasties":
+					case "pasties":
+					case "sport shorts and a sports bra":
+					case "jeans":
+					case "leather pants and a tube top":
+					case "sport shorts":
+						r.push(`${slave.slaveName}'s outfit completely bares ${his} implant-swollen belly.`);
+						break;
+					case "a one-piece swimsuit":
+						r.push(`${slave.slaveName}'s swimsuit is rounded out by ${his} implant-swollen belly.`);
+						break;
+					case "a sweater":
+					case "a sweater and cutoffs":
+					case "a sweater and panties":
+						r.push(`${slave.slaveName}'s sweater is rounded out by ${his} implant-swollen belly.`);
+						break;
+					case "a police uniform":
+						r.push(`${slave.slaveName}'s uniform is rounded out by ${his} implant-swollen belly.`);
+						break;
+					case "a hanbok":
+						r.push(`${slave.slaveName}'s hanbok gently bulges from ${his} implant-swollen belly.`);
+						break;
+					case "a gothic lolita dress":
+						r.push(`${slave.slaveName}'s dress gently bulges from ${his} implant-swollen belly.`);
+						break;
+					case "a tank-top":
+					case "a tank-top and panties":
+						r.push(`${slave.slaveName}'s tank-top gently bulges from ${his} implant-swollen belly.`);
+						break;
+					case "a button-up shirt and panties":
+					case "a button-up shirt":
+					case "a t-shirt":
+					case "a t-shirt and thong":
+					case "an oversized t-shirt and boyshorts":
+					case "an oversized t-shirt":
+					case "sport shorts and a t-shirt":
+					case "a t-shirt and jeans":
+					case "a t-shirt and panties":
+						r.push(`${slave.slaveName}'s shirt covers most of ${his} implant-swollen belly.`);
+						break;
+					case "a Santa dress":
+						r.push(`The belt of ${slave.slaveName}'s dress lies atop the gentle bulge of ${his} implant-rounded belly.`);
+						break;
+					case "a burkini":
+						r.push(`${slave.slaveName}'s burkini gently bulges from ${his} implant-rounded belly.`);
+						break;
+					case "a hijab and blouse":
+						r.push(`${slave.slaveName}'s blouse and skirt bulge from ${his} implant-rounded belly.`);
+						break;
+					case "battledress":
+						r.push(`${slave.slaveName}'s tank top covers the top of ${his} implant-rounded belly leaving ${him} looking like someone who had too much fun on shore leave.`);
+						break;
+					case "a halter top dress":
+						r.push(`${slave.slaveName}'s beautiful halter top dress bulges with ${his} implant-rounded belly.`);
+						break;
+					case "a ball gown":
+						r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to draw attention to ${his} rounded middle.`);
+						break;
+					case "slutty jewelry":
+						r.push(`${slave.slaveName}'s bangles include a long thin chain that rests across ${his} implant-rounded belly.`);
+						break;
+					case "a leotard":
+						r.push(`${slave.slaveName}'s tight leotard shows off ${his} implant-rounded belly.`);
+						break;
+					case "a monokini":
+						r.push(`${slave.slaveName}'s monokini is filled out by ${his} implant-rounded belly.`);
+						break;
+					case "overalls":
+						if (slave.boobs > (slave.belly + 250)) {
+							r.push(`${slave.slaveName}'s large breasts push out ${his} overalls so far that ${his} implant-rounded belly is left uncovered.`);
+						} else {
+							r.push(`${slave.slaveName}'s implant-rounded belly rounds out the front of ${his} overalls.`);
+						}
+						break;
+					case "an apron":
+						r.push(`${slave.slaveName}'s apron is rounded out by ${his} implant-rounded belly.`);
+						break;
+					case "a cybersuit":
+						r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} implant-rounded belly, displaying ${his} swollen body.`);
+						break;
+					case "a chattel habit":
+						r.push(`The strip of cloth running down ${his} front is pushed out by ${his} implant-rounded belly.`);
+						break;
+					case "a bunny outfit":
+						r.push(`${slave.slaveName}'s teddy bulges with ${his} implant-rounded belly.`);
+						break;
+					case "spats and a tank top":
+						if (slave.boobs > 4000) {
+							r.push(`${slave.slaveName}'s fat belly is obscured by ${his} huge tits.`);
+						} else if ((slave.boobs > 1200)) {
+							r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} implant-rounded belly by ${his} breasts.`);
+						} else {
+							r.push(`${slave.slaveName}'s top bulges with ${his} implant-rounded belly, which peeks out from the bottom.`);
+						}
+						break;
+					case "a bimbo outfit":
+						r.push(`${slave.slaveName}'s miniskirt keeps sliding down ${his} implant-rounded belly.`);
+						break;
+					case "a courtesan dress":
+						r.push(`${slave.slaveName}'s corset bulges with ${his} implant-rounded belly.`);
+						break;
+					default:
+				}
+				if (V.arcologies[0].FSTransformationFetishist !== "unset") {
+					r.push(`Your transformation fetishizing society is fascinated by ${his} unusual implant.`);
+				}
+			}
+		} else {
+			r.push(`${slave.slaveName}'s belly is bare and ready for surgery.`);
+		}
+	}
+
+	if (slave.fuckdoll === 0) {
+		if (slave.navelPiercing === 1) {
+			r.push(`${His} navel bears a simple stud.`);
+		} else if (slave.navelPiercing === 2) {
+			r.push(`${His} navel is pierced with a big ring.`);
+			if (slave.bellyImplant >= 16000) {
+				r.push(`It has a heavy bell dangling from it.`);
+			} else if ((slave.clothes === "slutty jewelry")) {
+				r.push(`It has a length of gilded chain dangling from it.`);
+			} else {
+				r.push(`It has a short length of chain dangling from it.`);
+			}
+		}
+
+		if (slave.bellyTat !== 0) {
+			if (slave.bellyImplant >= 32000) {
+				if (slave.bellyTat === "a heart") {
+					r.push(`A heart is tattooed around ${his} popped navel, though it is barely recognizable so stretched by ${his} titanic implant-filled middle.`);
+				} else if (slave.bellyTat === "a star") {
+					r.push(`A star is tattooed around ${his} popped navel, though it is barely recognizable so stretched by ${his} titanic implant-filled pregnancy middle.`);
+				} else if (slave.bellyTat === "a butterfly") {
+					r.push(`A butterfly is tattooed around ${his} popped navel, though it is barely recognizable so stretched by ${his} titanic implant-filled pregnancy middle.`);
+				}
+			} else if (slave.bellyImplant >= 16000) {
+				if (slave.bellyTat === "a heart") {
+					r.push(`A heart is tattooed around ${his} popped navel, though it is rather stretched by ${his} enormous implant-filled middle.`);
+				} else if (slave.bellyTat === "a star") {
+					r.push(`A star is tattooed around ${his} popped navel, though it is rather stretched by ${his} enormous implant-filled middle.`);
+				} else if (slave.bellyTat === "a butterfly") {
+					r.push(`A butterfly is tattooed around ${his} popped navel, though it is rather stretched by ${his} enormous implant-filled middle.`);
+				}
+			} else if (slave.bellyImplant >= 8000) {
+				if (slave.bellyTat === "a heart") {
+					r.push(`A heart is tattooed around ${his} popped navel, only to be truly seen when ${he} appears full-term.`);
+				} else if (slave.bellyTat === "a star") {
+					r.push(`A star is tattooed around ${his} popped navel, only to be truly seen when ${he} appears full-term.`);
+				} else if (slave.bellyTat === "a butterfly") {
+					r.push(`A butterfly is tattooed around ${his} popped navel, only to be truly seen when ${he} appears full-term.`);
+				}
+			} else if (slave.bellyImplant >= 4000) {
+				r.push(`${He} has a barely recognizable tattoo around ${his} navel, it should reveal itself fully once ${he} is a little bigger.`);
+			} else if (slave.bellyImplant >= 2000) {
+				r.push(`${He} has an unrecognizable tattoo around ${his} navel, it has stretched slightly along with ${his} rounded middle.`);
+			} else {
+				r.push(`${He} has an unrecognizable tattoo scrunched around ${his} navel.`);
+			}
+		}
+
+		if (slave.birthsTat > 0) {
+			if (slave.birthsTat > 1) {
+				r.push(`${He} has a series of ${slave.birthsTat} baby-shaped tattoos adorning ${his} stomach; one for each successful `);
+				if (slave.pregKnown === 1) {
+					r.push(`pregnancy and a temporary one for ${his} current pregnancy.`);
+				} else {
+					r.push(`pregnancy.`);
+				}
+			} else {
+				r.push(`${He} has a single baby-shaped`);
+				if (slave.pregKnown === 1) {
+					r.push(`tattoo, and one temporary one,`);
+				} else {
+					r.push(`tattoo`);
+				}
+				r.push(`adorning ${his} stomach.`);
+			}
+		} else if (slave.birthsTat === 0 && slave.abortionTat === -1 && slave.pregKnown === 1) {
+			r.push(`${He} has a single baby-shaped temporary tattoo adorning ${his} stomach.`);
+		}
+		if (slave.abortionTat > 0) {
+			if (slave.abortionTat > 1) {
+				r.push(`${He} has a series of ${slave.abortionTat} crossed out baby-shaped`);
+				if (slave.pregKnown === 1) {
+					r.push(`tattoos, and one uncrossed one,`);
+				} else {
+					r.push(`tattoos`);
+				}
+				r.push(`adorning ${his} stomach; one for each pregnancy ${he}'s failed to complete.`);
+			} else {
+				r.push(`${He} has a single crossed out, baby-shaped tattoo`);
+				if (slave.pregKnown === 1) {
+					r.push(`tattoo, and one uncrossed one,`);
+				} else {
+					r.push(`tattoo`);
+				}
+				r.push(`adorning ${his} stomach.`);
+			}
+		} else if (slave.abortionTat === 0 && slave.birthsTat === -1 && slave.pregKnown === 1) {
+			r.push(`${He} has a single baby-shaped temporary tattoo adorning ${his} stomach.`);
+		}
+
+		if (slave.breedingMark === 1) {
+			if (V.propOutcome === 1) {
+				r.push(`The Societal Elites' mark designating ${him} as a breeder is prominently displayed across ${his} lower belly, beneath ${his} navel.`);
+			} else {
+				r.push(`An alluring tattoo is prominently displayed across ${his} lower belly, beneath ${his} navel, urging ${him} to be bred.`);
+			}
+		}
+
+		if (slave.physicalAge >= 13) {
+			if (slave.bellyImplant >= 31000) {
+				if (canWalk(slave)) {
+					r.push(`${His} middle is so massive that it is difficult for ${him} to move.`);
+					if (slave.muscles > 95) {
+						r.push(`However, ${he} is so powerfully built that ${he} can manage it with effort, using ${his} arms to support it.`);
+					} else if (slave.muscles > 30) {
+						r.push(`${He} can barely manage to get to ${his} feet unaided, and usually walks with ${his} arms under ${his} belly to help take its weight.`);
+					} else if (slave.muscles > 5) {
+						r.push(`${He} requires assistance to get to ${his} feet, and tends to lean on things to help relieve the weight.`);
+					} else {
+						r.push(`${He} cannot get to ${his} feet unaided, and tries to stay seated as much as ${he} can.`);
+					}
+				} else if (tooBigBelly(slave)) {
+					r.push(`It is easily as large as ${his} torso, making ${him} at least half belly.`);
+				} else {
+					r.push(`It is easily as large as ${his} torso, making ${him} at least half belly.`);
+				}
+				if (slave.bellyImplant >= 16000) {
+					if (V.pregAccessibility === 1) {
+						r.push(`Fortunately for ${him}, the penthouse is adapted for daily life with a belly`);
+					} else {
+						if (V.saleDescription === 1) {
+							r.push(`${He}'ll have`);
+						} else {
+							r.push(`${He} has`);
+						}
+						r.push(`trouble living in your penthouse, which is not designed for ${girl}s with bellies`);
+					}
+					r.push(`wider than a standard doorway.`);
+				}
+			}
+		} else if (slave.physicalAge >= 4) {
+			if (slave.bellyImplant >= 14000) {
+				if (canWalk(slave)) {
+					r.push(`${His} middle is so massive that it is difficult for ${him} to move.`);
+					if (slave.muscles > 95) {
+						r.push(`However, ${he} is so powerfully built that ${he} can manage it with effort, using ${his} arms to support it.`);
+					} else if (slave.muscles > 30) {
+						r.push(`${He} can barely manage to get to ${his} feet unaided, and usually walks with ${his} arms under ${his} belly to help take its weight.`);
+					} else if (slave.muscles > 5) {
+						r.push(`${He} requires assistance to get to ${his} feet, and tends to lean on things to help relieve the weight.`);
+					} else {
+						r.push(`${He} cannot get to ${his} feet unaided, and tries to stay seated as much as ${he} can.`);
+					}
+				} else if (tooBigBelly(slave)) {
+					r.push(`It is easily bigger than ${he} is, making ${him} mostly belly.`);
+				} else {
+					r.push(`It is easily as large as ${his} torso, making ${him} at least half belly.`);
+				}
+				if (slave.bellyImplant >= 16000) {
+					if (V.pregAccessibility === 1) {
+						r.push(`Fortunately for ${him}, the penthouse is adapted for daily life with a belly`);
+					} else {
+						if (V.saleDescription === 1) {
+							r.push(`${He}'ll have`);
+						} else {
+							r.push(`${He} has`);
+						}
+						r.push(`trouble living in your penthouse, which is not designed for ${girl}s with bellies`);
+					}
+					r.push(`wider than a standard doorway.`);
+				}
+			}
+		} else if (slave.physicalAge < 4) {
+			if (slave.bellyImplant >= 10000) {
+				if (canWalk(slave)) {
+					r.push(`${His} middle is so massive that it is difficult for ${him} to move.`);
+					if (slave.muscles > 95) {
+						r.push(`However, ${he} is so powerfully built that ${he} can manage it with effort, using ${his} arms to support it.`);
+					} else if (slave.muscles > 30) {
+						r.push(`${He} can barely manage to get to ${his} feet unaided, and usually walks with ${his} arms under ${his} belly to help take its weight.`);
+					} else if (slave.muscles > 5) {
+						r.push(`${He} requires assistance to get to ${his} feet, and tends to lean on things to help relieve the weight.`);
+					} else {
+						r.push(`${He} cannot get to ${his} feet unaided, and tries to stay seated as much as ${he} can.`);
+					}
+				} else if (tooBigBelly(slave)) {
+					r.push(`It easily dwarfs ${him}, making ${him} almost entirely belly.`);
+				} else {
+					r.push(`It is easily as large as ${his} torso, making ${him} at least half belly.`);
+				}
+				if (slave.bellyImplant >= 16000) {
+					if (V.pregAccessibility === 1) {
+						r.push(`Fortunately for ${him}, the penthouse is adapted for daily life with a belly`);
+					} else {
+						if (V.saleDescription === 1) {
+							r.push(`${He}'ll have`);
+						} else {
+							r.push(`${He} has`);
+						}
+						r.push(`trouble living in your penthouse, which is not designed for ${girl}s with bellies`);
+					}
+					r.push(`wider than a standard doorway.`);
+				}
+			}
+		}
+	} else {
+		if (slave.navelPiercing > 0) {
+			if (slave.bellyImplant >= 4000) {
+				if (slave.navelPiercing === 1) {
+					r.push(`${His} popped navel bears a simple stud.`);
+				} else if (slave.navelPiercing === 2) {
+					r.push(`${His} popped navel is pierced with a big ring.`);
+				}
+				r.push(`It's eye-catching, since most of ${his} piercings are hidden by the suit.`);
+			}
+		} else {
+			r.push(`${His} navel piercing runs through the suit's material.`);
+		}
+		if (slave.physicalAge >= 13) {
+			if (slave.bellyImplant >= 31000) {
+				r.push(`The difficulties of carrying such an enormous implant are greatly reduced for a Fuckdoll, since it's almost always restrained, stationary, or both.`);
+			}
+		} else if (slave.physicalAge >= 4) {
+			if (slave.bellyImplant >= 14000) {
+				r.push(`The difficulties of carrying such an enormous implant are greatly reduced for a Fuckdoll, since it's almost always restrained, stationary, or both.`);
+			}
+		} else if (slave.physicalAge < 4) {
+			if (slave.bellyImplant >= 10000) {
+				r.push(`The difficulties of carrying such an enormous implant are greatly reduced for a Fuckdoll, since it's almost always restrained, stationary, or both.`);
+			}
+		}
+	}
+
+
+	return r.join(" ");
+};
diff --git a/src/npc/descriptions/belly/bellyInflation.js b/src/npc/descriptions/belly/bellyInflation.js
new file mode 100644
index 0000000000000000000000000000000000000000..ebbb822e229e9d97a8f89124bf28a7da6b9d54a9
--- /dev/null
+++ b/src/npc/descriptions/belly/bellyInflation.js
@@ -0,0 +1,1410 @@
+App.Desc.bellyInflation = function(slave) {
+	const r = [];
+	const {
+		he, him, his, hers, himself, boy, He, His
+	} = getPronouns(slave);
+	if (slave.inflation === 3) {
+		r.push(`${His} middle is enormously distended with ${slave.inflationType},`);
+		if (slave.physicalAge <= 3) {
+			r.push(`and ${his} toddlerish body is absolutely filled by ${his} bloated innards. ${He} can barely move ${him}self and resembles an over inflated blow-up doll.`);
+		} else if (slave.physicalAge <= 12) {
+			r.push(`and ${his} massive, drum-taut belly dominates ${his} poor little frame.`);
+		} else if (slave.height >= 185) {
+			r.push(`but ${his} tall frame bears ${his} massive, drum-taut belly well.`);
+		} else if (slave.height < 150) {
+			r.push(`and ${his} massive, drum-taut belly dominates ${his} poor little frame.`);
+		} else if (slave.muscles > 30) {
+			r.push(`and ${his} fit body bears ${his} massive, drum-taut belly well.`);
+		} else {
+			r.push(`and ${his} massive, drum-taut belly dominates ${his} frame.`);
+		}
+	} else if (slave.inflation === 2) {
+		r.push(`${He} is greatly distended with ${slave.inflationType},`);
+		if (slave.physicalAge <= 3) {
+			r.push(`and ${his} swollen belly is nearly as big as ${his} toddlerish body.`);
+		} else if (slave.physicalAge <= 12) {
+			r.push(`and ${his} swollen belly dominates ${his} poor little frame.`);
+		} else if (slave.height >= 185) {
+			r.push(`but ${his} tall frame bears ${his} swollen belly well.`);
+		} else if (slave.height < 150) {
+			r.push(`and ${his} swollen belly dominates ${his} poor little frame.`);
+		} else if (slave.muscles > 30) {
+			r.push(`and ${his} fit body bears ${his} swollen belly well.`);
+		} else {
+			r.push(`and ${his} swollen belly dominates ${his} frame.`);
+		}
+	} else if (slave.inflation === 1) {
+		r.push(`${He} is visibly swollen with ${slave.inflationType},`);
+		if (slave.physicalAge <= 3) {
+			r.push(`and ${his} sloshing belly looks obscene on ${his} toddlerish body.`);
+		} else if (slave.physicalAge <= 10) {
+			r.push(`and ${his} sloshing belly looks huge on ${his} tiny frame.`);
+		} else if (slave.weight > 10) {
+			r.push(`but ${he}'s sufficiently overweight that it's not obvious.`);
+		} else if (slave.height < 150) {
+			r.push(`and ${his} sloshing belly looks huge on ${his} tiny frame.`);
+		} else if (slave.weight <= -10) {
+			r.push(`${his} thin form making ${his} sloshing belly very obvious.`);
+		} else {
+			r.push(`giving ${his} stomach a distinct curvature.`);
+		}
+	}
+
+	if (V.showClothing === 1 && V.saleDescription === 0) {
+		if (V.surgeryDescription === 0) {
+			if (slave.inflation === 3) {
+				if (slave.bellyAccessory === "an extreme corset") {
+					r.push(`${slave.slaveName}'s hugely swollen belly is tightly compressed by ${his} corset causing it to bulge above and below; one or the other will eventually win out.`);
+				} else if ((slave.bellyAccessory === "a corset")) {
+					r.push(`${slave.slaveName}'s hugely swollen belly comfortably bulges out of ${his} corset.`);
+				}
+				switch (slave.clothes) {
+					case "conservative clothing":
+						if (slave.boobs > 20000) {
+							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} hugely swollen belly, though they do a fine job of hiding it themselves.`);
+						} else if ((slave.boobs > 10000)) {
+							r.push(`${slave.slaveName}'s hugely swollen belly is hidden by ${his} massive tits and oversized sweater.`);
+						} else if ((slave.boobs > 8000)) {
+							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} hugely swollen belly.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} hugely swollen belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in the material.`);
+						} else {
+							r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} hugely swollen belly, the bottom of which can be seen peeking out from underneath. ${His} popped navel forms a small tent in ${his} shirt.`);
+						}
+						break;
+					case "attractive lingerie for a pregnant woman":
+						r.push(`${slave.slaveName}'s hugely swollen belly completely hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy belly.`);
+						break;
+					case "a maternity dress":
+						r.push(`${slave.slaveName}'s hugely swollen belly fills out ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} rounded stomach.`);
+						break;
+					case "stretch pants and a crop-top":
+						r.push(`${slave.slaveName}'s hugely swollen belly takes full advantage of ${his} exposed midriff to bulge freely and obscure ${his} stretch pants.`);
+						break;
+					case "chains":
+						r.push(`${slave.slaveName}'s hugely swollen belly is tightly wrapped with chains, causing it to bulge angrily.`);
+						break;
+					case "Western clothing":
+						r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} hugely swollen belly so ${he} has left the bottom buttons open, leaving ${his} belly hanging out.`);
+						break;
+					case "body oil":
+						r.push(`${slave.slaveName}'s hugely swollen is covered in a sheen of oil.`);
+						break;
+					case "a toga":
+						r.push(`${slave.slaveName}'s hugely swollen belly parts ${his} toga.`);
+						break;
+					case "a huipil":
+						r.push(`${slave.slaveName}'s hugely swollen belly lifts ${his} huipil.`);
+						break;
+					case "a slutty qipao":
+						r.push(`${His} qipao is slit up the side. However, it merely rests atop ${his} hugely swollen belly.`);
+						break;
+					case "uncomfortable straps":
+						r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} hugely swollen belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`);
+						break;
+					case "shibari ropes":
+						r.push(`${slave.slaveName}'s hugely swollen belly is tightly bound with ropes; flesh bulges angrily from between them.`);
+						break;
+					case "a latex catsuit":
+					case "restrictive latex":
+						r.push(`${slave.slaveName}'s hugely swollen belly greatly distends ${his} latex suit. ${He} looks like an over inflated balloon ready to pop. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`);
+						break;
+					case "a military uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt strains to contain ${his} hugely swollen belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s hugely swollen belly greatly stretches ${his} uniform's jacket.`);
+						}
+						break;
+					case "a schutzstaffel uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt strains to contain ${his} hugely swollen belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s hugely swollen belly greatly stretches ${his} uniform's jacket.`);
+						}
+						break;
+					case "a slutty schutzstaffel uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt strains to contain ${his} hugely swollen belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s hugely swollen belly greatly stretches ${his} uniform's jacket.`);
+						}
+						break;
+					case "a red army uniform uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt strains to contain ${his} hugely swollen belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s hugely swollen belly greatly stretches ${his} uniform's jacket.`);
+						}
+						break;
+					case "a nice nurse outfit":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} hugely swollen belly hangs out from under them, obscuring ${his} trousers.`);
+						} else {
+							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} hugely swollen belly hangs out from under ${his} top, obscuring ${his} trousers.`);
+						}
+						break;
+					case "a mini dress":
+						r.push(`${slave.slaveName}'s mini dress barely clings to ${his} hugely swollen belly.`);
+						break;
+					case "a long qipao":
+						r.push(`${slave.slaveName}'sdress barely clings to ${his} hugely swollen belly.`);
+						break;
+					case "battlearmor":
+						r.push(`${slave.slaveName}'s armor barely clings to ${his} hugely swollen belly.`);
+						break;
+					case "a mounty outfit":
+						r.push(`${slave.slaveName}'s tunic barely clings to ${his} hugely swollen belly.`);
+						break;
+					case "a dirndl":
+						r.push(`${slave.slaveName}'s dress barely clings to ${his} hugely swollen belly.`);
+						break;
+					case "lederhosen":
+						r.push(`${slave.slaveName}'s tunic barely clings to ${his} hugely swollen belly.`);
+						break;
+					case "a biyelgee costume":
+						r.push(`${slave.slaveName}'s dress barely clings to ${his} hugely swollen belly.`);
+						break;
+					case "attractive lingerie":
+						r.push(`${slave.slaveName}'s hugely swollen belly completely hides ${his} lacy g-string.`);
+						break;
+					case "kitty lingerie":
+						r.push(`${slave.slaveName}'s hugely swollen belly completely hides ${his} silk panties.`);
+						break;
+					case "a succubus outfit":
+						r.push(`${slave.slaveName}'s hugely swollen belly sticks out of ${his} corset, which is laced above and below it as best ${he} can manage.`);
+						break;
+					case "a slutty maid outfit":
+						r.push(`${slave.slaveName}'s maid dress fails to cover ${his} hugely swollen belly, but the outfit includes a thin white blouse that conceals only the upper part of ${his} stomach.`);
+						break;
+					case "a nice maid outfit":
+						r.push(`${slave.slaveName}'s maid dress is almost conservative. It covers ${his} hugely swollen belly completely, though it cannot hide ${his} popped navel, poking through the front.`);
+						break;
+					case "a fallen nuns habit":
+						r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} hugely swollen belly.`);
+						break;
+					case "a penitent nuns habit":
+						r.push(`${He} looks absolutely blasphemous in a habit with such a hugely swollen belly. The coarse cloth aggravates ${his} sensitive stretched skin.`);
+						break;
+					case "a string bikini":
+						r.push(`${slave.slaveName}'s hugely swollen belly parts ${his} string bikini to either side.`);
+						break;
+					case "a scalemail bikini":
+						r.push(`${slave.slaveName}'s hugely swollen belly juts out underneath ${his} scalemail bikini.`);
+						break;
+					case "striped panties":
+						r.push(`${slave.slaveName}'s hugely swollen belly juts out above ${his} panties.`);
+						break;
+					case "clubslut netting":
+						r.push(`${slave.slaveName}'s clubslut netting is stretched to the breaking point by ${his} hugely swollen belly.`);
+						break;
+					case "a cheerleader outfit":
+						r.push(`${slave.slaveName}'s cheerleader top rides up ${his} hugely swollen belly, covering only the top of it while leaving the rest on display to bring wonder to how many loads ${he} took last night.`);
+						break;
+					case "cutoffs and a t-shirt":
+						if (slave.boobs > 4000) {
+							r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} huge tits.`);
+							break;
+						} else if ((slave.boobs > 2000)) {
+							r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} hugely swollen belly.`);
+							break;
+						} else {
+							r.push(`${slave.slaveName}'s t-shirt fails to cover ${his} hugely swollen belly at all.`);
+							break;
+						}
+					case "a slutty outfit":
+						r.push(`${slave.slaveName}'s hugely swollen belly really shows what a slut ${he} is.`);
+						break;
+					case "a slave gown":
+						r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual motherly look as it carefully caresses ${his} hugely swollen belly.`);
+						break;
+					case "slutty business attire":
+						r.push(`${slave.slaveName}'s hugely swollen stomach hangs out the front of ${his} suit jacket and blouse, as there is no way ${he} could close them.`);
+						break;
+					case "nice business attire":
+						r.push(`${slave.slaveName}'s hugely swollen belly strains ${his} specially tailored blouse and jacket.`);
+						break;
+					case "harem gauze":
+						r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} hugely swollen stomach.`);
+						break;
+					case "a comfortable bodysuit":
+						r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} hugely swollen belly, displaying ${his} popped navel and every jiggle of ${his} bloated stomach.`);
+						break;
+					case "a slutty nurse outfit":
+						r.push(`${slave.slaveName}'s jacket fails to even come close to closing over ${his} hugely swollen belly, leaving ${him} with only the button below ${his} breasts done.`);
+						break;
+					case "a schoolgirl outfit":
+						r.push(`${slave.slaveName}'s blouse rides up ${his} hugely swollen belly, leaving ${him} looking particularly slutty.`);
+						break;
+					case "a kimono":
+						r.push(`${slave.slaveName}'s hugely swollen belly parts the front of ${his} kimono, leaving it gracefully covering its sides.`);
+						break;
+					case "a hijab and abaya":
+					case "a niqab and abaya":
+						r.push(`${slave.slaveName}'s abaya is filled by ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a klan robe":
+						r.push(`${slave.slaveName}'s robe is noticeably rounded out by ${his} hugely swollen belly.`);
+						break;
+					case "a burqa":
+						r.push(`${slave.slaveName}'s burqa is noticeably rounded out by ${his} hugely swollen belly.`);
+						break;
+					case "a nice pony outfit":
+					case "a slutty pony outfit":
+						r.push(`${slave.slaveName}'s pony outfit is noticeably rounded out by ${his} hugely swollen belly.`);
+						break;
+					case "a tube top and thong":
+					case "a bra":
+					case "a thong":
+					case "a tube top":
+					case "a striped bra":
+					case "striped underwear":
+					case "a skimpy loincloth":
+					case "a slutty klan robe":
+					case "a sports bra":
+					case "boyshorts":
+					case "cutoffs":
+					case "leather pants and pasties":
+					case "leather pants":
+					case "panties":
+					case "panties and pasties":
+					case "pasties":
+					case "sport shorts and a sports bra":
+					case "jeans":
+					case "leather pants and a tube top":
+					case "sport shorts":
+						r.push(`${slave.slaveName}'s outfit completely bares ${his} hugely swollen belly.`);
+						break;
+					case "a one-piece swimsuit":
+						r.push(`${slave.slaveName}'s swimsuit is noticeably rounded out by ${his} hugely swollen belly.`);
+						break;
+					case "a sweater":
+					case "a sweater and cutoffs":
+					case "a sweater and panties":
+						r.push(`${slave.slaveName}'s sweater is noticeably rounded out by ${his} hugely swollen belly.`);
+						break;
+					case "a police uniform":
+						r.push(`${slave.slaveName}'s uniform is noticeably rounded out by ${his} hugely swollen belly.`);
+						break;
+					case "a hanbok":
+						r.push(`${slave.slaveName}'s hanbok is noticeably rounded out by ${his} hugely swollen belly.`);
+						break;
+					case "a gothic lolita dress":
+						r.push(`${slave.slaveName}'s dress is noticeably rounded out by ${his} hugely swollen belly.`);
+						break;
+					case "a tank-top":
+					case "a tank-top and panties":
+						r.push(`${slave.slaveName}'s tank-top is noticeably rounded out by ${his} hugely swollen belly.`);
+						break;
+					case "a button-up shirt and panties":
+					case "a button-up shirt":
+					case "a t-shirt":
+					case "a t-shirt and thong":
+					case "an oversized t-shirt and boyshorts":
+					case "an oversized t-shirt":
+					case "sport shorts and a t-shirt":
+					case "a t-shirt and jeans":
+					case "a t-shirt and panties":
+						r.push(`${slave.slaveName}'s shirt is noticeably rounded out by ${his} hugely swollen belly.`);
+						break;
+					case "a Santa dress":
+						r.push(`${slave.slaveName}'s belt is struggling to fully encircle ${his} hugely ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a burkini":
+						r.push(`The fabric of ${slave.slaveName}'s burkini is slightly pushed up thanks to ${his} hugely ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a hijab and blouse":
+						r.push(`${slave.slaveName} has trouble pulling ${his} skirt up to fit around ${his} hugely swollen belly.`);
+						break;
+					case "battledress":
+						r.push(`${slave.slaveName}'s tank top barely even covers the top of ${his} hugely swollen belly, leaving ${him} looking like someone who had too much fun on shore leave.`);
+						break;
+					case "a halter top dress":
+						r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} hugely swollen belly. ${His} popped navel prominently pokes through its front.`);
+						break;
+					case "a ball gown":
+						r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} hugely swollen belly, but draw attention to it.`);
+						break;
+					case "slutty jewelry":
+						r.push(`${slave.slaveName}'s bangles include a long thin chain that rests above ${his} popped navel.`);
+						break;
+					case "a leotard":
+						r.push(`${slave.slaveName}'s tight leotard shows off every slosh and jiggle within ${his} hugely swollen belly. The material tightly clings to ${his} popped navel.`);
+						break;
+					case "a monokini":
+						r.push(`${slave.slaveName}'s monokini covers far less than half of ${his} hugely swollen belly.`);
+						break;
+					case "overalls":
+						if (slave.boobs > (slave.belly + 250)) {
+							r.push(`${slave.slaveName}'s massive breasts push out ${his} overalls so far that ${his} hugely swollen belly is left almost entirely uncovered.`);
+						} else {
+							r.push(`${slave.slaveName}'s hugely swollen belly stretches out the fabric of ${his} overalls.`);
+						}
+						break;
+					case "an apron":
+						r.push(`${slave.slaveName}'s apron is pushed away from ${his} body by ${his} hugely ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a cybersuit":
+						r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} hugely swollen belly, displaying ${his} popped navel and every jiggle of ${his} bloated stomach.`);
+						break;
+					case "a chattel habit":
+						r.push(`The strip of cloth running down ${his} front is parted to one side by ${his} hugely swollen belly.`);
+						break;
+					case "a bunny outfit":
+						r.push(`${slave.slaveName}'s teddy is stretched to tearing by ${his} hugely swollen belly. ${His} popped navel prominently pokes through the material.`);
+						break;
+					case "spats and a tank top":
+						if (slave.boobs > 4000) {
+							r.push(`${slave.slaveName}'s hugely swollen belly is obscured by ${his} huge tits.`);
+						} else if ((slave.boobs > 1200)) {
+							r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} hugely swollen belly by ${his} breasts.`);
+						} else {
+							r.push(`${slave.slaveName}'s top cannot even attempt to cover ${his} hugely swollen belly.`);
+						}
+						break;
+					case "a bimbo outfit":
+						r.push(`${slave.slaveName}'s hugely swollen belly forces ${his} miniskirt out of the way as it hangs ponderously from ${his} midriff.`);
+						break;
+					case "a courtesan dress":
+						r.push(`${slave.slaveName}'s hugely swollen belly strains under the ribs of ${his} corset`);
+						break;
+					default:
+				}
+			} else if (slave.inflation === 2) {
+				if (slave.bellyAccessory === "an extreme corset") {
+					r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is tightly compressed by ${his} corset causing it to bulge out above and below; one or the other will eventually win out.`);
+				} else if ((slave.bellyAccessory === "a corset")) {
+					r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly comfortably hangs out of ${his} corset.`);
+				}
+				switch (slave.clothes) {
+					case "conservative clothing":
+						if (slave.boobs > 20000) {
+							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} jiggling ${slave.inflationType}-filled belly, though they do a fine job of hiding it themselves.`);
+						} else if ((slave.boobs > 10000)) {
+							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is hidden by ${his} massive tits and oversized sweater.`);
+						} else if ((slave.boobs > 8000)) {
+							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} jiggling ${slave.inflationType}-filled belly.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s sweater is pulled taut by ${his} jiggling ${slave.inflationType}-filled belly. ${His} popped navel forms a small tent in material.`);
+						} else {
+							r.push(`${slave.slaveName}'s blouse is pulled taut by ${his} jiggling ${slave.inflationType}-filled belly. ${His} popped navel forms a small tent in ${his} shirt.`);
+						}
+						break;
+					case "attractive lingerie for a pregnant woman":
+						r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly hides ${his} silken panties. ${His} silken vest sensually frames ${his} heavy belly.`);
+						break;
+					case "a maternity dress":
+						r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly fills out ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} swollen middle.`);
+						break;
+					case "stretch pants and a crop-top":
+						r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly takes full advantage of ${his} exposed midriff to bulge freely and slightly obscure ${his} stretch pants.`);
+						break;
+					case "chains":
+						r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is tightly wrapped with chains, causing it to bulge angrily.`);
+						break;
+					case "Western clothing":
+						r.push(`${slave.slaveName}'s flannel shirt can't close over ${his} jiggling ${slave.inflationType}-filled belly, so ${he} has left the bottom buttons open leaving ${his} belly hanging out.`);
+						break;
+					case "body oil":
+						r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is covered in a sheen of oil.`);
+						break;
+					case "a toga":
+						r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly parts ${his} toga.`);
+						break;
+					case "a huipil":
+						r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly lifts ${his} huipil.`);
+						break;
+					case "a slutty qipao":
+						r.push(`${His} qipao is slit up the side. However, it only covers the top of ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "uncomfortable straps":
+						r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} jiggling ${slave.inflationType}-filled belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling ${his} popped navel.`);
+						break;
+					case "shibari ropes":
+						r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is tightly bound with rope; flesh bulges angrily from between them.`);
+						break;
+					case "a latex catsuit":
+					case "restrictive latex":
+						r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly greatly distends ${his} latex suit. ${He} looks like an over inflated balloon. Only ${his} popped navel sticking out the front of ${his} belly disrupts the smoothness.`);
+						break;
+					case "a military uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt strains to contain ${his} jiggling ${slave.inflationType}-filled belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly notably distends ${his} uniform's jacket.`);
+						}
+						break;
+					case "a schutzstaffel uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt strains to contain ${his} jiggling ${slave.inflationType}-filled belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly notably distends ${his} uniform's jacket.`);
+						}
+						break;
+					case "a slutty schutzstaffel uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt strains to contain ${his} jiggling ${slave.inflationType}-filled belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly notably distends ${his} uniform's jacket.`);
+						}
+						break;
+					case "a red army uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt strains to contain ${his} jiggling ${slave.inflationType}-filled belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly notably distends ${his} uniform's jacket.`);
+						}
+						break;
+					case "a nice nurse outfit":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} jiggling ${slave.inflationType}-filled belly hangs out from under them, obscuring ${his} trousers.`);
+						} else {
+							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} jiggling ${slave.inflationType}-filled hangs out from under ${his} top, slightly obscuring ${his} trousers.`);
+						}
+						break;
+					case "a mini dress":
+						r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "a long qipao":
+						r.push(`${slave.slaveName}'s dress tightly clings to ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "battlearmor":
+						r.push(`${slave.slaveName}'s armor tightly clings to ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "a mounty outfit":
+						r.push(`${slave.slaveName}'s tunic tightly clings to ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "a dirndl":
+						r.push(`${slave.slaveName}'s dress tightly clings to ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "lederhosen":
+						r.push(`${slave.slaveName}'s tunic tightly clings to ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "a biyelgee costume":
+						r.push(`${slave.slaveName}'s dress tightly clings to ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "attractive lingerie":
+						r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly hides ${his} lacy g-string.`);
+						break;
+					case "kitty lingerie":
+						r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly hides ${his} silk panties.`);
+						break;
+					case "a succubus outfit":
+						r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly sticks out of ${his} corset, which is laced above and below it.`);
+						break;
+					case "a slutty maid outfit":
+						r.push(`${slave.slaveName}'s maid dress fails to cover ${his} jiggling ${slave.inflationType}-filled belly, but the outfit includes a thin white blouse that conceals only the top half of ${his} stomach.`);
+						break;
+					case "a nice maid outfit":
+						r.push(`${slave.slaveName}'s maid dress is almost conservative, it covers ${his} jiggling ${slave.inflationType}-filled belly completely. Though it cannot hide ${his} popped navel poking through the front.`);
+						break;
+					case "a fallen nuns habit":
+						r.push(`${slave.slaveName}'s latex habit's corset is left hanging open fully revealing ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "a penitent nuns habit":
+						r.push(`${He} looks absolutely blasphemous in a habit with a jiggling ${slave.inflationType}-filled belly. The coarse cloth aggravates ${his} sensitive stretched skin.`);
+						break;
+					case "a string bikini":
+						r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly parts ${his} string bikini to either side.`);
+						break;
+					case "a scalemail bikini":
+						r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly hangs underneath ${his} scalemail bikini.`);
+						break;
+					case "striped panties":
+						r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly hangs above ${his} cute panties.`);
+						break;
+					case "clubslut netting":
+						r.push(`${slave.slaveName}'s clubslut netting is stretched out by ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "a cheerleader outfit":
+						r.push(`${slave.slaveName}'s cheerleader top covers most of ${his} jiggling ${slave.inflationType}-filled belly, the bottom of which peeks out showing how slutty this cheerleader is.`);
+						break;
+					case "cutoffs and a t-shirt":
+						if (slave.boobs > 4000) {
+							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} huge tits.`);
+						} else if ((slave.boobs > 2000)) {
+							r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} jiggling ${slave.inflationType}-filled belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s t-shirt covers only the top of ${his} jiggling ${slave.inflationType}-filled belly.`);
+						}
+						break;
+					case "a slutty outfit":
+						r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly really shows how big of a slut ${he} is.`);
+						break;
+					case "a slave gown":
+						r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual motherly look as it carefully caresses ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "slutty business attire":
+						r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled stomach strains the buttons of ${his} suit jacket and blouse.`);
+						break;
+					case "nice business attire":
+						r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly looks good in ${his} specially tailored blouse and jacket.`);
+						break;
+					case "harem gauze":
+						r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} jiggling ${slave.inflationType}-filled.`);
+						break;
+					case "a comfortable bodysuit":
+						r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} jiggling ${slave.inflationType}-filled belly, displaying ${his} popped navel and every motion ${his} contents make.`);
+						break;
+					case "a slutty nurse outfit":
+						r.push(`${slave.slaveName}'s jacket barely closes over ${his} jiggling ${slave.inflationType}-filled belly leaving its buttons threatening to pop.`);
+						break;
+					case "a schoolgirl outfit":
+						r.push(`${slave.slaveName}'s blouse rides up ${his} jiggling ${slave.inflationType}-filled belly, leaving ${him} looking particularly slutty.`);
+						break;
+					case "a kimono":
+						r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is demurely covered by ${his} kimono.`);
+						break;
+					case "a hijab and abaya":
+					case "a niqab and abaya":
+						r.push(`${slave.slaveName}'s abaya is filled out by ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "a klan robe":
+						r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s robe, thanks to ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "a burqa":
+						r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s burqa, thanks to ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "a nice pony outfit":
+					case "a slutty pony outfit":
+						r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s pony outfit, thanks to ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "a tube top and thong":
+					case "a bra":
+					case "a thong":
+					case "a tube top":
+					case "a striped bra":
+					case "striped underwear":
+					case "a skimpy loincloth":
+					case "a slutty klan robe":
+					case "a sports bra":
+					case "boyshorts":
+					case "cutoffs":
+					case "leather pants and pasties":
+					case "leather pants":
+					case "panties":
+					case "panties and pasties":
+					case "pasties":
+					case "sport shorts and a sports bra":
+					case "jeans":
+					case "leather pants and a tube top":
+					case "sport shorts":
+						r.push(`${slave.slaveName}'s outfit completely bares ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "a one-piece swimsuit":
+						r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s swimsuit, thanks to ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "a sweater":
+					case "a sweater and cutoffs":
+					case "a sweater and panties":
+						r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s sweater, thanks to ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "a police uniform":
+						r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s uniform, thanks to ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "a hanbok":
+						r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s hanbok, thanks to ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "a gothic lolita dress":
+						r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s dress, thanks to ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "a tank-top":
+					case "a tank-top and panties":
+						r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s tank-top, thanks to ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "a button-up shirt and panties":
+					case "a button-up shirt":
+					case "a t-shirt":
+					case "a t-shirt and thong":
+					case "an oversized t-shirt and boyshorts":
+					case "an oversized t-shirt":
+					case "sport shorts and a t-shirt":
+					case "a t-shirt and jeans":
+					case "a t-shirt and panties":
+						r.push(`There is a slight roundness to the middle of ${slave.slaveName}'s shirt, thanks to ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "a Santa dress":
+						r.push(`The belt on ${slave.slaveName}'s dress has been loosened to accommodate the significant bulge of ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "a burkini":
+						r.push(`${slave.slaveName}'s burkini bulges significantly from ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "a hijab and blouse":
+						r.push(`${slave.slaveName}'s skirt is slightly pushed down by ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "battledress":
+						r.push(`${slave.slaveName}'s tank top rides up ${his} jiggling ${slave.inflationType}-filled belly leaving ${him} looking like someone who had too much fun on shore leave.`);
+						break;
+					case "a halter top dress":
+						r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} jiggling ${slave.inflationType}-filled belly. ${His} popped navel prominently pokes through the front of ${his} dress.`);
+						break;
+					case "a ball gown":
+						r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} jiggling ${slave.inflationType}-filled belly but draw attention to it.`);
+						break;
+					case "slutty jewelry":
+						r.push(`${slave.slaveName}'s bangles include a long thin chain that rests above ${his} popped navel.`);
+						break;
+					case "a leotard":
+						r.push(`${slave.slaveName}'s tight leotard shows off every movement within ${his} jiggling ${slave.inflationType}-filled belly. The material tightly clings to ${his} popped navel.`);
+						break;
+					case "a monokini":
+						r.push(`${slave.slaveName}'s monokini overs only half of ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "overalls":
+						if (slave.boobs > (slave.belly + 250)) {
+							r.push(`${slave.slaveName}'s huge breasts push out ${his} overalls so far that ${his} jiggling ${slave.inflationType}-filled belly is left uncovered.`);
+						} else {
+							r.push(`${slave.slaveName}'s overalls are significantly curved by ${his} jiggling ${slave.inflationType}-filled belly.`);
+						}
+						break;
+					case "an apron":
+						r.push(`${slave.slaveName}'s apron is filled out by ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "a cybersuit":
+						r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} jiggling ${slave.inflationType}-filled belly, displaying ${his} popped navel and every motion ${his} contents make.`);
+						break;
+					case "a chattel habit":
+						r.push(`The strip of cloth running down ${his} front is parted to one side by ${his} jiggling ${slave.inflationType}-filled belly.`);
+						break;
+					case "a bunny outfit":
+						r.push(`${slave.slaveName}'s teddy is stretched out by ${his} jiggling ${slave.inflationType}-filled belly. ${His} popped navel prominently pokes through the material.`);
+						break;
+					case "spats and a tank top":
+						if (slave.boobs > 4000) {
+							r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is obscured by ${his} huge tits.`);
+						} else if ((slave.boobs > 1200)) {
+							r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} jiggling ${slave.inflationType}-filled belly by ${his} breasts.`);
+						} else {
+							r.push(`${slave.slaveName}'s top only slightly covers ${his} jiggling ${slave.inflationType}-filled belly.`);
+						}
+						break;
+					case "a bimbo outfit":
+						r.push(`${slave.slaveName}'s miniskirt digs into ${his} jiggling ${slave.inflationType}-filled belly as the top half spills over its egde.`);
+						break;
+					case "a courtesan dress":
+						r.push(`${slave.slaveName}'s jiggling ${slave.inflationType}-filled belly is tightly gripped by the ribs of ${his} corset, forcing it to bulge angrily between the gaps.`);
+						break;
+					default:
+				}
+			} else if (slave.weight > 95) {
+				if (slave.bellyAccessory === "an extreme corset") {
+					r.push(`${slave.slaveName}'s huge gut is tightly compressed by ${his} corset, ${his} fat billows out of any gap it can find.`);
+				} else if ((slave.bellyAccessory === "a corset")) {
+					r.push(`${slave.slaveName}'s huge gut hangs out the hole in ${his} corset designed to accommodate a pregnant belly.`);
+				} else if ((slave.bellyAccessory === "a small empathy belly")) {
+					r.push(`${slave.slaveName}'s small empathy belly is barely noticeable over ${his} huge gut.`);
+				}
+				switch (slave.clothes) {
+					case "conservative clothing":
+						if (slave.boobs > 20000) {
+							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} fat belly, though they do a fine job of hiding it themselves.`);
+						} else if ((slave.boobs > 10000)) {
+							r.push(`${slave.slaveName}'s fat belly is hidden by ${his} massive tits and oversized sweater.`);
+						} else if ((slave.boobs > 8000)) {
+							r.push(`${slave.slaveName}'s oversized breasts ${his} fat belly hang free.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s sweater is pulled tight over ${his} fat belly. The bottom of which peeks out from under it.`);
+						} else {
+							r.push(`${slave.slaveName}'s blouse is pulled tight over ${his} fat belly. The bottom of which peeks out from under it.`);
+						}
+						break;
+					case "attractive lingerie for a pregnant woman":
+						r.push(`${slave.slaveName}'s fat belly is large enough to hide ${his} panties. ${His} silken vest sensually frames ${his} heavy, jiggly gut.`);
+						break;
+					case "a maternity dress":
+						r.push(`${slave.slaveName}'s fat belly fills out ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to a growing pregnancy, though it works on big, jiggly guts all the same.`);
+						break;
+					case "stretch pants and a crop-top":
+						r.push(`${slave.slaveName}'s fat belly takes full advantage of ${his} exposed midriff to hang freely and obscure ${his} stretch pants.`);
+						break;
+					case "chains":
+						r.push(`${slave.slaveName}'s chains sink deep into ${his} fat belly, several even disappearing beneath ${his} folds.`);
+						break;
+					case "Western clothing":
+						r.push(`${slave.slaveName}'s flannel shirt strains to stay shut over ${his} fat belly, fat bulges between ${his} buttons and quite a bit of ${his} lower belly hangs out beneath ${his} shirt.`);
+						break;
+					case "body oil":
+						r.push(`${slave.slaveName}'s fat belly is covered in a sheen of oil.`);
+						break;
+					case "a toga":
+						r.push(`${slave.slaveName}'s toga can barely be pulled shut over ${his} fat belly.`);
+						break;
+					case "a long qipao":
+						r.push(`${slave.slaveName}'s dress can barely be pulled shut over ${his} fat belly.`);
+						break;
+					case "a mounty outfit":
+						r.push(`${slave.slaveName}'s tunic is pulled tight over ${his} fat belly. The bottom of which peeks out from under it.`);
+						break;
+					case "battlearmor":
+						r.push(`${slave.slaveName}'s armor can barely contain ${his} fat belly.`);
+						break;
+					case "lederhosen":
+						r.push(`${slave.slaveName}'s tunic can barely be pulled shut over ${his} fat belly.`);
+						break;
+					case "a biyelgee costume":
+						r.push(`${slave.slaveName}'s fat belly fills out ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to a growing pregnancy, though it works on big, jiggly guts all the same.`);
+						break;
+					case "a dirndl":
+						r.push(`${slave.slaveName}'s fat belly fills out ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to a growing pregnancy, though it works on big, jiggly guts all the same.`);
+						break;
+					case "a huipil":
+						r.push(`${slave.slaveName}'s huipil gets lifted by ${his} fat belly, so it's useless for covering ${his} body.`);
+						break;
+					case "a slutty qipao":
+						r.push(`${His} qipao is slit up the side. However, it only covers the top of ${his} fat belly, allowing it to hang free.`);
+						break;
+					case "uncomfortable straps":
+						r.push(`${slave.slaveName}'s slave outfit's straps sink deep into ${his} fat belly, several even disappearing beneath ${his} folds. The straps connect to a steel ring that parts the fold concealing ${his} navel, allowing it to be seen once again.`);
+						break;
+					case "shibari ropes":
+						r.push(`${slave.slaveName}'s binding ropes sink deep into ${his} fat belly, several even disappearing beneath ${his} folds.`);
+						break;
+					case "a latex catsuit":
+					case "restrictive latex":
+						r.push(`${slave.slaveName}'s fat belly is compressed by ${his} latex suit, leaving it looking round and smooth.`);
+						break;
+					case "a military uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`);
+						} else {
+							r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`);
+						}
+						break;
+					case "a schutzstaffel uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`);
+						} else {
+							r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`);
+						}
+						break;
+					case "a slutty schutzstaffel uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`);
+						} else {
+							r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`);
+						}
+						break;
+					case "a red army uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s shirt struggles to cover ${his} fat belly. The bottom of which peeks out from under it.`);
+						} else {
+							r.push(`${slave.slaveName}'s fat belly is covered by ${his} uniform's jacket. The bottom of which just barely peeks out from under it.`);
+						}
+						break;
+					case "a nice nurse outfit":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s fat belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} fat belly freely hangs out from under them, obscuring ${his} trousers.`);
+						} else {
+							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, though ${his} fat belly freely hangs from under ${his} top, obscuring ${his} trousers.`);
+						}
+						break;
+					case "a mini dress":
+						r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`);
+						break;
+					case "attractive lingerie":
+						r.push(`${slave.slaveName}'s fat belly hides ${his} lacy g-string.`);
+						break;
+					case "kitty lingerie":
+						r.push(`${slave.slaveName}'s fat belly hides ${his} silk panties.`);
+						break;
+					case "a succubus outfit":
+						r.push(`${slave.slaveName}'s fat belly sticks out of ${his} corset, which is laced above and below it allowing it to hang free.`);
+						break;
+					case "a slutty maid outfit":
+						r.push(`${slave.slaveName}'s maid dress fails to cover ${his} fat belly, but the outfit includes a thin white blouse that, when stretched, only manages to wrangle the top of ${his} gut.`);
+						break;
+					case "a nice maid outfit":
+						r.push(`${slave.slaveName}'s maid dress is almost conservative, it covers ${his} fat belly completely, but does nothing to hide how big it is.`);
+						break;
+					case "a fallen nuns habit":
+						r.push(`${slave.slaveName}'s latex habit's corset is barely holding together over ${his} fat belly, causing flab to spill out from every opening.`);
+						break;
+					case "a penitent nuns habit":
+						r.push(`${His} fat belly fills out ${his} habit. The coarse cloth has plenty of extra skin to aggravate.`);
+						break;
+					case "a string bikini":
+						r.push(`${slave.slaveName}'s fat belly parts ${his} string bikini to either side.`);
+						break;
+					case "a scalemail bikini":
+						r.push(`${slave.slaveName}'s fat belly juts out underneath ${his} scalemail bikini.`);
+						break;
+					case "striped panties":
+						r.push(`${slave.slaveName}'s fat belly juts out above ${his} cute panties.`);
+						break;
+					case "clubslut netting":
+						r.push(`${slave.slaveName}'s clubslut netting is stretched out by ${his} fat belly, forcing flab to poke through the mesh.`);
+						break;
+					case "a cheerleader outfit":
+						r.push(`${slave.slaveName}'s cheerleader top covers most of ${his} fat belly. However, the bottom of it peeks out, obscuring ${his} skirt and a letting everyone know how badly this cheerleader needs to diet.`);
+						break;
+					case "cutoffs and a t-shirt":
+						if (slave.boobs > 4000) {
+							r.push(`${slave.slaveName}'s fat belly is obscured by ${his} huge tits.`);
+						} else if ((slave.boobs > 2000)) {
+							r.push(`${slave.slaveName}'s tits keep ${his} t-shirt busy, allowing ${his} fat belly to hang free.`);
+						} else {
+							r.push(`${slave.slaveName}'s t-shirt covers only the top of ${his} fat belly, allowing it to hang mostly free and cover ${his} jeans.`);
+						}
+						break;
+					case "a slutty outfit":
+						r.push(`${slave.slaveName} lets ${his} fat belly hang free, leaving ${him} looking particularly slutty.`);
+						break;
+					case "a slave gown":
+						r.push(`${slave.slaveName}'s slave gown is carefully tailored, accentuating and hugging every curve of ${his} fat belly.`);
+						break;
+					case "slutty business attire":
+						r.push(`${slave.slaveName}'s fat belly strains the buttons of ${his} suit jacket and blouse. The bottom of which just barely peeks out from under them.`);
+						break;
+					case "nice business attire":
+						r.push(`${slave.slaveName}'s tailored blouse and jacket fit ${his} fat belly well, though they do nothing to hide how big ${his} gut is.`);
+						break;
+					case "harem gauze":
+						r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} fat belly.`);
+						break;
+					case "a comfortable bodysuit":
+						r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} fat belly, displaying every fold and roll in it.`);
+						break;
+					case "a slutty nurse outfit":
+						r.push(`${slave.slaveName}'s jacket barely closes over ${his} fat belly forcing plenty of flab out from under its bottom and between the straining buttons.`);
+						break;
+					case "a schoolgirl outfit":
+						r.push(`${slave.slaveName}'s blouse rides up ${his} fat belly, leaving it hanging loose and covering ${his} skirt.`);
+						break;
+					case "a kimono":
+						r.push(`${slave.slaveName}'s fat belly is demurely covered by ${his} kimono.`);
+						break;
+					case "a hijab and abaya":
+					case "a niqab and abaya":
+						r.push(`${slave.slaveName}'s abaya is filled out by ${his} fat belly.`);
+						break;
+					case "a klan robe":
+						r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} robe.`);
+						break;
+					case "a burqa":
+						r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} burqa.`);
+						break;
+					case "a nice pony outfit":
+					case "a slutty pony outfit":
+						r.push(`${slave.slaveName}'s fat belly molds itself against ${his} pony outfit.`);
+						break;
+					case "a tube top and thong":
+					case "a bra":
+					case "a thong":
+					case "a tube top":
+					case "a striped bra":
+					case "striped underwear":
+					case "a skimpy loincloth":
+					case "a slutty klan robe":
+					case "a sports bra":
+					case "boyshorts":
+					case "cutoffs":
+					case "leather pants and pasties":
+					case "leather pants":
+					case "panties":
+					case "panties and pasties":
+					case "pasties":
+					case "sport shorts and a sports bra":
+					case "jeans":
+					case "leather pants and a tube top":
+					case "sport shorts":
+						r.push(`${slave.slaveName}'s outfit completely bares ${his} fat belly.`);
+						break;
+					case "a one-piece swimsuit":
+						r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} swimsuit.`);
+						break;
+					case "a sweater":
+					case "a sweater and cutoffs":
+					case "a sweater and panties":
+						r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} sweater.`);
+						break;
+					case "a police uniform":
+						r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} uniform.`);
+						break;
+					case "a hanbok":
+						r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} hanbok.`);
+						break;
+					case "a gothic lolita dress":
+						r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} dress.`);
+						break;
+					case "a tank-top":
+					case "a tank-top and panties":
+						r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} tank-top.`);
+						break;
+					case "a button-up shirt and panties":
+					case "a button-up shirt":
+					case "a t-shirt":
+					case "a t-shirt and thong":
+					case "an oversized t-shirt and boyshorts":
+					case "an oversized t-shirt":
+					case "sport shorts and a t-shirt":
+					case "a t-shirt and jeans":
+					case "a t-shirt and panties":
+						r.push(`${slave.slaveName}'s fat belly just manages to brush up against ${his} shirt.`);
+						break;
+					case "a Santa dress":
+						r.push(`${slave.slaveName}'s fat belly bulges around the belt around ${his} waist.`);
+						break;
+					case "a burkini":
+						r.push(`${slave.slaveName}'s burkini bulges from ${his} fat belly.`);
+						break;
+					case "a hijab and blouse":
+						r.push(`${slave.slaveName}'s blouse and skirt are filled out by ${his} fat belly.`);
+						break;
+					case "battledress":
+						r.push(`${slave.slaveName}'s tank top rests atop ${his} fat belly, leaving everyone wondering how this recruit passed basic.`);
+						break;
+					case "a halter top dress":
+						r.push(`${slave.slaveName}'s beautiful halter top dress is filled by ${his} fat belly. Every crease, fold and roll is clearly visible within it.`);
+						break;
+					case "a ball gown":
+						r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to not only fit ${his} fat belly but draw attention to it.`);
+						break;
+					case "slutty jewelry":
+						r.push(`${slave.slaveName}'s bangles include long, thin chains running along ${his} fat folds.`);
+						break;
+					case "a leotard":
+						r.push(`${slave.slaveName}'s tight leotard tightly clings to ${his} fat belly, clearly displaying every fold and roll.`);
+						break;
+					case "a monokini":
+						r.push(`${slave.slaveName}'s monokini tightly clings to ${his} fat belly, clearly displaying every fold and roll.`);
+						break;
+					case "overalls":
+						if (slave.boobs > (slave.belly + 250)) {
+							r.push(`${slave.slaveName}'s large breasts push out ${his} overalls so far that ${his} fat belly is left uncovered.`);
+						} else {
+							r.push(`${slave.slaveName}'s fat belly bulges out from over the sides of ${his} overalls.`);
+						}
+						break;
+					case "an apron":
+						r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} fat belly, clearly showing every fold and roll.`);
+						break;
+					case "a cybersuit":
+						r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} fat belly, displaying every fold and roll in it.`);
+						break;
+					case "a chattel habit":
+						r.push(`The strip of cloth running down ${his} front is gently sinks into ${his} fat belly.`);
+						break;
+					case "a bunny outfit":
+						r.push(`${slave.slaveName}'s teddy is stretched out by ${his} fat belly. ${His} flab juts out around its edges and it does nothing to hide ${his} folds and rolls.`);
+						break;
+					case "spats and a tank top":
+						if (slave.boobs > 4000) {
+							r.push(`${slave.slaveName}'s fat belly is obscured by ${his} huge tits.`);
+						} else if ((slave.boobs > 1200)) {
+							r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} fat belly by ${his} breasts.`);
+						} else {
+							r.push(`${slave.slaveName}'s top can't entirely cover ${his} fat belly, allowing it to hang loose and slightly obscure ${his} spats from view.`);
+						}
+						break;
+					case "a bimbo outfit":
+						r.push(`${slave.slaveName}'s thong strings dig into ${his} fat belly as it lewdly draps over ${his} miniskirt.`);
+						break;
+					case "a courtesan dress":
+						r.push(`${slave.slaveName}'s fat belly bulges the ribs of ${his} corset, creating valleys of soft flesh.`);
+						break;
+					default:
+				}
+				if (V.arcologies[0].FSSlimnessEnthusiast !== "unset") {
+					r.push(`Your sleek, slim society finds ${his} bloated body unsightly.`);
+				}
+			} else if (slave.inflation === 1) {
+				if (slave.bellyAccessory === "an extreme corset") {
+					r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is tightly compressed by ${his} corset causing ${his} distress.`);
+				} else if ((slave.bellyAccessory === "a corset")) {
+					r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is lightly compressed by ${his} corset making ${him} uncomfortable.`);
+				}
+				switch (slave.clothes) {
+					case "conservative clothing":
+						if (slave.boobs > 20000) {
+							r.push(`${slave.slaveName}'s immense breasts keep ${his} oversized sweater from covering ${his} ${slave.inflationType}-swollen belly, though they do a fine job of hiding it themselves.`);
+						} else if ((slave.boobs > 10000)) {
+							r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is hidden by ${his} massive tits and oversized sweater.`);
+						} else if ((slave.boobs > 8000)) {
+							r.push(`${slave.slaveName}'s oversized breasts keep ${his} sweater far from ${his} ${slave.inflationType}-swollen belly.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s sweater bulges with ${his} ${slave.inflationType}-swollen belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s blouse bulges with ${his} ${slave.inflationType}-swollen belly.`);
+						}
+						break;
+					case "attractive lingerie for a pregnant woman":
+						r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly rests above ${his} silken panties. ${His} silken vest sensually frames ${his} swelling belly.`);
+						break;
+					case "a maternity dress":
+						r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is noticeable under ${his} loose dress. ${His} dress is specially tailored to be modest yet draw attention to ${his} distended stomach.`);
+						break;
+					case "stretch pants and a crop-top":
+						r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly takes full advantage of ${his} exposed midriff to bulge freely.`);
+						break;
+					case "chains":
+						r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is tightly wrapped with chains.`);
+						break;
+					case "Western clothing":
+						r.push(`${slave.slaveName}'s flannel shirt bulges with ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "body oil":
+						r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is covered in a sheen of oil.`);
+						break;
+					case "a toga":
+						r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly gently bulges under ${his} toga.`);
+						break;
+					case "a huipil":
+						r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly slightly bulges under ${his} huipil.`);
+						break;
+					case "a slutty qipao":
+						r.push(`${His} qipao is slit up the side. The front is pushed out by ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "uncomfortable straps":
+						r.push(`${slave.slaveName}'s slave outfit's straining straps press into ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "shibari ropes":
+						r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is tightly bound with rope, flesh bulges from between them.`);
+						break;
+					case "a latex catsuit":
+					case "restrictive latex":
+						r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly greatly bulges under ${his} latex suit.`);
+						break;
+					case "a military uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s undershirt covers ${his} ${slave.inflationType}-swollen belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s uniform covers ${his} ${slave.inflationType}-swollen belly.`);
+						}
+						break;
+					case "a schutzstaffel uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s undershirt covers ${his} ${slave.inflationType}-swollen belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s uniform covers ${his} ${slave.inflationType}-swollen belly.`);
+						}
+						break;
+					case "a slutty schutzstaffel uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s undershirt covers ${his} ${slave.inflationType}-swollen belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s uniform covers ${his} ${slave.inflationType}-swollen belly.`);
+						}
+						break;
+					case "a red army uniform":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s undershirt covers ${his} ${slave.inflationType}-swollen belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s uniform covers ${his} ${slave.inflationType}-swollen belly.`);
+						}
+						break;
+					case "a long qipao":
+						r.push(`${slave.slaveName}'s dress tightly clings to ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a mounty outfit":
+						r.push(`${slave.slaveName}'s tunic tightly clings to ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "battlearmor":
+						r.push(`${slave.slaveName}'s armor tightly clings to ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "lederhosen":
+						r.push(`${slave.slaveName}'s tunic tightly clings to ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a dirndl":
+						r.push(`${slave.slaveName}'s dress tightly clings to ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a biyelgee costume":
+						r.push(`${slave.slaveName}'s costume tightly clings to ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a nice nurse outfit":
+						if (slave.boobs > 6000) {
+							r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} massive tits.`);
+						} else if ((slave.boobs > 4000)) {
+							r.push(`${slave.slaveName}'s nurse outfit could be called conservative, if it could cover more than half of ${his} breasts; ${his} ${slave.inflationType}-swollen belly is completely exposed.`);
+						} else {
+							r.push(`${slave.slaveName}'s nurse outfit is almost conservative, it covers ${his} ${slave.inflationType}-swollen belly completely.`);
+						}
+						break;
+					case "a mini dress":
+						r.push(`${slave.slaveName}'s mini dress tightly clings to ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "attractive lingerie":
+						r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly rests above ${his} lacy g-string.`);
+						break;
+					case "kitty lingerie":
+						r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly rests above ${his} silk panties.`);
+						break;
+					case "a succubus outfit":
+						r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly peeks out of ${his} corset, which is laced above and below it.`);
+						break;
+					case "a slutty maid outfit":
+						r.push(`${slave.slaveName}'s maid dress is slightly distended by ${his} growing belly.`);
+						break;
+					case "a nice maid outfit":
+						r.push(`${slave.slaveName}'s maid dress is almost conservative, it covers ${his} ${slave.inflationType}-swollen belly completely.`);
+						break;
+					case "a fallen nuns habit":
+						r.push(`${slave.slaveName}'s latex habit's corset struggles to hold ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a penitent nuns habit":
+						r.push(`${slave.slaveName}'s habit gently bulges from ${his} ${slave.inflationType}-swollen belly. The coarse cloth aggravates ${his} sensitive skin.`);
+						break;
+					case "a string bikini":
+						r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly juts out between the strings of ${his} bikini.`);
+						break;
+					case "a scalemail bikini":
+						r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly juts out underneath ${his} bikini.`);
+						break;
+					case "striped panties":
+						r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly juts out above ${his} panties.`);
+						break;
+					case "clubslut netting":
+						r.push(`${slave.slaveName}'s clubslut netting clings to ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a cheerleader outfit":
+						r.push(`${slave.slaveName}'s cheerleader top gently bulges from ${his} ${slave.inflationType}-swollen belly displaying how slutty this cheerleader is.`);
+						break;
+					case "cutoffs and a t-shirt":
+						if (slave.boobs > 4000) {
+							r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} huge tits.`);
+						} else if ((slave.boobs > 2000)) {
+							r.push(`${slave.slaveName}'s tits keep ${his} t-shirt far from ${his} ${slave.inflationType}-swollen belly.`);
+						} else {
+							r.push(`${slave.slaveName}'s t-shirt bulges with ${his} ${slave.inflationType}-swollen belly. The bottom of which is beginning to peek from under ${his} T-shirt.`);
+						}
+						break;
+					case "a slutty outfit":
+						r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly shows how big of a slut ${he} is.`);
+						break;
+					case "a slave gown":
+						r.push(`${slave.slaveName}'s slave gown is carefully tailored, giving ${him} a sensual look as it carefully caresses ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "slutty business attire":
+						r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly bulges ${his} suit jacket and blouse. It peeks out from under their bottom slightly.`);
+						break;
+					case "nice business attire":
+						r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly bulges under ${his} tailored blouse and jacket.`);
+						break;
+					case "harem gauze":
+						r.push(`${slave.slaveName}'s harem girl outfit sensually accentuates ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a comfortable bodysuit":
+						r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} ${slave.inflationType}-swollen belly, displaying ${his} bloated body.`);
+						break;
+					case "a slutty nurse outfit":
+						r.push(`${slave.slaveName}'s jacket bulges with ${his} ${slave.inflationType}-swollen belly, which can be seen peeking out from underneath.`);
+						break;
+					case "a schoolgirl outfit":
+						r.push(`${slave.slaveName}'s blouse bulges with ${his} ${slave.inflationType}-swollen belly. It peeks out from the bottom leaving ${him} looking particularly slutty.`);
+						break;
+					case "a kimono":
+						r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is demurely covered by ${his} kimono.`);
+						break;
+					case "a hijab and abaya":
+					case "a niqab and abaya":
+						r.push(`${slave.slaveName}'s abaya is filled out by ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a klan robe":
+						r.push(`${slave.slaveName}'s robe is filled out by ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a burqa":
+						r.push(`${slave.slaveName}'s burqa is filled out by ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a nice pony outfit":
+					case "a slutty pony outfit":
+						r.push(`${slave.slaveName}'s pony outfit is rounded out by ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a tube top and thong":
+					case "a bra":
+					case "a thong":
+					case "a tube top":
+					case "a striped bra":
+					case "striped underwear":
+					case "a skimpy loincloth":
+					case "a slutty klan robe":
+					case "a sports bra":
+					case "boyshorts":
+					case "cutoffs":
+					case "leather pants and pasties":
+					case "leather pants":
+					case "panties":
+					case "panties and pasties":
+					case "pasties":
+					case "sport shorts and a sports bra":
+					case "jeans":
+					case "leather pants and a tube top":
+					case "sport shorts":
+						r.push(`${slave.slaveName}'s outfit completely bares ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a one-piece swimsuit":
+						r.push(`${slave.slaveName}'s swimsuit is rounded out by ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a sweater":
+					case "a sweater and cutoffs":
+					case "a sweater and panties":
+						r.push(`${slave.slaveName}'s sweater is rounded out by ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a police uniform":
+						r.push(`${slave.slaveName}'s uniform is rounded out by ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a hanbok":
+						r.push(`${slave.slaveName}'s hanbok bulges from ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a gothic lolita dress":
+						r.push(`${slave.slaveName}'s dress bulges from ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a tank-top":
+					case "a tank-top and panties":
+						r.push(`${slave.slaveName}'s tank-top bulges from ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a button-up shirt and panties":
+					case "a button-up shirt":
+					case "a t-shirt":
+					case "a t-shirt and thong":
+					case "an oversized t-shirt and boyshorts":
+					case "an oversized t-shirt":
+					case "sport shorts and a t-shirt":
+					case "a t-shirt and jeans":
+					case "a t-shirt and panties":
+						r.push(`${slave.slaveName}'s shirt covers most of ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a Santa dress":
+						r.push(`The belt of ${slave.slaveName}'s dress lies atop the gentle bulge of ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a burkini":
+						r.push(`${slave.slaveName}'s burkini bulges from ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a hijab and blouse":
+						r.push(`${slave.slaveName}'s blouse and skirt bulge from ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "battledress":
+						r.push(`${slave.slaveName}'s tank top covers the top of ${his} ${slave.inflationType}-swollen belly leaving ${him} looking like someone who had too much fun on shore leave.`);
+						break;
+					case "a halter top dress":
+						r.push(`${slave.slaveName}'s beautiful halter top dress bulges with ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a ball gown":
+						r.push(`${slave.slaveName}'s fabulous silken ball gown is tailored to draw attention to ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "slutty jewelry":
+						r.push(`${slave.slaveName}'s bangles include a long thin chain that rests across ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a leotard":
+						r.push(`${slave.slaveName}'s tight leotard shows off ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "overalls":
+						if (slave.boobs > (slave.belly + 250)) {
+							r.push(`${slave.slaveName}'s large breasts push out ${his} overalls so far that ${his} ${slave.inflationType}-swollen belly is left uncovered.`);
+						} else {
+							r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly rounds out the front of ${his} overalls.`);
+						}
+						break;
+					case "a monokini":
+						r.push(`${slave.slaveName}'s monokini covers most of ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "an apron":
+						r.push(`${slave.slaveName}'s apron is rounded out by ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a cybersuit":
+						r.push(`${slave.slaveName}'s bodysuit tightly clings to ${his} ${slave.inflationType}-swollen belly, displaying ${his} bloated body.`);
+						break;
+					case "a chattel habit":
+						r.push(`The strip of cloth running down ${his} front is pushed out by ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a bunny outfit":
+						r.push(`${slave.slaveName}'s teddy bulges with ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "spats and a tank top":
+						if (slave.boobs > 4000) {
+							r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is obscured by ${his} huge tits.`);
+						} else if ((slave.boobs > 1200)) {
+							r.push(`${slave.slaveName}'s top is prevented from trying to cover ${his} ${slave.inflationType}-swollen belly by ${his} breasts.`);
+						} else {
+							r.push(`${slave.slaveName}'s top can't entirely cover ${his} ${slave.inflationType}-swollen belly, allowing it to hang loose and slightly obscure ${his} spats from view.`);
+						}
+						break;
+					case "a bimbo outfit":
+						r.push(`${slave.slaveName}'s miniskirt pushes into ${his} ${slave.inflationType}-swollen belly.`);
+						break;
+					case "a courtesan dress":
+						r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly bulges between the ribs of ${his} corset.`);
+						break;
+					default:
+				}
+			}
+		} else {
+			r.push(`${slave.slaveName}'s ${slave.inflationType}-swollen belly is bare and ready for surgery.`);
+		}
+	}
+
+	if (slave.navelPiercing === 1) {
+		r.push(`${His} navel bears a simple stud.`);
+	} else if (slave.navelPiercing === 2) {
+		r.push(`${His} navel is pierced with a big ring.`);
+		if (slave.clothes === "slutty jewelry") {
+			r.push(`It has a length of gilded chain dangling from it.`);
+		} else {
+			r.push(`It has a short length of chain dangling from it.`);
+		}
+	}
+
+	if (slave.bellyTat !== 0) {
+		if (slave.inflation === 3) {
+			if (slave.bellyTat === "a heart") {
+				r.push(`A heart is tattooed around ${his} popped navel, only to be truly seen when ${he} is full-term or absolutely filled with ${slave.inflationType}.`);
+			} else if (slave.bellyTat === "a star") {
+				r.push(`A star is tattooed around ${his} popped navel, only to be truly seen when ${he} is full-term or absolutely filled with ${slave.inflationType}.`);
+			} else if (slave.bellyTat === "a butterfly") {
+				r.push(`A butterfly is tattooed around ${his} popped navel, only to be truly seen when ${he} is full-term or absolutely filled with ${slave.inflationType}.`);
+			}
+		} else if (slave.inflation === 2) {
+			r.push(`${He} has a barely recognizable tattoo around ${his} navel, it should reveal itself fully once ${he} is bloated a little more.`);
+		} else if (slave.inflation === 1) {
+			r.push(`${He} has an unrecognizable tattoo around ${his} navel, it has stretched slightly along with ${his} distended middle.`);
+		} else {
+			r.push(`${He} has an unrecognizable tattoo scrunched around ${his} navel.`);
+		}
+	}
+
+	if (slave.breedingMark === 1) {
+		if (V.propOutcome === 1) {
+			r.push(`The Societal Elites' mark designating ${him} as a breeder is prominently displayed across ${his} lower belly, beneath ${his} navel.`);
+		} else {
+			r.push(`An alluring tattoo is prominently displayed across ${his} lower belly, beneath ${his} navel, urging ${him} to be bred.`);
+		}
+	}
+
+	return r.join(" ");
+};
diff --git a/src/npc/descriptions/boobs/boobsShape.js b/src/npc/descriptions/boobs/boobsShape.js
new file mode 100644
index 0000000000000000000000000000000000000000..090a28976cfaa2d7e38a5b2894d10d3cfb257696
--- /dev/null
+++ b/src/npc/descriptions/boobs/boobsShape.js
@@ -0,0 +1,254 @@
+App.Desc.boobsShape = function(slave) {
+	const r = [];
+	const {
+		he, him, his, hers, himself, boy, He, His
+	} = getPronouns(slave);
+	if (V.showImplantEffects === 1) {
+		if (slave.fuckdoll > 0) {
+			if (slave.boobs > 250) {
+				r.push(`The natural shape of its breasts is completely irrelevant, since the suit forces each of them`);
+				if (slave.boobs > 5000) {
+					r.push(`into a monstrous orb shape.`);
+				} else if (slave.boobs > 1000) {
+					r.push(`into an orb shape.`);
+				} else {
+					r.push(`up and out like a severe push-up bra.`);
+				}
+			}
+		} else if ((slave.boobsImplant === 0)) {
+			switch (slave.boobShape) {
+				case "perky":
+					if (slave.boobs > 12000) {
+						r.push(`When ${he}'s on ${his} back, some of their natural perkiness can still be seen in the way they tend to obscure ${his} head and shoulders.`);
+					} else if (slave.boobs > 5000) {
+						r.push(`Their natural perkiness has helped them resist their enormous size, making them look like a normal pair of merely gigantic tits that have grown to be bigger than ${his} head without changing shape.`);
+					} else if (slave.boobs > 2500) {
+						r.push(`They're orbs of soft flesh, resting heavily against ${his} chest and each other. They remain naturally perky, defying gravity.`);
+					} else if (slave.boobs > 1000) {
+						r.push(`They're somewhat perky despite their large size, with ${his} nipples pointing slightly upward.`);
+					} else if (slave.boobs > 500) {
+						r.push(`They're full and perky, and ${his} nipples point upward.`);
+					} else if (slave.boobs > 250) {
+						r.push(`They're perky, and ${his} nipples point upward.`);
+					} else {
+						r.push(`They're very minimal.`);
+					}
+					break;
+				case "downward-facing":
+					if (slave.boobs > 12000) {
+						r.push(`Their naturally downward-facing shape makes them a convenient cushion when ${he}'s face-down, naturally placing ${him} in a kneeling position.`);
+					} else if (slave.boobs > 5000) {
+						r.push(`They're huge pillows of soft flesh, distorted by gravity and where they rest against ${his} stomach and each other. Naturally downward-facing, they are so big that ${his} nipples point directly down.`);
+					} else if (slave.boobs > 2500) {
+						r.push(`They're orbs of soft flesh, resting heavily against ${his} stomach and each other. Since they are naturally downward-facing, most of their mass rests low.`);
+					} else if (slave.boobs > 1000) {
+						r.push(`They're not attractively shaped, with ${his} nipples pointing downward more strongly than they should for ${his} breast size.`);
+					} else if (slave.boobs > 500) {
+						r.push(`They're not attractively shaped, with ${his} nipples pointing down.`);
+					} else if (slave.boobs > 250) {
+						r.push(`They're not attractively shaped, with ${his} nipples pointing down despite ${his} small breasts.`);
+					} else {
+						r.push(`They're very minimal.`);
+					}
+					break;
+				case "torpedo-shaped":
+					if (slave.boobs > 12000) {
+						r.push(`They are naturally torpedo-shaped, which can be seen in the way they stick out more than a`);
+						if (V.showInches === 2) {
+							r.push(`yard`);
+						} else {
+							r.push(`meter`);
+						}
+						r.push(`in front of ${him} when ${he} sits up.`);
+					} else if (slave.boobs > 5000) {
+						r.push(`They're huge promontories of soft flesh. Their natural torpedo shape remains to a certain extent, ${his} swaying breasts reaching an incredibly long way out from ${his} chest.`);
+					} else if (slave.boobs > 2500) {
+						r.push(`They're orbs of soft flesh, resting heavily against ${his} chest and each other. Their natural torpedo shape is distorted by their weight.`);
+					} else if (slave.boobs > 1000) {
+						r.push(`They're strongly torpedo-shaped despite their large size, projecting a long way from ${his} chest and swaying lewdly when ${he}'s naked.`);
+					} else if (slave.boobs > 500) {
+						r.push(`They're strongly torpedo-shaped, projecting a long way from ${his} chest and swaying cutely when ${he}'s naked.`);
+					} else if (slave.boobs > 250) {
+						r.push(`They're strongly torpedo-shaped despite their small size, projecting some way from ${his} chest.`);
+					} else {
+						r.push(`They're very minimal.`);
+					}
+					break;
+				case "wide-set":
+					if (slave.boobs > 12000) {
+						r.push(`They are naturally wide-set, which can be seen in the way they stick out more than a`);
+						if (V.showInches === 2) {
+							r.push(`yard`);
+						} else {
+							r.push(`meter`);
+						}
+						r.push(`to either side of ${him} when ${he}'s face-down.`);
+					} else if (slave.boobs > 5000) {
+						r.push(`They're huge pillows of soft flesh whose natural wide-set shape somehow keeps them from touching despite their mass.`);
+					} else if (slave.boobs > 2500) {
+						r.push(`They're orbs of soft flesh whose natural wide-set shape obscures ${his} upper arms. They rest without natural cleavage despite their size.`);
+					} else if (slave.boobs > 1000) {
+						r.push(`They're wide-set, with their weight pointing each nipple away from ${his} sternum.`);
+					} else if (slave.boobs > 500) {
+						r.push(`They're wide-set, with each nipple pointing away from ${his} sternum.`);
+					} else if (slave.boobs > 250) {
+						r.push(`They're wide-set, with each nipple pointing somewhat sideways.`);
+					} else {
+						r.push(`They're very minimal.`);
+					}
+					break;
+				case "saggy":
+					if (slave.boobs > 12000) {
+						r.push(`Their naturally saggy shape makes them a convenient cushion when ${he}'s face-down, naturally placing ${him} in a kneeling position.`);
+					} else if (slave.boobs > 5000) {
+						r.push(`They're huge pillows of soft flesh that sag past ${his} navel. ${His} nipples are placed on their bottoms, pointed at the ground by the heavy mass of breastflesh above them.`);
+					} else if (slave.boobs > 2500) {
+						r.push(`They're orbs of soft flesh that sag almost to ${his} navel. ${His} nipples are placed on their bottoms, pointed at the ground by the weight of breast above them.`);
+					} else if (slave.boobs > 1000) {
+						r.push(`They're heavy and saggy, pointing ${his} nipples at the ground.`);
+					} else if (slave.boobs > 500) {
+						r.push(`They're not attractively shaped, with ${his} nipples pointing down.`);
+					} else if (slave.boobs > 250) {
+						r.push(`They're not attractively shaped, with ${his} nipples pointing down despite ${his} small breasts.`);
+					} else {
+						r.push(`They're very minimal.`);
+					}
+					break;
+				default:
+					if (slave.boobs > 12000) {
+						r.push(`They anchor ${him} when ${he}'s face-down, and pin ${him} when ${he}'s on ${his} back.`);
+					} else if (slave.boobs > 5000) {
+						r.push(`They're huge pillows of soft flesh, distorted by gravity and where they rest against ${his} stomach and each other.`);
+					} else if (slave.boobs > 2500) {
+						r.push(`They're orbs of soft flesh, resting heavily against ${his} chest and each other.`);
+					} else if (slave.boobs > 1000) {
+						r.push(`They're soft and round, resting heavily against ${his} chest and each other.`);
+					} else if (slave.boobs > 500) {
+						r.push(`They're nice and soft and rest naturally against ${his} chest.`);
+					} else if (slave.boobs > 250) {
+						r.push(`They're nicely rounded and rest naturally.`);
+					} else {
+						r.push(`They're very minimal.`);
+					}
+			}
+		} else if (slave.boobShape === "deflated") {
+			/* WIP */
+		} else if ((slave.boobsImplant <= 400)) {
+			if (slave.boobs > 800) {
+				r.push(`${He} has ${slave.boobsImplant}cc breast implants. ${His} tits look fairly natural, but defy gravity more than could be expected given their size.`);
+			} else if ((slave.boobs > 300)) {
+				r.push(`${He} has ${slave.boobsImplant}cc breast implants. ${His} tits look fairly natural, but are perkier than could be expected given their size.`);
+			} else {
+				r.push(`${He} has ${slave.boobsImplant}cc breast implants. ${His} tits look fairly natural, mostly because they're so small.`);
+			}
+			if (V.arcologies[0].FSTransformationFetishist !== "unset") {
+				if (slave.boobsImplant > 0) {
+					r.push(`They are about ${Math.floor((slave.boobsImplant / slave.boobs) * 100)}% implant.`);
+				}
+			}
+		} else if ((slave.boobsImplant <= 600)) {
+			if (slave.boobs > 800) {
+				r.push(`${He} has ${slave.boobsImplant} cc breast implants.${His} implants are well done, but ${his} breasts are so perfect and gravity - defying that they are clearly artificial.`);
+			} else {
+				r.push(`${He} has ${slave.boobsImplant} cc breast implants.${His} implants are well done, but ${his} breasts are so rounded and high that they are clearly artificial.`);
+			}
+			if (V.arcologies[0].FSTransformationFetishist !== "unset") {
+				if (slave.boobsImplant > 0) {
+					r.push(`They are about ${Math.floor((slave.boobsImplant / slave.boobs) * 100)}% implant.`);
+				}
+			}
+		} else {
+			if (slave.boobs > 2000) {
+				r.push(`${He} has ${slave.boobsImplant} cc`);
+				if (slave.boobsImplantType === "string") {
+					r.push(`engorged string`);
+				} else {
+					r.push(`fillable breast`);
+				}
+				r.push(`implants, which is obvious from the unnatural size of ${his} boobs.`);
+			} else if (slave.boobs - slave.boobsImplant > 800) {
+				r.push(`${He} has ${slave.boobsImplant} cc`);
+				if (slave.boobsImplantType === "string") {
+					r.push(`engorged string`);
+				} else {
+					r.push(`fillable breast`);
+				}
+				r.push(`implants, which is obvious from the roundness of ${his} fake tits.`);
+			} else {
+				r.push(`${He} has ${slave.boobsImplant} cc`);
+				if (slave.boobsImplantType === "string") {
+					r.push(`engorged string`);
+				} else {
+					r.push(`fillable breast`);
+				}
+				r.push(`implants. They are extremely obvious; with little natural breast tissue to support them, they look like a pair of balloons attached to ${his} chest.`);
+			}
+			if (V.arcologies[0].FSTransformationFetishist !== "unset") {
+				if (slave.boobsImplant > 0) {
+					r.push(`They are about ${Math.floor((slave.boobsImplant / slave.boobs) * 100)}% implant.`);
+				}
+			}
+		}
+
+		if (V.arcologies[0].FSTransformationFetishist > 20) {
+			if (V.arcologies[0].FSSlimnessEnthusiast !== "unset") {
+				if (slave.boobs >= 400) {
+					if (slave.boobs >= 10000) {
+						if (slave.boobsImplant / slave.boobs < .75) {
+							r.push(`${His} breasts are < span class="red" > disgustingly natural</span > for their size.`);
+						} else {
+							r.push(`${His} breasts are < span class="green" > obviously implants,</span > as they should be.`);
+						}
+					} else if (slave.boobs >= 2000) {
+						if (slave.boobsImplant / slave.boobs < .50) {
+							r.push(`${His} breasts are < span class="red" > disgustingly natural</span > for their size.`);
+						} else {
+							r.push(`${His} breasts are < span class="green" > obviously implants,</span > as they should be.`);
+						}
+					} else if (slave.boobs >= 1000) {
+						if (slave.boobsImplant / slave.boobs < .25) {
+							r.push(`${His} breasts are < span class="red" > disgustingly natural</span > for their size.`);
+						} else {
+							r.push(`${His} breasts are < span class="green" > obviously implants,</span > as they should be.`);
+						}
+					} else {
+						if (slave.boobsImplant / slave.boobs < .10) {
+							r.push(`${His} breasts are < span class="red" > disgustingly natural</span > for their size.`);
+						} else {
+							r.push(`${His} breasts are < span class="green" > obviously implants,</span > as they should be.`);
+						}
+					}
+				}
+			} else {
+				if (slave.boobs >= 600) {
+					if (slave.boobs >= 10000) {
+						if (slave.boobsImplant / slave.boobs < .75) {
+							r.push(`${His} breasts are < span class="red" > disgustingly natural</span > for their size.`);
+						} else {
+							r.push(`${His} breasts are < span class="green" > obviously implants,</span > as they should be.`);
+						}
+					} else if (slave.boobs >= 2000) {
+						if (slave.boobsImplant / slave.boobs < .50) {
+							r.push(`${His} breasts are < span class="red" > disgustingly natural</span > for their size.`);
+						} else {
+							r.push(`${His} breasts are < span class="green" > obviously implants,</span > as they should be.`);
+						}
+					} else if (slave.boobs >= 1000) {
+						if (slave.boobsImplant / slave.boobs < .25) {
+							r.push(`${His} breasts are < span class="red" > disgustingly natural</span > for their size.`);
+						} else {
+							r.push(`${His} breasts are < span class="green" > obviously implants,</span > as they should be.`);
+						}
+					} else {
+						if (slave.boobsImplant / slave.boobs < .10) {
+							r.push(`${His} breasts are < span class="red" > disgustingly natural</span > for their size.`);
+						} else {
+							r.push(`${His} breasts are < span class="green" > obviously implants,</span > as they should be.`);
+						}
+					}
+				}
+			}
+		}
+	}
+	return r.join(" ");
+};
diff --git a/src/npc/descriptions/butt/anus.js b/src/npc/descriptions/butt/anus.js
index a301abdc398ab9375ad4fb653bc4931f94158554..e559d9de110395338b351325c61d153f1e751f72 100644
--- a/src/npc/descriptions/butt/anus.js
+++ b/src/npc/descriptions/butt/anus.js
@@ -19,7 +19,7 @@ App.Desc.anus = function(slave) {
 	} else if (slave.anus === 1) {
 		r.push(`${His} ${either("anal opening", "anus", "asshole", "butthole")} is ${either("nice and", "very")} tight,`);
 		if (slave.analArea - slave.anus > 3) {
-			r.push(`but it's surrounded by a massive oval of ${analSkinDesc} ${skinDesc} skin that runs from ${his} tailbone all the way down to the `);
+			r.push(`but it's surrounded by a massive oval of ${analSkinDesc} ${skinDesc} skin that runs from ${his} tailbone all the way down to the`);
 			if (slave.vagina > -1) {
 				r.push(`bottom of ${his} pussy`);
 			} else {
@@ -36,13 +36,13 @@ App.Desc.anus = function(slave) {
 			r.push(`and the ${skinDesc} skin around it is stretched smooth, since it's been deflowered only recently.`);
 		}
 	} else if (slave.anus === 2) {
-		r.push(`${His} ${either("anal opening", "anus", "asshole", "asspussy", "butthole")} is `);
+		r.push(`${His} ${either("anal opening", "anus", "asshole", "asspussy", "butthole")} is`);
 		if (slave.analArea - slave.anus > 1) {
 			r.push(`only`);
 		}
 		r.push(either("relaxed", "loose", "accommodating"));
 		if (slave.analArea - slave.anus > 2) {
-			r.push(`but it's surrounded by a massive oval of ${analSkinDesc} ${skinDesc} skin that runs from ${his} tailbone all the way down to the `);
+			r.push(`but it's surrounded by a massive oval of ${analSkinDesc} ${skinDesc} skin that runs from ${his} tailbone all the way down to the`);
 			if (slave.vagina > -1) {
 				r.push(`bottom of ${his} pussy.`);
 			} else {
@@ -58,7 +58,7 @@ App.Desc.anus = function(slave) {
 	} else if (slave.anus === 3) {
 		r.push(`${His} ${either("anal opening", "anus", "asshole", "asspussy", "butthole")} is a ${either("lewd", "loose", "relaxed", "welcoming")} slit`);
 		if (slave.analArea - slave.anus > 1) {
-			r.push(`and it's surrounded by a massive oval of ${analSkinDesc} ${skinDesc} skin that runs from ${his} tailbone all the way down to the `);
+			r.push(`and it's surrounded by a massive oval of ${analSkinDesc} ${skinDesc} skin that runs from ${his} tailbone all the way down to the`);
 			if (slave.vagina > -1) {
 				r.push(`bottom of ${his} pussy.`);
 			} else {
@@ -72,7 +72,7 @@ App.Desc.anus = function(slave) {
 	} else {
 		r.push(`${His} ${either("anal opening", "anal slit", "anus", "asshole", "asspussy", "butthole")} is a ${either("loose", "open", "permanent", "relaxed")} gape,`);
 		if (slave.analArea - slave.anus > 0) {
-			r.push(`and it's surrounded by a massive oval of ${skinDesc} skin that runs from ${his} tailbone all the way down to the `);
+			r.push(`and it's surrounded by a massive oval of ${skinDesc} skin that runs from ${his} tailbone all the way down to the`);
 			if (slave.vagina > -1) {
 				r.push(`bottom of ${his} pussy`);
 			} else {
@@ -107,13 +107,13 @@ App.Desc.anus = function(slave) {
 		if (slave.fuckdoll <= 45) {
 			r.push(`${he} is only fit to be locked in place so ${his} rear hole can be raped.`);
 		} else {
-			r.push(`${he} can be instructed to rhythmically squeeze `);
+			r.push(`${he} can be instructed to rhythmically squeeze`);
 			if (V.PC.dick !== 0) {
 				r.push(`cocks`);
 			} else {
 				r.push(`anything`);
 			}
-			r.push(` inserted into ${his} rear hole.`);
+			r.push(`inserted into ${his} rear hole.`);
 			if (slave.fuckdoll <= 85) {
 				r.push(`${He} can also be ordered to bounce atop objects in ${his} anus.`);
 			}
diff --git a/src/npc/descriptions/butt/butt.js b/src/npc/descriptions/butt/butt.js
index 74cb2275075fb883e875538920b1c75240ba70c3..36a381904e48ceb9f623dd33c5bc1dc3502d9458 100644
--- a/src/npc/descriptions/butt/butt.js
+++ b/src/npc/descriptions/butt/butt.js
@@ -132,14 +132,14 @@ App.Desc.butt = function(slave) {
 					} else if (slave.butt > 3) {
 						r.push(`big ass fills out ${his} stretch pants nicely.`);
 					} else {
-						r.push(`stretch pants tightly hug ${his} trim `);
+						r.push(`stretch pants tightly hug ${his} trim`);
 						if (hasAnyLegs(slave)) {
 							if (hasBothLegs(slave)) {
 								r.push(`legs`);
 							} else {
 								r.push(`leg`);
 							}
-							r.push(`and `);
+							r.push(`and`);
 						}
 						r.push(`rear.`);
 					}
@@ -1112,7 +1112,7 @@ App.Desc.butt = function(slave) {
 			} else if (slave.buttImplant === 2) {
 				r.push(`${His} big butt implants make ${his} ass jut out curvaceously whatever pose ${he}'s in.`);
 			} else if (slave.buttImplant > 2) {
-				r.push(`${He} has `);
+				r.push(`${He} has`);
 				if (slave.buttImplantType === "string") {
 					r.push(`engorged string`);
 				} else if (slave.buttImplantType === "normal") {
@@ -1122,7 +1122,7 @@ App.Desc.butt = function(slave) {
 				}
 				r.push(`implants, and it shows. Whatever ${his} position, ${his} ass looks just as artificially enticing.`);
 			} else if (slave.buttImplant > 7) {
-				r.push(`${He} has oversized `);
+				r.push(`${He} has oversized`);
 				if (slave.buttImplantType === "string") {
 					r.push(`engorged string`);
 				} else if (slave.buttImplantType === "normal") {
@@ -1132,7 +1132,7 @@ App.Desc.butt = function(slave) {
 				}
 				r.push(`implants, and it is completely obvious. Whatever ${his} position, ${his} ass looks like someone shoved a pair of overinflated beachballs in ${his} buttcheeks.`);
 			} else if (slave.buttImplant > 12) {
-				r.push(`${He} has oversized `);
+				r.push(`${He} has oversized`);
 				if (slave.buttImplantType === "string") {
 					r.push(`engorged string`);
 				} else {
@@ -1140,7 +1140,7 @@ App.Desc.butt = function(slave) {
 				}
 				r.push(`implants, and it is completely obvious. Whatever ${his} position, ${his} ass looks like someone shoved a pair of ready to burst weather balloons in ${his} buttcheeks.`);
 			} else if (slave.buttImplant > 17) {
-				r.push(`${He} has oversized `);
+				r.push(`${He} has oversized`);
 				if (slave.buttImplantType === "string") {
 					r.push(`engorged string`);
 				} else {
diff --git a/src/npc/descriptions/butt/buttplug.js b/src/npc/descriptions/butt/buttplug.js
index a116eb92300aedafc76fe2942854a1ec527dec37..2a9f42943ca6541a262f015f32f24050dbdf8a39 100644
--- a/src/npc/descriptions/butt/buttplug.js
+++ b/src/npc/descriptions/butt/buttplug.js
@@ -6,7 +6,7 @@ App.Desc.buttplug = function(slave) {
 	if (slave.assignment === "work in the dairy" && V.dairyRestraintsSetting > 1) {
 		r.push(`${slave.slaveName}'s anus is`);
 		if (V.dairyStimulatorsSetting > 1) {
-			r.push(`filled by an enormous dildo `);
+			r.push(`filled by an enormous dildo`);
 			if (slave.balls > 0) {
 				r.push(`which is sodomizing ${him} vigorously to force ejaculation.`);
 			} else {
@@ -367,13 +367,13 @@ App.Desc.buttplug = function(slave) {
 				case "a leotard":
 					r.push(`The thin strip of leotard running between`);
 					if (slave.chastityAnus) {
-						r.push(`${his} `);
+						r.push(`${his}`);
 						if (hasBothLegs(slave)) {
 							r.push(`legs`);
 						} else {
 							r.push(`hips`);
 						}
-						r.push(` are so thin that ${his} anal chastity accessory is clearly visible underneath.`);
+						r.push(`are so thin that ${his} anal chastity accessory is clearly visible underneath.`);
 					} else {
 						r.push(`${his} buttocks are so thin and snug that the outline of ${his} anus is clearly`);
 						if (slave.butt > 3) {
diff --git a/src/npc/descriptions/crotch/crotch.js b/src/npc/descriptions/crotch/crotch.js
index 9cbd05d408064a06cde370a6585f13dfd339b7ac..878337554f00100cb42b0387bb9e61cbc0a92202 100644
--- a/src/npc/descriptions/crotch/crotch.js
+++ b/src/npc/descriptions/crotch/crotch.js
@@ -38,11 +38,11 @@ App.Desc.crotch = function(slave) {
 						} else {
 							r.push(`soft cock`);
 							if (slave.scrotum > 0) {
-								r.push(` and balls are`);
+								r.push(`and balls are`);
 							} else {
 								r.push(`is`);
 							}
-							r.push(` trapped up against its abdomen, under the Fuckdoll suit's protective material.`);
+							r.push(`trapped up against its abdomen, under the Fuckdoll suit's protective material.`);
 						}
 					}
 					if (slave.vagina > -1) {
@@ -70,11 +70,11 @@ App.Desc.crotch = function(slave) {
 					if (slave.dick > 7) {
 						r.push(`There is an absurdly large, tightly hugged bulge running down the leg of ${slave.slaveName}'s spats.`);
 						if (slave.dick > 8) {
-							r.push(` ${His} spats are too short to keep ${his} dick`);
+							r.push(`${His} spats are too short to keep ${his} dick`);
 							if (slave.dick === 9) {
 								r.push(`head`);
 							}
-							r.push(` from popping out of ${his} pantleg.`);
+							r.push(`from popping out of ${his} pantleg.`);
 						}
 					} else if (slave.dick > 6) {
 						r.push(`There is an absurdly large, tightly hugged bulge at the crotch of ${slave.slaveName}'s spats.`);
@@ -89,9 +89,9 @@ App.Desc.crotch = function(slave) {
 					} else if (slave.balls > 0 && slave.scrotum > 0) {
 						r.push(`There is a pair of tightly hugged bulges in the crotch of ${slave.slaveName}'s spats.`);
 					} else if (slave.vagina > -1) {
-						r.push(`${His} tight spats hug ${his} crotch so closely that ${his} `);
+						r.push(`${His} tight spats hug ${his} crotch so closely that ${his}`);
 						if (slave.vagina === 0) {
-							r.push(`virgin `);
+							r.push(`virgin`);
 						}
 						r.push(`pussy is clearly discernible.`);
 					} else {
@@ -172,7 +172,7 @@ App.Desc.crotch = function(slave) {
 					break;
 				case "attractive lingerie for a pregnant woman":
 					if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20 && slave.bellyPreg >= 5000) {
-						r.push(`${slave.slaveName}'s massive erection is agonizingly pressed down by ${his} `);
+						r.push(`${slave.slaveName}'s massive erection is agonizingly pressed down by ${his}`);
 						if (slave.bellyPreg > 2000) {
 							r.push(`pregnancy.`);
 						} else if (slave.bellyImplant > 2000) {
@@ -181,7 +181,7 @@ App.Desc.crotch = function(slave) {
 							r.push(`swollen belly.`);
 						}
 					} else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20) && (slave.bellyPreg >= 5000)) {
-						r.push(`${slave.slaveName}'s huge erection is agonizingly pressed down by ${his} `);
+						r.push(`${slave.slaveName}'s huge erection is agonizingly pressed down by ${his}`);
 						if (slave.bellyPreg > 2000) {
 							r.push(`pregnancy.`);
 						} else if (slave.bellyImplant > 2000) {
@@ -192,12 +192,12 @@ App.Desc.crotch = function(slave) {
 					} else if ((slave.dick > 7) && canAchieveErection(slave) && (slave.devotion > 20)) {
 						r.push(`${slave.slaveName}'s erection is so massive that ${he}'s restrained it by trapping its head under ${his} bra.`);
 						if (slave.boobs > 800) {
-							r.push(` Its head peeks out from ${his} cleavage and the tip rests comically under ${his} chin.`);
+							r.push(`Its head peeks out from ${his} cleavage and the tip rests comically under ${his} chin.`);
 						}
 					} else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20)) {
 						r.push(`${slave.slaveName}'s erection is so big that ${he}'s restrained it by trapping its head under ${his} bra.`);
 						if (slave.boobs > 800) {
-							r.push(` Its head peeks out from ${his} cleavage.`);
+							r.push(`Its head peeks out from ${his} cleavage.`);
 						}
 					} else if ((slave.dick > 3) && (slave.vagina > -1)) {
 						r.push(`${slave.slaveName}'s silken panties cannot cover ${his} hermaphroditic genitalia due to the size of ${his} cock. ${He}'s simply pulled it to one side, leaving ${his} pussy bare as well.`);
@@ -239,13 +239,13 @@ App.Desc.crotch = function(slave) {
 					}
 					break;
 				case "uncomfortable straps":
-					r.push(`${slave.slaveName}'s strap `);
+					r.push(`${slave.slaveName}'s strap`);
 					if (hasBothLegs(slave)) {
 						r.push(`between ${his} legs`);
 					} else {
 						r.push(`along ${his} perineum`);
 					}
-					r.push(` has a steel ring`);
+					r.push(`has a steel ring`);
 					if (slave.dick > 0 && slave.vagina > -1) {
 						r.push(`around the base of ${his} dick, letting it pass through, and a ring over ${his} pussy.`);
 					} else if (slave.dick > 0) {
@@ -258,7 +258,7 @@ App.Desc.crotch = function(slave) {
 					break;
 				case "shibari ropes":
 					if (!(slave.chastityPenis) && (slave.dick > 4) && canAchieveErection(slave) && (slave.devotion > 20) && (slave.belly >= 5000)) {
-						r.push(`${slave.slaveName}'s ropes bind ${his} huge cock to the bottom of ${his} `);
+						r.push(`${slave.slaveName}'s ropes bind ${his} huge cock to the bottom of ${his}`);
 						if (slave.bellyPreg > 2000) {
 							r.push(`pregnant`);
 						} else if (slave.bellyImplant > 2000) {
@@ -266,11 +266,11 @@ App.Desc.crotch = function(slave) {
 						} else {
 							r.push(`swollen`);
 						}
-						r.push(` belly.`);
+						r.push(`belly.`);
 					} else if (!(slave.chastityPenis) && (slave.dick > 4) && canAchieveErection(slave) && (slave.devotion > 20)) {
 						r.push(`${slave.slaveName}'s ropes bind ${his} huge cock straight up ${his} abdomen.`);
 						if (slave.boobs > 400) {
-							r.push(` It's so long that its head rests between ${his} breasts.`);
+							r.push(`It's so long that its head rests between ${his} breasts.`);
 						}
 					} else if ((slave.dick > 0) && (slave.vagina > -1)) {
 						r.push(`${slave.slaveName}'s ropes are woven in a complex pattern to bind all parts of ${his} complicated genitalia.`);
@@ -297,7 +297,7 @@ App.Desc.crotch = function(slave) {
 				case "attractive lingerie":
 					r.push(`${slave.slaveName}'s`);
 					if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) {
-						r.push(`massive erection is agonizingly pressed down by ${his} `);
+						r.push(`massive erection is agonizingly pressed down by ${his}`);
 						if (slave.bellyPreg > 2000) {
 							r.push(`pregnancy.`);
 						} else if (slave.bellyImplant > 2000) {
@@ -306,7 +306,7 @@ App.Desc.crotch = function(slave) {
 							r.push(`swollen belly.`);
 						}
 					} else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20) && (slave.belly >= 5000)) {
-						r.push(`huge erection is agonizingly pressed down by ${his} `);
+						r.push(`huge erection is agonizingly pressed down by ${his}`);
 						if (slave.bellyPreg > 2000) {
 							r.push(`pregnancy.`);
 						} else if (slave.bellyImplant > 2000) {
@@ -317,12 +317,12 @@ App.Desc.crotch = function(slave) {
 					} else if ((slave.dick > 7) && canAchieveErection(slave) && (slave.devotion > 20)) {
 						r.push(`erection is so massive that ${he}'s restrained it by trapping its head under ${his} bra.`);
 						if (slave.boobs > 800) {
-							r.push(` Its head peeks out from ${his} cleavage and the tip rests comically under ${his} chin.`);
+							r.push(`Its head peeks out from ${his} cleavage and the tip rests comically under ${his} chin.`);
 						}
 					} else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20)) {
 						r.push(`erection is so big that ${he}'s restrained it by trapping its head under ${his} bra.`);
 						if (slave.boobs > 800) {
-							r.push(` Its head peeks out from ${his} cleavage.`);
+							r.push(`Its head peeks out from ${his} cleavage.`);
 						}
 					} else if ((slave.dick > 3) && (slave.vagina > -1)) {
 						r.push(`lace g-string cannot cover ${his} hermaphroditic genitalia due to the size of ${his} cock. ${He}'s simply pulled it to one side, leaving ${his} pussy bare as well.`);
@@ -367,21 +367,21 @@ App.Desc.crotch = function(slave) {
 				case "a burkini":
 					r.push(`${slave.slaveName}'s burkini is designed to modestly cover ${his}`);
 					if (slave.dick > 5 && slave.vagina > -1) {
-						r.push(`dual genitalia, but the size of the bulge between ${his} `);
+						r.push(`dual genitalia, but the size of the bulge between ${his}`);
 						if (hasBothLegs(slave)) {
 							r.push(`legs`);
 						} else {
 							r.push(`hips`);
 						}
-						r.push(` shows how well that worked.`);
+						r.push(`shows how well that worked.`);
 					} else if (slave.dick > 5) {
-						r.push(`penis, but the size of the bulge between ${his} `);
+						r.push(`penis, but the size of the bulge between ${his}`);
 						if (hasBothLegs(slave)) {
 							r.push(`legs`);
 						} else {
 							r.push(`hips`);
 						}
-						r.push(` shows how well that worked.`);
+						r.push(`shows how well that worked.`);
 					} else if ((slave.dick > 0) && (slave.vagina > -1)) {
 						r.push(`dual genitalia, which it does.`);
 					} else if (slave.dick > 0) {
@@ -423,7 +423,7 @@ App.Desc.crotch = function(slave) {
 				case "a string bikini":
 					r.push(`${slave.slaveName}'s`);
 					if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) {
-						r.push(`massive erection is agonizingly pressed down by ${his} `);
+						r.push(`massive erection is agonizingly pressed down by ${his}`);
 						if (slave.bellyPreg > 2000) {
 							r.push(`pregnancy.`);
 						} else if (slave.bellyImplant > 2000) {
@@ -432,7 +432,7 @@ App.Desc.crotch = function(slave) {
 							r.push(`swollen belly.`);
 						}
 					} else if (slave.dick > 5 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) {
-						r.push(`huge erection is agonizingly pressed down by ${his} `);
+						r.push(`huge erection is agonizingly pressed down by ${his}`);
 						if (slave.bellyPreg > 2000) {
 							r.push(`pregnancy.`);
 						} else if (slave.bellyImplant > 2000) {
@@ -443,12 +443,12 @@ App.Desc.crotch = function(slave) {
 					} else if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20) {
 						r.push(`erection is so massive that ${he}'s got it restrained behind ${his} string bikini top.`);
 						if (slave.boobs > 800) {
-							r.push(` Its head peeks out from ${his} cleavage and its tip rests comically under ${his} chin.`);
+							r.push(`Its head peeks out from ${his} cleavage and its tip rests comically under ${his} chin.`);
 						}
 					} else if (slave.dick > 5 && canAchieveErection(slave) && slave.devotion > 20) {
 						r.push(`erection is so big that ${he}'s got it restrained behind ${his} string bikini top.`);
 						if (slave.boobs > 800) {
-							r.push(` Its head peeks out from ${his} cleavage.`);
+							r.push(`Its head peeks out from ${his} cleavage.`);
 						}
 					} else if ((slave.dick > 0) && (slave.vagina > -1)) {
 						r.push(`just given up and pushed ${his} bikini bottom to one side, since the bikini bottom that fits a hermaphrodite has not yet been designed.`);
@@ -463,7 +463,7 @@ App.Desc.crotch = function(slave) {
 				case "a scalemail bikini":
 					r.push(`${slave.slaveName}'s`);
 					if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) {
-						r.push(`massive erection is agonizingly pressed down by ${his} `);
+						r.push(`massive erection is agonizingly pressed down by ${his}`);
 						if (slave.bellyPreg > 2000) {
 							r.push(`pregnancy.`);
 						} else if (slave.bellyImplant > 2000) {
@@ -472,7 +472,7 @@ App.Desc.crotch = function(slave) {
 							r.push(`swollen belly.`);
 						}
 					} else if (slave.dick > 5 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) {
-						r.push(`huge erection is agonizingly pressed down by ${his} `);
+						r.push(`huge erection is agonizingly pressed down by ${his}`);
 						if (slave.bellyPreg > 2000) {
 							r.push(`pregnancy.`);
 						} else if (slave.bellyImplant > 2000) {
@@ -483,12 +483,12 @@ App.Desc.crotch = function(slave) {
 					} else if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20) {
 						r.push(`erection is so massive that ${he}'s got it restrained behind ${his} scalemail bikini top.`);
 						if (slave.boobs > 800) {
-							r.push(` Its head peeks out from ${his} cleavage and its tip rests comically under ${his} chin.`);
+							r.push(`Its head peeks out from ${his} cleavage and its tip rests comically under ${his} chin.`);
 						}
 					} else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20)) {
 						r.push(`erection is so big that ${he}'s got it restrained behind ${his} scalemail bikini top.`);
 						if (slave.boobs > 800) {
-							r.push(` Its head peeks out from ${his} cleavage.`);
+							r.push(`Its head peeks out from ${his} cleavage.`);
 						}
 					} else if ((slave.dick > 0) && (slave.vagina > -1)) {
 						r.push(`just given up and pushed ${his} scalemail bottom to one side, since the bikini bottom that fits a hermaphrodite has not yet been designed.`);
@@ -501,7 +501,7 @@ App.Desc.crotch = function(slave) {
 				case "striped panties":
 					r.push(`${slave.slaveName}'s`);
 					if (slave.dick > 5 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) {
-						r.push(`massive erection is agonizingly pressed down by ${his} `);
+						r.push(`massive erection is agonizingly pressed down by ${his}`);
 						if (slave.bellyPreg > 2000) {
 							r.push(`pregnancy.`);
 						} else if (slave.bellyImplant > 2000) {
@@ -510,7 +510,7 @@ App.Desc.crotch = function(slave) {
 							r.push(`swollen belly.`);
 						}
 					} else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20) && (slave.belly >= 5000)) {
-						r.push(`huge erection is agonizingly pressed down by ${his} `);
+						r.push(`huge erection is agonizingly pressed down by ${his}`);
 						if (slave.bellyPreg > 2000) {
 							r.push(`pregnancy.`);
 						} else if (slave.bellyImplant > 2000) {
@@ -521,12 +521,12 @@ App.Desc.crotch = function(slave) {
 					} else if ((slave.dick > 7) && canAchieveErection(slave) && (slave.devotion > 20)) {
 						r.push(`massive erection is completely unrestrained.`);
 						if (slave.boobs > 800) {
-							r.push(` Its head peeks out from ${his} cleavage and its tip rests comically under ${his} chin.`);
+							r.push(`Its head peeks out from ${his} cleavage and its tip rests comically under ${his} chin.`);
 						}
 					} else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20)) {
 						r.push(`erection is completely unrestrained.`);
 						if (slave.boobs > 800) {
-							r.push(` Its head peeks out from ${his} cleavage.`);
+							r.push(`Its head peeks out from ${his} cleavage.`);
 						}
 					} else if ((slave.dick > 0) && (slave.vagina > -1)) {
 						r.push(`cock is quite visible under the tight material of ${his} panties.`);
@@ -553,7 +553,7 @@ App.Desc.crotch = function(slave) {
 				case "a cheerleader outfit":
 					r.push(`${slave.slaveName}'s`);
 					if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) {
-						r.push(`massive erection pins ${his} skirt against ${his} `);
+						r.push(`massive erection pins ${his} skirt against ${his}`);
 						if (slave.bellyPreg > 2000) {
 							r.push(`pregnant`);
 						} else if (slave.bellyImplant > 2000) {
@@ -561,9 +561,9 @@ App.Desc.crotch = function(slave) {
 						} else {
 							r.push(`swollen`);
 						}
-						r.push(` belly, revealing ${his} bare pussy.`);
+						r.push(`belly, revealing ${his} bare pussy.`);
 					} else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20) && (slave.belly >= 5000)) {
-						r.push(`huge erection pins ${his} skirt against ${his} `);
+						r.push(`huge erection pins ${his} skirt against ${his}`);
 						if (slave.bellyPreg > 2000) {
 							r.push(`pregnant`);
 						} else if (slave.bellyImplant > 2000) {
@@ -571,16 +571,16 @@ App.Desc.crotch = function(slave) {
 						} else {
 							r.push(`swollen`);
 						}
-						r.push(` belly, revealing ${his} bare pussy.`);
+						r.push(`belly, revealing ${his} bare pussy.`);
 					} else if ((slave.dick > 7) && canAchieveErection(slave) && (slave.devotion > 20)) {
 						r.push(`massive erection is so big that ${he}'s trapped it upwards against ${his} stomach and under ${his} top.`);
 						if (slave.boobs > 800) {
-							r.push(` Its head peeks out from ${his} cleavage and the tip rests comically under ${his} chin.`);
+							r.push(`Its head peeks out from ${his} cleavage and the tip rests comically under ${his} chin.`);
 						}
 					} else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20)) {
 						r.push(`erection is so big that ${he}'s trapped it upwards against ${his} stomach and under ${his} top.`);
 						if (slave.boobs > 800) {
-							r.push(` Its head peeks out from ${his} cleavage.`);
+							r.push(`Its head peeks out from ${his} cleavage.`);
 						}
 					} else if (slave.dick > 5) {
 						r.push(`cheerleader skirt is not designed for someone with a cock as big as ${he}rs; its lower half sticks out beneath its edge.`);
@@ -615,7 +615,7 @@ App.Desc.crotch = function(slave) {
 				case "a slave gown":
 					r.push(`${slave.slaveName}'s`);
 					if (slave.dick > 6) {
-						r.push(`lovely gown cannot hide the fact that something massive is lurking `);
+						r.push(`lovely gown cannot hide the fact that something massive is lurking`);
 						if (hasBothLegs(slave)) {
 							r.push(`between ${his} legs.`);
 						} else {
@@ -792,7 +792,7 @@ App.Desc.crotch = function(slave) {
 					break;
 				case "a kimono":
 					if (slave.dick > 3) {
-						r.push(`Despite the quality tailoring of ${slave.slaveName}'s kimono, it is clear that ${he} has something `);
+						r.push(`Despite the quality tailoring of ${slave.slaveName}'s kimono, it is clear that ${he} has something`);
 						if (hasBothLegs(slave)) {
 							r.push(`between ${his} legs.`);
 						} else {
@@ -810,7 +810,7 @@ App.Desc.crotch = function(slave) {
 					break;
 				case "a biyelgee costume":
 					if (slave.dick > 3) {
-						r.push(`Despite the quality tailoring of ${slave.slaveName}'s costume, it is clear that ${he} has something `);
+						r.push(`Despite the quality tailoring of ${slave.slaveName}'s costume, it is clear that ${he} has something`);
 						if (hasBothLegs(slave)) {
 							r.push(`between ${his} legs.`);
 						} else {
@@ -828,7 +828,7 @@ App.Desc.crotch = function(slave) {
 					break;
 				case "a dirndl":
 					if (slave.dick > 3) {
-						r.push(`Despite the quality tailoring of ${slave.slaveName}'s dirndl, it is clear that ${he} has something `);
+						r.push(`Despite the quality tailoring of ${slave.slaveName}'s dirndl, it is clear that ${he} has something`);
 						if (hasBothLegs(slave)) {
 							r.push(`between ${his} legs.`);
 						} else {
@@ -873,7 +873,7 @@ App.Desc.crotch = function(slave) {
 				case "a mini dress":
 					r.push(`${slave.slaveName}'s`);
 					if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) {
-						r.push(`massive erection is agonizingly pinned to the front of ${his} `);
+						r.push(`massive erection is agonizingly pinned to the front of ${his}`);
 						if (slave.bellyPreg > 2000) {
 							r.push(`gravid`);
 						} else if (slave.bellyImplant > 2000) {
@@ -881,9 +881,9 @@ App.Desc.crotch = function(slave) {
 						} else {
 							r.push(`swollen`);
 						}
-						r.push(` belly, entirely visible against the straining fabric of ${his} dress.`);
+						r.push(`belly, entirely visible against the straining fabric of ${his} dress.`);
 					} else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20) && (slave.belly >= 5000)) {
-						r.push(`huge erection is agonizingly pinned to the front of ${his} `);
+						r.push(`huge erection is agonizingly pinned to the front of ${his}`);
 						if (slave.bellyPreg > 2000) {
 							r.push(`gravid`);
 						} else if (slave.bellyImplant > 2000) {
@@ -891,13 +891,13 @@ App.Desc.crotch = function(slave) {
 						} else {
 							r.push(`swollen`);
 						}
-						r.push(` belly, entirely visible against the straining fabric of ${his} dress.`);
+						r.push(`belly, entirely visible against the straining fabric of ${his} dress.`);
 					} else if ((slave.dick > 7) && canAchieveErection(slave) && (slave.devotion > 20)) {
 						r.push(`massive erection ascends up ${his} chest, entirely visible against the straining fabric of ${his} dress.`);
 					} else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20)) {
 						r.push(`huge erection ascends up ${his} chest, entirely visible against the straining fabric of ${his} dress.`);
 					} else if ((slave.dick > 3) && canAchieveErection(slave) && (slave.devotion > 20) && (slave.belly >= 5000)) {
-						r.push(`erection lies flush against the bottom of ${his} `);
+						r.push(`erection lies flush against the bottom of ${his}`);
 						if (slave.bellyPreg > 2000) {
 							r.push(`gravid`);
 						} else if (slave.bellyImplant > 2000) {
@@ -905,7 +905,7 @@ App.Desc.crotch = function(slave) {
 						} else {
 							r.push(`swollen`);
 						}
-						r.push(` stomach, visible under the tight fabric of ${his} dress.`);
+						r.push(`stomach, visible under the tight fabric of ${his} dress.`);
 					} else if ((slave.dick > 3) && canAchieveErection(slave) && (slave.devotion > 20)) {
 						r.push(`erection lies flush against ${his} stomach, visible under the tight fabric of ${his} dress.`);
 					} else if (slave.dick > 5) {
@@ -1387,7 +1387,7 @@ App.Desc.crotch = function(slave) {
 					break;
 				case "a bimbo outfit":
 					if (slave.dick > 7 && canAchieveErection(slave) && slave.devotion > 20 && slave.belly >= 5000) {
-						r.push(`${slave.slaveName}'s massive erection extends from ${his} thong, traping ${his} miniskirt against the underside of ${his} `);
+						r.push(`${slave.slaveName}'s massive erection extends from ${his} thong, traping ${his} miniskirt against the underside of ${his}`);
 						if (slave.bellyPreg > 2000) {
 							r.push(`gravid`);
 						} else if (slave.bellyImplant > 2000) {
@@ -1395,9 +1395,9 @@ App.Desc.crotch = function(slave) {
 						} else {
 							r.push(`swollen`);
 						}
-						r.push(` belly.`);
+						r.push(`belly.`);
 					} else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20) && (slave.belly >= 5000)) {
-						r.push(`${slave.slaveName}'s huge erection extends from ${his} thong, traping ${his} miniskirt against the underside of ${his} `);
+						r.push(`${slave.slaveName}'s huge erection extends from ${his} thong, traping ${his} miniskirt against the underside of ${his}`);
 						if (slave.bellyPreg > 2000) {
 							r.push(`gravid`);
 						} else if (slave.bellyImplant > 2000) {
@@ -1405,7 +1405,7 @@ App.Desc.crotch = function(slave) {
 						} else {
 							r.push(`swollen`);
 						}
-						r.push(` belly.`);
+						r.push(`belly.`);
 					} else if ((slave.dick > 7) && canAchieveErection(slave) && (slave.devotion > 20)) {
 						r.push(`${slave.slaveName}'s massive erection extends from ${his} thong and juts out from beneath ${his} miniskirt.`);
 					} else if ((slave.dick > 5) && canAchieveErection(slave) && (slave.devotion > 20)) {
@@ -1430,13 +1430,13 @@ App.Desc.crotch = function(slave) {
 					break;
 				default:
 					if (slave.vagina > -1) {
-						r.push(`${slave.slaveName}'s `);
+						r.push(`${slave.slaveName}'s`);
 						if (slave.dick > 0) {
 							r.push(`hermaphroditic genitalia are`);
 						} else {
 							r.push(`pussy is`);
 						}
-						r.push(` bare and available.`);
+						r.push(`bare and available.`);
 					} else if ((slave.chastityPenis === 1)) {
 					} else if (slave.dick > 0) {
 						r.push(`${slave.slaveName}'s`);
@@ -1453,7 +1453,7 @@ App.Desc.crotch = function(slave) {
 								} else {
 									r.push(`, flaccid`);
 								}
-								r.push(` cock hangs naked.`);
+								r.push(`cock hangs naked.`);
 								break;
 							case 7:
 								r.push(`gigantic`);
@@ -1461,7 +1461,7 @@ App.Desc.crotch = function(slave) {
 								} else {
 									r.push(`, flaccid`);
 								}
-								r.push(` cock hangs naked.`);
+								r.push(`cock hangs naked.`);
 								break;
 							case 6:
 								r.push(`huge`);
@@ -1469,7 +1469,7 @@ App.Desc.crotch = function(slave) {
 								} else {
 									r.push(`, flaccid`);
 								}
-								r.push(` cock hangs naked.`);
+								r.push(`cock hangs naked.`);
 								break;
 							case 5:
 								r.push(`imposing`);
@@ -1477,7 +1477,7 @@ App.Desc.crotch = function(slave) {
 								} else {
 									r.push(`, flaccid`);
 								}
-								r.push(` cock swings naked.`);
+								r.push(`cock swings naked.`);
 								break;
 							case 4:
 								r.push(`big`);
@@ -1485,43 +1485,43 @@ App.Desc.crotch = function(slave) {
 								} else {
 									r.push(`, flaccid`);
 								}
-								r.push(` cock dangles naked.`);
+								r.push(`cock dangles naked.`);
 								break;
 							case 3:
 								if (canAchieveErection(slave)) {
 								} else {
-									r.push(` flaccid`);
+									r.push(`flaccid`);
 								}
-								r.push(` cock dangles bare.`);
+								r.push(`cock dangles bare.`);
 								break;
 							case 2:
 								r.push(`little`);
 								if (canAchieveErection(slave)) {
 								} else {
-									r.push(` flaccid`);
+									r.push(`flaccid`);
 								}
-								r.push(` dick is bare.`);
+								r.push(`dick is bare.`);
 								break;
 							case 1:
 								r.push(`tiny`);
 								if (canAchieveErection(slave)) {
 								} else {
-									r.push(` flaccid`);
+									r.push(`flaccid`);
 								}
-								r.push(` dick is bare.`);
+								r.push(`dick is bare.`);
 								break;
 							default:
 								r.push(`hypertrophied cock hangs naked.`);
 								break;
 						}
 					} else {
-						r.push(`${slave.slaveName}'s `);
+						r.push(`${slave.slaveName}'s`);
 						if (slave.balls > 0) {
 							r.push(`lonely balls are`);
 						} else {
 							r.push(`featureless groin is`);
 						}
-						r.push(` bare and vulnerable.`);
+						r.push(`bare and vulnerable.`);
 					}
 			}
 		}
diff --git a/src/npc/descriptions/crotch/vagina.js b/src/npc/descriptions/crotch/vagina.js
new file mode 100644
index 0000000000000000000000000000000000000000..0e88c771aa8292232c43e5d358183e728c91e88d
--- /dev/null
+++ b/src/npc/descriptions/crotch/vagina.js
@@ -0,0 +1,710 @@
+App.Desc.vagina = function(slave) {
+	const r = [];
+	const {
+		he, him, his, hers, himself, boy, He, His
+	} = getPronouns(slave);
+
+	if (slave.dick > 0) {
+		if (slave.vagina > -1) {
+			r.push(`${His}`);
+			if (slave.genes === "XX") {
+				r.push(`beautifully natural`);
+			} else if (slave.ovaries === 1) {
+				r.push(`finely crafted`);
+			} else {
+				r.push(`artificial`);
+			}
+			r.push(`vagina is located beneath the base of ${his} penis,`);
+			if (slave.fuckdoll > 0) {
+				r.push(`just after the suit's material stops to bare ${his} front hole.`);
+			} else if ((slave.scrotum > 3) && (slave.balls <= slave.scrotum)) {
+				r.push(`though it is almost completely hidden by ${his} hanging ballsack.`);
+			} else if ((slave.scrotum > 1) && (slave.balls > 0)) {
+				r.push(`its upper part concealed by ${his} balls.`);
+			} else if (canAchieveErection(slave)) {
+				r.push(`and merges seamlessly into ${his} shaft.`);
+			} else {
+				if (slave.dick > 3) {
+					r.push(`though it is almost completely hidden by ${his} soft cockmeat.`);
+				} else {
+					r.push(`which acts as a soft little dickclit for it.`);
+				}
+			}
+			if (slave.clit === 0) {
+				r.push(`The base of ${his} cock is located where the clitoris would be on a normal woman.`);
+			}
+		}
+	}
+
+	if (slave.vagina > -1) {
+		if (slave.vagina === 0) {
+			r.push(`${He} is a <span class="lime">virgin.</span> ${His} pussy is fresh,`);
+		} else if (slave.vagina === 1) {
+			r.push(`${His} pussy is tight and appealing,`);
+		} else if (slave.vagina === 2) {
+			r.push(`${His} pussy is reasonably tight,`);
+		} else if (slave.vagina === 3) {
+			r.push(`${His} pussy is loose,`);
+		} else if (slave.vagina >= 10) {
+			r.push(`${His} pussy has been completely ruined from hundreds of births. One could fit their arm into it with minimal effort and ${he} can barely get off from vaginal sex now. ${His} pussy is abyssal,`);
+		} else if (slave.vagina > 3) {
+			r.push(`${His} pussy is utterly cavernous,`);
+		}
+
+		if (slave.labia === 0) {
+			r.push(`with minimal`);
+		} else if (slave.labia === 1) {
+			r.push(`with big puffy`);
+		} else if (slave.labia === 2) {
+			r.push(`with huge`);
+		} else {
+			r.push(`with huge dangling`);
+		}
+
+		if (V.seeRace === 1) {
+			if (slave.race === "white") {
+				r.push(`pink pussylips.`);
+			} else if (slave.race === "asian") {
+				r.push(`dark ${slave.race} pussylips.`);
+			} else if (slave.race === "middle eastern") {
+				r.push(`dark ${slave.race} pussylips.`);
+			} else if (slave.race === "latina") {
+				r.push(`dark ${slave.race} pussylips.`);
+			} else if (slave.race === "black") {
+				r.push(`dark ${slave.race} pussylips.`);
+			} else {
+				r.push(`${slave.skin} pussylips.`);
+			}
+		} else {
+			r.push(`${slave.skin} pussylips.`);
+		}
+
+		if (slave.vagina > -1) {
+			if (slave.vaginaLube === 0) {
+				if (slave.vagina > 0 && !(slave.chastityVagina)) {
+					r.push(`${He} produces very little natural wetness, so ${he} is`);
+					if (slave.fuckdoll === 0) {
+						r.push(`required to keep ${him}self`);
+					} else {
+						r.push(`is kept`);
+					}
+					r.push(`artificially lubricated for anyone who wishes to use ${his} cunt.`);
+				} else {
+					r.push(`${He} produces very little natural wetness.`);
+				}
+				if (slave.prostate !== 0) {
+					if (slave.dick === 0) {
+						r.push(`In stark contrast, however, ${he}'s been given a functional prostate gland. It's attached to ${his} urethra, of course, so despite ${his} dryness, ${he} squirts`);
+						if (slave.balls > 0) {
+							r.push(`semen`);
+						} else {
+							r.push(`fluid`);
+						}
+						r.push(`when ${he} orgasms.`);
+						if (slave.prostate > 2) {
+							r.push(`With the implant embedded in it, that squirt is more like a blast; ${he} will soak ${him}self and anyone near ${him}.`);
+						}
+					}
+				}
+			} else if ((slave.vaginaLube < 2)) {
+				if (slave.assignment === "work in the dairy" && V.dairyPregSetting > 1) {
+					r.push(`The dildo's ejaculate includes a drug that causes copious, constant vaginal lubrication, allowing it to fuck ${him} despite its giant size. The excess female fluid drips off ${him} and into a catch basin.`);
+				} else if ((slave.aphrodisiacs > 0) || (slave.inflationType === "aphrodisiac")) {
+					r.push(`The aphrodisiacs have them`);
+					if (slave.aphrodisiacs > 1 || (slave.inflationType === "aphrodisiac" && slave.inflation >= 2)) {
+						r.push(`sopping`);
+					}
+					r.push(`wet.`);
+				} else if ((slave.energy > 95)) {
+					r.push(`As a nympho, ${he}'s almost constantly wet.`);
+				} else if ((slave.fetishStrength > 60) && (slave.fetishKnown === 1)) {
+					r.push(`Judging by how wet ${he} is, ${he}'s probably fantasizing about`);
+					switch (slave.fetish) {
+						case "buttslut":
+							r.push(`being buttfucked.`);
+							break;
+						case "cumslut":
+							r.push(`being facefucked.`);
+							break;
+						case "humiliation":
+							r.push(`being humiliated.`);
+							break;
+						case "submissive":
+							r.push(`submission.`);
+							break;
+						case "dom":
+							r.push(`dominating someone.`);
+							break;
+						case "sadist":
+							r.push(`hurting someone.`);
+							break;
+						case "masochist":
+							r.push(`pain.`);
+							break;
+						case "pregnancy":
+							if (slave.pregKnown) {
+								r.push(`having another`);
+								if (slave.pregType > 1) {
+									r.push(`brood`);
+								} else {
+									r.push(`child`);
+								}
+								r.push(`after this one.`);
+							} else {
+								r.push(`getting pregnant.`);
+							}
+							break;
+						case "boobs":
+							r.push(`boobs.`);
+							break;
+						default:
+							r.push(`getting fucked.`);
+							break;
+					}
+				} else if ((slave.devotion > 50)) {
+					r.push(`As a devoted sex slave, ${he} has no trouble keeping ${him}self wet for ${his} ${WrittenMaster(slave)}.`);
+				} else if ((slave.devotion > 20)) {
+					r.push(`As an obedient sex slave, ${he} does ${his} best to keep ${him}self wet for ${his} ${WrittenMaster(slave)}.`);
+				}
+				if (slave.prostate !== 0) {
+					if (slave.dick === 0) {
+						r.push(`Bizarrely, ${he}'s been given a functional prostate gland. It's attached to ${his} urethra, of course,`);
+						if (slave.balls > 0) {
+							r.push(`which in combination with ${his} testicles make ${his} squirt copious amounts of fluids and semen with each orgasm.`);
+						} else {
+							r.push(`so ${he} squirts copiously when ${he} orgasms.`);
+						}
+						if (slave.prostate > 2) {
+							r.push(`With the implant embedded in it; that gush is more like a flood. Changes of clothes are a must with ${him}, as ${he} can and will soak both you, ${him}self and what ${he} is getting fucked over.`);
+						}
+					}
+				}
+			} else {
+				if (slave.assignment === "work in the dairy" && V.dairyPregSetting > 1) {
+					r.push(`The dildo's ejaculate includes a drug that encourages vaginal lubrication, which is having a drastic effect on ${him}, since ${he}'s already very gifted in that regard. The dildo makes a wet noise every time it thrusts into ${him}, and femcum streams into a catch basin beneath ${him}. The smell of pussy is overwhelming.`);
+				} else if ((slave.aphrodisiacs > 0) || (V.saleDescription === 1 && V.gingering === "vasodilator") || (slave.inflationType === "aphrodisiac")) {
+					r.push(`The combination of the aphrodisiacs and ${his} natural tendency to produce a lot of female lubricant is having a drastic effect. ${His} cunt is absolutely beribboned with femcum, and ${he} smells strongly of wet, clean pussy.`);
+				} else if ((slave.energy > 95)) {
+					r.push(`${He} has a naturally wet cunt, and in combination with ${his} nymphomania, it's soaking. ${He} smells of good clean female arousal.`);
+				} else if ((slave.fetishStrength > 60) && (slave.fetishKnown === 1)) {
+					r.push(`${His} naturally wet cunt is almost dripping female lubricant, and ${he} smells of good clean female arousal. ${He}'s probably fantasizing about`);
+					switch (slave.fetish) {
+						case "buttslut":
+							r.push(`being buttfucked.`);
+							break;
+						case "cumslut":
+							r.push(`being facefucked.`);
+							break;
+						case "humiliation":
+							r.push(`being humiliated.`);
+							break;
+						case "submissive":
+							r.push(`submission.`);
+							break;
+						case "dom":
+							r.push(`dominating someone.`);
+							break;
+						case "sadist":
+							r.push(`hurting someone.`);
+							break;
+						case "masochist":
+							r.push(`pain.`);
+							break;
+						case "pregnancy":
+							if (slave.pregKnown === 1) {
+								r.push(`growing rounder.`);
+							} else {
+								r.push(`getting pregnant.`);
+							}
+							break;
+						case "boobs":
+							r.push(`boobs.`);
+							break;
+						default:
+							r.push(`getting fucked.`);
+					}
+				} else if ((slave.devotion > 50)) {
+					r.push(`${His} cunt is almost always soaking wet, but being near you has ${his} almost dripping.`);
+				} else if ((slave.devotion > 20)) {
+					r.push(`${His} cunt is almost always soaking wet, and being near you isn't affecting that.`);
+				} else {
+					r.push(`${His} cunt is almost always soaking wet, regardless of ${his} feelings.`);
+				}
+				if (slave.prostate !== 0) {
+					if (slave.dick === 0) {
+						r.push(`Bizarrely, ${he}'s been given a functional prostate gland. It's attached to ${his} urethra, of course,`);
+						if (slave.balls > 0) {
+							r.push(`which in combination with ${his} testicles make ${his} squirt unreasonable volume of fluids and semen with each orgasm.`);
+						} else {
+							r.push(`meaning that when ${he} orgasms, ${he} squirts an unreasonable volume of fluid.`);
+						}
+						if (slave.prostate > 2) {
+							r.push(`With the implant embedded in it, that gush is insane. Everything around ${him} is at risk of being splashed. Changes of clothes are a must with ${him}, as are supplies to mop up afterwards.`);
+						}
+					}
+				}
+			}
+		}
+		r.push(App.Desc.vaginalAccessory(slave));
+	}
+
+	if (slave.ovaImplant !== 0) {
+		switch (slave.ovaImplant) {
+			case "fertility":
+				r.push(`${His} ovaries have a pair of implants attached to them to encourage`);
+				if (slave.preg < -1) {
+					r.push(`ovulation, not that it does ${him} any good`);
+				} else {
+					r.push(`ovulation.`);
+				}
+				break;
+			case "sympathy":
+				r.push(`${His} ovaries have a pair of linked implants attached to them so that when one releases an egg the other does so as well.`);
+				break;
+			case "asexual":
+				r.push(`One of ${his} ovaries has been replaced with a fabricated sperm sack designed to fertilize any eggs ${he} makes.`);
+				break;
+		}
+	}
+
+	if (slave.dick === 0 && slave.balls === 0 && slave.vagina < 0 && V.arcologies[0].FSRestart > 60) {
+		r.push(`Society looks fondly on ${his} complete inability to reproduce.`);
+	}
+
+
+	if (slave.dick === 0) {
+		if (slave.clit > 0) {
+			if (slave.foreskin === 0) {
+				if (slave.clit === 1) {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit is quite large and visibly hard.`);
+					} else {
+						r.push(`${His} clit is quite large.`);
+					}
+					r.push(`${His} lack of hood makes it even more prominent.`);
+				} else if ((slave.clit === 2)) {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit is huge and visibly erect.`);
+					} else {
+						r.push(`${His} clit is huge.`);
+					}
+					r.push(`Lack of hood combined with its size means ${he} can't wear any clothes without being constantly stimulated.`);
+				} else if ((slave.clit === 3)) {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit is enormous, and since it's erect with arousal, it juts out proudly.`);
+					} else {
+						r.push(`${His} clit is enormous, almost a pseudophallus.`);
+					}
+				} else if ((slave.clit === 4)) {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit has reached the size of an average penis, it stands at attention but due to lack of erectile tissues it can't reach the same hardness a penis would.`);
+					} else {
+						r.push(`${His} clit has reached the size of an average penis.`);
+					}
+				} else {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit is massive, having reached the size of a large penis. It is semi-erect since lack of erectile tissues means it can never become fully erect.`);
+					} else {
+						r.push(`${His} clit is massive, having reached the size of a large penis.`);
+					}
+				}
+			} else if ((slave.foreskin === 1)) {
+				if (slave.clit === 1) {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit is quite large and visibly hard.`);
+					} else {
+						r.push(`${His} clit is quite large.`);
+					}
+					r.push(`${His} clitoral hood is stretched thin trying to cover it.`);
+				} else if ((slave.clit === 2)) {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit is huge and visibly erect.`);
+					} else {
+						r.push(`${His} clit is huge.`);
+					}
+					r.push(`${His} small hood is no longer able to cover it completely and large part of ${his} clitoris is always exposed.`);
+				} else if ((slave.clit === 3)) {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit is enormous, and since it's erect with arousal, it juts out proudly.`);
+					} else {
+						r.push(`${His} clit is enormous, almost a pseudophallus.`);
+					}
+					r.push(`${His} hood can no longer contain it and has slid back causing ${his} clitoris to be always exposed.`);
+				} else if ((slave.clit === 4)) {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit has reached the size of an average penis, it stands at attention but due to lack of erectile tissues it can't reach the same hardness a penis would.`);
+					} else {
+						r.push(`${His} clit has reached the size of an average penis.`);
+					}
+					r.push(`${His} hood can no longer contain it and has slid back causing ${his} clitoris to be always exposed.`);
+				} else {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit is massive, having reached the size of a large penis. It is semi-erect since lack of erectile tissues means it can never become fully erect.`);
+					} else {
+						r.push(`${His} clit is massive, having reached the size of a large penis.`);
+					}
+					r.push(`${His} hood can no longer contain it and has slid back causing ${his} clitoris to be always exposed.`);
+				}
+			} else if ((slave.foreskin === 2)) {
+				if (slave.clit === 1) {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit is quite large and visibly hard.`);
+					} else {
+						r.push(`${His} clit is quite large.`);
+					}
+					r.push(`It is completely covered by its hood.`);
+				} else if ((slave.clit === 2)) {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit is huge and visibly erect.`);
+					} else {
+						r.push(`${His} clit is huge.`);
+					}
+					r.push(`Its hood is stretched thin trying to cover it.`);
+				} else if ((slave.clit === 3)) {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit is enormous, and since it's erect with arousal, it juts out proudly.`);
+					} else {
+						r.push(`${His} clit is enormous, almost a pseudophallus.`);
+					}
+					r.push(`It's large enough that the hood can cover only half of it.`);
+				} else if ((slave.clit === 4)) {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit has reached the size of an average penis, it stands at attention but due to lack of erectile tissues it can't reach the same hardness a penis would.`);
+					} else {
+						r.push(`${His} clit has reached the size of an average penis.`);
+					}
+					r.push(`${His} hood can no longer contain it and has slid back causing ${his} clitoris to be always exposed.`);
+				} else {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit is massive, having reached the size of a large penis. It is semi-erect since lack of erectile tissues means it can never become fully erect.`);
+					} else {
+						r.push(`${His} clit is massive, having reached the size of a large penis.`);
+					}
+					r.push(`${His} hood can no longer contain it and has slid back causing ${his} clitoris to be always exposed.`);
+				}
+			} else if ((slave.foreskin === 3)) {
+				if (slave.clit === 1) {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit is quite large and visibly hard.`);
+					} else {
+						r.push(`${His} clit is quite large.`);
+					}
+					r.push(`The hood covering it is quite large making stimulation difficult.`);
+				} else if ((slave.clit === 2)) {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit is huge and visibly erect.`);
+					} else {
+						r.push(`${His} clit is huge.`);
+					}
+					r.push(`${His} large hood completely covers it.`);
+				} else if ((slave.clit === 3)) {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit is enormous, and since it's erect with arousal, it juts out proudly.`);
+					} else {
+						r.push(`${His} clit is enormous, almost a pseudophallus.`);
+					}
+					r.push(`${His} large hood covers all but the tip of ${his} clit even when aroused.`);
+				} else if ((slave.clit === 4)) {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit has reached the size of an average penis, it stands at attention but due to lack of erectile tissues it can't reach the same hardness a penis would.`);
+					} else {
+						r.push(`${His} clit has reached the size of an average penis.`);
+					}
+					r.push(`Even ${his} large hood can't cover it, leaving over half of the clit exposed.`);
+				} else {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit is massive, having reached the size of a large penis. It is semi-erect since lack of erectile tissues means it can never become fully erect.`);
+					} else {
+						r.push(`${His} clit is massive, having reached the size of a large penis.`);
+					}
+					r.push(`${His} hood can no longer contain it and has slid back causing ${his} clitoris to be always exposed.`);
+				}
+			} else {
+				if (slave.clit === 1) {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit is quite large and visibly hard.`);
+					} else {
+						r.push(`${His} clit is quite large.`);
+					}
+					r.push(`${His} large thick hood covering it makes any stimulation difficult.`);
+				} else if ((slave.clit === 2)) {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit is huge and visibly erect.`);
+					} else {
+						r.push(`${His} clit is huge.`);
+					}
+					r.push(`${His} large thick hood covering it makes any stimulation difficult.`);
+				} else if ((slave.clit === 3)) {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit is enormous, and since it's erect with arousal, it juts out proudly.`);
+					} else {
+						r.push(`${His} clit is enormous, almost a pseudophallus.`);
+					}
+					r.push(`Matching its size is the thick hood covering it.`);
+				} else if ((slave.clit === 4)) {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit has reached the size of an average penis, it stands at attention but due to lack of erectile tissues it can't reach the same hardness a penis would.`);
+					} else {
+						r.push(`${His} clit has reached the size of an average penis.`);
+					}
+					r.push(`${His} large hood covering over half of it adds to its penis-like appearance.`);
+				} else {
+					if (slave.devotion > 50) {
+						r.push(`${His} clit is massive, having reached the size of a large penis. It is semi-erect, since lack of erectile tissues means it can never reach full erection.`);
+					} else {
+						r.push(`${His} clit is massive, having reached the size of a large penis.`);
+					}
+					r.push(`Not even its large hood can contain it, leaving over half of it exposed.`);
+				}
+			}
+		}
+	}
+
+	r.push(App.Desc.mods(slave, "vagina"));
+	r.push(App.Desc.mods(slave, "clit"));
+
+	if (slave.fuckdoll === 0) {
+		if (slave.rules.release.masturbation === 1) {
+			if ((slave.aphrodisiacs > 0 || slave.inflationType === "aphrodisiac") && slave.drugs !== "priapism agents") {
+				if ((slave.aphrodisiacs > 1) || (slave.inflationType === "aphrodisiac" && slave.inflation > 1)) {
+					if (slave.dick !== 0 && slave.hormoneBalance >= 100 && (!hasAnyArms(slave))) {
+						r.push(`The extreme dose of aphrodisiacs combined with the hormones that keep ${him} flaccid have ${him} in a state of extreme sexual frustration; ${he}'s`);
+						if ((slave.fetish === "buttslut") || ((slave.sexualFlaw !== "hates anal") && (slave.counter.anal > 9))) {
+							r.push(`unconsciously humping ${his} ass against whatever's next to ${him} for anal stimulation and`);
+						}
+						r.push(`humping ${his} dick against whatever ${he} can manage to mount without limbs.`);
+						if (slave.inflationType === "aphrodisiac") {
+							r.push(`${His} efforts force ${his} distended middle to jiggle around, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more.`);
+						}
+					} else if ((slave.dick !== 0) && (slave.balls > 0) && slave.ballType === "sterile" && (!hasAnyArms(slave))) {
+						r.push(`The extreme dose of aphrodisiacs combined with the chemical castration that keeps ${him} flaccid have ${him} in a state of extreme sexual frustration; ${he}'s`);
+						if ((slave.fetish === "buttslut") || ((slave.sexualFlaw !== "hates anal") && (slave.counter.anal > 9))) {
+							r.push(`unconsciously humping ${his} ass against whatever's next to ${him} for anal stimulation and`);
+						}
+						r.push(`humping ${his} limp dick against whatever ${he} can manage to mount without limbs.`);
+						if (slave.inflationType === "aphrodisiac") {
+							r.push(`${His} efforts force ${his} distended middle to jiggle around, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more.`);
+						}
+					} else if ((slave.dick !== 0) && (slave.balls === 0) && (!hasAnyArms(slave))) {
+						r.push(`The extreme dose of aphrodisiacs combined with the lack of balls that keeps ${him} flaccid have ${him} in a state of extreme sexual frustration; ${he}'s`);
+						if ((slave.fetish === "buttslut") || ((slave.sexualFlaw !== "hates anal") && (slave.counter.anal > 9))) {
+							r.push(`unconsciously humping ${his} ass against whatever's next to ${him} for anal stimulation and`);
+						}
+						r.push(`humping ${his} limp dick against whatever ${he} can manage to mount without limbs.`);
+						if (slave.inflationType === "aphrodisiac") {
+							r.push(`${His} efforts force ${his} distended middle to jiggle around, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more.`);
+						}
+					} else if ((slave.dick !== 0) && (slave.hormoneBalance >= 100)) {
+						r.push(`The extreme dose of aphrodisiacs combined with the hormones that keep ${him} flaccid have ${him} in a state of extreme sexual frustration; ${he}'s rubbing ${his} limp dick`);
+						if ((slave.fetish === "buttslut") || ((slave.sexualFlaw !== "hates anal") && (slave.counter.anal > 9))) {
+							r.push(`distractedly and unconsciously humping ${his} ass against whatever's next to ${him} for anal stimulation.`);
+						} else {
+							r.push(`distractedly.`);
+						}
+						if (slave.inflationType === "aphrodisiac") {
+							r.push(`${His} efforts force ${his} distended middle to jiggle around, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more.`);
+						}
+					} else if ((slave.dick !== 0) && (slave.balls === 0)) {
+						r.push(`The extreme dose of aphrodisiacs combined with the lack of balls that keeps ${him} flaccid have ${him} in a state of extreme sexual frustration; ${he}'s rubbing ${his} limp dick distractedly`);
+						if ((slave.fetish === "buttslut") || ((slave.sexualFlaw !== "hates anal") && (slave.counter.anal > 9))) {
+							r.push(`distractedly and unconsciously humping ${his} ass against whatever's next to ${him} for anal stimulation.`);
+						} else {
+							r.push(`distractedly.`);
+						}
+						if (slave.inflationType === "aphrodisiac") {
+							r.push(`${His} efforts force ${his} distended middle to jiggle around, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more.`);
+						}
+					} else if ((slave.dick !== 0) && !canAchieveErection(slave)) {
+						r.push(`The extreme dose of aphrodisiacs combined with ${his} inability to become erect have ${him} in a state of extreme sexual frustration; ${he}'s rubbing ${his} limp dick distractedly`);
+						if ((slave.fetish === "buttslut") || ((slave.sexualFlaw !== "hates anal") && (slave.counter.anal > 9))) {
+							r.push(`distractedly and unconsciously humping ${his} ass against whatever's next to ${him} for anal stimulation.`);
+						} else {
+							r.push(`distractedly.`);
+						}
+						if (slave.inflationType === "aphrodisiac") {
+							r.push(`${His} efforts force ${his} distended middle to jiggle around, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more.`);
+						}
+					} else if ((slave.dick !== 0)) {
+						r.push(`The extreme dose of aphrodisiacs has ${his} cock painfully erect and leaves precum dripping from its head.`);
+					}
+				} else {
+					if (slave.dick !== 0 && slave.hormoneBalance >= 100 && (!hasAnyArms(slave))) {
+						r.push(`The aphrodisiacs combined with the hormones that keep ${him} flaccid have ${him} sexually frustrated; ${he}'s`);
+						if ((slave.fetish === "buttslut") || ((slave.sexualFlaw !== "hates anal") && (slave.counter.anal > 9))) {
+							r.push(`unconsciously rubbing ${his} ass against whatever's next to ${him}, and`);
+						}
+						r.push(`humping ${his} dick against whatever ${he} can manage to mount without limbs.`);
+						if (slave.inflationType === "aphrodisiac") {
+							r.push(`${His} efforts force ${his} distended middle to jiggle around, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more.`);
+						}
+					} else if ((slave.dick !== 0) && (slave.balls > 0) && slave.ballType === "sterile" && (!hasAnyArms(slave))) {
+						r.push(`The aphrodisiacs combined with the chemical castration that keeps ${him} flaccid have ${him} sexually frustrated; ${he}'s`);
+						if ((slave.fetish === "buttslut") || ((slave.sexualFlaw !== "hates anal") && (slave.counter.anal > 9))) {
+							r.push(`unconsciously rubbing ${his} ass against whatever's next to ${him}, and`);
+						}
+						r.push(`humping ${his} dick against whatever ${he} can manage to mount without limbs.`);
+						if (slave.inflationType === "aphrodisiac") {
+							r.push(`${His} efforts force ${his} distended middle to jiggle around, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more.`);
+						}
+					} else if ((slave.dick !== 0) && (slave.balls === 0) && (!hasAnyArms(slave))) {
+						r.push(`The aphrodisiacs combined with the lack of balls that keeps ${him} flaccid have ${him} sexually frustrated; ${he}'s`);
+						if ((slave.fetish === "buttslut") || ((slave.sexualFlaw !== "hates anal") && (slave.counter.anal > 9))) {
+							r.push(`unconsciously rubbing ${his} ass against whatever's next to ${him}, and`);
+						}
+						r.push(`humping ${his} dick against whatever ${he} can manage to mount without limbs.`);
+						if (slave.inflationType === "aphrodisiac") {
+							r.push(`${His} efforts force ${his} distended middle to jiggle around, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more.`);
+						}
+					} else if ((slave.dick !== 0) && (slave.hormoneBalance >= 100)) {
+						r.push(`The aphrodisiacs combined with the hormones that keep ${him} flaccid have ${him} sexually frustrated; ${he}'s touching ${his} limp dick distractedly`);
+						if ((slave.fetish === "buttslut") || ((slave.sexualFlaw !== "hates anal") && (slave.counter.anal > 9))) {
+							r.push(`distractedly and unconsciously rubbing ${his} ass against whatever's next to ${him}.`);
+						} else {
+							r.push(`distractedly.`);
+						}
+						if (slave.inflationType === "aphrodisiac") {
+							r.push(`${His} efforts force ${his} distended middle to jiggle around, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more.`);
+						}
+					} else if ((slave.dick !== 0) && (slave.balls === 0)) {
+						r.push(`The aphrodisiacs combined with the lack of balls that keeps ${him} flaccid have ${him} sexually frustrated; ${he}'s touching ${his} limp dick distractedly`);
+						if ((slave.fetish === "buttslut") || ((slave.sexualFlaw !== "hates anal") && (slave.counter.anal > 9))) {
+							r.push(`distractedly and unconsciously rubbing ${his} ass against whatever's next to ${him}.`);
+						} else {
+							r.push(`distractedly.`);
+						}
+						if (slave.inflationType === "aphrodisiac") {
+							r.push(`${His} efforts force ${his} distended middle to jiggle around, stirring up the aphrodisiacs contained in ${his} gut and strengthening their effects even more.`);
+						}
+					}
+				}
+			}
+		}
+	}
+
+	if (slave.fuckdoll > 0) {
+		if (slave.vagina > 0) {
+			r.push(`${His} front hole`);
+			if (slave.fuckdoll <= 45) {
+				r.push(`is mostly useful when ${he}'s restrained for rape.`);
+			} else {
+				r.push(`will massage`);
+				if (V.PC.dick !== 0) {
+					r.push(`cocks`);
+				} else {
+					r.push(`anything`);
+				}
+				r.push(`placed inside it on command.`);
+				if (slave.fuckdoll <= 85) {
+					r.push(`${He} is even capable of riding`);
+					if (V.PC.dick !== 0) {
+						r.push(`dick.`);
+					} else {
+						r.push(`a strap-on.`);
+					}
+				}
+			}
+		}
+	} else {
+		if (slave.vagina === -1) {
+			if (V.seeDicks >= 100) {
+			} else if (slave.anus === 0) {
+			} else {
+				r.push(`Since ${he} lacks a vagina, ${he} takes it up`);
+				if (V.seeRace === 1) {
+					r.push(`${his} ${slave.race}`);
+				} else {
+					r.push(`the`);
+				}
+				r.push(`ass instead.`);
+			}
+		} else if (slave.skill.vaginal >= 100) {
+			r.push(`${He} is a <span class="aquamarine">vanilla sex master.</span>`);
+		} else if (slave.skill.vaginal > 60) {
+			r.push(`${He} is a <span class="aquamarine">vanilla sex expert.</span>`);
+		} else if (slave.skill.vaginal > 30) {
+			r.push(`${He} is <span class="aquamarine">skilled at vanilla sex.</span>`);
+		} else if (slave.skill.vaginal > 10) {
+			r.push(`${He} has <span class="aquamarine">basic knowledge about vanilla sex.</span>`);
+		} else {
+			r.push(`${He} is unskilled at vaginal sex.`);
+		}
+	}
+
+	r.push(App.Desc.mods(slave, "pubic mound"));
+
+	let _pubertyAge = Math.min(slave.pubertyAgeXX, slave.pubertyAgeXY);
+	if (slave.physicalAge < _pubertyAge - 2) {
+		r.push(`${He} is too sexually immature to have pubic hair.`);
+	} else if ((slave.pubicHStyle === "hairless")) {
+		r.push(`${He}'s naturally smooth and hairless.`);
+	} else if ((slave.pubicHStyle === "bald")) {
+		r.push(`${He} is no longer able to grow pubic hair leaving ${him} hairless and smooth.`);
+	} else if ((slave.pubicHStyle === "waxed")) {
+		if (slave.fuckdoll > 0) {
+			r.push(`${His} pubic hair has been removed to prevent chafing.`);
+		} else if ((slave.assignment === "work in the dairy") && (V.dairyRestraintsSetting > 1)) {
+			r.push(`${His} pubic hair has been removed to prevent chafing.`);
+		} else {
+			r.push(`${He}'s waxed and smooth.`);
+		}
+	} else if ((slave.physicalAge < _pubertyAge - 1)) {
+		r.push(`${He} has a few wisps of pubic hair.`);
+	} else if ((slave.physicalAge < _pubertyAge)) {
+		r.push(`${He} is on the verge of puberty and has a small patch of ${slave.pubicHColor} pubic hair above ${his}`);
+		if (slave.dick > 0) {
+			r.push(`cock.`);
+		} else if (slave.vagina === -1) {
+			r.push(`smoothness.`);
+		} else {
+			r.push(`pussy.`);
+		}
+	} else if ((slave.pubicHStyle === "in a strip")) {
+		r.push(`${His} ${slave.pubicHColor} pubic hair is waxed into a narrow strip above ${his}`);
+		if (slave.dick > 0) {
+			r.push(`cock.`);
+		} else if (slave.vagina === -1) {
+			r.push(`smoothness.`);
+		} else {
+			r.push(`pussy.`);
+		}
+	} else if ((slave.pubicHStyle === "neat")) {
+		r.push(`${His} ${slave.pubicHColor} pubic hair is waxed into a neat patch above ${his}`);
+		if (slave.dick > 0) {
+			r.push(`cock.`);
+		} else if (slave.vagina === -1) {
+			r.push(`smoothness.`);
+		} else {
+			r.push(`pussy.`);
+		}
+	} else if ((slave.pubicHStyle === "bushy in the front and neat in the rear")) {
+		r.push(`${His} ${slave.pubicHColor} pubic hair forms a natural bush above ${his}`);
+		if (slave.dick > 0) {
+			r.push(`cock.`);
+		} else if (slave.vagina === -1) {
+			r.push(`smoothness.`);
+		} else {
+			r.push(`pussy.`);
+		}
+	} else if ((slave.pubicHStyle === "bushy")) {
+		r.push(`${His} ${slave.pubicHColor} pubic hair forms a natural bush above ${his}`);
+		if (slave.dick > 0) {
+			r.push(`cock.`);
+		} else if (slave.vagina === -1) {
+			r.push(`smoothness.`);
+		} else {
+			r.push(`pussy.`);
+		}
+	} else if ((slave.pubicHStyle === "very bushy")) {
+		r.push(`${His} ${slave.pubicHColor} pubic hair forms a dense bush above ${his}`);
+		if (slave.dick > 0) {
+			r.push(`cock`);
+		} else if (slave.vagina === -1) {
+			r.push(`smoothness`);
+		} else {
+			r.push(`pussy`);
+		}
+		r.push(`that trails up to ${his} navel.`);
+	}
+
+	return r.join(" ");
+};
diff --git a/src/npc/descriptions/crotch/vaginalAccessory.js b/src/npc/descriptions/crotch/vaginalAccessory.js
new file mode 100644
index 0000000000000000000000000000000000000000..ee7b25d9e5416229eb53fc6e496fb96803ed1e6e
--- /dev/null
+++ b/src/npc/descriptions/crotch/vaginalAccessory.js
@@ -0,0 +1,94 @@
+App.Desc.vaginalAccessory = function(slave) {
+	const r = [];
+	const {
+		he, him, his, hers, himself, boy, He, His
+	} = getPronouns(slave);
+	let held;
+	if (slave.chastityVagina) {
+		held = "held in place by a chastity belt";
+	} else if (slave.vaginalAccessory === "bullet vibrator" || slave.vaginalAccessory === "smart bullet vibrator") {
+		held = "held in place by a strap";
+	} else {
+		held = `held in place by a strap, which ${he} can remove for vaginal intercourse`;
+	}
+	switch (slave.vaginalAccessory) {
+		case "bullet vibrator":
+		case "smart bullet vibrator":	// FIXME: two different descriptions?
+			r.push(`A bullet vibrator is attached on ${his} clit, ${held}.`);	// FIXME: not super happy with this
+			break;
+		case "dildo":
+			/* TODO: these may need to be updated for slaves with gaping+ vaginas */
+			r.push(`${His} pussy is filled by a dildo ${held}.`);
+			break;
+		case "long dildo":
+			r.push(`${His} pussy is filled by a very long dildo ${held}. It noticeably bulges ${his} stomach.`);
+			break;
+		case "large dildo":
+			r.push(`${His} pussy is`);
+			if (slave.vagina < 2) {
+				r.push(`painfully stretched`);
+			} else if (slave.vagina < 3) {
+				r.push(`uncomfortably filled`);
+			} else {
+				r.push(`comfortably filled`);
+			}
+			r.push(`by a large dildo ${held}.`);
+			break;
+		case "long, large dildo":
+			r.push(`${His} pussy is`);
+			if (slave.vagina < 2) {
+				r.push(`painfully stretched`);
+			} else if (slave.vagina < 3) {
+				r.push(`uncomfortably filled`);
+			} else {
+				r.push(`comfortably filled`);
+			}
+			r.push(`by a very long and large dildo ${held}. It noticeably bulges ${his} stomach.`);
+			break;
+		case "huge dildo":
+			if (slave.vagina < 4) {
+				r.push(`${His} pussy is filled to the breaking point by an enormous dildo.`);
+				if (slave.fetish === "masochist" && slave.fetishKnown === 1 && slave.fetishStrength > 60) {
+					r.push(`${He} can barely move with the discomfort, but ${he} frequently climaxes with agony.`);
+				} else {
+					r.push(`${He} can barely move with the discomfort, and ${he} sometimes breaks down in tears at having ${his} cunt permanently stretched.`);
+				}
+			} else {
+				r.push(`${His} cavernous pussy is comfortably filled by a huge dildo.`);
+			}
+			if (slave.chastityVagina) {
+				r.push(`A chastity belt locks it securely in place.`);
+			}
+			break;
+		case "long, huge dildo":
+			if (slave.vagina < 4) {
+				r.push(`${His} pussy is filled to the breaking point by an enormously wide and long dildo. It noticeably bulges ${his} stomach.`);
+				if (slave.fetish === "masochist" && slave.fetishKnown === 1 && slave.fetishStrength > 60) {
+					r.push(`${He} can barely move with the discomfort, but ${he} frequently climaxes with agony.`);
+				} else {
+					r.push(`${He} can barely move with the discomfort, and ${he} sometimes breaks down in tears at having ${his} cunt permanently stretched.`);
+				}
+			} else {
+				r.push(`${His} cavernous pussy is comfortably filled by an enormously wide and long dildo. It noticeably bulges ${his} stomach.`);
+			}
+			if (slave.chastityVagina) {
+				r.push(`A chastity belt locks it securely in place.`);
+			}
+			break;
+		default:
+			if (slave.chastityVagina) {
+				r.push(`${His} pussy is protected by a chastity`);
+				if (slave.clothes !== "no clothing") {
+					r.push(`belt worn under ${his} clothing.`);
+				} else {
+					r.push(`belt.`);
+				}
+			}
+			break;
+	}
+	if (slave.chastityVagina && V.arcologies[0].FSRestart !== "unset") {
+		r.push(`This pleases the Societal Elite.`);
+	}
+
+	return r.join(" ");
+};
diff --git a/src/npc/descriptions/ears.js b/src/npc/descriptions/ears.js
new file mode 100644
index 0000000000000000000000000000000000000000..b225c362503c3db5ffe4673145fd44cb38403760
--- /dev/null
+++ b/src/npc/descriptions/ears.js
@@ -0,0 +1,117 @@
+App.Desc.ears = function(slave) {
+	const r = [];
+	const {
+		he, him, his, hers, himself, boy, He, His
+	} = getPronouns(slave);
+	/* ear shape description here */
+	if (slave.earShape === "none") {
+		if (slave.earImplant === 1) {
+			if (slave.earT !== "none") {
+				r.push(`${He} has smooth skin where ${his} ears should be as ${his} hearing has been cybernetically rerouted to ${his} secondary ears.`);
+			} else {
+				r.push(`${He} has nothing but small, perforated metal disks where ${his} ears should be.`);
+			}
+		} else if (slave.earwear === "none") {
+			r.push(`${He} has small unsightly holes on the sides of ${his} head. /*That can't be sanitary.*/`);
+		} else {
+			r.push(`The sides of ${his} head are smooth where ${his} ears should be, but upon closer inspection it is revealed that`);
+			if (slave.earwear === "hearing aids") {
+				r.push(`${his} ear canals are fitted with hearing aids capped with a skin-matching sheet to obscure the hole.`);
+			} else {
+				r.push(`${his} ear canals are filled with plugs with skin-matching caps.`);
+			}
+		}
+	} else if (slave.earShape === "damaged") {
+		r.push(`${His} outer ears have been severely damaged.`);
+	} else if (slave.earShape === "normal" && slave.earT !== "none") {
+		r.push(`/* Ears are expected, so lets only mention them if we have two sets */`);
+		r.push(`${He} has perfectly ordinary ears.`);
+	} else if (slave.earShape === "robot") {
+		r.push(`${He} has high tech cyber-ears that could be mistaken for headphones. /*not yet implemented*/`);
+	} else if (slave.earShape === "pointy") {
+		r.push(`${His} small, ${either("elfin", "leaf-shaped", "pointed")} ears are quite cute and give ${him} an exotic appearance.`);
+	} else if (slave.earShape === "elven") {
+		r.push(`${He} has long, thin elven ears that ${either("tend to droop when ${he} is relaxed or sad", "tend to waggle up and down when ${he} is excited", "twitch at the slightest touch")}.`);
+	} else if (slave.earShape === "ushi") {
+		r.push(`${He} has long, floppy cow ears. /* that ${either("tend to droop when ${he} is relaxed or sad", "tend waggle up and down when ${he} is excited", "twitch at the slightest touch")}. These don't make sense for the most part. */`);
+	}
+
+	if (slave.earT === "neko") {
+		r.push(`${He} has cute, ${slave.earTColor} cat ears on ${his} head; they`);
+		if (slave.earImplant === 1) {
+			r.push(`perk up at`);
+			if (slave.devotion > 20) {
+				r.push(`the sound of your voice and`);
+			} else {
+				r.push(`sudden noises and`);
+			}
+		}
+		r.push(`${either("tend to droop when ${he} is relaxed or sad", "twitch at the slightest touch")}.`);
+	} else if (slave.earT === "inu") {
+		r.push(`${He} has cute, ${slave.earTColor} dog ears on ${his} head; they`);
+		if (slave.earImplant === 1) {
+			r.push(`perk up at`);
+			if (slave.devotion > 50) {
+				r.push(`the sound of your voice and`);
+			} else {
+				r.push(`sudden noises and`);
+			}
+		}
+		r.push(`${either("tend to droop when ${he} is relaxed or sad", "twitch at the slightest touch")}.`);
+	} else if (slave.earT === "kit") {
+		r.push(`${He} has elegant, ${slave.earTColor} fox ears on ${his} head; they`);
+		if (slave.earImplant === 1) {
+			r.push(`perk up at`);
+			if (slave.devotion > 50) {
+				r.push(`the sound of your voice and`);
+			} else {
+				r.push(`sudden noises and`);
+			}
+		}
+		r.push(`${either("tend to droop when ${he} is relaxed or sad", "twitch at the slightest touch")}.`);
+	} else if (slave.earT === "tanuki") {
+		r.push(`${He} has adorable, ${slave.earTColor}, round tanuki ears on ${his} head; they`);
+		if (slave.earImplant === 1) {
+			r.push(`perk up at`);
+			if (slave.devotion > 50) {
+				r.push(`the sound of your voice and`);
+			} else {
+				r.push(`sudden noises and`);
+			}
+		}
+		r.push(`${either("tend to droop when ${he} is relaxed or sad", "twitch at the slightest touch")}.`);
+	} else if (slave.earT === "usagi") {
+		r.push(`${He} has long, ${slave.earTColor}, fluffy rabbit ears on ${his} head; they`);
+		if (slave.earImplant === 1) {
+			r.push(`perk up at`);
+			if (slave.devotion > 50) {
+				r.push(`the sound of your voice and`);
+			} else {
+				r.push(`sudden noises and`);
+			}
+		}
+		r.push(`${either("tend to droop when ${he} is relaxed or sad", "twitch at the slightest touch")}.`);
+	} else if (slave.earT === "normal") {
+		r.push(`${He} has`);
+		if (slave.earShape !== "none") {
+			r.push(`a second set`);
+		} else {
+			r.push(`a pair`);
+		}
+		r.push(`of non-functioning ears grafted to the top of ${his} head.`);
+	}
+
+	if (slave.hears < 0) {
+		if (slave.hears === -1) {
+			r.push(`${His} hearing is noticeably impaired,`);
+		} else if (slave.hears < -1) {
+			r.push(`${He} is completely deaf,`);
+		}
+		if (slave.hears < -1 && slave.earShape === "none") {
+			r.push(`which is fitting due to ${his} lack of ears.`);
+		} else {
+			r.push(`but this isn't obvious just by looking at ${his} ears.`);
+		}
+	}
+	return r.join(" ");
+};
diff --git a/src/npc/descriptions/face.js b/src/npc/descriptions/face.js
new file mode 100644
index 0000000000000000000000000000000000000000..74b8fbcb24c4e57d972caaaa1f1abe7bdf8502de
--- /dev/null
+++ b/src/npc/descriptions/face.js
@@ -0,0 +1,201 @@
+App.Desc.face = function(slave) {
+	const r = [];
+	const {
+		he, him, his, hers, himself, boy, He, His
+	} = getPronouns(slave);
+
+	r.push(`${His}<span class="pink">face is`);
+
+	switch (slave.faceShape) {
+		case "masculine":
+			if (slave.face < -95) {
+				r.push(`so ugly and masculine that ${his} designation as a slave girl is a mockery.`);
+			} else if (slave.face < -40) {
+				r.push(`ugly and masculine, making ${him} a poor slave girl by appearance.`);
+			} else if (slave.face < -10) {
+				r.push(`unattractively masculine.`);
+			} else if ((slave.face <= 10)) {
+				r.push(`masculine, but not entirely unappealing.`);
+			} else if ((slave.face <= 40)) {
+				r.push(`attractively masculine.`);
+			} else if ((slave.face <= 95)) {
+				r.push(`quite handsome in a masculine way.`);
+			} else {
+				r.push(`the height of masculine handsomeness.`);
+			}
+			break;
+		case "androgynous":
+			if (slave.face < -95) {
+				r.push(`disturbingly androgynous and terribly ugly.`);
+			} else if (slave.face < -40) {
+				r.push(`ugly and androgynous; ${he} has neither masculine nor feminine appeal.`);
+			} else if (slave.face < -10) {
+				r.push(`strangely androgynous, and rather unattractive.`);
+			} else if ((slave.face <= 10)) {
+				r.push(`strangely androgynous.`);
+			} else if ((slave.face <= 40)) {
+				r.push(`androgynous, and attractive enough that this ambiguity is interesting.`);
+			} else if ((slave.face <= 95)) {
+				r.push(`gorgeously androgynous in a complex way that captures the eye.`);
+			} else {
+				r.push(`so gorgeously androgynous that ${he} tends to induce sexual confusion.`);
+			}
+			break;
+		case "cute":
+			if (slave.face < -95) {
+				r.push(`very ugly, yet somehow cute; ${he}'s so unattractive that ${he} inspires pity.`);
+			} else if (slave.face < -40) {
+				r.push(`ugly, but cute, with a pitiable appeal.`);
+			} else if (slave.face < -10) {
+				r.push(`not attractive, but is appealingly cute.`);
+			} else if ((slave.face <= 10)) {
+				r.push(`merely average, but is appealingly cute.`);
+			} else if ((slave.face <= 40)) {
+				r.push(`both attractive and appealingly cute.`);
+			} else if ((slave.face <= 95)) {
+				r.push(`beautiful, yet somehow also approachably cute.`);
+			} else {
+				r.push(`an impossibly perfect combination of beauty and girl-next-door cuteness.`);
+			}
+			break;
+		case "sensual":
+			if (slave.face < -95) {
+				r.push(`very ugly, yet naturally slutty, promising a decent fuck despite its appearance.`);
+			} else if (slave.face < -40) {
+				r.push(`ugly, but also slutty, promising a good fuck despite its appearance.`);
+			} else if (slave.face < -10) {
+				r.push(`not attractive, but it has a certain sensual appeal.`);
+			} else if ((slave.face <= 10)) {
+				r.push(`merely average, but undeniably sensual.`);
+			} else if ((slave.face <= 40)) {
+				r.push(`both attractive and naturally sultry.`);
+			} else if ((slave.face <= 95)) {
+				r.push(`both beautiful and sultry, bringing sex to mind naturally.`);
+			} else {
+				r.push(`very beautiful in a consummately sexual way.`);
+			}
+			break;
+		case "exotic":
+			if (slave.face < -95) {
+				r.push(`very ugly and unusual, a real tragedy in flesh.`);
+			} else if (slave.face < -40) {
+				r.push(`ugly and unusual, a real misfortune.`);
+			} else if (slave.face < -10) {
+				r.push(`unattractive, and distinctive in its unattractiveness.`);
+			} else if ((slave.face <= 10)) {
+				r.push(`quite average, but not uninteresting.`);
+			} else if ((slave.face <= 40)) {
+				r.push(`attractive in an exotic and interesting way.`);
+			} else if ((slave.face <= 95)) {
+				r.push(`exotic and beautiful, capable of catching the eye and keeping its gaze.`);
+			} else {
+				r.push(`very beautiful and exotic, almost to the point of alien fascination.`);
+			}
+			break;
+		default:
+			if (slave.face < -95) {
+				r.push(`very ugly.`);
+			} else if (slave.face < -40) {
+				r.push(`quite ugly.`);
+			} else if (slave.face < -10) {
+				r.push(`unattractive.`);
+			} else if ((slave.face <= 10)) {
+				r.push(`average and conventionally feminine.`);
+			} else if ((slave.face <= 40)) {
+				r.push(`conventionally attractive.`);
+			} else if ((slave.face <= 95)) {
+				r.push(`conventionally beautiful.`);
+			} else {
+				r.push(`the height of conventional feminine beauty.`);
+			}
+	}
+	r.push(`</span>`);
+	if (slave.weight > 190) {
+		r.push(`${His} face is quite fat with ample excess chins.`);
+	} else if (slave.weight > 160) {
+		r.push(`${His} face is round and plump with a trio of extra chins.`);
+	} else if (slave.weight > 130) {
+		r.push(`${His} face is chubby with an obvious second chin.`);
+	} else if (slave.weight > 97) {
+		r.push(`${His} face is soft with barely a second chin.`);
+	}
+	if (slave.fuckdoll > 0) {
+		r.push(`However,`);
+		if (slave.face < -1) {
+			r.push(`it's hard to see this past the suit, since its face is padded to make ${him} seem less ugly.`);
+		} else if (slave.face < 1) {
+			r.push(`it's hard to see this past the suit, since its face is shaped to make ${him} seem prettier.`);
+		} else {
+			r.push(`the suit obscures all but the shape of ${him} pretty face.`);
+		}
+	} else {
+		if (slave.markings === "beauty mark") {
+			if (slave.face < -95) {
+				r.push(`It bears a severely disfiguring, discolored mark.`);
+			} else if (slave.face < -40) {
+				r.push(`It bears a couple of unsightly moles.`);
+			} else if (slave.face < -10) {
+				r.push(`It bears an ugly mole.`);
+			} else if ((slave.face <= 10)) {
+				r.push(`${He} has a distinctive beauty mark.`);
+			} else if ((slave.face <= 40)) {
+				r.push(`${He} has a nice beauty mark.`);
+			} else if ((slave.face <= 95)) {
+				r.push(`${He} has a beauty mark that adds to ${his} distinctiveness.`);
+			} else {
+				r.push(`${He} has a beauty mark that makes ${him} really memorable.`);
+			}
+		}
+	}
+	if (slave.faceImplant > 5) {
+		r.push(`${He}'s`);
+		if (slave.faceImplant > 95) {
+			r.push(`had so much cosmetic surgery that ${his} face is located at the bottom of the uncanny valley `);
+			if (slave.face < -10) {
+				r.push(`in addition to its ugliness.`);
+			} else if (slave.face <= 10) {
+				r.push(`the only thing really distinctive about it.`);
+			} else {
+				r.push(`its attractiveness notwithstanding.`);
+			}
+		} else if (slave.faceImplant > 60) {
+			r.push(`obviously gotten a lot of facial cosmetic surgery.`);
+		} else if (slave.faceImplant > 30) {
+			r.push(`noticeably received facial cosmetic surgery.`);
+		} else {
+			r.push(`had some facial cosmetic surgery, though it's subtle.`);
+			if (V.PC.skill.medicine >= 100) {
+				r.push(`Someone without your knowledge might miss it entirely.`);
+			}
+		}
+		if (V.arcologies[0].FSBodyPurist !== "unset") {
+			if (slave.faceImplant > 30) {
+				r.push(`This is considered extremely tragic by a society that values bodily purity.`);
+			} else {
+				r.push(`Since society values bodily purity, even this subtlety affects ${his} attractiveness when it's noticed.`);
+			}
+		} else if (V.arcologies[0].FSTransformationFetishist !== "unset") {
+			if (slave.faceImplant > 30) {
+				r.push(`Your transformationist society doesn't think this `);
+				if (slave.face >= -10) {
+					r.push(`reduces ${his} attractiveness.`);
+				} else {
+					r.push(`makes ${him} uglier.`);
+				}
+			}
+		} else {
+			if (slave.faceImplant > 30) {
+				r.push(`The effect is enough to reduce ${his} attractiveness.`);
+			}
+		}
+	}
+	if (slave.smells === -1) {
+		r.push(`${He} has no sense of smell, but this isn't immediately obvious just by looking at ${his} nose.`);
+	}
+
+	if (V.showBodyMods === 1) {
+		if (slave.fuckdoll === 0) {
+			r.push(App.Desc.makeup(slave));
+		}
+	} return r.join(" ");
+};
diff --git a/src/npc/descriptions/heels.js b/src/npc/descriptions/heels.js
new file mode 100644
index 0000000000000000000000000000000000000000..72247b86f35376930199dbdf7ec13abc01e428dd
--- /dev/null
+++ b/src/npc/descriptions/heels.js
@@ -0,0 +1,30 @@
+App.Desc.heels = function(slave) {
+	const r = [];
+	const {
+		he, him, his, hers, himself, boy, He, His
+	} = getPronouns(slave);
+	if (slave.heels === 1) {
+		r.push(`${His}`);
+		if (hasBothLegs(slave)) {
+			r.push(`<span class="pink">legs have been altered</span>`);
+		} else if (hasAnyLegs(slave)) {
+			r.push(`<span class="pink">leg has been altered</span>`);
+		}
+		r.push(`so that ${he} must wear heels in order to walk.`);
+		if (V.showClothing === 1 && V.saleDescription === 0) {
+			if (hasAnyLegs(slave)) {
+				if (slave.shoes !== "none" && slave.shoes !== "flats") {
+					r.push(`${He} is, so ${he} can walk reasonably well.`);
+				} else {
+					r.push(`Since ${he} is without them, ${he}'s crawling on `);
+					if (!hasAllLimbs(slave)) {
+						r.push(`the ground.`);
+					} else {
+						r.push(`all fours.`);
+					}
+				}
+			}
+		}
+	}
+	return r.join(" ");
+};
diff --git a/src/npc/descriptions/heightImplant.js b/src/npc/descriptions/heightImplant.js
new file mode 100644
index 0000000000000000000000000000000000000000..7e28d4980d153216bd4e582a27219d0c16ed4c3a
--- /dev/null
+++ b/src/npc/descriptions/heightImplant.js
@@ -0,0 +1,43 @@
+App.Desc.heightImplant = function(slave) {
+	let r;
+	const {
+		he, him, his, hers, himself, boy, He, His
+	} = getPronouns(slave);
+	if (slave.heightImplant > 1) {
+		r = limbs();
+		r.push(`are wrong; it's obvious that they have been artificially lengthened.`);
+	} else if (slave.heightImplant > 0) {
+		r = limbs();
+		r.push(` are odd, as though they have been artificially lengthened.`);
+	} else if (slave.heightImplant < -1) {
+		r = limbs();
+		r.push(` are wrong; it's obvious that they have been artificially shortened.`);
+	} else if (slave.heightImplant < 0) {
+		r = limbs();
+		r.push(` are odd, as though they have been artificially shortened.`);
+	}
+
+	function limbs() {
+		const r = [];
+		r.push(`The proportions of ${his} `);
+		if (hasAnyArms(slave)) {
+			if (hasBothArms(slave)) {
+				r.push(`arms`);
+			} else {
+				r.push(`arm`);
+			}
+			if (hasAnyLegs(slave)) {
+				r.push(` and `);
+			}
+		}
+		if (hasAnyLegs(slave)) {
+			if (hasBothLegs(slave)) {
+				r.push(`legs`);
+			} else {
+				r.push(`leg`);
+			}
+		}
+		return r;
+	}
+	return r.join(" ");
+};
diff --git a/src/npc/descriptions/horns.js b/src/npc/descriptions/horns.js
new file mode 100644
index 0000000000000000000000000000000000000000..b57d12d9574f8520f7351b5c6175a93704960598
--- /dev/null
+++ b/src/npc/descriptions/horns.js
@@ -0,0 +1,43 @@
+App.Desc.horns = function(slave) {
+	const r = [];
+	const {
+		he, him, his, hers, himself, boy, He, His
+	} = getPronouns(slave);
+	if (slave.horn === "curved succubus horns") {
+		r.push(`${He} has`);
+		if (slave.face > 40) {
+			r.push(`majestic ${slave.hornColor} horns that jut out from the back of ${his} head and curve forward, looking almost like a crown.`);
+		} else if (slave.face > 0) {
+			r.push(`imposing ${slave.hornColor} horns that jut out from the back of ${his} head and curve forward nicely.`);
+		} else {
+			r.push(`terrifying ${slave.hornColor} horns that jut out from the back of ${his} head and curve forward menacingly.`);
+		}
+	} else if (slave.horn === "backswept horns") {
+		if (slave.face > 40) {
+			r.push(`majestic ${slave.hornColor} horns that jut out the front of ${his} head and curve backwards, like some royal headdress.`);
+		} else if (slave.face > 0) {
+			r.push(`imposing ${slave.hornColor} horns that jut out the front of ${his} head and curve backwards nicely.`);
+		} else {
+			r.push(`terrifying ${slave.hornColor} horns that jut out the front of ${his} head and curve backwards, looking like some twisted helmet.`);
+		}
+	} else if (slave.horn === "cow horns") {
+		r.push(`${He} has two ${slave.hornColor} cow horns on the sides of ${his} head; they curve sharply upward.`);
+	} else if (slave.horn === "two long oni horns") {
+		r.push(`${He} has two long ${slave.hornColor} horns sticking straight up out of ${his} forehead`);
+		if (slave.devotion > 20) {
+			r.push(`${he} holds them up proudly.`);
+		} else {
+			r.push(`forehead.`);
+		}
+	} else if (slave.horn === "one long oni horn") {
+		r.push(`${He} has a long ${slave.hornColor} horn sticking straight up out of ${his}`);
+		if (slave.devotion > 20) {
+			r.push(`forehead ${he} holds it up proudly`);
+		} else {
+			r.push(`forehead.`);
+		}
+	} else if (slave.horn === "small horns") {
+		r.push(`${He} has cute, little ${slave.hornColor} horns sticking out of ${his} head.`);
+	}
+	return r.join(" ");
+};
diff --git a/src/npc/descriptions/mouth.js b/src/npc/descriptions/mouth.js
new file mode 100644
index 0000000000000000000000000000000000000000..50f45594b00ac84e784d242834e70a15a7309265
--- /dev/null
+++ b/src/npc/descriptions/mouth.js
@@ -0,0 +1,157 @@
+App.Desc.mouth = function(slave) {
+	const r = [];
+	const {
+		he, him, his, hers, himself, boy, He, His
+	} = getPronouns(slave);
+
+	r.push(`${He} has`);
+	if (slave.lips <= 10) {
+		r.push(`thin, unattractive lips.`);
+	} else if (slave.lips <= 20) {
+		r.push(`normal lips.`);
+	} else if (slave.lips <= 40) {
+		r.push(`full, attractive lips.`);
+	} else if (slave.lips <= 70) {
+		r.push(`plump, beestung lips.`);
+	} else if (slave.lips <= 95) {
+		r.push(`huge, obviously augmented lips.`);
+	} else {
+		r.push(`a facepussy: ${his} lips are so huge that they're always a bit parted in the middle, forming a moist, inviting`);
+		if (V.PC.dick !== 0) {
+			r.push(`hole for cock.`);
+		} else {
+			r.push(`hole.`);
+		}
+	}
+
+	if (V.showImplantEffects === 1) {
+		if (V.arcologies[0].FSTransformationFetishist !== "unset") {
+			if (slave.lipsImplant > 0) {
+				r.push(`They are about ${Math.floor((slave.lipsImplant / slave.lips) * 100)}% implant.`);
+			}
+			if (V.arcologies[0].FSTransformationFetishist > 20) {
+				if (slave.lips > 70) {
+					if (slave.lipsImplant / slave.lips < .50) {
+						r.push(`${His} lips are huge and < span class="red" > disgustingly natural</span > for their size.`);
+					} else {
+						r.push(`${His} lips are huge and < span class="green" > obviously implants,</span > as they should be.`);
+					}
+				}
+			}
+		}
+	}
+
+	if (slave.fuckdoll > 0) {
+		r.push(`${His} mouth is held open by the suit's oral insert.`);
+	} else if ((slave.assignment === "work in the dairy") && (V.dairyRestraintsSetting > 1)) {
+		if (V.dairyFeedersSetting > 1) {
+			r.push(`${His} milking machine has a phallus a long way down ${his} throat to rehydrate ${him}.`);
+		} else {
+			r.push(`${He}'s got ${his} mouth wrapped around a phallus provided by ${his} milking machine, and is sucking it off for hydration.`);
+		}
+	} else {
+		if (canTalk(slave)) {
+			if (slave.lips > 70) {
+				r.push(`${He} can barely enunciate past ${his} dick-sucking lips; '${WrittenMaster(slave)}' comes out as '${lispReplace(WrittenMaster(slave))}.'`);
+			}
+		}
+		if (slave.teeth !== "normal") {
+			if (slave.teeth === "crooked") {
+				r.push(`${His} teeth are <span class="yellow">crooked,</span> detracting from ${his} beauty whenever ${he} opens ${his} mouth.`);
+			} else if (slave.teeth === "straightening braces") {
+				r.push(`${He} has braces,`);
+				if (slave.visualAge > 35) {
+					r.push(`an amusing sight on such a mature ${woman}.`);
+				} else if ((slave.visualAge > 14) && (slave.visualAge < 18)) {
+					r.push(`a cute look on such a young ${girl}.`);
+				} else {
+					r.push(`and occasionally looks preoccupied with discomfort as they straighten ${his} teeth.`);
+				}
+			} else if (slave.teeth === "cosmetic braces") {
+				r.push(`${He}'s wearing braces despite ${his} straight teeth,`);
+				if (slave.visualAge > 35) {
+					r.push(`an amusing sight on such a mature ${woman}.`);
+				} else if ((slave.visualAge > 14) && (slave.visualAge < 18)) {
+					r.push(`a cute look on such a young ${girl}.`);
+				} else {
+					r.push(`just for appearances.`);
+				}
+			} else if (slave.teeth === "gapped") {
+				r.push(`${He} has a prominent gap between ${his} front`);
+				if (slave.faceShape === "cute") {
+					r.push(`teeth that suits ${his} cute face surprisingly well.`);
+				} else {
+					r.push(`teeth.`);
+				}
+				if (canTalk(slave)) {
+					r.push(`It also leaves ${him} with a slight lisp.`);
+				}
+			} else if (slave.teeth === "removable") {
+				r.push(`${His} teeth have been removed and replaced with high-quality dentures. It's difficult to tell anything's unusual until you take them out for gummy oral sex.`);
+			} else if (slave.teeth === "pointy") {
+				r.push(`${His} teeth have been replaced with realistic implants that mimic the dentition of a carnivore. ${His} smiles are frightening, and ${he} can bare them to become truly terrifying.`);
+			} else if (slave.teeth === "fangs") {
+				r.push(`${His} upper canine teeth have been replaced with realistic implants that mimic fangs. ${His} smiles are frightening, and ${he} can bare them to become truly terrifying.`);
+			} else if (slave.teeth === "fang") {
+				r.push(`One of ${his} upper canine teeth has been replaced with realistic implant shaped like a fang.`);
+				if (slave.faceShape === "cute") {
+					r.push(`It gives ${his} cute face an added`);
+					if (slave.lips <= 50) {
+						r.push(`charm, especially when it rests over ${his} lower lip.`);
+					} else {
+						r.push(`charm.`);
+					}
+				} else {
+					if (slave.lips <= 50) {
+						r.push(`It stands out when it rests over ${his} lower lip.`);
+					} else {
+						r.push(`It doesn't fit well in ${his} mouth and frequently prods ${his} fat lower lip.`);
+					}
+				}
+			} else if (slave.teeth === "baby") {
+				r.push(`${He} still has ${his} baby teeth.`);
+			} else if (slave.teeth === "mixed") {
+				r.push(`${He} is in the process of replacing ${his} baby teeth.`);
+			}
+		}
+	}
+	if (slave.tastes === -1) {
+		r.push(`${He} has no sense of taste, but this isn't immediately obvious just by looking at ${his} tongue.`);
+	}
+
+	r.push(App.Desc.mods(slave, "lips"));
+	r.push(App.Desc.mods(slave, "tongue"));
+
+	if (slave.fuckdoll > 0) {
+		if (V.PC.dick !== 0) {
+			r.push(`Sticking a dick`);
+		} else {
+			r.push(`Sliding a dildo`);
+		}
+		r.push(`into ${his}`);
+		if (slave.lips > 95) {
+			r.push(`facepussy`);
+		} else {
+			r.push(`mouth insert`);
+		}
+		if (slave.fuckdoll <= 45) {
+			r.push(`mostly results in gagging.`);
+		} else {
+			r.push(`offers its user a selection of delightful face hole massage options.`);
+		}
+	} else {
+		r.push(`${He} is`);
+		if (slave.skill.oral >= 100) {
+			r.push(`an <span class="aquamarine">oral sex master.</span>`);
+		} else if (slave.skill.oral > 60) {
+			r.push(`an <span class="aquamarine">expert at oral.</span>`);
+		} else if (slave.skill.oral > 30) {
+			r.push(`<span class="aquamarine">orally skilled.</span>`);
+		} else if (slave.skill.oral > 10) {
+			r.push(`<span class="aquamarine">capable of basic oral sex.</span>`);
+		} else {
+			r.push(`unskilled at oral sex.`);
+		}
+	}
+	return r.join(" ");
+};
diff --git a/src/npc/descriptions/shoulders.js b/src/npc/descriptions/shoulders.js
new file mode 100644
index 0000000000000000000000000000000000000000..ecf0a2e43525a9574ee95f38850debe39f38096e
--- /dev/null
+++ b/src/npc/descriptions/shoulders.js
@@ -0,0 +1,57 @@
+App.Desc.shoulders = function(slave) {
+	const r = [];
+	const {
+		he, him, his, hers, himself, boy, He, His
+	} = getPronouns(slave);
+	if (slave.fuckdoll === 0) {
+		if (slave.shoulders < -1) {
+			r.push(`${His} shoulders and chest are very narrow and`);
+			if (slave.boobs > 2000) {
+				r.push(`feminine, forcing ${his} pressed-together tits to spread far beyond ${his} sides.`);
+			} else {
+				r.push(`feminine.`);
+			}
+		} else if (slave.shoulders < 0) {
+			r.push(`${His} shoulders and chest are quite`);
+			if (slave.boobs > 1200) {
+				r.push(`feminine, causing a lot of cleavage and pressing ${his} boobs outward beyond ${his} sides.`);
+			} else {
+				r.push(`feminine.`);
+			}
+		} else if (slave.shoulders > 1) {
+			r.push(`${His} shoulders and chest are very`);
+			if (slave.boobs > 600) {
+				r.push(`broad, making ${his} boobs look a lot smaller than they actually are.`);
+			} else {
+				r.push(`broad.`);
+			}
+		} else if (slave.shoulders > 0) {
+			r.push(`${His} shoulders and chest are fairly`);
+			if (slave.boobs > 600) {
+				r.push(`broad, making ${his} tits look smaller than they actually are.`);
+			} else {
+				r.push(`broad.`);
+			}
+		} else {
+			r.push(`${His} shoulders and chest are`);
+			if (slave.boobs > 800) {
+				r.push(`feminine, flattering ${his} breasts.`);
+			} else {
+				r.push(`feminine.`);
+			}
+		}
+		if (slave.shoulders > slave.hips) {
+			r.push(`They're wider than ${his} hips,`);
+			if (slave.boobs > 2000 * (slave.shoulders - slave.hips)) {
+				r.push(`but ${his} massive breasts make it hard to discern.`);
+			} else if (V.arcologies[0].FSGenderRadicalist !== "unset") {
+				r.push(`giving ${him} a somewhat mannish appearance.`);
+			} else if (V.arcologies[0].FSGenderFundamentalist !== "unset") {
+				r.push(`giving ${him} an <span class="red">ugly, mannish appearance.</span>`);
+			} else {
+				r.push(`giving ${him} an <span class="red">unattractive, somewhat mannish, appearance.</span>`);
+			}
+		}
+	}
+	return r.join(" ");
+};
diff --git a/src/npc/descriptions/skin.js b/src/npc/descriptions/skin.js
new file mode 100644
index 0000000000000000000000000000000000000000..41bba0961a02ccaa1b2fa9bcd5fa73cfcb42bdee
--- /dev/null
+++ b/src/npc/descriptions/skin.js
@@ -0,0 +1,100 @@
+App.Desc.skin = function(slave) {
+	let r = [];
+	const {
+		he, him, his, hers, himself, boy, He, His
+	} = getPronouns(slave);
+
+	if (slave.fuckdoll > 0) {
+		r.push(`The small areas of visible skin are`);
+		r = r.concat(freckles());
+		r = r.concat(tanned());
+	} else if (V.seeNationality === 1) {
+		if (slave.nationality === 0) {
+			r.push(`Ethnically, ${he}'s`);
+		} else if (slave.nationality === "slave") {
+			r.push(`${He}'s been chattel long enough that slavery is effectively ${his} nationality; ethnically, ${he}'s`);
+		} else if (slave.nationality === "Stateless") {
+			r.push(`${He} has spent so much time in the Free Cities that their statelessness is effectively ${his} nationality; ethnically, ${he}'s`);
+		} else if (slave.nationality === "Zimbabwean" && slave.race === "white") {
+			r.push(`${He}'s originally <span class="tan">Rhodesian;</span> ethnically, ${he}'s`);
+		} else if (slave.nationality === "Vatican") {
+			r.push(`${He}'s originally <span class="tan">from Vatican City;</span> ethnically, ${he}'s`);
+		} else {
+			r.push(`${He}'s originally <span class="tan">${slave.nationality};</span> ethnically, ${he}'s`);
+		}
+		r.push(`<span class="tan">${slave.race},</span> and ${his} skin is`);
+		r = r.concat(freckles());
+		r = r.concat(tanned());
+		if (slave.race !== slave.origRace && V.saleDescription !== 1) {
+			r.push(`${He} has received plastic surgery to appear ${slave.race}; ${he} is originally ${slave.origRace}.`);
+		} else if (slave.race !== slave.origRace && V.saleDescription === 1) {
+			if (V.PC.skill.medicine >= 100) {
+				r.push(`Thanks to your medical experience, you can easily tell that ${he} was originally ${slave.origRace}, but surgically modified.`);
+			} else if (V.PC.skill.medicine >= 50) {
+				r.push(`Oddly enough, ${he} appears to have a number of ${slave.origRace} features.`);
+			} else if (V.PC.skill.slaving >= 50) {
+				r.push(`Thanks to your experience in buying and selling slaves, you can easily tell that ${he} is not naturally ${slave.race}.`);
+			} else if (jsRandom(0, 100) < V.PC.skill.medicine) {
+				r.push(`${His} features seem slightly off.`);
+			}
+		}
+	} else if ((V.seeRace === 1)) {
+		r.push(`Ethnically, ${he}'s <span class="tan">${slave.race},</span> and ${his} skin is`);
+		r = r.concat(freckles());
+		r = r.concat(tanned());
+		if (slave.race !== slave.origRace && V.saleDescription !== 1) {
+			r.push(`${He} has received plastic surgery to appear ${slave.race}; ${he} is originally ${slave.origRace}`);
+		} else if (slave.race !== slave.origRace && V.saleDescription === 1) {
+			if (V.PC.skill.medicine >= 100) {
+				r.push(`Thanks to your medical experience, you can easily tell that ${he} was originally ${slave.origRace}, but surgically modified.`);
+			} else if (V.PC.skill.medicine >= 50) {
+				r.push(`Oddly enough, ${he} appears to have a number of ${slave.origRace} features.`);
+			} else if (V.PC.skill.slaving >= 50) {
+				r.push(`Thanks to your experience in buying and selling slaves, you can easily tell that ${he} is not naturally ${slave.race}.`);
+			} else if (jsRandom(0, 100) < V.PC.skill.medicine) {
+				r.push(`${His} features seem slightly off.`);
+			}
+		}
+	} else {
+		r.push(`${His} skin is`);
+		r = r.concat(freckles());
+		r = r.concat(tanned());
+	} return r.join(" ");
+
+	function freckles() {
+		const r = [];
+		if (slave.markings === "freckles") {
+			r.push(`${slave.skin} and lightly `);
+			if ((skinToneLevel(slave.skin) > 5) && (skinToneLevel(slave.skin) < 10) && (slave.hColor === "red")) {
+				r.push(`freckled, an attractive combination.`);
+			} else {
+				r.push(`freckled.`);
+			}
+		} else if (slave.markings === "heavily freckled") {
+			r.push(`${slave.skin} and heavily`);
+			if ((skinToneLevel(slave.skin) > 5) && (skinToneLevel(slave.skin) < 10) && (slave.hColor === "red")) {
+				r.push(`freckled, an attractive combination.`);
+			} else {
+				r.push(`freckled.`);
+			}
+		} else {
+			r.push(`${slave.skin}.`);
+		}
+		return r;
+	}
+
+	function tanned() {
+		const r = [];
+		if (slave.skin === "sun tanned" || slave.skin === "spray tanned") {
+			r.push(`${His} skin has been`);
+			if (slave.skin === "sun tanned") {
+				r.push(`tanned to a natural, healthy-looking tone.`);
+			} else if (slave.skin === "spray tanned") {
+				r.push(`tanned with obvious, garish-looking makeup.`);
+			} else {
+				r.push(`tanned.`);
+			}
+		}
+		return r;
+	}
+};
diff --git a/src/npc/descriptions/womb/pregnancy.js b/src/npc/descriptions/womb/pregnancy.js
new file mode 100644
index 0000000000000000000000000000000000000000..28a9055fe4d8a0c64922b499cb7b3477cea207f3
--- /dev/null
+++ b/src/npc/descriptions/womb/pregnancy.js
@@ -0,0 +1,928 @@
+App.Desc.pregnancy = function(slave) {
+	const r = [];
+	const {
+		he, him, his, hers, himself, boy, He, His
+	} = getPronouns(slave);
+	let daddy;
+	if (slave.pregSource > 0) {
+		const lsd = findFather(slave.pregSource);
+		if (lsd) {
+			daddy = SlaveFullName(lsd);
+		} else {
+			daddy = "partner";
+		}
+	} else if (slave.pregSource in V.missingTable && V.showMissingSlaves) {
+		daddy = V.missingTable[slave.pregSource].fullName;
+	}
+
+	if (slave.preg === -2 && slave.vagina < 0 && slave.mpreg === 0) {
+	} else if ((slave.preg <= -2) && (slave.ovaries === 1 || slave.mpreg === 1)) {
+		r.push(`${He} is sterile.`);
+	} else if ((slave.pregWeek < 0) && (slave.ovaries === 1 || slave.mpreg === 1)) {
+		r.push(`${He} is recovering from ${his} recent pregnancy.`);
+	} else if (slave.preg === 0 && slave.vagina > -1) {
+		if (slave.readyOva > 30) {
+			r.push(`${His} lower belly is noticeably bloated, ${his} breasts bigger and more sensitive, and ${his} pussy swollen and leaking fluids. ${He} desperately needs a dick in ${him} and reminds you of a bitch in heat.`);
+		} else if (slave.readyOva > 20) {
+			r.push(`${His} lower belly is noticeably bloated and ${his} pussy swollen and leaking fluids. ${He} is very ready to be seeded.`);
+		} else if (slave.readyOva > 2) {
+			r.push(`${His} lower belly is slightly bloated and ${his} pussy swollen and leaking fluids. ${He} is ready to be seeded.`);
+		}
+	} else if (slave.bellyPreg >= 1000000) {
+		r.push(`${He} is <span class="pink">impossibly pregnant</span> with`);
+		if (slave.preg >= slave.pregData.normalBirth * 1.375) {
+			if (slave.pregType === 1) {
+				r.push(`a single full grown child.`);
+			} else if (slave.pregType >= 10) {
+				r.push(`${slave.pregType} overgrown babies.`);
+			} else {
+				r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+			}
+			r.push(`${He} is horrifically overdue; ${he} should have given birth a staggering ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+		} else if (slave.preg >= slave.pregData.normalBirth * 1.25) {
+			if (slave.pregType === 1) {
+				r.push(`a single full grown child.`);
+			} else if (slave.pregType >= 10) {
+				r.push(`${slave.pregType} overgrown babies.`);
+			} else {
+				r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+			}
+			r.push(`${He} is extremely overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+		} else if (slave.preg >= slave.pregData.normalBirth * 1.075) {
+			if (slave.pregType === 1) {
+				r.push(`a single full grown child.`);
+			} else if (slave.pregType >= 10) {
+				r.push(`${slave.pregType} overgrown babies.`);
+			} else {
+				r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+			}
+			r.push(`${He} is very overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+		} else {
+			r.push(`a staggering ${slave.pregType} babies.`);
+		}
+		r.push(App.Desc.superfetation(slave));
+	} else if (slave.bellyPreg >= 750000) {
+		r.push(`${He} is`);
+		if (slave.belly > (slave.pregAdaptation * 1000)) {
+			r.push(`<span class="red">on the brink of bursting!</span> ${His} belly is painfully stretched and ${his} womb packed to capacity; the slightest provocation could cause ${him} to rupture.`);
+		} else {
+			r.push(`<span class="pink">unbelievably pregnant</span> with ${slave.pregType} babies.`);
+		}
+		if (slave.preg >= slave.pregData.normalBirth * 1.375) {
+			r.push(`${He} is horrifically overdue; ${he} should have given birth a staggering ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+		} else if (slave.preg >= slave.pregData.normalBirth * 1.25) {
+			r.push(`${He} is extremely overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+		} else if (slave.preg >= slave.pregData.normalBirth * 1.075) {
+			r.push(`${He} is very overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+		}
+		r.push(App.Desc.superfetation(slave));
+	} else if (slave.bellyImplant >= 750000) {
+		r.push(`${He} looks <span class="red">ready to pop!</span> ${His} stomach is`);
+		if (slave.belly > (slave.pregAdaptation * 1000)) {
+			r.push(`painfully`);
+		} else {
+			r.push(`frighteningly`);
+		}
+		r.push(`stretched by ${his} straining ${slave.bellyImplant}cc belly implant. It is well past it's recommended capacity and at risk of rupturing.`);
+	} else if (slave.bellyPreg >= 600000) {
+		r.push(`${He} is <span class="pink">dangerously pregnant,</span> ${his} overburdened womb is filled with`);
+		if (slave.preg >= slave.pregData.normalBirth * 1.375) {
+			if (slave.pregType === 1) {
+				r.push(`a single overgrown baby.`);
+			} else if (slave.pregType >= 10) {
+				r.push(`${slave.pregType} overgrown babies.`);
+			} else {
+				r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+			}
+			r.push(`${He} is horrifically overdue; ${he} should have given birth a staggering ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+		} else if (slave.preg >= slave.pregData.normalBirth * 1.25) {
+			if (slave.pregType === 1) {
+				r.push(`a single overgrown baby.`);
+			} else if (slave.pregType >= 10) {
+				r.push(`${slave.pregType} overgrown babies.`);
+			} else {
+				r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+			}
+			r.push(`${He} is extremely overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+		} else if (slave.preg >= slave.pregData.normalBirth * 1.075) {
+			if (slave.pregType === 1) {
+				r.push(`a single overgrown baby.`);
+			} else if (slave.pregType >= 10) {
+				r.push(`${slave.pregType} overgrown babies.`);
+			} else {
+				r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+			}
+			r.push(`${He} is very overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+		} else {
+			r.push(`${slave.pregType} babies.`);
+		}
+		r.push(App.Desc.superfetation(slave));
+	} else if (slave.bellyImplant >= 600000) {
+		r.push(`${He} looks <span class="pink">dangerously pregnant.</span> ${He} stomach is massively stretched by ${his} absurdly overfilled ${slave.bellyImplant}cc belly implant.`);
+	} else if (slave.bellyPreg >= 450000) {
+		r.push(`${He} is <span class="pink">grotesquely pregnant,</span> ${his} womb is packed with`);
+		if (slave.preg >= slave.pregData.normalBirth * 1.375) {
+			if (slave.pregType === 1) {
+				r.push(`a single overgrown baby.`);
+			} else if (slave.pregType >= 10) {
+				r.push(`${slave.pregType} overgrown babies.`);
+			} else {
+				r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+			}
+			r.push(`${He} is horrifically overdue; ${he} should have given birth a staggering ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+		} else if (slave.preg >= slave.pregData.normalBirth * 1.25) {
+			if (slave.pregType === 1) {
+				r.push(`a single overgrown baby.`);
+			} else if (slave.pregType >= 10) {
+				r.push(`${slave.pregType} overgrown babies.`);
+			} else {
+				r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+			}
+			r.push(`${He} is extremely overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+		} else if (slave.preg >= slave.pregData.normalBirth * 1.075) {
+			if (slave.pregType === 1) {
+				r.push(`a single overgrown baby.`);
+			} else if (slave.pregType >= 10) {
+				r.push(`${slave.pregType} overgrown babies.`);
+			} else {
+				r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+			}
+			r.push(`${He} is very overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+		} else {
+			r.push(`${slave.pregType} babies.`);
+		}
+		r.push(App.Desc.superfetation(slave));
+	} else if (slave.bellyImplant >= 450000) {
+		r.push(`${He} looks <span class="pink">absurdly pregnant.</span> ${He} stomach is massively stretched by ${his} overfilled ${slave.bellyImplant}cc belly implant.`);
+	} else if (slave.bellyPreg >= 300000) {
+		r.push(`${He} is <span class="pink">absurdly pregnant</span> with`);
+		if (slave.preg >= slave.pregData.normalBirth * 1.375) {
+			if (slave.pregType === 1) {
+				r.push(`a single overgrown baby.`);
+			} else if (slave.pregType >= 10) {
+				r.push(`${slave.pregType} overgrown babies.`);
+			} else {
+				r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+			}
+			r.push(`${He} is horrifically overdue; ${he} should have given birth a staggering ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+		} else if (slave.preg >= slave.pregData.normalBirth * 1.25) {
+			if (slave.pregType === 1) {
+				r.push(`a single overgrown baby.`);
+			} else if (slave.pregType >= 10) {
+				r.push(`${slave.pregType} overgrown babies.`);
+			} else {
+				r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+			}
+			r.push(`${He} is extremely overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+		} else if (slave.preg >= slave.pregData.normalBirth * 1.075) {
+			if (slave.pregType === 1) {
+				r.push(`a single overgrown baby.`);
+			} else if (slave.pregType >= 10) {
+				r.push(`${slave.pregType} overgrown babies.`);
+			} else {
+				r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+			}
+			r.push(`${He} is very overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+		} else {
+			r.push(`${slave.pregType} children.`);
+		}
+		r.push(App.Desc.superfetation(slave));
+	} else if (slave.bellyImplant >= 300000) {
+		r.push(`${He} looks <span class="pink">absurdly pregnant.</span> ${His} overburdened middle is filled by ${his} ${slave.bellyImplant}cc belly implant.`);
+	} else if (slave.bellyPreg >= 120000) {
+		r.push(`${He} is`);
+		if (slave.preg >= slave.pregData.normalBirth * 1.375) {
+			r.push(`<span class="pink">obscenely pregnant</span> with`);
+			if (slave.pregType === 1) {
+				r.push(`a single overgrown baby.`);
+			} else if (slave.pregType >= 10) {
+				r.push(`${slave.pregType} overgrown babies.`);
+			} else {
+				r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+			}
+			r.push(`${He} is horrifically overdue; ${he} should have given birth a staggering ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+		} else if (slave.preg >= slave.pregData.normalBirth * 1.25) {
+			r.push(`<span class="pink">obscenely pregnant</span> with`);
+			if (slave.pregType === 1) {
+				r.push(`a single overgrown baby.`);
+			} else if (slave.pregType >= 10) {
+				r.push(`${slave.pregType} overgrown babies.`);
+			} else {
+				r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+			}
+			r.push(`${He} is extremely overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+		} else if (slave.preg >= slave.pregData.normalBirth * 1.075) {
+			r.push(`<span class="pink">obscenely pregnant</span> with`);
+			if (slave.pregType === 1) {
+				r.push(`a single overgrown baby.`);
+			} else if (slave.pregType >= 10) {
+				r.push(`${slave.pregType} overgrown babies.`);
+			} else {
+				r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+			}
+			r.push(`${He} is very overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+		} else if (slave.pregType > 9) {
+			r.push(`<span class="pink">obscenely pregnant</span> with`);
+			if (slave.pregType >= 50) {
+				r.push(`an absurd number of children.`);
+			} else if (slave.pregType >= 30) {
+				r.push(`far too many children.`);
+			} else if (slave.pregType >= 10) {
+				r.push(`${slave.pregType} children.`);
+			} else {
+				r.push(`${pregNumberName(slave.pregType, 2)}.`);
+			}
+		} else {
+			r.push(`<span class="pink">obscenely pregnant:</span> ${he}'s`);
+			if (slave.pregType === 9) {
+				r.push(`almost ready to give birth to nonuplets.`);
+			} else {
+				r.push(`ready to give birth to octuplets.`);
+			}
+		}
+		r.push(App.Desc.superfetation(slave));
+	} else if (slave.bellyImplant >= 120000) {
+		r.push(`${He} looks <span class="pink">obscenely pregnant with octuplets.</span> ${His} overburdened middle is filled by ${his} ${slave.bellyImplant}cc belly implant.`);
+	} else if (slave.bellyPreg >= 15000) {
+		r.push(`${He} is`);
+		if (slave.bellyPreg >= 105000) {
+			if (slave.preg >= slave.pregData.normalBirth * 1.375) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType === 1) {
+					r.push(`a single overgrown baby.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} overgrown babies.`);
+				} else {
+					r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+				}
+				r.push(`${He} is horrifically overdue; ${he} should have given birth a staggering ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+			} else if (slave.preg >= slave.pregData.normalBirth * 1.25) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType === 1) {
+					r.push(`a single overgrown baby.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} overgrown babies.`);
+				} else {
+					r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+				}
+				r.push(`${He} is extremely overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+			} else if (slave.preg >= slave.pregData.normalBirth * 1.075) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType === 1) {
+					r.push(`a single overgrown baby.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} overgrown babies.`);
+				} else {
+					r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+				}
+				r.push(`${He} is very overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+			} else if (slave.pregType > 8) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType >= 50) {
+					r.push(`an absurd number of children.`);
+				} else if (slave.pregType >= 30) {
+					r.push(`far too many children.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} children.`);
+				} else {
+					r.push(`${pregNumberName(slave.pregType, 2)}.`);
+				}
+			} else {
+				r.push(`<span class="pink">massively pregnant:</span> ${he}'s`);
+				if (slave.pregType === 8) {
+					r.push(`almost ready to give birth to octuplets.`);
+				} else {
+					r.push(`ready to give birth to septuplets.`);
+				}
+			}
+		} else if (slave.bellyPreg >= 90000) {
+			if (slave.preg >= slave.pregData.normalBirth * 1.375) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType === 1) {
+					r.push(`a single overgrown baby.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} overgrown babies.`);
+				} else {
+					r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+				}
+				r.push(`${He} is horrifically overdue; ${he} should have given birth a staggering ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+			} else if (slave.preg >= slave.pregData.normalBirth * 1.25) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType === 1) {
+					r.push(`a single overgrown baby.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} overgrown babies.`);
+				} else {
+					r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+				}
+				r.push(`${He} is extremely overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+			} else if (slave.preg >= slave.pregData.normalBirth * 1.075) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType === 1) {
+					r.push(`a single overgrown baby.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} overgrown babies.`);
+				} else {
+					r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+				}
+				r.push(`${He} is very overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+			} else if (slave.pregType > 7) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType >= 50) {
+					r.push(`an absurd number of children.`);
+				} else if (slave.pregType >= 30) {
+					r.push(`far too many children.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} children.`);
+				} else {
+					r.push(`${pregNumberName(slave.pregType, 2)}.`);
+				}
+			} else {
+				r.push(`<span class="pink">massively pregnant:</span> ${he}'s`);
+				if (slave.pregType === 7) {
+					r.push(`almost ready to give birth to septuplets.`);
+				} else {
+					r.push(`ready to give birth to sextuplets.`);
+				}
+			}
+		} else if (slave.bellyPreg >= 75000) {
+			if (slave.preg >= slave.pregData.normalBirth * 1.375) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType === 1) {
+					r.push(`a single overgrown baby.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} overgrown babies.`);
+				} else {
+					r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+				}
+				r.push(`${He} is horrifically overdue; ${he} should have given birth a staggering ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+			} else if (slave.preg >= slave.pregData.normalBirth * 1.25) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType === 1) {
+					r.push(`a single overgrown baby.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} overgrown babies.`);
+				} else {
+					r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+				}
+				r.push(`${He} is extremely overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+			} else if (slave.preg >= slave.pregData.normalBirth * 1.075) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType === 1) {
+					r.push(`a single overgrown baby.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} overgrown babies.`);
+				} else {
+					r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+				}
+				r.push(`${He} is very overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+			} else if (slave.pregType > 6) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType >= 50) {
+					r.push(`an absurd number of children.`);
+				} else if (slave.pregType >= 30) {
+					r.push(`far too many children.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} children.`);
+				} else {
+					r.push(`${pregNumberName(slave.pregType, 2)}.`);
+				}
+			} else {
+				r.push(`<span class="pink">massively pregnant:</span> ${he}'s`);
+				if (slave.pregType === 6) {
+					r.push(`almost ready to give birth to sextuplets.`);
+				} else {
+					r.push(`ready to give birth to quintuplets.`);
+				}
+			}
+		} else if (slave.bellyPreg >= 60000) {
+			if (slave.preg >= slave.pregData.normalBirth * 1.375) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType === 1) {
+					r.push(`a single overgrown baby.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} overgrown babies.`);
+				} else {
+					r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+				}
+				r.push(`${He} is horrifically overdue; ${he} should have given birth a staggering ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+			} else if (slave.preg >= slave.pregData.normalBirth * 1.25) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType === 1) {
+					r.push(`a single overgrown baby.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} overgrown babies.`);
+				} else {
+					r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+				}
+				r.push(`${He} is extremely overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+			} else if (slave.preg >= slave.pregData.normalBirth * 1.075) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType === 1) {
+					r.push(`a single overgrown baby.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} overgrown babies.`);
+				} else {
+					r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+				}
+				r.push(`${He} is very overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+			} else if (slave.pregType > 5) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType >= 50) {
+					r.push(`an absurd number of children.`);
+				} else if (slave.pregType >= 30) {
+					r.push(`far too many children.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} children.`);
+				} else {
+					r.push(`${pregNumberName(slave.pregType, 2)}.`);
+				}
+			} else {
+				r.push(`<span class="pink">massively pregnant:</span> ${he}'s`);
+				if (slave.pregType === 5) {
+					r.push(`almost ready to give birth to quintuplets.`);
+				} else {
+					r.push(`ready to give birth to quadruplets.`);
+				}
+			}
+		} else if (slave.bellyPreg >= 45000) {
+			if (slave.preg >= slave.pregData.normalBirth * 1.375) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType === 1) {
+					r.push(`a single overgrown baby.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} overgrown babies.`);
+				} else {
+					r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+				}
+				r.push(`${He} is horrifically overdue; ${he} should have given birth a staggering ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+			} else if (slave.preg >= slave.pregData.normalBirth * 1.25) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType === 1) {
+					r.push(`a single overgrown baby.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} overgrown babies.`);
+				} else {
+					r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+				}
+				r.push(`${He} is extremely overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+			} else if (slave.preg >= slave.pregData.normalBirth * 1.075) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType === 1) {
+					r.push(`a single overgrown baby.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} overgrown babies.`);
+				} else {
+					r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+				}
+				r.push(`${He} is very overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+			} else if (slave.pregType > 4) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType >= 50) {
+					r.push(`an absurd number of children.`);
+				} else if (slave.pregType >= 30) {
+					r.push(`far too many children.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} children.`);
+				} else {
+					r.push(`${pregNumberName(slave.pregType, 2)}.`);
+				}
+			} else {
+				r.push(`<span class="pink">massively pregnant:</span> ${he}'s`);
+				if (slave.pregType === 4) {
+					r.push(`almost ready to give birth to quadruplets.`);
+				} else {
+					r.push(`ready to give birth to triplets.`);
+				}
+			}
+		} else if (slave.bellyPreg >= 30000) {
+			if (slave.preg >= slave.pregData.normalBirth * 1.375) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType === 1) {
+					r.push(`a single overgrown baby.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} overgrown babies.`);
+				} else {
+					r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+				}
+				r.push(`${He} is horrifically overdue; ${he} should have given birth a staggering ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+			} else if (slave.preg >= slave.pregData.normalBirth * 1.25) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType === 1) {
+					r.push(`a single overgrown baby.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} overgrown babies.`);
+				} else {
+					r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+				}
+				r.push(`${He} is extremely overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+			} else if (slave.preg >= slave.pregData.normalBirth * 1.075) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType === 1) {
+					r.push(`a single overgrown baby.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} overgrown babies.`);
+				} else {
+					r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+				}
+				r.push(`${He} is very overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+			} else if (slave.pregType > 3) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType >= 50) {
+					r.push(`an absurd number of children.`);
+				} else if (slave.pregType >= 30) {
+					r.push(`far too many children.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} children.`);
+				} else {
+					r.push(`${pregNumberName(slave.pregType, 2)}.`);
+				}
+			} else {
+				r.push(`<span class="pink">massively pregnant:</span> ${he}'s`);
+				if (slave.pregType === 3) {
+					r.push(`almost ready to give birth to triplets.`);
+				} else {
+					r.push(`ready to give birth to twins.`);
+				}
+			}
+		} else {
+			if (slave.preg >= slave.pregData.normalBirth * 1.375) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType === 1) {
+					r.push(`a single overgrown baby.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} overgrown babies.`);
+				} else {
+					r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+				}
+				r.push(`${He} is horrifically overdue; ${he} should have given birth a staggering ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+			} else if (slave.preg >= slave.pregData.normalBirth * 1.25) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType === 1) {
+					r.push(`a single overgrown baby.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} overgrown babies.`);
+				} else {
+					r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+				}
+				r.push(`${He} is extremely overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+			} else if (slave.preg >= slave.pregData.normalBirth * 1.075) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType === 1) {
+					r.push(`a single overgrown baby.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} overgrown babies.`);
+				} else {
+					r.push(`overgrown ${pregNumberName(slave.pregType, 2)}.`);
+				}
+				r.push(`${He} is very overdue; ${he} should have given birth ${(slave.preg - slave.pregData.normalBirth)} weeks ago.`);
+			} else if (slave.pregType > 2) {
+				r.push(`<span class="pink">massively pregnant</span> with`);
+				if (slave.pregType >= 50) {
+					r.push(`an absurd number of children.`);
+				} else if (slave.pregType >= 30) {
+					r.push(`far too many children.`);
+				} else if (slave.pregType >= 10) {
+					r.push(`${slave.pregType} children.`);
+				} else {
+					r.push(`${pregNumberName(slave.pregType, 2)}.`);
+				}
+			} else {
+				r.push(`<span class="pink">massively pregnant:</span> ${he}'s`);
+				if (slave.pregType === 2) {
+					r.push(`almost ready to give birth to twins.`);
+				} else {
+					r.push(`ready to give birth.`);
+				}
+			}
+		}
+		r.push(App.Desc.superfetation(slave));
+	} else if (slave.bellyImplant >= 105000) {
+		r.push(`${He} looks <span class="pink">massively pregnant with septuplets.</span> ${He} greatly rounded middle is filled by ${his} ${slave.bellyImplant}cc belly implant.`);
+	} else if (slave.bellyImplant >= 90000) {
+		r.push(`${He} looks <span class="pink">massively pregnant with sextuplets.</span> ${He} greatly rounded middle is filled by ${his} ${slave.bellyImplant}cc belly implant.`);
+	} else if (slave.bellyImplant >= 75000) {
+		r.push(`${He} looks <span class="pink">massively pregnant with quintuplets.</span> ${He} greatly rounded middle is filled by ${his} ${slave.bellyImplant}cc belly implant.`);
+	} else if (slave.bellyImplant >= 60000) {
+		r.push(`${He} looks <span class="pink">massively pregnant with quadruplets.</span> ${He} greatly rounded middle is filled by ${his} ${slave.bellyImplant}cc belly implant.`);
+	} else if (slave.bellyImplant >= 45000) {
+		r.push(`${He} looks <span class="pink">massively pregnant with triplets.</span> ${He} greatly rounded middle is filled by ${his} ${slave.bellyImplant}cc belly implant.`);
+	} else if (slave.bellyImplant >= 30000) {
+		r.push(`${He} looks <span class="pink">massively pregnant with twins.</span> ${He} greatly rounded middle is filled by ${his} ${slave.bellyImplant}cc belly implant.`);
+	} else if (slave.bellyImplant >= 15000) {
+		r.push(`${He} looks <span class="pink">massively pregnant.</span> ${He} greatly rounded middle is filled by ${his} ${slave.bellyImplant}cc belly implant.`);
+	} else if (slave.bellyPreg >= 10000) {
+		r.push(`${He} is`);
+		if (slave.pregType > 2) {
+			r.push(`<span class="pink">hugely pregnant,</span> despite how early in ${his} pregnancy ${he} is: ${he}'s carrying`);
+			if (slave.pregType >= 50) {
+				r.push(`an absurd number of children.`);
+			} else if (slave.pregType >= 30) {
+				r.push(`far too many children.`);
+			} else if (slave.pregType >= 10) {
+				r.push(`${slave.pregType} children.`);
+			} else {
+				r.push(`${pregNumberName(slave.pregType, 2)}.`);
+			}
+		} else {
+			r.push(`<span class="pink">hugely pregnant:</span> ${he}'s`);
+			if (slave.pregType === 2) {
+				r.push(`carrying twins.`);
+			} else {
+				r.push(`almost ready to give birth.`);
+			}
+		}
+		r.push(`${App.Desc.superfetation(slave)}`);
+	} else if (slave.bellyImplant >= 10000) {
+		r.push(`${He} looks <span class="pink">hugely pregnant.</span> ${He} greatly rounded middle is filled by ${his} ${slave.bellyImplant}cc belly implant.`);
+	} else if (slave.bellyPreg >= 5000) {
+		r.push(`${He} is`);
+		if (slave.pregType > 2) {
+			r.push(`<span class="pink">very pregnant,</span> despite how early in ${his} pregnancy ${he} is: ${he}'s carrying`);
+			if (slave.pregType >= 50) {
+				r.push(`an absurd number of children.`);
+			} else if (slave.pregType >= 30) {
+				r.push(`far too many children.`);
+			} else if (slave.pregType >= 10) {
+				r.push(`${slave.pregType} children.`);
+			} else {
+				r.push(`${pregNumberName(slave.pregType, 2)}.`);
+			}
+		} else {
+			r.push(`<span class="pink">very pregnant:</span>`);
+			if (slave.pregType === 2) {
+				r.push(`${he}'s carrying twins.`);
+			} else {
+				r.push(`the baby inside ${him} is growing rapidly.`);
+			}
+		}
+		r.push(App.Desc.superfetation(slave));
+	} else if (slave.bellyImplant >= 5000) {
+		r.push(`${He} looks <span class="pink">very pregnant.</span> ${He} rounded middle is filled by ${his} ${slave.bellyImplant}cc belly implant.`);
+	} else if (slave.bellyPreg >= 1500) {
+		r.push(`${He} is`);
+		if (slave.pregType > 2) {
+			r.push(`<span class="pink">visibly pregnant,</span> despite how early in ${his} pregnancy ${he} is: ${he}'s carrying`);
+			if (slave.pregType >= 50) {
+				r.push(`an absurd number of children.`);
+			} else if (slave.pregType >= 30) {
+				r.push(`far too many children.`);
+			} else if (slave.pregType >= 10) {
+				r.push(`${slave.pregType} children.`);
+			} else {
+				r.push(`${pregNumberName(slave.pregType, 2)}.`);
+			}
+		} else {
+			r.push(`<span class="pink">visibly pregnant.</span>`);
+		}
+		r.push(App.Desc.superfetation(slave));
+	} else if (slave.bellyImplant >= 1500) {
+		r.push(`${He} looks <span class="pink">visibly pregnant.</span> ${He} rounded middle is caused by ${his} ${slave.bellyImplant}cc belly implant.`);
+	} else if (slave.bellyPreg >= 100) {
+		r.push(`${He} is <span class="pink">pregnant</span> and just beginning to show, though it is hard to tell at a glance.`);
+		r.push(App.Desc.superfetation(slave));
+	} else if (slave.bellyImplant > 0) {
+		r.push(`${He} has an abdominal implant, though it doesn't round out ${his} belly too much yet at a tiny ${slave.bellyImplant}ccs.`);
+	} else if (slave.bellyImplant === 0) {
+		r.push(`${He} has an abdominal implant, but it is completely empty.`);
+	} else if (slave.pregKnown === 1) {
+		r.push(`${He} is <span class="pink">pregnant,</span> though it isn't visible yet.`);
+		r.push(App.Desc.superfetation(slave));
+	} else if (slave.preg > 0 && slave.pregKnown === 0) {
+		r.push(`${His} period is late.`);
+	}
+	if (slave.preg + 5 <= slave.pregWeek && slave.preg <= slave.pregData.normalBirth + 2 && slave.bellyPreg >= 100) {
+		r.push(`Despite being pregnant for ${slave.pregWeek} weeks,`);
+		if (slave.preg > slave.pregData.minLiveBirth && slave.preg + 10 <= slave.pregWeek) {
+			r.push(`${his} pregnancy is finally nearing its end.`);
+		} else if (slave.preg + slave.pregData.normalBirth <= slave.pregWeek) {
+			if (slave.preg === slave.pregWeek / 2) {
+				r.push(`${he} could shockingly pass for a girl half as far along.`);
+			} else if (slave.preg === slave.pregWeek / 4) {
+				r.push(`${he} could shockingly pass for a girl only a quarter as far along.`);
+			} else {
+				r.push(`${he} shockingly only looks like a girl on ${his} ${ordinalSuffix(slave.preg)} week of pregnancy.`);
+			}
+		} else if (slave.preg + (slave.pregData.normalBirth / 2) <= slave.pregWeek) {
+			if (slave.preg === slave.pregWeek / 2) {
+				r.push(`${he} could surprisingly pass for a girl half as far along.`);
+			} else if (slave.preg === slave.pregWeek / 4) {
+				r.push(`${he} could surprisingly pass for a girl only a quarter as far along.`);
+			} else {
+				r.push(`${he} surprisingly only looks like a girl on ${his} ${ordinalSuffix(slave.preg)} week of pregnancy.`);
+			}
+		} else if (slave.preg + (slave.pregData.normalBirth / 4) <= slave.pregWeek) {
+			if (slave.preg === slave.pregWeek / 2) {
+				r.push(`${he} could pass for a girl half as far along.`);
+			} else if (slave.preg === slave.pregWeek / 4) {
+				r.push(`${he} could pass for a girl only a quarter as far along.`);
+			} else {
+				r.push(`${he} only looks like a woman on ${his} ${ordinalSuffix(slave.preg)} week of pregnancy.`);
+			}
+		} else {
+			r.push(`${his} pregnancy is smaller than anticipated.`);
+		}
+	} else if (slave.preg > slave.pregWeek && slave.preg <= slave.pregData.normalBirth + 2 && slave.bellyPreg >= 100) {
+		if (slave.preg > slave.pregData.minLiveBirth && slave.preg >= slave.pregWeek + 10) {
+			r.push(`Even though ${he} is a mere ${slave.pregWeek} weeks along, ${his} pregnancy is at its end.`);
+		} else if (slave.preg >= slave.pregWeek + (slave.pregData.normalBirth / 2.66)) {
+			r.push(`Despite being pregnant for only ${slave.pregWeek} weeks,`);
+			if (slave.preg === slave.pregWeek * 2) {
+				r.push(`${he} could shockingly pass for a girl twice as far along.`);
+			} else if (slave.preg === slave.pregWeek * 4) {
+				r.push(`${he} could shockingly pass for a girl nearly four times as far along.`);
+			} else {
+				r.push(`${he} shockingly looks like a girl on ${his} ${ordinalSuffix(slave.preg)} week of pregnancy.`);
+			}
+		} else if (slave.preg >= slave.pregWeek + (slave.pregData.normalBirth / 4)) {
+			r.push(`Despite being pregnant for only ${slave.pregWeek} weeks,`);
+			if (slave.preg === slave.pregWeek * 2) {
+				r.push(`${he} could surprisingly pass for a girl twice as far along.`);
+			} else if (slave.preg === slave.pregWeek * 4) {
+				r.push(`${he} could surprisingly pass for a girl nearly four times as far along.`);
+			} else {
+				r.push(`${he} surprisingly looks like a girl on ${his} ${ordinalSuffix(slave.preg)} week of pregnancy.`);
+			}
+		} else if (slave.preg >= slave.pregWeek + (slave.pregData.normalBirth / 8)) {
+			r.push(`Despite being pregnant for only ${slave.pregWeek} weeks,`);
+			if (slave.preg === slave.pregWeek * 2) {
+				r.push(`${he} could pass for a girl twice as far along.`);
+			} else if (slave.preg === slave.pregWeek * 4) {
+				r.push(`${he} could pass for a girl nearly four times as far along.`);
+			} else {
+				r.push(`${he} looks like a woman on ${his} ${ordinalSuffix(slave.preg)} week of pregnancy.`);
+			}
+		} else {
+			r.push(`Despite being pregnant for only ${slave.pregWeek} weeks, ${his} pregnancy is larger than anticipated.`);
+		}
+	}
+	if (slave.pregKnown === 1 && V.saleDescription === 0) {
+		const slaveWD = WombGetLittersData(slave);
+		if (slave.geneticQuirks.superfetation === 2 && slaveWD.litters.length > 1) {
+			if (V.pregnancyMonitoringUpgrade !== 1) {
+				let sameFather = 1;
+				const sameFatherID = slaveWD.litterData[0][0].fatherID;
+				for (let litCount = 0; litCount < slaveWD.litters.length; litCount++) {
+					if (slaveWD.litterData[litCount][litCount] !== sameFatherID) {
+						sameFather = 0;
+						break;
+					}
+				}
+				r.push(`${His} superfetation has resulted in multiple simultaneous pregnancies;`);
+				if (sameFather !== 1) {
+					r.push(`tests report multiple different sources.`);
+				} else {
+					if (slaveWD.litterData[litCount][0].age > slave.pregData.normalBirth / 8) {
+						r.push(`all of them too young to tell the father of.`);
+					} else if (slave.pregSource === -7) {
+						r.push(`all of them modified children from the gene lab.`);
+					} else if (slave.pregSource === -1) {
+						r.push(`all of them yours.`);
+					} else if (slave.pregSource === -2) {
+						r.push(`all of them fathered by your citizens.`);
+					} else if (slave.pregSource === -3) {
+						r.push(`all of them fathered by your former Master. He was quite the busy man.`);
+					} else if (slave.pregSource === -4) {
+						r.push(`all of them fathered by another arcology owner.`);
+					} else if (slave.pregSource === -5) {
+						r.push(`all of them fathered by one of your clients.`);
+					} else if (slave.pregSource === -6) {
+						r.push(`all of them fathered by the Societal Elite.`);
+					} else if (slave.pregSource === -9) {
+						r.push(`all of them fathered by the Futanari Sisters, given how far along ${he} is and ${his} history.`);
+					} else if (slave.pregSource === 0) {
+						r.push(`all of them of unidentifiable sources.`);
+					} else if (slave.pregSource === slave.ID) {
+						r.push(`all of them ${his} own.`);
+					} else {
+						r.push(`all of them ${daddy}'s.`);
+					}
+				}
+			}
+		} else {
+			if (slave.pregSource === -7) {
+				r.push(`${His} womb contains`);
+				if (slave.pregType > 1) {
+					if (slave.pregType > 10) {
+						r.push(`many`);
+					}
+					r.push(`modified children`);
+				} else {
+					r.push(`a modified child`);
+				}
+				r.push(`from the gene lab.`);
+			} else if (slave.preg > slave.pregData.normalBirth / 8) {
+				if (slave.pregSource === -1) {
+					r.push(`Tests show ${his} womb contains`);
+					if (slave.pregType > 1) {
+						if (slave.pregType > 10) {
+							r.push(`many of`);
+						}
+						r.push(`your growing children.`);
+					} else {
+						r.push(`your growing child.`);
+					}
+				} else if (slave.pregSource === -2) {
+					r.push(`Tests show ${his} womb contains`);
+					if (slave.pregType > 1) {
+						if (slave.pregType > 10) {
+							r.push(`many`);
+						}
+						r.push(`children`);
+					} else {
+						r.push(`a child`);
+					}
+					r.push(`fathered by one of your citizens.`);
+				} else if (slave.pregSource === -3) {
+					r.push(`Tests show ${his} womb contains`);
+					if (slave.pregType > 1) {
+						if (slave.pregType > 10) {
+							r.push(`many`);
+						}
+						r.push(`children`);
+					} else {
+						r.push(`a child`);
+					}
+					r.push(`fathered by your former Master. He was quite the busy man.`);
+				} else if (slave.pregSource === -4) {
+					r.push(`Tests show ${his} womb contains`);
+					if (slave.pregType > 1) {
+						if (slave.pregType > 10) {
+							r.push(`many`);
+						}
+						r.push(`children`);
+					} else {
+						r.push(`a child`);
+					}
+					r.push(`fathered by another arcology owner.`);
+				} else if (slave.pregSource === -5) {
+					r.push(`Tests show ${his} womb contains`);
+					if (slave.pregType > 1) {
+						if (slave.pregType > 10) {
+							r.push(`many`);
+						}
+						r.push(`children`);
+					} else {
+						r.push(`a child`);
+					}
+					r.push(`fathered by one of your clients.`);
+				} else if (slave.pregSource === -6) {
+					r.push(`Tests show ${his} womb contains`);
+					if (slave.pregType > 1) {
+						if (slave.pregType > 10) {
+							r.push(`many`);
+						}
+						r.push(`children`);
+					} else {
+						r.push(`a child`);
+					}
+					r.push(`fathered by the Societal Elite.`);
+				} else if (slave.pregSource === -9) {
+					r.push(`${His} womb contains`);
+					if (slave.pregType > 1) {
+						if (slave.pregType > 10) {
+							r.push(`many`);
+						}
+						r.push(`children`);
+					} else {
+						r.push(`a child`);
+					}
+					r.push(`fathered by the Futanari Sisters, given how far along ${he} is and ${his} history.`);
+				} else if (slave.pregSource === 0) {
+					r.push(`Tests are inconclusive on who fathered the`);
+					if (slave.pregType > 1) {
+						if (slave.pregType > 10) {
+							r.push(`many`);
+						}
+						r.push(`children`);
+					} else {
+						r.push(`child`);
+					}
+					r.push(`growing in ${his} womb.`);
+				} else if (slave.pregSource === slave.ID) {
+					r.push(`Tests show ${he} did this to ${himself}.`);
+				} else {
+					r.push(`Tests show ${his} womb contains`);
+					if (slave.pregType > 1) {
+						if (slave.pregType > 10) {
+							r.push(`many of`);
+						}
+						r.push(`${daddy}'s growing children.`);
+					} else {
+						r.push(`${daddy}'s growing child.`);
+					}
+				}
+			} else {
+				r.push(`It is too early to tell who exactly fathered the child growing in ${his} womb.`);
+			}
+		}
+	}
+	if (slave.bellyPreg > (slave.pregAdaptation * 1000)) {
+		r.push(`${He} is undergoing a <span class="red">high risk pregnancy.</span>`);
+	}
+
+	if (slave.belly >= 10000) {
+		r.push(`${His} stomach is <span class="coral">large enough to be in the way,</span> both in daily affairs and during sex.`);
+	}
+	return r.join(" ");
+};
diff --git a/src/npc/descriptions/womb/superfetation.js b/src/npc/descriptions/womb/superfetation.js
new file mode 100644
index 0000000000000000000000000000000000000000..e1f0abfb16a116e94e776a185a680d916b4421ac
--- /dev/null
+++ b/src/npc/descriptions/womb/superfetation.js
@@ -0,0 +1,166 @@
+App.Desc.superfetation = function(slave) {
+	const r = [];
+	const {
+		he, him, his, hers, himself, boy, He, His
+	} = getPronouns(slave);
+	let lsd;
+	let daddy;
+	const slaveWD = WombGetLittersData(slave);
+	if (slave.geneticQuirks.superfetation === 2 && slaveWD.litters.length > 1 && V.pregnancyMonitoringUpgrade === 1 && V.saleDescription === 0) {
+		r.push(`${His} womb contains ${num(slaveWD.litters.length)} separate pregnancies`);
+		for (let litCount = 0; litCount < slaveWD.litters.length; litCount++) {
+			const countLitter = slaveWD.countLitter[litCount];
+			const is = countLitter > 1 ? "are" : "is";
+			const was = countLitter > 1 ? "were" : "was";
+			if (litCount === 0) {
+				r.push(`the eldest`);
+				if (countLitter > 1) {
+					r.push(`set of ${num(countLitter)},`);
+				} else {
+					r.push(`one,`);
+				}
+				r.push(`at ${slaveWD.litters[litCount]}`);
+				if (slaveWD.litters[litCount] > 1) {
+					r.push(`weeks`);
+				} else {
+					r.push(`week`);
+				}
+				r.push(`of development,`);
+				if (slaveWD.litterData[litCount][0].fatherID === -7) {
+					r.push(`${is} from the gene lab,`);
+				} else if (slaveWD.litterData[litCount][0].age > slave.pregData.normalBirth / 8) {
+					if (slaveWD.litterData[litCount][0].fatherID === -1) {
+						r.push(`${was} fathered by your seed,`);
+					} else if (slaveWD.litterData[litCount][0].fatherID === -2) {
+						r.push(`${was} fathered by one of your citizens,`);
+					} else if (slaveWD.litterData[litCount][0].fatherID === -3) {
+						r.push(`${was} fathered by your former Master,`);
+					} else if (slaveWD.litterData[litCount][0].fatherID === -4) {
+						r.push(`${was} fathered by another arcology owner,`);
+					} else if (slaveWD.litterData[litCount][0].fatherID === -5) {
+						r.push(`${was} fathered by one of your clients,`);
+					} else if (slaveWD.litterData[litCount][0].fatherID === -6) {
+						r.push(`${was} fathered by a member of the Societal Elite,`);
+					} else if (slaveWD.litterData[litCount][0].fatherID === -9) {
+						r.push(`${was} fathered by the Futanari Sisters,`);
+					} else if (slaveWD.litterData[litCount][0].fatherID === 0) {
+						r.push(`${is} from an unidentifiable source,`);
+					} else if (slaveWD.litterData[litCount][0].fatherID === slave.ID) {
+						r.push(`${is} from ${his} own handiwork,`);
+					} else {
+						if (slaveWD.litterData[litCount][0].fatherID > 0) {
+							lsd = findFather(slaveWD.litterData[litCount][0].fatherID);
+							if (lsd) {
+								daddy = SlaveFullName(lsd);
+							} else {
+								daddy = "another slave";
+							}
+						} else if (slaveWD.litterData[litCount][0].fatherID in V.missingTable && V.showMissingSlaves) {
+							daddy = V.missingTable[slave.pregSource].fullName;
+						}
+						r.push(`${was} fathered by ${daddy}'s seed,`);
+					}
+				} else {
+					r.push(`${is} too young to tell the father of,`);
+				}
+			} else if (litCount === slaveWD.litters.length - 1) {
+				r.push(`and the youngest`);
+				if (countLitter > 1) {
+					r.push(`set of ${num(countLitter)},`);
+				} else {
+					r.push(`one,`);
+				}
+				r.push(`at ${slaveWD.litters[litCount]} week`);
+				if (slaveWD.litters[litCount] > 1) {
+					r.push(`weeks`);
+				} else {
+					r.push(`week`);
+				}
+				r.push(`of development,`);
+				if (slaveWD.litterData[litCount][0].fatherID === -7) {
+					r.push(`${is} from the gene lab.`);
+				} else if (slaveWD.litterData[litCount][0].age > slave.pregData.normalBirth / 8) {
+					if (slaveWD.litterData[litCount][0].fatherID === -1) {
+						r.push(`${was} fathered by your seed.`);
+					} else if (slaveWD.litterData[litCount][0].fatherID === -2) {
+						r.push(`${was} fathered by one of your citizens.`);
+					} else if (slaveWD.litterData[litCount][0].fatherID === -3) {
+						r.push(`${was} fathered by your former Master. He was quite the busy man.`);
+					} else if (slaveWD.litterData[litCount][0].fatherID === -4) {
+						r.push(`${was} fathered by another arcology owner.`);
+					} else if (slaveWD.litterData[litCount][0].fatherID === -5) {
+						r.push(`${was} fathered by one of your clients.`);
+					} else if (slaveWD.litterData[litCount][0].fatherID === -6) {
+						r.push(`${was} fathered by a member of the Societal Elite.`);
+					} else if (slaveWD.litterData[litCount][0].fatherID === -9) {
+						r.push(`${was} fathered by the Futanari Sisters.`);
+					} else if (slaveWD.litterData[litCount][0].fatherID === 0) {
+						r.push(`${is} from an unidentifiable source.`);
+					} else if (slaveWD.litterData[litCount][0].fatherID === slave.ID) {
+						r.push(`${is} from ${his} own seed.`);
+					} else {
+						if (slaveWD.litterData[litCount][0].fatherID > 0) {
+							lsd = findFather(slaveWD.litterData[litCount][0].fatherID);
+							if (lsd) {
+								daddy = SlaveFullName(lsd);
+							} else {
+								daddy = "another slave";
+							}
+						} else if (slaveWD.litterData[litCount][0].fatherID in V.missingTable && V.showMissingSlaves) {
+							daddy = V.missingTable[slave.pregSource].fullName;
+						}
+						r.push(`${was} fathered by ${daddy}'s seed.`);
+					}
+				} else {
+					r.push(`${is} too young to tell the father of.`);
+				}
+			} else {
+				r.push(`the next set of ${num(countLitter)} at ${slaveWD.litters[litCount]} week`);
+				if (slaveWD.litters[litCount] > 1) {
+					r.push(`weeks`);
+				} else {
+					r.push(`week`);
+				}
+				r.push(`of development`);
+				if (slaveWD.litterData[litCount][0].fatherID === -7) {
+					r.push(`${is} from the gene lab,`);
+				} else if (slaveWD.litterData[litCount][0].age > slave.pregData.normalBirth / 8) {
+					if (slaveWD.litterData[litCount][0].fatherID === -1) {
+						r.push(`${was} fathered by your seed,`);
+					} else if (slaveWD.litterData[litCount][0].fatherID === -2) {
+						r.push(`${was} fathered by one of your citizens,`);
+					} else if (slaveWD.litterData[litCount][0].fatherID === -3) {
+						r.push(`${was} fathered by your former Master,`);
+					} else if (slaveWD.litterData[litCount][0].fatherID === -4) {
+						r.push(`${was} fathered by another arcology owner,`);
+					} else if (slaveWD.litterData[litCount][0].fatherID === -5) {
+						r.push(`${was} fathered by one of your clients,`);
+					} else if (slaveWD.litterData[litCount][0].fatherID === -6) {
+						r.push(`${was} fathered by a member of the Societal Elite,`);
+					} else if (slaveWD.litterData[litCount][0].fatherID === -9) {
+						r.push(`${was} fathered by the Futanari Sisters,`);
+					} else if (slaveWD.litterData[litCount][0].fatherID === 0) {
+						r.push(`${is} from an unidentifiable source,`);
+					} else if (slaveWD.litterData[litCount][0].fatherID === slave.ID) {
+						r.push(`${is} from ${his} own handiwork,`);
+					} else {
+						if (slaveWD.litterData[litCount][0].fatherID > 0) {
+							lsd = findFather(slaveWD.litterData[litCount][0].fatherID);
+							if (lsd) {
+								daddy = SlaveFullName(lsd);
+							} else {
+								daddy = "another slave";
+							}
+						} else if (slaveWD.litterData[litCount][0].fatherID in V.missingTable && V.showMissingSlaves) {
+							daddy = V.missingTable[slave.pregSource].fullName;
+						}
+						r.push(`${was} fathered by ${daddy}'s seed,`);
+					}
+				} else {
+					r.push(`${is} too young to tell the father of,`);
+				}
+			}
+		}
+	}
+	return r.join(" ");
+};
diff --git a/src/npc/interaction/fDance.tw b/src/npc/interaction/fDance.tw
index 7ccc9dbf4589a3c5cd9ed43bf9fd49a3174b7bc9..c094f11af1bbb3bbb48cbfaa09177aa447dd7aa7 100644
--- a/src/npc/interaction/fDance.tw
+++ b/src/npc/interaction/fDance.tw
@@ -1285,10 +1285,10 @@ It's not over yet, though. You tell your slave that it's time to incorporate som
 								<<case "mindbroken">>
 									"Free Slut"
 								<<default>>
-									<<InscripDesc>>
+									<<print App.Desc.inscrip($activeSlave)>>
 							<</switch>>
 						<<else>>
-							<<InscripDesc>>
+							<<print App.Desc.inscrip($activeSlave)>>
 						<</if>>
 				<</switch>>
 				is written across $his chest in large, vibrant letters.
diff --git a/src/player/desc/playerBelly.js b/src/player/desc/playerBelly.js
new file mode 100644
index 0000000000000000000000000000000000000000..ab532aca55547ac6f438cc28db0fcd09851d1122
--- /dev/null
+++ b/src/player/desc/playerBelly.js
@@ -0,0 +1,598 @@
+App.Desc.Player.belly = function() {
+	const r = [];
+	const children = V.PC.pregType > 1 ? "children" : "child";
+	let fertRefresh;
+	let toSearch;
+	let babyDaddy;
+	let adjust;
+
+	if (passage() === "Manage Personal Affairs") {
+		if (V.PC.preg > 0) {
+			if (V.PC.belly >= 120000) {
+				r.push(`<span class="red">Your belly is coated with stretch marks and is taut as a drum; you don't know how much more your poor womb can endure.</span> You can barely even leave your bed without a helping hand. Kicks can almost constantly be seen dotting its surface. You give it a pat for good measure, only encouraging your ${pregNumberName(V.PC.pregType, 2)}`);
+				r.push(`to squirm in excitement.`);
+				if (V.PC.dick !== 0) {
+					r.push(`You watch as your dick hardens from the prostate stimulation; you steady yourself for the coming orgasm.`);
+				}
+			} else if (V.PC.belly >= 105000) {
+				r.push(`You have trouble getting up and sitting down. Even standing while supporting your <span class="orange">massive belly</span> has become an exhausting endeavor.`);
+			} else if (V.PC.belly >= 90000) {
+				r.push(`You can <span class="orange">barely reach around your gravid mass</span> any longer. Even the shortest waddle is exhausting.`);
+			} else if (V.PC.belly >= 75000) {
+				r.push(`Your <span class="orange">belly is starting to become worrying;</span> you feel over-filled at all times, and your children like to remind you just how full you are.`);
+			} else if (V.PC.belly >= 60000) {
+				r.push(`You're <span class="orange">definitely having multiples;</span> there is no denying it at this point. All you can do is try to relax and keep trying to stave off the stretch marks.`);
+			} else if (V.PC.belly >= 45000) {
+				r.push(`You both look and feel enormous; your <span class="orange">belly juts out so much now.</span> You've grown so much you now have trouble viewing yourself in mirror.`);
+			} else if (V.PC.belly >= 30000) {
+				r.push(`Whenever you have the chance, you prefer to stay naked instead of stretching out your clothing with your <span class="orange">giant pregnant belly.</span>`);
+			} else if (V.PC.belly >= 14000) {
+				r.push(`You're <span class="orange">so gravid</span> you have trouble seeing the entirety of your huge belly.`);
+			} else if (V.PC.belly >= 12000) {
+				r.push(`You can barely wrap your arms around your <span class="orange">huge pregnant belly,</span> and when you do, your popped navel reminds you of the`);
+				if (V.PC.pregType > 1) {
+					r.push(`buns`);
+				} else {
+					r.push(`bun`);
+				}
+				r.push(`in your oven.`);
+			} else if (V.PC.belly >= 10000) {
+				r.push(`Your <span class="orange">pregnancy has gotten quite huge;</span> none of your clothes fit it right.`);
+			} else if (V.PC.belly >= 7000) {
+				r.push(`Your <span class="orange">pregnant belly juts out annoyingly far;</span> just getting dressed is a pain now.`);
+			} else if (V.PC.belly >= 5000) {
+				r.push(`Your <span class="orange">belly has gotten quite large with child;</span> it is beginning to get the way of sex and business.`);
+			} else if (V.PC.belly >= 1500) {
+				r.push(`Your <span class="orange">belly is now large enough that there is no hiding it.</span>`);
+			} else if (V.PC.belly >= 500) {
+				r.push(`Your <span class="orange">belly is rounded by your early pregnancy.</span>`);
+			} else if (V.PC.belly >= 250) {
+				r.push(`Your <span class="orange">lower belly is beginning to stick out;</span> you're definitely pregnant.`);
+			} else if (V.PC.belly >= 100) {
+				r.push(`Your <span class="orange">belly is slightly swollen;</span> combined with your missed period, odds are you're pregnant.`);
+			} else if (V.PC.belly < 100) {
+				r.push(`Your <span class="red">period hasn't happened in some time;</span> you might be pregnant.`);
+			}
+			if (V.PC.preg >= 41) {
+				r.push(`You don't know why you even bother getting out of bed; you are <span class="orange">overdue and ready to drop</span> at any time, making your life as arcology owner very difficult. You try to relax and enjoy your slaves, but you can only manage so much in this state.`);
+			} else if (V.PC.preg >= 39) {
+				r.push(`You feel absolutely massive; your <span class="orange">full-term belly</span> makes your life as arcology owner very difficult.`);
+			}
+		} else if (V.PC.belly >= 1500) {
+			r.push(`Your belly is still very distended from your recent pregnancy.`);
+		} else if (V.PC.belly >= 500) {
+			r.push(`Your belly is still distended from your recent pregnancy.`);
+		} else if (V.PC.belly >= 250) {
+			r.push(`Your belly is still bloated from your recent pregnancy`);
+		} else if (V.PC.belly >= 100) {
+			r.push(`Your belly is still slightly swollen after your recent pregnancy.`);
+		}
+	} else if (passage() === "Economics") {
+		if (V.PC.career === "servant") {
+			if (V.PC.preg > 0) {
+				if (V.PC.belly >= 120000) {
+					r.push(`You don't know how much more you can take. You feel so full and your children never calm down. You swear they take shifts tormenting your poor bladder. Even worse, your pregnancy juts out over a half-`);
+					if (V.showInches === 2) {
+						r.push(`yard`);
+					} else {
+						r.push(`meter`);
+					}
+					r.push(`from your front and has soundly defeated the seams of your`);
+					if (V.PC.dick !== 0) {
+						r.push(`dress. Occasionally one of the bottoms manages to land a series of hits to your prostate, not that you mind as much, save for when they keep at it and you can't restrain your orgasm.`);
+					} else {
+						r.push(`dress.`);
+					}
+				} else if (V.PC.belly >= 105000) {
+					r.push(`You can barely function any more. You're so big and heavy that even the simplest of actions requires both intense effort and thought just to get it done. Your frumpy dress is also at its limit, and much to your annoyance, your children will not stay still enough to let you fix it.`);
+				} else if (V.PC.belly >= 90000) {
+					toSearch = V.PC.refreshment.toLowerCase();
+					fertRefresh = 0;
+					if (toSearch.indexOf("fertility") !== -1) {
+						fertRefresh = 1;
+					}
+					r.push(`You may have a`);
+					if (fertRefresh === 1) {
+						r.push(`problem, but then again, you did take all those fertility drugs, so you can't really say you didn't want it.`);
+					} else {
+						r.push(`problem. You took fertility drugs, but you shouldn't be getting this big.`);
+					}
+					r.push(`Judging by how far along you are, you must be carrying ${pregNumberName(V.PC.pregType, 2)}. Your Master always said he wanted a big family; too bad he isn't here to see this. Your dress is also starting to get tight, but it's far less of a concern at this point.`);
+				} else if (V.PC.belly >= 75000) {
+					r.push(`Your belly is starting to become worrying. You're positively gigantic and quite tired. Though on the plus side, your dress is rather form fitting now.`);
+				} else if (V.PC.belly >= 60000) {
+					r.push(`Your new outfit is handling your enormous belly quite well, though it does nothing to hide your size. Everyone can tell you'll be having lots of babies.`);
+				} else if (V.PC.belly >= 45000) {
+					r.push(`You both look and feel enormous, your belly juts out so much now. You found a rather frumpy looking maid outfit in a shop; it's not the most attractive thing, but it'll hold nearly any belly.`);
+				} else if (V.PC.belly >= 30000) {
+					r.push(`You feel absolutely gigantic; you look like you're full-term with`);
+					if (V.PC.pregType === 2) {
+						r.push(`twins (which you are).`);
+					} else {
+						r.push(`twins.`);
+					}
+					r.push(`Your restitched dress is once more at its limit.`);
+				} else if (V.PC.belly >= 15000) {
+					r.push(`You've taken the time to let out your own dress so that you can look proper even with a belly as big as any full-term woman's.`);
+				} else if (V.PC.belly >= 14000) {
+					r.push(`Your dress is at its capacity; any bigger and you'd risk tearing it at the seams, though your late Master did make sure his ${_girlP}s were well dressed even when they were fully rounded with his child.`);
+				} else if (V.PC.belly >= 12000) {
+					r.push(`You keep bumping into things with your huge belly; you're used to it though,`);
+					if (V.PC.counter.birthMaster >= 2) {
+						r.push(`your first pregnancy was a twinner!`);
+					} else {
+						r.push(`your late Master liked to keep a big fake belly around your middle.`);
+					}
+				} else if (V.PC.belly >= 10000) {
+					r.push(`Your huge pregnant belly is tiring to carry around, but you're well versed in moving about with a rounded middle.`);
+				} else if (V.PC.belly >= 7000) {
+					r.push(`You've stopped bothering to tie your apron behind you, allowing your dress the freedom to stretch with your growing ${children}.`);
+				} else if (V.PC.belly >= 5000) {
+					r.push(`Your maid's outfit is rounded out by your baby-filled belly; not only is it obvious, but it is slowing you down in your day to day affairs.`);
+				} else if (V.PC.belly >= 3000) {
+					r.push(`You're starting to get pretty big; you feel like all eyes are centered on your baby-filled middle.`);
+				} else if (V.PC.belly >= 1500) {
+					r.push(`Your belly is now large enough that there is no hiding it. After you've let out your apron, your dress fits nicely again.`);
+				} else if (V.PC.belly >= 500) {
+					r.push(`Your dress tightly clings to your early pregnancy, though it, your apron, and your previous experience hide it well.`);
+				} else if (V.PC.belly >= 250) {
+					r.push(`Your apron holds your dress tightly to your bloated middle.`);
+				} else if (V.PC.belly >= 100) {
+					r.push(`Your dress and apron feel tight around your middle.`);
+				}
+				if (V.PC.preg >= 41) {
+					r.push(`Your`);
+					if (V.PC.pregType > 1) {
+						r.push(`babies are`);
+					} else {
+						r.push(`baby is`);
+					}
+					r.push(`overdue and your Master isn't here anymore to comfort your exhausted body. You try your best,`);
+					if (V.PC.pregSource === -3) {
+						r.push(`drawing strength from the knowledge that you carry your late Master's legacy within you.`);
+					} else {
+						r.push(`but deep down you are saddened that your`);
+						if (V.PC.pregType > 1) {
+							r.push(`children aren't`);
+						} else {
+							r.push(`child isn't`);
+						}
+						r.push(`his.`);
+					}
+					if (V.PC.pregMood === 1) {
+						r.push(`However, thanks to all your mothering, your slaves are more than happy to do everything they can for you.`);
+					} else if (V.PC.pregMood === 2) {
+						if (V.seeDicks !== 0) {
+							r.push(`Your slaves, those with dicks especially,`);
+						} else {
+							r.push(`Your slaves`);
+						}
+						r.push(`are terrified of being seen by you, knowing full well that they will be bearing the full weight of your body as you try to fill the hole left by your late Master.`);
+					}
+				} else if (V.PC.preg >= 39) {
+					r.push(`Every action you take is exhausting, and even though your slaves are more than capable of serving your every desire, you refuse to slow down with your duties.`);
+					if (V.PC.pregMood === 1) {
+						r.push(`Though you definitely appreciate their aid.`);
+					} else if (V.PC.pregMood === 2) {
+						r.push(`Your hormones practically rule you, leading you to demand your slaves to be prepared to pleasure you at a moments notice. Your needy cunt hungers for dick and you don't care`);
+						if (V.seeDicks !== 0) {
+							r.push(`what it is attached to`);
+						} else {
+							r.push(`if it's made of plastic`);
+						}
+						r.push(`right now.`);
+					}
+				} else if (V.PC.preg >= 36) {
+					r.push(`Your`);
+					if (V.PC.pregType > 1) {
+						r.push(`children happily kick`);
+					} else {
+						r.push(`child happily kicks`);
+					}
+					r.push(`away inside your womb, and each time a small bump appears on the outside of your dress.`);
+					if (V.PC.pregMood === 1) {
+						r.push(`While hormones may have you demanding and needy, you do everything you can to treat your slaves as if they were your own children.`);
+					} else if (V.PC.pregMood === 2) {
+						r.push(`You know it's unbecoming for an arcology owner, but your former Master loved to fuck you while you`);
+						if (V.PC.counter.birthMaster > 0) {
+							r.push(`were pregnant with his`);
+							if (V.PC.counter.birthMaster > 1) {
+								r.push(`children`);
+							} else {
+								r.push(`child`);
+							}
+						} else {
+							r.push(`wore a big fake belly`);
+						}
+						r.push(`and your body misses his touch.`);
+					}
+				} else if (V.PC.preg >= 32) {
+					if (V.PC.pregMood === 1) {
+						r.push(`You can't help but enjoy having a slave suckle from you while you relax with them in your lap.`);
+					} else if (V.PC.pregMood === 2) {
+						r.push(`You know how to have sex while pregnant, and as such, so will your slaves.`);
+					}
+				} else if (V.PC.preg >= 28) {
+					if (V.PC.pregMood === 1) {
+						r.push(`You catch yourself babying your slaves from time to time.`);
+					} else if (V.PC.pregMood === 2) {
+						r.push(`Your sex drive has become unquenchable as of late.`);
+					}
+				} else if (V.PC.preg === 22) {
+					r.push(`Something startling happened this week; while enjoying a slave, your belly button popped out!`);
+				} else if (V.PC.preg === 8 && V.PC.pregSource > 0) {
+					babyDaddy = findFather(V.PC.pregSource);
+					if (babyDaddy) {
+						adjust = babyDaddy.counter.PCKnockedUp++;
+						adjustFatherProperty(babyDaddy, "PCKnockedUp", adjust);
+					}
+					if (V.slaveIndices[V.PC.pregSource]) {
+						({
+							he, him, his, hers, himself, girl, He, His, loli, wife, wives
+						} = getPronouns(babyDaddy));
+						r.push(`Rumors spread among your slaves that your middle is swollen with ${babyDaddy.slaveName}'s child. They're not wrong, though`);
+						if (babyDaddy.devotion > 20) {
+							r.push(`babyDaddy.slaveName is broken enough to not try and use it against you.In fact, it might even draw ${him} closer to you.`);
+						} else {
+							r.push(`you'd have liked it to have kept that from ${babyDaddy.slaveName}, lest the rebellious bitch use it to remain defiant.`);
+						}
+					}
+				}
+			}
+		} else if (V.PC.career === "escort") {
+			if (V.PC.preg > 0) {
+				if (V.PC.belly >= 120000) {
+					r.push(`You don't know how much more you can take. You feel so full and your children never calm down. You swear they take shifts tormenting your poor bladder. Even worse, your pregnancy juts out over a half-`);
+					if (V.showInches === 2) {
+						r.push(`yard`);
+					} else {
+						r.push(`meter`);
+					}
+					r.push(`from your front and has seized control as your dominant aspect.`);
+					if (V.PC.dick !== 0) {
+						r.push(`Occasionally one of the bottoms manages to land a series of hits to your prostate, not that you mind as much. It's good for business when you orgasm lewdly and cum your bottoms.`);
+					}
+				} else if (V.PC.belly >= 105000) {
+					r.push(`You can barely function any more. You're so big and heavy that even the simplest of actions requires both intense effort and thought just to get it done. None of your poses work with your gravid body either, and you're practically popping out of your skimpiest outfit.`);
+				} else if (V.PC.belly >= 90000) {
+					let toSearch = V.PC.refreshment.toLowerCase(), fertRefresh = 0;
+					if (toSearch.indexOf("fertility") !== -1) {
+						fertRefresh = 1;
+					}
+					if (fertRefresh === 1) {
+						r.push(`You may have a problem, but then again, you did take all those fertility drugs, so you can't really say you didn't want it.`);
+					} else {
+						r.push(`You may have a problem. You know you took fertility drugs, but you weren't supposed to get this big!`);
+					}
+					r.push(`Feeling yourself up, you'd fancy a guess that there are about`);
+					if (V.PC.counter.medicine >= 45) {
+						if (V.PC.pregType === 8) {
+							r.push(`eight babies`);
+						} else if (V.PC.pregType === 7) {
+							r.push(`seven babies`);
+						} else {
+							r.push(`six babies`);
+						}
+					} else {
+						if (V.PC.pregType === 8) {
+							r.push(`a dozen babies`);
+						} else if (V.PC.pregType === 7) {
+							r.push(`ten babies`);
+						} else {
+							r.push(`eight babies`);
+						}
+					}
+					r.push(`in your belly.`);
+				} else if (V.PC.belly >= 75000) {
+					r.push(`Your belly is starting to become worrying to you. You're positively gigantic and quite tired of it.`);
+					if (V.arcologies[0].FSRepopulationFocus !== "unset") {
+						r.push(`The last thing on peoples' minds these days is fucking you too.`);
+					}
+				} else if (V.PC.belly >= 60000) {
+					r.push(`You feel sexy with such a huge belly, but it sure is tiring. Everyone can also tell you'll be having lots of babies — a boon to business, since everyone knows you ride bareback.`);
+				} else if (V.PC.belly >= 45000) {
+					r.push(`You both look and feel enormous, your belly juts out so much now. Your strategy worked! Eyes always end up locked onto you or your pregnancy, but they quickly return to your milky breasts.`);
+				} else if (V.PC.belly >= 30000) {
+					r.push(`You feel absolutely gigantic; you look like you're full-term with`);
+					if (V.PC.pregType === 2) {
+						r.push(`twins (which you are).`);
+					} else {
+						r.push(`twins.`);
+					}
+					r.push(`You find the skimpiest outfit you can to complement your size; if people won't notice your other assets, then they might as well not notice your outfit either.`);
+				} else if (V.PC.belly >= 14000) {
+					r.push(`You don't even bother to try to be slutty anymore; your full-term globe of a belly just steals all the attention away from your other assets.`);
+				} else if (V.PC.belly >= 12000) {
+					r.push(`Your huge pregnant belly hides your crotch.`);
+				} else if (V.PC.belly >= 10000) {
+					r.push(`Your huge pregnant belly is tiring to carry around and is beginning to draw attention away from your other features.`);
+				} else if (V.PC.belly >= 7000) {
+					r.push(`You've switched to even skimpier clothing to show off your big pregnant belly.`);
+				} else if (V.PC.belly >= 5000) {
+					r.push(`Your outfit is only enhanced by your baby-filled belly, mostly because it adds to your slutty appearance. Though it is definitely impacting your business.`);
+				} else if (V.PC.belly >= 3000) {
+					r.push(`Your slutty bottoms are beginning to get hidden by your rounded middle.`);
+				} else if (V.PC.belly >= 1500) {
+					r.push(`Your slutty bottoms sexily hug your swollen middle.`);
+				} else if (V.PC.belly >= 500) {
+					r.push(`Your exposed midriff bulges out enough to give away your growing pregnancy.`);
+				} else if (V.PC.belly >= 250) {
+					r.push(`Your exposed midriff is noticeably bloated.`);
+				} else if (V.PC.belly >= 100) {
+					r.push(`When you look down, you can't help but notice your belly sticking out a little.`);
+				}
+				if (V.PC.preg >= 41) {
+					r.push(`You can barely pull yourself and your overdue ${children} out of bed; every action is a chore, you keep bumping things, and your ${children} just won't calm down.`);
+					if (V.PC.pregMood === 1) {
+						r.push(`However, thanks to all your tenderness, your slaves are more than happy to do everything they can for you.`);
+					} else if (V.PC.pregMood === 2) {
+						if (V.seeDicks !== 0) {
+							r.push(`Your slaves, those with dicks especially,`);
+						} else {
+							r.push(`Your slaves`);
+						}
+						r.push(`are terrified of being seen by you, knowing full well that they will be bearing the full weight of your body as you satisfy your desires.`);
+					}
+				} else if (V.PC.preg >= 39) {
+					r.push(`Every action you take is exhausting, though your slaves are more than capable of serving your every whim.`);
+					if (V.PC.pregMood === 1) {
+						r.push(`Even in the final stages of pregnancy, you make sure the slaves attending you are treated as if the were your favorite clients.`);
+					} else if (V.PC.pregMood === 2) {
+						r.push(`Your hormones practically rule you, leading you to demand your slaves to be prepared to pleasure you at a moment's notice. Your needy cunt hungers for dick and you don't care`);
+						if (V.seeDicks !== 0) {
+							r.push(`what it is attached to`);
+						} else {
+							r.push(`if it's made of plastic`);
+						}
+						r.push(`right now.`);
+					}
+				} else if (V.PC.preg >= 36) {
+					r.push(`Every kick from your eager ${children} threatens to dislodge your breasts from your struggling top.`);
+					if (V.PC.pregMood === 1) {
+						r.push(`While you may be demanding and needy, you do everything you can to treat them as if they were a virgin client.`);
+					} else if (V.PC.pregMood === 2) {
+						r.push(`You know it's unbecoming for an arcology owner, but you need a dick in you even more than usual.`);
+					}
+				} else if (V.PC.preg >= 32) {
+					if (V.PC.pregMood === 1) {
+						r.push(`You can't help but enjoy having a slave, or client, suckle from you while you relax with them in your lap.`);
+					} else if (V.PC.pregMood === 2) {
+						r.push(`You don't let your pregnancy get in the way when it comes to sex; you make sure your slaves, and clients, learn just how much you know about sex.`);
+					}
+				} else if (V.PC.preg >= 28) {
+					if (V.PC.pregMood === 1) {
+						r.push(`You catch yourself playfully teasing your slaves from time to time.`);
+					} else if (V.PC.pregMood === 2) {
+						r.push(`Your sex drive has become unquenchable as of late.`);
+					}
+				} else if (V.PC.preg === 22) {
+					r.push(`Something startling happened this week; while enjoying a slave, your belly button popped out!`);
+				} else if (V.PC.preg === 8 && V.PC.pregSource > 0) {
+					babyDaddy = findFather(V.PC.pregSource);
+					if (babyDaddy) {
+						adjust = babyDaddy.counter.PCKnockedUp++;
+						adjustFatherProperty(babyDaddy, "PCKnockedUp", adjust);
+					}
+					if (V.slaveIndices[V.PC.pregSource]) {
+						({
+							him
+						} = getPronouns(babyDaddy));
+						r.push(`Rumors spread among your slaves that your middle is swollen with ${babyDaddy.slaveName}'s child. They're not wrong, though`);
+						if (babyDaddy.devotion > 20) {
+							r.push(`${babyDaddy.slaveName} is broken enough to not try and use it against you. In fact, it might even draw ${him} closer to you.`);
+						} else {
+							r.push(`you'd have liked it to have kept that from ${babyDaddy.slaveName}, lest the rebellious bitch use it to remain defiant.`);
+						}
+					}
+				}
+			}
+		} else {
+			if (V.PC.preg > 0) {
+				if (V.PC.belly >= 120000) {
+					r.push(`You don't know how much more you can take. You feel so full and your children never calm down. You swear they take shifts tormenting your poor bladder. Even worse, your pregnancy juts out over a half-`);
+					if (V.showInches === 2) {
+						r.push(`yard`);
+					} else {
+						r.push(`meter`);
+					}
+					r.push(`from your front and has soundly defeated your maternity suit.`);
+					if (V.PC.dick !== 0) {
+						r.push(`Occasionally one of the bottoms manages to land a series of hits to your prostate, not that you mind as much, save for when they keep at it and you a can't restrain your orgasm. The last thing you want to do in a meeting is spontaneously orgasm and cum your in clothes.`);
+					}
+				} else if (V.PC.belly >= 105000) {
+					r.push(`You can barely function any more. You're so big and heavy that even the simplest of actions requires both intense effort and thought just to get it done. Your suit buttons keep popping, and much to your annoyance, your ${children} will not stay still enough to let you redo them.`);
+				} else if (V.PC.belly >= 90000) {
+					let toSearch = V.PC.refreshment.toLowerCase(), fertRefresh = 0;
+					if (toSearch.indexOf("fertility") !== -1) {
+						fertRefresh = 1;
+					}
+					if (fertRefresh === 1) {
+						r.push(`You may have a problem, but then again, you did take all those fertility drugs, so you can't really say you didn't want it.`);
+					} else {
+						r.push(`You may have a problem. You took fertility drugs, but you shouldn't be getting this big.`);
+					}
+					r.push(`Judging by how far along you are, you must be carrying ${pregNumberName(V.PC.pregType, 2)}. Your suit is also starting to get tight, but it's far less of a concern at this point.`);
+				} else if (V.PC.belly >= 75000) {
+					r.push(`Your belly is starting to become worrying. You're positively gigantic and quite tired. As an added stress, your maternity suit highlights your pregnancy.`);
+				} else if (V.PC.belly >= 60000) {
+					r.push(`Your new outfit is handling your enormous belly quite well, though it does nothing to hide your size. Everyone can tell you'll be having lots of babies and judges you accordingly.`);
+				} else if (V.PC.belly >= 45000) {
+					r.push(`You both look and feel enormous, your belly juts out so much now. Your tailor finally managed to get you a bigger maternity suit, one with extra give in the middle, but you feel it draws attention right to your gravidity.`);
+				} else if (V.PC.belly >= 30000) {
+					r.push(`You feel absolutely gigantic; you look like you're full-term with`);
+					if (V.PC.pregType === 2) {
+						r.push(`twins (which you are).`);
+					} else {
+						r.push(`twins.`);
+					}
+					r.push(`Having such a big belly in such poor attire weighs heavily under the public's eye.`);
+				} else if (V.PC.belly >= 15000) {
+					r.push(`You don't even bother to try to cover your full-term sized pregnancy, opting to just let it hang out of your old clothing. Every action you take is exhausting; though your slaves are more than capable of serving your every desire.`);
+				} else if (V.PC.belly >= 12000) {
+					r.push(`Your huge pregnant belly strains the buttons on your maternity suit.`);
+				} else if (V.PC.belly >= 10000) {
+					r.push(`Your huge pregnant belly is tiring to carry around and is beginning to stretch out your new clothes.`);
+				} else if (V.PC.belly >= 7000) {
+					r.push(`You've switched to using what can only be called formal maternity wear to cover your pregnant belly.`);
+				} else if (V.PC.belly >= 5000) {
+					r.push(`You can barely cover your baby-filled belly; not only is it obvious, but it is getting in the way of your business.`);
+				} else if (V.PC.belly >= 3000) {
+					r.push(`You're starting to get pretty big; you feel like everyone just focuses on your gravidity now.`);
+				} else if (V.PC.belly >= 1500) {
+					r.push(`Your belly is now large enough that there is no hiding it. Your top strains to cover it.`);
+				} else if (V.PC.belly >= 500) {
+					r.push(`Your top tightly clings to your early pregnancy, though you manage to conceal it well enough.`);
+				} else if (V.PC.belly >= 250) {
+					r.push(`Your top tightly clings to your bloated middle.`);
+				} else if (V.PC.belly >= 100) {
+					r.push(`Your top feels oddly tight around your middle.`);
+				}
+				if (V.PC.preg >= 41) {
+					r.push(`You can barely pull yourself and your overdue ${children} out of bed; every action is a chore, you keep bumping into things, and your ${children} just won't calm down.`);
+					if (V.PC.pregMood === 1) {
+						r.push(`However, thanks to all your mothering, your slaves are more than happy to do everything they can for you.`);
+					} else if (V.PC.pregMood === 2) {
+						if (V.seeDicks !== 0) {
+							r.push(`Your slaves, those with dicks especially,`);
+						} else {
+							r.push(`Your slaves`);
+						}
+						r.push(`are terrified of being seen by you, knowing full well that they will be bearing the full weight of your body as you satisfy your desires.`);
+					}
+				} else if (V.PC.preg >= 39) {
+					if (V.PC.pregMood === 1) {
+						r.push(`Even in the final stages of pregnancy, you make sure the slaves attending you are treated as if they were your own children.`);
+					} else if (V.PC.pregMood === 2) {
+						r.push(`Your hormones practically rule you, leading you to demand your slaves to be prepared to pleasure you at a moment's notice. Your needy cunt hungers for dick and you don't care`);
+						if (V.seeDicks !== 0) {
+							r.push(`what it is attached to`);
+						} else {
+							r.push(`if it's made of plastic`);
+						}
+						r.push(`right now.`);
+					}
+				} else if (V.PC.preg >= 36) {
+					r.push(`Every kick from your eager ${children} threatens to send your buttons flying.`);
+					if (V.PC.pregMood === 1) {
+						r.push(`While you may be demanding and needy, you do everything you can to treat them as if they were your own children.`);
+					} else if (V.PC.pregMood === 2) {
+						r.push(`You know it's unbecoming for an arcology owner, but you need a dick in you and you don't care from where.`);
+					}
+				} else if (V.PC.preg >= 32) {
+					if (V.PC.pregMood === 1) {
+						r.push(`You can't help but enjoy having a slave suckle from you while you relax with them in your lap.`);
+					} else if (V.PC.pregMood === 2) {
+						r.push(`You don't let your pregnancy get in the way when it comes to sex; you make sure your slaves learn new positions to accommodate your bulk.`);
+					}
+				} else if (V.PC.preg >= 28) {
+					if (V.PC.pregMood === 1) {
+						r.push(`You catch yourself babying your slaves from time to time.`);
+					} else if (V.PC.pregMood === 2) {
+						r.push(`Your sex drive has become unquenchable as of late.`);
+					}
+				} else if (V.PC.preg === 22) {
+					r.push(`Something startling happened this week; while enjoying a slave, your belly button popped out!`);
+				} else if (V.PC.preg === 8 && V.PC.pregSource > 0) {
+					babyDaddy = findFather(V.PC.pregSource);
+					if (babyDaddy) {
+						adjust = babyDaddy.counter.PCKnockedUp++;
+						adjustFatherProperty(babyDaddy, "PCKnockedUp", adjust);
+					}
+					if (V.slaveIndices[V.PC.pregSource]) {
+						({
+							him
+						} = getPronouns(babyDaddy));
+						r.push(`Rumors spread among your slaves that your middle is swollen with ${babyDaddy.slaveName}'s child. They're not wrong, though`);
+						if (babyDaddy.devotion > 20) {
+							r.push(`${babyDaddy.slaveName} is broken enough to not try and use it against you. In fact, it might even draw ${him} closer to you.`);
+						} else {
+							r.push(`you'd have liked it to have kept that from ${babyDaddy.slaveName}, lest the rebellious bitch use it to remain defiant.`);
+						}
+					}
+				}
+			}
+		}
+	} else if (passage() === "Analyze PC Pregnancy") {
+		if (V.PC.belly >= 120000) {
+			r.push(`You shudder at the cool touch of the sensor running along the curve of your sensitive pregnancy. While you've devised a way to scan the distant peak of your navel and the depths of your underbelly, you failed to take into account just how excited your`);
+			if (V.PC.pregType > 1) {
+				r.push(`children`);
+			} else {
+				r.push(`child`);
+			}
+			r.push(`would get over the attention. Every pass is a battle against your kicking brood.`);
+		} else if (V.PC.belly >= 90000) {
+			r.push(`You shudder at the cool touch of the sensor running along the curve of your pregnancy. It takes some stretching, but you can just barely scan yourself without assistance. If you grow much larger, you'll have to call in help for those places that elude your reach.`);
+		} else if (V.PC.belly >= 45000) {
+			r.push(`You shudder at the cool touch of the sensor running along the curve of your pregnancy. It's quite a tiring endeavor to scan the entire thing, given just how far it extends from your body.`);
+		} else if (V.PC.belly >= 14000) {
+			r.push(`You shudder at the cool touch of the sensor running along the curve of your pregnancy. It takes some effort to scan the entire thing, given how large it has grown.`);
+		} else if (V.PC.belly >= 5000) {
+			r.push(`You shudder at the cool touch of the sensor running along the curve of your pregnancy.`);
+		} else if (V.PC.belly >= 1500) {
+			r.push(`You shudder at the cool touch of the sensor running along the curve of your growing pregnancy.`);
+		} else if (V.PC.belly >= 500) {
+			r.push(`You shudder at the cool touch of the sensor running along the curve of your early pregnancy.`);
+		} else if (V.PC.belly >= 100) {
+			r.push(`You shudder at the cool touch of the sensor against the slight swell of your lower belly.`);
+		} else if (V.PC.belly < 100) {
+			r.push(`You shudder slightly at the cool touch of the sensor against your skin.`);
+		}
+	} else {
+		if (V.PC.preg > 0) {
+			if (V.PC.belly >= 120000) {
+				r.push(`Your belly is coated with stretch marks and is taut as a drum; you don't know how much more your poor womb can endure. Kicks can almost constantly be seen dotting its surface. You give it a pat for good measure, only encouraging your ${pregNumberName(V.PC.pregType, 2)}`);
+				r.push(`to squirm in excitement.`);
+				if (V.PC.dick !== 0) {
+					r.push(`As your dick hardens under the prostate stimulation, you call for a slave to receive the incoming load.`);
+				}
+			} else if (V.PC.belly >= 105000) {
+				r.push(`Getting out of your chair is practically a dream at this point.It takes far too much effort to do it on your own and is a little embarrassing to ask help with.`);
+			} else if (V.PC.belly >= 90000) {
+				r.push(`You can barely reach around your gravid mass any longer.You've also had to reinforce your chair under your growing weight.`);
+			} else if (V.PC.belly >= 75000) {
+				r.push(`Your belly is starting to become worrying; you feel over-filled at all times and your children like to remind you just how stuffed you are.`);
+			} else if (V.PC.belly >= 60000) {
+				r.push(`You're definitely having multiples; there is no denying it at this point. All you can do is try to relax and keep trying to stave off the stretch marks.`);
+			} else if (V.PC.belly >= 45000) {
+				r.push(`You both look and feel enormous; your belly juts out so much now. You stand no chance of sitting at your desk normally and have taken to angling you chair and belly to the side instead.`);
+			} else if (V.PC.belly >= 30000) {
+				r.push(`Your chair has taken to creaking ominously whenever you shift your pregnant bulk while you've taken to keeping your belly uncovered to give it room.`);
+			} else if (V.PC.belly >= 14000) {
+				r.push(`You can barely fit before your desk anymore and have had to take measures to accommodate your gravidity.`);
+			} else if (V.PC.belly >= 12000) {
+				r.push(`You can barely wrap your arms around your huge pregnant belly, and when you do, your popped navel reminds you just how full you are.`);
+			} else if (V.PC.belly >= 10000) {
+				r.push(`Your pregnancy has gotten quite huge; none of your clothes fit it right.`);
+			} else if (V.PC.belly >= 7000) {
+				r.push(`Your pregnant belly juts out annoyingly far; just getting dressed is a pain now.`);
+			} else if (V.PC.belly >= 5000) {
+				r.push(`Your belly has gotten quite large with child; it is beginning to get the way of sex and business.`);
+			} else if (V.PC.belly >= 1500) {
+				r.push(`Your belly is now large enough that there is no hiding it.`);
+			} else if (V.PC.belly >= 500) {
+				r.push(`Your belly is rounded by your early pregnancy.`);
+			} else if (V.PC.belly >= 250) {
+				r.push(`Your lower belly is beginning to stick out; you're definitely pregnant.`);
+			} else if (V.PC.belly >= 100) {
+				r.push(`Your belly is slightly swollen; combined with your missed period, odds are you're pregnant.`);
+			} else if (V.PC.belly < 100) {
+				r.push(`Your period hasn't happened in some time; you might be pregnant.`);
+			}
+			if (V.PC.preg >= 41) {
+				r.push(`You don't know why you even bother getting out of bed; you are overdue and ready to drop at many time, making your life as arcology owner very difficult. You try to relax and enjoy your slaves, but you can only manage so much in this state.`);
+			} else if (V.PC.preg >= 39) {
+				r.push(`You feel absolutely massive; your full-term belly makes your life as arcology owner very difficult. You try your best to not wander too far from your penthouse, not with labor and birth so close.`);
+			}
+		} else if (V.PC.belly >= 1500) {
+			r.push(`Your belly is still very distended from your recent pregnancy.`);
+		} else if (V.PC.belly >= 500) {
+			r.push(`Your belly is still distended from your recent pregnancy.`);
+		} else if (V.PC.belly >= 250) {
+			r.push(`Your belly is still bloated from your recent pregnancy`);
+		} else if (V.PC.belly >= 100) {
+			r.push(`Your belly is still slightly swollen after your recent pregnancy.`);
+		}
+	}
+	return r.join(" ");
+};
diff --git a/src/player/desc/playerBoobs.js b/src/player/desc/playerBoobs.js
new file mode 100644
index 0000000000000000000000000000000000000000..bd3196f6611499b756792c6a5fa5478ae47a0215
--- /dev/null
+++ b/src/player/desc/playerBoobs.js
@@ -0,0 +1,322 @@
+App.Desc.Player.boobs = function() {
+	const r = [];
+	let frag;
+
+	if (passage() === "Manage Personal Affairs") {
+		if (V.PC.boobs >= 1400) {
+			r.push(`you have a <span class="orange">pair of H-cup breasts.</span>`);
+			if (V.PC.boobsImplant > 0) {
+				r.push(`They are big, round, and obviously implants. They barely move when you fuck your slaves.`);
+			} else {
+				r.push(`They are all natural, heavy, and a bit saggy though they have some perk to them. Once they get going, it's hard to make them stop.`);
+			}
+			if (V.PC.lactation > 0) {
+				r.push(`Your breasts feel even more enormous lately; this is likely a side effect of your lactation.`);
+			}
+			if (V.PC.markings === "freckles") {
+				r.push(`The tops of your breasts and your cleavage are lightly freckled.`);
+			} else if (V.PC.markings === "heavily freckled") {
+				r.push(`They are covered in freckles, which are particularly dense in the cleft between them.`);
+			}
+		} else if (V.PC.boobs >= 1200) {
+			r.push(`you have a <span class="orange">pair of G-cup breasts.</span>`);
+			if (V.PC.boobsImplant > 0) {
+				r.push(`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 {
+				r.push(`They are all natural and a little heavy. The bounce everywhere when you fuck your slaves.`);
+			}
+			if (V.PC.lactation > 0) {
+				r.push(`Your breasts feel even more huge lately; this is likely a side effect of your lactation.`);
+			}
+			if (V.PC.markings === "freckles") {
+				r.push(`The tops of your breasts and your cleavage are lightly freckled.`);
+			} else if (V.PC.markings === "heavily freckled") {
+				r.push(`They are covered in freckles, which are particularly dense in the cleft between them.`);
+			}
+		} else if (V.PC.boobs >= 1000) {
+			r.push(`you have a <span class="orange">pair of F-cup breasts.</span>`);
+			if (V.PC.boobsImplant > 0) {
+				r.push(`They are nice, perky and not obviously implants. Though the way they move when you fuck a slave pins them as such.`);
+			} else {
+				r.push(`They are nice and perky, despite their size. They bounce lewdly as you fuck your slaves.`);
+			}
+			if (V.PC.lactation > 0) {
+				r.push(`Your breasts feel bigger lately; this is likely a side effect of your lactation.`);
+			}
+			if (V.PC.markings === "freckles") {
+				r.push(`The tops of your breasts and your cleavage are lightly freckled.`);
+			} else if (V.PC.markings === "heavily freckled") {
+				r.push(`They are covered in freckles, which are particularly dense in the cleft between them.`);
+			}
+		} else if (V.PC.boobs >= 800) {
+			r.push(`you have a <span class="orange">healthy pair of DD-cup breasts.</span> They are nice, perky and jiggle pleasantly with your every move.`);
+			if (V.PC.lactation > 0) {
+				r.push(`Your breasts feel fuller lately; this is likely a side effect of your lactation.`);
+			}
+			if (V.PC.markings === "freckles") {
+				r.push(`The tops of your breasts and your cleavage are lightly freckled.`);
+			} else if (V.PC.markings === "heavily freckled") {
+				r.push(`They are covered in freckles, which are particularly dense in the cleft between them.`);
+			}
+		} else if (V.PC.boobs >= 650) {
+			r.push(`you have a <span class="orange">pair of D-cup breasts.</span> They are nice, perky and bounce pleasantly as you fuck your slaves.`);
+			if (V.PC.lactation > 0) {
+				r.push(`Your breasts feel bigger lately; this is likely a side effect of your lactation.`);
+			}
+			if (V.PC.markings === "freckles") {
+				r.push(`The tops of your breasts and your cleavage are lightly freckled.`);
+			} else if (V.PC.markings === "heavily freckled") {
+				r.push(`They are covered in freckles, which are particularly dense in the cleft between them.`);
+			}
+		} else if (V.PC.boobs >= 500) {
+			r.push(`you have a <span class="orange">pair of C-cup breasts.</span> They are nice and perky, with just a little bounce when you fuck your slaves.`);
+			if (V.PC.lactation > 0) {
+				r.push(`Your breasts feel bigger lately; likely a side effect of your lactation.`);
+			}
+			if (V.PC.markings === "freckles") {
+				r.push(`The tops of your breasts and your cleavage are lightly freckled.`);
+			} else if (V.PC.markings === "heavily freckled") {
+				r.push(`They are covered in freckles, which are particularly dense in the cleft between them.`);
+			}
+		} else if (V.PC.boobs >= 400) {
+			r.push(`you have a <span class="orange">pair of B-cup breasts.</span> They are nice and perky, with almost no bounce when you fuck your slaves.`);
+			if (V.PC.lactation > 0) {
+				r.push(`Your breasts feel bigger lately; this is likely a side effect of your lactation.`);
+			}
+			if (V.PC.markings === "freckles") {
+				r.push(`The tops of your breasts and your cleavage are lightly freckled.`);
+			} else if (V.PC.markings === "heavily freckled") {
+				r.push(`They are covered in freckles, which are particularly dense in the cleft between them.`);
+			}
+		} else if (V.PC.boobs >= 300) {
+			r.push(`you have a <span class="orange">tiny pair of A-cup breasts.</span> They are nice and perky, but that's about it.`);
+			if (V.PC.lactation > 0) {
+				r.push(`They feel a bit bigger lately; this is likely a side effect of your lactation.`);
+			}
+			if (V.PC.markings === "freckles") {
+				r.push(`Your chest is covered in a light spray of freckles.`);
+			} else if (V.PC.markings === "heavily freckled") {
+				r.push(`Your chest is covered in dense freckles.`);
+			}
+		} else if (V.PC.title === 1) {
+			r.push(`you have a <span class="orange">masculine chest.</span>`);
+			if (V.PC.lactation > 0) {
+				r.push(`Your chest feels swollen; the beads of milk forming on your nipples tells you why.`);
+			}
+			if (V.PC.markings === "freckles") {
+				r.push(`Your chest is covered in a light spray of freckles.`);
+			} else if (V.PC.markings === "heavily freckled") {
+				r.push(`Your chest is covered in dense freckles.`);
+			}
+		} else {
+			r.push(`</span>you're flat.</span> You have nothing in the breast department.`);
+			if (V.PC.lactation > 0) {
+				r.push(`Your nipples cap a pair of painfully swollen bumps; milk beads from them at the slightest provocation.`);
+			}
+			if (V.PC.markings === "freckles") {
+				r.push(`Your chest is covered in a light spray of freckles.`);
+			} else if (V.PC.markings === "heavily freckled") {
+				r.push(`Your chest is covered in dense freckles.`);
+			}
+		}
+	} else if (passage() === "Economics") {
+		if (V.PC.career === "servant") {
+			if (V.PC.boobs >= 1400) {
+				r.push(`You've gotten your dress let out to accommodate your huge bust.`);
+			} else if (V.PC.boobs >= 1200) {
+				r.push(`Your dress bulges with your big breasts.`);
+			} else if (V.PC.boobs >= 1000) {
+				r.push(`Your dress feels tight around your breasts.`);
+			}
+		} else if (V.PC.career === "escort") {
+			if (V.PC.boobs >= 1400) {
+				r.push(`Your top strains as it struggles to cover your nipples, letting your huge`);
+				if (V.PC.markings === "freckles") {
+					r.push(`, freckled`);
+				} else if (V.PC.markings === "heavily freckled") {
+					r.push(`, densely freckled`);
+				}
+				r.push(` bust bulge lewdly around it.`);
+			} else if (V.PC.boobs >= 1200) {
+				r.push(`Your top can barely contain your big`);
+				if (V.PC.markings === "freckles") {
+					r.push(`, freckled`);
+				} else if (V.PC.markings === "heavily freckled") {
+					r.push(`, heavily freckled`);
+				}
+				r.push(` breasts, leaving you looking sluttier than ever.`);
+			} else if (V.PC.boobs >= 1000) {
+				r.push(`Your breasts spill over your slutty`);
+				if (V.PC.markings === "freckles") {
+					r.push(`top, showing off your freckled cleavage.`);
+				} else if (V.PC.markings === "heavily freckled") {
+					r.push(`top, freckle packed cleavage.`);
+				} else {
+					r.push(`top.`);
+				}
+			}
+		} else {
+			if (V.PC.boobs >= 1400) {
+				r.push(`You've gotten your top retailored to fit your huge bust.`);
+			} else if (V.PC.boobs >= 1200) {
+				r.push(`Your top strains against your big breasts`);
+				if (V.PC.markings === "freckles") {
+					r.push(`breasts, revealing a peak of freckled cleavage.`);
+				} else if (V.PC.markings === "heavily freckled") {
+					r.push(`breasts, revealing a peak of densely freckled cleavage.`);
+				} else {
+					r.push(`breasts.`);
+				}
+			} else if (V.PC.boobs >= 1000) {
+				r.push(`Your top feels tight around your breasts.`);
+			}
+		}
+	} else {
+		if (V.PC.boobs >= 1400) {
+			r.push(`Your breasts are`);
+			if (V.PC.markings === "freckles") {
+				r.push(`enormous with light freckling on the tops and in your cleavage.`);
+			} else if (V.PC.markings === "heavily freckled") {
+				r.push(`enormous and covered in freckles, which are particularly dense in the cleft between them.`);
+			} else {
+				r.push(`enormous.`);
+			}
+			if (V.PC.boobsImplant > 0) {
+				r.push(`They are big, round, and obviously implants. They insist on maintaining their shape no matter how you move.`);
+			} else {
+				r.push(`They are all natural, heavy, and a bit saggy though they retain some perk. Every single move you make sends ripples through your cleavage. You catch yourself watching them move in the mirror every so often.`);
+			}
+			if (V.PC.lactation > 0) {
+				r.push(`Your breasts feel even more enormous lately; this is likely a side effect of your lactation, though you could do without the wet spots forming over your nipples.`);
+			}
+		} else if (V.PC.boobs >= 1200) {
+			r.push(`Your breasts are`);
+			if (V.PC.markings === "freckles") {
+				r.push(`huge with light freckling on the tops and in your cleavage.`);
+			} else if (V.PC.markings === "heavily freckled") {
+				r.push(`huge and covered in freckles, which are particularly dense in the cleft between them.`);
+			} else {
+				r.push(`huge.`);
+			}
+			if (V.PC.boobsImplant > 0) {
+				r.push(`They are unnaturally perky for their size. When you shake them, they barely move.`);
+			} else {
+				r.push(`They are all natural and a little heavy. They bounce lewdly when you shake them and take a little too long to calm down.`);
+			}
+			if (V.PC.lactation > 0) {
+				r.push(`Your breasts feel even more huge lately; this is this is likely a side effect of your lactation, though you could do without the wet spots forming over your nipples.`);
+			}
+		} else if (V.PC.boobs >= 1000) {
+			r.push(`Your breasts are pretty`);
+			if (V.PC.markings === "freckles") {
+				r.push(`big with light freckling on the tops and in your cleavage.`);
+			} else if (V.PC.markings === "heavily freckled") {
+				r.push(`big and covered in freckles, which are particularly dense in the cleft between them.`);
+			} else {
+				r.push(`big.`);
+			}
+			if (V.PC.boobsImplant > 0) {
+				r.push(`They are nice, perky and not obviously implants. They jiggle only slightly when you shake them though.`);
+			} else {
+				r.push(`They are nice and perky, despite their size. They bounce lewdly when you shake them.`);
+			}
+			if (V.PC.lactation > 0) {
+				r.push(`Your breasts feel bigger lately; this is likely a side effect of your lactation, though you could do without the wet spots forming over your nipples.`);
+			}
+		} else if (V.PC.boobs >= 800) {
+			r.push(`Your breasts are on the larger side of`);
+			if (V.PC.lactation > 0) {
+				r.push(`things, though you could do without the wet spots forming over your nipples.`);
+			} else {
+				r.push(`things.`);
+			}
+			if (V.PC.markings === "freckles") {
+				r.push(`The tops of your breasts and your cleavage are lightly freckled.`);
+			} else if (V.PC.markings === "heavily freckled") {
+				r.push(`They are covered in freckles, which are particularly dense in the cleft between them.`);
+			}
+		} else if (V.PC.boobs >= 650) {
+			r.push(`Your breasts are certainly`);
+			if (V.PC.markings === "freckles") {
+				r.push(`eye-catching with light freckling on the tops and in your cleavage.`);
+			} else if (V.PC.markings === "heavily freckled") {
+				r.push(`eye-catching and covered in freckles, which are particularly dense in the cleft between them.`);
+			} else {
+				r.push(`eye-catching.`);
+			}
+			r.push(`They are nice and perky, with just the right amount of bounce when you shake them.`);
+			if (V.PC.lactation > 0) {
+				r.push(`Your breasts feel bigger lately; this is likely a side effect of your lactation, though you could do without the wet spots forming over your nipples.`);
+			}
+		} else if (V.PC.boobs >= 500) {
+			r.push(`Your breasts are fairly average, at least to old world`);
+			if (V.PC.markings === "freckles") {
+				r.push(`standards, with light freckling on the tops and in your cleavage.`);
+			} else if (V.PC.markings === "heavily freckled") {
+				r.push(`standards, and covered in freckles, which are particularly dense in the cleft between them.`);
+			} else {
+				r.push(`standards.`);
+			}
+			r.push(`They are very perky, but aren't big enough to have a nice bounce when you shake them.`);
+			if (V.PC.lactation > 0) {
+				r.push(`Your breasts feel bigger lately; this is likely a side effect of your lactation, though you could do without the wet spots forming over your nipples.`);
+			}
+		} else if (V.PC.boobs >= 400) {
+			r.push(`Your breasts are considered small by most`);
+			if (V.PC.markings === "freckles") {
+				r.push(`standards, with light freckling on the tops and in your cleavage.`);
+			} else if (V.PC.markings === "heavily freckled") {
+				r.push(`standards, and covered in freckles, which are particularly dense in the cleft between them.`);
+			} else {
+				r.push(`standards.`);
+			}
+			r.push(`Their size makes them extremely perky, at the cost of having little to no bounce.`);
+			if (V.PC.lactation > 0) {
+				r.push(`Your breasts feel bigger lately; this is likely a side effect of your lactation, though you could do without the wet spots forming over your nipples.`);
+			}
+		} else if (V.PC.boobs >= 300) {
+			r.push(`Your breasts, if they can even be called that, are`);
+			if (V.PC.markings === "freckles") {
+				r.push(`covered in a light spray of freckles.`);
+			} else if (V.PC.markings === "heavily freckled") {
+				r.push(`covered in dense freckles.`);
+			} else {
+				r.push(`tiny even by old world standards.`);
+			}
+			r.push(`On the plus side, no chance of sag.`);
+			if (V.PC.lactation > 0) {
+				r.push(`Your breasts feel more substantial lately; this is likely a side effect of your lactation, though you could do without the wet spots forming over your nipples.`);
+			}
+		} else if (V.PC.title === 1) {
+			r.push(`Your chest is quite`);
+			if (V.PC.lactation > 0) {
+				frag = `masculine, though the pair of wet spots forming over your nipples suggest otherwise,`;
+			} else {
+				frag = `masculine`;
+			}
+			if (V.PC.markings === "freckles") {
+				frag += ` and covered in a light spray of freckles.`;
+			} else if (V.PC.markings === "heavily freckled") {
+				frag += ` and covered in dense freckles.`;
+			} else {
+				frag += `.`; // all this frag bs is to make sure there is no space before the period.  Sigh.
+			}
+			r.push(frag);
+		} else {
+			r.push(`Your chest is`);
+			if (V.PC.lactation > 0) {
+				frag = `non-existent, save for the pair of bulging milk glands beneath your nipples,`;
+			} else {
+				frag = `non-existent`;
+			}
+			if (V.PC.markings === "freckles") {
+				frag += ` and covered in a light spray of freckles.`;
+			} else if (V.PC.markings === "heavily freckled") {
+				frag += ` and covered in dense freckles.`;
+			} else {
+				frag += `.`;
+			}
+		}
+	}
+	return r.join(" ");
+};
diff --git a/src/player/desc/playerButt.js b/src/player/desc/playerButt.js
new file mode 100644
index 0000000000000000000000000000000000000000..003ffac3862a62272b239ca8f429755fbc985ca1
--- /dev/null
+++ b/src/player/desc/playerButt.js
@@ -0,0 +1,232 @@
+App.Desc.Player.butt = function() {
+	const r = [];
+
+	if (passage() === "Manage Personal Affairs") {
+		if (V.PC.butt >= 5) {
+			if (V.PC.buttImplant >= 1) {
+				r.push(`an <span class="orange">enormous, round, hard butt;</span> it is very obviously a pair of huge implants. It barely moves at all when you walk or fuck, is difficult to cram into your clothing, and you keep getting stuck in chairs, but you wouldn't have it any other way.`);
+			} else {
+				r.push(`an <span class="orange">enormous, jiggly butt.</span> It is always wobbling for some reason or another. It really fills out your clothing and practically consumes anything you sit on.`);
+			}
+		} else if (V.PC.butt >= 4) {
+			if (V.PC.buttImplant >= 1) {
+				r.push(`a <span class="orange">huge, round, firm butt;</span> it's easily identifiable as fake.`);
+			} else {
+				r.push(`a <span class="orange">huge, soft butt.</span> It jiggles a lot as you move.`);
+			}
+		} else if (V.PC.butt >= 3) {
+			if (V.PC.buttImplant >= 1) {
+				r.push(`a <span class="orange">big firm butt;</span> anyone that feels it can tell it's fake, but at a glance you can't tell otherwise.`);
+			} else {
+				r.push(`a <span class="orange">big butt.</span> It jiggles a little as you walk.`);
+			}
+		} else {
+			r.push(`a <span class="orange">sexy, but normal butt.</span>`);
+		}
+		if (V.PC.markings === "freckles") {
+			r.push(`Your lower back is covered in a light speckling of freckles alongside your upper butt.`);
+		} else if (V.PC.markings === "heavily freckled") {
+			r.push(`Your freckles are particularly dense across your lower back and upper butt.`);
+		}
+	} else if (passage() === "Economics") {
+		if (V.PC.career === "servant") {
+			if (V.PC.butt >= 5 && V.PC.balls >= 30) {
+				if (V.PC.buttImplant >= 1) {
+					r.push(`When you had your dresses tailored you also had to have them make room for your enormous rear. No dress can hide how big and fake it is though.`);
+				} else {
+					r.push(`When you had your dresses tailored you also had to have them make room for your enormous rear.`);
+				}
+			} else if (V.PC.butt >= 5) {
+				if (V.PC.buttImplant >= 1) {
+					r.push(`You had to get your dress let out to contain your enormous rear. It can't hide how big and fake it is though.`);
+				} else {
+					r.push(`You had to get your dress let out to contain your enormous rear.`);
+				}
+			} else if (V.PC.butt >= 4) {
+				r.push(`Your dress is starting to feel tight around your huge rear.`);
+			} else if (V.PC.butt >= 3) {
+				r.push(`Your dress is filled out by your big butt.`);
+			}
+		} else if (V.PC.career === "escort") {
+			if (V.PC.dick !== 0) {
+				if (V.PC.balls >= 30) {
+					if (V.PC.butt >= 5) {
+						if (V.PC.buttImplant >= 1) {
+							r.push(`Your slutty skirt is also forced to stretch around your enormous rear, making the implants pretty obvious. With both your front and back struggling to get free of your stretchy skirt, it isn't unusual for one or the other to peek out.`);
+						} else {
+							r.push(`Your slutty skirt is also forced to stretch around your enormous rear, and bending over is basically asking for your skirt to ride up all the way to your hips. With both your front and back struggling to get free of your stretchy skirt, it isn't unusual for one or the other to peek out.`);
+						}
+					} else if (V.PC.butt >= 4) {
+						r.push(`Your huge rear nearly spills out from the bottom of your slutty skirt.`);
+					} else if (V.PC.butt >= 3) {
+						r.push(`Your slutty skirt is strained by your big butt.`);
+					}
+				} else {
+					if (V.PC.butt >= 5) {
+						if (V.PC.buttImplant >= 1) {
+							r.push(`You had to get your slutty pants let out to contain your enormous rear. It still feels really tight, however, thanks to the implants.`);
+						} else {
+							r.push(`You had to get your slutty pants let out to contain your enormous rear. It still overflows scandalously, however.`);
+						}
+					} else if (V.PC.butt >= 4) {
+						r.push(`Your huge rear spills out from the top of your slutty pants.`);
+					} else if (V.PC.butt >= 3) {
+						r.push(`Your slutty pants are strained by your big butt.`);
+					}
+				}
+			} else {
+				if (V.PC.butt >= 5) {
+					if (V.PC.buttImplant >= 1) {
+						r.push(`Your ass has completely devoured your slutty shorts. You look like you are wearing a thong, leaving your overly`);
+						if (V.PC.markings === "freckles") {
+							r.push(`round, freckled`);
+						} else if (V.PC.markings === "heavily freckled") {
+							r.push(`round, heavily freckled`);
+						} else {
+							r.push(`round`);
+						}
+						r.push(`cheeks to hang free.`);
+						if (V.PC.markings === "freckles") {
+							r.push(`Your lower back is covered in a light speckling of freckles alongside your valley of ass cleavage.`);
+						} else if (V.PC.markings === "heavily freckled") {
+							r.push(`Your freckles are particularly dense across your lower back and valley of ass cleavage.`);
+						}
+					} else {
+						r.push(`Your ass has completely devoured your slutty shorts. You look like you are wearing a thong leaving your`);
+						if (V.PC.markings === "freckles") {
+							r.push(`freckled`);
+						} else if (V.PC.markings === "heavily freckled") {
+							r.push(`heavily freckled`);
+						}
+						r.push(`cheeks to jiggle freely.`);
+						if (V.PC.markings === "freckles") {
+							r.push(`Your lower back is covered in a light speckling of freckles alongside your valley of ass cleavage.`);
+						} else if (V.PC.markings === "heavily freckled") {
+							r.push(`Your freckles are particularly dense across your lower back and valley of ass cleavage.`);
+						}
+					}
+				} else if (V.PC.butt >= 4) {
+					r.push(`Your slutty shorts are filled to bursting by your rear. Roughly half of your ass is actually in your bottoms, the rest is bulging out scandalously.`);
+					if (V.PC.markings === "freckles") {
+						r.push(`Your lower back is covered in a light speckling of freckles alongside your ravine of ass cleavage.`);
+					} else if (V.PC.markings === "heavily freckled") {
+						r.push(`Your freckles are particularly dense across your lower back and ravine of ass cleavage.`);
+					}
+				} else if (V.PC.butt >= 3) {
+					r.push(`Your slutty shorts are strained by your big butt. It spills out every gap it can.`);
+					if (V.PC.markings === "freckles") {
+						r.push(`Your lower back is covered in a light speckling of freckles alongside your ass cleavage.`);
+					} else if (V.PC.markings === "heavily freckled") {
+						r.push(`Your freckles are particularly dense across your lower back and ass cleavage.`);
+					}
+				} else if (V.PC.markings === "freckles") {
+					r.push(`Your exposed lower back is covered in a light speckling of freckles.`);
+				} else if (V.PC.markings === "heavily freckled") {
+					r.push(`Your freckles are particularly dense across your exposed lower back.`);
+				}
+			}
+		} else {
+			if (V.PC.dick !== 0) {
+				if (V.PC.balls >= 30) {
+					if (V.PC.butt >= 5) {
+						if (V.PC.buttImplant >= 1) {
+							r.push(`Your custom kilt is also forced to stretch around your enormous rear, making the implants pretty obvious. With both your front and back struggling to get free of the restrictive cloth, it isn't unusual for one or the other to peek out.`);
+						} else {
+							r.push(`Your custom kilt is also forced to stretch around your enormous rear, and bending over is basically asking for it to ride up all the way to your hips. With both your front and back struggling to get free of the restrictive cloth, it isn't unusual for one or the other to peek out.`);
+						}
+					} else if (V.PC.butt >= 4) {
+						r.push(`Your huge rear nearly spills out from the bottom of your custom kilt.`);
+					} else if (V.PC.butt >= 3) {
+						r.push(`Your custom kilt is strained by your big butt.`);
+					}
+				} else {
+					if (V.PC.butt >= 5) {
+						if (V.PC.buttImplant >= 1) {
+							r.push(`You had to get your suit pants let out to contain your enormous rear. It does nothing to hide how big and round your asscheeks are, though.`);
+						} else {
+							r.push(`You had to get your suit pants let out to contain your enormous rear. It can clearly be seen jiggling within them.`);
+						}
+					} else if (V.PC.butt >= 4) {
+						r.push(`Your huge rear threatens to tear apart your suit pants. You'll need to get them let out soon.`);
+					} else if (V.PC.butt >= 3) {
+						r.push(`Your suit pants are strained by your big butt.`);
+					}
+				}
+			} else {
+				if (V.PC.butt >= 5) {
+					if (V.PC.buttImplant >= 1) {
+						r.push(`Your skirt covers your enormous butt but does nothing to hide its size and shape. You're beginning to show too much leg again; it might be time for a longer skirt.`);
+					} else {
+						r.push(`Your skirt covers your enormous butt but does nothing to hide its size and fluidity. Your rear is soft enough to fill out your skirt but not lift it up too far; it also translates every motion to the fabric, however.`);
+					}
+				} else if (V.PC.butt >= 4) {
+					r.push(`Your skirt covers your huge butt but does nothing to hide its size; in fact, you've had to start wearing a longer one to make up for the extra surface area.`);
+				} else if (V.PC.butt >= 3) {
+					r.push(`Your skirt covers your big butt but does nothing to hide its size.`);
+				}
+			}
+		}
+	} else {
+		if (V.PC.butt >= 5) {
+			if (V.PC.balls >= 14 && V.ballsAccessibility !== 1) {
+				if (V.PC.markings === "freckles") {
+					r.push(`Your enormous, freckled`);
+				} else if (V.PC.markings === "heavily freckled") {
+					r.push(`Your enormous, densely freckled`);
+				} else {
+					r.push(`Your enormous`);
+				}
+				r.push(`butt would make your chair extremely comfortable if it wasn't for your enormous balls. You have to be extremely careful to prevent your enormous cheeks from pinching your nuts.`);
+			} else {
+				if (V.PC.markings === "freckles") {
+					r.push(`Your enormous, freckled`);
+				} else if (V.PC.markings === "heavily freckled") {
+					r.push(`Your enormous, densely freckled`);
+				} else {
+					r.push(`Your enormous`);
+				}
+				r.push(`butt makes for an extremely comfortable seat. You hope the chair doesn't follow you when you stand up this time.`);
+			}
+		} else if (V.PC.butt >= 4) {
+			if (V.PC.balls >= 14 && V.ballsAccessibility !== 1) {
+				if (V.PC.markings === "freckles") {
+					r.push(`Your huge, freckled`);
+				} else if (V.PC.markings === "heavily freckled") {
+					r.push(`Your huge, densely freckled`);
+				} else {
+					r.push(`Your huge`);
+				}
+				r.push(`butt would make for a very comfortable seat if it wasn't for your enormous balls. You have to be careful to prevent your huge cheeks from pinching your nuts.`);
+			} else {
+				if (V.PC.markings === "freckles") {
+					r.push(`Your huge, freckled`);
+				} else if (V.PC.markings === "heavily freckled") {
+					r.push(`Your huge, densely freckled`);
+				} else {
+					r.push(`Your huge`);
+				}
+				r.push(`butt makes for a very comfortable seat.`);
+			}
+		} else if (V.PC.butt >= 3) {
+			if (V.PC.balls >= 14 && V.ballsAccessibility !== 1) {
+				if (V.PC.markings === "freckles") {
+					r.push(`Your big, freckled`);
+				} else if (V.PC.markings === "heavily freckled") {
+					r.push(`Your big, densely freckled`);
+				} else {
+					r.push(`Your big`);
+				}
+				r.push(`butt would make for a comfortable seat if your enormous balls weren't getting in the way.`);
+			} else {
+				if (V.PC.markings === "freckles") {
+					r.push(`Your big, freckled`);
+				} else if (V.PC.markings === "heavily freckled") {
+					r.push(`Your big, densely freckled`);
+				} else {
+					r.push(`Your big`);
+				}
+				r.push(`butt makes for a comfortable seat.`);
+			}
+		}
+	} return r.join(" ");
+};
diff --git a/src/player/desc/playerCrotch.js b/src/player/desc/playerCrotch.js
new file mode 100644
index 0000000000000000000000000000000000000000..30d3893efd3b9119b3f893574f0160f942c4a96f
--- /dev/null
+++ b/src/player/desc/playerCrotch.js
@@ -0,0 +1,203 @@
+App.Desc.Player.crotch = function() {
+	const r = [];
+
+	if (passage() === "Manage Personal Affairs") {
+		r.push(`you have`);
+		if (V.PC.dick !== 0 && V.PC.vagina !== -1) {
+			r.push(`an <span class="orange">above average penis</span>`);
+			if (V.PC.balls >= 14) {
+				r.push(`that is constantly streaming precum,`);
+			} else if (V.PC.balls >= 9) {
+				r.push(`that is constantly dripping precum,`);
+			}
+			r.push(`and a pair of`);
+			if (V.PC.balls >= 30) {
+				r.push(`<span class="orange">monstrous, heavy balls</span> roughly the size of small watermelons thanks to`);
+				if (V.PC.ballsImplant > 0) {
+					r.push(`a combination of growth hormones and gel injections;`);
+				} else {
+					r.push(`relentless use of growth hormones;`);
+				}
+				r.push(`it's impossible to sit normally,`);
+				if (V.ballsAccessibility === 1) {
+					r.push(`but your penthouse has been redesigned with oversized balls in mind. There are plenty of chairs capable of handling you littering the penthouse.`);
+				} else {
+					r.push(`so you rest on the edge of your chair, allowing your oversized balls to dangle precariously.`);
+				}
+				r.push(`You've given up on wearing pants around the penthouse, and their bulging mass is so gargantuan that people assume they're fake, but every slave you fuck gets a distended belly from all the cum you pump into them. They make just about everything you do difficult: sitting, walking, fucking — but they certainly make life interesting.`);
+			} else if (V.PC.balls >= 14) {
+				r.push(`<span class="orange">enormous, heavy balls</span> roughly the size of cantaloupes; it's difficult to sit normally, your clothes barely fit, and everyone probably assumes they are fake, but every slave you fuck gets a distinct slap with each thrust. They get in the way of nearly everything you do: sitting, walking, fucking — but they make life certainly interesting.`);
+			} else if (V.PC.balls >= 9) {
+				r.push(`<span class="orange">huge balls</span> roughly the size of softballs; they are pretty heavy, but make sex and day-to-day affairs interesting.`);
+			} else if (V.PC.balls >= 5) {
+				r.push(`<span class="orange">large balls;</span> you can certainly feel them as you move about.`);
+			} else {
+				r.push(`<span class="orange">normal, uneventful balls.</span>`);
+			}
+			r.push(`Tucked away beneath them, you have a`);
+			/* this needs to be redone in all parts. */
+			if (V.PC.newVag === 1) {
+				r.push(`<span class="orange">tight vagina.</span> Your pussy is very resilient; you shouldn't be able to stretch it out again.`);
+			} else if (V.PC.career === "escort") {
+				r.push(`<span class="red">very loose vagina.</span> Years of whoring will do that to a _girlP.`);
+			} else if (V.PC.counter.birthsTotal >= 10) {
+				r.push(`<span class="red">rather loose vagina,</span> stretched from your many children.`);
+			} else if (V.PC.career === "servant") {
+				r.push(`<span class="red">rather loose vagina.</span> Your Master fucked you several times a day; he`);
+				if (V.PC.counter.birthMaster > 0) {
+					r.push(`and his child`);
+					if (V.PC.counter.birthMaster > 1) {
+						r.push(`ren`);
+					}
+					r.push(`have`);
+				}
+				r.push(`wreaked havoc upon your pussy.`);
+			} else if (V.PC.counter.birthsTotal > 2) {
+				r.push(`<span class="orange">loose vagina,</span> stretched from your several children.`);
+			} else if (V.PC.career === "gang" || V.PC.career === "celebrity" || V.PC.career === "wealth") {
+				r.push(`<span class="lime">reasonably tight vagina.</span> You've had some fun during your previous career.`);
+			} else if (V.PC.counter.birthsTotal > 0) {
+				r.push(`<span class="lime">reasonably tight vagina.</span> It's handled childbirth well enough.`);
+			} else {
+				r.push(`<span class="lime">tight vagina.</span> You're no virgin, but you've taken care of yourself.`);
+			}
+		} else if (V.PC.dick !== 0) {
+			r.push(`an <span class="orange">above average penis</span>`);
+			if (V.PC.balls >= 14) {
+				r.push(`that is constantly streaming precum,`);
+			} else if (V.PC.balls >= 9) {
+				r.push(`that is constantly dripping precum,`);
+			}
+			r.push(`and a pair of`);
+			if (V.PC.balls >= 30) {
+				r.push(`<span class="orange">monstrous, heavy balls</span> roughly the size of small watermelons thanks to`);
+				if (V.PC.ballsImplant > 0) {
+					r.push(`a combination of growth hormones and gel injections;`);
+				} else {
+					r.push(`relentless use of growth hormones;`);
+				}
+				r.push(`it's impossible to sit normally,`);
+				if (V.ballsAccessibility === 1) {
+					r.push(`but your penthouse has been redesigned with oversized balls in mind. There are plenty of chairs capable of handling you littering the penthouse.`);
+				} else {
+					r.push(`so you rest on the edge of your chair, allowing your oversized balls to dangle precariously.`);
+				}
+				r.push(`You've given up on wearing pants around the penthouse, and their bulging mass is so gargantuan that people assume they're fake, but every slave you fuck gets a distended belly from all the cum you pump into them. They make just about everything you do difficult: sitting, walking, fucking — but they certainly make life interesting.`);
+			} else if (V.PC.balls >= 14) {
+				r.push(`<span class="orange">enormous, heavy balls</span> roughly the size of cantaloupes; it's difficult to sit normally, your clothes barely fit, and everyone probably assumes they are fake, but every slave you fuck gets a distinct slap with each thrust. They get in the way of nearly everything you do: sitting, walking, fucking — but they certainly make life interesting.`);
+			} else if (V.PC.balls >= 9) {
+				r.push(`<span class="orange">huge balls</span> roughly the size of softballs; they are pretty heavy, but make sex and day-to-day affairs interesting.`);
+			} else if (V.PC.balls >= 5) {
+				r.push(`<span class="orange">large balls;</span> you can certainly feel them as you move about.`);
+			} else {
+				r.push(`<span class="orange">normal, uneventful balls.</span>`);
+			}
+		} else {
+			r.push(`a`);
+			if (V.PC.newVag === 1) {
+				r.push(`<span class="orange">tight vagina.</span> Your pussy is very resilient; you shouldn't be able to stretch it out again.`);
+			} else if (V.PC.career === "escort") {
+				r.push(`<span class="red">very loose vagina.</span> Years of whoring will do that to a _girlP.`);
+			} else if (V.PC.counter.birthsTotal >= 10) {
+				r.push(`<span class="red">rather loose vagina,</span> stretched from your many children.`);
+			} else if (V.PC.career === "servant") {
+				r.push(`<span class="red">rather loose vagina.</span> Your Master fucked you several times a day; he`);
+				if (V.PC.counter.birthMaster > 0) {
+					r.push(`and his child`);
+					if (V.PC.counter.birthMaster > 1) {
+						r.push(`ren`);
+					}
+					r.push(`have`);
+				}
+				r.push(`wreaked havoc upon your pussy.`);
+			} else if (V.PC.counter.birthsTotal > 2) {
+				r.push(`<span class="orange">loose vagina,</span> stretched from your several children.`);
+			} else if (V.PC.career === "gang" || V.PC.career === "celebrity" || V.PC.career === "wealth") {
+				r.push(`<span class="lime">reasonably tight vagina.</span> You've had some fun during your previous career.`);
+			} else if (V.PC.counter.birthsTotal > 0) {
+				r.push(`<span class="lime">reasonably tight vagina.</span> It's handled childbirth well enough.`);
+			} else {
+				r.push(`<span class="lime">tight vagina.</span> You're no virgin, but you've taken care of yourself.`);
+			}
+		}
+	} else if (_passage === "Economics") {
+		if (V.PC.career === "servant") {
+			if (V.PC.balls >= 30) {
+				r.push(`Your dress and apron bulge with your enormous balls; you had to have your dresses tailored so that the swinging mass of your sack would stop bursting seams inadvertently.`);
+			} else if (V.PC.balls >= 14) {
+				r.push(`Your dress and apron bulge with your enormous balls.`);
+			} else if (V.PC.balls >= 9) {
+				r.push(`Your dress hides your huge balls, but it does nothing to hide your altered gait.`);
+			} else if (V.PC.balls >= 5) {
+				r.push(`Your dress hides your big balls.`);
+			}
+		} else if (V.PC.career === "escort") {
+			if (V.PC.balls >= 30) {
+				r.push(`You've pretty much given up on pants because of your monstrous balls, but you've replaced them with a slutty skirt that stretches around their veiny contours. People can't help staring to see if they'll get a glimpse of your massive sack peaking out from under the skirt.`);
+			} else if (V.PC.balls >= 14) {
+				r.push(`You've swapped up to a larger pair of slutty pants, specially designed with extra sack room. They draw the eye right to your`);
+				if (V.PC.preg >= 28) {
+					r.push(`bulge; you can do without people thinking you are giving birth into your pants, though.`);
+				} else {
+					r.push(`bulge.`);
+				}
+			} else if (V.PC.balls >= 9) {
+				r.push(`Your slutty pants are really tight around the groin, but they hold your huge balls in place quite nicely.`);
+			} else if (V.PC.balls >= 5) {
+				r.push(`Your slutty pants bulge more than ever with your big balls.`);
+			}
+		} else {
+			if (V.PC.balls >= 30) {
+				r.push(`You've pretty much given up on suit pants because of your monstrous balls, but you've replaced them with a custom kilt tailored to match the rest of your business attire. People would wonder why you're wearing such old fashioned clothes if your ridiculous bulge didn't make it obvious.`);
+			} else if (V.PC.balls >= 14) {
+				r.push(`You've had to get your suit pants retailored again to fit your enormous balls. It is obvious that the bulge in your pants is not your`);
+				if (V.PC.preg >= 28) {
+					r.push(`penis; you've had several people rush to your aid under the mistaken belief that`);
+					if (V.PC.pregType > 1) {
+						r.push(`one of your children`);
+					} else {
+						r.push(`your child`);
+					}
+					r.push(`was crowning into your pants.`);
+				} else {
+					r.push(`penis.`);
+				}
+			} else if (V.PC.balls >= 9) {
+				r.push(`You've had to get your suit pants retailored to fit your huge balls. It gives you a striking figure, though.`);
+			} else if (V.PC.balls >= 5) {
+				r.push(`Your suit pants bulge more than ever with your big balls.`);
+			}
+		}
+	} else {
+		if (V.PC.balls >= 30) {
+			if (V.ballsAccessibility === 1) {
+				r.push(`Thankfully your accessibility remodeling included a custom chair.`);
+				if (V.PC.ballsImplant > 0) {
+					r.push(`When combined with the protective gel surrounding`);
+				} else {
+					r.push(`Despite the cumbrous bulk of`);
+				}
+				r.push(`your massive sperm factories, it's rather comfortable. It even has an attachment to catch your never-ending stream of precum, keeping the mess to a minimum.`);
+			} else {
+				r.push(`Your monstrous balls make it impossible for you to sit normally in a standard chair, forcing you sit on the edge and let them dangle. You have to sit while naked below the waist unless you want your clothes soaked with spermy precum.`);
+			}
+		} else if (V.PC.ballsImplant > 1 && V.PC.balls >= 14) {
+			if (V.ballsAccessibility === 1) {
+				r.push(`Thanks to your accessibility remodeling, your enormous gel-filled scrotum is able to rest comfortably in your custom chair.`);
+			} else {
+				r.push(`No matter how you sit, your enormous gel-filled scrotum is never quite comfortable. Fortunately the cosmetic gel protects you from any major discomfort.`);
+			}
+		} else if (V.PC.balls >= 14) {
+			if (V.ballsAccessibility === 1) {
+				r.push(`Thanks to your accessibility remodeling, your enormous sperm factories are able to rest comfortably in your custom chair. Your chair also catches your never-ending precum, helping to prevent a mess.`);
+			} else {
+				r.push(`You have to sit very carefully in your desk chair, giving your enormous sperm factories plenty of room. As they rest on the chair they deform uncomfortably under their own weight, causing even more of a mess from your ever-drooling cock.`);
+			}
+		} else if (V.PC.balls >= 9) {
+			r.push(`You shift in your seat and spread your legs to give your huge balls room.`);
+		} else if (V.PC.balls >= 5) {
+			r.push(`You shift in your seat to make room for your big balls.`);
+		}
+	}
+	return r.join(" ");
+};
diff --git a/src/pregmod/analyzePlayerPregnancy.tw b/src/pregmod/analyzePlayerPregnancy.tw
index 0bbf82a0a03658f89b1de0269fde8f7097beb72c..629c085c284cea8ec3393751473f06e768c196f9 100644
--- a/src/pregmod/analyzePlayerPregnancy.tw
+++ b/src/pregmod/analyzePlayerPregnancy.tw
@@ -13,7 +13,7 @@
 	<<goto "Manage Personal Affairs">>
 <<else>>
 	<p class="scene-intro">
-		You make yourself comfortable and prep your stomach for examination. <<PlayerBelly>>
+		You make yourself comfortable and prep your stomach for examination. <<= App.Desc.Player.belly()>>
 	</p>
 
 	<p>
diff --git a/src/pregmod/analyzePregnancy.tw b/src/pregmod/analyzePregnancy.tw
index 1dc5257291becb085469cb539450a2bf1b166dc7..1d9729dcd913e044969eeb152e1c6bfa275b9884 100644
--- a/src/pregmod/analyzePregnancy.tw
+++ b/src/pregmod/analyzePregnancy.tw
@@ -14,7 +14,7 @@
 		<<= getSlave($activeSlave.ID).slaveName>> is <<if getSlave($activeSlave.ID).devotion < 20>>restrained<<else>>comfortably reclined<</if>> with $his stomach prepped for examination. $He shudders slightly at the cold touch of the sensor against $his skin.
 	</p>
 
-	<<set $saleDescription = 1>><<pregnancyDescription>><<set $saleDescription = 0>>
+	<<set $saleDescription = 1>><<= App.Desc.pregnancy($activeSlave)>><<set $saleDescription = 0>>
 
 	<p>
 		<h2>Overall statistics</h2>
diff --git a/src/pregmod/managePersonalAffairs.tw b/src/pregmod/managePersonalAffairs.tw
index 3b36ea4884a7679a7d43e8a72de958a43d492823..f782157ba7d27aa190b06d30f117194d8f03e7ac 100644
--- a/src/pregmod/managePersonalAffairs.tw
+++ b/src/pregmod/managePersonalAffairs.tw
@@ -30,13 +30,13 @@
 		<</if>>
 		<<if ($playerAging != 0)>>Your birthday is <<if $PC.birthWeek == 51>>next week<<else>>in <<print 52-$PC.birthWeek>> weeks<</if>>.<</if>>
 		Looking down,
-		<<PlayerBoobs>>
-		<<PlayerBelly>>
+		<<= App.Desc.Player.boobs()>>
+		<<= App.Desc.Player.belly()>>
 		<<if $PC.prostate > 2 && $PC.belly < 10000>> Your pubic mound bulges outward noticeably thanks to your massive prostate.<<elseif $PC.prostate == 2 && $PC.belly < 5000>> Your pubic mound swells outward slightly due to your oversized prostate.<</if>>
 		Beneath all that,
-		<<PlayerCrotch>>
+		<<= App.Desc.Player.crotch()>>
 		Around back,
-		<<PlayerButt>>
+		<<= App.Desc.Player.butt()>>
 	</div>
 
 	<div>
diff --git a/src/pregmod/personalNotes.tw b/src/pregmod/personalNotes.tw
index 107146bd8eea66eca10f1f17db64d007f78bac09..9d671b0c192d25d8c94e56f8f0bb4d483c2d309d 100644
--- a/src/pregmod/personalNotes.tw
+++ b/src/pregmod/personalNotes.tw
@@ -3,10 +3,10 @@
 <<if $useTabs == 0>>__Personal Notes__<</if>>
 <br>
 <<if ($playerAging != 0)>>Your birthday is <<if $PC.birthWeek == 51>>next week<<if $playerAging == 2>>; you'll be turning <<print $PC.actualAge+1>><</if>><<else>>in <<print 52-$PC.birthWeek>> weeks<</if>>.<</if>>
-<<PlayerBoobs>>
-<<PlayerBelly>>
-<<PlayerCrotch>>
-<<PlayerButt>>
+<<= App.Desc.Player.boobs()>>
+<<= App.Desc.Player.belly()>>
+<<= App.Desc.Player.crotch()>>
+<<= App.Desc.Player.butt()>>
 <<if $PC.lactation > 0>>
 	<<if $PC.rules.lactation != "none" && $PC.rules.lactation != "induce">>
 		<<set $PC.lactationDuration = 2>>
diff --git a/src/pregmod/widgets/playerDescriptionWidgets.tw b/src/pregmod/widgets/playerDescriptionWidgets.tw
deleted file mode 100644
index fb9f61c052366eb36fe465c7505b5387765b190a..0000000000000000000000000000000000000000
--- a/src/pregmod/widgets/playerDescriptionWidgets.tw
+++ /dev/null
@@ -1,931 +0,0 @@
-:: player description widgets [nobr widget]
-
-<<widget "PlayerBoobs">>
-
-<<set _passage = passage()>>
-
-<<if _passage == "Manage Personal Affairs">>
-	<<if $PC.boobs >= 1400>>
-		you have a @@.orange;pair of H-cup breasts.@@
-		<<if $PC.boobsImplant > 0>>
-			They are big, round, and obviously implants. They barely move when you fuck your slaves.
-		<<else>>
-			They are all natural, heavy, and a bit saggy though they have some perk to them. Once they get going, it's hard to make them stop.
-		<</if>>
-		<<if $PC.lactation > 0>>
-			Your breasts feel even more enormous lately; this is likely a side effect of your lactation.
-		<</if>>
-		<<if $PC.markings == "freckles">>
-			The tops of your breasts and your cleavage are lightly freckled.
-		<<elseif $PC.markings == "heavily freckled">>
-			They are covered in freckles, which are particularly dense in the cleft between them.
-		<</if>>
-	<<elseif $PC.boobs >= 1200>>
-		you have a @@.orange;pair of G-cup breasts.@@
-		<<if $PC.boobsImplant > 0>>
-			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>>
-			They are all natural and a little heavy. The bounce everywhere when you fuck your slaves.
-		<</if>>
-		<<if $PC.lactation > 0>>
-			Your breasts feel even more huge lately; this is likely a side effect of your lactation.
-		<</if>>
-		<<if $PC.markings == "freckles">>
-			The tops of your breasts and your cleavage are lightly freckled.
-		<<elseif $PC.markings == "heavily freckled">>
-			They are covered in freckles, which are particularly dense in the cleft between them.
-		<</if>>
-	<<elseif $PC.boobs >= 1000>>
-		you have a @@.orange;pair of F-cup breasts.@@
-		<<if $PC.boobsImplant > 0>>
-			They are nice, perky and not obviously implants. Though the way they move when you fuck a slave pins them as such.
-		<<else>>
-			They are nice and perky, despite their size. They bounce lewdly as you fuck your slaves.
-		<</if>>
-		<<if $PC.lactation > 0>>
-			Your breasts feel bigger lately; this is likely a side effect of your lactation.
-		<</if>>
-		<<if $PC.markings == "freckles">>
-			The tops of your breasts and your cleavage are lightly freckled.
-		<<elseif $PC.markings == "heavily freckled">>
-			They are covered in freckles, which are particularly dense in the cleft between them.
-		<</if>>
-	<<elseif $PC.boobs >= 800>>
-		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; this is likely a side effect of your lactation.
-		<</if>>
-		<<if $PC.markings == "freckles">>
-			The tops of your breasts and your cleavage are lightly freckled.
-		<<elseif $PC.markings == "heavily freckled">>
-			They are covered in freckles, which are particularly dense in the cleft between them.
-		<</if>>
-	<<elseif $PC.boobs >= 650>>
-		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; this is likely a side effect of your lactation.
-		<</if>>
-		<<if $PC.markings == "freckles">>
-			The tops of your breasts and your cleavage are lightly freckled.
-		<<elseif $PC.markings == "heavily freckled">>
-			They are covered in freckles, which are particularly dense in the cleft between them.
-		<</if>>
-	<<elseif $PC.boobs >= 500>>
-		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>>
-		<<if $PC.markings == "freckles">>
-			The tops of your breasts and your cleavage are lightly freckled.
-		<<elseif $PC.markings == "heavily freckled">>
-			They are covered in freckles, which are particularly dense in the cleft between them.
-		<</if>>
-	<<elseif $PC.boobs >= 400>>
-		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; this is likely a side effect of your lactation.
-		<</if>>
-		<<if $PC.markings == "freckles">>
-			The tops of your breasts and your cleavage are lightly freckled.
-		<<elseif $PC.markings == "heavily freckled">>
-			They are covered in freckles, which are particularly dense in the cleft between them.
-		<</if>>
-	<<elseif $PC.boobs >= 300>>
-		you have a @@.orange;tiny pair of A-cup breasts.@@ They are nice and perky, but that's about it.
-		<<if $PC.lactation > 0>>
-			They feel a bit bigger lately; this is likely a side effect of your lactation.
-		<</if>>
-		<<if $PC.markings == "freckles">>
-			Your chest is covered in a light spray of freckles.
-		<<elseif $PC.markings == "heavily freckled">>
-			Your chest is covered in dense freckles.
-		<</if>>
-	<<elseif $PC.title == 1>>
-		you have a @@.orange;masculine chest.@@
-		<<if $PC.lactation > 0>>
-			Your chest feels swollen; the beads of milk forming on your nipples tells you why.
-		<</if>>
-		<<if $PC.markings == "freckles">>
-			Your chest is covered in a light spray of freckles.
-		<<elseif $PC.markings == "heavily freckled">>
-			Your chest is covered in dense freckles.
-		<</if>>
-	<<else>>
-		@@you're flat.@@ You have nothing in the breast department.
-		<<if $PC.lactation > 0>>
-			Your nipples cap a pair of painfully swollen bumps; milk beads from them at the slightest provocation.
-		<</if>>
-		<<if $PC.markings == "freckles">>
-			Your chest is covered in a light spray of freckles.
-		<<elseif $PC.markings == "heavily freckled">>
-			Your chest is covered in dense freckles.
-		<</if>>
-	<</if>>
-<<elseif _passage == "Economics">>
-	<<if $PC.career == "servant">>
-		<<if $PC.boobs >= 1400>>
-			You've gotten your dress let out to accommodate your huge bust.
-		<<elseif $PC.boobs >= 1200>>
-			Your dress bulges with your big breasts.
-		<<elseif $PC.boobs >= 1000>>
-			Your dress feels tight around your breasts.
-		<</if>>
-	<<elseif $PC.career == "escort">>
-		<<if $PC.boobs >= 1400>>
-			Your top strains as it struggles to cover your nipples, letting your huge<<if $PC.markings == "freckles">>, freckled<<elseif $PC.markings == "heavily freckled">>, densely freckled<</if>> bust bulge lewdly around it.
-		<<elseif $PC.boobs >= 1200>>
-			Your top can barely contain your big<<if $PC.markings == "freckles">>, freckled<<elseif $PC.markings == "heavily freckled">>, heavily freckled<</if>> breasts, leaving you looking sluttier than ever.
-		<<elseif $PC.boobs >= 1000>>
-			Your breasts spill over your slutty top<<if $PC.markings == "freckles">>, showing off your freckled cleavage<<elseif $PC.markings == "heavily freckled">>, freckle packed cleavage<</if>>.
-		<</if>>
-	<<else>>
-		<<if $PC.boobs >= 1400>>
-			You've gotten your top retailored to fit your huge bust.
-		<<elseif $PC.boobs >= 1200>>
-			Your top strains against your big breasts<<if $PC.markings == "freckles">>, revealing a peak of freckled cleavage<<elseif $PC.markings == "heavily freckled">>, revealing a peak of densely freckled cleavage<</if>>.
-		<<elseif $PC.boobs >= 1000>>
-			Your top feels tight around your breasts.
-		<</if>>
-	<</if>>
-<<else>>
-	<<if $PC.boobs >= 1400>>
-		Your breasts are
-		<<if $PC.markings == "freckles">>
-			enormous with light freckling on the tops and in your cleavage.
-		<<elseif $PC.markings == "heavily freckled">>
-			enormous and covered in freckles, which are particularly dense in the cleft between them.
-		<<else>>
-			enormous.
-		<</if>>
-		<<if $PC.boobsImplant > 0>>
-			They are big, round, and obviously implants. They insist on maintaining their shape no matter how you move.
-		<<else>>
-			They are all natural, heavy, and a bit saggy though they retain some perk. Every single move you make sends ripples through your cleavage. You catch yourself watching them move in the mirror every so often.
-		<</if>>
-		<<if $PC.lactation > 0>>
-			Your breasts feel even more enormous lately; this is likely a side effect of your lactation, though you could do without the wet spots forming over your nipples.
-		<</if>>
-	<<elseif $PC.boobs >= 1200>>
-		Your breasts are
-		<<if $PC.markings == "freckles">>
-			huge with light freckling on the tops and in your cleavage.
-		<<elseif $PC.markings == "heavily freckled">>
-			huge and covered in freckles, which are particularly dense in the cleft between them.
-		<<else>>
-			huge.
-		<</if>>
-		<<if $PC.boobsImplant > 0>>
-			They are unnaturally perky for their size. When you shake them, they barely move.
-		<<else>>
-			They are all natural and a little heavy. They bounce lewdly when you shake them and take a little too long to calm down.
-		<</if>>
-		<<if $PC.lactation > 0>>
-			Your breasts feel even more huge lately; this is this is likely a side effect of your lactation, though you could do without the wet spots forming over your nipples.
-		<</if>>
-	<<elseif $PC.boobs >= 1000>>
-		Your breasts are pretty
-		<<if $PC.markings == "freckles">>
-			big with light freckling on the tops and in your cleavage.
-		<<elseif $PC.markings == "heavily freckled">>
-			big and covered in freckles, which are particularly dense in the cleft between them.
-		<<else>>
-			big.
-		<</if>>
-		<<if $PC.boobsImplant > 0>>
-			They are nice, perky and not obviously implants. They jiggle only slightly when you shake them though.
-		<<else>>
-			They are nice and perky, despite their size. They bounce lewdly when you shake them.
-		<</if>>
-		<<if $PC.lactation > 0>>
-			Your breasts feel bigger lately; this is likely a side effect of your lactation, though you could do without the wet spots forming over your nipples.
-		<</if>>
-	<<elseif $PC.boobs >= 800>>
-		Your breasts are on the larger side of things<<if $PC.lactation > 0>>, though you could do without the wet spots forming over your nipples<</if>>.
-		<<if $PC.markings == "freckles">>
-			The tops of your breasts and your cleavage are lightly freckled.
-		<<elseif $PC.markings == "heavily freckled">>
-			They are covered in freckles, which are particularly dense in the cleft between them.
-		<</if>>
-	<<elseif $PC.boobs >= 650>>
-		Your breasts are certainly
-		<<if $PC.markings == "freckles">>
-			eye-catching with light freckling on the tops and in your cleavage.
-		<<elseif $PC.markings == "heavily freckled">>
-			eye-catching and covered in freckles, which are particularly dense in the cleft between them.
-		<<else>>
-			eye-catching.
-		<</if>>
-		They are nice and perky, with just the right amount of bounce when you shake them.
-		<<if $PC.lactation > 0>>
-			Your breasts feel bigger lately; this is likely a side effect of your lactation, though you could do without the wet spots forming over your nipples.
-		<</if>>
-	<<elseif $PC.boobs >= 500>>
-		Your breasts are fairly average, at least to old world
-		<<if $PC.markings == "freckles">>
-			standards, with light freckling on the tops and in your cleavage.
-		<<elseif $PC.markings == "heavily freckled">>
-			standards, and covered in freckles, which are particularly dense in the cleft between them.
-		<<else>>
-			standards.
-		<</if>>
-		They are very perky, but aren't big enough to have a nice bounce when you shake them.
-		<<if $PC.lactation > 0>>
-			Your breasts feel bigger lately; this is likely a side effect of your lactation, though you could do without the wet spots forming over your nipples.
-		<</if>>
-	<<elseif $PC.boobs >= 400>>
-		Your breasts are considered small by most
-		<<if $PC.markings == "freckles">>
-			standards, with light freckling on the tops and in your cleavage.
-		<<elseif $PC.markings == "heavily freckled">>
-			standards, and covered in freckles, which are particularly dense in the cleft between them.
-		<<else>>
-			standards.
-		<</if>>
-		Their size makes them extremely perky, at the cost of having little to no bounce.
-		<<if $PC.lactation > 0>>
-			Your breasts feel bigger lately; this is likely a side effect of your lactation, though you could do without the wet spots forming over your nipples.
-		<</if>>
-	<<elseif $PC.boobs >= 300>>
-		Your breasts, if they can even be called that, are
-		<<if $PC.markings == "freckles">>
-			covered in a light spray of freckles.
-		<<elseif $PC.markings == "heavily freckled">>
-			covered in dense freckles.
-		<<else>>
-			tiny even by old world standards.
-		<</if>>
-		On the plus side, no chance of sag.
-		<<if $PC.lactation > 0>>
-			Your breasts feel more substantial lately; this is likely a side effect of your lactation, though you could do without the wet spots forming over your nipples.
-		<</if>>
-	<<elseif $PC.title == 1>>
-		Your chest is quite masculine<<if $PC.lactation > 0>>, though the pair of wet spots forming over your nipples suggest otherwise,<</if>><<if $PC.markings == "freckles">> and covered in a light spray of freckles<<elseif $PC.markings == "heavily freckled">> and covered in dense freckles<</if>>.
-	<<else>>
-		Your chest is non-existent<<if $PC.lactation > 0>>, save for the pair of bulging milk glands beneath your nipples,<</if>><<if $PC.markings == "freckles">> and covered in a light spray of freckles<<elseif $PC.markings == "heavily freckled">> and covered in dense freckles<</if>>.
-	<</if>>
-<</if>>
-
-<</widget>>
-
-<<widget "PlayerBelly">>
-
-<<set _passage = passage()>>
-<<setPlayerPronouns>>
-
-<<if _passage == "Manage Personal Affairs">>
-	<<if $PC.preg > 0>>
-		<<if $PC.belly >= 120000>>
-			@@.red;Your belly is coated with stretch marks and is taut as a drum; you don't know how much more your poor womb can endure.@@ You can barely even leave your bed without a helping hand. Kicks can almost constantly be seen dotting its surface. You give it a pat for good measure, only encouraging your <<print pregNumberName($PC.pregType, 2)>> to squirm in excitement.<<if $PC.dick != 0>> You watch as your dick hardens from the prostate stimulation; you steady yourself for the coming orgasm.<</if>>
-		<<elseif $PC.belly >= 105000>>
-			You have trouble getting up and sitting down. Even standing while supporting your @@.orange;massive belly@@ has become an exhausting endeavor.
-		<<elseif $PC.belly >= 90000>>
-			You can @@.orange;barely reach around your gravid mass@@ any longer. Even the shortest waddle is exhausting.
-		<<elseif $PC.belly >= 75000>>
-			Your @@.orange;belly is starting to become worrying;@@ you feel over-filled at all times, and your children like to remind you just how full you are.
-		<<elseif $PC.belly >= 60000>>
-			You're @@.orange;definitely having multiples;@@ there is no denying it at this point. All you can do is try to relax and keep trying to stave off the stretch marks.
-		<<elseif $PC.belly >= 45000>>
-			You both look and feel enormous; your @@.orange;belly juts out so much now.@@ You've grown so much you now have trouble viewing yourself in mirror.
-		<<elseif $PC.belly >= 30000>>
-			Whenever you have the chance, you prefer to stay naked instead of stretching out your clothing with your @@.orange;giant pregnant belly.@@
-		<<elseif $PC.belly >= 14000>>
-			You're @@.orange;so gravid@@ you have trouble seeing the entirety of your huge belly.
-		<<elseif $PC.belly >= 12000>>
-			You can barely wrap your arms around your @@.orange;huge pregnant belly,@@ and when you do, your popped navel reminds you of the bun<<if $PC.pregType > 1>>s<</if>> in your oven.
-		<<elseif $PC.belly >= 10000>>
-			Your @@.orange;pregnancy has gotten quite huge;@@ none of your clothes fit it right.
-		<<elseif $PC.belly >= 7000>>
-			Your @@.orange;pregnant belly juts out annoyingly far;@@ just getting dressed is a pain now.
-		<<elseif $PC.belly >= 5000>>
-			Your @@.orange;belly has gotten quite large with child;@@ it is beginning to get the way of sex and business.
-		<<elseif $PC.belly >= 1500>>
-			Your @@.orange;belly is now large enough that there is no hiding it.@@
-		<<elseif $PC.belly >= 500>>
-			Your @@.orange;belly is rounded by your early pregnancy.@@
-		<<elseif $PC.belly >= 250>>
-			Your @@.orange;lower belly is beginning to stick out;@@ you're definitely pregnant.
-		<<elseif $PC.belly >= 100>>
-			Your @@.orange;belly is slightly swollen;@@ combined with your missed period, odds are you're pregnant.
-		<<elseif $PC.belly < 100>>
-			Your @@.red;period hasn't happened in some time;@@ you might be pregnant.
-		<</if>>
-		<<if $PC.preg >= 41>>
-			You don't know why you even bother getting out of bed; you are @@.orange;overdue and ready to drop@@ at any time, making your life as arcology owner very difficult. You try to relax and enjoy your slaves, but you can only manage so much in this state.
-		<<elseif $PC.preg >= 39>>
-			You feel absolutely massive; your @@.orange;full-term belly@@ makes your life as arcology owner very difficult.
-		<</if>>
-	<<elseif $PC.belly >= 1500>>
-		Your belly is still very distended from your recent pregnancy.
-	<<elseif $PC.belly >= 500>>
-		Your belly is still distended from your recent pregnancy.
-	<<elseif $PC.belly >= 250>>
-		Your belly is still bloated from your recent pregnancy
-	<<elseif $PC.belly >= 100>>
-		Your belly is still slightly swollen after your recent pregnancy.
-	<</if>>
-<<elseif _passage == "Economics">>
-	<<if $PC.career == "servant">>
-		<<if $PC.preg > 0>>
-			<<if $PC.belly >= 120000>>
-				You don't know how much more you can take. You feel so full and your children never calm down. You swear they take shifts tormenting your poor bladder. Even worse, your pregnancy juts out over a half-<<if $showInches == 2>>yard<<else>>meter<</if>> from your front and has soundly defeated the seams of your dress<<if $PC.dick != 0>>. Occasionally one of the bottoms manages to land a series of hits to your prostate, not that you mind as much, save for when they keep at it and you can't restrain your orgasm<</if>>.
-			<<elseif $PC.belly >= 105000>>
-				You can barely function any more. You're so big and heavy that even the simplest of actions requires both intense effort and thought just to get it done. Your frumpy dress is also at its limit, and much to your annoyance, your children will not stay still enough to let you fix it.
-			<<elseif $PC.belly >= 90000>>
-				<<set _toSearch = $PC.refreshment.toLowerCase(), _fertRefresh = 0>>
-				<<if _toSearch.indexOf("fertility") != -1>>
-					<<set _fertRefresh = 1>>
-				<</if>>
-				You may have a problem<<if _fertRefresh == 1>>, but then again, you did take all those fertility drugs, so you can't really say you didn't want it.<<else>>. You took fertility drugs, but you shouldn't be getting this big.<</if>> Judging by how far along you are, you must be carrying <<print pregNumberName($PC.pregType, 2)>>. Your Master always said he wanted a big family; too bad he isn't here to see this. Your dress is also starting to get tight, but it's far less of a concern at this point.
-			<<elseif $PC.belly >= 75000>>
-				Your belly is starting to become worrying. You're positively gigantic and quite tired. Though on the plus side, your dress is rather form fitting now.
-			<<elseif $PC.belly >= 60000>>
-				Your new outfit is handling your enormous belly quite well, though it does nothing to hide your size. Everyone can tell you'll be having lots of babies.
-			<<elseif $PC.belly >= 45000>>
-				You both look and feel enormous, your belly juts out so much now. You found a rather frumpy looking maid outfit in a shop; it's not the most attractive thing, but it'll hold nearly any belly.
-			<<elseif $PC.belly >= 30000>>
-				You feel absolutely gigantic; you look like you're full-term with twins<<if $PC.pregType == 2>> (which you are)<</if>>. Your restitched dress is once more at its limit.
-			<<elseif $PC.belly >= 15000>>
-				You've taken the time to let out your own dress so that you can look proper even with a belly as big as any full-term woman's.
-			<<elseif $PC.belly >= 14000>>
-				Your dress is at its capacity; any bigger and you'd risk tearing it at the seams, though your late Master did make sure his <<= _girlP>>s were well dressed even when they were fully rounded with his child.
-			<<elseif $PC.belly >= 12000>>
-				You keep bumping into things with your huge belly; you're used to it though, <<if $PC.counter.birthMaster >= 2>>your first pregnancy was a twinner!<<else>>your late Master liked to keep a big fake belly around your middle.<</if>>
-			<<elseif $PC.belly >= 10000>>
-				Your huge pregnant belly is tiring to carry around, but you're well versed in moving about with a rounded middle.
-			<<elseif $PC.belly >= 7000>>
-				You've stopped bothering to tie your apron behind you, allowing your dress the freedom to stretch with your growing child<<if $PC.pregType > 1>>ren<</if>>.
-			<<elseif $PC.belly >= 5000>>
-				Your maid's outfit is rounded out by your baby-filled belly; not only is it obvious, but it is slowing you down in your day to day affairs.
-			<<elseif $PC.belly >= 3000>>
-				You're starting to get pretty big; you feel like all eyes are centered on your baby-filled middle.
-			<<elseif $PC.belly >= 1500>>
-				Your belly is now large enough that there is no hiding it. After you've let out your apron, your dress fits nicely again.
-			<<elseif $PC.belly >= 500>>
-				Your dress tightly clings to your early pregnancy, though it, your apron, and your previous experience hide it well.
-			<<elseif $PC.belly >= 250>>
-				Your apron holds your dress tightly to your bloated middle.
-			<<elseif $PC.belly >= 100>>
-				Your dress and apron feel tight around your middle.
-			<</if>>
-			<<if $PC.preg >= 41>>
-				Your bab<<if $PC.pregType > 1>>ies are<<else>>y is<</if>> overdue and your Master isn't here anymore to comfort your exhausted body. You try your best, <<if $PC.pregSource == -3>>drawing strength from the knowledge that you carry your late Master's legacy within you<<else>>but deep down you are saddened that your <<if $PC.pregType > 1>>children aren't<<else>>child isn't<</if>> his<</if>>.<<if $PC.pregMood == 1>> However, thanks to all your mothering, your slaves are more than happy to do everything they can for you.<<elseif $PC.pregMood == 2>> Your slaves<<if $seeDicks != 0>>, those with dicks especially,<</if>> are terrified of being seen by you, knowing full well that they will be bearing the full weight of your body as you try to fill the hole left by your late Master.<</if>>
-			<<elseif $PC.preg >= 39>>
-				Every action you take is exhausting, and even though your slaves are more than capable of serving your every desire, you refuse to slow down with your duties.<<if $PC.pregMood == 1>> Though you definitely appreciate their aid.<<elseif $PC.pregMood == 2>> Your hormones practically rule you, leading you to demand your slaves to be prepared to pleasure you at a moments notice. Your needy cunt hungers for dick and you don't care <<if $seeDicks != 0>>what it is attached to<<else>>if it's made of plastic<</if>> right now.<</if>>
-			<<elseif $PC.preg >= 36>>
-				Your child<<if $PC.pregType > 1>>ren<</if>> happily kick<<if $PC.pregType == 1>>s<</if>> away inside your womb, and each time a small bump appears on the outside of your dress.<<if $PC.pregMood == 1>> While hormones may have you demanding and needy, you do everything you can to treat your slaves as if they were your own children.<<elseif $PC.pregMood == 2>> You know it's unbecoming for an arcology owner, but your former Master loved to fuck you while you <<if $PC.counter.birthMaster > 0>>were pregnant with his child<<if $PC.counter.birthMaster > 1>>ren<</if>><<else>>wore a big fake belly<</if>> and your body misses his touch.<</if>>
-			<<elseif $PC.preg >= 32>>
-				<<if $PC.pregMood == 1>> You can't help but enjoy having a slave suckle from you while you relax with them in your lap.<<elseif $PC.pregMood == 2>> You know how to have sex while pregnant, and as such, so will your slaves.<</if>>
-			<<elseif $PC.preg >= 28>>
-				<<if $PC.pregMood == 1>> You catch yourself babying your slaves from time to time.<<elseif $PC.pregMood == 2>>Your sex drive has become unquenchable as of late.<</if>>
-			<<elseif $PC.preg == 22>>
-				Something startling happened this week; while enjoying a slave, your belly button popped out!
-			<<elseif $PC.preg == 8 && $PC.pregSource > 0>>
-				<<set _babyDaddy = findFather($PC.pregSource)>>
-				<<if def _babyDaddy>>
-					<<set _adjust = _babyDaddy.counter.PCKnockedUp++>>
-					<<set adjustFatherProperty(_babyDaddy, "PCKnockedUp", _adjust)>>
-				<</if>>
-				<<if def $slaveIndices[$PC.pregSource]>>
-					<<setLocalPronouns _babyDaddy>>
-					Rumors spread among your slaves that your middle is swollen with _babyDaddy.slaveName's child. They're not wrong, though <<if _babyDaddy.devotion > 20>>_babyDaddy.slaveName is broken enough to not try and use it against you. In fact, it might even draw $him closer to you<<else>>you'd have liked it to have kept that from _babyDaddy.slaveName, lest the rebellious bitch use it to remain defiant<</if>>.
-				<</if>>
-			<</if>>
-		<</if>>
-	<<elseif $PC.career == "escort">>
-		<<if $PC.preg > 0>>
-			<<if $PC.belly >= 120000>>
-				You don't know how much more you can take. You feel so full and your children never calm down. You swear they take shifts tormenting your poor bladder. Even worse, your pregnancy juts out over a half-<<if $showInches == 2>>yard<<else>>meter<</if>> from your front and has seized control as your dominant aspect<<if $PC.dick != 0>>. Occasionally one of the bottoms manages to land a series of hits to your prostate, not that you mind as much. It's good for business when you orgasm lewdly and cum your bottoms<</if>>.
-			<<elseif $PC.belly >= 105000>>
-				You can barely function any more. You're so big and heavy that even the simplest of actions requires both intense effort and thought just to get it done. None of your poses work with your gravid body either, and you're practically popping out of your skimpiest outfit.
-			<<elseif $PC.belly >= 90000>>
-				<<set _toSearch = $PC.refreshment.toLowerCase(), _fertRefresh = 0>>
-				<<if _toSearch.indexOf("fertility") != -1>>
-					<<set _fertRefresh = 1>>
-				<</if>>
-				You may have a problem<<if _fertRefresh == 1>>, but then again, you did take all those fertility drugs, so you can't really say you didn't want it.<<else>>. You know you took fertility drugs, but you weren't supposed to get this big!<</if>> Feeling yourself up, you'd fancy a guess that there are about
-				<<if $PC.counter.medicine >= 45>>
-					<<if $PC.pregType == 8>>
-						eight babies
-					<<elseif $PC.pregType == 7>>
-						seven babies
-					<<else>>
-						six babies
-					<</if>>
-				<<else>>
-					<<if $PC.pregType == 8>>
-						a dozen babies
-					<<elseif $PC.pregType == 7>>
-						ten babies
-					<<else>>
-						eight babies
-					<</if>>
-				<</if>>
-				in your belly.
-			<<elseif $PC.belly >= 75000>>
-				Your belly is starting to become worrying to you. You're positively gigantic and quite tired of it.<<if $arcologies[0].FSRepopulationFocus != "unset">> The last thing on peoples' minds these days is fucking you too.<</if>>
-			<<elseif $PC.belly >= 60000>>
-				You feel sexy with such a huge belly, but it sure is tiring. Everyone can also tell you'll be having lots of babies — a boon to business, since everyone knows you ride bareback.
-			<<elseif $PC.belly >= 45000>>
-				You both look and feel enormous, your belly juts out so much now. Your strategy worked! Eyes always end up locked onto you or your pregnancy, but they quickly return to your milky breasts.
-			<<elseif $PC.belly >= 30000>>
-				You feel absolutely gigantic; you look like you're full-term with twins<<if $PC.pregType == 2>> (which you are)<</if>>. You find the skimpiest outfit you can to complement your size; if people won't notice your other assets, then they might as well not notice your outfit either.
-			<<elseif $PC.belly >= 14000>>
-				You don't even bother to try to be slutty anymore; your full-term globe of a belly just steals all the attention away from your other assets.
-			<<elseif $PC.belly >= 12000>>
-				Your huge pregnant belly hides your crotch.
-			<<elseif $PC.belly >= 10000>>
-				Your huge pregnant belly is tiring to carry around and is beginning to draw attention away from your other features.
-			<<elseif $PC.belly >= 7000>>
-				You've switched to even skimpier clothing to show off your big pregnant belly.
-			<<elseif $PC.belly >= 5000>>
-				Your outfit is only enhanced by your baby-filled belly, mostly because it adds to your slutty appearance. Though it is definitely impacting your business.
-			<<elseif $PC.belly >= 3000>>
-				Your slutty bottoms are beginning to get hidden by your rounded middle.
-			<<elseif $PC.belly >= 1500>>
-				Your slutty bottoms sexily hug your swollen middle.
-			<<elseif $PC.belly >= 500>>
-				Your exposed midriff bulges out enough to give away your growing pregnancy.
-			<<elseif $PC.belly >= 250>>
-				Your exposed midriff is noticeably bloated.
-			<<elseif $PC.belly >= 100>>
-				When you look down, you can't help but notice your belly sticking out a little.
-			<</if>>
-			<<if $PC.preg >= 41>>
-				You can barely pull yourself and your overdue child<<if $PC.pregType > 1>>ren<</if>> out of bed; every action is a chore, you keep bumping things, and your child<<if $PC.pregType > 1>>red<</if>> just won't calm down.<<if $PC.pregMood == 1>> However, thanks to all your tenderness, your slaves are more than happy to do everything they can for you.<<elseif $PC.pregMood == 2>> Your slaves<<if $seeDicks != 0>>, those with dicks especially,<</if>> are terrified of being seen by you, knowing full well that they will be bearing the full weight of your body as you satisfy your desires.<</if>>
-			<<elseif $PC.preg >= 39>>
-				Every action you take is exhausting, though your slaves are more than capable of serving your every whim.<<if $PC.pregMood == 1>> Even in the final stages of pregnancy, you make sure the slaves attending you are treated as if the were your favorite clients.<<elseif $PC.pregMood == 2>> Your hormones practically rule you, leading you to demand your slaves to be prepared to pleasure you at a moment's notice. Your needy cunt hungers for dick and you don't care <<if $seeDicks != 0>>what it is attached to<<else>>if it's made of plastic<</if>> right now.<</if>>
-			<<elseif $PC.preg >= 36>>
-				Every kick from your eager child<<if $PC.pregType > 1>>ren<</if>> threatens to dislodge your breasts from your struggling top.<<if $PC.pregMood == 1>> While you may be demanding and needy, you do everything you can to treat them as if they were a virgin client.<<elseif $PC.pregMood == 2>> You know it's unbecoming for an arcology owner, but you need a dick in you even more than usual.<</if>>
-			<<elseif $PC.preg >= 32>>
-				<<if $PC.pregMood == 1>> You can't help but enjoy having a slave, or client, suckle from you while you relax with them in your lap.<<elseif $PC.pregMood == 2>> You don't let your pregnancy get in the way when it comes to sex; you make sure your slaves, and clients, learn just how much you know about sex.<</if>>
-			<<elseif $PC.preg >= 28>>
-				<<if $PC.pregMood == 1>> You catch yourself playfully teasing your slaves from time to time.<<elseif $PC.pregMood == 2>>Your sex drive has become unquenchable as of late.<</if>>
-			<<elseif $PC.preg == 22>>
-				Something startling happened this week; while enjoying a slave, your belly button popped out!
-			<<elseif $PC.preg == 8 && $PC.pregSource > 0>>
-				<<set _babyDaddy = findFather($PC.pregSource)>>
-				<<if def _babyDaddy>>
-					<<set _adjust = _babyDaddy.counter.PCKnockedUp++>>
-					<<set adjustFatherProperty(_babyDaddy, "PCKnockedUp", _adjust)>>
-				<</if>>
-				<<if def $slaveIndices[$PC.pregSource]>>
-					<<setLocalPronouns _babyDaddy>>
-					Rumors spread among your slaves that your middle is swollen with _babyDaddy.slaveName's child. They're not wrong, though <<if _babyDaddy.devotion > 20>>_babyDaddy.slaveName is broken enough to not try and use it against you. In fact, it might even draw $him closer to you<<else>>you'd have liked it to have kept that from _babyDaddy.slaveName, lest the rebellious bitch use it to remain defiant<</if>>.
-				<</if>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $PC.preg > 0>>
-			<<if $PC.belly >= 120000>>
-				You don't know how much more you can take. You feel so full and your children never calm down. You swear they take shifts tormenting your poor bladder. Even worse, your pregnancy juts out over a half-<<if $showInches == 2>>yard<<else>>meter<</if>> from your front and has soundly defeated your maternity suit<<if $PC.dick != 0>>. Occasionally one of the bottoms manages to land a series of hits to your prostate, not that you mind as much, save for when they keep at it and you a can't restrain your orgasm. The last thing you want to do in a meeting is spontaneously orgasm and cum your in clothes<</if>>.
-			<<elseif $PC.belly >= 105000>>
-				You can barely function any more. You're so big and heavy that even the simplest of actions requires both intense effort and thought just to get it done. Your suit buttons keep popping, and much to your annoyance, your child<<if $PC.pregType > 1>>ren<</if>> will not stay still enough to let you redo them.
-			<<elseif $PC.belly >= 90000>>
-				<<set _toSearch = $PC.refreshment.toLowerCase(), _fertRefresh = 0>>
-				<<if _toSearch.indexOf("fertility") != -1>>
-					<<set _fertRefresh = 1>>
-				<</if>>
-				You may have a problem<<if _fertRefresh == 1>>, but then again, you did take all those fertility drugs, so you can't really say you didn't want it.<<else>>. You took fertility drugs, but you shouldn't be getting this big.<</if>> Judging by how far along you are, you must be carrying <<print pregNumberName($PC.pregType, 2)>>. Your suit is also starting to get tight, but it's far less of a concern at this point.
-			<<elseif $PC.belly >= 75000>>
-				Your belly is starting to become worrying. You're positively gigantic and quite tired. As an added stress, your maternity suit highlights your pregnancy.
-			<<elseif $PC.belly >= 60000>>
-				Your new outfit is handling your enormous belly quite well, though it does nothing to hide your size. Everyone can tell you'll be having lots of babies and judges you accordingly.
-			<<elseif $PC.belly >= 45000>>
-				You both look and feel enormous, your belly juts out so much now. Your tailor finally managed to get you a bigger maternity suit, one with extra give in the middle, but you feel it draws attention right to your gravidity.
-			<<elseif $PC.belly >= 30000>>
-				You feel absolutely gigantic; you look like you're full-term with twins<<if $PC.pregType == 2>> (which you are)<</if>>. Having such a big belly in such poor attire weighs heavily under the public's eye.
-			<<elseif $PC.belly >= 15000>>
-				You don't even bother to try to cover your full-term sized pregnancy, opting to just let it hang out of your old clothing. Every action you take is exhausting; though your slaves are more than capable of serving your every desire.
-			<<elseif $PC.belly >= 12000>>
-				Your huge pregnant belly strains the buttons on your maternity suit.
-			<<elseif $PC.belly >= 10000>>
-				Your huge pregnant belly is tiring to carry around and is beginning to stretch out your new clothes.
-			<<elseif $PC.belly >= 7000>>
-				You've switched to using what can only be called formal maternity wear to cover your pregnant belly.
-			<<elseif $PC.belly >= 5000>>
-				You can barely cover your baby-filled belly; not only is it obvious, but it is getting in the way of your business.
-			<<elseif $PC.belly >= 3000>>
-				You're starting to get pretty big; you feel like everyone just focuses on your gravidity now.
-			<<elseif $PC.belly >= 1500>>
-				Your belly is now large enough that there is no hiding it. Your top strains to cover it.
-			<<elseif $PC.belly >= 500>>
-				Your top tightly clings to your early pregnancy, though you manage to conceal it well enough.
-			<<elseif $PC.belly >= 250>>
-				Your top tightly clings to your bloated middle.
-			<<elseif $PC.belly >= 100>>
-				Your top feels oddly tight around your middle.
-			<</if>>
-			<<if $PC.preg >= 41>>
-				You can barely pull yourself and your overdue child<<if $PC.pregType > 1>>ren<</if>> out of bed; every action is a chore, you keep bumping into things, and your child<<if $PC.pregType > 1>>ren<</if>> just won't calm down.<<if $PC.pregMood == 1>> However, thanks to all your mothering, your slaves are more than happy to do everything they can for you.<<elseif $PC.pregMood == 2>> Your slaves<<if $seeDicks != 0>>, those with dicks especially,<</if>> are terrified of being seen by you, knowing full well that they will be bearing the full weight of your body as you satisfy your desires.<</if>>
-			<<elseif $PC.preg >= 39>>
-				<<if $PC.pregMood == 1>> Even in the final stages of pregnancy, you make sure the slaves attending you are treated as if they were your own children.<<elseif $PC.pregMood == 2>> Your hormones practically rule you, leading you to demand your slaves to be prepared to pleasure you at a moment's notice. Your needy cunt hungers for dick and you don't care <<if $seeDicks != 0>>what it is attached to<<else>>if it's made of plastic<</if>> right now.<</if>>
-			<<elseif $PC.preg >= 36>>
-				Every kick from your eager child<<if $PC.pregType > 1>>ren<</if>> threatens to send your buttons flying.<<if $PC.pregMood == 1>> While you may be demanding and needy, you do everything you can to treat them as if they were your own children.<<elseif $PC.pregMood == 2>> You know it's unbecoming for an arcology owner, but you need a dick in you and you don't care from where.<</if>>
-			<<elseif $PC.preg >= 32>>
-				<<if $PC.pregMood == 1>> You can't help but enjoy having a slave suckle from you while you relax with them in your lap.<<elseif $PC.pregMood == 2>> You don't let your pregnancy get in the way when it comes to sex; you make sure your slaves learn new positions to accommodate your bulk.<</if>>
-			<<elseif $PC.preg >= 28>>
-				<<if $PC.pregMood == 1>> You catch yourself babying your slaves from time to time.<<elseif $PC.pregMood == 2>>Your sex drive has become unquenchable as of late.<</if>>
-			<<elseif $PC.preg == 22>>
-				Something startling happened this week; while enjoying a slave, your belly button popped out!
-			<<elseif $PC.preg == 8 && $PC.pregSource > 0>>
-				<<set _babyDaddy = findFather($PC.pregSource)>>
-				<<if def _babyDaddy>>
-					<<set _adjust = _babyDaddy.counter.PCKnockedUp++>>
-					<<set adjustFatherProperty(_babyDaddy, "PCKnockedUp", _adjust)>>
-				<</if>>
-				<<if def $slaveIndices[$PC.pregSource]>>
-					<<setLocalPronouns _babyDaddy>>
-					Rumors spread among your slaves that your middle is swollen with _babyDaddy.slaveName's child. They're not wrong, though <<if _babyDaddy.devotion > 20>>_babyDaddy.slaveName is broken enough to not try and use it against you. In fact, it might even draw $him closer to you<<else>>you'd have liked it to have kept that from _babyDaddy.slaveName, lest the rebellious bitch use it to remain defiant<</if>>.
-				<</if>>
-			<</if>>
-		<</if>>
-	<</if>>
-<<elseif _passage == "Analyze PC Pregnancy">>
-	<<if $PC.belly >= 120000>>
-		You shudder at the cool touch of the sensor running along the curve of your sensitive pregnancy. While you've devised a way to scan the distant peak of your navel and the depths of your underbelly, you failed to take into account just how excited your child<<if $PC.pregType > 1>>ren<</if>> would get over the attention. Every pass is a battle against your kicking brood.
-	<<elseif $PC.belly >= 90000>>
-		You shudder at the cool touch of the sensor running along the curve of your pregnancy. It takes some stretching, but you can just barely scan yourself without assistance. If you grow much larger, you'll have to call in help for those places that elude your reach.
-	<<elseif $PC.belly >= 45000>>
-		You shudder at the cool touch of the sensor running along the curve of your pregnancy. It's quite a tiring endeavor to scan the entire thing, given just how far it extends from your body.
-	<<elseif $PC.belly >= 14000>>
-		You shudder at the cool touch of the sensor running along the curve of your pregnancy. It takes some effort to scan the entire thing, given how large it has grown.
-	<<elseif $PC.belly >= 5000>>
-		You shudder at the cool touch of the sensor running along the curve of your pregnancy.
-	<<elseif $PC.belly >= 1500>>
-		You shudder at the cool touch of the sensor running along the curve of your growing pregnancy.
-	<<elseif $PC.belly >= 500>>
-		You shudder at the cool touch of the sensor running along the curve of your early pregnancy.
-	<<elseif $PC.belly >= 100>>
-		You shudder at the cool touch of the sensor against the slight swell of your lower belly.
-	<<elseif $PC.belly < 100>>
-		You shudder slightly at the cool touch of the sensor against your skin.
-	<</if>>
-<<else>>
-	<<if $PC.preg > 0>>
-		<<if $PC.belly >= 120000>>
-			Your belly is coated with stretch marks and is taut as a drum; you don't know how much more your poor womb can endure. Kicks can almost constantly be seen dotting its surface. You give it a pat for good measure, only encouraging your <<print pregNumberName($PC.pregType, 2)>> to squirm in excitement.<<if $PC.dick != 0>> As your dick hardens under the prostate stimulation, you call for a slave to receive the incoming load.<</if>>
-		<<elseif $PC.belly >= 105000>>
-			Getting out of your chair is practically a dream at this point. It takes far too much effort to do it on your own and is a little embarrassing to ask help with.
-		<<elseif $PC.belly >= 90000>>
-			You can barely reach around your gravid mass any longer. You've also had to reinforce your chair under your growing weight.
-		<<elseif $PC.belly >= 75000>>
-			Your belly is starting to become worrying; you feel over-filled at all times and your children like to remind you just how stuffed you are.
-		<<elseif $PC.belly >= 60000>>
-			You're definitely having multiples; there is no denying it at this point. All you can do is try to relax and keep trying to stave off the stretch marks.
-		<<elseif $PC.belly >= 45000>>
-			You both look and feel enormous; your belly juts out so much now. You stand no chance of sitting at your desk normally and have taken to angling you chair and belly to the side instead.
-		<<elseif $PC.belly >= 30000>>
-			Your chair has taken to creaking ominously whenever you shift your pregnant bulk while you've taken to keeping your belly uncovered to give it room.
-		<<elseif $PC.belly >= 14000>>
-			You can barely fit before your desk anymore and have had to take measures to accommodate your gravidity.
-		<<elseif $PC.belly >= 12000>>
-			You can barely wrap your arms around your huge pregnant belly, and when you do, your popped navel reminds you just how full you are.
-		<<elseif $PC.belly >= 10000>>
-			Your pregnancy has gotten quite huge; none of your clothes fit it right.
-		<<elseif $PC.belly >= 7000>>
-			Your pregnant belly juts out annoyingly far; just getting dressed is a pain now.
-		<<elseif $PC.belly >= 5000>>
-			Your belly has gotten quite large with child; it is beginning to get the way of sex and business.
-		<<elseif $PC.belly >= 1500>>
-			Your belly is now large enough that there is no hiding it.
-		<<elseif $PC.belly >= 500>>
-			Your belly is rounded by your early pregnancy.
-		<<elseif $PC.belly >= 250>>
-			Your lower belly is beginning to stick out; you're definitely pregnant.
-		<<elseif $PC.belly >= 100>>
-			Your belly is slightly swollen; combined with your missed period, odds are you're pregnant.
-		<<elseif $PC.belly < 100>>
-			Your period hasn't happened in some time; you might be pregnant.
-		<</if>>
-		<<if $PC.preg >= 41>>
-			You don't know why you even bother getting out of bed; you are overdue and ready to drop at many time, making your life as arcology owner very difficult. You try to relax and enjoy your slaves, but you can only manage so much in this state.
-		<<elseif $PC.preg >= 39>>
-			You feel absolutely massive; your full-term belly makes your life as arcology owner very difficult. You try your best to not wander too far from your penthouse, not with labor and birth so close.
-		<</if>>
-	<<elseif $PC.belly >= 1500>>
-		Your belly is still very distended from your recent pregnancy.
-	<<elseif $PC.belly >= 500>>
-		Your belly is still distended from your recent pregnancy.
-	<<elseif $PC.belly >= 250>>
-		Your belly is still bloated from your recent pregnancy
-	<<elseif $PC.belly >= 100>>
-		Your belly is still slightly swollen after your recent pregnancy.
-	<</if>>
-<</if>>
-
-<</widget>>
-
-<<widget "PlayerCrotch">>
-
-<<set _passage = passage()>>
-<<setPlayerPronouns>>
-
-<<if _passage == "Manage Personal Affairs">>
-	you have
-	<<if $PC.dick != 0 && $PC.vagina != -1>>
-		an @@.orange;above average penis@@
-		<<if $PC.balls >= 14>>
-			that is constantly streaming precum,
-		<<elseif $PC.balls >= 9>>
-			that is constantly dripping precum,
-		<</if>>
-		and a pair of
-		<<if $PC.balls >= 30>>
-			@@.orange;monstrous, heavy balls@@ roughly the size of small watermelons thanks to <<if $PC.ballsImplant > 0>>a combination of growth hormones and gel injections<<else>>relentless use of growth hormones<</if>>; it's impossible to sit normally,
-			<<if $ballsAccessibility == 1>>
-				but your penthouse has been redesigned with oversized balls in mind. There are plenty of chairs capable of handling you littering the penthouse.
-			<<else>>
-				so you rest on the edge of your chair, allowing your oversized balls to dangle precariously.
-			<</if>>
-			You've given up on wearing pants around the penthouse, and their bulging mass is so gargantuan that people assume they're fake, but every slave you fuck gets a distended belly from all the cum you pump into them. They make just about everything you do difficult: sitting, walking, fucking — but they certainly make life interesting.
-		<<elseif $PC.balls >= 14>>
-			@@.orange;enormous, heavy balls@@ roughly the size of cantaloupes; it's difficult to sit normally, your clothes barely fit, and everyone probably assumes they are fake, but every slave you fuck gets a distinct slap with each thrust. They get in the way of nearly everything you do: sitting, walking, fucking — but they make life certainly interesting.
-		<<elseif $PC.balls >= 9>>
-			@@.orange;huge balls@@ roughly the size of softballs; they are pretty heavy, but make sex and day-to-day affairs interesting.
-		<<elseif $PC.balls >= 5>>
-			@@.orange;large balls;@@ you can certainly feel them as you move about.
-		<<else>>
-			@@.orange;normal, uneventful balls.@@
-		<</if>>
-		Tucked away beneath them, you have a
-		/* this needs to be redone in all parts. */
-		<<if $PC.newVag == 1>>
-			@@.orange;tight vagina.@@ Your pussy is very resilient; you shouldn't be able to stretch it out again.
-		<<elseif $PC.career == "escort">>
-			@@.red;very loose vagina.@@ Years of whoring will do that to a _girlP.
-		<<elseif $PC.counter.birthsTotal >= 10>>
-			@@.red;rather loose vagina,@@ stretched from your many children.
-		<<elseif $PC.career == "servant">>
-			@@.red;rather loose vagina.@@ Your Master fucked you several times a day; he<<if $PC.counter.birthMaster > 0>> and his child<<if $PC.counter.birthMaster > 1>>ren<</if>> have<</if>> wreaked havoc upon your pussy.
-		<<elseif $PC.counter.birthsTotal > 2>>
-			@@.orange;loose vagina,@@ stretched from your several children.
-		<<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">>
-			@@.lime;reasonably tight vagina.@@ You've had some fun during your previous career.
-		<<elseif $PC.counter.birthsTotal > 0>>
-			@@.lime;reasonably tight vagina.@@ It's handled childbirth well enough.
-		<<else>>
-			@@.lime;tight vagina.@@ You're no virgin, but you've taken care of yourself.
-		<</if>>
-	<<elseif $PC.dick != 0>>
-		an @@.orange;above average penis@@
-		<<if $PC.balls >= 14>>
-			that is constantly streaming precum,
-		<<elseif $PC.balls >= 9>>
-			that is constantly dripping precum,
-		<</if>>
-		and a pair of
-		<<if $PC.balls >= 30>>
-			@@.orange;monstrous, heavy balls@@ roughly the size of small watermelons thanks to <<if $PC.ballsImplant > 0>>a combination of growth hormones and gel injections<<else>>relentless use of growth hormones<</if>>; it's impossible to sit normally,
-			<<if $ballsAccessibility == 1>>
-				but your penthouse has been redesigned with oversized balls in mind. There are plenty of chairs capable of handling you littering the penthouse.
-			<<else>>
-				so you rest on the edge of your chair, allowing your oversized balls to dangle precariously.
-			<</if>>
-			You've given up on wearing pants around the penthouse, and their bulging mass is so gargantuan that people assume they're fake, but every slave you fuck gets a distended belly from all the cum you pump into them. They make just about everything you do difficult: sitting, walking, fucking — but they certainly make life interesting.
-		<<elseif $PC.balls >= 14>>
-			@@.orange;enormous, heavy balls@@ roughly the size of cantaloupes; it's difficult to sit normally, your clothes barely fit, and everyone probably assumes they are fake, but every slave you fuck gets a distinct slap with each thrust. They get in the way of nearly everything you do: sitting, walking, fucking — but they certainly make life interesting.
-		<<elseif $PC.balls >= 9>>
-			@@.orange;huge balls@@ roughly the size of softballs; they are pretty heavy, but make sex and day-to-day affairs interesting.
-		<<elseif $PC.balls >= 5>>
-			@@.orange;large balls;@@ you can certainly feel them as you move about.
-		<<else>>
-			@@.orange;normal, uneventful balls.@@
-		<</if>>
-	<<else>>
-		a
-		<<if $PC.newVag == 1>>
-			@@.orange;tight vagina.@@ Your pussy is very resilient; you shouldn't be able to stretch it out again.
-		<<elseif $PC.career == "escort">>
-			@@.red;very loose vagina.@@ Years of whoring will do that to a _girlP.
-		<<elseif $PC.counter.birthsTotal >= 10>>
-			@@.red;rather loose vagina,@@ stretched from your many children.
-		<<elseif $PC.career == "servant">>
-			@@.red;rather loose vagina.@@ Your Master fucked you several times a day; he<<if $PC.counter.birthMaster > 0>>and his child<<if $PC.counter.birthMaster > 1>>ren<</if>> have<</if>> wreaked havoc upon your pussy.
-		<<elseif $PC.counter.birthsTotal > 2>>
-			@@.orange;loose vagina,@@ stretched from your several children.
-		<<elseif $PC.career == "gang" || $PC.career == "celebrity" || $PC.career == "wealth">>
-			@@.lime;reasonably tight vagina.@@ You've had some fun during your previous career.
-		<<elseif $PC.counter.birthsTotal > 0>>
-			@@.lime;reasonably tight vagina.@@ It's handled childbirth well enough.
-		<<else>>
-			@@.lime;tight vagina.@@ You're no virgin, but you've taken care of yourself.
-		<</if>>
-	<</if>>
-<<elseif _passage == "Economics">>
-	<<if $PC.career == "servant">>
-		<<if $PC.balls >= 30>>
-			Your dress and apron bulge with your enormous balls; you had to have your dresses tailored so that the swinging mass of your sack would stop bursting seams inadvertently.
-		<<elseif $PC.balls >= 14>>
-			Your dress and apron bulge with your enormous balls.
-		<<elseif $PC.balls >= 9>>
-			Your dress hides your huge balls, but it does nothing to hide your altered gait.
-		<<elseif $PC.balls >= 5>>
-			Your dress hides your big balls.
-		<</if>>
-	<<elseif $PC.career == "escort">>
-		<<if $PC.balls >= 30>>
-			You've pretty much given up on pants because of your monstrous balls, but you've replaced them with a slutty skirt that stretches around their veiny contours. People can't help staring to see if they'll get a glimpse of your massive sack peaking out from under the skirt.
-		<<elseif $PC.balls >= 14>>
-			You've swapped up to a larger pair of slutty pants, specially designed with extra sack room. They draw the eye right to your bulge<<if $PC.preg >= 28>>; you can do without people thinking you are giving birth into your pants, though<</if>>.
-		<<elseif $PC.balls >= 9>>
-			Your slutty pants are really tight around the groin, but they hold your huge balls in place quite nicely.
-		<<elseif $PC.balls >= 5>>
-			Your slutty pants bulge more than ever with your big balls.
-		<</if>>
-	<<else>>
-		<<if $PC.balls >= 30>>
-			You've pretty much given up on suit pants because of your monstrous balls, but you've replaced them with a custom kilt tailored to match the rest of your business attire. People would wonder why you're wearing such old fashioned clothes if your ridiculous bulge didn't make it obvious.
-		<<elseif $PC.balls >= 14>>
-			You've had to get your suit pants retailored again to fit your enormous balls. It is obvious that the bulge in your pants is not your penis<<if $PC.preg >= 28>>; you've had several people rush to your aid under the mistaken belief that <<if $PC.pregType > 1>>one of your children<<else>>your child<</if>> was crowning into your pants<</if>>.
-		<<elseif $PC.balls >= 9>>
-			You've had to get your suit pants retailored to fit your huge balls. It gives you a striking figure, though.
-		<<elseif $PC.balls >= 5>>
-			Your suit pants bulge more than ever with your big balls.
-		<</if>>
-	<</if>>
-<<else>>
-	<<if $PC.balls >= 30>>
-		<<if $ballsAccessibility == 1>>
-			Thankfully your accessibility remodeling included a custom chair. <<if $PC.ballsImplant > 0>>When combined with the protective gel surrounding<<else>>Despite the cumbrous bulk of<</if>> your massive sperm factories, it's rather comfortable. It even has an attachment to catch your never-ending stream of precum, keeping the mess to a minimum.
-		<<else>>
-			Your monstrous balls make it impossible for you to sit normally in a standard chair, forcing you sit on the edge and let them dangle. You have to sit while naked below the waist unless you want your clothes soaked with spermy precum.
-		<</if>>
-	<<elseif $PC.ballsImplant > 1 && $PC.balls >= 14>>
-		<<if $ballsAccessibility == 1>>
-			Thanks to your accessibility remodeling, your enormous gel-filled scrotum is able to rest comfortably in your custom chair.
-		<<else>>
-			No matter how you sit, your enormous gel-filled scrotum is never quite comfortable. Fortunately the cosmetic gel protects you from any major discomfort.
-		<</if>>
-	<<elseif $PC.balls >= 14>>
-		<<if $ballsAccessibility == 1>>
-			Thanks to your accessibility remodeling, your enormous sperm factories are able to rest comfortably in your custom chair. Your chair also catches your never-ending precum, helping to prevent a mess.
-		<<else>>
-			You have to sit very carefully in your desk chair, giving your enormous sperm factories plenty of room. As they rest on the chair they deform uncomfortably under their own weight, causing even more of a mess from your ever-drooling cock.
-		<</if>>
-	<<elseif $PC.balls >= 9>>
-		You shift in your seat and spread your legs to give your huge balls room.
-	<<elseif $PC.balls >= 5>>
-		You shift in your seat to make room for your big balls.
-	<</if>>
-<</if>>
-
-<</widget>>
-
-<<widget "PlayerButt">>
-
-<<set _passage = passage()>>
-
-<<if _passage == "Manage Personal Affairs">>
-	<<if $PC.butt >= 5>>
-		<<if $PC.buttImplant >= 1>>
-			an @@.orange;enormous, round, hard butt;@@ it is very obviously a pair of huge implants. It barely moves at all when you walk or fuck, is difficult to cram into your clothing, and you keep getting stuck in chairs, but you wouldn't have it any other way.
-		<<else>>
-			an @@.orange;enormous, jiggly butt.@@ It is always wobbling for some reason or another. It really fills out your clothing and practically consumes anything you sit on.
-		<</if>>
-	<<elseif $PC.butt >= 4>>
-		<<if $PC.buttImplant >= 1>>
-			a @@.orange;huge, round, firm butt;@@ it's easily identifiable as fake.
-		<<else>>
-			a @@.orange;huge, soft butt.@@ It jiggles a lot as you move.
-		<</if>>
-	<<elseif $PC.butt >= 3>>
-		<<if $PC.buttImplant >= 1>>
-			a @@.orange;big firm butt;@@ anyone that feels it can tell it's fake, but at a glance you can't tell otherwise.
-		<<else>>
-			a @@.orange;big butt.@@ It jiggles a little as you walk.
-		<</if>>
-	<<else>>
-		a @@.orange;sexy, but normal butt.@@
-	<</if>>
-	<<if $PC.markings == "freckles">>
-		Your lower back is covered in a light speckling of freckles alongside your upper butt.
-	<<elseif $PC.markings == "heavily freckled">>
-		Your freckles are particularly dense across your lower back and upper butt.
-	<</if>>
-<<elseif _passage == "Economics">>
-	<<if $PC.career == "servant">>
-		<<if $PC.butt >= 5 && $PC.balls >= 30>>
-			<<if $PC.buttImplant >= 1>>
-				When you had your dresses tailored you also had to have them make room for your enormous rear. No dress can hide how big and fake it is though.
-			<<else>>
-				When you had your dresses tailored you also had to have them make room for your enormous rear.
-			<</if>>
-		<<elseif $PC.butt >= 5>>
-			<<if $PC.buttImplant >= 1>>
-				You had to get your dress let out to contain your enormous rear. It can't hide how big and fake it is though.
-			<<else>>
-				You had to get your dress let out to contain your enormous rear.
-			<</if>>
-		<<elseif $PC.butt >= 4>>
-			Your dress is starting to feel tight around your huge rear.
-		<<elseif $PC.butt >= 3>>
-			Your dress is filled out by your big butt.
-		<</if>>
-	<<elseif $PC.career == "escort">>
-		<<if $PC.dick != 0>>
-			<<if $PC.balls >= 30>>
-				<<if $PC.butt >= 5>>
-					<<if $PC.buttImplant >= 1>>
-						Your slutty skirt is also forced to stretch around your enormous rear, making the implants pretty obvious. With both your front and back struggling to get free of your stretchy skirt, it isn't unusual for one or the other to peek out.
-					<<else>>
-						Your slutty skirt is also forced to stretch around your enormous rear, and bending over is basically asking for your skirt to ride up all the way to your hips. With both your front and back struggling to get free of your stretchy skirt, it isn't unusual for one or the other to peek out.
-					<</if>>
-				<<elseif $PC.butt >= 4>>
-					Your huge rear nearly spills out from the bottom of your slutty skirt.
-				<<elseif $PC.butt >= 3>>
-					Your slutty skirt is strained by your big butt.
-				<</if>>
-			<<else>>
-				<<if $PC.butt >= 5>>
-					<<if $PC.buttImplant >= 1>>
-						You had to get your slutty pants let out to contain your enormous rear. It still feels really tight, however, thanks to the implants.
-					<<else>>
-						You had to get your slutty pants let out to contain your enormous rear. It still overflows scandalously, however.
-					<</if>>
-				<<elseif $PC.butt >= 4>>
-					Your huge rear spills out from the top of your slutty pants.
-				<<elseif $PC.butt >= 3>>
-					Your slutty pants are strained by your big butt.
-				<</if>>
-			<</if>>
-		<<else>>
-			<<if $PC.butt >= 5>>
-				<<if $PC.buttImplant >= 1>>
-					Your ass has completely devoured your slutty shorts. You look like you are wearing a thong, leaving your overly round<<if $PC.markings == "freckles">>, freckled<<elseif $PC.markings == "heavily freckled">>, heavily freckled<</if>> cheeks to hang free.<<if $PC.markings == "freckles">> Your lower back is covered in a light speckling of freckles alongside your valley of ass cleavage.<<elseif $PC.markings == "heavily freckled">> Your freckles are particularly dense across your lower back and valley of ass cleavage.<</if>>
-				<<else>>
-					Your ass has completely devoured your slutty shorts. You look like you are wearing a thong leaving your<<if $PC.markings == "freckles">> freckled<<elseif $PC.markings == "heavily freckled">> heavily freckled<</if>> cheeks to jiggle freely.<<if $PC.markings == "freckles">> Your lower back is covered in a light speckling of freckles alongside your valley of ass cleavage.<<elseif $PC.markings == "heavily freckled">> Your freckles are particularly dense across your lower back and valley of ass cleavage.<</if>>
-				<</if>>
-			<<elseif $PC.butt >= 4>>
-				Your slutty shorts are filled to bursting by your rear. Roughly half of your ass is actually in your bottoms, the rest is bulging out scandalously.<<if $PC.markings == "freckles">> Your lower back is covered in a light speckling of freckles alongside your ravine of ass cleavage.<<elseif $PC.markings == "heavily freckled">> Your freckles are particularly dense across your lower back and ravine of ass cleavage.<</if>>
-			<<elseif $PC.butt >= 3>>
-				Your slutty shorts are strained by your big butt. It spills out every gap it can.<<if $PC.markings == "freckles">> Your lower back is covered in a light speckling of freckles alongside your ass cleavage.<<elseif $PC.markings == "heavily freckled">> Your freckles are particularly dense across your lower back and ass cleavage.<</if>>
-			<<elseif $PC.markings == "freckles">>
-				Your exposed lower back is covered in a light speckling of freckles.
-			<<elseif $PC.markings == "heavily freckled">>
-				Your freckles are particularly dense across your exposed lower back.
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $PC.dick != 0>>
-			<<if $PC.balls >= 30>>
-				<<if $PC.butt >= 5>>
-					<<if $PC.buttImplant >= 1>>
-						Your custom kilt is also forced to stretch around your enormous rear, making the implants pretty obvious. With both your front and back struggling to get free of the restrictive cloth, it isn't unusual for one or the other to peek out.
-					<<else>>
-						Your custom kilt is also forced to stretch around your enormous rear, and bending over is basically asking for it to ride up all the way to your hips. With both your front and back struggling to get free of the restrictive cloth, it isn't unusual for one or the other to peek out.
-					<</if>>
-				<<elseif $PC.butt >= 4>>
-					Your huge rear nearly spills out from the bottom of your custom kilt.
-				<<elseif $PC.butt >= 3>>
-					Your custom kilt is strained by your big butt.
-				<</if>>
-			<<else>>
-				<<if $PC.butt >= 5>>
-					<<if $PC.buttImplant >= 1>>
-						You had to get your suit pants let out to contain your enormous rear. It does nothing to hide how big and round your asscheeks are, though.
-					<<else>>
-						You had to get your suit pants let out to contain your enormous rear. It can clearly be seen jiggling within them.
-					<</if>>
-				<<elseif $PC.butt >= 4>>
-					Your huge rear threatens to tear apart your suit pants. You'll need to get them let out soon.
-				<<elseif $PC.butt >= 3>>
-					Your suit pants are strained by your big butt.
-				<</if>>
-			<</if>>
-		<<else>>
-			<<if $PC.butt >= 5>>
-				<<if $PC.buttImplant >= 1>>
-					Your skirt covers your enormous butt but does nothing to hide its size and shape. You're beginning to show too much leg again; it might be time for a longer skirt.
-				<<else>>
-					Your skirt covers your enormous butt but does nothing to hide its size and fluidity. Your rear is soft enough to fill out your skirt but not lift it up too far; it also translates every motion to the fabric, however.
-				<</if>>
-			<<elseif $PC.butt >= 4>>
-				Your skirt covers your huge butt but does nothing to hide its size; in fact, you've had to start wearing a longer one to make up for the extra surface area.
-			<<elseif $PC.butt >= 3>>
-				Your skirt covers your big butt but does nothing to hide its size.
-			<</if>>
-		<</if>>
-	<</if>>
-<<else>>
-	<<if $PC.butt >= 5>>
-		<<if $PC.balls >= 14 && $ballsAccessibility != 1>>
-			Your enormous<<if $PC.markings == "freckles">>, freckled<<elseif $PC.markings == "heavily freckled">>, densely freckled<</if>> butt would make your chair extremely comfortable if it wasn't for your enormous balls. You have to be extremely careful to prevent your enormous cheeks from pinching your nuts.
-		<<else>>
-			Your enormous<<if $PC.markings == "freckles">>, freckled<<elseif $PC.markings == "heavily freckled">>, densely freckled<</if>> butt makes for an extremely comfortable seat. You hope the chair doesn't follow you when you stand up this time.
-		<</if>>
-	<<elseif $PC.butt >= 4>>
-		<<if $PC.balls >= 14 && $ballsAccessibility != 1>>
-			Your huge<<if $PC.markings == "freckles">>, freckled<<elseif $PC.markings == "heavily freckled">>, densely freckled<</if>> butt would make for a very comfortable seat if it wasn't for your enormous balls. You have to be careful to prevent your huge cheeks from pinching your nuts.
-		<<else>>
-			Your huge<<if $PC.markings == "freckles">>, freckled<<elseif $PC.markings == "heavily freckled">>, densely freckled<</if>> butt makes for a very comfortable seat.
-		<</if>>
-	<<elseif $PC.butt >= 3>>
-		<<if $PC.balls >= 14 && $ballsAccessibility != 1>>
-			Your big<<if $PC.markings == "freckles">>, freckled<<elseif $PC.markings == "heavily freckled">>, densely freckled<</if>> butt would make for a comfortable seat if your enormous balls weren't getting in the way.
-		<<else>>
-			Your big<<if $PC.markings == "freckles">>, freckled<<elseif $PC.markings == "heavily freckled">>, densely freckled<</if>> butt makes for a comfortable seat.
-		<</if>>
-	<</if>>
-<</if>>
-
-<</widget>>
diff --git a/src/uncategorized/longSlaveDescription.tw b/src/uncategorized/longSlaveDescription.tw
index f2e10b980c3ce4945d822ba827e8d18429984ff7..0b87193a62b75a29e4be6c9ffd041ceb1022a1b5 100644
--- a/src/uncategorized/longSlaveDescription.tw
+++ b/src/uncategorized/longSlaveDescription.tw
@@ -194,7 +194,7 @@ is
 			<</if>>
 
 			<<if canTalk($activeSlave, false)>>
-				<<accentDescription>>
+				<<= App.Desc.accent($activeSlave)>>
 			<</if>>
 
 		<</if>>
@@ -1658,7 +1658,7 @@ and
 	<</if>>
 <</if>>
 
-<<heightImplantDescription>>
+<<= App.Desc.heightImplant($activeSlave)>>
 
 $He is
 <<if $activeSlave.muscles > 95>>
@@ -1745,7 +1745,7 @@ $He is
 
 <<= App.Desc.piercing($activeSlave, "corset")>>
 
-<<pregnancyDescription>>
+<<= App.Desc.pregnancy($activeSlave)>>
 
 <<if hasAnyNaturalLegs($activeSlave)>>
 	<<if $activeSlave.weight > 190>>
@@ -1776,12 +1776,12 @@ $He is
 <<= App.Desc.mods($activeSlave, "calf")>>
 <<= App.Desc.mods($activeSlave, "ankle")>>
 <<= App.Desc.mods($activeSlave, "foot")>>
-<<heelDescription>>
-<<skinDescription>>
+<<= App.Desc.heels($activeSlave, "foot")>>
+<<= App.Desc.skin($activeSlave)>>
 
 <<if $saleDescription == 1>>
 
-	<<accentDescription>>
+	<<= App.Desc.accent($activeSlave)>>
 
 <</if>>
 
@@ -1836,7 +1836,7 @@ $He is
 
 <<if ($showClothing == 1) && ($saleDescription == 0)>>
 
-	<<earDescription>>
+	<<= App.Desc.ears($activeSlave)>>
 
 	<<upperFaceDescription>>
 
@@ -1908,9 +1908,9 @@ $He is
 	<</if>>
 <</if>>
 
-<<hornDescription>>
-<<faceDescription>>
-<<mouthDescription>>
+<<= App.Desc.horns($activeSlave)>>
+<<= App.Desc.face($activeSlave)>>
+<<= App.Desc.mouth($activeSlave)>>
 
 <<if ($showClothing == 1) && ($saleDescription == 0)>>
 
@@ -1979,20 +1979,20 @@ $He is
 
 /* Calling all boob widgets */
 <<print App.Desc.boobs($activeSlave)>>
-<<boobsShapeDescription>>
+<<= App.Desc.boobsShape($activeSlave)>>
 <<print App.Desc.boobsExtra($activeSlave)>>
 <<= App.Desc.mods($activeSlave, "chest")>>
 <<= App.Desc.mods($activeSlave, "breast")>>
-<<shouldersDescription>>
+<<= App.Desc.shoulders($activeSlave)>>
 <<print App.Desc.nipples($activeSlave)>>
 <<= App.Desc.mods($activeSlave, "nipple")>>
 <<print App.Desc.areola($activeSlave)>>
 <<= App.Desc.mods($activeSlave, "areolae")>>
 
 <<if $activeSlave.inflation > 0>> /* to be obsoleted with phase 4 */
-	<<BellyInflationDescription>>
+	<<= App.Desc.bellyInflation($activeSlave)>>
 <<elseif $activeSlave.bellyImplant >= 2000>>
-	<<BellyImplantDescription>>
+	<<= App.Desc.bellyImplant($activeSlave)>>
 <<else>>
 	<<= App.Desc.belly($activeSlave)>>
 <</if>>
@@ -2003,8 +2003,8 @@ $He is
 <br>&nbsp;&nbsp;&nbsp;&nbsp;
 
 <<= App.Desc.crotch($activeSlave)>>
-<<dickDescription>>
-<<vaginaDescription>>
+<<= App.Desc.dick($activeSlave)>>
+<<= App.Desc.vagina($activeSlave)>>
 
 <<= App.Desc.anus($activeSlave)>>
 
diff --git a/src/uncategorized/officeDescription.tw b/src/uncategorized/officeDescription.tw
index 9285a8b0b52caeeda008199566f6a0082cf6286c..1c2bf5c9aaccb9bbbe6626d6873070a5640e2168 100644
--- a/src/uncategorized/officeDescription.tw
+++ b/src/uncategorized/officeDescription.tw
@@ -194,7 +194,7 @@
 A small mirror resides on your desk, facing you.
 A $PC.visualAge year old, $PC.faceShape<<if $PC.markings == "freckles">>, freckled<<elseif $PC.markings == "heavily freckled">>, densely freckled<</if>> face stares back at you.
 <<if ($playerAging != 0) && $PC.birthWeek == 51>>You'll be turning <<print $PC.actualAge+1>> next week.<</if>>
-<<PlayerBoobs>>
-<<PlayerBelly>>
-<<PlayerCrotch>>
-<<PlayerButt>>
+<<= App.Desc.Player.boobs()>>
+<<= App.Desc.Player.belly()>>
+<<= App.Desc.Player.crotch()>>
+<<= App.Desc.Player.butt()>>
diff --git a/src/utility/descriptionWidgets.tw b/src/utility/descriptionWidgets.tw
index db78ca36720034602325ca837c67c58229f0becd..eca711ca32a28d35a334f4e4753782d4183711bf 100644
--- a/src/utility/descriptionWidgets.tw
+++ b/src/utility/descriptionWidgets.tw
@@ -45,11 +45,6 @@
 
 <</widget>>
 
-
-<<widget "InscripDesc">>
-	<<print App.Desc.inscrip($activeSlave)>>
-<</widget>>
-
 <<widget "geneticQuirkAssessment">>
 
 <<if $geneticMappingUpgrade >= 1>>
diff --git a/src/utility/descriptionWidgetsFlesh.tw b/src/utility/descriptionWidgetsFlesh.tw
deleted file mode 100644
index a2264b312620d96e287b24b5a89d890ed6dd2814..0000000000000000000000000000000000000000
--- a/src/utility/descriptionWidgetsFlesh.tw
+++ /dev/null
@@ -1,5965 +0,0 @@
-:: flesh description widgets [widget nobr]
-
-<<widget "dickDescription">>
-
-<<if $activeSlave.dick > 0>>
-
-	<<switch $activeSlave.dick>>
-	<<case 10>>
-		<<if $showDickCMs == 1>>
-			$His awe-inspiring<<if $seeCircumcision == 1>>, <<if $activeSlave.foreskin > 0>>uncut<<else>>circumcised<</if>><</if>>
-			penis is around <<= dickToEitherUnit($activeSlave.dick)>> long,
-		<<else>>
-			$He has an awe-inspiring<<if $seeCircumcision == 1>>, <<if $activeSlave.foreskin > 0>>uncut<<else>>circumcised<</if>><</if>>
-			penis,
-		<</if>> a true masterpiece of modern growth hormone treatment,
-	<<case 9>>
-		<<if $showDickCMs == 1>>
-			$His monstrous<<if $seeCircumcision == 1>>, <<if $activeSlave.foreskin > 0>>uncut<<else>>circumcised<</if>><</if>>
-			penis is around <<= dickToEitherUnit($activeSlave.dick)>> long,
-		<<else>>
-			$He has a monstrous<<if $seeCircumcision == 1>>, <<if $activeSlave.foreskin > 0>>uncut<<else>>circumcised<</if>><</if>>
-			penis,
-		<</if>> a work of modern pharmacological art,
-	<<case 8>>
-		<<if $showDickCMs == 1>>
-			$His truly imposing<<if $seeCircumcision == 1>>, <<if $activeSlave.foreskin > 0>>uncut<<else>>circumcised<</if>><</if>>
-			penis is around <<= dickToEitherUnit($activeSlave.dick)>> long when as hard as it can get,
-		<<else>>
-			$He has a truly imposing<<if $seeCircumcision == 1>>, <<if $activeSlave.foreskin > 0>>uncut<<else>>circumcised<</if>><</if>>
-			penis,
-		<</if>> an obvious product of modern growth hormones,
-	<<case 7>>
-		<<if $showDickCMs == 1>>
-			$His massive<<if $seeCircumcision == 1>>, <<if $activeSlave.foreskin > 0>>uncut<<else>>circumcised<</if>><</if>>
-			penis is around <<= dickToEitherUnit($activeSlave.dick)>> long when as hard as it can get,
-		<<else>>
-			$He has a massive<<if $seeCircumcision == 1>>, <<if $activeSlave.foreskin > 0>>uncut<<else>>circumcised<</if>><</if>>
-			penis,
-		<</if>> larger than a dick can grow naturally,
-	<<case 6>>
-		<<if $showDickCMs == 1>>$His enormous<<if $seeCircumcision == 1>>, <<if $activeSlave.foreskin > 0>>uncut<<else>>circumcised<</if>><</if>> penis <<if canAchieveErection($activeSlave)>>is around <<= dickToEitherUnit($activeSlave.dick)>> long when<<else>>would be around <<= dickToEitherUnit($activeSlave.dick)>> long if it could become<</if>> erect<<else>>$He has an enormous<<if $seeCircumcision == 1>>, <<if $activeSlave.foreskin > 0>>uncut<<else>>circumcised<</if>><</if>> penis<</if>>, a rival to the world's largest natural dicks,
-	<<case 5>>
-		<<if $showDickCMs == 1>>$His huge<<if $seeCircumcision == 1>>, <<if $activeSlave.foreskin > 0>>uncut<<else>>circumcised<</if>><</if>> penis <<if canAchieveErection($activeSlave)>>is more than <<= dickToEitherUnit($activeSlave.dick)>> long when<<else>>would be around <<= dickToEitherUnit($activeSlave.dick)>> long if it could become<</if>> erect<<else>>$He has a huge<<if $seeCircumcision == 1>>, <<if $activeSlave.foreskin > 0>>uncut<<else>>circumcised<</if>><</if>> penis<</if>>, large enough to be sexually inconvenient,
-	<<case 4>>
-		<<if $showDickCMs == 1>>$His large<<if $seeCircumcision == 1>>, <<if $activeSlave.foreskin > 0>>uncut<<else>>circumcised<</if>><</if>> penis <<if canAchieveErection($activeSlave)>>is around <<= dickToEitherUnit($activeSlave.dick)>> long when<<else>>would be around <<= dickToEitherUnit($activeSlave.dick)>> long if it could become<</if>> erect<<else>>$He has a large<<if $seeCircumcision == 1>>, <<if $activeSlave.foreskin > 0>>uncut<<else>>circumcised<</if>><</if>> penis<</if>>, big enough to be a source of pride on a male,
-	<<case 3>>
-		<<if $showDickCMs == 1>>$His average-sized<<if $seeCircumcision == 1>>, <<if $activeSlave.foreskin > 0>>uncut<<else>>circumcised<</if>><</if>> penis <<if canAchieveErection($activeSlave)>>is around <<= dickToEitherUnit($activeSlave.dick)>> long when<<else>>would be around <<= dickToEitherUnit($activeSlave.dick)>> long if it could become<</if>> erect<<else>>$He has an average-sized<<if $seeCircumcision == 1>>, <<if $activeSlave.foreskin > 0>>uncut<<else>>circumcised<</if>><</if>> penis<</if>>,
-	<<case 2>>
-		<<if $showDickCMs == 1>>$His small<<if $seeCircumcision == 1>>, <<if $activeSlave.foreskin > 0>>uncut<<else>>circumcised<</if>><</if>> penis <<if canAchieveErection($activeSlave)>>is around <<= dickToEitherUnit($activeSlave.dick)>> long when<<else>>would be around <<= dickToEitherUnit($activeSlave.dick)>> long if it could become<</if>> erect<<else>>$He has a small<<if $seeCircumcision == 1>>, <<if $activeSlave.foreskin > 0>>uncut<<else>>circumcised<</if>><</if>> penis<</if>>, little enough to be a source of embarrassment on a male,
-	<<case 1>>
-		<<if $showDickCMs == 1>>$His<<if $seeCircumcision == 1>> <<if $activeSlave.foreskin > 0>>uncut<<else>>circumcised<</if>><</if>> micropenis <<if canAchieveErection($activeSlave)>>is less than <<= dickToEitherUnit($activeSlave.dick)>> long when<<else>>would be less than <<= dickToEitherUnit($activeSlave.dick)>> long if it could become<</if>> erect<<else>>$He has <<if $seeCircumcision == 1>><<if $activeSlave.foreskin > 0>>an uncut<<else>>a circumcised<</if>><<else>>a<</if>> micropenis<</if>>,
-	<<default>>
-		<<if $showDickCMs == 1>>
-			$His mind-shattering<<if $seeCircumcision == 1>>, <<if $activeSlave.foreskin > 0>>uncut<<else>>circumcised<</if>><</if>>
-			penis is around <<= dickToEitherUnit($activeSlave.dick)>> long,
-		<<else>>
-			$He has a mind-shattering<<if $seeCircumcision == 1>>, <<if $activeSlave.foreskin > 0>>uncut<<else>>circumcised<</if>><</if>>
-			penis,
-		<</if>> a true masterpiece of modern growth hormone treatment,
-	<</switch>>
-
-	<<if $activeSlave.scrotum == 0>>
-		<<if $activeSlave.vagina > -1>>
-			and is right above $his vagina.
-		<<else>>
-			and rests above nothing but smooth, sensitive skin until
-			<<switch $activeSlave.anus>>
-			<<case 0>>
-				the tiny crinkle of $his virgin asshole.
-			<<case 1>>
-				$his tight little rosebud.
-			<<case 2>>
-				the bottom of the vertical slit formed by $his rear pussy.
-			<<case 3>>
-				the bottom of the soft slit formed by $his lewd rear pussy.
-			<<default>>
-				the edge of $his open anal gape.
-			<</switch>>
-		<</if>>
-	<<else>>
-		<<switch $activeSlave.balls>>
-		<<case 10>>
-			and $he has an inhuman pair of testicles<<if $showDickCMs == 1>>, nearly <<= ballsToEitherUnit($activeSlave.balls)>> long<</if>>.
-		<<case 9>>
-			and $he has a titanic pair of testicles<<if $showDickCMs == 1>>, about <<= ballsToEitherUnit($activeSlave.balls)>> long<</if>>.
-		<<case 8>>
-			and $he has a gigantic pair of testicles<<if $showDickCMs == 1>>, about <<= ballsToEitherUnit($activeSlave.balls)>> long<</if>>.
-		<<case 7>>
-			and $he has a monstrous pair of testicles<<if $showDickCMs == 1>>, about <<= ballsToEitherUnit($activeSlave.balls)>> long<</if>>.
-		<<case 6>>
-			and $he has an enormous pair of testicles<<if $showDickCMs == 1>>, about <<= ballsToEitherUnit($activeSlave.balls)>> long<</if>>.
-		<<case 5>>
-			and $he has a huge pair of testicles<<if $showDickCMs == 1>>, about <<= ballsToEitherUnit($activeSlave.balls)>> long<</if>>.
-		<<case 4>>
-			and $he has a big pair of testicles<<if $showDickCMs == 1>>, about <<= ballsToEitherUnit($activeSlave.balls)>> long<</if>>.
-		<<case 3>>
-			and $he has an average pair of testicles<<if $showDickCMs == 1>>, about <<= ballsToEitherUnit($activeSlave.balls)>> long<</if>>.
-		<<case 2>>
-			and $he has a small pair of testicles<<if $showDickCMs == 1>>, about <<= ballsToEitherUnit($activeSlave.balls)>> long<</if>>.
-		<<case 1>>
-			and $his testicles are so small they have retreated up into $his abdomen.
-		<<case 0>>
-			<<if ($activeSlave.dick == 2)>>
-				and $he lacks testicles.
-			<<elseif ($activeSlave.dick == 1)>>
-				and $he lacks testicles: $his vestigial dick is functionally a large, soft clit.
-			<<else>>
-				but $he lacks testicles.
-			<</if>>
-		<<default>>
-			and $he has a hypertrophied, clearly unnatural pair of testicles<<if $showDickCMs == 1>>, about <<= ballsToEitherUnit($activeSlave.balls)>> long<</if>>, a true masterpiece of modern growth hormone treatment.
-		<</switch>>
-		<<if $activeSlave.fuckdoll == 0 && $activeSlave.balls > 0 && $activeSlave.scrotum > 0>>
-			<<set _scrotalFullness = $activeSlave.scrotum - $activeSlave.balls>>
-			<<if $activeSlave.balls > 90>>
-				<<if _scrotalFullness < -1>>
-					$His poor scrotum is agonizingly overfilled and looks ready to burst. $He must be in constant pain.
-				<<elseif _scrotalFullness == -1>>
-					$His poor scrotum is so overfilled, every little vein is visible. $He must be in constant discomfort.
-				<<elseif _scrotalFullness == 0>>
-					$His comfortable scrotum allows them to hang massively <<if hasBothLegs($activeSlave)>>between $his legs<<else>>from $his<<if isAmputee($activeSlave)>> limbless<</if>> torso<</if>>.
-				<<else>>
-					Their weight and size has stretched $his scrotum downward, so that they <<if hasAnyLegs($activeSlave)>>drag along the floor<<else>>hang far from $his<<if isAmputee($activeSlave)>> limbless<</if>> torso<</if>>.
-				<</if>>
-			<<elseif $activeSlave.balls >= 20>>
-				<<if _scrotalFullness < -1>>
-					$His poor scrotum is agonizingly overfilled and taut. $He must be in constant pain.
-				<<elseif _scrotalFullness == -1>>
-					$His poor scrotum is so overfilled, every little vein is visible. $He must be in constant discomfort.
-				<<elseif _scrotalFullness == 0>>
-					$His comfortable scrotum allows them to hang massively <<if hasBothLegs($activeSlave)>>between $his legs<<else>>from $his<<if isAmputee($activeSlave)>> limbless<</if>> torso<</if>>.
-				<<else>>
-					Their weight and size has stretched $his scrotum downward, so that they dangle <<if hasAnyLegs($activeSlave)>>to $his knee<<if hasBothLegs($activeSlave)>>s<</if>><<else>>quite the distance from $his<<if isAmputee($activeSlave)>> limbless<</if>> torso<</if>>.
-				<</if>>
-			<<elseif $activeSlave.balls > 5>>
-				<<if _scrotalFullness < -1>>
-					$His poor scrotum is so overfilled, every little vein is visible. $He must be in agony.
-				<<elseif _scrotalFullness == -1>>
-					They're held against $his base by a tight scrotum that permits them little movement.
-				<<elseif _scrotalFullness == 0>>
-					$His comfortable scrotum allows them to hang massively <<if hasBothLegs($activeSlave)>>between $his legs<<else>>from $his<<if isAmputee($activeSlave)>> limbless<</if>> torso<</if>>.
-				<<else>>
-					Their weight has stretched $his scrotum downward, so that they dangle <<if hasAnyLegs($activeSlave)>>halfway to $his knee<<if hasBothLegs($activeSlave)>>s<</if>><<else>>some distance from $his<<if isAmputee($activeSlave)>> limbless<</if>> torso<</if>>.
-				<</if>>
-			<<elseif $activeSlave.balls > 3>>
-				<<if _scrotalFullness < -1>>
-					They're too big for $his tiny scrotum, which is stretched tight over each ball.
-				<<elseif _scrotalFullness == -1>>
-					They're held against $his base by a tight scrotum that permits them little movement.
-				<<elseif _scrotalFullness == 0>>
-					$His soft scrotum allows them to rest comfortably <<if hasBothLegs($activeSlave)>>between $his legs<<else>>beneath $his<<if isAmputee($activeSlave)>> limbless<</if>> torso<</if>>.
-				<<else>>
-					$He has a loose, dangling scrotum that allows them to swing <<if hasBothLegs($activeSlave)>>between $his legs<<else>>from $his<<if isAmputee($activeSlave)>> limbless<</if>> torso<</if>>.
-				<</if>>
-			<<elseif $activeSlave.balls > 1>>
-				<<if _scrotalFullness < 0>>
-					They're held tightly by a very minimal scrotum that turns them into a soft little bump.
-				<<elseif _scrotalFullness == 0>>
-					$His comfortable little scrotum allows them to rest softly.
-				<<else>>
-					They're almost lost in $his big soft scrotum, wrinkled for lack of anything to fill it properly.
-				<</if>>
-			<<else>>
-				<<if _scrotalFullness == 0>>
-					$He has a soft little trace of scrotum.
-				<<else>>
-					They've left $his scrotum soft and empty.
-				<</if>>
-			<</if>>
-		<</if>>
-	<</if>>
-
-	<<if $activeSlave.fuckdoll == 0>>
-		<<if $activeSlave.mpreg == 1 && canAchieveErection($activeSlave) && $activeSlave.bellyPreg >= 10000 && $activeSlave.prostate > 0>>
-			$His huge pregnancy puts pressure on $his prostate at all times, leaving $him fully erect and trailing cum.
-		<<elseif ($activeSlave.assignment == "work in the dairy") && ($dairyStimulatorsSetting > 1) && canAchieveErection($activeSlave)>>
-			<<if ($activeSlave.dick > 8)>>
-				$He's soft despite the drugs ejaculated by the dildo up $his asshole, since $his cock is too huge to ever become hard. The soft monstrosity simply exists to gush cum into a catch basin.
-			<<elseif ($activeSlave.dick > 6)>>
-				$He's only half hard despite the drugs ejaculated by the dildo up $his asshole, and $he must feel very faint, since even that requires much of $his blood volume.
-			<<else>>
-				The drugs ejaculated by the dildo up $his asshole keep $his almost permanently hard, only letting $him go soft right after ejaculation.
-			<</if>>
-			As you watch, the machine detects that $his balls are ready for emptying. It reams $his ass until semen whitens the transparent tubing coming off the head of the receptacle covering $his dick.
-		<<elseif ($activeSlave.chastityPenis == 1)>>
-			<<= App.Desc.dickAccessory($activeSlave)>>
-		<<elseif $activeSlave.drugs == "priapism agents">>
-			<<if ($activeSlave.dick > 8)>>
-				$He's painfully hard, despite the size of $his cock, and on the brink of losing consciousness, since a dangerous amount of $his blood volume is required to even get it to this point.
-			<<elseif ($activeSlave.dick > 6)>>
-				$He's painfully erect, or as erect that a cock of that size could be, and $he must feel very faint, since even that requires much of $his blood volume.
-			<<else>>
-				$He's painfully erect.
-			<</if>>
-		<<elseif ($activeSlave.dick > 8)>>
-			$He's too huge for $his cardiovascular system to create even the beginnings of an erection. $His cock is a soft, sensitive monolith<<if ($activeSlave.dick*6) > $activeSlave.height>> bigger than $his body<<elseif ($activeSlave.dick*6) > ($activeSlave.height/2)>> the size of one of $his legs<<else>> the size of one of $his arms<</if>>,
-			<<if !hasAnyLegs($activeSlave) && (($activeSlave.dick*6) > ($activeSlave.height/2))>>
-				or would be if $he had any of those.
-			<<elseif !hasAnyArms($activeSlave) && (($activeSlave.dick*6) <= ($activeSlave.height/2))>>
-				or would be if $he had any of those.
-			<<else>>
-				hanging with its head
-				<<if hasAnyLegs($activeSlave)>>
-					<<if ($activeSlave.dick > 9)>>
-						below
-					<<elseif hasBothLegs($activeSlave)>>
-						between
-					<<else>>
-						next to
-					<</if>>
-					$his knee<<if hasBothLegs($activeSlave)>>s<</if>>.
-				<<else>>
-					far below $his <<if isAmputee($activeSlave)>>limb<<else>>leg<</if>>less torso.
-				<</if>>
-			<</if>>
-			<<if ($activeSlave.prostate > 2)>>
-				The area above $his crotch has a slight swell to it from $his prostate implant. A constant dribble of precum drips from the tip of $his cock; $his artificially hyperactive prostate keeps $him that way.
-			<<elseif ($activeSlave.prostate > 1)>>
-				$He's got a string of precum dangling from the tip of $his cock; $his artificially hyperactive prostate keeps $him that way.
-			<</if>>
-		<<elseif ($saleDescription == 1 && $gingering == "vasodilator")>>
-			$He's painfully erect.
-			<<if ($activeSlave.prostate > 2)>>
-				The area above $his crotch has a slight swell to it from $his prostate implant. A constant dribble of precum drips from the tip of $his cock; $his artificially hyperactive prostate keeps $him that way.
-			<<elseif ($activeSlave.prostate > 1)>>
-				$He's got a string of precum dangling from the tip of $his cock; $his artificially hyperactive prostate keeps $him that way.
-			<</if>>
-		<<elseif ($activeSlave.aphrodisiacs > 1) || ($activeSlave.inflationType == "aphrodisiac" && $activeSlave.inflation >= 2)>>
-			The aphrodisiacs have $his cock painfully hard<<if $activeSlave.drugs == "hormone blockers" || !($activeSlave.balls > 0 ? $activeSlave.hormoneBalance < 100 : $activeSlave.hormoneBalance <= -100) || $activeSlave.ballType == "sterile">>, despite $his usual inability to achieve an erection<</if>>.
-			<<if ($activeSlave.prostate > 2)>>
-				The area above $his crotch has a slight swell to it from $his prostate implant. A constant dribble of precum drips from the tip of $his cock; $his artificially hyperactive prostate keeps $him that way.
-			<<elseif ($activeSlave.prostate > 1)>>
-				$He's got a string of precum dangling from the tip of $his cock; $his artificially hyperactive prostate keeps $him that way.
-			<</if>>
-		<<elseif ($activeSlave.balls > 0) && $activeSlave.ballType == "sterile">>
-			Since $he has been chemically castrated, $his cock is soft.
-			<<if ($activeSlave.energy > 95)>>
-				$He's such a nympho that despite this, $his limp member is tipped by a drop of precum.
-			<</if>>
-		<<elseif ($activeSlave.balls == 0)>>
-			Since $he
-			<<if $activeSlave.genes == "XY">>
-				has been gelded,
-			<<else>>
-				lacks testicles,
-			<</if>>
-			$his cock is soft.
-			<<if ($activeSlave.energy > 95)>>
-				$He's such a nympho that despite this, $his limp member is tipped by a drop of precum.
-			<</if>>
-		<<elseif ($activeSlave.dick > 0) && ($activeSlave.hormoneBalance >= 100)>>
-			Since $his body is flooded with female hormones, $his cock is soft.
-			<<if ($activeSlave.devotion > 75)>>
-				Despite this, $he's so devoted to you that being near you has $his horny. $His limp member is tipped by a drop of precum.
-			<<elseif ($activeSlave.drugs == "testicle enhancement") || ($activeSlave.drugs == "hyper testicle enhancement")>>
-				Unfortunately for the poor slave, $he's also on drugs that cause overproduction of cum. Since $his soft dick makes it difficult for $him to ejaculate properly, $he's almost frantic with discomfort, and $his dickhead is dribbling excessive precum.
-			<</if>>
-		<<elseif ($activeSlave.dick > 6)>>
-			$His cock is flirting with the limit of what the human cardiovascular system can bring erect: the best $he can manage is a half-hardness that's too soft to meaningfully fuck anything. If $he could somehow get fully erect, there are few holes $he could safely penetrate, anyway.
-			<<if ($activeSlave.prostate > 2)>>
-				The area above $his crotch has a slight swell to it from $his prostate implant. A constant dribble of precum drips from the tip of $his cock; $his artificially hyperactive prostate keeps $him that way.
-			<<elseif ($activeSlave.prostate > 1)>>
-				$He's got a string of precum dangling from the tip of $his cock; $his artificially hyperactive prostate keeps $him that way.
-			<</if>>
-		<<elseif ($activeSlave.dick > 1)>>
-			<<if ($activeSlave.aphrodisiacs > 0) || $activeSlave.inflationType == "aphrodisiac">>
-				The aphrodisiacs have $his cock hard<<if !canAchieveErection($activeSlave)>>, despite $his usual inability to achieve erection<</if>>.
-				<<if ($activeSlave.prostate > 2)>>
-					The area above $his crotch has a slight swell to it from $his prostate implant. A constant dribble of precum drips from the tip of $his cock; $his artificially hyperactive prostate keeps $him that way.
-				<<elseif ($activeSlave.prostate > 1)>>
-					$He's got a string of precum dangling from the tip of $his cock; $his artificially hyperactive prostate keeps $him that way.
-				<</if>>
-			<<elseif ($activeSlave.energy > 95)>>
-				As a nympho, $he's almost constantly hard.
-				<<if ($activeSlave.prostate > 2)>>
-					The area above $his crotch has a slight swell to it from $his prostate implant. A constant dribble of precum drips from the tip of $his cock; $his artificially hyperactive prostate keeps $him that way.
-				<<elseif ($activeSlave.prostate > 1)>>
-					$He's got a string of precum dangling from the tip of $his cock; $his artificially hyperactive prostate keeps $him that way.
-				<</if>>
-			<<elseif ($activeSlave.fetish == "buttslut") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
-				Judging by how hard $he is<<if $activeSlave.prostate > 1>> and the constant flow of precum leaking from the tip of $his dick<<elseif $activeSlave.prostate > 0>> and the little bead of precum forming at the tip of $his dick<</if>>, $he's probably fantasizing about being buttfucked.
-			<<elseif ($activeSlave.fetish == "cumslut") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
-				Judging by how hard $he is<<if $activeSlave.prostate > 1>> and the constant flow of precum leaking from the tip of $his dick<<elseif $activeSlave.prostate > 0>> and the little bead of precum forming at the tip of $his dick<</if>>, $he's probably fantasizing about being facefucked.
-			<<elseif ($activeSlave.fetish == "humiliation") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
-				Judging by how hard $he is<<if $activeSlave.prostate > 1>> and the constant flow of precum leaking from the tip of $his dick<<elseif $activeSlave.prostate > 0>> and the little bead of precum forming at the tip of $his dick<</if>>, $he's probably fantasizing about being humiliated.
-			<<elseif ($activeSlave.fetish == "submissive") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
-				Judging by how hard $he is<<if $activeSlave.prostate > 1>> and the constant flow of precum leaking from the tip of $his dick<<elseif $activeSlave.prostate > 0>> and the little bead of precum forming at the tip of $his dick<</if>>, $he's probably fantasizing about submission.
-			<<elseif ($activeSlave.fetish == "dom") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
-				Judging by how hard $he is<<if $activeSlave.prostate > 1>> and the constant flow of precum leaking from the tip of $his dick<<elseif $activeSlave.prostate > 0>> and the little bead of precum forming at the tip of $his dick<</if>>, $he's probably fantasizing about dominating someone.
-			<<elseif ($activeSlave.fetish == "masochist") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
-				Judging by how hard $he is<<if $activeSlave.prostate > 1>> and the constant flow of precum leaking from the tip of $his dick<<elseif $activeSlave.prostate > 0>> and the little bead of precum forming at the tip of $his dick<</if>>, $he's probably fantasizing about pain.
-			<<elseif ($activeSlave.fetish == "sadist") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
-				Judging by how hard $he is<<if $activeSlave.prostate > 1>> and the constant flow of precum leaking from the tip of $his dick<<elseif $activeSlave.prostate > 0>> and the little bead of precum forming at the tip of $his dick<</if>>, $he's probably fantasizing about hurting someone.
-			<<elseif ($activeSlave.fetish == "pregnancy") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
-				<<if canGetPregnant($activeSlave)>>
-					Judging by how hard $he is<<if $activeSlave.prostate > 1>> and the constant flow of precum leaking from the tip of $his dick<<elseif $activeSlave.prostate > 0>> and the little bead of precum forming at the tip of $his dick<</if>>, $he's probably fantasizing about sporting a huge pregnant belly.
-				<<else>>
-					Judging by how hard $he is<<if $activeSlave.prostate > 1>> and the constant flow of precum leaking from the tip of $his dick<<elseif $activeSlave.prostate > 0>> and the little bead of precum forming at the tip of $his dick<</if>>, $he's probably fantasizing about getting someone pregnant.
-				<</if>>
-			<<elseif ($activeSlave.fetish == "boobs") && ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
-				Judging by how hard $he is<<if $activeSlave.prostate > 1>> and the constant flow of precum leaking from the tip of $his dick<<elseif $activeSlave.prostate > 0>> and the little bead of precum forming at the tip of $his dick<</if>>, $he's probably fantasizing about boobs.
-			<<elseif ($activeSlave.devotion > 50)>>
-				As a devoted sex slave, $he has no trouble keeping $himself hard for $his <<= WrittenMaster($activeSlave)>>.
-				<<if ($activeSlave.prostate > 2)>>
-					The area above $his crotch has a slight swell to it from $his prostate implant. A constant dribble of precum drips from the tip of $his cock; $his artificially hyperactive prostate keeps $him that way.
-				<<elseif ($activeSlave.prostate > 1)>>
-					$He's got a string of precum dangling from the tip of $his cock; $his artificially hyperactive prostate keeps $him that way.
-				<</if>>
-			<<elseif ($activeSlave.devotion > 20)>>
-				As an obedient sex slave, $he does $his best to keep $himself hard for $his <<= WrittenMaster($activeSlave)>>.
-				<<if ($activeSlave.prostate > 2)>>
-					The area above $his crotch has a slight swell to it from $his prostate implant. A constant dribble of precum drips from the tip of $his cock; $his artificially hyperactive prostate keeps $him that way.
-				<<elseif ($activeSlave.prostate > 1)>>
-					$He's got a string of precum dangling from the tip of $his cock; $his artificially hyperactive prostate keeps $him that way.
-				<</if>>
-			<<else>>
-				Judging by the softness of $his dick, $he doesn't find $his situation arousing.
-			<</if>>
-		<<else>>
-			You can't tell if $he is hard or soft at a glance, not that there is much of a size difference between it.
-			<<if ($activeSlave.prostate > 2)>>
-				The area above $his crotch has a slight swell to it from $his prostate implant; a swell that makes $his cock look even smaller by comparison.
-			<</if>>
-		<</if>>
-
-		<<if $activeSlave.balls > 0 && $activeSlave.vasectomy == 1>>
-			$He shoots blanks thanks to $his vasectomy.
-		<<elseif $activeSlave.balls > 0 && $activeSlave.ballType == "sterile">>
-			$He no longer produces sperm, so $his ejaculate lacks potency.
-		<</if>>
-
-		<<if $activeSlave.physicalAge <= 3>>
-			<<if $activeSlave.dick >= 15>>
-				<<if $activeSlave.fuckdoll > 0>>
-					The difficulties of having a gigantic dick are greatly reduced for a Fuckdoll, since $he's almost always restrained, stationary, or both.
-				<<else>>
-					<<if canWalk($activeSlave)>>
-						$His penis so massive that it is difficult for $him to move.
-						<<if $activeSlave.muscles > 95>>
-							However, $he is so powerfully built that $he can manage it with effort, using $his arms to support it.
-						<<elseif $activeSlave.muscles > 30>>
-							$He can barely move $his penis, and usually walks carrying it in any way $he can.
-						<<elseif $activeSlave.muscles > 5>>
-							$He requires assistance to move $his penis, and tries to rest it on the ground whenever $he can.
-						<<else>>
-							$He cannot get to $his feet unaided, and prefers to remain seated so $his enormous penis doesn't weigh $him down as much.
-						<</if>>
-					<<else>>
-						$His penis is nearly the same size as $his torso, making $him about half cock.
-					<</if>>
-					<<if $activeSlave.dick >= 20>>
-						<<if $dickAccessibility == 1>>
-							Fortunately for $him, the penthouse is adapted for daily life with a cock
-						<<else>>
-							$He<<if $saleDescription == 1>>'ll have<<else>> has<</if>> trouble living in your penthouse, which is not designed for <<= $girl>>s with dicks
-						<</if>>
-						bigger than they are.
-					<</if>>
-				<</if>>
-			<</if>>
-		<<elseif $activeSlave.physicalAge <= 12>>
-			<<if $activeSlave.dick >= 30>>
-				<<if $activeSlave.fuckdoll > 0>>
-					The difficulties of having a gigantic dick are greatly reduced for a Fuckdoll, since $he's almost always restrained, stationary, or both.
-				<<else>>
-					<<if canWalk($activeSlave)>>
-						$His penis so massive that it is difficult for $him to move.
-						<<if $activeSlave.muscles > 95>>
-							However, $he is so powerfully built that $he can manage it with effort, using $his arms to support it.
-						<<elseif $activeSlave.muscles > 30>>
-							$He can barely to move $his penis, and usually walks carrying it in any way $he can.
-						<<elseif $activeSlave.muscles > 5>>
-							$He requires assistance to move $his penis, and tries to rest it on the ground whenever $he can.
-						<<else>>
-							$He cannot get to $his feet unaided, and prefers to remain seated so $his enormous penis doesn't weigh $him down as much.
-						<</if>>
-					<<else>>
-						$His penis is nearly the same size as $his torso, making $him about half cock.
-					<</if>>
-					<<if $activeSlave.dick >= 30>>
-						<<if $dickAccessibility == 1>>
-							Fortunately for $him, the penthouse is adapted for daily life with a cock
-						<<else>>
-							$He<<if $saleDescription == 1>>'ll have<<else>> has<</if>> trouble living in your penthouse, which is not designed for <<= $girl>>s with dicks
-						<</if>>
-						bigger than they are.
-					<</if>>
-				<</if>>
-			<</if>>
-		<<elseif $activeSlave.physicalAge > 12>>
-			<<if $activeSlave.dick >= 30>>
-				<<if $activeSlave.fuckdoll > 0>>
-					The difficulties of having a gigantic dick are greatly reduced for a Fuckdoll, since $he's almost always restrained, stationary, or both.
-				<<else>>
-					<<if canWalk($activeSlave)>>
-						$His penis so massive that it is difficult for $him to move.
-						<<if $activeSlave.muscles > 95>>
-							However, $he is so powerfully built that $he can manage it with effort, using $his arms to support it.
-						<<elseif $activeSlave.muscles > 30>>
-							$He can barely to move $his penis, and usually walks carrying it in any way $he can.
-						<<elseif $activeSlave.muscles > 5>>
-							$He requires assistance to move $his penis, and tries to rest it on the ground whenever $he can.
-						<<else>>
-							$He cannot get to $his feet unaided, and prefers to remain seated so $his enormous penis doesn't weigh $him down as much.
-						<</if>>
-					<<else>>
-						$His penis is nearly the same size as $his torso, making $him about half cock.
-					<</if>>
-					<<if $activeSlave.dick >= 30>>
-						<<if $dickAccessibility == 1>>
-							Fortunately for $him, the penthouse is adapted for daily life with a cock
-						<<else>>
-							$He<<if $saleDescription == 1>>'ll have<<else>> has<</if>> trouble living in your penthouse, which is not designed for <<= $girl>>s with dicks
-						<</if>>
-						bigger than they are.
-					<</if>>
-				<</if>>
-			<</if>>
-		<</if>>
-
-		<<if $activeSlave.balls >= 50>>
-			$His testicles are so big and sensitive that $he can barely move without stopping to let shivers run down $his body. It takes a great deal of control to not release their contents in huge spurts in every direction.
-		<<elseif $activeSlave.balls >= 37>>
-			$His perpetual stream of semen-laced precum leaves a mess on the floor wherever $he goes<<if canAchieveErection($activeSlave)>>, along with $his shaft<<if hasAnyLegs($activeSlave)>> and leg<<if hasBothLegs($activeSlave)>>s<</if>><</if>> whenever $he is erect<</if>>.
-		<<elseif $activeSlave.balls >= 25>>
-			Parts of the constant dribble coming out of the tip of $his dick are now white, a testament to just how much cum $his massive balls produce and how desperate they are for release.
-		<<elseif $activeSlave.balls >= 10>>
-			$He produces so much cum that $his dick uncontrollably dribbles precum wherever $he goes, leaving a trail of drops behind $him.
-		<</if>>
-
-		<<if $activeSlave.prostate > 2>>
-			$His ejaculate has a distinct clearness to it from the sheer amount of prostate fluid produced by $his overstimulated prostate.
-		<</if>>
-
-		<<if $activeSlave.physicalAge <= 3>>
-			<<if $activeSlave.balls >= 25>>
-				<<if $activeSlave.fuckdoll > 0>>
-					The difficulties of having a gigantic pair of testicles are greatly reduced for a Fuckdoll, since $he's almost always restrained, stationary, or both.
-				<<else>>
-					<<if canWalk($activeSlave)>>
-						$His balls are so massive that it is difficult for $him to move.
-						<<if $activeSlave.muscles > 95>>
-							However, $he is so powerfully built that $he can manage it with effort, using $his arms to support them.
-						<<elseif $activeSlave.muscles > 30>>
-							$He can barely manage to get to $his feet unaided, and usually walks carrying $his testicles in any way $he can.
-						<<elseif $activeSlave.muscles > 5>>
-							$He requires assistance to get to $his feet, and tries to rest $his huge balls on the ground whenever $he can.
-						<<else>>
-							$He cannot get to $his feet unaided, and prefers to remain seated so $his enormous balls don't weigh $him down as much.
-						<</if>>
-					<<elseif $activeSlave.balls >= 100>>
-						$His testicles each dwarf $him, making $him almost entirely testicle.
-					<<else>>
-						$His testicles each dwarf $his torso, making $him almost entirely testicle.
-					<</if>>
-					<<if $activeSlave.balls > 90>>
-						<<if $ballsAccessibility == 1>>
-							Fortunately for $him, the penthouse is adapted for daily life with balls
-						<<else>>
-							$He<<if $saleDescription == 1>>'ll have<<else>> has<</if>> trouble living in your penthouse, which is not designed for <<= $girl>>s with testicles
-						<</if>>
-						wider than a standard doorway.
-					<</if>>
-				<</if>>
-			<</if>>
-		<<elseif $activeSlave.physicalAge <= 12>>
-			<<if $activeSlave.balls >= 50>>
-				<<if $activeSlave.fuckdoll > 0>>
-					The difficulties of having a gigantic pair of testicles are greatly reduced for a Fuckdoll, since $he's almost always restrained, stationary, or both.
-				<<else>>
-					<<if canWalk($activeSlave)>>
-						$His balls are so massive that it is difficult for $him to move.
-						<<if $activeSlave.muscles > 95>>
-							However, $he is so powerfully built that $he can manage it with effort, using $his arms to support them.
-						<<elseif $activeSlave.muscles > 30>>
-							$He can barely manage to get to $his feet unaided, and usually walks carrying $his testicles in any way $he can.
-						<<elseif $activeSlave.muscles > 5>>
-							$He requires assistance to get to $his feet, and tries to rest $his huge balls on the ground whenever $he can.
-						<<else>>
-							$He cannot get to $his feet unaided, and prefers to remain seated so $his enormous balls don't weigh $him down as much.
-						<</if>>
-					<<elseif $activeSlave.balls >= 100>>
-						$His testicles are each nearly the same size as $him, making $him mostly testicle.
-					<<else>>
-						$His testicles are each nearly the same size as $his torso, making a solid portion of $his mass testicle.
-					<</if>>
-					<<if $activeSlave.balls > 90>>
-						<<if $ballsAccessibility == 1>>
-							Fortunately for $him, the penthouse is adapted for daily life with balls
-						<<else>>
-							$He<<if $saleDescription == 1>>'ll have<<else>> has<</if>> trouble living in your penthouse, which is not designed for <<= $girl>>s with testicles
-						<</if>>
-						wider than a standard doorway.
-					<</if>>
-				<</if>>
-			<</if>>
-		<<elseif $activeSlave.physicalAge > 12>>
-			<<if $activeSlave.balls > 70>>
-				<<if $activeSlave.fuckdoll > 0>>
-					The difficulties of having a gigantic pair of testicles are greatly reduced for a Fuckdoll, since $he's almost always restrained, stationary, or both.
-				<<else>>
-					<<if canWalk($activeSlave)>>
-						$His balls are so massive that it is difficult for $him to move.
-						<<if $activeSlave.muscles > 95>>
-							However, $he is so powerfully built that $he can manage it with effort, using $his arms to support them.
-						<<elseif $activeSlave.muscles > 30>>
-							$He can barely manage to get to $his feet unaided, and usually walks carrying $his testicles in any way $he can.
-						<<elseif $activeSlave.muscles > 5>>
-							$He requires assistance to get to $his feet, and tries to rest $his huge balls on the ground whenever $he can.
-						<<else>>
-							$He cannot get to $his feet unaided, and prefers to remain seated so $his enormous balls don't weigh $him down as much.
-						<</if>>
-					<<elseif $activeSlave.balls >= 100>>
-						Together, $his testicles are nearly the same size as $him, making $him about half testicle.
-					<<else>>
-						Together, $his testicles are nearly the same size as $his torso, making $him about half testicle.
-					<</if>>
-					<<if $activeSlave.balls > 90>>
-						<<if $ballsAccessibility == 1>>
-							Fortunately for $him, the penthouse is adapted for daily life with balls
-						<<else>>
-							$He<<if $saleDescription == 1>>'ll have<<else>> has<</if>> trouble living in your penthouse, which is not designed for <<= $girl>>s with testicles
-						<</if>>
-						wider than a standard doorway.
-					<</if>>
-				<</if>>
-			<</if>>
-		<</if>>
-
-		<<if ($activeSlave.foreskin > 0)>>
-			<<if ($activeSlave.foreskin - $activeSlave.dick < -1)>>
-				$His cockhead is much too large for $his foreskin, probably as a result of recent penis growth it hasn't had time to stretch to accommodate yet.
-				<<if canAchieveErection($activeSlave) && (($activeSlave.devotion > 20) || ($activeSlave.aphrodisiacs > 0) || ($saleDescription == 1 && $gingering == "vasodilator") || ($activeSlave.inflationType == "aphrodisiac") || ($activeSlave.drugs == "priapism agents"))>>
-					The bit of erect dickhead visible at the tip of the uncomfortably stretched skin is an angry color from being squeezed so hard.
-				<<elseif canAchieveErection($activeSlave)>>
-					$He isn't erect right now, but getting a hard-on will probably be very uncomfortable for $him.
-				<<else>>
-					Fortunately for $him, $he can't get hard, making this merely uncomfortable for $him.
-				<</if>>
-			<<elseif ($activeSlave.foreskin - $activeSlave.dick == -1)>>
-				$His foreskin is stretched by $his dickhead, probably as a result of recent penis growth it hasn't had time to get used to yet.
-				<<if canAchieveErection($activeSlave) && (($activeSlave.devotion > 20) || ($activeSlave.aphrodisiacs > 0) || ($saleDescription == 1 && $gingering == "vasodilator") || ($activeSlave.inflationType == "aphrodisiac") || ($activeSlave.drugs == "priapism agents"))>>
-					$His erection has stretched the skin there taut.
-				<<elseif canAchieveErection($activeSlave)>>
-					$He isn't erect right now, but getting a hard-on will probably be a bit uncomfortable for $him.
-				<<else>>
-					Fortunately for $him, $he can't get hard, making this state merely odd-looking.
-				<</if>>
-			<<elseif ($activeSlave.foreskin - $activeSlave.dick == 1)>>
-				$His foreskin seems too large for $his dick, probably as a result of recent penis shrinkage.
-				<<if canAchieveErection($activeSlave) && (($activeSlave.devotion > 20) || ($activeSlave.aphrodisiacs > 0) || ($saleDescription == 1 && $gingering == "vasodilator") || ($activeSlave.inflationType == "aphrodisiac") || ($activeSlave.drugs == "priapism agents"))>>
-					$His erection cannot fully retract it, though it's loose enough that this doesn't look uncomfortable.
-				<<elseif canAchieveErection($activeSlave)>>
-					$He isn't erect right now, making the tip of $his dick look shriveled.
-				<<else>>
-					$He can't get hard, making the tip of $his dick look shriveled.
-				<</if>>
-			<<elseif ($activeSlave.foreskin - $activeSlave.dick > 1)>>
-				$His foreskin is far too large for $his dick, probably as a result of recent penis shrinkage.
-				<<if canAchieveErection($activeSlave) && (($activeSlave.devotion > 20) || ($activeSlave.aphrodisiacs > 0) || ($saleDescription == 1 && $gingering == "vasodilator") || ($activeSlave.inflationType == "aphrodisiac") || ($activeSlave.drugs == "priapism agents"))>>
-					$His erection cannot retract it at all, though it's loose enough that this doesn't look uncomfortable. Orgasming, though, will likely produce a dribbling mess.
-				<<elseif canAchieveErection($activeSlave)>>
-					$He isn't erect right now, so the excess skin droops lamely off $his cockhead.
-				<<else>>
-					$He can't get hard, so the excess skin droops lamely off $his cockhead.
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if ($activeSlave.dick < 3)>>
-			<<if ($activeSlave.balls > 5)>>
-				$His cock is small enough that it does not hang past the bottom of $his gigantic ballsack when soft.
-			<</if>>
-		<<elseif ($activeSlave.dick < 2)>>
-			<<if ($activeSlave.balls > 4)>>
-				$His cock is so small that it does not hang past the bottom of $his huge ballsack when soft.
-			<</if>>
-		<<elseif ($activeSlave.dick < 1)>>
-			<<if ($activeSlave.balls > 3)>>
-				$His cock is so small that it barely protrudes from $his ample ballsack.
-			<</if>>
-		<</if>>
-	<</if>>
-
-<<elseif $activeSlave.vagina == -1>> /* NULL */
-
-	<<if $activeSlave.scrotum == 0>>
-		$He has <<if $seeDicks > 0>>no penis and <</if>>no vagina, nothing but a tiny hole in the smooth $activeSlave.skin skin <<if hasAnyLegs($activeSlave)>>between $his legs<<else>>at the base of $his hips<</if>>.
-	<<else>>
-		$He has <<if $seeDicks > 0>>no penis and <</if>>no vagina, just a tiny hole above
-		<<switch $activeSlave.balls>>
-		<<case 6>>
-			a gigantic, clearly unnatural pair of testicles<<if $showDickCMs == 1>>, about <<= ballsToEitherUnit($activeSlave.balls)>> long<</if>>.
-		<<case 5>>
-			a huge pair of testicles<<if $showDickCMs == 1>>, about <<= ballsToEitherUnit($activeSlave.balls)>> long<</if>>.
-		<<case 4>>
-			a big pair of testicles<<if $showDickCMs == 1>>, about <<= ballsToEitherUnit($activeSlave.balls)>> long<</if>>.
-		<<case 3>>
-			an average pair of testicles<<if $showDickCMs == 1>>, about <<= ballsToEitherUnit($activeSlave.balls)>> long<</if>>.
-		<<case 2>>
-			a small pair of testicles<<if $showDickCMs == 1>>, about <<= ballsToEitherUnit($activeSlave.balls)>> long<</if>>.
-		<<case 1>>
-			a soft little trace of scrotum, since $his testicles are so small they have retreated up into $his abdomen.
-		<<case 0>>
-			smooth $activeSlave.skin skin.
-		<<default>>
-			a hypertrophied, clearly unnatural pair of testicles<<if $showDickCMs == 1>>, about <<= ballsToEitherUnit($activeSlave.balls)>> long<</if>>, a true masterpiece of modern growth hormone treatment.
-		<</switch>>
-		<<if $activeSlave.fuckdoll == 0 && $activeSlave.balls > 0 && $activeSlave.scrotum > 0>>
-			<<set _scrotalFullness = $activeSlave.scrotum - $activeSlave.balls>>
-			<<if $activeSlave.balls > 90>>
-				<<if _scrotalFullness < -1>>
-					$His poor scrotum is agonizingly overfilled and looks ready to burst. $He must be in constant pain.
-				<<elseif _scrotalFullness == -1>>
-					$His poor scrotum is so overfilled, every little vein is visible. $He must be in constant discomfort.
-				<<elseif _scrotalFullness == 0>>
-					$His comfortable scrotum allows them to hang massively <<if hasBothLegs($activeSlave)>>between $his legs<<else>>from $his<<if isAmputee($activeSlave)>> limbless<</if>> torso<</if>>.
-				<<else>>
-					Their weight and size has stretched $his scrotum downward, so that they <<if hasAnyLegs($activeSlave)>>drag along the floor<<else>>hang far from $his<<if isAmputee($activeSlave)>> limbless<</if>> torso<</if>>.
-				<</if>>
-			<<elseif $activeSlave.balls >= 20>>
-				<<if _scrotalFullness < -1>>
-					$His poor scrotum is agonizingly overfilled and taut. $He must be in constant pain.
-				<<elseif _scrotalFullness == -1>>
-					$His poor scrotum is so overfilled, every little vein is visible. $He must be in constant discomfort.
-				<<elseif _scrotalFullness == 0>>
-					$His comfortable scrotum allows them to hang massively <<if hasBothLegs($activeSlave)>>between $his legs<<else>>from $his<<if isAmputee($activeSlave)>> limbless<</if>> torso<</if>>.
-				<<else>>
-					Their weight and size has stretched $his scrotum downward, so that they dangle <<if hasAnyLegs($activeSlave)>>to $his knee<<if hasBothLegs($activeSlave)>>s<</if>><<else>>quite the distance from $his<<if isAmputee($activeSlave)>> limbless<</if>> torso<</if>>.
-				<</if>>
-			<<elseif $activeSlave.balls > 5>>
-				<<if _scrotalFullness < -1>>
-					$His poor scrotum is so overfilled, every little vein is visible. $He must be in agony.
-				<<elseif _scrotalFullness == -1>>
-					They're held against $his base by a tight scrotum that permits them little movement.
-				<<elseif _scrotalFullness == 0>>
-					$His comfortable scrotum allows them to hang massively <<if hasBothLegs($activeSlave)>>between $his legs<<else>>from $his<<if isAmputee($activeSlave)>> limbless<</if>> torso<</if>>.
-				<<else>>
-					Their weight has stretched $his scrotum downward, so that they dangle <<if hasAnyLegs($activeSlave)>>halfway to $his knee<<if hasBothLegs($activeSlave)>>s<</if>><<else>>some distance from $his<<if isAmputee($activeSlave)>> limbless<</if>> torso<</if>>.
-				<</if>>
-			<<elseif $activeSlave.balls > 3>>
-				<<if _scrotalFullness < -1>>
-					They're too big for $his tiny scrotum, which is stretched tight over each ball.
-				<<elseif _scrotalFullness == -1>>
-					They're held against $his base by a tight scrotum that permits them little movement.
-				<<elseif _scrotalFullness == 0>>
-					$His soft scrotum allows them to rest comfortably <<if hasAnyLegs($activeSlave)>>between $his leg<<if hasBothLegs($activeSlave)>>s<<else>> and stump<</if>><<else>>beneath $his<<if isAmputee($activeSlave)>> limbless<</if>> torso<</if>>.
-				<<else>>
-					$He has a loose, dangling scrotum that allows them to swing <<if hasBothLegs($activeSlave)>>between $his legs<<else>>from $his<<if isAmputee($activeSlave)>> limbless<</if>> torso<</if>>.
-				<</if>>
-			<<elseif $activeSlave.balls > 1>>
-				<<if _scrotalFullness < 0>>
-					They're held tightly by a very minimal scrotum that turns them into a soft little bump.
-				<<elseif _scrotalFullness == 0>>
-					$His comfortable little scrotum allows them to rest softly.
-				<<else>>
-					They're almost lost in $his big soft scrotum, wrinkled for lack of anything to fill it properly.
-				<</if>>
-			<<else>>
-				<<if _scrotalFullness == 0>>
-					$He has a soft little trace of scrotum.
-				<<else>>
-					They've left $his scrotum soft and empty.
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $activeSlave.physicalAge <= 3>>
-			<<if $activeSlave.balls >= 25>>
-				<<if $activeSlave.fuckdoll > 0>>
-					The difficulties of having a gigantic pair of testicles are greatly reduced for a Fuckdoll, since $he's almost always restrained, stationary, or both.
-				<<else>>
-					<<if canWalk($activeSlave)>>
-						$His balls are so massive that it is difficult for $him to move.
-						<<if $activeSlave.muscles > 95>>
-							However, $he is so powerfully built that $he can manage it with effort, using $his arms to support them.
-						<<elseif $activeSlave.muscles > 30>>
-							$He can barely manage to get to $his feet unaided, and usually walks carrying $his testicles in any way $he can.
-						<<elseif $activeSlave.muscles > 5>>
-							$He requires assistance to get to $his feet, and tries to rest $his huge balls on the ground whenever $he can.
-						<<else>>
-							$He cannot get to $his feet unaided, and prefers to remain seated so $his enormous balls don't weigh $him down as much.
-						<</if>>
-					<<elseif $activeSlave.balls >= 100>>
-						$His testicles each dwarf $him, making $him almost entirely testicle.
-					<<else>>
-						$His testicles each dwarf $his torso, making $him almost entirely testicle.
-					<</if>>
-					<<if $activeSlave.balls > 90>>
-						<<if $ballsAccessibility == 1>>
-							Fortunately for $him, the penthouse is adapted for daily life with balls
-						<<else>>
-							$He<<if $saleDescription == 1>>'ll have<<else>> has<</if>> trouble living in your penthouse, which is not designed for <<= $girl>>s with testicles
-						<</if>>
-						wider than a standard doorway.
-					<</if>>
-				<</if>>
-			<</if>>
-		<<elseif $activeSlave.physicalAge <= 12>>
-			<<if $activeSlave.balls >= 50>>
-				<<if $activeSlave.fuckdoll > 0>>
-					The difficulties of having a gigantic pair of testicles are greatly reduced for a Fuckdoll, since $he's almost always restrained, stationary, or both.
-				<<else>>
-					<<if canWalk($activeSlave)>>
-						$His balls are so massive that it is difficult for $him to move.
-						<<if $activeSlave.muscles > 95>>
-							However, $he is so powerfully built that $he can manage it with effort, using $his arms to support them.
-						<<elseif $activeSlave.muscles > 30>>
-							$He can barely manage to get to $his feet unaided, and usually walks carrying $his testicles in any way $he can.
-						<<elseif $activeSlave.muscles > 5>>
-							$He requires assistance to get to $his feet, and tries to rest $his huge balls on the ground whenever $he can.
-						<<else>>
-							$He cannot get to $his feet unaided, and prefers to remain seated so $his enormous balls don't weigh $him down as much.
-						<</if>>
-					<<elseif $activeSlave.balls >= 100>>
-						$His testicles are each nearly the same size as $him, making $him about mostly testicle.
-					<<else>>
-						$His testicles are each nearly the same size as $his torso, making $him about mostly testicle.
-					<</if>>
-					<<if $activeSlave.balls > 90>>
-						<<if $ballsAccessibility == 1>>
-							Fortunately for $him, the penthouse is adapted for daily life with balls
-						<<else>>
-							$He<<if $saleDescription == 1>>'ll have<<else>> has<</if>> trouble living in your penthouse, which is not designed for <<= $girl>>s with testicles
-						<</if>>
-						wider than a standard doorway.
-					<</if>>
-				<</if>>
-			<</if>>
-		<<elseif $activeSlave.physicalAge > 12>>
-			<<if $activeSlave.balls > 70>>
-				<<if $activeSlave.fuckdoll > 0>>
-					The difficulties of having a gigantic pair of testicles are greatly reduced for a Fuckdoll, since $he's almost always restrained, stationary, or both.
-				<<else>>
-					<<if canWalk($activeSlave)>>
-						$His balls are so massive that it is difficult for $him to move.
-						<<if $activeSlave.muscles > 95>>
-							However, $he is so powerfully built that $he can manage it with effort, using $his arms to support them.
-						<<elseif $activeSlave.muscles > 30>>
-							$He can barely manage to get to $his feet unaided, and usually walks carrying $his testicles in any way $he can.
-						<<elseif $activeSlave.muscles > 5>>
-							$He requires assistance to get to $his feet, and tries to rest $his huge balls on the ground whenever $he can.
-						<<else>>
-							$He cannot get to $his feet unaided, and prefers to remain seated so $his enormous balls don't weigh $him down as much.
-						<</if>>
-					<<elseif $activeSlave.balls >= 100>>
-						Together, $his testicles are nearly the same size as $him, making $him about half testicle.
-					<<else>>
-						Together, $his testicles are nearly the same size as $his torso, making $him about half testicle.
-					<</if>>
-					<<if $activeSlave.balls > 90>>
-						<<if $ballsAccessibility == 1>>
-							Fortunately for $him, the penthouse is adapted for daily life with balls
-						<<else>>
-							$He<<if $saleDescription == 1>>'ll have<<else>> has<</if>> trouble living in your penthouse, which is not designed for <<= $girl>>s with testicles
-						<</if>>
-						wider than a standard doorway.
-					<</if>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if ($activeSlave.prostate > 2)>>
-			The area above $his crotch has a slight swell to it from $his prostate implant. A constant dribble of precum streams from the hole; $his artificially hyperactive prostate keeps $him that way.
-		<<elseif ($activeSlave.prostate > 1)>>
-			$He's got a string of precum dangling from the hole; $his artificially hyperactive prostate keeps $him that way.
-		<</if>>
-		<<if ($activeSlave.aphrodisiacs > 0) || ($activeSlave.inflationType == "aphrodisiac")>>
-			The aphrodisiacs have $him so horny that there's a <<if $activeSlave.prostate > 1>>constant flow of precum leaking from<<else>>little precum beading at<</if>> the hole.
-		<<elseif ($activeSlave.energy > 95)>>
-			As a nympho, $he's almost always got a <<if $activeSlave.prostate > 1>>constant flow of precum leaking from<<else>>little bead of precum forming at<</if>> the hole.
-		<<elseif $activeSlave.fetishKnown == 0>>
-		<<elseif $activeSlave.fetishStrength <= 60>>
-		<<elseif ($activeSlave.fetish == "buttslut")>>
-			Judging by the <<if $activeSlave.prostate > 1>>constant flow of precum leaking from<<else>>little bead of precum forming at<</if>> the hole, $he's probably fantasizing about being buttfucked.
-		<<elseif ($activeSlave.fetish == "cumslut")>>
-			Judging by the <<if $activeSlave.prostate > 1>>constant flow of precum leaking from<<else>>little bead of precum forming at<</if>> the hole, $he's probably fantasizing about being facefucked.
-		<<elseif ($activeSlave.fetish == "humiliation")>>
-			Judging by the <<if $activeSlave.prostate > 1>>constant flow of precum leaking from<<else>>little bead of precum forming at<</if>> the hole, $he's probably fantasizing about being humiliated.
-		<<elseif ($activeSlave.fetish == "submissive")>>
-			Judging by the <<if $activeSlave.prostate > 1>>constant flow of precum leaking from<<else>>little bead of precum forming at<</if>> the hole, $he's probably fantasizing about submission.
-		<<elseif ($activeSlave.fetish == "dom")>>
-			Judging by the <<if $activeSlave.prostate > 1>>constant flow of precum leaking from<<else>>little bead of precum forming at<</if>> the hole, $he's probably fantasizing about dominating someone.
-		<<elseif ($activeSlave.fetish == "masochist")>>
-			Judging by the <<if $activeSlave.prostate > 1>>constant flow of precum leaking from<<else>>little bead of precum forming at<</if>> the hole, $he's probably fantasizing about pain.
-		<<elseif ($activeSlave.fetish == "sadist")>>
-			Judging by the <<if $activeSlave.prostate > 1>>constant flow of precum leaking from<<else>>little bead of precum forming at<</if>> the hole, $he's probably fantasizing about hurting someone.
-		<<elseif ($activeSlave.fetish == "pregnancy")>>
-			Judging by the <<if $activeSlave.prostate > 1>>constant flow of precum leaking from<<else>>little bead of precum forming at<</if>> the hole, $he's probably fantasizing about getting someone pregnant.
-		<<elseif ($activeSlave.fetish == "boobs")>>
-			Judging by the <<if $activeSlave.prostate > 1>>constant flow of precum leaking from<<else>>little bead of precum forming at<</if>> the hole, $he's probably fantasizing about boobs.
-		<</if>>
-		<<if $activeSlave.prostate > 2>>
-			This hole is normally almost invisible, making it absolutely shocking when $he orgasms and shoots a massive cumshot out of it.
-		<<elseif $activeSlave.balls != 0>>
-			This hole is normally almost invisible, making it quite surprising when $he orgasms and shoots cum out of it.
-		<<elseif $activeSlave.prostate != 0>>
-			This hole is normally almost invisible, though it does leak some watery ejaculate when $he orgasms.
-		<</if>>
-		<<if $activeSlave.balls >= 50>>
-			$His testicles are so big and sensitive that $he can barely move without stopping to let shivers run down $his body. It takes a great deal of control to not release their contents in huge spurts down $his balls.
-		<<elseif $activeSlave.balls >= 37>>
-			$His perpetual stream of semen-laced precum running down $his balls leaves a mess on the floor wherever $he goes.
-		<<elseif $activeSlave.balls >= 25>>
-			Parts of the constant dribble coming out of the hole are now white, a testament to just how much cum $his massive balls produce and how desperate they are for release.
-		<<elseif $activeSlave.balls >= 10>>
-			$He produces so much cum that $his dick uncontrollably dribbles precum wherever $he goes, leaving a trail of drops behind $him.
-		<</if>>
-		<<if $activeSlave.prostate > 2>>
-			$His ejaculate has a distinct clearness to it from the sheer amount of prostate fluid produced by $his overstimulated prostate.
-		<</if>>
-		<<if $activeSlave.balls > 0 && $activeSlave.vasectomy == 1>>
-			$He shoots blanks thanks to $his vasectomy.
-		<<elseif $activeSlave.balls > 0 && $activeSlave.ballType == "sterile">>
-			$He no longer produces sperm, so $his cum lacks potency.
-		<</if>>
-
-	<</if>>
-
-<<elseif $activeSlave.balls > 0>> /* vagina + balls */
-
-	<<if $activeSlave.scrotum != 0>>
-		$He has no penis, just a tiny hole above
-		<<switch $activeSlave.balls>>
-		<<case 6>>
-			a gigantic, clearly unnatural pair of testicles<<if $showDickCMs == 1>>, about <<= ballsToEitherUnit($activeSlave.balls)>> long<</if>>.
-		<<case 5>>
-			a huge pair of testicles<<if $showDickCMs == 1>>, about <<= ballsToEitherUnit($activeSlave.balls)>> long<</if>>.
-		<<case 4>>
-			a big pair of testicles<<if $showDickCMs == 1>>, about <<= ballsToEitherUnit($activeSlave.balls)>> long<</if>>.
-		<<case 3>>
-			an average pair of testicles<<if $showDickCMs == 1>>, about <<= ballsToEitherUnit($activeSlave.balls)>> long<</if>>.
-		<<case 2>>
-			a small pair of testicles<<if $showDickCMs == 1>>, about <<= ballsToEitherUnit($activeSlave.balls)>> long<</if>>.
-		<<case 1>>
-			a soft little trace of scrotum, since $his testicles are so small they have retreated up into $his abdomen.
-		<<case 0>>
-			smooth $activeSlave.skin skin.
-		<<default>>
-			a hypertrophied, clearly unnatural pair of testicles<<if $showDickCMs == 1>>, about <<= ballsToEitherUnit($activeSlave.balls)>> long<</if>>, a true masterpiece of modern growth hormone treatment.
-		<</switch>>
-		<<if $activeSlave.fuckdoll == 0 && $activeSlave.balls > 0 && $activeSlave.scrotum > 0>>
-			<<set _scrotalFullness = $activeSlave.scrotum - $activeSlave.balls>>
-			<<if $activeSlave.balls > 90>>
-				<<if _scrotalFullness < -1>>
-					$His poor scrotum is agonizingly overfilled and looks ready to burst. $He must be in constant pain.
-				<<elseif _scrotalFullness == -1>>
-					$His poor scrotum is so overfilled, every little vein is visible. $He must be in constant discomfort.
-				<<elseif _scrotalFullness == 0>>
-					$His comfortable scrotum allows them to hang massively <<if hasBothLegs($activeSlave)>>between $his legs<<else>>from $his<<if isAmputee($activeSlave)>> limbless<</if>> torso<</if>>.
-				<<else>>
-					Their weight and size has stretched $his scrotum downward, so that they <<if hasAnyLegs($activeSlave)>>drag along the floor<<else>>hang far from $his<<if isAmputee($activeSlave)>> limbless<</if>> torso<</if>>.
-				<</if>>
-			<<elseif $activeSlave.balls >= 20>>
-				<<if _scrotalFullness < -1>>
-					$His poor scrotum is agonizingly overfilled and taut. $He must be in constant pain.
-				<<elseif _scrotalFullness == -1>>
-					$His poor scrotum is so overfilled, every little vein is visible. $He must be in constant discomfort.
-				<<elseif _scrotalFullness == 0>>
-					$His comfortable scrotum allows them to hang massively <<if hasBothLegs($activeSlave)>>between $his legs<<else>>from $his<<if isAmputee($activeSlave)>> limbless<</if>> torso<</if>>.
-				<<else>>
-					Their weight and size has stretched $his scrotum downward, so that they dangle <<if hasAnyLegs($activeSlave)>>to $his knee<<if hasBothLegs($activeSlave)>>s<</if>><<else>>quite the distance from $his<<if isAmputee($activeSlave)>> limbless<</if>> torso<</if>>.
-				<</if>>
-			<<elseif $activeSlave.balls > 5>>
-				<<if _scrotalFullness < -1>>
-					$His poor scrotum is so overfilled, every little vein is visible. $He must be in agony.
-				<<elseif _scrotalFullness == -1>>
-					They're held against $his base by a tight scrotum that permits them little movement.
-				<<elseif _scrotalFullness == 0>>
-					$His comfortable scrotum allows them to hang massively <<if hasBothLegs($activeSlave)>>between $his legs<<else>>from $his<<if isAmputee($activeSlave)>> limbless<</if>> torso<</if>>.
-				<<else>>
-					Their weight has stretched $his scrotum downward, so that they dangle <<if hasAnyLegs($activeSlave)>>halfway to $his knee<<if hasBothLegs($activeSlave)>>s<</if>><<else>>some distance from $his<<if isAmputee($activeSlave)>> limbless<</if>> torso<</if>>.
-				<</if>>
-			<<elseif $activeSlave.balls > 3>>
-				<<if _scrotalFullness < -1>>
-					They're too big for $his tiny scrotum, which is stretched tight over each ball.
-				<<elseif _scrotalFullness == -1>>
-					They're held against $his base by a tight scrotum that permits them little movement.
-				<<elseif _scrotalFullness == 0>>
-					$His soft scrotum allows them to rest comfortably <<if hasBothLegs($activeSlave)>>between $his legs<<else>>beneath $his<<if isAmputee($activeSlave)>> limbless<</if>> torso<</if>>.
-				<<else>>
-					$He has a loose, dangling scrotum that allows them to swing <<if hasBothLegs($activeSlave)>>between $his legs<<else>>from $his<<if isAmputee($activeSlave)>> limbless<</if>> torso<</if>>.
-				<</if>>
-			<<elseif $activeSlave.balls > 1>>
-				<<if _scrotalFullness < 0>>
-					They're held tightly by a very minimal scrotum that turns them into a soft little bump.
-				<<elseif _scrotalFullness == 0>>
-					$His comfortable little scrotum allows them to rest softly.
-				<<else>>
-					They're almost lost in $his big soft scrotum, wrinkled for lack of anything to fill it properly.
-				<</if>>
-			<<else>>
-				<<if _scrotalFullness == 0>>
-					$He has a soft little trace of scrotum.
-				<<else>>
-					They've left $his scrotum soft and empty.
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if $activeSlave.physicalAge <= 3>>
-			<<if $activeSlave.balls >= 25>>
-				<<if $activeSlave.fuckdoll > 0>>
-					The difficulties of having a gigantic pair of testicles are greatly reduced for a Fuckdoll, since $he's almost always restrained, stationary, or both.
-				<<else>>
-					<<if canWalk($activeSlave)>>
-						$His balls are so massive that it is difficult for $him to move.
-						<<if $activeSlave.muscles > 95>>
-							However, $he is so powerfully built that $he can manage it with effort, using $his arms to support them.
-						<<elseif $activeSlave.muscles > 30>>
-							$He can barely manage to get to $his feet unaided, and usually walks carrying $his testicles in any way $he can.
-						<<elseif $activeSlave.muscles > 5>>
-							$He requires assistance to get to $his feet, and tries to rest $his huge balls on the ground whenever $he can.
-						<<else>>
-							$He cannot get to $his feet unaided, and prefers to remain seated so $his enormous balls don't weigh $him down as much.
-						<</if>>
-					<<elseif $activeSlave.balls >= 100>>
-						$His testicles each dwarf $him, making $him almost entirely testicle.
-					<<else>>
-						$His testicles each dwarf $his torso, making $him almost entirely testicle.
-					<</if>>
-					<<if $activeSlave.balls > 90>>
-						<<if $ballsAccessibility == 1>>
-							Fortunately for $him, the penthouse is adapted for daily life with balls
-						<<else>>
-							$He<<if $saleDescription == 1>>'ll have<<else>> has<</if>> trouble living in your penthouse, which is not designed for <<= $girl>>s with testicles
-						<</if>>
-						wider than a standard doorway.
-					<</if>>
-				<</if>>
-			<</if>>
-		<<elseif $activeSlave.physicalAge <= 12>>
-			<<if $activeSlave.balls >= 50>>
-				<<if $activeSlave.fuckdoll > 0>>
-					The difficulties of having a gigantic pair of testicles are greatly reduced for a Fuckdoll, since $he's almost always restrained, stationary, or both.
-				<<else>>
-					<<if canWalk($activeSlave)>>
-						$His balls are so massive that it is difficult for $him to move.
-						<<if $activeSlave.muscles > 95>>
-							However, $he is so powerfully built that $he can manage it with effort, using $his arms to support them.
-						<<elseif $activeSlave.muscles > 30>>
-							$He can barely manage to get to $his feet unaided, and usually walks carrying $his testicles in any way $he can.
-						<<elseif $activeSlave.muscles > 5>>
-							$He requires assistance to get to $his feet, and tries to rest $his huge balls on the ground whenever $he can.
-						<<else>>
-							$He cannot get to $his feet unaided, and prefers to remain seated so $his enormous balls don't weigh $him down as much.
-						<</if>>
-					<<elseif $activeSlave.balls >= 100>>
-						$His testicles are each nearly the same size as $him, making $him about mostly testicle.
-					<<else>>
-						$His testicles are each nearly the same size as $his torso, making $him about mostly testicle.
-					<</if>>
-					<<if $activeSlave.balls > 90>>
-						<<if $ballsAccessibility == 1>>
-							Fortunately for $him, the penthouse is adapted for daily life with balls
-						<<else>>
-							$He<<if $saleDescription == 1>>'ll have<<else>> has<</if>> trouble living in your penthouse, which is not designed for <<= $girl>>s with testicles
-						<</if>>
-						wider than a standard doorway.
-					<</if>>
-				<</if>>
-			<</if>>
-		<<elseif $activeSlave.physicalAge > 12>>
-			<<if $activeSlave.balls > 70>>
-				<<if $activeSlave.fuckdoll > 0>>
-					The difficulties of having a gigantic pair of testicles are greatly reduced for a Fuckdoll, since $he's almost always restrained, stationary, or both.
-				<<else>>
-					<<if canWalk($activeSlave)>>
-						$His balls are so massive that it is difficult for $him to move.
-						<<if $activeSlave.muscles > 95>>
-							However, $he is so powerfully built that $he can manage it with effort, using $his arms to support them.
-						<<elseif $activeSlave.muscles > 30>>
-							$He can barely manage to get to $his feet unaided, and usually walks carrying $his testicles in any way $he can.
-						<<elseif $activeSlave.muscles > 5>>
-							$He requires assistance to get to $his feet, and tries to rest $his huge balls on the ground whenever $he can.
-						<<else>>
-							$He cannot get to $his feet unaided, and prefers to remain seated so $his enormous balls don't weigh $him down as much.
-						<</if>>
-					<<elseif $activeSlave.balls >= 100>>
-						Together, $his testicles are nearly the same size as $him, making $him about half testicle.
-					<<else>>
-						Together, $his testicles are nearly the same size as $his torso, making $him about half testicle.
-					<</if>>
-					<<if $activeSlave.balls > 90>>
-						<<if $ballsAccessibility == 1>>
-							Fortunately for $him, the penthouse is adapted for daily life with balls
-						<<else>>
-							$He<<if $saleDescription == 1>>'ll have<<else>> has<</if>> trouble living in your penthouse, which is not designed for <<= $girl>>s with testicles
-						<</if>>
-						wider than a standard doorway.
-					<</if>>
-				<</if>>
-			<</if>>
-		<</if>>
-		<<if ($activeSlave.prostate > 2)>>
-			The area above $his crotch has a slight swell to it from $his prostate implant. A constant dribble of precum streams from the hole and down $his testicles; $his artificially hyperactive prostate keeps $him that way.
-		<<elseif ($activeSlave.prostate > 1)>>
-			$He's got a string of precum dangling from the hole and down $his testicles; $his artificially hyperactive prostate keeps $him that way.
-		<</if>>
-		<<if ($activeSlave.aphrodisiacs > 0) || ($activeSlave.inflationType == "aphrodisiac")>>
-			The aphrodisiacs have $him so horny that there's a <<if $activeSlave.prostate > 1>>constant flow of precum leaking from<<else>>little precum beading at<</if>> the hole.
-		<<elseif ($activeSlave.energy > 95)>>
-			As a nympho, $he's almost always got a <<if $activeSlave.prostate > 1>>constant flow of precum leaking from<<else>>little bead of precum forming at<</if>> the hole.
-		<<elseif $activeSlave.fetishKnown == 0>>
-		<<elseif $activeSlave.fetishStrength <= 60>>
-		<<elseif ($activeSlave.fetish == "buttslut")>>
-			Judging by the <<if $activeSlave.prostate > 1>>constant flow of precum leaking from<<else>>little bead of precum forming at<</if>> the hole, $he's probably fantasizing about being buttfucked.
-		<<elseif ($activeSlave.fetish == "cumslut")>>
-			Judging by the <<if $activeSlave.prostate > 1>>constant flow of precum leaking from<<else>>little bead of precum forming at<</if>> the hole, $he's probably fantasizing about being facefucked.
-		<<elseif ($activeSlave.fetish == "humiliation")>>
-			Judging by the <<if $activeSlave.prostate > 1>>constant flow of precum leaking from<<else>>little bead of precum forming at<</if>> the hole, $he's probably fantasizing about being humiliated.
-		<<elseif ($activeSlave.fetish == "submissive")>>
-			Judging by the <<if $activeSlave.prostate > 1>>constant flow of precum leaking from<<else>>little bead of precum forming at<</if>> the hole, $he's probably fantasizing about submission.
-		<<elseif ($activeSlave.fetish == "dom")>>
-			Judging by the <<if $activeSlave.prostate > 1>>constant flow of precum leaking from<<else>>little bead of precum forming at<</if>> the hole, $he's probably fantasizing about dominating someone.
-		<<elseif ($activeSlave.fetish == "masochist")>>
-			Judging by the <<if $activeSlave.prostate > 1>>constant flow of precum leaking from<<else>>little bead of precum forming at<</if>> the hole, $he's probably fantasizing about pain.
-		<<elseif ($activeSlave.fetish == "sadist")>>
-			Judging by the <<if $activeSlave.prostate > 1>>constant flow of precum leaking from<<else>>little bead of precum forming at<</if>> the hole, $he's probably fantasizing about hurting someone.
-		<<elseif ($activeSlave.fetish == "pregnancy")>>
-			Judging by the <<if $activeSlave.prostate > 1>>constant flow of precum leaking from<<else>>little bead of precum forming at<</if>> the hole, $he's probably fantasizing about getting someone pregnant.
-		<<elseif ($activeSlave.fetish == "boobs")>>
-			Judging by the <<if $activeSlave.prostate > 1>>constant flow of precum leaking from<<else>>little bead of precum forming at<</if>> the hole, $he's probably fantasizing about boobs.
-		<</if>>
-		<<if $activeSlave.prostate > 2>>
-			This hole is normally almost invisible, making it absolutely shocking when $he orgasms and shoots a massive cumshot out of it.
-		<<elseif $activeSlave.balls != 0>>
-			This hole is normally almost invisible, making it quite surprising when $he orgasms and shoots cum out of it.
-		<<elseif $activeSlave.prostate != 0>>
-			This hole is normally almost invisible, though it does leak some watery ejaculate when $he orgasms.
-		<</if>>
-		<<if $activeSlave.balls >= 50>>
-			$His testicles are so big and sensitive that $he can barely move without stopping to let shivers run down $his body. It takes a great deal of control to not release their contents in huge spurts down $his balls.
-		<<elseif $activeSlave.balls >= 37>>
-			$His perpetual stream of semen-laced precum running down $his balls leaves a mess on the floor wherever $he goes.
-		<<elseif $activeSlave.balls >= 25>>
-			Parts of the constant dribble coming out of the hole are now white, a testament to just how much cum $his massive balls produce and how desperate they are for release.
-		<<elseif $activeSlave.balls >= 10>>
-			$He produces so much cum that $his dick uncontrollably dribbles precum wherever $he goes, leaving a trail of drops behind $him.
-		<</if>>
-		<<if $activeSlave.prostate > 2>>
-			$His ejaculate has a distinct clearness to it from the sheer amount of prostate fluid produced by $his overstimulated prostate.
-		<</if>>
-
-	<<else>>
-
-		<<if $activeSlave.prostate > 2>>
-			The area above $his crotch has a slight swell to it from $his prostate implant.
-		<</if>>
-
-	<</if>>
-
-<</if>> /* CLOSES DETAILED DICK DESCRIPTION */
-
-<<if $activeSlave.prostate == 0>>
-	<<if ($activeSlave.dick > 0) || ($activeSlave.balls > 0)>>
-		<<if ($activeSlave.genes == "XY")>>
-			Though it's not externally apparent, $his prostate has been removed,
-		<<else>>
-			$He is lacking a prostate,
-		<</if>>
-		giving $his ejaculations less body<<if $activeSlave.anus != 0>> and reducing the stimulation $he feels during anal sex<</if>>.
-	<</if>>
-<</if>>
-
-<<= App.Desc.mods($activeSlave, "dick")>>
-<<= App.Desc.mods($activeSlave, "testicle")>>
-
-<</widget>>
-
-<<widget "vaginaDescription">>
-
-<<if $activeSlave.dick > 0>>
-	<<if $activeSlave.vagina > -1>>
-		$His
-		<<if $activeSlave.genes == "XX">>
-			beautifully natural
-		<<elseif $activeSlave.ovaries == 1>>
-			finely crafted
-		<<else>>
-			artificial
-		<</if>>
-		vagina is located beneath the base of $his penis,
-		<<if $activeSlave.fuckdoll > 0>>
-			just after the suit's material stops to bare $his front hole.
-		<<elseif ($activeSlave.scrotum > 3) && ($activeSlave.balls <= $activeSlave.scrotum)>>
-			though it is almost completely hidden by $his hanging ballsack.
-		<<elseif ($activeSlave.scrotum > 1) && ($activeSlave.balls > 0)>>
-			its upper part concealed by $his balls.
-		<<elseif canAchieveErection($activeSlave)>>
-			and merges seamlessly into $his shaft.
-		<<else>>
-			<<if ($activeSlave.dick > 3)>>
-				though it is almost completely hidden by $his soft cockmeat.
-			<<else>>
-				which acts as a soft little dickclit for it.
-			<</if>>
-		<</if>>
-		<<if $activeSlave.clit == 0>>
-			The base of $his cock is located where the clitoris would be on a normal woman.
-		<</if>>
-	<</if>>
-<</if>>
-
-<<if ($activeSlave.vagina > -1)>>
-
-	<<if $activeSlave.vagina == 0>>
-		$He is a @@.lime;virgin.@@ $His pussy is fresh,
-	<<elseif $activeSlave.vagina == 1>>
-		$His pussy is tight and appealing,
-	<<elseif $activeSlave.vagina == 2>>
-		$His pussy is reasonably tight,
-	<<elseif $activeSlave.vagina == 3>>
-		$His pussy is loose,
-	<<elseif $activeSlave.vagina >= 10>>
-		$His pussy has been completely ruined from hundreds of births. One could fit their arm into it with minimal effort and $he can barely get off from vaginal sex now. $His pussy is abyssal,
-	<<elseif $activeSlave.vagina > 3>>
-		$His pussy is utterly cavernous,
-	<</if>>
-
-	<<if $activeSlave.labia == 0>>
-		with minimal
-	<<elseif $activeSlave.labia == 1>>
-		with big puffy
-	<<elseif $activeSlave.labia == 2>>
-		with huge
-	<<else>>
-		with huge dangling
-	<</if>>
-
-	<<if ($seeRace == 1)>>
-		<<if $activeSlave.race == "white">>
-			pink pussylips.
-		<<elseif $activeSlave.race == "asian">>
-			dark $activeSlave.race pussylips.
-		<<elseif $activeSlave.race == "middle eastern">>
-			dark $activeSlave.race pussylips.
-		<<elseif $activeSlave.race == "latina">>
-			dark $activeSlave.race pussylips.
-		<<elseif $activeSlave.race == "black">>
-			dark $activeSlave.race pussylips.
-		<<else>>
-			$activeSlave.skin pussylips.
-		<</if>>
-	<<else>>
-		$activeSlave.skin pussylips.
-	<</if>>
-
-	<<if ($activeSlave.vagina > -1)>>
-		<<if ($activeSlave.vaginaLube == 0)>>
-			<<if ($activeSlave.vagina > 0) && !($activeSlave.chastityVagina)>>
-				$He produces very little natural wetness, so $he is <<if $activeSlave.fuckdoll == 0>>required to keep $himself<<else>>is kept<</if>> artificially lubricated for anyone who wishes to use $his cunt.
-			<<else>>
-				$He produces very little natural wetness.
-			<</if>>
-			<<if $activeSlave.prostate != 0>>
-				<<if $activeSlave.dick == 0>>
-					In stark contrast, however, $he's been given a functional prostate gland. It's attached to $his urethra, of course, so despite $his dryness, $he squirts <<if $activeSlave.balls > 0>>semen<<else>>fluid<</if>> when $he orgasms.
-					<<if $activeSlave.prostate > 2>>
-						With the implant embedded in it, that squirt is more like a blast; $he will soak $himself and anyone near $him.
-					<</if>>
-				<</if>>
-			<</if>>
-		<<elseif ($activeSlave.vaginaLube < 2)>>
-			<<if ($activeSlave.assignment == "work in the dairy") && ($dairyPregSetting > 1)>>
-				The dildo's ejaculate includes a drug that causes copious, constant vaginal lubrication, allowing it to fuck $him despite its giant size. The excess female fluid drips off $him and into a catch basin.
-			<<elseif ($activeSlave.aphrodisiacs > 0) || ($activeSlave.inflationType == "aphrodisiac")>>
-				The aphrodisiacs have them <<if ($activeSlave.aphrodisiacs > 1) || ($activeSlave.inflationType == "aphrodisiac" && $activeSlave.inflation >= 2)>>sopping <</if>>wet.
-			<<elseif ($activeSlave.energy > 95)>>
-				As a nympho, $he's almost constantly wet.
-			<<elseif ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
-				Judging by how wet $he is, $he's probably fantasizing about
-				<<switch $activeSlave.fetish>>
-				<<case "buttslut">>
-					being buttfucked.
-				<<case "cumslut">>
-					being facefucked.
-				<<case "humiliation">>
-					being humiliated.
-				<<case "submissive">>
-					submission.
-				<<case "dom">>
-					dominating someone.
-				<<case "sadist">>
-					hurting someone.
-				<<case "masochist">>
-					pain.
-				<<case "pregnancy">>
-					<<if $activeSlave.pregKnown>>
-						having another <<if $activeSlave.pregType > 1>>brood<<else>>child<</if>> after this one.
-					<<else>>
-						getting pregnant.
-					<</if>>
-				<<case "boobs">>
-					boobs.
-				<<default>>
-					getting fucked.
-				<</switch>>
-			<<elseif ($activeSlave.devotion > 50)>>
-				As a devoted sex slave, $he has no trouble keeping $himself wet for $his <<= WrittenMaster($activeSlave)>>.
-			<<elseif ($activeSlave.devotion > 20)>>
-				As an obedient sex slave, $he does $his best to keep $himself wet for $his <<= WrittenMaster($activeSlave)>>.
-			<</if>>
-			<<if $activeSlave.prostate != 0>>
-				<<if $activeSlave.dick == 0>>
-					Bizarrely, $he's been given a functional prostate gland. It's attached to $his urethra, of course, <<if $activeSlave.balls > 0>>which in combination with $his testicles make $his squirt copious amounts of fluids and semen with each orgasm<<else>>so $he squirts copiously when $he orgasms<</if>>.
-					<<if $activeSlave.prostate > 2>>
-						With the implant embedded in it; that gush is more like a flood. Changes of clothes are a must with $him, as $he can and will soak both you, $himself and what $he is getting fucked over.
-					<</if>>
-				<</if>>
-			<</if>>
-		<<else>>
-			<<if ($activeSlave.assignment == "work in the dairy") && ($dairyPregSetting > 1)>>
-				The dildo's ejaculate includes a drug that encourages vaginal lubrication, which is having a drastic effect on $him, since $he's already very gifted in that regard. The dildo makes a wet noise every time it thrusts into $him, and femcum streams into a catch basin beneath $him. The smell of pussy is overwhelming.
-			<<elseif ($activeSlave.aphrodisiacs > 0) || ($saleDescription == 1 && $gingering == "vasodilator") || ($activeSlave.inflationType == "aphrodisiac")>>
-				The combination of the aphrodisiacs and $his natural tendency to produce a lot of female lubricant is having a drastic effect. $His cunt is absolutely beribboned with femcum, and $he smells strongly of wet, clean pussy.
-			<<elseif ($activeSlave.energy > 95)>>
-				$He has a naturally wet cunt, and in combination with $his nymphomania, it's soaking. $He smells of good clean female arousal.
-			<<elseif ($activeSlave.fetishStrength > 60) && ($activeSlave.fetishKnown == 1)>>
-				$His naturally wet cunt is almost dripping female lubricant, and $he smells of good clean female arousal. $He's probably fantasizing about
-				<<switch $activeSlave.fetish>>
-				<<case "buttslut">>
-					being buttfucked.
-				<<case "cumslut">>
-					being facefucked.
-				<<case "humiliation">>
-					being humiliated.
-				<<case "submissive">>
-					submission.
-				<<case "dom">>
-					dominating someone.
-				<<case "sadist">>
-					hurting someone.
-				<<case "masochist">>
-					pain.
-				<<case "pregnancy">>
-					<<if $activeSlave.pregKnown == 1>>
-						growing rounder.
-					<<else>>
-						getting pregnant.
-					<</if>>
-				<<case "boobs">>
-					boobs.
-				<<default>>
-					getting fucked.
-				<</switch>>
-			<<elseif ($activeSlave.devotion > 50)>>
-				$His cunt is almost always soaking wet, but being near you has $his almost dripping.
-			<<elseif ($activeSlave.devotion > 20)>>
-				$His cunt is almost always soaking wet, and being near you isn't affecting that.
-			<<else>>
-				$His cunt is almost always soaking wet, regardless of $his feelings.
-			<</if>>
-			<<if $activeSlave.prostate != 0>>
-				<<if $activeSlave.dick == 0>>
-					Bizarrely, $he's been given a functional prostate gland. It's attached to $his urethra, of course, <<if $activeSlave.balls > 0>>which in combination with $his testicles make $his squirt unreasonable volume of fluids and semen with each orgasm<<else>>meaning that when $he orgasms, $he squirts an unreasonable volume of fluid<</if>>.
-					<<if $activeSlave.prostate > 2>>
-						With the implant embedded in it, that gush is insane. Everything around $him is at risk of being splashed. Changes of clothes are a must with $him, as are supplies to mop up afterwards.
-					<</if>>
-				<</if>>
-			<</if>>
-		<</if>>
-	<</if>>
-
-	<<vaginalAccessoryDescription>>
-
-<</if>>
-
-<<if $activeSlave.ovaImplant != 0>>
-	<<switch $activeSlave.ovaImplant>>
-	<<case "fertility">>
-		$His ovaries have a pair of implants attached to them to encourage ovulation<<if $activeSlave.preg < -1>>, not that it does $him any good<</if>>.
-	<<case "sympathy">>
-		$His ovaries have a pair of linked implants attached to them so that when one releases an egg the other does so as well.
-	<<case "asexual">>
-		One of $his ovaries has been replaced with a fabricated sperm sack designed to fertilize any eggs $he makes.
-	<</switch>>
-<</if>>
-
-<<if $activeSlave.dick == 0 && $activeSlave.balls == 0 && $activeSlave.vagina < 0 && $arcologies[0].FSRestart > 60>>
-	Society looks fondly on $his complete inability to reproduce.
-<</if>>
-
-
-<<if ($activeSlave.dick == 0)>>
-	<<if ($activeSlave.clit > 0)>>
-		<<if ($activeSlave.foreskin == 0)>>
-			<<if ($activeSlave.clit == 1)>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit is quite large and visibly hard.
-				<<else>>
-					$His clit is quite large.
-				<</if>>
-				$His lack of hood makes it even more prominent.
-			<<elseif ($activeSlave.clit == 2)>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit is huge and visibly erect.
-				<<else>>
-					$His clit is huge.
-				<</if>>
-				Lack of hood combined with its size means $he can't wear any clothes without being constantly stimulated.
-			<<elseif ($activeSlave.clit == 3)>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit is enormous, and since it's erect with arousal, it juts out proudly.
-				<<else>>
-					$His clit is enormous, almost a pseudophallus.
-				<</if>>
-			<<elseif ($activeSlave.clit == 4)>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit has reached the size of an average penis, it stands at attention but due to lack of erectile tissues it can't reach the same hardness a penis would.
-				<<else>>
-					$His clit has reached the size of an average penis.
-				<</if>>
-			<<else>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit is massive, having reached the size of a large penis. It is semi-erect since lack of erectile tissues means it can never become fully erect.
-				<<else>>
-					$His clit is massive, having reached the size of a large penis.
-				<</if>>
-			<</if>>
-		<<elseif ($activeSlave.foreskin == 1)>>
-			<<if ($activeSlave.clit == 1)>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit is quite large and visibly hard.
-				<<else>>
-					$His clit is quite large.
-				<</if>>
-				$His clitoral hood is stretched thin trying to cover it.
-			<<elseif ($activeSlave.clit == 2)>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit is huge and visibly erect.
-				<<else>>
-					$His clit is huge.
-				<</if>>
-				$His small hood is no longer able to cover it completely and large part of $his clitoris is always exposed.
-			<<elseif ($activeSlave.clit == 3)>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit is enormous, and since it's erect with arousal, it juts out proudly.
-				<<else>>
-					$His clit is enormous, almost a pseudophallus.
-				<</if>>
-				$His hood can no longer contain it and has slid back causing $his clitoris to be always exposed.
-			<<elseif ($activeSlave.clit == 4)>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit has reached the size of an average penis, it stands at attention but due to lack of erectile tissues it can't reach the same hardness a penis would.
-				<<else>>
-					$His clit has reached the size of an average penis.
-				<</if>>
-				$His hood can no longer contain it and has slid back causing $his clitoris to be always exposed.
-			<<else>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit is massive, having reached the size of a large penis. It is semi-erect since lack of erectile tissues means it can never become fully erect.
-				<<else>>
-					$His clit is massive, having reached the size of a large penis.
-				<</if>>
-				$His hood can no longer contain it and has slid back causing $his clitoris to be always exposed.
-			<</if>>
-		<<elseif ($activeSlave.foreskin == 2)>>
-			<<if ($activeSlave.clit == 1)>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit is quite large and visibly hard.
-				<<else>>
-					$His clit is quite large.
-				<</if>>
-				It is completely covered by its hood.
-			<<elseif ($activeSlave.clit == 2)>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit is huge and visibly erect.
-				<<else>>
-					$His clit is huge.
-				<</if>>
-				Its hood is stretched thin trying to cover it.
-			<<elseif ($activeSlave.clit == 3)>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit is enormous, and since it's erect with arousal, it juts out proudly.
-				<<else>>
-					$His clit is enormous, almost a pseudophallus.
-				<</if>>
-				It's large enough that the hood can cover only half of it.
-			<<elseif ($activeSlave.clit == 4)>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit has reached the size of an average penis, it stands at attention but due to lack of erectile tissues it can't reach the same hardness a penis would.
-				<<else>>
-					$His clit has reached the size of an average penis.
-				<</if>>
-				$His hood can no longer contain it and has slid back causing $his clitoris to be always exposed.
-			<<else>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit is massive, having reached the size of a large penis. It is semi-erect since lack of erectile tissues means it can never become fully erect.
-				<<else>>
-					$His clit is massive, having reached the size of a large penis.
-				<</if>>
-				$His hood can no longer contain it and has slid back causing $his clitoris to be always exposed.
-			<</if>>
-		<<elseif ($activeSlave.foreskin == 3)>>
-			<<if ($activeSlave.clit == 1)>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit is quite large and visibly hard.
-				<<else>>
-					$His clit is quite large.
-				<</if>>
-				The hood covering it is quite large making stimulation difficult.
-			<<elseif ($activeSlave.clit == 2)>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit is huge and visibly erect.
-				<<else>>
-					$His clit is huge.
-				<</if>>
-				$His large hood completely covers it.
-			<<elseif ($activeSlave.clit == 3)>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit is enormous, and since it's erect with arousal, it juts out proudly.
-				<<else>>
-					$His clit is enormous, almost a pseudophallus.
-				<</if>>
-				$His large hood covers all but the tip of $his clit even when aroused.
-			<<elseif ($activeSlave.clit == 4)>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit has reached the size of an average penis, it stands at attention but due to lack of erectile tissues it can't reach the same hardness a penis would.
-				<<else>>
-					$His clit has reached the size of an average penis.
-				<</if>>
-				Even $his large hood can't cover it, leaving over half of the clit exposed.
-			<<else>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit is massive, having reached the size of a large penis. It is semi-erect since lack of erectile tissues means it can never become fully erect.
-				<<else>>
-					$His clit is massive, having reached the size of a large penis.
-				<</if>>
-				$His hood can no longer contain it and has slid back causing $his clitoris to be always exposed.
-			<</if>>
-		<<else>>
-			<<if ($activeSlave.clit == 1)>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit is quite large and visibly hard.
-				<<else>>
-					$His clit is quite large.
-				<</if>>
-				$His large thick hood covering it makes any stimulation difficult.
-			<<elseif ($activeSlave.clit == 2)>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit is huge and visibly erect.
-				<<else>>
-					$His clit is huge.
-				<</if>>
-				$His large thick hood covering it makes any stimulation difficult.
-			<<elseif ($activeSlave.clit == 3)>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit is enormous, and since it's erect with arousal, it juts out proudly.
-				<<else>>
-					$His clit is enormous, almost a pseudophallus.
-				<</if>>
-				Matching its size is the thick hood covering it.
-			<<elseif ($activeSlave.clit == 4)>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit has reached the size of an average penis, it stands at attention but due to lack of erectile tissues it can't reach the same hardness a penis would.
-				<<else>>
-					$His clit has reached the size of an average penis.
-				<</if>>
-				$His large hood covering over half of it adds to its penis-like appearance.
-			<<else>>
-				<<if ($activeSlave.devotion > 50)>>
-					$His clit is massive, having reached the size of a large penis. It is semi-erect, since lack of erectile tissues means it can never reach full erection.
-				<<else>>
-					$His clit is massive, having reached the size of a large penis.
-				<</if>>
-				Not even its large hood can contain it, leaving over half of it exposed.
-			<</if>>
-		<</if>>
-	<</if>>
-<</if>>
-
-<<= App.Desc.mods($activeSlave, "vagina")>>
-<<= App.Desc.mods($activeSlave, "clit")>>
-
-<<if $activeSlave.fuckdoll == 0>>
-	<<if $activeSlave.rules.release.masturbation == 1>>
-		<<if (($activeSlave.aphrodisiacs > 0) || ($activeSlave.inflationType == "aphrodisiac")) && $activeSlave.drugs != "priapism agents">>
-			<<if ($activeSlave.aphrodisiacs > 1) || ($activeSlave.inflationType == "aphrodisiac" && $activeSlave.inflation > 1)>>
-				<<if ($activeSlave.dick != 0) && ($activeSlave.hormoneBalance >= 100) && (!hasAnyArms($activeSlave))>>
-					The extreme dose of aphrodisiacs combined with the hormones that keep $him flaccid have $him in a state of extreme sexual frustration; $he's <<if (($activeSlave.fetish == "buttslut") || (($activeSlave.sexualFlaw != "hates anal") && ($activeSlave.counter.anal > 9)))>>unconsciously humping $his ass against whatever's next to $him for anal stimulation and<</if>>humping $his dick against whatever $he can manage to mount without limbs.<<if $activeSlave.inflationType == "aphrodisiac">> $His efforts force $his distended middle to jiggle around, stirring up the aphrodisiacs contained in $his gut and strengthening their effects even more.<</if>>
-				<<elseif ($activeSlave.dick != 0) && ($activeSlave.balls > 0) && $activeSlave.ballType == "sterile" && (!hasAnyArms($activeSlave))>>
-					The extreme dose of aphrodisiacs combined with the chemical castration that keeps $him flaccid have $him in a state of extreme sexual frustration; $he's <<if (($activeSlave.fetish == "buttslut") || (($activeSlave.sexualFlaw != "hates anal") && ($activeSlave.counter.anal > 9)))>>unconsciously humping $his ass against whatever's next to $him for anal stimulation and <</if>>humping $his limp dick against whatever $he can manage to mount without limbs.<<if $activeSlave.inflationType == "aphrodisiac">> $His efforts force $his distended middle to jiggle around, stirring up the aphrodisiacs contained in $his gut and strengthening their effects even more.<</if>>
-				<<elseif ($activeSlave.dick != 0) && ($activeSlave.balls == 0) && (!hasAnyArms($activeSlave))>>
-					The extreme dose of aphrodisiacs combined with the lack of balls that keeps $him flaccid have $him in a state of extreme sexual frustration; $he's <<if (($activeSlave.fetish == "buttslut") || (($activeSlave.sexualFlaw != "hates anal") && ($activeSlave.counter.anal > 9)))>>unconsciously humping $his ass against whatever's next to $him for anal stimulation and <</if>>humping $his limp dick against whatever $he can manage to mount without limbs.<<if $activeSlave.inflationType == "aphrodisiac">> $His efforts force $his distended middle to jiggle around, stirring up the aphrodisiacs contained in $his gut and strengthening their effects even more.<</if>>
-				<<elseif ($activeSlave.dick != 0) && ($activeSlave.hormoneBalance >= 100)>>
-					The extreme dose of aphrodisiacs combined with the hormones that keep $him flaccid have $him in a state of extreme sexual frustration; $he's rubbing $his limp dick distractedly<<if (($activeSlave.fetish == "buttslut") || (($activeSlave.sexualFlaw != "hates anal") && ($activeSlave.counter.anal > 9)))>> and unconsciously humping $his ass against whatever's next to $him for anal stimulation<</if>>.<<if $activeSlave.inflationType == "aphrodisiac">> $His efforts force $his distended middle to jiggle around, stirring up the aphrodisiacs contained in $his gut and strengthening their effects even more.<</if>>
-				<<elseif ($activeSlave.dick != 0) && ($activeSlave.balls == 0)>>
-					The extreme dose of aphrodisiacs combined with the lack of balls that keeps $him flaccid have $him in a state of extreme sexual frustration; $he's rubbing $his limp dick distractedly<<if (($activeSlave.fetish == "buttslut") || (($activeSlave.sexualFlaw != "hates anal") && ($activeSlave.counter.anal > 9)))>> and unconsciously humping $his ass against whatever's next to $him for anal stimulation<</if>>.<<if $activeSlave.inflationType == "aphrodisiac">> $His efforts force $his distended middle to jiggle around, stirring up the aphrodisiacs contained in $his gut and strengthening their effects even more.<</if>>
-				<<elseif ($activeSlave.dick != 0) && !canAchieveErection($activeSlave)>>
-					The extreme dose of aphrodisiacs combined with $his inability to become erect have $him in a state of extreme sexual frustration; $he's rubbing $his limp dick distractedly<<if (($activeSlave.fetish == "buttslut") || (($activeSlave.sexualFlaw != "hates anal") && ($activeSlave.counter.anal > 9)))>> and unconsciously humping $his ass against whatever's next to $him for anal stimulation<</if>>.<<if $activeSlave.inflationType == "aphrodisiac">> $His efforts force $his distended middle to jiggle around, stirring up the aphrodisiacs contained in $his gut and strengthening their effects even more.<</if>>
-				<<elseif ($activeSlave.dick != 0)>>
-					The extreme dose of aphrodisiacs has $his cock painfully erect and leaves precum dripping from its head.
-				<</if>>
-			<<else>>
-				<<if ($activeSlave.dick != 0) && ($activeSlave.hormoneBalance >= 100) && (!hasAnyArms($activeSlave))>>
-					The aphrodisiacs combined with the hormones that keep $him flaccid have $him sexually frustrated; $he's <<if (($activeSlave.fetish == "buttslut") || (($activeSlave.sexualFlaw != "hates anal") && ($activeSlave.counter.anal > 9)))>>unconsciously rubbing $his ass against whatever's next to $him, and <</if>>humping $his dick against whatever $he can manage to mount without limbs.<<if $activeSlave.inflationType == "aphrodisiac">> $His efforts force $his distended middle to jiggle around, stirring up the aphrodisiacs contained in $his gut and strengthening their effects even more.<</if>>
-				<<elseif ($activeSlave.dick != 0) && ($activeSlave.balls > 0) && $activeSlave.ballType == "sterile" && (!hasAnyArms($activeSlave))>>
-					The aphrodisiacs combined with the chemical castration that keeps $him flaccid have $him sexually frustrated; $he's <<if (($activeSlave.fetish == "buttslut") || (($activeSlave.sexualFlaw != "hates anal") && ($activeSlave.counter.anal > 9)))>>unconsciously rubbing $his ass against whatever's next to $him, and <</if>>humping $his dick against whatever $he can manage to mount without limbs.<<if $activeSlave.inflationType == "aphrodisiac">> $His efforts force $his distended middle to jiggle around, stirring up the aphrodisiacs contained in $his gut and strengthening their effects even more.<</if>>
-				<<elseif ($activeSlave.dick != 0) && ($activeSlave.balls == 0) && (!hasAnyArms($activeSlave))>>
-					The aphrodisiacs combined with the lack of balls that keeps $him flaccid have $him sexually frustrated; $he's <<if (($activeSlave.fetish == "buttslut") || (($activeSlave.sexualFlaw != "hates anal") && ($activeSlave.counter.anal > 9)))>>unconsciously rubbing $his ass against whatever's next to $him, and <</if>>humping $his dick against whatever $he can manage to mount without limbs.<<if $activeSlave.inflationType == "aphrodisiac">> $His efforts force $his distended middle to jiggle around, stirring up the aphrodisiacs contained in $his gut and strengthening their effects even more.<</if>>
-				<<elseif ($activeSlave.dick != 0) && ($activeSlave.hormoneBalance >= 100)>>
-					The aphrodisiacs combined with the hormones that keep $him flaccid have $him sexually frustrated; $he's touching $his limp dick distractedly<<if (($activeSlave.fetish == "buttslut") || (($activeSlave.sexualFlaw != "hates anal") && ($activeSlave.counter.anal > 9)))>> and unconsciously rubbing $his ass against whatever's next to $him<</if>>.<<if $activeSlave.inflationType == "aphrodisiac">> $His efforts force $his distended middle to jiggle around, stirring up the aphrodisiacs contained in $his gut and strengthening their effects even more.<</if>>
-				<<elseif ($activeSlave.dick != 0) && ($activeSlave.balls == 0)>>
-					The aphrodisiacs combined with the lack of balls that keeps $him flaccid have $him sexually frustrated; $he's touching $his limp dick distractedly<<if (($activeSlave.fetish == "buttslut") || (($activeSlave.sexualFlaw != "hates anal") && ($activeSlave.counter.anal > 9)))>> and unconsciously rubbing $his ass against whatever's next to $him<</if>>.<<if $activeSlave.inflationType == "aphrodisiac">> $His efforts force $his distended middle to jiggle around, stirring up the aphrodisiacs contained in $his gut and strengthening their effects even more.<</if>>
-				<</if>>
-			<</if>>
-		<</if>>
-	<</if>>
-<</if>>
-
-<<if $activeSlave.fuckdoll > 0>>
-	<<if $activeSlave.vagina > 0>>
-		$His front hole
-		<<if $activeSlave.fuckdoll <= 45>>
-			is mostly useful when $he's restrained for rape.
-		<<else>>
-			will massage <<if $PC.dick != 0>>cocks<<else>>anything<</if>> placed inside it on command.
-			<<if $activeSlave.fuckdoll <= 85>>
-				$He is even capable of riding <<if $PC.dick != 0>>dick<<else>>a strap-on<</if>>.
-			<</if>>
-		<</if>>
-	<</if>>
-<<else>>
-	<<if $activeSlave.vagina == -1>>
-		<<if $seeDicks >= 100>><<elseif $activeSlave.anus == 0>><<else>>Since $he lacks a vagina, $he takes it up <<if $seeRace == 1>>$his $activeSlave.race<<else>>the<</if>> ass instead.<</if>>
-		<<elseif $activeSlave.skill.vaginal >= 100>>$He is a @@.aquamarine;vanilla sex master.@@
-		<<elseif $activeSlave.skill.vaginal > 60>>$He is a @@.aquamarine;vanilla sex expert.@@
-		<<elseif $activeSlave.skill.vaginal > 30>>$He is @@.aquamarine;skilled at vanilla sex.@@
-		<<elseif $activeSlave.skill.vaginal > 10>>$He has @@.aquamarine;basic knowledge about vanilla sex.@@
-		<<else>>$He is unskilled at vaginal sex.
-	<</if>>
-<</if>>
-
-<<= App.Desc.mods($activeSlave, "pubic mound")>>
-
-<<set _pubertyAge = Math.min($activeSlave.pubertyAgeXX, $activeSlave.pubertyAgeXY)>>
-<<if ($activeSlave.physicalAge < _pubertyAge-2)>>
-	$He is too sexually immature to have pubic hair.
-<<elseif ($activeSlave.pubicHStyle == "hairless")>>
-	$He's naturally smooth and hairless.
-<<elseif ($activeSlave.pubicHStyle == "bald")>>
-	$He is no longer able to grow pubic hair leaving $him hairless and smooth.
-<<elseif ($activeSlave.pubicHStyle == "waxed")>>
-	<<if $activeSlave.fuckdoll > 0>>
-	$His pubic hair has been removed to prevent chafing.
-	<<elseif ($activeSlave.assignment == "work in the dairy") && ($dairyRestraintsSetting > 1)>>
-	$His pubic hair has been removed to prevent chafing.
-	<<else>>
-	$He's waxed and smooth.
-	<</if>>
-<<elseif ($activeSlave.physicalAge < _pubertyAge-1)>>
-	$He has a few wisps of pubic hair.
-<<elseif ($activeSlave.physicalAge < _pubertyAge)>>
-	$He is on the verge of puberty and has a small patch of $activeSlave.pubicHColor pubic hair above $his <<if $activeSlave.dick > 0>>cock<<elseif $activeSlave.vagina == -1>>smoothness<<else>>pussy<</if>>.
-<<elseif ($activeSlave.pubicHStyle == "in a strip")>>
-	$His $activeSlave.pubicHColor pubic hair is waxed into a narrow strip above $his <<if $activeSlave.dick > 0>>cock<<elseif $activeSlave.vagina == -1>>smoothness<<else>>pussy<</if>>.
-<<elseif ($activeSlave.pubicHStyle == "neat")>>
-	$His $activeSlave.pubicHColor pubic hair is waxed into a neat patch above $his <<if $activeSlave.dick > 0>>cock<<elseif $activeSlave.vagina == -1>>smoothness<<else>>pussy<</if>>.
-<<elseif ($activeSlave.pubicHStyle == "bushy in the front and neat in the rear")>>
-	$His $activeSlave.pubicHColor pubic hair forms a natural bush above $his <<if $activeSlave.dick > 0>>cock<<elseif $activeSlave.vagina == -1>>smoothness<<else>>pussy<</if>>.
-<<elseif ($activeSlave.pubicHStyle == "bushy")>>
-	$His $activeSlave.pubicHColor pubic hair forms a natural bush above $his <<if $activeSlave.dick > 0>>cock<<elseif $activeSlave.vagina == -1>>smoothness<<else>>pussy<</if>>.
-<<elseif ($activeSlave.pubicHStyle == "very bushy")>>
-	$His $activeSlave.pubicHColor pubic hair forms a dense bush above $his <<if $activeSlave.dick > 0>>cock<<elseif $activeSlave.vagina == -1>>smoothness<<else>>pussy<</if>> that trails up to $his navel.
-<</if>>
-
-<</widget>>
-
-<<widget "earDescription">>
-/* ear shape description here */
-<<if $activeSlave.earShape == "none">>
-	<<if $activeSlave.earImplant == 1>>
-		<<if $activeSlave.earT != "none">>
-			$He has smooth skin where $his ears should be as $his hearing has been cybernetically rerouted to $his secondary ears.
-		<<else>>
-			$He has nothing but small, perforated metal disks where $his ears should be.
-		<</if>>
-	<<elseif $activeSlave.earwear == "none">>
-		$He has small unsightly holes on the sides of $his head. /*That can't be sanitary.*/
-	<<else>>
-		The sides of $his head are smooth where $his ears should be, but upon closer inspection it is revealed that
-		<<if $activeSlave.earwear == "hearing aids">>
-			$his ear canals are fitted with hearing aids capped with a skin-matching sheet to obscure the hole.
-		<<else>>
-			$his ear canals are filled with plugs with skin-matching caps.
-		<</if>>
-	<</if>>
-<<elseif $activeSlave.earShape == "damaged">>
-	$His outer ears have been severely damaged.
-<<elseif $activeSlave.earShape == "normal" && $activeSlave.earT != "none">> /* Ears are expected, so lets only mention them if we have two sets */
-	$He has perfectly ordinary ears.
-<<elseif $activeSlave.earShape == "robot">>
-	$He has high tech cyber-ears that could be mistaken for headphones. /*not yet implemented*/
-<<elseif $activeSlave.earShape == "pointy">>
-	$His small, <<print either("elfin", "leaf-shaped", "pointed")>> ears are quite cute and give $him an exotic appearance.
-<<elseif $activeSlave.earShape == "elven">>
-	$He has long, thin elven ears that <<print either("tend to droop when $he is relaxed or sad", "tend to waggle up and down when $he is excited", "twitch at the slightest touch")>>.
-<<elseif $activeSlave.earShape == "ushi">>
-	$He has long, floppy cow ears. /* that <<print either("tend to droop when $he is relaxed or sad", "tend waggle up and down when $he is excited", "twitch at the slightest touch")>>. These don't make sense for the most part. */
-<</if>>
-
-<<if $activeSlave.earT == "neko">>
-	$He has cute, $activeSlave.earTColor cat ears on $his head; they
-	<<if $activeSlave.earImplant == 1>>
-		perk up at
-		<<if $activeSlave.devotion > 20>>
-			the sound of your voice and
-		<<else>>
-			sudden noises and
-		<</if>>
-	<</if>>
-	<<print either("tend to droop when $he is relaxed or sad", "twitch at the slightest touch")>>.
-<<elseif $activeSlave.earT == "inu">>
-	$He has cute, $activeSlave.earTColor dog ears on $his head; they
-	<<if $activeSlave.earImplant == 1>>
-		perk up at
-		<<if $activeSlave.devotion > 50>>
-			the sound of your voice and
-		<<else>>
-			sudden noises and
-		<</if>>
-	<</if>>
-	<<print either("tend to droop when $he is relaxed or sad", "twitch at the slightest touch")>>.
-<<elseif $activeSlave.earT == "kit">>
-	$He has elegant, $activeSlave.earTColor fox ears on $his head; they
-	<<if $activeSlave.earImplant == 1>>
-		perk up at
-		<<if $activeSlave.devotion > 50>>
-			the sound of your voice and
-		<<else>>
-			sudden noises and
-		<</if>>
-	<</if>>
-	<<print either("tend to droop when $he is relaxed or sad", "twitch at the slightest touch")>>.
-<<elseif $activeSlave.earT == "tanuki">>
-	$He has adorable, $activeSlave.earTColor, round tanuki ears on $his head; they
-	<<if $activeSlave.earImplant == 1>>
-		perk up at
-		<<if $activeSlave.devotion > 50>>
-			the sound of your voice and
-		<<else>>
-			sudden noises and
-		<</if>>
-	<</if>>
-	<<print either("tend to droop when $he is relaxed or sad", "twitch at the slightest touch")>>.
-<<elseif $activeSlave.earT == "usagi">>
-	$He has long, $activeSlave.earTColor, fluffy rabbit ears on $his head; they
-	<<if $activeSlave.earImplant == 1>>
-		perk up at
-		<<if $activeSlave.devotion > 50>>
-			the sound of your voice and
-		<<else>>
-			sudden noises and
-		<</if>>
-	<</if>>
-	<<print either("tend to droop when $he is relaxed or sad", "twitch at the slightest touch")>>.
-<<elseif $activeSlave.earT == "normal">>
-	$He has <<if $activeSlave.earShape != "none">>a second set<<else>>a pair<</if>> of non-functioning ears grafted to the top of $his head.
-<</if>>
-
-<<if $activeSlave.hears < 0>>
-	<<if $activeSlave.hears == -1>>
-		$His hearing is noticeably impaired,
-	<<elseif $activeSlave.hears < -1>>
-		$He is completely deaf,
-	<</if>>
-	<<if $activeSlave.hears < -1 && $activeSlave.earShape == "none">>
-		which is fitting due to $his lack of ears.
-	<<else>>
-		but this isn't obvious just by looking at $his ears.
-	<</if>>
-<</if>>
-<</widget>>
-
-<<widget "faceDescription">>
-
-$His
-@@.pink;face is
-<<switch $activeSlave.faceShape>>
-<<case "masculine">>
-	<<if $activeSlave.face < -95>>
-		so ugly and masculine that $his designation as a slave girl is a mockery.
-	<<elseif $activeSlave.face < -40>>
-		ugly and masculine, making $him a poor slave girl by appearance.
-	<<elseif $activeSlave.face < -10>>
-		unattractively masculine.
-	<<elseif ($activeSlave.face <= 10)>>
-		masculine, but not entirely unappealing.
-	<<elseif ($activeSlave.face <= 40)>>
-		attractively masculine.
-	<<elseif ($activeSlave.face <= 95)>>
-		quite handsome in a masculine way.
-	<<else>>
-		the height of masculine handsomeness.
-	<</if>>
-<<case "androgynous">>
-	<<if $activeSlave.face < -95>>
-		disturbingly androgynous and terribly ugly.
-	<<elseif $activeSlave.face < -40>>
-		ugly and androgynous; $he has neither masculine nor feminine appeal.
-	<<elseif $activeSlave.face < -10>>
-		strangely androgynous, and rather unattractive.
-	<<elseif ($activeSlave.face <= 10)>>
-		strangely androgynous.
-	<<elseif ($activeSlave.face <= 40)>>
-		androgynous, and attractive enough that this ambiguity is interesting.
-	<<elseif ($activeSlave.face <= 95)>>
-		gorgeously androgynous in a complex way that captures the eye.
-	<<else>>
-		so gorgeously androgynous that $he tends to induce sexual confusion.
-	<</if>>
-<<case "cute">>
-	<<if $activeSlave.face < -95>>
-		very ugly, yet somehow cute; $he's so unattractive that $he inspires pity.
-	<<elseif $activeSlave.face < -40>>
-		ugly, but cute, with a pitiable appeal.
-	<<elseif $activeSlave.face < -10>>
-		not attractive, but is appealingly cute.
-	<<elseif ($activeSlave.face <= 10)>>
-		merely average, but is appealingly cute.
-	<<elseif ($activeSlave.face <= 40)>>
-		both attractive and appealingly cute.
-	<<elseif ($activeSlave.face <= 95)>>
-		beautiful, yet somehow also approachably cute.
-	<<else>>
-		an impossibly perfect combination of beauty and girl-next-door cuteness.
-	<</if>>
-<<case "sensual">>
-	<<if $activeSlave.face < -95>>
-		very ugly, yet naturally slutty, promising a decent fuck despite its appearance.
-	<<elseif $activeSlave.face < -40>>
-		ugly, but also slutty, promising a good fuck despite its appearance.
-	<<elseif $activeSlave.face < -10>>
-		not attractive, but it has a certain sensual appeal.
-	<<elseif ($activeSlave.face <= 10)>>
-		merely average, but undeniably sensual.
-	<<elseif ($activeSlave.face <= 40)>>
-		both attractive and naturally sultry.
-	<<elseif ($activeSlave.face <= 95)>>
-		both beautiful and sultry, bringing sex to mind naturally.
-	<<else>>
-		very beautiful in a consummately sexual way.
-	<</if>>
-<<case "exotic">>
-	<<if $activeSlave.face < -95>>
-		very ugly and unusual, a real tragedy in flesh.
-	<<elseif $activeSlave.face < -40>>
-		ugly and unusual, a real misfortune.
-	<<elseif $activeSlave.face < -10>>
-		unattractive, and distinctive in its unattractiveness.
-	<<elseif ($activeSlave.face <= 10)>>
-		quite average, but not uninteresting.
-	<<elseif ($activeSlave.face <= 40)>>
-		attractive in an exotic and interesting way.
-	<<elseif ($activeSlave.face <= 95)>>
-		exotic and beautiful, capable of catching the eye and keeping its gaze.
-	<<else>>
-		very beautiful and exotic, almost to the point of alien fascination.
-	<</if>>
-<<default>>
-	<<if $activeSlave.face < -95>>
-		very ugly.
-	<<elseif $activeSlave.face < -40>>
-		quite ugly.
-	<<elseif $activeSlave.face < -10>>
-		unattractive.
-	<<elseif ($activeSlave.face <= 10)>>
-		average and conventionally feminine.
-	<<elseif ($activeSlave.face <= 40)>>
-		conventionally attractive.
-	<<elseif ($activeSlave.face <= 95)>>
-		conventionally beautiful.
-	<<else>>
-		the height of conventional feminine beauty.
-	<</if>>
-<</switch>>@@
-<<if $activeSlave.weight > 190>>
-	$His face is quite fat with ample excess chins.
-<<elseif $activeSlave.weight > 160>>
-	$His face is round and plump with a trio of extra chins.
-<<elseif $activeSlave.weight > 130>>
-	$His face is chubby with an obvious second chin.
-<<elseif $activeSlave.weight > 97>>
-	$His face is soft with barely a second chin.
-<</if>>
-<<if $activeSlave.fuckdoll > 0>>
-	However,
-	<<if $activeSlave.face < -1>>
-		it's hard to see this past the suit, since its face is padded to make $him seem less ugly.
-	<<elseif $activeSlave.face < 1>>
-		it's hard to see this past the suit, since its face is shaped to make $him seem prettier.
-	<<else>>
-		the suit obscures all but the shape of $him pretty face.
-	<</if>>
-<<else>>
-	<<if $activeSlave.markings == "beauty mark">>
-		<<if $activeSlave.face < -95>>
-			It bears a severely disfiguring, discolored mark.
-		<<elseif $activeSlave.face < -40>>
-			It bears a couple of unsightly moles.
-		<<elseif $activeSlave.face < -10>>
-			It bears an ugly mole.
-		<<elseif ($activeSlave.face <= 10)>>
-			$He has a distinctive beauty mark.
-		<<elseif ($activeSlave.face <= 40)>>
-			$He has a nice beauty mark.
-		<<elseif ($activeSlave.face <= 95)>>
-			$He has a beauty mark that adds to $his distinctiveness.
-		<<else>>
-			$He has a beauty mark that makes $him really memorable.
-		<</if>>
-	<</if>>
-<</if>>
-<<if $activeSlave.faceImplant > 5>>
-	$He's
-	<<if $activeSlave.faceImplant > 95>>
-		had so much cosmetic surgery that $his face is located at the bottom of the uncanny valley <<if $activeSlave.face < -10>>in addition to its ugliness<<elseif $activeSlave.face <= 10>>the only thing really distinctive about it<<else>>its attractiveness notwithstanding<</if>>.
-	<<elseif $activeSlave.faceImplant > 60>>
-		obviously gotten a lot of facial cosmetic surgery.
-	<<elseif $activeSlave.faceImplant > 30>>
-		noticeably received facial cosmetic surgery.
-	<<else>>
-		had some facial cosmetic surgery, though it's subtle.
-		<<if $PC.skill.medicine >= 100>>Someone without your knowledge might miss it entirely.<</if>>
-	<</if>>
-	<<if $arcologies[0].FSBodyPurist != "unset">>
-		<<if $activeSlave.faceImplant > 30>>
-			This is considered extremely tragic by a society that values bodily purity.
-		<<else>>
-			Since society values bodily purity, even this subtlety affects $his attractiveness when it's noticed.
-		<</if>>
-	<<elseif $arcologies[0].FSTransformationFetishist != "unset">>
-		<<if $activeSlave.faceImplant > 30>>
-			Your transformationist society doesn't think this <<if $activeSlave.face >= -10>>reduces $his attractiveness<<else>>makes $him uglier<</if>>.
-		<</if>>
-	<<else>>
-		<<if $activeSlave.faceImplant > 30>>
-			The effect is enough to reduce $his attractiveness.
-		<</if>>
-	<</if>>
-<</if>>
-<<if $activeSlave.smells == -1>>
-	$He has no sense of smell, but this isn't immediately obvious just by looking at $his nose.
-<</if>>
-
-<<if $showBodyMods == 1>>
-	<<if $activeSlave.fuckdoll == 0>>
-		<<= App.Desc.makeup($activeSlave)>>
-	<</if>>
-<</if>>
-
-<</widget>>
-
-<<widget "hornDescription">>
-	<<if $activeSlave.horn == "curved succubus horns">>
-		$He has
-		<<if $activeSlave.face > 40>>
-			majestic $activeSlave.hornColor horns that jut out from the back of $his head and curve forward, looking almost like a crown.
-		<<elseif $activeSlave.face > 0>>
-			imposing $activeSlave.hornColor horns that jut out from the back of $his head and curve forward nicely.
-		<<else>>
-			terrifying $activeSlave.hornColor horns that jut out from the back of $his head and curve forward menacingly.
-		<</if>>
-	<<elseif $activeSlave.horn == "backswept horns">>
-		<<if $activeSlave.face > 40>>
-			majestic $activeSlave.hornColor horns that jut out the front of $his head and curve backwards, like some royal headdress.
-		<<elseif $activeSlave.face > 0>>
-			imposing $activeSlave.hornColor horns that jut out the front of $his head and curve backwards nicely.
-		<<else>>
-			terrifying $activeSlave.hornColor horns that jut out the front of $his head and curve backwards, looking like some twisted helmet.
-		<</if>>
-	<<elseif $activeSlave.horn == "cow horns">>
-		$He has two $activeSlave.hornColor cow horns on the sides of $his head; they curve sharply upward.
-	<<elseif $activeSlave.horn == "two long oni horns">>
-		$He has two long $activeSlave.hornColor horns sticking straight up out of $his forehead<<if $activeSlave.devotion > 20>>; $he holds them up proudly<</if>>.
-	<<elseif $activeSlave.horn == "one long oni horn">>
-		$He has a long $activeSlave.hornColor horn sticking straight up out of $his forehead<<if $activeSlave.devotion > 20>>; $he holds it up proudly<</if>>.
-	<<elseif $activeSlave.horn == "small horns">>
-		$He has cute, little $activeSlave.hornColor horns sticking out of $his head.
-	<</if>>
-<</widget>>
-
-<<widget "mouthDescription">>
-
-$He has
-<<if $activeSlave.lips <= 10>>
-	thin, unattractive lips.
-<<elseif $activeSlave.lips <= 20>>
-	normal lips.
-<<elseif $activeSlave.lips <= 40>>
-	full, attractive lips.
-<<elseif $activeSlave.lips <= 70>>
-	plump, beestung lips.
-<<elseif $activeSlave.lips <= 95>>
-	huge, obviously augmented lips.
-<<else>>
-	a facepussy: $his lips are so huge that they're always a bit parted in the middle, forming a moist, inviting hole<<if $PC.dick != 0>> for cock<</if>>.
-<</if>>
-
-<<if $showImplantEffects == 1>>
-	<<if $arcologies[0].FSTransformationFetishist != "unset">>
-		<<if $activeSlave.lipsImplant > 0>>
-			They are about <<print Math.floor(($activeSlave.lipsImplant/$activeSlave.lips)*100)>>% implant.
-		<</if>>
-		<<if ($arcologies[0].FSTransformationFetishist > 20)>>
-			<<if $activeSlave.lips > 70>>
-				<<if ($activeSlave.lipsImplant/$activeSlave.lips < .50)>>
-					$His lips are huge and @@.red;disgustingly natural@@ for their size.
-				<<else>>
-					$His lips are huge and @@.green;obviously implants,@@ as they should be.
-				<</if>>
-			<</if>>
-		<</if>>
-	<</if>>
-<</if>>
-
-<<if $activeSlave.fuckdoll > 0>>
-	$His mouth is held open by the suit's oral insert.
-<<elseif ($activeSlave.assignment == "work in the dairy") && ($dairyRestraintsSetting > 1)>>
-	<<if ($dairyFeedersSetting > 1)>>
-		$His milking machine has a phallus a long way down $his throat to rehydrate $him.
-	<<else>>
-		$He's got $his mouth wrapped around a phallus provided by $his milking machine, and is sucking it off for hydration.
-	<</if>>
-<<else>>
-	<<if canTalk($activeSlave)>>
-		<<if $activeSlave.lips > 70>>
-			$He can barely enunciate past $his dick-sucking lips; '<<= WrittenMaster($activeSlave)>>' comes out as '<<= lispReplace(WrittenMaster($activeSlave))>>.'
-		<</if>>
-	<</if>>
-	<<if $activeSlave.teeth != "normal">>
-		<<if $activeSlave.teeth == "crooked">>
-			$His teeth are @@.yellow;crooked,@@ detracting from $his beauty whenever $he opens $his mouth.
-		<<elseif $activeSlave.teeth == "straightening braces">>
-			$He has braces,
-			<<if $activeSlave.visualAge > 35>>
-				an amusing sight on such a mature $woman.
-			<<elseif ($activeSlave.visualAge > 14) && ($activeSlave.visualAge < 18)>>
-				a cute look on such a young $girl.
-			<<else>>
-				and occasionally looks preoccupied with discomfort as they straighten $his teeth.
-			<</if>>
-		<<elseif $activeSlave.teeth == "cosmetic braces">>
-			$He's wearing braces despite $his straight teeth,
-			<<if $activeSlave.visualAge > 35>>
-				an amusing sight on such a mature $woman.
-			<<elseif ($activeSlave.visualAge > 14) && ($activeSlave.visualAge < 18)>>
-				a cute look on such a young $girl.
-			<<else>>
-				just for appearances.
-			<</if>>
-		<<elseif $activeSlave.teeth == "gapped">>
-			$He has a prominent gap between $his front teeth<<if $activeSlave.faceShape == "cute">> that suits $his cute face surprisingly well<</if>>.
-			<<if canTalk($activeSlave)>>
-				It also leaves $him with a slight lisp.
-			<</if>>
-		<<elseif $activeSlave.teeth == "removable">>
-			$His teeth have been removed and replaced with high-quality dentures. It's difficult to tell anything's unusual until you take them out for gummy oral sex.
-		<<elseif $activeSlave.teeth == "pointy">>
-			$His teeth have been replaced with realistic implants that mimic the dentition of a carnivore. $His smiles are frightening, and $he can bare them to become truly terrifying.
-		<<elseif $activeSlave.teeth == "fangs">>
-			$His upper canine teeth have been replaced with realistic implants that mimic fangs. $His smiles are frightening, and $he can bare them to become truly terrifying.
-		<<elseif $activeSlave.teeth == "fang">>
-			One of $his upper canine teeth has been replaced with realistic implant shaped like a fang.
-			<<if $activeSlave.faceShape == "cute">>
-				It gives $his cute face an added charm<<if $activeSlave.lips <= 50>>, especially when it rests over $his lower lip<</if>>.
-			<<else>>
-				<<if $activeSlave.lips <= 50>>
-					It stands out when it rests over $his lower lip.
-				<<else>>
-					It doesn't fit well in $his mouth and frequently prods $his fat lower lip.
-				<</if>>
-			<</if>>
-		<<elseif $activeSlave.teeth == "baby">>
-			$He still has $his baby teeth.
-		<<elseif $activeSlave.teeth == "mixed">>
-			$He is in the process of replacing $his baby teeth.
-		<</if>>
-	<</if>>
-<</if>>
-<<if $activeSlave.tastes == -1>>
-	$He has no sense of taste, but this isn't immediately obvious just by looking at $his tongue.
-<</if>>
-
-<<= App.Desc.mods($activeSlave, "lips")>>
-<<= App.Desc.mods($activeSlave, "tongue")>>
-
-<<if $activeSlave.fuckdoll > 0>>
-	<<if $PC.dick != 0>>Sticking a dick<<else>>Sliding a dildo<</if>> into $his <<if $activeSlave.lips > 95>>facepussy<<else>>mouth insert<</if>>
-	<<if $activeSlave.fuckdoll <= 45>>
-		mostly results in gagging.
-	<<else>>
-		offers its user a selection of delightful face hole massage options.
-	<</if>>
-<<else>>
-	$He is
-	<<if $activeSlave.skill.oral >= 100>>an @@.aquamarine;oral sex master.@@
-	<<elseif $activeSlave.skill.oral > 60>>an @@.aquamarine;expert at oral.@@
-	<<elseif $activeSlave.skill.oral > 30>>@@.aquamarine;orally skilled.@@
-	<<elseif $activeSlave.skill.oral > 10>>@@.aquamarine;capable of basic oral sex.@@
-	<<else>>unskilled at oral sex.
-	<</if>>
-<</if>>
-
-<</widget>>
-
-<<widget "pregnancyDescription">>
-
-<<if $activeSlave.pregSource > 0>>
-	<<set _lsd = findFather($activeSlave.pregSource)>>
-	<<if def _lsd>>
-		<<set _daddy = SlaveFullName(_lsd)>>
-	<<else>>
-		<<set _daddy = "partner">>
-	<</if>>
-<<elseif $activeSlave.pregSource in $missingTable && $showMissingSlaves>>
-	<<set _daddy = $missingTable[$activeSlave.pregSource].fullName>>
-<</if>>
-
-<<if ($activeSlave.preg == -2) && ($activeSlave.vagina < 0) && ($activeSlave.mpreg == 0)>>
-<<elseif ($activeSlave.preg <= -2) && ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1)>>
-	$He is sterile.
-<<elseif ($activeSlave.pregWeek < 0) && ($activeSlave.ovaries == 1 || $activeSlave.mpreg == 1)>>
-	$He is recovering from $his recent pregnancy.
-<<elseif $activeSlave.preg == 0 && $activeSlave.vagina > -1>>
-	<<if $activeSlave.readyOva > 30>>
-		$His lower belly is noticeably bloated, $his breasts bigger and more sensitive, and $his pussy swollen and leaking fluids. $He desperately needs a dick in $him and reminds you of a bitch in heat.
-	<<elseif $activeSlave.readyOva > 20>>
-		$His lower belly is noticeably bloated and $his pussy swollen and leaking fluids. $He is very ready to be seeded.
-	<<elseif $activeSlave.readyOva > 2>>
-		$His lower belly is slightly bloated and $his pussy swollen and leaking fluids. $He is ready to be seeded.
-	<</if>>
-<<elseif $activeSlave.bellyPreg >= 1000000>>
-	$He is @@.pink;impossibly pregnant@@ with
-	<<if $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.375>>
-		<<if $activeSlave.pregType == 1>>
-			a single full grown child.
-		<<elseif $activeSlave.pregType >= 10>>
-			$activeSlave.pregType overgrown babies.
-		<<else>>
-			overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-		<</if>>
-		$He is horrifically overdue; $he should have given birth a staggering <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-	<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.25>>
-		<<if $activeSlave.pregType == 1>>
-			a single full grown child.
-		<<elseif $activeSlave.pregType >= 10>>
-			$activeSlave.pregType overgrown babies.
-		<<else>>
-			overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-		<</if>>
-		$He is extremely overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-	<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.075>>
-		<<if $activeSlave.pregType == 1>>
-			a single full grown child.
-		<<elseif $activeSlave.pregType >= 10>>
-			$activeSlave.pregType overgrown babies.
-		<<else>>
-			overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-		<</if>>
-		$He is very overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-	<<else>>
-		a staggering $activeSlave.pregType babies.
-	<</if>>
-	<<superfetationDesc>>
-<<elseif $activeSlave.bellyPreg >= 750000>>
-	$He is
-	<<if $activeSlave.belly > ($activeSlave.pregAdaptation*1000)>>
-		@@.red;on the brink of bursting!@@ $His belly is painfully stretched and $his womb packed to capacity; the slightest provocation could cause $him to rupture.
-	<<else>>
-		@@.pink;unbelievably pregnant@@ with $activeSlave.pregType babies.
-	<</if>>
-	<<if $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.375>>
-		$He is horrifically overdue; $he should have given birth a staggering <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-	<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.25>>
-		$He is extremely overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-	<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.075>>
-		$He is very overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-	<</if>>
-	<<superfetationDesc>>
-<<elseif $activeSlave.bellyImplant >= 750000>>
-	$He looks @@.red;ready to pop!@@ $His stomach is <<if $activeSlave.belly > ($activeSlave.pregAdaptation*1000)>>painfully<<else>>frighteningly<</if>> stretched by $his straining <<print $activeSlave.bellyImplant>>cc belly implant. It is well past it's recommended capacity and at risk of rupturing.
-<<elseif $activeSlave.bellyPreg >= 600000>>
-	$He is @@.pink;dangerously pregnant,@@ $his overburdened womb is filled with
-	<<if $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.375>>
-		<<if $activeSlave.pregType == 1>>
-			a single overgrown baby.
-		<<elseif $activeSlave.pregType >= 10>>
-			$activeSlave.pregType overgrown babies.
-		<<else>>
-			overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-		<</if>>
-		$He is horrifically overdue; $he should have given birth a staggering <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-	<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.25>>
-		<<if $activeSlave.pregType == 1>>
-			a single overgrown baby.
-		<<elseif $activeSlave.pregType >= 10>>
-			$activeSlave.pregType overgrown babies.
-		<<else>>
-			overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-		<</if>>
-		$He is extremely overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-	<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.075>>
-		<<if $activeSlave.pregType == 1>>
-			a single overgrown baby.
-		<<elseif $activeSlave.pregType >= 10>>
-			$activeSlave.pregType overgrown babies.
-		<<else>>
-			overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-		<</if>>
-		$He is very overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-	<<else>>
-		$activeSlave.pregType babies.
-	<</if>>
-	<<superfetationDesc>>
-<<elseif $activeSlave.bellyImplant >= 600000>>
-	$He looks @@.pink;dangerously pregnant.@@ $He stomach is massively stretched by $his absurdly overfilled <<print $activeSlave.bellyImplant>>cc belly implant.
-<<elseif $activeSlave.bellyPreg >= 450000>>
-	$He is @@.pink;grotesquely pregnant,@@ $his womb is packed with
-	<<if $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.375>>
-		<<if $activeSlave.pregType == 1>>
-			a single overgrown baby.
-		<<elseif $activeSlave.pregType >= 10>>
-			$activeSlave.pregType overgrown babies.
-		<<else>>
-			overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-		<</if>>
-		$He is horrifically overdue; $he should have given birth a staggering <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-	<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.25>>
-		<<if $activeSlave.pregType == 1>>
-			a single overgrown baby.
-		<<elseif $activeSlave.pregType >= 10>>
-			$activeSlave.pregType overgrown babies.
-		<<else>>
-			overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-		<</if>>
-		$He is extremely overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-	<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.075>>
-		<<if $activeSlave.pregType == 1>>
-			a single overgrown baby.
-		<<elseif $activeSlave.pregType >= 10>>
-			$activeSlave.pregType overgrown babies.
-		<<else>>
-			overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-		<</if>>
-		$He is very overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-	<<else>>
-		$activeSlave.pregType babies.
-	<</if>>
-	<<superfetationDesc>>
-<<elseif $activeSlave.bellyImplant >= 450000>>
-	$He looks @@.pink;absurdly pregnant.@@ $He stomach is massively stretched by $his overfilled <<print $activeSlave.bellyImplant>>cc belly implant.
-<<elseif $activeSlave.bellyPreg >= 300000>>
-	$He is @@.pink;absurdly pregnant@@ with
-	<<if $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.375>>
-		<<if $activeSlave.pregType == 1>>
-			a single overgrown baby.
-		<<elseif $activeSlave.pregType >= 10>>
-			$activeSlave.pregType overgrown babies.
-		<<else>>
-			overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-		<</if>>
-		$He is horrifically overdue; $he should have given birth a staggering <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-	<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.25>>
-		<<if $activeSlave.pregType == 1>>
-			a single overgrown baby.
-		<<elseif $activeSlave.pregType >= 10>>
-			$activeSlave.pregType overgrown babies.
-		<<else>>
-			overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-		<</if>>
-		$He is extremely overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-	<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.075>>
-		<<if $activeSlave.pregType == 1>>
-			a single overgrown baby.
-		<<elseif $activeSlave.pregType >= 10>>
-			$activeSlave.pregType overgrown babies.
-		<<else>>
-			overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-		<</if>>
-		$He is very overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-	<<else>>
-		$activeSlave.pregType children.
-	<</if>>
-	<<superfetationDesc>>
-<<elseif $activeSlave.bellyImplant >= 300000>>
-	$He looks @@.pink;absurdly pregnant.@@ $His overburdened middle is filled by $his <<print $activeSlave.bellyImplant>>cc belly implant.
-<<elseif $activeSlave.bellyPreg >= 120000>>
-	$He is
-	<<if $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.375>>
-		@@.pink;obscenely pregnant@@ with
-		<<if $activeSlave.pregType == 1>>
-			a single overgrown baby.
-		<<elseif $activeSlave.pregType >= 10>>
-			$activeSlave.pregType overgrown babies.
-		<<else>>
-			overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-		<</if>>
-		$He is horrifically overdue; $he should have given birth a staggering <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-	<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.25>>
-		@@.pink;obscenely pregnant@@ with
-		<<if $activeSlave.pregType == 1>>
-			a single overgrown baby.
-		<<elseif $activeSlave.pregType >= 10>>
-			$activeSlave.pregType overgrown babies.
-		<<else>>
-			overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-		<</if>>
-		$He is extremely overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-	<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.075>>
-		@@.pink;obscenely pregnant@@ with
-		<<if $activeSlave.pregType == 1>>
-			a single overgrown baby.
-		<<elseif $activeSlave.pregType >= 10>>
-			$activeSlave.pregType overgrown babies.
-		<<else>>
-			overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-		<</if>>
-		$He is very overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-	<<elseif $activeSlave.pregType > 9>>
-		@@.pink;obscenely pregnant@@ with
-		<<if $activeSlave.pregType >= 50>>
-			an absurd number of children.
-		<<elseif $activeSlave.pregType >= 30>>
-			far too many children.
-		<<elseif $activeSlave.pregType >= 10>>
-			$activeSlave.pregType children.
-		<<else>>
-			<<print pregNumberName($activeSlave.pregType, 2)>>.
-		<</if>>
-	<<else>>
-		@@.pink;obscenely pregnant:@@ $he's
-		<<if $activeSlave.pregType == 9>>
-			almost ready to give birth to nonuplets.
-		<<else>>
-			ready to give birth to octuplets.
-		<</if>>
-	<</if>>
-	<<superfetationDesc>>
-<<elseif $activeSlave.bellyImplant >= 120000>>
-	$He looks @@.pink;obscenely pregnant with octuplets.@@ $His overburdened middle is filled by $his <<print $activeSlave.bellyImplant>>cc belly implant.
-<<elseif $activeSlave.bellyPreg >= 15000>>
-	$He is
-	<<if $activeSlave.bellyPreg >= 105000>>
-		<<if $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.375>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType == 1>>
-				a single overgrown baby.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType overgrown babies.
-			<<else>>
-				overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-			$He is horrifically overdue; $he should have given birth a staggering <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-		<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.25>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType == 1>>
-				a single overgrown baby.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType overgrown babies.
-			<<else>>
-				overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-			$He is extremely overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-		<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.075>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType == 1>>
-				a single overgrown baby.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType overgrown babies.
-			<<else>>
-				overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-			$He is very overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-		<<elseif $activeSlave.pregType > 8>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType >= 50>>
-				an absurd number of children.
-			<<elseif $activeSlave.pregType >= 30>>
-				far too many children.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType children.
-			<<else>>
-				<<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-		<<else>>
-			@@.pink;massively pregnant:@@ $he's
-			<<if $activeSlave.pregType == 8>>
-				almost ready to give birth to octuplets.
-			<<else>>
-				ready to give birth to septuplets.
-			<</if>>
-		<</if>>
-	<<elseif $activeSlave.bellyPreg >= 90000>>
-		<<if $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.375>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType == 1>>
-				a single overgrown baby.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType overgrown babies.
-			<<else>>
-				overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-			$He is horrifically overdue; $he should have given birth a staggering <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-		<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.25>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType == 1>>
-				a single overgrown baby.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType overgrown babies.
-			<<else>>
-				overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-			$He is extremely overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-		<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.075>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType == 1>>
-				a single overgrown baby.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType overgrown babies.
-			<<else>>
-				overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-			$He is very overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-		<<elseif $activeSlave.pregType > 7>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType >= 50>>
-				an absurd number of children.
-			<<elseif $activeSlave.pregType >= 30>>
-				far too many children.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType children.
-			<<else>>
-				<<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-		<<else>>
-			@@.pink;massively pregnant:@@ $he's
-			<<if $activeSlave.pregType == 7>>
-				almost ready to give birth to septuplets.
-			<<else>>
-				ready to give birth to sextuplets.
-			<</if>>
-		<</if>>
-	<<elseif $activeSlave.bellyPreg >= 75000>>
-		<<if $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.375>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType == 1>>
-				a single overgrown baby.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType overgrown babies.
-			<<else>>
-				overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-			$He is horrifically overdue; $he should have given birth a staggering <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-		<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.25>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType == 1>>
-				a single overgrown baby.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType overgrown babies.
-			<<else>>
-				overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-			$He is extremely overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-		<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.075>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType == 1>>
-				a single overgrown baby.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType overgrown babies.
-			<<else>>
-				overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-			$He is very overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-		<<elseif $activeSlave.pregType > 6>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType >= 50>>
-				an absurd number of children.
-			<<elseif $activeSlave.pregType >= 30>>
-				far too many children.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType children.
-			<<else>>
-				<<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-		<<else>>
-			@@.pink;massively pregnant:@@ $he's
-			<<if $activeSlave.pregType == 6>>
-				almost ready to give birth to sextuplets.
-			<<else>>
-				ready to give birth to quintuplets.
-			<</if>>
-		<</if>>
-	<<elseif $activeSlave.bellyPreg >= 60000>>
-		<<if $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.375>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType == 1>>
-				a single overgrown baby.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType overgrown babies.
-			<<else>>
-				overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-			$He is horrifically overdue; $he should have given birth a staggering <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-		<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.25>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType == 1>>
-				a single overgrown baby.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType overgrown babies.
-			<<else>>
-				overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-			$He is extremely overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-		<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.075>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType == 1>>
-				a single overgrown baby.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType overgrown babies.
-			<<else>>
-				overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-			$He is very overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-		<<elseif $activeSlave.pregType > 5>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType >= 50>>
-				an absurd number of children.
-			<<elseif $activeSlave.pregType >= 30>>
-				far too many children.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType children.
-			<<else>>
-				<<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-		<<else>>
-			@@.pink;massively pregnant:@@ $he's
-			<<if $activeSlave.pregType == 5>>
-				almost ready to give birth to quintuplets.
-			<<else>>
-				ready to give birth to quadruplets.
-			<</if>>
-		<</if>>
-	<<elseif $activeSlave.bellyPreg >= 45000>>
-		<<if $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.375>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType == 1>>
-				a single overgrown baby.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType overgrown babies.
-			<<else>>
-				overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-			$He is horrifically overdue; $he should have given birth a staggering <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-		<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.25>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType == 1>>
-				a single overgrown baby.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType overgrown babies.
-			<<else>>
-				overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-			$He is extremely overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-		<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.075>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType == 1>>
-				a single overgrown baby.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType overgrown babies.
-			<<else>>
-				overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-			$He is very overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-		<<elseif $activeSlave.pregType > 4>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType >= 50>>
-				an absurd number of children.
-			<<elseif $activeSlave.pregType >= 30>>
-				far too many children.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType children.
-			<<else>>
-				<<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-		<<else>>
-			@@.pink;massively pregnant:@@ $he's
-			<<if $activeSlave.pregType == 4>>
-				almost ready to give birth to quadruplets.
-			<<else>>
-				ready to give birth to triplets.
-			<</if>>
-		<</if>>
-	<<elseif $activeSlave.bellyPreg >= 30000>>
-		<<if $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.375>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType == 1>>
-				a single overgrown baby.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType overgrown babies.
-			<<else>>
-				overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-			$He is horrifically overdue; $he should have given birth a staggering <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-		<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.25>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType == 1>>
-				a single overgrown baby.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType overgrown babies.
-			<<else>>
-				overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-			$He is extremely overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-		<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.075>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType == 1>>
-				a single overgrown baby.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType overgrown babies.
-			<<else>>
-				overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-			$He is very overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-		<<elseif $activeSlave.pregType > 3>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType >= 50>>
-				an absurd number of children.
-			<<elseif $activeSlave.pregType >= 30>>
-				far too many children.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType children.
-			<<else>>
-				<<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-		<<else>>
-			@@.pink;massively pregnant:@@ $he's
-			<<if $activeSlave.pregType == 3>>
-				almost ready to give birth to triplets.
-			<<else>>
-				ready to give birth to twins.
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.375>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType == 1>>
-				a single overgrown baby.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType overgrown babies.
-			<<else>>
-				overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-			$He is horrifically overdue; $he should have given birth a staggering <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-		<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.25>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType == 1>>
-				a single overgrown baby.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType overgrown babies.
-			<<else>>
-				overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-			$He is extremely overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-		<<elseif $activeSlave.preg >= $activeSlave.pregData.normalBirth*1.075>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType == 1>>
-				a single overgrown baby.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType overgrown babies.
-			<<else>>
-				overgrown <<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-			$He is very overdue; $he should have given birth <<print ($activeSlave.preg-$activeSlave.pregData.normalBirth)>> weeks ago.
-		<<elseif $activeSlave.pregType > 2>>
-			@@.pink;massively pregnant@@ with
-			<<if $activeSlave.pregType >= 50>>
-				an absurd number of children.
-			<<elseif $activeSlave.pregType >= 30>>
-				far too many children.
-			<<elseif $activeSlave.pregType >= 10>>
-				$activeSlave.pregType children.
-			<<else>>
-				<<print pregNumberName($activeSlave.pregType, 2)>>.
-			<</if>>
-		<<else>>
-			@@.pink;massively pregnant:@@ $he's
-			<<if $activeSlave.pregType == 2>>
-				almost ready to give birth to twins.
-			<<else>>
-				ready to give birth.
-			<</if>>
-		<</if>>
-	<</if>>
-	<<superfetationDesc>>
-<<elseif $activeSlave.bellyImplant >= 105000>>
-	$He looks @@.pink;massively pregnant with septuplets.@@ $He greatly rounded middle is filled by $his <<print $activeSlave.bellyImplant>>cc belly implant.
-<<elseif $activeSlave.bellyImplant >= 90000>>
-	$He looks @@.pink;massively pregnant with sextuplets.@@ $He greatly rounded middle is filled by $his <<print $activeSlave.bellyImplant>>cc belly implant.
-<<elseif $activeSlave.bellyImplant >= 75000>>
-	$He looks @@.pink;massively pregnant with quintuplets.@@ $He greatly rounded middle is filled by $his <<print $activeSlave.bellyImplant>>cc belly implant.
-<<elseif $activeSlave.bellyImplant >= 60000>>
-	$He looks @@.pink;massively pregnant with quadruplets.@@ $He greatly rounded middle is filled by $his <<print $activeSlave.bellyImplant>>cc belly implant.
-<<elseif $activeSlave.bellyImplant >= 45000>>
-	$He looks @@.pink;massively pregnant with triplets.@@ $He greatly rounded middle is filled by $his <<print $activeSlave.bellyImplant>>cc belly implant.
-<<elseif $activeSlave.bellyImplant >= 30000>>
-	$He looks @@.pink;massively pregnant with twins.@@ $He greatly rounded middle is filled by $his <<print $activeSlave.bellyImplant>>cc belly implant.
-<<elseif $activeSlave.bellyImplant >= 15000>>
-	$He looks @@.pink;massively pregnant.@@ $He greatly rounded middle is filled by $his <<print $activeSlave.bellyImplant>>cc belly implant.
-<<elseif $activeSlave.bellyPreg >= 10000>>
-	$He is
-	<<if $activeSlave.pregType > 2>>
-		@@.pink;hugely pregnant,@@ despite how early in $his pregnancy $he is: $he's carrying
-		<<if $activeSlave.pregType >= 50>>
-			an absurd number of children.
-		<<elseif $activeSlave.pregType >= 30>>
-			far too many children.
-		<<elseif $activeSlave.pregType >= 10>>
-			$activeSlave.pregType children.
-		<<else>>
-			<<print pregNumberName($activeSlave.pregType, 2)>>.
-		<</if>>
-	<<else>>
-		@@.pink;hugely pregnant:@@ $he's
-		<<if $activeSlave.pregType == 2>>
-			carrying twins.
-		<<else>>
-			almost ready to give birth.
-		<</if>>
-	<</if>>
-	<<superfetationDesc>>
-<<elseif $activeSlave.bellyImplant >= 10000>>
-	$He looks @@.pink;hugely pregnant.@@ $He greatly rounded middle is filled by $his <<print $activeSlave.bellyImplant>>cc belly implant.
-<<elseif $activeSlave.bellyPreg >= 5000>>
-	$He is
-	<<if $activeSlave.pregType > 2>>
-		@@.pink;very pregnant,@@ despite how early in $his pregnancy $he is: $he's carrying
-		<<if $activeSlave.pregType >= 50>>
-			an absurd number of children.
-		<<elseif $activeSlave.pregType >= 30>>
-			far too many children.
-		<<elseif $activeSlave.pregType >= 10>>
-			$activeSlave.pregType children.
-		<<else>>
-			<<print pregNumberName($activeSlave.pregType, 2)>>.
-		<</if>>
-	<<else>>
-		@@.pink;very pregnant:@@
-		<<if $activeSlave.pregType == 2>>
-			$he's carrying twins.
-		<<else>>
-			the baby inside $him is growing rapidly.
-		<</if>>
-	<</if>>
-	<<superfetationDesc>>
-<<elseif $activeSlave.bellyImplant >= 5000>>
-	$He looks @@.pink;very pregnant.@@ $He rounded middle is filled by $his <<print $activeSlave.bellyImplant>>cc belly implant.
-<<elseif $activeSlave.bellyPreg >= 1500>>
-	$He is
-	<<if $activeSlave.pregType > 2>>
-		@@.pink;visibly pregnant,@@ despite how early in $his pregnancy $he is: $he's carrying
-		<<if $activeSlave.pregType >= 50>>
-			an absurd number of children.
-		<<elseif $activeSlave.pregType >= 30>>
-			far too many children.
-		<<elseif $activeSlave.pregType >= 10>>
-			$activeSlave.pregType children.
-		<<else>>
-			<<print pregNumberName($activeSlave.pregType, 2)>>.
-		<</if>>
-	<<else>>
-		@@.pink;visibly pregnant.@@
-	<</if>>
-	<<superfetationDesc>>
-<<elseif $activeSlave.bellyImplant >= 1500>>
-	$He looks @@.pink;visibly pregnant.@@ $He rounded middle is caused by $his <<print $activeSlave.bellyImplant>>cc belly implant.
-<<elseif $activeSlave.bellyPreg >= 100>>
-	$He is @@.pink;pregnant@@ and just beginning to show, though it is hard to tell at a glance.
-	<<superfetationDesc>>
-<<elseif $activeSlave.bellyImplant > 0>>
-	$He has an abdominal implant, though it doesn't round out $his belly too much yet at a tiny <<print $activeSlave.bellyImplant>>ccs.
-<<elseif $activeSlave.bellyImplant == 0>>
-	$He has an abdominal implant, but it is completely empty.
-<<elseif $activeSlave.pregKnown == 1>>
-	$He is @@.pink;pregnant,@@ though it isn't visible yet.
-	<<superfetationDesc>>
-<<elseif $activeSlave.preg > 0 && $activeSlave.pregKnown == 0>>
-	$His period is late.
-<</if>>
-<<if $activeSlave.preg+5 <= $activeSlave.pregWeek && $activeSlave.preg <= $activeSlave.pregData.normalBirth+2 && $activeSlave.bellyPreg >= 100>>
-	Despite being pregnant for $activeSlave.pregWeek weeks,
-	<<if $activeSlave.preg > $activeSlave.pregData.minLiveBirth && $activeSlave.preg+10 <= $activeSlave.pregWeek>>
-		$his pregnancy is finally nearing its end.
-	<<elseif $activeSlave.preg+$activeSlave.pregData.normalBirth <= $activeSlave.pregWeek>>
-		<<if $activeSlave.preg == $activeSlave.pregWeek/2>>
-			$he could shockingly pass for a girl half as far along.
-		<<elseif $activeSlave.preg == $activeSlave.pregWeek/4>>
-			$he could shockingly pass for a girl only a quarter as far along.
-		<<else>>
-			$he shockingly only looks like a girl on $his <<= ordinalSuffix($activeSlave.preg)>> week of pregnancy.
-		<</if>>
-	<<elseif $activeSlave.preg+($activeSlave.pregData.normalBirth/2) <= $activeSlave.pregWeek>>
-		<<if $activeSlave.preg == $activeSlave.pregWeek/2>>
-			$he could surprisingly pass for a girl half as far along.
-		<<elseif $activeSlave.preg == $activeSlave.pregWeek/4>>
-			$he could surprisingly pass for a girl only a quarter as far along.
-		<<else>>
-			$he surprisingly only looks like a girl on $his <<= ordinalSuffix($activeSlave.preg)>> week of pregnancy.
-		<</if>>
-	<<elseif $activeSlave.preg+($activeSlave.pregData.normalBirth/4) <= $activeSlave.pregWeek>>
-		<<if $activeSlave.preg == $activeSlave.pregWeek/2>>
-			$he could pass for a girl half as far along.
-		<<elseif $activeSlave.preg == $activeSlave.pregWeek/4>>
-			$he could pass for a girl only a quarter as far along.
-		<<else>>
-			$he only looks like a woman on $his <<= ordinalSuffix($activeSlave.preg)>> week of pregnancy.
-		<</if>>
-	<<else>>
-		$his pregnancy is smaller than anticipated.
-	<</if>>
-<<elseif $activeSlave.preg > $activeSlave.pregWeek && $activeSlave.preg <= $activeSlave.pregData.normalBirth+2 && $activeSlave.bellyPreg >= 100>>
-	<<if $activeSlave.preg > $activeSlave.pregData.minLiveBirth && $activeSlave.preg >= $activeSlave.pregWeek+10>>
-		Even though $he is a mere $activeSlave.pregWeek weeks along, $his pregnancy is at its end.
-	<<elseif $activeSlave.preg >= $activeSlave.pregWeek+($activeSlave.pregData.normalBirth/2.66)>>
-		Despite being pregnant for only $activeSlave.pregWeek weeks,
-		<<if $activeSlave.preg == $activeSlave.pregWeek*2>>
-			$he could shockingly pass for a girl twice as far along.
-		<<elseif $activeSlave.preg == $activeSlave.pregWeek*4>>
-			$he could shockingly pass for a girl nearly four times as far along.
-		<<else>>
-			$he shockingly looks like a girl on $his <<= ordinalSuffix($activeSlave.preg)>> week of pregnancy.
-		<</if>>
-	<<elseif $activeSlave.preg >= $activeSlave.pregWeek+($activeSlave.pregData.normalBirth/4)>>
-		Despite being pregnant for only $activeSlave.pregWeek weeks,
-		<<if $activeSlave.preg == $activeSlave.pregWeek*2>>
-			$he could surprisingly pass for a girl twice as far along.
-		<<elseif $activeSlave.preg == $activeSlave.pregWeek*4>>
-			$he could surprisingly pass for a girl nearly four times as far along.
-		<<else>>
-			$he surprisingly looks like a girl on $his <<= ordinalSuffix($activeSlave.preg)>> week of pregnancy.
-		<</if>>
-	<<elseif $activeSlave.preg >= $activeSlave.pregWeek+($activeSlave.pregData.normalBirth/8)>>
-		Despite being pregnant for only $activeSlave.pregWeek weeks,
-		<<if $activeSlave.preg == $activeSlave.pregWeek*2>>
-			$he could pass for a girl twice as far along.
-		<<elseif $activeSlave.preg == $activeSlave.pregWeek*4>>
-			$he could pass for a girl nearly four times as far along.
-		<<else>>
-			$he looks like a woman on $his <<= ordinalSuffix($activeSlave.preg)>> week of pregnancy.
-		<</if>>
-	<<else>>
-		Despite being pregnant for only $activeSlave.pregWeek weeks, $his pregnancy is larger than anticipated.
-	<</if>>
-<</if>>
-<<if $activeSlave.pregKnown == 1 && $saleDescription == 0>>
-	<<set _slaveWD = WombGetLittersData($activeSlave)>>
-	<<if $activeSlave.geneticQuirks.superfetation == 2 && _slaveWD.litters.length > 1>>
-		<<if $pregnancyMonitoringUpgrade != 1>>
-			<<set _sameFather = 1, _sameFatherID = _slaveWD.litterData[0][0].fatherID>>
-			<<for _litCount = 0; _litCount < _slaveWD.litters.length; _litCount++>>
-				<<if _slaveWD.litterData[_litCount][_litCount] != _sameFatherID>>
-					<<set _sameFather = 0>>
-					<<break>>
-				<</if>>
-			<</for>>
-			$His superfetation has resulted in multiple simultaneous pregnancies;
-			<<if _sameFather != 1>>
-				tests report multiple different sources.
-			<<else>>
-				<<if _slaveWD.litterData[_litCount][0].age > $activeSlave.pregData.normalBirth/8>>
-					all of them too young to tell the father of.
-				<<elseif $activeSlave.pregSource == -7>>
-					all of them modified children from the gene lab.
-				<<elseif $activeSlave.pregSource == -1>>
-					all of them yours.
-				<<elseif $activeSlave.pregSource == -2>>
-					all of them fathered by your citizens.
-				<<elseif $activeSlave.pregSource == -3>>
-					all of them fathered by your former Master. He was quite the busy man.
-				<<elseif $activeSlave.pregSource == -4>>
-					all of them fathered by another arcology owner.
-				<<elseif $activeSlave.pregSource == -5>>
-					all of them fathered by one of your clients.
-				<<elseif $activeSlave.pregSource == -6>>
-					all of them fathered by the Societal Elite.
-				<<elseif $activeSlave.pregSource == -9>>
-					all of them fathered by the Futanari Sisters, given how far along $he is and $his history.
-				<<elseif $activeSlave.pregSource == 0>>
-					all of them of unidentifiable sources.
-				<<elseif $activeSlave.pregSource == $activeSlave.ID>>
-					all of them $his own.
-				<<else>>
-					all of them <<print _daddy>>'s.
-				<</if>>
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if $activeSlave.pregSource == -7>>
-			$His womb contains <<if $activeSlave.pregType > 1>><<if $activeSlave.pregType > 10>>many <</if>> modified children<<else>>a modified child<</if>> from the gene lab.
-		<<elseif $activeSlave.preg > $activeSlave.pregData.normalBirth/8>>
-			<<if $activeSlave.pregSource == -1>>
-				Tests show $his womb contains <<if $activeSlave.pregType > 1>><<if $activeSlave.pregType > 10>>many of <</if>>your growing children<<else>>your growing child<</if>>.
-			<<elseif $activeSlave.pregSource == -2>>
-				Tests show $his womb contains <<if $activeSlave.pregType > 1>><<if $activeSlave.pregType > 10>>many <</if>>children <<else>>a child <</if>>fathered by one of your citizens.
-			<<elseif $activeSlave.pregSource == -3>>
-				Tests show $his womb contains <<if $activeSlave.pregType > 1>><<if $activeSlave.pregType > 10>>many <</if>>children <<else>>a child <</if>>fathered by your former Master. He was quite the busy man.
-			<<elseif $activeSlave.pregSource == -4>>
-				Tests show $his womb contains <<if $activeSlave.pregType > 1>><<if $activeSlave.pregType > 10>>many <</if>>children <<else>>a child <</if>>fathered by another arcology owner.
-			<<elseif $activeSlave.pregSource == -5>>
-				Tests show $his womb contains <<if $activeSlave.pregType > 1>><<if $activeSlave.pregType > 10>>many <</if>>children <<else>>a child <</if>>fathered by one of your clients.
-			<<elseif $activeSlave.pregSource == -6>>
-				Tests show $his womb contains <<if $activeSlave.pregType > 1>><<if $activeSlave.pregType > 10>>many <</if>>children <<else>>a child <</if>>fathered by the Societal Elite.
-			<<elseif $activeSlave.pregSource == -9>>
-				$His womb contains <<if $activeSlave.pregType > 1>><<if $activeSlave.pregType > 10>>many <</if>>children <<else>>a child <</if>>fathered by the Futanari Sisters, given how far along $he is and $his history.
-			<<elseif $activeSlave.pregSource == 0>>
-				Tests are inconclusive on who fathered the <<if $activeSlave.pregType > 1>><<if $activeSlave.pregType > 10>>many <</if>>children <<else>>child <</if>>growing in $his womb.
-			<<elseif $activeSlave.pregSource == $activeSlave.ID>>
-				Tests show $he did this to $himself.
-			<<else>>
-				Tests show $his womb contains <<if $activeSlave.pregType > 1>><<if $activeSlave.pregType > 10>>many of <</if>><<print _daddy>>'s growing children<<else>><<print _daddy>>'s growing child<</if>>.
-			<</if>>
-		<<else>>
-			It is too early to tell who exactly fathered the child growing in $his womb.
-		<</if>>
-	<</if>>
-<</if>>
-<<if $activeSlave.bellyPreg > ($activeSlave.pregAdaptation*1000)>>
-	$He is undergoing a @@.red;high risk pregnancy.@@
-<</if>>
-
-<<if $activeSlave.belly >= 10000>>
-	$His stomach is @@.coral;large enough to be in the way,@@ both in daily affairs and during sex.
-<</if>>
-
-<</widget>>
-
-<<widget "superfetationDesc">>
-
-<<set _slaveWD = WombGetLittersData($activeSlave)>>
-<<if $activeSlave.geneticQuirks.superfetation == 2 && _slaveWD.litters.length > 1 && $pregnancyMonitoringUpgrade == 1 && $saleDescription == 0>>
-
-$His womb contains <<= num(_slaveWD.litters.length)>> separate pregnancies;
-<<for _litCount = 0; _litCount < _slaveWD.litters.length; _litCount++>>
-	<<set _countLitter = _slaveWD.countLitter[_litCount]>>
-	<<set _is = _countLitter > 1 ? "are" : "is", _was = _countLitter > 1 ? "were" : "was">>
-	<<if _litCount == 0>>
-		the eldest
-		<<if _countLitter > 1>>
-			set of <<= num(_countLitter)>>,
-		<<else>>
-			one,
-		<</if>>
-		at _slaveWD.litters[_litCount] week<<if _slaveWD.litters[_litCount] > 1>>s<</if>> of development,
-		<<if _slaveWD.litterData[_litCount][0].fatherID == -7>>
-			_is from the gene lab,
-		<<elseif _slaveWD.litterData[_litCount][0].age > $activeSlave.pregData.normalBirth/8>>
-			<<if _slaveWD.litterData[_litCount][0].fatherID == -1>>
-				_was fathered by your seed,
-			<<elseif _slaveWD.litterData[_litCount][0].fatherID == -2>>
-				_was fathered by one of your citizens,
-			<<elseif _slaveWD.litterData[_litCount][0].fatherID == -3>>
-				_was fathered by your former Master,
-			<<elseif _slaveWD.litterData[_litCount][0].fatherID == -4>>
-				_was fathered by another arcology owner,
-			<<elseif _slaveWD.litterData[_litCount][0].fatherID == -5>>
-				_was fathered by one of your clients,
-			<<elseif _slaveWD.litterData[_litCount][0].fatherID == -6>>
-				_was fathered by a member of the Societal Elite,
-			<<elseif _slaveWD.litterData[_litCount][0].fatherID == -9>>
-				_was fathered by the Futanari Sisters,
-			<<elseif _slaveWD.litterData[_litCount][0].fatherID == 0>>
-				_is from an unidentifiable source,
-			<<elseif _slaveWD.litterData[_litCount][0].fatherID == $activeSlave.ID>>
-				_is from $his own handiwork,
-			<<else>>
-				<<if _slaveWD.litterData[_litCount][0].fatherID > 0>>
-					<<set _lsd = findFather(_slaveWD.litterData[_litCount][0].fatherID)>>
-					<<if def _lsd>>
-						<<set _daddy = SlaveFullName(_lsd)>>
-					<<else>>
-						<<set _daddy = "another slave">>
-					<</if>>
-				<<elseif _slaveWD.litterData[_litCount][0].fatherID in $missingTable && $showMissingSlaves>>
-					<<set _daddy = $missingTable[$activeSlave.pregSource].fullName>>
-				<</if>>
-				_was fathered by <<print _daddy>>'s seed,
-			<</if>>
-		<<else>>
-			_is too young to tell the father of,
-		<</if>>
-	<<elseif _litCount == _slaveWD.litters.length-1>>
-		and the youngest
-		<<if _countLitter > 1>>
-			set of <<= num(_countLitter)>>,
-		<<else>>
-			one,
-		<</if>>
-		at _slaveWD.litters[_litCount] week<<if _slaveWD.litters[_litCount] > 1>>s<</if>> of development,
-		<<if _slaveWD.litterData[_litCount][0].fatherID == -7>>
-			_is from the gene lab.
-		<<elseif _slaveWD.litterData[_litCount][0].age > $activeSlave.pregData.normalBirth/8>>
-			<<if _slaveWD.litterData[_litCount][0].fatherID == -1>>
-				_was fathered by your seed.
-			<<elseif _slaveWD.litterData[_litCount][0].fatherID == -2>>
-				_was fathered by one of your citizens.
-			<<elseif _slaveWD.litterData[_litCount][0].fatherID == -3>>
-				_was fathered by your former Master. He was quite the busy man.
-			<<elseif _slaveWD.litterData[_litCount][0].fatherID == -4>>
-				_was fathered by another arcology owner.
-			<<elseif _slaveWD.litterData[_litCount][0].fatherID == -5>>
-				_was fathered by one of your clients.
-			<<elseif _slaveWD.litterData[_litCount][0].fatherID == -6>>
-				_was fathered by a member of the Societal Elite.
-			<<elseif _slaveWD.litterData[_litCount][0].fatherID == -9>>
-				_was fathered by the Futanari Sisters.
-			<<elseif _slaveWD.litterData[_litCount][0].fatherID == 0>>
-				_is from an unidentifiable source.
-			<<elseif _slaveWD.litterData[_litCount][0].fatherID == $activeSlave.ID>>
-				_is from $his own seed.
-			<<else>>
-				<<if _slaveWD.litterData[_litCount][0].fatherID > 0>>
-					<<set _lsd = findFather(_slaveWD.litterData[_litCount][0].fatherID)>>
-					<<if def _lsd>>
-						<<set _daddy = SlaveFullName(_lsd)>>
-					<<else>>
-						<<set _daddy = "another slave">>
-					<</if>>
-				<<elseif _slaveWD.litterData[_litCount][0].fatherID in $missingTable && $showMissingSlaves>>
-					<<set _daddy = $missingTable[$activeSlave.pregSource].fullName>>
-				<</if>>
-				_was fathered by <<print _daddy>>'s seed.
-			<</if>>
-		<<else>>
-			_is too young to tell the father of.
-		<</if>>
-	<<else>>
-		the next set of <<= num(_countLitter)>> at _slaveWD.litters[_litCount] week<<if _slaveWD.litters[_litCount] > 1>>s<</if>> of development
-		<<if _slaveWD.litterData[_litCount][0].fatherID == -7>>
-			_is from the gene lab,
-		<<elseif _slaveWD.litterData[_litCount][0].age > $activeSlave.pregData.normalBirth/8>>
-			<<if _slaveWD.litterData[_litCount][0].fatherID == -1>>
-				_was fathered by your seed,
-			<<elseif _slaveWD.litterData[_litCount][0].fatherID == -2>>
-				_was fathered by one of your citizens,
-			<<elseif _slaveWD.litterData[_litCount][0].fatherID == -3>>
-				_was fathered by your former Master,
-			<<elseif _slaveWD.litterData[_litCount][0].fatherID == -4>>
-				_was fathered by another arcology owner,
-			<<elseif _slaveWD.litterData[_litCount][0].fatherID == -5>>
-				_was fathered by one of your clients,
-			<<elseif _slaveWD.litterData[_litCount][0].fatherID == -6>>
-				_was fathered by a member of the Societal Elite,
-			<<elseif _slaveWD.litterData[_litCount][0].fatherID == -9>>
-				_was fathered by the Futanari Sisters,
-			<<elseif _slaveWD.litterData[_litCount][0].fatherID == 0>>
-				_is from an unidentifiable source,
-			<<elseif _slaveWD.litterData[_litCount][0].fatherID == $activeSlave.ID>>
-				_is from $his own handiwork,
-			<<else>>
-				<<if _slaveWD.litterData[_litCount][0].fatherID > 0>>
-					<<set _lsd = findFather(_slaveWD.litterData[_litCount][0].fatherID)>>
-					<<if def _lsd>>
-						<<set _daddy = SlaveFullName(_lsd)>>
-					<<else>>
-						<<set _daddy = "another slave">>
-					<</if>>
-				<<elseif _slaveWD.litterData[_litCount][0].fatherID in $missingTable && $showMissingSlaves>>
-					<<set _daddy = $missingTable[$activeSlave.pregSource].fullName>>
-				<</if>>
-				_was fathered by <<print _daddy>>'s seed,
-			<</if>>
-		<<else>>
-			_is too young to tell the father of,
-		<</if>>
-	<</if>>
-<</for>>
-
-<</if>>
-
-<</widget>>
-
-<<widget "heelDescription">>
-
-<<if ($activeSlave.heels == 1)>>
-	$His
-	<<if hasBothLegs($activeSlave)>>
-		@@.pink;legs have been altered@@
-	<<elseif hasAnyLegs($activeSlave)>>
-		@@.pink;leg has been altered@@
-	<</if>>
-	so that $he must wear heels in order to walk.
-	<<if ($showClothing == 1) && ($saleDescription == 0)>>
-		<<if (hasAnyLegs($activeSlave))>>
-			<<if ($activeSlave.shoes != "none") && ($activeSlave.shoes != "flats")>>
-				$He is, so $he can walk reasonably well.
-			<<else>>
-				Since $he is without them, $he's crawling on <<if !hasAllLimbs($activeSlave)>>the ground<<else>>all fours<</if>>.
-			<</if>>
-		<</if>>
-	<</if>>
-<</if>>
-
-<</widget>>
-
-
-<<widget "skinDescription">>
-
-<<if $activeSlave.fuckdoll > 0>>
-	The small areas of visible skin are <<print $activeSlave.skin>><<if $activeSlave.markings == "freckles">> and lightly freckled<<if (skinToneLevel($activeSlave.skin) > 5) && (skinToneLevel($activeSlave.skin) < 10) && ($activeSlave.hColor == "red")>>, an attractive combination<</if>><<elseif $activeSlave.markings == "heavily freckled">> and heavily freckled<<if (skinToneLevel($activeSlave.skin) > 5) && (skinToneLevel($activeSlave.skin) < 10) && ($activeSlave.hColor == "red")>>, an attractive combination<</if>><</if>>.
-	<<if ($activeSlave.skin == "sun tanned" || $activeSlave.skin == "spray tanned")>>$His skin has been tanned <<if $activeSlave.skin == "sun tanned">>to a natural, healthy-looking tone<<elseif $activeSlave.skin == "spray tanned">>with obvious, garish-looking makeup<</if>>.<</if>>
-<<elseif ($seeNationality == 1)>>
-	<<if $activeSlave.nationality == 0>>
-		Ethnically, $he's
-	<<elseif $activeSlave.nationality == "slave">>
-		$He's been chattel long enough that slavery is effectively $his nationality; ethnically, $he's
-	<<elseif $activeSlave.nationality == "Stateless">>
-		$He has spent so much time in the Free Cities that their statelessness is effectively $his nationality; ethnically, $he's
-	<<elseif $activeSlave.nationality == "Zimbabwean" && $activeSlave.race == "white">>
-		$He's originally @@.tan;Rhodesian;@@ ethnically, $he's
-	<<elseif $activeSlave.nationality == "Vatican">>
-		$He's originally @@.tan;from Vatican City;@@ ethnically, $he's
-	<<else>>
-		$He's originally @@.tan;<<print $activeSlave.nationality>>;@@ ethnically, $he's
-	<</if>>
-	@@.tan;<<print $activeSlave.race>>,@@ and $his skin is <<print $activeSlave.skin>><<if $activeSlave.markings == "freckles">> and lightly freckled<<if (skinToneLevel($activeSlave.skin) > 5) && (skinToneLevel($activeSlave.skin) < 10) && ($activeSlave.hColor == "red")>>, an attractive combination<</if>><<elseif $activeSlave.markings == "heavily freckled">> and heavily freckled<<if (skinToneLevel($activeSlave.skin) > 5) && (skinToneLevel($activeSlave.skin) < 10) && ($activeSlave.hColor == "red")>>, an attractive combination<</if>><</if>>.
-	<<if ($activeSlave.skin == "sun tanned" || $activeSlave.skin == "spray tanned")>>$His skin has been tanned <<if $activeSlave.skin == "sun tanned">>to a natural, healthy-looking tone<<elseif $activeSlave.skin == "spray tanned">>with obvious, garish-looking makeup<</if>>.<</if>>
-	<<if $activeSlave.race != $activeSlave.origRace && $saleDescription != 1>>
-		$He has received plastic surgery to appear <<print $activeSlave.race>>; $he is originally <<print $activeSlave.origRace>>.
-	<<elseif $activeSlave.race != $activeSlave.origRace && $saleDescription == 1>>
-		<<if $PC.skill.medicine >= 100>>
-			Thanks to your medical experience, you can easily tell that $he was originally <<print $activeSlave.origRace>>, but surgically modified.
-		<<elseif $PC.skill.medicine >= 50>>
-			Oddly enough, $he appears to have a number of $activeSlave.origRace features.
-		<<elseif $PC.skill.slaving >= 50>>
-			Thanks to your experience in buying and selling slaves, you can easily tell that $he is not naturally <<print $activeSlave.race>>.
-		<<elseif random(0,100) < $PC.skill.medicine>>
-			$His features seem slightly off.
-		<</if>>
-	<</if>>
-<<elseif ($seeRace == 1)>>
-	Ethnically, $he's @@.tan;<<print $activeSlave.race>>,@@ and $his skin is <<print $activeSlave.skin>><<if $activeSlave.markings == "freckles">> and lightly freckled<<if (skinToneLevel($activeSlave.skin) > 5) && (skinToneLevel($activeSlave.skin) < 10) && ($activeSlave.hColor == "red")>>, an attractive combination<</if>><<elseif $activeSlave.markings == "heavily freckled">> and heavily freckled<<if (skinToneLevel($activeSlave.skin) > 5) && (skinToneLevel($activeSlave.skin) < 10) && ($activeSlave.hColor == "red")>>, an attractive combination<</if>><</if>>.
-	<<if ($activeSlave.skin == "sun tanned" || $activeSlave.skin == "spray tanned")>>$His skin has been tanned <<if $activeSlave.skin == "sun tanned">>to a natural, healthy-looking tone<<elseif $activeSlave.skin == "spray tanned">>with obvious, garish-looking makeup<</if>>.<</if>>
-	<<if $activeSlave.race != $activeSlave.origRace && $saleDescription != 1>>
-		$He has received plastic surgery to appear <<print $activeSlave.race>>; $he is originally <<print $activeSlave.origRace>>.
-	<<elseif $activeSlave.race != $activeSlave.origRace && $saleDescription == 1>>
-		<<if $PC.skill.medicine >= 100>>
-			Thanks to your medical experience, you can easily tell that $he was originally <<print $activeSlave.origRace>>, but surgically modified.
-		<<elseif $PC.skill.medicine >= 50>>
-			Oddly enough, $he appears to have a number of $activeSlave.origRace features.
-		<<elseif $PC.skill.slaving >= 50>>
-			Thanks to your experience in buying and selling slaves, you can easily tell that $he is not naturally <<print $activeSlave.race>>.
-		<<elseif random(0,100) < $PC.skill.medicine>>
-			$His features seem slightly off.
-		<</if>>
-	<</if>>
-<<else>>
-	$His skin is <<print $activeSlave.skin>><<if $activeSlave.markings == "freckles">> and lightly freckled<<if (skinToneLevel($activeSlave.skin) > 5) && (skinToneLevel($activeSlave.skin) < 10) && ($activeSlave.hColor == "red")>>, an attractive combination<</if>><<elseif $activeSlave.markings == "heavily freckled">> and heavily freckled<<if (skinToneLevel($activeSlave.skin) > 5) && (skinToneLevel($activeSlave.skin) < 10) && ($activeSlave.hColor == "red")>>, an attractive combination<</if>><</if>>.
-	<<if ($activeSlave.skin == "sun tanned" || $activeSlave.skin == "spray tanned")>>$His skin has been tanned <<if $activeSlave.skin == "sun tanned">>to a natural, healthy-looking tone<<elseif $activeSlave.skin == "spray tanned">>with obvious, garish-looking makeup<</if>>.<</if>>
-<</if>>
-
-<</widget>>
-
-<<widget "accentDescription">>
-
-<<if $activeSlave.accent != 0>>
-	<<if $activeSlave.accent == 1>>
-		<<set _accent = either("a beautiful", "a distinctive", "an intriguing", "a light", "a lovely", "a mild", "a pleasant", "a rich", "a slight", "a smooth")>>
-		$He speaks $language in _accent <<print aNational($activeSlave.nationality)>> accent<<if $activeSlave.rules.speech == "accent elimination">>, which the rules encourage $him to suppress<</if>>.
-	<<elseif $activeSlave.accent == 2>>
-		<<set _accent = either("a broad", "a harsh", "a heavy", "an intense", "a marked", "a noticeable", "a rough", "a significant", "a stressed", "a strong", "a thick")>>
-		$He speaks $language in _accent <<print aNational($activeSlave.nationality)>> accent that can be hard to understand<<if $activeSlave.rules.speech == "accent elimination">>, and the rules encourage $him to make an effort to suppress it<</if>>.
-	<<else>>
-		$He speaks little $language, but understands enough to be given orders.
-	<</if>>
-<</if>>
-
-<</widget>>
-
-<<widget "shouldersDescription">>
-
-<<if $activeSlave.fuckdoll == 0>>
-	<<if $activeSlave.shoulders < -1>>
-		$His shoulders and chest are very narrow and
-		<<if $activeSlave.boobs > 2000>>
-			feminine, forcing $his pressed-together tits to spread far beyond $his sides.
-		<<else>>
-			feminine.
-		<</if>>
-	<<elseif $activeSlave.shoulders < 0>>
-		$His shoulders and chest are quite
-		<<if $activeSlave.boobs > 1200>>
-			feminine, causing a lot of cleavage and pressing $his boobs outward beyond $his sides.
-		<<else>>
-			feminine.
-		<</if>>
-	<<elseif $activeSlave.shoulders > 1>>
-		$His shoulders and chest are very
-		<<if $activeSlave.boobs > 600>>
-			broad, making $his boobs look a lot smaller than they actually are.
-		<<else>>
-			broad.
-		<</if>>
-	<<elseif $activeSlave.shoulders > 0>>
-		$His shoulders and chest are fairly
-		<<if $activeSlave.boobs > 600>>
-			broad, making $his tits look smaller than they actually are.
-		<<else>>
-			broad.
-		<</if>>
-	<<else>>
-		$His shoulders and chest are
-		<<if $activeSlave.boobs > 800>>
-			feminine, flattering $his breasts.
-		<<else>>
-			feminine.
-		<</if>>
-	<</if>>
-	<<if $activeSlave.shoulders > $activeSlave.hips>>
-		They're wider than $his hips,
-		<<if $activeSlave.boobs > 2000*($activeSlave.shoulders- $activeSlave.hips)>>
-			but $his massive breasts make it hard to discern.
-		<<elseif $arcologies[0].FSGenderRadicalist != "unset">>
-			giving $him a somewhat mannish appearance.
-		<<elseif $arcologies[0].FSGenderFundamentalist != "unset">>
-			giving $him an @@.red;ugly, mannish appearance.@@
-		<<else>>
-			giving $him an @@.red;unattractive, somewhat mannish, appearance.@@
-		<</if>>
-	<</if>>
-<</if>>
-
-<</widget>>
-
-<<widget "heightImplantDescription">>
-
-<<if $activeSlave.heightImplant > 1>>
-	The proportions of $his <<if hasAnyArms($activeSlave)>>arm<<if hasBothArms($activeSlave)>>s<</if>><<if hasAnyLegs($activeSlave)>> and <</if>><</if>><<if hasAnyLegs($activeSlave)>>leg<<if hasBothLegs($activeSlave)>>s<</if>><</if>> are wrong; it's obvious that they have been artificially lengthened.
-<<elseif $activeSlave.heightImplant > 0>>
-	The proportions of $his <<if hasAnyArms($activeSlave)>>arm<<if hasBothArms($activeSlave)>>s<</if>><<if hasAnyLegs($activeSlave)>> and <</if>><</if>><<if hasAnyLegs($activeSlave)>>leg<<if hasBothLegs($activeSlave)>>s<</if>><</if>> are odd, as though they have been artificially lengthened.
-<<elseif $activeSlave.heightImplant < -1>>
-	The proportions of $his <<if hasAnyArms($activeSlave)>>arm<<if hasBothArms($activeSlave)>>s<</if>><<if hasAnyLegs($activeSlave)>> and <</if>><</if>><<if hasAnyLegs($activeSlave)>>leg<<if hasBothLegs($activeSlave)>>s<</if>><</if>> are wrong; it's obvious that they have been artificially shortened.
-<<elseif $activeSlave.heightImplant < 0>>
-	The proportions of $his <<if hasAnyArms($activeSlave)>>arm<<if hasBothArms($activeSlave)>>s<</if>><<if hasAnyLegs($activeSlave)>> and <</if>><</if>><<if hasAnyLegs($activeSlave)>>leg<<if hasBothLegs($activeSlave)>>s<</if>><</if>> are odd, as though they have been surgically shortened.
-<</if>>
-
-<</widget>>
-
-<<widget "boobsShapeDescription">>
-
-<<if $showImplantEffects == 1>>
-
-	<<if $activeSlave.fuckdoll > 0>>
-		<<if $activeSlave.boobs > 250>>
-			The natural shape of its breasts is completely irrelevant, since the suit forces each of them
-			<<if $activeSlave.boobs > 5000>>
-				into a monstrous orb shape.
-			<<elseif $activeSlave.boobs > 1000>>
-				into an orb shape.
-			<<else>>
-				up and out like a severe push-up bra.
-			<</if>>
-		<</if>>
-	<<elseif ($activeSlave.boobsImplant == 0)>>
-		<<switch $activeSlave.boobShape>>
-		<<case "perky">>
-			<<if $activeSlave.boobs > 12000>>
-				When $he's on $his back, some of their natural perkiness can still be seen in the way they tend to obscure $his head and shoulders.
-			<<elseif $activeSlave.boobs > 5000>>
-				Their natural perkiness has helped them resist their enormous size, making them look like a normal pair of merely gigantic tits that have grown to be bigger than $his head without changing shape.
-			<<elseif $activeSlave.boobs > 2500>>
-				They're orbs of soft flesh, resting heavily against $his chest and each other. They remain naturally perky, defying gravity.
-			<<elseif $activeSlave.boobs > 1000>>
-				They're somewhat perky despite their large size, with $his nipples pointing slightly upward.
-			<<elseif $activeSlave.boobs > 500>>
-				They're full and perky, and $his nipples point upward.
-			<<elseif $activeSlave.boobs > 250>>
-				They're perky, and $his nipples point upward.
-			<<else>>
-				They're very minimal.
-			<</if>>
-		<<case "downward-facing">>
-			<<if $activeSlave.boobs > 12000>>
-				Their naturally downward-facing shape makes them a convenient cushion when $he's face-down, naturally placing $him in a kneeling position.
-			<<elseif $activeSlave.boobs > 5000>>
-				They're huge pillows of soft flesh, distorted by gravity and where they rest against $his stomach and each other. Naturally downward-facing, they are so big that $his nipples point directly down.
-			<<elseif $activeSlave.boobs > 2500>>
-				They're orbs of soft flesh, resting heavily against $his stomach and each other. Since they are naturally downward-facing, most of their mass rests low.
-			<<elseif $activeSlave.boobs > 1000>>
-				They're not attractively shaped, with $his nipples pointing downward more strongly than they should for $his breast size.
-			<<elseif $activeSlave.boobs > 500>>
-				They're not attractively shaped, with $his nipples pointing down.
-			<<elseif $activeSlave.boobs > 250>>
-				They're not attractively shaped, with $his nipples pointing down despite $his small breasts.
-			<<else>>
-				They're very minimal.
-			<</if>>
-		<<case "torpedo-shaped">>
-			<<if $activeSlave.boobs > 12000>>
-				They are naturally torpedo-shaped, which can be seen in the way they stick out more than a <<if $showInches == 2>>yard<<else>>meter<</if>> in front of $him when $he sits up.
-			<<elseif $activeSlave.boobs > 5000>>
-				They're huge promontories of soft flesh. Their natural torpedo shape remains to a certain extent, $his swaying breasts reaching an incredibly long way out from $his chest.
-			<<elseif $activeSlave.boobs > 2500>>
-				They're orbs of soft flesh, resting heavily against $his chest and each other. Their natural torpedo shape is distorted by their weight.
-			<<elseif $activeSlave.boobs > 1000>>
-				They're strongly torpedo-shaped despite their large size, projecting a long way from $his chest and swaying lewdly when $he's naked.
-			<<elseif $activeSlave.boobs > 500>>
-				They're strongly torpedo-shaped, projecting a long way from $his chest and swaying cutely when $he's naked.
-			<<elseif $activeSlave.boobs > 250>>
-				They're strongly torpedo-shaped despite their small size, projecting some way from $his chest.
-			<<else>>
-				They're very minimal.
-			<</if>>
-		<<case "wide-set">>
-			<<if $activeSlave.boobs > 12000>>
-				They are naturally wide-set, which can be seen in the way they stick out more than a <<if $showInches == 2>>yard<<else>>meter<</if>> to either side of $him when $he's face-down.
-			<<elseif $activeSlave.boobs > 5000>>
-				They're huge pillows of soft flesh whose natural wide-set shape somehow keeps them from touching despite their mass.
-			<<elseif $activeSlave.boobs > 2500>>
-				They're orbs of soft flesh whose natural wide-set shape obscures $his upper arms. They rest without natural cleavage despite their size.
-			<<elseif $activeSlave.boobs > 1000>>
-				They're wide-set, with their weight pointing each nipple away from $his sternum.
-			<<elseif $activeSlave.boobs > 500>>
-				They're wide-set, with each nipple pointing away from $his sternum.
-			<<elseif $activeSlave.boobs > 250>>
-				They're wide-set, with each nipple pointing somewhat sideways.
-			<<else>>
-				They're very minimal.
-			<</if>>
-		<<case "saggy">>
-			<<if $activeSlave.boobs > 12000>>
-				Their naturally saggy shape makes them a convenient cushion when $he's face-down, naturally placing $him in a kneeling position.
-			<<elseif $activeSlave.boobs > 5000>>
-				They're huge pillows of soft flesh that sag past $his navel. $His nipples are placed on their bottoms, pointed at the ground by the heavy mass of breastflesh above them.
-			<<elseif $activeSlave.boobs > 2500>>
-				They're orbs of soft flesh that sag almost to $his navel. $His nipples are placed on their bottoms, pointed at the ground by the weight of breast above them.
-			<<elseif $activeSlave.boobs > 1000>>
-				They're heavy and saggy, pointing $his nipples at the ground.
-			<<elseif $activeSlave.boobs > 500>>
-				They're not attractively shaped, with $his nipples pointing down.
-			<<elseif $activeSlave.boobs > 250>>
-				They're not attractively shaped, with $his nipples pointing down despite $his small breasts.
-			<<else>>
-				They're very minimal.
-			<</if>>
-		<<default>>
-			<<if $activeSlave.boobs > 12000>>
-				They anchor $him when $he's face-down, and pin $him when $he's on $his back.
-			<<elseif $activeSlave.boobs > 5000>>
-				They're huge pillows of soft flesh, distorted by gravity and where they rest against $his stomach and each other.
-			<<elseif $activeSlave.boobs > 2500>>
-				They're orbs of soft flesh, resting heavily against $his chest and each other.
-			<<elseif $activeSlave.boobs > 1000>>
-				They're soft and round, resting heavily against $his chest and each other.
-			<<elseif $activeSlave.boobs > 500>>
-				They're nice and soft and rest naturally against $his chest.
-			<<elseif $activeSlave.boobs > 250>>
-				They're nicely rounded and rest naturally.
-			<<else>>
-				They're very minimal.
-			<</if>>
-		<</switch>>
-	<<elseif $activeSlave.boobShape == "deflated">>
-		/* WIP */
-	<<elseif ($activeSlave.boobsImplant <= 400)>>
-		<<if ($activeSlave.boobs > 800)>>
-			$He has <<print $activeSlave.boobsImplant>>cc breast implants. $His tits look fairly natural, but defy gravity more than could be expected given their size.
-		<<elseif ($activeSlave.boobs > 300)>>
-			$He has <<print $activeSlave.boobsImplant>>cc breast implants. $His tits look fairly natural, but are perkier than could be expected given their size.
-		<<else>>
-			$He has <<print $activeSlave.boobsImplant>>cc breast implants. $His tits look fairly natural, mostly because they're so small.
-		<</if>>
-		<<if $arcologies[0].FSTransformationFetishist != "unset">>
-			<<if $activeSlave.boobsImplant > 0>>
-				They are about <<print Math.floor(($activeSlave.boobsImplant/$activeSlave.boobs)*100)>>% implant.
-			<</if>>
-		<</if>>
-	<<elseif ($activeSlave.boobsImplant <= 600)>>
-		<<if ($activeSlave.boobs > 800)>>
-			$He has <<print $activeSlave.boobsImplant>>cc breast implants. $His implants are well done, but $his breasts are so perfect and gravity-defying that they are clearly artificial.
-		<<else>>
-			$He has <<print $activeSlave.boobsImplant>>cc breast implants. $His implants are well done, but $his breasts are so rounded and high that they are clearly artificial.
-		<</if>>
-		<<if $arcologies[0].FSTransformationFetishist != "unset">>
-			<<if $activeSlave.boobsImplant > 0>>
-				They are about <<print Math.floor(($activeSlave.boobsImplant/$activeSlave.boobs)*100)>>% implant.
-			<</if>>
-		<</if>>
-	<<else>>
-		<<if ($activeSlave.boobs > 2000)>>
-			$He has <<print $activeSlave.boobsImplant>>cc <<if $activeSlave.boobsImplantType == "string">>engorged string<<else>>fillable breast<</if>> implants, which is obvious from the unnatural size of $his boobs.
-		<<elseif $activeSlave.boobs - $activeSlave.boobsImplant > 800>>
-			$He has <<print $activeSlave.boobsImplant>>cc <<if $activeSlave.boobsImplantType == "string">>engorged string<<else>>fillable breast<</if>> implants, which is obvious from the roundness of $his fake tits.
-		<<else>>
-			$He has <<print $activeSlave.boobsImplant>>cc <<if $activeSlave.boobsImplantType == "string">>engorged string<<else>>fillable breast<</if>> implants. They are extremely obvious; with little natural breast tissue to support them, they look like a pair of balloons attached to $his chest.
-		<</if>>
-		<<if $arcologies[0].FSTransformationFetishist != "unset">>
-			<<if $activeSlave.boobsImplant > 0>>
-				They are about <<print Math.floor(($activeSlave.boobsImplant/$activeSlave.boobs)*100)>>% implant.
-			<</if>>
-		<</if>>
-	<</if>>
-
-	<<if $arcologies[0].FSTransformationFetishist > 20>>
-		<<if ($arcologies[0].FSSlimnessEnthusiast != "unset")>>
-			<<if $activeSlave.boobs >= 400>>
-				<<if $activeSlave.boobs >= 10000>>
-					<<if $activeSlave.boobsImplant/$activeSlave.boobs < .75>>
-						$His breasts are @@.red;disgustingly natural@@ for their size.
-					<<else>>
-						$His breasts are @@.green;obviously implants,@@ as they should be.
-					<</if>>
-				<<elseif $activeSlave.boobs >= 2000>>
-					<<if $activeSlave.boobsImplant/$activeSlave.boobs < .50>>
-						$His breasts are @@.red;disgustingly natural@@ for their size.
-					<<else>>
-						$His breasts are @@.green;obviously implants,@@ as they should be.
-					<</if>>
-				<<elseif $activeSlave.boobs >= 1000>>
-					<<if $activeSlave.boobsImplant/$activeSlave.boobs < .25>>
-						$His breasts are @@.red;disgustingly natural@@ for their size.
-					<<else>>
-						$His breasts are @@.green;obviously implants,@@ as they should be.
-					<</if>>
-				<<else>>
-					<<if $activeSlave.boobsImplant/$activeSlave.boobs < .10>>
-						$His breasts are @@.red;disgustingly natural@@ for their size.
-					<<else>>
-						$His breasts are @@.green;obviously implants,@@ as they should be.
-					<</if>>
-				<</if>>
-			<</if>>
-		<<else>>
-			<<if $activeSlave.boobs >= 600>>
-				<<if $activeSlave.boobs >= 10000>>
-					<<if $activeSlave.boobsImplant/$activeSlave.boobs < .75>>
-						$His breasts are @@.red;disgustingly natural@@ for their size.
-					<<else>>
-						$His breasts are @@.green;obviously implants,@@ as they should be.
-					<</if>>
-				<<elseif $activeSlave.boobs >= 2000>>
-					<<if $activeSlave.boobsImplant/$activeSlave.boobs < .50>>
-						$His breasts are @@.red;disgustingly natural@@ for their size.
-					<<else>>
-						$His breasts are @@.green;obviously implants,@@ as they should be.
-					<</if>>
-				<<elseif $activeSlave.boobs >= 1000>>
-					<<if $activeSlave.boobsImplant/$activeSlave.boobs < .25>>
-						$His breasts are @@.red;disgustingly natural@@ for their size.
-					<<else>>
-						$His breasts are @@.green;obviously implants,@@ as they should be.
-					<</if>>
-				<<else>>
-					<<if $activeSlave.boobsImplant/$activeSlave.boobs < .10>>
-						$His breasts are @@.red;disgustingly natural@@ for their size.
-					<<else>>
-						$His breasts are @@.green;obviously implants,@@ as they should be.
-					<</if>>
-				<</if>>
-			<</if>>
-		<</if>>
-	<</if>>
-
-<</if>>
-
-<</widget>>
-
-<<widget "BellyImplantDescription">>
-
-<<if $activeSlave.bellyImplant >= 32000>>
-	$He looks inhumanly pregnant,
-	<<if $activeSlave.physicalAge <= 3>>
-		and $he is nearly spherical. $His toddlerish form is utterly dwarfed by $his implant, all $he can do is lay on top of it. $He is so overfilled you can clearly make out the implant within $his body through $his skin. It is so taut, not one motion can be seen in its contents.
-	<<elseif $activeSlave.physicalAge <= 12>>
-		and $he is more belly than $girl. $His absolutely gigantic, overfilled implant keeps $his pinned to the ground. $He is so overfilled you can clearly make out the implant within $his body through $his skin. It is so taut, not one motion can be seen in its contents.
-	<<elseif $activeSlave.height >= 185>>
-		but $his tall frame barely keeps $his grotesque belly off the ground. $He is so overfilled you can clearly make out the implant within $his body through $his skin. It is so taut, not one motion can be seen in its contents.
-	<<elseif $activeSlave.height < 150>>
-		and $he is more belly than $girl. $His absolutely gigantic, overfilled implant keeps $his pinned to the ground. $He is so overfilled you can clearly make out the implant within $his body through $his skin. It is so taut, not one motion can be seen in its contents.
-	<<elseif $activeSlave.muscles > 1>>
-		and $he can barely hold $his overfilled belly upright. $He is so overfilled you can clearly make out the implant within $his body through $his skin. It is so taut, not one motion can be seen in its contents.
-	<<else>>
-		and $he is more belly than $girl. $His gigantic, overfilled implant keeps $his pinned to the ground. $He is so overfilled you can clearly make out the implant within $his body through $his skin. It is so taut, not one motion can be seen in its contents.
-	<</if>>
-<<elseif $activeSlave.bellyImplant >= 16000>>
-	$He looks unbelievably pregnant,
-	<<if $activeSlave.physicalAge <= 3>>
-		and $his belly pins $him to the ground. $His toddlerish form is dwarfed by $his implant; try as $he might, $he cannot even drag the massive thing. $He is so full you can nearly make out the implant within $his body through $his skin.
-	<<elseif $activeSlave.physicalAge <= 12>>
-		and $he can barely function with $his enormous belly. $He is so full you can nearly make out the implant within $his body through $his skin.
-	<<elseif $activeSlave.height >= 185>>
-		but $his tall frame barely bears $his obscene, drum-taut belly. $He is so full you can nearly make out the implant within $his body through $his skin.
-	<<elseif $activeSlave.height < 150>>
-		and $he can barely function with $his enormous belly. $He is so full you can nearly make out the implant within $his body through $his skin.
-	<<elseif $activeSlave.muscles > 30>>
-		and $his fit body allows $him to carry $his obscene belly without too much trouble. $He is so full you can nearly make out the implant within $his body through $his skin.
-	<<else>>
-		and $he can barely function with $his enormous belly. $He is so full you can nearly make out the implant within $his body through $his skin.
-	<</if>>
-<<elseif $activeSlave.bellyImplant >= 8000>>
-	$He looks hugely pregnant,
-	<<if $activeSlave.physicalAge <= 3>>
-		and $his toddlerish body is absolutely filled by $his implant. $He can barely move $himself and resembles an over inflated blow-up doll.
-	<<elseif $activeSlave.physicalAge <= 12>>
-		and $his massive, drum-taut belly dominates $his poor little frame.
-	<<elseif $activeSlave.height >= 185>>
-		but $his tall frame bears $his massive, drum-taut belly well.
-	<<elseif $activeSlave.height < 150>>
-		and $his massive, drum-taut belly dominates $his poor little frame.
-	<<elseif $activeSlave.muscles > 30>>
-		and $his fit body bears $his massive, drum-taut belly well.
-	<<else>>
-		and $his massive, drum-taut belly dominates $his frame.
-	<</if>>
-<<elseif $activeSlave.bellyImplant >= 4000>>
-	$He looks pregnant,
-	<<if $activeSlave.physicalAge <= 3>>
-		and $his swollen belly is nearly as big as $his toddlerish body.
-	<<elseif $activeSlave.physicalAge <= 12>>
-		and $his swollen belly dominates $his poor little frame.
-	<<elseif $activeSlave.height >= 185>>
-		but $his tall frame bears $his swollen belly well.
-	<<elseif $activeSlave.height < 150>>
-		and $his swollen belly dominates $his poor little frame.
-	<<elseif $activeSlave.muscles > 30>>
-		and $his fit body bears $his swollen belly well.
-	<<else>>
-		and $his swollen belly dominates $his frame.
-	<</if>>
-<<elseif $activeSlave.bellyImplant >= 2000>>
-	$He looks bloated,
-	<<if $activeSlave.physicalAge <= 3>>
-		and $his swollen belly looks obscene on $his toddlerish body.
-	<<elseif $activeSlave.physicalAge <= 12>>
-		and $his swollen belly already looks huge on $his tiny frame.
-	<<elseif $activeSlave.weight > 95>>
-		but $he's sufficiently overweight that it's not obvious.
-	<<elseif $activeSlave.height < 150>>
-		and $his swollen belly already looks huge on $his tiny frame.
-	<<elseif $activeSlave.weight < -10>>
-		$his thin form making $his swollen belly very obvious.
-	<<else>>
-		the implant just beginning to visibly bulge $his belly.
-	<</if>>
-<</if>>
-
-<<if ($showClothing == 1) && ($saleDescription == 0)>>
-
-	<<if $surgeryDescription == 0>>
-
-		<<if $activeSlave.bellyImplant >= 32000>>
-
-			<<if ($activeSlave.bellyAccessory == "an extreme corset")>>
-				$activeSlave.slaveName's titanic implant-filled belly makes a mockery of $his corset; one or the other will eventually win out.
-			<<elseif ($activeSlave.bellyAccessory == "a corset")>>
-				$activeSlave.slaveName's corset looks ridiculous trying to bind $his middle while allowing $his monstrous belly to hang out.
-			<</if>>
-			<<switch $activeSlave.clothes>>
-			<<case "a Fuckdoll suit">>
-				$activeSlave.slaveName's titanic implant-filled belly is allowed to bulge out of a huge hole in the suit.
-			<<case "conservative clothing">>
-				<<if ($activeSlave.boobs > 24000)>>
-					$activeSlave.slaveName's immense breasts keep $his oversized sweater far from $his titanic implant-filled belly.
-				<<elseif ($activeSlave.boobs > 12000)>>
-					$activeSlave.slaveName's titanic implant-filled belly adds even more strain to $his struggling oversized sweater.
-				<<elseif ($activeSlave.boobs > 8000)>>
-					$activeSlave.slaveName's oversized breasts keep $his sweater far from $his titanic implant-filled belly.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's sweater rests atop $his titanic implant-filled belly.
-				<<else>>
-					$activeSlave.slaveName's blouse rests atop $his titanic implant-filled belly.
-				<</if>>
-			<<case "chains">>
-				$activeSlave.slaveName's titanic implant-filled belly is tightly wrapped with chains; they can barely sink into the overfilled implant.
-			<<case "Western clothing">>
-				$activeSlave.slaveName's flannel shirt can't close over $his titanic implant-filled belly so $he has left the bottom buttons open leaving $his stomach hanging out.
-			<<case "body oil">>
-				$activeSlave.slaveName's titanic implant-filled is covered in a sheen of stretch-mark defeating oil.
-			<<case "a succubus outfit">>
-				$activeSlave.slaveName's titanic implant-filled sticks out of $his corset, which is laced above it as best $he can manage.
-			<<case "a toga">>
-				$activeSlave.slaveName's titanic implant-filled belly parts $his toga.
-			<<case "a huipil">>
-				$activeSlave.slaveName's huipil meekly rests atop $his titanic implant-filled belly.
-			<<case "a slutty qipao">>
-				$His qipao is slit up the side. However, it merely rests atop $his titanic implant-filled belly.
-			<<case "uncomfortable straps">>
-				$activeSlave.slaveName's slave outfit's straining straps barely press into $his titanic implant-filled belly. The straps connect to a steel ring encircling $his popped navel.
-			<<case "shibari ropes">>
-				$activeSlave.slaveName's titanic bulging implant-filled is tightly bound with rope; they can barely sink into the overfilled implant
-			<<case "a latex catsuit" "restrictive latex">>
-				$activeSlave.slaveName's titanic bulging implant-filled greatly distends $his latex suit. $He looks like an over inflated balloon ready to pop. Only $his popped navel sticking out the front of $his belly disrupts the smoothness.
-			<<case "a military uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's titanic implant-filled belly hangs out $his open tunic and shirt
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt lies half open, since $his titanic implant-filled belly has triumphed over $his buttons.
-				<<else>>
-					$activeSlave.slaveName's tunic and shirt lie half open, since $his titanic implant-filled belly has triumphed over $his buttons.
-				<</if>>
-			<<case "a schutzstaffel uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's titanic implant-filled belly hangs out $his open tunic and shirt
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt lies half open, since $his titanic implant-filled belly has triumphed over $his buttons.
-				<<else>>
-					$activeSlave.slaveName's tunic and shirt lie half open, since $his titanic implant-filled belly has triumphed over $his buttons.
-				<</if>>
-			<<case "a slutty schutzstaffel uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's titanic implant-filled belly hangs out $his open tunic and shirt
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt lies half open, since $his titanic implant-filled belly has triumphed over $his buttons.
-				<<else>>
-					$activeSlave.slaveName's tunic and shirt lie half open, since $his titanic implant-filled belly has triumphed over $his buttons.
-				<</if>>
-			<<case "a red army uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's titanic implant-filled belly hangs out $his open tunic and shirt
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt lies half open, since $his titanic implant-filled belly has triumphed over $his buttons.
-				<<else>>
-					$activeSlave.slaveName's tunic and shirt lie half open, since $his titanic implant-filled belly has triumphed over $his buttons.
-				<</if>>
-			<<case "a nice nurse outfit">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's titanic implant-filled belly parts $his uncovered breasts.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's oversized breasts keep $his scrub top far from $his titanic implant-filled belly.
-				<<else>>
-					$activeSlave.slaveName's scrub top rests meekly atop $his titanic implant-filled belly.
-				<</if>>
-			<<case "a bimbo outfit">>
-				$activeSlave.slaveName's titanic implant-filled belly eclipses $his miniskirt and leaves little to hold up $his thong.
-			<<case "a courtesan dress">>
-				$activeSlave.slaveName's corset attempts to cradle, rather than bind, $his titanic implant-filled belly, but the sheer size of $his artificial bump forces the ribs wide, exposing the thin cloth beneath.
-			<<case "a mini dress">>
-				$activeSlave.slaveName's mini dress has burst trying to contain $his titanic implant-filled belly leaving it hanging out the hole it made.
-			<<case "battlearmor">>
-				$activeSlave.slaveName's armor has burst trying to contain $his gigantic implant-filled belly leaving it hanging out the hole it made.
-			<<case "a mounty outfit">>
-				$activeSlave.slaveName's tunic lies half open, since $his gigantic implant-filled belly has triumphed over $his buttons.
-			<<case "lederhosen">>
-				$activeSlave.slaveName's tunic lies half open, since $his gigantic implant-filled belly has triumphed over $his buttons.
-			<<case "a long qipao">>
-				$activeSlave.slaveName's dress is almost conservative, it barely contains $his gigantic implant-filled belly. Its seams strain to hold back $his overfilled middle.
-			<<case "a dirndl">>
-				$activeSlave.slaveName's dress is almost conservative, it barely contains $his gigantic implant-filled belly. Its seams strain to hold back $his overfilled middle.
-			<<case "a biyelgee costume">>
-				$activeSlave.slaveName's dress is almost conservative, it barely contains $his gigantic implant-filled belly. Its seams strain to hold back $his overfilled middle.
-			<<case "attractive lingerie">>
-				$activeSlave.slaveName's titanic implant-filled belly completely hides $his lacy g-string.
-			<<case "attractive lingerie for a pregnant woman">>
-				$activeSlave.slaveName's titanic implant-filled belly completely hides $his silken panties. $His silken vest sensually frames $his overfilled middle.
-			<<case "kitty lingerie">>
-				$activeSlave.slaveName's titanic implant-filled belly completely hides $his silk panties.
-			<<case "a maternity dress">>
-				$activeSlave.slaveName's titanic implant-filled belly strains $his dress. $His dress is specially tailored to be modest yet draw attention to $his abnormal midriff.
-			<<case "stretch pants and a crop-top">>
-				$activeSlave.slaveName's titanic implant-filled belly takes full advantage of $his exposed midriff to hang freely.
-			<<case "a slutty maid outfit">>
-				$activeSlave.slaveName's maid dress fails to cover $his titanic implant-filled belly, but the outfit includes a thin white blouse that rests meekly atop $his immense stomach.
-			<<case "a nice maid outfit">>
-				$activeSlave.slaveName's maid dress was almost conservative, but it has burst open trying to contain $his titanic implant-filled belly. $His immense stomach hangs out the hole it made, its sides peeking out from behind $his apron.
-			<<case "a fallen nuns habit">>
-				$activeSlave.slaveName's latex habit's corset is left hanging open fully revealing $his titanic implant-filled belly.
-			<<case "a penitent nuns habit">>
-				$activeSlave.slaveName's titanic implant-filled belly stretches $his habit. The coarse cloth aggravates $his sensitive stretched skin, even more so, given the amount of skin it has to torment.
-			<<case "a string bikini">>
-				$activeSlave.slaveName's titanic implant-filled belly hides most of $his string bikini.
-			<<case "a scalemail bikini">>
-				$activeSlave.slaveName's scalemail bikini exposes $his titanic implant-filled belly.
-			<<case "striped panties">>
-				$activeSlave.slaveName's cute panties expose $his titanic implant-filled belly.
-			<<case "clubslut netting">>
-				$activeSlave.slaveName's titanic implant-filled belly has burst through $his clubslut netting.
-			<<case "a cheerleader outfit">>
-				$activeSlave.slaveName's cheerleader top rests atop $his implant-filled pregnant belly making it look like that this cheerleader has fucked the entire school.
-			<<case "cutoffs and a t-shirt">>
-				<<if ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's titanic implant-filled belly parts $his uncovered breasts.
-				<<elseif ($activeSlave.boobs > 2000)>>
-					$activeSlave.slaveName's tits keep $his t-shirt far from $his titanic implant-filled belly.
-				<<else>>
-					$activeSlave.slaveName's t-shirt fails to cover $his titanic implant-filled belly at all.
-				<</if>>
-			<<case "a slutty outfit">>
-				$activeSlave.slaveName's titanic implant-filled belly is allowed to hang free, demonstrating just how slutty $he is.
-			<<case "a slave gown">>
-				$activeSlave.slaveName's slave gown is carefully tailored, giving $him a sensual motherly look as it carefully caresses $his titanic implant-filled belly.
-			<<case "slutty business attire">>
-				$activeSlave.slaveName's titanic implant-filled stomach hangs out the front of $his suit jacket and blouse as there is no way $he could close them.
-			<<case "nice business attire">>
-				$activeSlave.slaveName's titanic implant-filled belly hangs out the front of $his specially tailored blouse and jacket as there is no way for $him to close them.
-			<<case "harem gauze">>
-				$activeSlave.slaveName's harem girl outfit sensually accentuates $his titanic implant-filled belly.
-			<<case "a comfortable bodysuit">>
-				$activeSlave.slaveName's bodysuit tightly clings to $his titanic implant-filled belly and prominently displaying $his popped navel.
-			<<case "a slutty nurse outfit">>
-				$activeSlave.slaveName's jacket fails to even come close to closing over $his titanic implant-filled belly leaving $him with only the button below $his breasts done.
-			<<case "a schoolgirl outfit">>
-				$activeSlave.slaveName's blouse rests atop $his titanic implant-filled belly, making $him look like the super promiscuous school slut.
-			<<case "a kimono">>
-				$activeSlave.slaveName's titanic implant-filled belly parts the front of $his kimono leaving it gracefully hanging to its sides.
-			<<case "a hijab and abaya" "a niqab and abaya">>
-				$activeSlave.slaveName's abaya lies completely taut on $his titanic implant-filled belly.
-			<<case "a klan robe">>
-				$activeSlave.slaveName's robe lies completely taut on $his titanic implant-filled belly.
-			<<case "a burqa">>
-				The heavy fabric of $activeSlave.slaveName's burqa lies taut against $his titanic implant-filled belly.
-			<<case "a nice pony outfit" "a slutty pony outfit">>
-				The leather material of $activeSlave.slaveName's pony outfit lies taut against $his titanic implant-filled belly.
-			<<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "pasties" "sport shorts and a sports bra" "jeans" "leather pants and a tube top" "sport shorts">>
-				$activeSlave.slaveName's outfit completely bares $his titanic implant-filled belly.
-			<<case "a one-piece swimsuit">>
-				$activeSlave.slaveName's swimsuit lies completely taut on $his titanic implant-filled belly.
-			<<case "a sweater" "a sweater and cutoffs" "a sweater and panties">>
-				$activeSlave.slaveName's sweater lies completely taut on $his titanic implant-filled belly.
-			<<case "a police uniform">>
-				$activeSlave.slaveName's uniform lies completely taut on $his titanic implant-filled belly.
-			<<case "a hanbok">>
-				$activeSlave.slaveName's hanbok has been retrofitted with a large elastic band to accommodate $his titanic implant-filled belly.
-			<<case "a gothic lolita dress">>
-				$activeSlave.slaveName's dress lies completely taut on $his titanic implant-filled belly.
-			<<case "a tank-top" "a tank-top and panties">>
-				$activeSlave.slaveName's tank-top lies completely taut on $his titanic implant-filled belly.
-			<<case "a button-up shirt and panties" "a button-up shirt" "a t-shirt" "a t-shirt and thong" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt" "a t-shirt and jeans" "a t-shirt and panties">>
-				$activeSlave.slaveName's shirt lies completely taut on $his titanic implant-filled belly.
-			<<case "a Santa dress">>
-				The bottom of $activeSlave.slaveName's titanic implant-filled belly is stretching $his dress's belt to its breaking point.
-			<<case "a burkini">>
-				The bottom of $activeSlave.slaveName's burkini's tunic lies at crotch-level due to $his titanic implant-filled belly.
-			<<case "a hijab and blouse">>
-				$activeSlave.slaveName's skirt has been retrofitted with a large elastic band to accommodate $his titanic implant-filled belly.
-			<<case "battledress">>
-				$activeSlave.slaveName's tank top rests atop $his titanic implant-filled belly leaving $him looking like someone who fucked half the country.
-			<<case "a halter top dress">>
-				$activeSlave.slaveName's beautiful halter top dress has been torn open by $his titanic implant-filled belly. $His immense stomach hangs out the whole it made.
-			<<case "a ball gown">>
-				$activeSlave.slaveName's fabulous silken ball gown has been retailored to expose $his titanic implant-filled belly while still maintaining its beauty.
-			<<case "slutty jewelry">>
-				$activeSlave.slaveName's bangles include a long thin chain that looks ready to snap as in encircles $his titanic implant-filled belly.
-			<<case "a leotard">>
-				$activeSlave.slaveName's tight leotard shows off every <<if $showInches == 2>>inch<<else>>centimeter<</if>> of $his titanic implant-filled belly. $His immense stomach slightly protrudes from the various rips and tears that have begun appearing in the fabric.
-			<<case "a monokini">>
-				$activeSlave.slaveName's titanic implant-filled belly has pushed down the front of $his monokini, leaving $his belly mostly bare.
-			<<case "overalls">>
-				<<if ($activeSlave.boobs > ($activeSlave.belly+250))>>
-					$activeSlave.slaveName's gigantic breasts push out $his overalls so far that $his huge implant-filled belly is left halfway uncovered.
-				<<else>>
-					The front of $activeSlave.slaveName's overalls barely covers half of $his huge implant-filled pregnant belly.
-				<</if>>
-			<<case "an apron">>
-				$activeSlave.slaveName has given up trying to tie $his apron's strings, allowing the frilly garment to idly rest upon $his titanic implant-filled belly.
-			<<case "a cybersuit">>
-				$activeSlave.slaveName's bodysuit tightly clings to $his titanic implant-filled belly and prominently displaying $his popped navel.
-			<<case "a chattel habit">>
-				The strip of cloth running down $his front is forced to one side by $his titanic implant-filled belly.
-			<<case "a bunny outfit">>
-				$activeSlave.slaveName's teddy has burst trying to contain $his titanic implant-filled belly leaving it hanging out the hole it made.
-			<<case "spats and a tank top">>
-				<<if ($activeSlave.boobs > 1200)>>
-					$activeSlave.slaveName's top is prevented from trying to cover $his titanic implant-filled belly by $his breasts.
-				<<else>>
-					$activeSlave.slaveName's top fails to cover $his titanic implant-filled belly at all.
-				<</if>>
-			<<default>>
-			<</switch>>
-			<<if $arcologies[0].FSTransformationFetishist != "unset">>
-				Your transformation fetishizing society is fascinated by $his unusual implant.
-			<</if>>
-
-		<<elseif $activeSlave.bellyImplant >= 16000>>
-
-			<<if ($activeSlave.bellyAccessory == "an extreme corset")>>
-				$activeSlave.slaveName's gigantic implant-filled belly is strains $his corset, threatening to burst it; one or the other will eventually win out.
-			<<elseif ($activeSlave.bellyAccessory == "a corset")>>
-				$activeSlave.slaveName's corset strains around $his monstrous belly.
-			<</if>>
-			<<switch $activeSlave.clothes>>
-			<<case "a Fuckdoll suit">>
-				$activeSlave.slaveName's gigantic implant-filled belly is allowed to bulge out of a huge hole in the suit.
-			<<case "conservative clothing">>
-				<<if ($activeSlave.boobs > 20000)>>
-					$activeSlave.slaveName's immense breasts keep $his oversized sweater far from $his gigantic implant-filled belly.
-				<<elseif ($activeSlave.boobs > 10000)>>
-					$activeSlave.slaveName's gigantic implant-filled belly adds even more strain to $his struggling oversized sweater.
-				<<elseif ($activeSlave.boobs > 8000)>>
-					$activeSlave.slaveName's gigantic implant-filled belly parts $his poorly covered breasts.
-				<<elseif ($activeSlave.boobs > 8000)>>
-					$activeSlave.slaveName's oversized breasts keep $his sweater far from $his gigantic implant-filled belly.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's sweater rests atop $his gigantic implant-filled belly.
-				<<else>>
-					$activeSlave.slaveName's blouse rests atop $his gigantic implant-filled belly.
-				<</if>>
-			<<case "chains">>
-				$activeSlave.slaveName's gigantic implant-filled belly is tightly wrapped with chains causing it to bulge angrily.
-			<<case "Western clothing">>
-				$activeSlave.slaveName's flannel shirt can't close over $his gigantic implant-filled belly so $he has left the bottom buttons open leaving $his stomach hanging out.
-			<<case "a succubus outfit">>
-				$activeSlave.slaveName's gigantic implant-filled belly sticks out of $his corset, which is laced above and below it as best $he can manage. The laces are straining to hold together.
-			<<case "body oil">>
-				$activeSlave.slaveName's gigantic implant-filled belly is covered in a sheen of stretch-mark defeating oil.
-			<<case "a toga">>
-				$activeSlave.slaveName's gigantic implant-filled belly parts $his toga.
-			<<case "a huipil">>
-				$activeSlave.slaveName's huipil meekly rests atop $his gigantic implant-filled belly.
-			<<case "a slutty qipao">>
-				$His qipao is slit up the side. However, it merely rests atop $his gigantic implant-filled belly.
-			<<case "uncomfortable straps">>
-				$activeSlave.slaveName's slave outfit's straining straps press into $his gigantic implant-filled belly causing flesh to spill out the gaps. The straps connect to a steel ring encircling $his popped navel.
-			<<case "shibari ropes">>
-				$activeSlave.slaveName's gigantic implant-filled belly is tightly bound with rope, flesh angrily bulges from between them.
-			<<case "a latex catsuit" "restrictive latex">>
-				$activeSlave.slaveName's gigantic implant-filled belly greatly distends $his latex suit. $He looks like an over inflated balloon ready to pop. Only $his popped navel sticking out the front of $his belly disrupts the smoothness.
-			<<case "a military uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's gigantic implant-filled belly hangs out $his open tunic and shirt
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt lies half open, since $his gigantic implant-filled belly has triumphed over $his buttons.
-				<<else>>
-					$activeSlave.slaveName's tunic and shirt lie half open, since $his gigantic implant-filled belly has triumphed over $his buttons.
-				<</if>>
-			<<case "a schutzstaffel uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's gigantic implant-filled belly hangs out $his open tunic and shirt
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt lies half open, since $his gigantic implant-filled belly has triumphed over $his buttons.
-				<<else>>
-					$activeSlave.slaveName's tunic and shirt lie half open, since $his gigantic implant-filled belly has triumphed over $his buttons.
-				<</if>>
-			<<case "a slutty schutzstaffel uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's gigantic implant-filled belly hangs out $his open tunic and shirt
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt lies half open, since $his gigantic implant-filled belly has triumphed over $his buttons.
-				<<else>>
-					$activeSlave.slaveName's tunic and shirt lie half open, since $his gigantic implant-filled belly has triumphed over $his buttons.
-				<</if>>
-			<<case "a red army uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's gigantic implant-filled belly hangs out $his open tunic and shirt
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt lies half open, since $his gigantic implant-filled belly has triumphed over $his buttons.
-				<<else>>
-					$activeSlave.slaveName's tunic and shirt lie half open, since $his gigantic implant-filled belly has triumphed over $his buttons.
-				<</if>>
-			<<case "a nice nurse outfit">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's gigantic implant-filled belly parts $his uncovered breasts.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's oversized breasts keep $his scrub top far from $his gigantic implant-filled belly.
-				<<else>>
-					$activeSlave.slaveName's scrub top rests meekly atop $his gigantic implant-filled belly.
-				<</if>>
-			<<case "a mini dress">>
-				$activeSlave.slaveName's mini dress has burst trying to contain $his gigantic implant-filled belly leaving it hanging out the hole it made.
-			<<case "battlearmor">>
-				$activeSlave.slaveName's armor has burst trying to contain $his gigantic implant-filled belly leaving it hanging out the hole it made.
-			<<case "a mounty outfit">>
-				$activeSlave.slaveName's tunic lies half open, since $his gigantic implant-filled belly has triumphed over $his buttons.
-			<<case "lederhosen">>
-				$activeSlave.slaveName's tunic lies half open, since $his gigantic implant-filled belly has triumphed over $his buttons.
-			<<case "a long qipao">>
-				$activeSlave.slaveName's dress is almost conservative, it barely contains $his gigantic implant-filled belly. Its seams strain to hold back $his overfilled middle.
-			<<case "a dirndl">>
-				$activeSlave.slaveName's dress is almost conservative, it barely contains $his gigantic implant-filled belly. Its seams strain to hold back $his overfilled middle.
-			<<case "a biyelgee costume">>
-				$activeSlave.slaveName's dress is almost conservative, it barely contains $his gigantic implant-filled belly. Its seams strain to hold back $his overfilled middle.
-			<<case "attractive lingerie">>
-				$activeSlave.slaveName's gigantic implant-filled belly completely hides $his lacy g-string.
-			<<case "attractive lingerie for a pregnant woman">>
-				$activeSlave.slaveName's gigantic implant-filled belly completely hides $his silken panties. $His silken vest sensually frames $his overfilled belly.
-			<<case "kitty lingerie">>
-				$activeSlave.slaveName's gigantic implant-filled belly completely hides $his silk panties.
-			<<case "a maternity dress">>
-				$activeSlave.slaveName's gigantic implant-filled belly fills $his loose dress. $His dress is specially tailored to be modest yet draw attention to $his giant middle.
-			<<case "stretch pants and a crop-top">>
-				$activeSlave.slaveName's gigantic implant-filled belly takes full advantage of $his exposed midriff to hang freely.
-			<<case "a slutty maid outfit">>
-				$activeSlave.slaveName's maid dress fails to cover $his gigantic implant-filled belly, but the outfit includes a thin white blouse that rests meekly atop $his stomach.
-			<<case "a nice maid outfit">>
-				$activeSlave.slaveName's maid dress is almost conservative, it barely contains $his gigantic implant-filled belly. Its seams strain to hold back $his overfilled middle.
-			<<case "a fallen nuns habit">>
-				$activeSlave.slaveName's latex habit's corset is left hanging open fully revealing $his gigantic implant-filled belly.
-			<<case "a penitent nuns habit">>
-				$activeSlave.slaveName's gigantic implant-filled belly completely fills $his habit. The coarse cloth aggravates $his sensitive stretched skin.
-			<<case "a string bikini">>
-				$activeSlave.slaveName's gigantic implant-filled belly parts $his string bikini to either side.
-			<<case "a scalemail bikini">>
-				$activeSlave.slaveName's scalemail bikini exposes $his gigantic implant-filled belly.
-			<<case "striped panties">>
-				$activeSlave.slaveName's cute panties expose $his gigantic implant-filled belly.
-			<<case "clubslut netting">>
-				$activeSlave.slaveName's gigantic implant-filled belly has burst through $his clubslut netting.
-			<<case "a cheerleader outfit">>
-				$activeSlave.slaveName's cheerleader top rests atop $his gigantic implant-filled belly displaying that this cheerleader is a massive slut.
-			<<case "cutoffs and a t-shirt">>
-				<<if ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's gigantic implant-filled belly parts $his uncovered breasts.
-				<<elseif ($activeSlave.boobs > 2000)>>
-					$activeSlave.slaveName's tits keep $his t-shirt far from $his gigantic implant-filled belly.
-				<<else>>
-					$activeSlave.slaveName's t-shirt fails to cover $his gigantic implant-filled belly at all.
-				<</if>>
-			<<case "a slutty outfit">>
-				$activeSlave.slaveName's gigantic implant-filled belly really shows how big of a slut $he is.
-			<<case "a slave gown">>
-				$activeSlave.slaveName's slave gown is carefully tailored, giving $him a sensual motherly look as it carefully caresses $his gigantic implant-filled belly.
-			<<case "slutty business attire">>
-				$activeSlave.slaveName's gigantic implant-filled stomach hangs out the front of $his suit jacket and blouse as there is no way $he could close them.
-			<<case "nice business attire">>
-				$activeSlave.slaveName's gigantic implant-filled belly hangs out the front of $his specially tailored blouse and jacket as there is no way for $him to close them.
-			<<case "harem gauze">>
-				$activeSlave.slaveName's harem girl outfit sensually accentuates $his gigantic implant-filled belly.
-			<<case "a comfortable bodysuit">>
-				$activeSlave.slaveName's bodysuit tightly clings to $his gigantic implant-filled belly, prominently displaying $his popped navel.
-			<<case "a slutty nurse outfit">>
-				$activeSlave.slaveName's jacket fails to even come close to closing over $his gigantic implant-filled belly leaving $him with only the button below $his breasts done.
-			<<case "a schoolgirl outfit">>
-				$activeSlave.slaveName's blouse rests atop $his gigantic implant-filled belly, leaving $him looking particularly slutty.
-			<<case "a kimono">>
-				$activeSlave.slaveName's gigantic implant-filled belly parts the front of $his kimono leaving it gracefully covering its sides.
-			<<case "a hijab and abaya" "a niqab and abaya">>
-				$activeSlave.slaveName's abaya is straining to contain $his huge implant-filled belly.
-			<<case "a klan robe">>
-				$activeSlave.slaveName's robe is straining to contain $his huge implant-filled belly.
-			<<case "a burqa">>
-				$activeSlave.slaveName's burqa is filled out by $his huge implant-filled belly.
-			<<case "a nice pony outfit" "a slutty pony outfit">>
-				The leather material of $activeSlave.slaveName's pony outfit lies taut against $his huge implant-filled belly.
-			<<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "pasties" "sport shorts and a sports bra" "jeans" "leather pants and a tube top" "sport shorts">>
-				$activeSlave.slaveName's outfit completely bares $his huge implant-filled belly.
-			<<case "a one-piece swimsuit">>
-				$activeSlave.slaveName's swimsuit lies completely taut on $his huge implant-filled belly.
-			<<case "a sweater" "a sweater and cutoffs" "a sweater and panties">>
-				$activeSlave.slaveName's sweater lies completely taut on $his huge implant-filled belly.
-			<<case "a police uniform">>
-				$activeSlave.slaveName's uniform lies completely taut on $his huge implant-filled belly.
-			<<case "a hanbok">>
-				$activeSlave.slaveName's hanbok has been retrofitted with a large elastic band to accommodate $his huge implant-filled belly.
-			<<case "a gothic lolita dress">>
-				$activeSlave.slaveName's dress lies completely taut on $his huge implant-filled belly.
-			<<case "a tank-top" "a tank-top and panties">>
-				$activeSlave.slaveName's tank-top lies completely taut on $his huge implant-filled belly.
-			<<case "a button-up shirt and panties" "a button-up shirt" "a t-shirt" "a t-shirt and thong" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt" "a t-shirt and jeans" "a t-shirt and panties">>
-				$activeSlave.slaveName's shirt lies completely taut on $his huge implant-filled belly.
-			<<case "a Santa dress">>
-				$activeSlave.slaveName's leather belt can only just barely fit around $his huge implant-filled belly.
-			<<case "a burkini">>
-				The fabric of $activeSlave.slaveName's burkini is pushed up to just below $his crotch due to $his huge implant-filled belly.
-			<<case "a hijab and blouse">>
-				$activeSlave.slaveName's shirts are straining to contain $his huge implant-filled belly.
-			<<case "battledress">>
-				$activeSlave.slaveName's tank top rests atop $his gigantic implant-filled belly leaving $him looking like someone who fucked all the locals.
-			<<case "a halter top dress">>
-				$activeSlave.slaveName's beautiful halter top dress is strained by $his gigantic implant-filled belly. $His popped navel prominently pokes through the front of $his dress as its seams strain to hold together.
-			<<case "a ball gown">>
-				$activeSlave.slaveName's fabulous silken ball gown, while tailored, strains to contain $his gigantic implant-filled belly.
-			<<case "slutty jewelry">>
-				$activeSlave.slaveName's bangles include a long thin chain that rests above $his popped navel.
-			<<case "a leotard">>
-				$activeSlave.slaveName's tight leotard shows off every kick and movement within $his gigantic implant-filled belly. The material tightly clings to $his popped navel and strains to hold together.
-			<<case "a monokini">>
-				$activeSlave.slaveName's gigantic implant-filled belly pushes the fabric of $his monokini to below $his popped navel.
-			<<case "overalls">>
-				<<if ($activeSlave.boobs > ($activeSlave.belly+250))>>
-					$activeSlave.slaveName's enormous breasts push out $his overalls so far that $his huge implant-filled belly is left mostly uncovered.
-				<<else>>
-					$activeSlave.slaveName's overalls are pulled taut by $his huge implant-filled belly.
-				<</if>>
-			<<case "an apron">>
-				The strings of $activeSlave.slaveName's apron struggle to stay tied due to the size of $his huge implant-filled belly.
-			<<case "a cybersuit">>
-				$activeSlave.slaveName's bodysuit tightly clings to $his gigantic implant-filled belly, prominently displaying $his popped navel.
-			<<case "a chattel habit">>
-				The strip of cloth running down $his front is parted to one side by $his gigantic implant-filled belly.
-			<<case "a bunny outfit">>
-				$activeSlave.slaveName's teddy has burst trying to contain $his gigantic implant-filled belly, leaving it hanging out the hole it made.
-			<<case "spats and a tank top">>
-				<<if ($activeSlave.boobs > 1200)>>
-					$activeSlave.slaveName's top is prevented from trying to cover $his gigantic implant-filled belly by $his breasts.
-				<<else>>
-					$activeSlave.slaveName's top merely rests on $his gigantic implant-filled belly.
-				<</if>>
-			<<case "a bimbo outfit">>
-				$activeSlave.slaveName's gigantic implant-filled belly eclipses $his miniskirt and leaves little to hold up $his thong.
-			<<case "a courtesan dress">>
-				$activeSlave.slaveName's corset cradles, rather than binds, $his gigantic implant-filled belly, but the sheer size of $his artificial bump forces the ribs wide, exposing the thin cloth beneath.
-			<<default>>
-			<</switch>>
-			<<if $arcologies[0].FSTransformationFetishist != "unset">>
-				Your transformation fetishizing society is fascinated by $his unusual implant.
-			<</if>>
-
-		<<elseif $activeSlave.bellyImplant >= 8000>>
-
-
-			<<if ($activeSlave.bellyAccessory == "an extreme corset")>>
-				$activeSlave.slaveName's huge implant-filled belly is tightly compressed by $his corset; one or the other will eventually win out.
-			<<elseif ($activeSlave.bellyAccessory == "a corset")>>
-				$activeSlave.slaveName's huge implant-filled belly comfortably bulges out of $his corset.
-			<</if>>
-			<<switch $activeSlave.clothes>>
-			<<case "a Fuckdoll suit">>
-				$activeSlave.slaveName's huge implant-filled belly is allowed to bulge out of a huge hole in the suit.
-			<<case "conservative clothing">>
-				<<if ($activeSlave.boobs > 24000)>>
-					$activeSlave.slaveName's immense breasts keep $his oversized sweater from covering $his huge implant-filled belly, though they do a fine job of hiding it themselves.
-				<<elseif ($activeSlave.boobs > 12000)>>
-					$activeSlave.slaveName's huge implant-filled belly is hidden by $his massive tits and oversized sweater.
-				<<elseif ($activeSlave.boobs > 8000)>>
-					$activeSlave.slaveName's oversized breasts keep $his sweater far from $his huge implant-filled belly.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's sweater is pulled taut by $his huge implant-filled belly, the bottom of which can be seen peeking out from underneath. $His popped navel forms a small tent in the material.
-				<<else>>
-					$activeSlave.slaveName's blouse is pulled taut by $his huge implant-filled belly, the bottom of which can be seen peeking out from underneath. $His popped navel forms a small tent in $his shirt.
-				<</if>>
-			<<case "attractive lingerie for a pregnant woman">>
-				$activeSlave.slaveName's huge implant-filled belly completely hides $his silken panties. $His silken vest sensually frames $his heavy stomach.
-			<<case "a maternity dress">>
-				$activeSlave.slaveName's huge implant-filled belly fills out $his loose dress. $His dress is specially tailored to be modest yet draw attention to $his expanded middle.
-			<<case "stretch pants and a crop-top">>
-				$activeSlave.slaveName'shuge implant-filled belly takes full advantage of $his exposed midriff to hang freely and obscure $his stretch pants.
-			<<case "chains">>
-				$activeSlave.slaveName's huge implant-filled belly is tightly wrapped with chains, causing it to bulge angrily.
-			<<case "Western clothing">>
-				$activeSlave.slaveName's flannel shirt can't close over $his huge implant-filled belly so $he has left the bottom buttons open, leaving $his stomach hanging out.
-			<<case "body oil">>
-				$activeSlave.slaveName's huge implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.
-			<<case "a toga">>
-				$activeSlave.slaveName's huge implant-filled belly parts $his toga.
-			<<case "a huipil">>
-				$activeSlave.slaveName's huge implant-filled belly lifts $his huipil.
-			<<case "a slutty qipao">>
-				$His qipao is slit up the side. However, it merely rests atop $his huge implant-filled belly.
-			<<case "uncomfortable straps">>
-				$activeSlave.slaveName's slave outfit's straining straps press into $his huge implant-filled belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling $his popped navel.
-			<<case "shibari ropes">>
-				$activeSlave.slaveName's huge implant-filled belly is tightly bound with ropes; flesh bulges angrily from between them.
-			<<case "a latex catsuit" "restrictive latex">>
-				$activeSlave.slaveName's huge implant-filled belly greatly distends $his latex suit. $He looks like an over inflated balloon ready to pop. Only $his popped navel sticking out the front of $his belly disrupts the smoothness.
-			<<case "a military uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's huge implant-filled belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt strains to contain $his huge implant-filled belly.
-				<<else>>
-					$activeSlave.slaveName's huge implant-filled belly greatly stretches $his uniform's jacket.
-				<</if>>
-			<<case "a schutzstaffel uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's huge implant-filled belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt strains to contain $his huge implant-filled belly.
-				<<else>>
-					$activeSlave.slaveName's huge implant-filled belly greatly stretches $his uniform's jacket.
-				<</if>>
-			<<case "a slutty schutzstaffel uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's huge implant-filled belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt strains to contain $his huge implant-filled belly.
-				<<else>>
-					$activeSlave.slaveName's huge implant-filled belly greatly stretches $his uniform's jacket.
-				<</if>>
-			<<case "a red army uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's huge implant-filled belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt strains to contain $his huge implant-filled belly.
-				<<else>>
-					$activeSlave.slaveName's huge implant-filled belly greatly stretches $his uniform's jacket.
-				<</if>>
-			<<case "a nice nurse outfit">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's huge implant-filled belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's nurse outfit could be called conservative, if it could cover more than half of $his breasts; $his huge implant-filled belly hangs out from under them, obscuring $his trousers.
-				<<else>>
-					$activeSlave.slaveName's nurse outfit is almost conservative, though $his huge implant-filled belly hangs out from under $his top, obscuring $his trousers.
-				<</if>>
-			<<case "a mini dress">>
-				$activeSlave.slaveName's mini dress barely clings to $his huge implant-filled belly.
-			<<case "battlearmor">>
-				$activeSlave.slaveName's armor tightly clings to $his huge implant-filled belly.
-			<<case "a mounty outfit">>
-				$activeSlave.slaveName's tunic tightly clings to $his huge implant-filled belly.
-			<<case "lederhosen">>
-				$activeSlave.slaveName's tunic tightly clings to $his huge implant-filled belly.
-			<<case "a long qipao">>
-				$activeSlave.slaveName's dress tightly clings to $his huge implant-filled belly.
-			<<case "a dirndl">>
-				$activeSlave.slaveName's dress tightly clings to $his huge implant-filled belly.
-			<<case "a biyelgee costume">>
-				$activeSlave.slaveName's dress tightly clings to $his huge implant-filled belly.
-			<<case "attractive lingerie">>
-				$activeSlave.slaveName's huge implant-filled belly completely hides $his lacy g-string.
-			<<case "kitty lingerie">>
-				$activeSlave.slaveName's huge implant-filled belly completely hides $his silk panties.
-			<<case "a succubus outfit">>
-				$activeSlave.slaveName's huge implant-filled belly sticks out of $his corset, which is laced above and below it as best $he can manage.
-			<<case "a slutty maid outfit">>
-				$activeSlave.slaveName's maid dress fails to cover $his huge implant-filled belly, but the outfit includes a thin white blouse that conceals only the upper part of $his stomach.
-			<<case "a nice maid outfit">>
-				$activeSlave.slaveName's maid dress is almost conservative. It covers $his huge implant-filled belly completely, though it cannot hide $his popped navel, poking through the front.
-			<<case "a fallen nuns habit">>
-				$activeSlave.slaveName's latex habit's corset is left hanging open fully revealing $his huge implant-filled belly.
-			<<case "a penitent nuns habit">>
-				$He looks absolutely blasphemous in a habit with such a huge implant-filled belly. The coarse cloth aggravates $his sensitive stretched skin.
-			<<case "a string bikini">>
-				$activeSlave.slaveName's huge implant-filled belly parts $his string bikini to either side.
-			<<case "a scalemail bikini">>
-				$activeSlave.slaveName's scalemail bikini exposes $his huge implant-filled belly.
-			<<case "striped panties">>
-				$activeSlave.slaveName's cute panties expose $his huge implant-filled belly.
-			<<case "clubslut netting">>
-				$activeSlave.slaveName's clubslut netting is stretched to the breaking point by $his huge implant-filled belly.
-			<<case "a cheerleader outfit">>
-				$activeSlave.slaveName's cheerleader top rides up $his huge implant-filled belly, covering only the top of it while leaving the rest on display to show how slutty this cheerleader is.
-			<<case "cutoffs and a t-shirt">>
-				<<if ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's huge implant-filled belly is obscured by $his huge tits.
-				<<elseif ($activeSlave.boobs > 2000)>>
-					$activeSlave.slaveName's tits keep $his t-shirt far from $his huge implant-filled belly.
-				<<else>>
-					$activeSlave.slaveName's t-shirt fails to cover $his huge implant-filled belly at all.
-				<</if>>
-			<<case "a slutty outfit">>
-				$activeSlave.slaveName's huge implant-filled belly really shows what a slut $he is.
-			<<case "a slave gown">>
-				$activeSlave.slaveName's slave gown is carefully tailored, giving $him a sensual motherly look as it carefully caresses $his huge implant-filled belly.
-			<<case "slutty business attire">>
-				$activeSlave.slaveName's huge implant-filled belly hangs out the front of $his suit jacket and blouse, as there is no way $he could close them.
-			<<case "nice business attire">>
-				$activeSlave.slaveName's huge implant-filled belly strains $his specially tailored blouse and jacket.
-			<<case "harem gauze">>
-				$activeSlave.slaveName's harem girl outfit sensually accentuates $his huge implant-filled belly.
-			<<case "a comfortable bodysuit">>
-				$activeSlave.slaveName's bodysuit tightly clings to $his huge implant-filled belly, prominently displaying $his popped navel.
-			<<case "a slutty nurse outfit">>
-				$activeSlave.slaveName's jacket fails to even come close to closing over $his huge implant-filled belly, leaving $him with only the button below $his breasts done.
-			<<case "a schoolgirl outfit">>
-				$activeSlave.slaveName's blouse rides up $his huge implant-filled belly, leaving $him looking particularly slutty.
-			<<case "a kimono">>
-				$activeSlave.slaveName's huge implant-filled belly parts the front of $his kimono, leaving it gracefully covering its sides.
-			<<case "a hijab and abaya" "a niqab and abaya">>
-				$activeSlave.slaveName's burqa is noticeably rounded out by $his huge implant-filled belly.
-			<<case "a klan robe">>
-				$activeSlave.slaveName's robe is noticeably rounded out by $his huge implant-filled belly.
-			<<case "a burqa">>
-				$activeSlave.slaveName's burqa is noticeably rounded out by $his huge implant-filled belly.
-			<<case "a nice pony outfit" "a slutty pony outfit">>
-				The leather material of $activeSlave.slaveName's pony outfit is noticeably rounded out by $his huge implant-filled belly.
-			<<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "pasties" "sport shorts and a sports bra" "jeans" "leather pants and a tube top" "sport shorts">>
-				$activeSlave.slaveName's outfit completely bares $his huge implant-filled belly.
-			<<case "a one-piece swimsuit">>
-				$activeSlave.slaveName's swimsuit is noticeably rounded out by $his huge implant-filled belly.
-			<<case "a sweater" "a sweater and cutoffs" "a sweater and panties">>
-				$activeSlave.slaveName's sweater is noticeably rounded out by $his huge implant-filled belly.
-			<<case "a police uniform">>
-				$activeSlave.slaveName's uniform is noticeably rounded out by $his huge implant-filled belly.
-			<<case "a hanbok">>
-				$activeSlave.slaveName's hanbok is noticeably rounded out by $his huge implant-filled belly.
-			<<case "a gothic lolita dress">>
-				$activeSlave.slaveName's dress is noticeably rounded out by $his huge implant-filled belly.
-			<<case "a tank-top" "a tank-top and panties">>
-				$activeSlave.slaveName's tank-top is noticeably rounded out by $his huge implant-filled belly.
-			<<case "a button-up shirt and panties" "a button-up shirt" "a t-shirt" "a t-shirt and thong" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt" "a t-shirt and jeans" "a t-shirt and panties">>
-				$activeSlave.slaveName's shirt is noticeably rounded out by $his huge implant-filled belly.
-			<<case "a Santa dress">>
-				$activeSlave.slaveName's belt is struggling to fully encircle $his huge implant-filled belly.
-			<<case "a burkini">>
-				The fabric of $activeSlave.slaveName's burkini is slightly pushed up thanks to $his huge implant-filled belly.
-			<<case "a hijab and blouse">>
-				$activeSlave.slaveName has trouble pulling $his skirt up to fit around $his huge implant-filled belly.
-			<<case "battledress">>
-				$activeSlave.slaveName's tank top barely even covers the top of $his huge implant-filled belly, leaving $him looking like someone who had too much fun on shore leave.
-			<<case "a halter top dress">>
-				$activeSlave.slaveName's beautiful halter top dress is filled by $his huge implant-filled belly. $His popped navel prominently pokes through its front.
-			<<case "a ball gown">>
-				$activeSlave.slaveName's fabulous silken ball gown is tailored to not only fit $his huge implant-filled belly, but draw attention to it.
-			<<case "slutty jewelry">>
-				$activeSlave.slaveName's bangles include a long thin chain that rests above $his popped navel.
-			<<case "a leotard">>
-				$activeSlave.slaveName's tight leotard shows off every kick and movement within $his huge implant-filled belly. The material tightly clings to $his popped navel.
-			<<case "a monokini">>
-				$activeSlave.slaveName's huge implant-filled belly pushes the fabric of $his monokini to rest just above $his popped navel.
-			<<case "overalls">>
-				<<if ($activeSlave.boobs > ($activeSlave.belly+250))>>
-					$activeSlave.slaveName's massive breasts push out $his overalls so far that $his hugely swollen belly is left almost entirely uncovered.
-				<<else>>
-					$activeSlave.slaveName's hugely swollen belly stretches out the fabric of $his overalls.
-				<</if>>
-			<<case "an apron">>
-				$activeSlave.slaveName's apron is pushed away from $his body by $his huge implant-filled belly.
-			<<case "a cybersuit">>
-				$activeSlave.slaveName's bodysuit tightly clings to $his huge implant-filled belly, prominently displaying $his popped navel.
-			<<case "a chattel habit">>
-				The strip of cloth running down $his front is parted to one side by $his huge implant-filled belly.
-			<<case "a bunny outfit">>
-				$activeSlave.slaveName's teddy is stretched to tearing by $his huge implant-filled belly. $His popped navel prominently pokes through the material.
-			<<case "spats and a tank top">>
-				<<if ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's huge implant-filled belly is obscured by $his huge tits.
-				<<elseif ($activeSlave.boobs > 1200)>>
-					$activeSlave.slaveName's top is prevented from trying to cover $his huge implant-filled belly by $his breasts.
-				<<else>>
-					$activeSlave.slaveName's top merely rests on $his huge implant-filled belly.
-				<</if>>
-			<<case "a bimbo outfit">>
-				$activeSlave.slaveName's miniskirt is trapped beneath $his huge implant-filled belly and $his thong strings forced to caress its curves.
-			<<case "a courtesan dress">>
-				$activeSlave.slaveName's huge implant-filled belly strains the ribs of $his corset.
-			<<default>>
-			<</switch>>
-			<<if $arcologies[0].FSTransformationFetishist != "unset">>
-				Your transformation fetishizing society is fascinated by $his unusual implant.
-			<</if>>
-
-		<<elseif $activeSlave.bellyImplant >= 4000>>
-
-			<<if ($activeSlave.bellyAccessory == "an extreme corset")>>
-				$activeSlave.slaveName's implant-filled belly is tightly compressed by $his corset; one or the other will eventually win out.
-			<<elseif ($activeSlave.bellyAccessory == "a corset")>>
-				$activeSlave.slaveName's implant-filled belly comfortably bulges out of $his corset.
-			<</if>>
-			<<switch $activeSlave.clothes>>
-			<<case "a Fuckdoll suit">>
-				$activeSlave.slaveName's implant-filled belly is allowed to bulge out of a hole in the suit.
-			<<case "conservative clothing">>
-				<<if ($activeSlave.boobs > 20000)>>
-					$activeSlave.slaveName's immense breasts keep $his oversized sweater from covering $his implant-filled belly, though they do a fine job of hiding it themselves.
-				<<elseif ($activeSlave.boobs > 10000)>>
-					$activeSlave.slaveName's implant-filled belly is hidden by $his massive tits and oversized sweater.
-				<<elseif ($activeSlave.boobs > 8000)>>
-					$activeSlave.slaveName's oversized breasts keep $his sweater far from $his implant-filled belly.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's sweater is pulled taut by $his implant-filled belly. $His popped navel forms a small tent in material.
-				<<else>>
-					$activeSlave.slaveName's blouse is pulled taut by $his implant-filled belly. $His popped navel forms a small tent in $his shirt.
-				<</if>>
-			<<case "attractive lingerie for a pregnant woman">>
-				$activeSlave.slaveName's implant-filled belly hides $his silken panties. $His silken vest sensually frames $his heavy stomach.
-			<<case "a maternity dress">>
-				$activeSlave.slaveName's implant-filled belly fills out $his loose dress. $His dress is specially tailored to be modest yet draw attention to $his rounded middle.
-			<<case "stretch pants and a crop-top">>
-				$activeSlave.slaveName's implant-filled belly takes full advantage of $his exposed midriff to bulge freely and slightly obscure $his stretch pants.
-			<<case "chains">>
-				$activeSlave.slaveName's implant-filled belly is tightly wrapped with chains, causing it to bulge angrily.
-			<<case "Western clothing">>
-				$activeSlave.slaveName's flannel shirt can't close over $his implant-filled belly, so $he has left the bottom buttons open leaving $his belly hanging out.
-			<<case "body oil">>
-				$activeSlave.slaveName's implant-filled belly is covered in a sheen of special oil meant to prevent stretch marks.
-			<<case "a toga">>
-				$activeSlave.slaveName's implant-filled belly parts $his toga.
-			<<case "a huipil">>
-				$activeSlave.slaveName's implant-filled belly lifts $his huipil.
-			<<case "a slutty qipao">>
-				$His qipao is slit up the side. However, it only covers the top of $his implant-filled belly.
-			<<case "uncomfortable straps">>
-				$activeSlave.slaveName's slave outfit's straining straps press into $his implant-filled belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling $his popped navel.
-			<<case "shibari ropes">>
-				$activeSlave.slaveName's implant-filled belly is tightly bound with rope; flesh bulges angrily from between them.
-			<<case "a latex catsuit" "restrictive latex">>
-				$activeSlave.slaveName's implant-filled belly greatly distends $his latex suit. $He looks like an over inflated balloon. Only $his popped navel sticking out the front of $his belly disrupts the smoothness.
-			<<case "a military uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's implant-filled belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt strains to contain $his implant-filled belly.
-				<<else>>
-					$activeSlave.slaveName's implant-filled belly notably distends $his uniform's jacket.
-				<</if>>
-			<<case "a schutzstaffel uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's implant-filled belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt strains to contain $his implant-filled belly.
-				<<else>>
-					$activeSlave.slaveName's implant-filled belly notably distends $his uniform's jacket.
-				<</if>>
-			<<case "a slutty schutzstaffel uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's implant-filled belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt strains to contain $his implant-filled belly.
-				<<else>>
-					$activeSlave.slaveName's implant-filled belly notably distends $his uniform's jacket.
-				<</if>>
-			<<case "a red army uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's implant-filled belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt strains to contain $his implant-filled belly.
-				<<else>>
-					$activeSlave.slaveName's implant-filled belly notably distends $his uniform's jacket.
-				<</if>>
-			<<case "a nice nurse outfit">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's implant-filled belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's nurse outfit could be called conservative, if it could cover more than half of $his breasts; $his implant-filled belly hangs out from under them, obscuring $his trousers.
-				<<else>>
-					$activeSlave.slaveName's nurse outfit is almost conservative, though $his implant-filled hangs out from under $his top, slightly obscuring $his trousers.
-				<</if>>
-			<<case "a mini dress">>
-				$activeSlave.slaveName's mini dress tightly clings to $his implant-filled belly.
-			<<case "battlearmor">>
-				$activeSlave.slaveName's armor tightly clings to $his implant-filled belly.
-			<<case "a mounty outfit">>
-				$activeSlave.slaveName's tunic tightly clings to $his implant-filled belly.
-			<<case "lederhosen">>
-				$activeSlave.slaveName's tunic tightly clings to $his implant-filled belly.
-			<<case "a long qipao">>
-				$activeSlave.slaveName's dress tightly clings to $his implant-filled belly.
-			<<case "a dirndl">>
-				$activeSlave.slaveName's dress tightly clings to $his implant-filled belly.
-			<<case "a biyelgee costume">>
-				$activeSlave.slaveName's dress tightly clings to $his implant-filled belly.
-			<<case "attractive lingerie">>
-				$activeSlave.slaveName's implant-filled belly hides $his lacy g-string.
-			<<case "kitty lingerie">>
-				$activeSlave.slaveName's implant-filled belly hides $his silk panties.
-			<<case "a succubus outfit">>
-				$activeSlave.slaveName's implant-filled belly sticks out of $his corset, which is laced above and below it.
-			<<case "a slutty maid outfit">>
-				$activeSlave.slaveName's maid dress fails to cover $his implant-filled belly, but the outfit includes a thin white blouse that conceals only the top half of $his stomach.
-			<<case "a nice maid outfit">>
-				$activeSlave.slaveName's maid dress is almost conservative, it covers $his implant-filled belly completely. Though it cannot hide $his popped navel poking through the front.
-			<<case "a fallen nuns habit">>
-				$activeSlave.slaveName's latex habit's corset is left hanging open fully revealing $his implant-filled belly.
-			<<case "a penitent nuns habit">>
-				$He looks absolutely blasphemous in a habit with an implant-filled belly. The coarse cloth aggravates $his sensitive stretched skin.
-			<<case "a string bikini">>
-				$activeSlave.slaveName's implant-filled belly parts $his string bikini to either side.
-			<<case "a scalemail bikini">>
-				$activeSlave.slaveName's scalemail bikini exposes $his implant-filled belly.
-			<<case "striped panties">>
-				$activeSlave.slaveName's cute panties expose $his implant-filled belly.
-			<<case "clubslut netting">>
-				$activeSlave.slaveName's clubslut netting is stretched out by $his implant-filled belly.
-			<<case "a cheerleader outfit">>
-				$activeSlave.slaveName's cheerleader top covers most of $his implant-filled belly, the bottom of which peeks out showing how slutty this cheerleader is.
-			<<case "cutoffs and a t-shirt">>
-				<<if ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's implant-filled belly is obscured by $his huge tits.
-				<<elseif ($activeSlave.boobs > 2000)>>
-					$activeSlave.slaveName's tits keep $his t-shirt far from $his implant-filled belly.
-				<<else>>
-					$activeSlave.slaveName's t-shirt covers only the top of $his implant-filled belly.
-				<</if>>
-			<<case "a slutty outfit">>
-				$activeSlave.slaveName's implant-filled belly really shows how big of a slut $he is.
-			<<case "a slave gown">>
-				$activeSlave.slaveName's slave gown is carefully tailored, giving $him a sensual motherly look as it carefully caresses $his implant-filled belly.
-			<<case "slutty business attire">>
-				$activeSlave.slaveName's implant-filled belly strains the buttons of $his suit jacket and blouse.
-			<<case "nice business attire">>
-				$activeSlave.slaveName's implant-filled belly looks good in $his specially tailored blouse and jacket.
-			<<case "harem gauze">>
-				$activeSlave.slaveName's harem girl outfit sensually accentuates $his implant-filled belly.
-			<<case "a comfortable bodysuit">>
-				$activeSlave.slaveName's bodysuit tightly clings to $his implant-filled belly, prominently displaying $his popped navel.
-			<<case "a slutty nurse outfit">>
-				$activeSlave.slaveName's jacket barely closes over $his implant-filled belly leaving its buttons threatening to pop.
-			<<case "a schoolgirl outfit">>
-				$activeSlave.slaveName's blouse rides up $his implant-filled belly, leaving $him looking particularly slutty.
-			<<case "a kimono">>
-				$activeSlave.slaveName's implant-filled belly is demurely covered by $his kimono.
-			<<case "a hijab and abaya" "a niqab and abaya">>
-				$activeSlave.slaveName's abaya is filled out by $his implant-filled belly.
-			<<case "a klan robe">>
-				There is a slight roundness to the middle of $activeSlave.slaveName's robe, thanks to $his implant-filled belly.
-			<<case "a burqa">>
-				There is a slight roundness to the middle of $activeSlave.slaveName's burqa, thanks to $his implant-filled belly.
-			<<case "a nice pony outfit" "a slutty pony outfit">>
-				There is a slight roundness to the middle of $activeSlave.slaveName's pony outfit, thanks to $his implant-filled belly.
-			<<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "pasties" "sport shorts and a sports bra" "jeans" "leather pants and a tube top" "sport shorts">>
-				$activeSlave.slaveName's outfit completely bares $his implant-filled belly.
-			<<case "a one-piece swimsuit">>
-				There is a slight roundness to the middle of $activeSlave.slaveName's swimsuit, thanks to $his implant-filled belly.
-			<<case "a sweater" "a sweater and cutoffs" "a sweater and panties">>
-				There is a slight roundness to the middle of $activeSlave.slaveName's sweater, thanks to $his implant-filled belly.
-			<<case "a police uniform">>
-				There is a slight roundness to the middle of $activeSlave.slaveName's uniform, thanks to $his implant-filled belly.
-			<<case "a hanbok">>
-				There is a slight roundness to the middle of $activeSlave.slaveName's hanbok, thanks to $his implant-filled belly.
-			<<case "a gothic lolita dress">>
-				There is a slight roundness to the middle of $activeSlave.slaveName's dress, thanks to $his implant-filled belly.
-			<<case "a tank-top" "a tank-top and panties">>
-				There is a slight roundness to the middle of $activeSlave.slaveName's tank-top, thanks to $his implant-filled belly.
-			<<case "a button-up shirt and panties" "a button-up shirt" "a t-shirt" "a t-shirt and thong" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt" "a t-shirt and jeans" "a t-shirt and panties">>
-				There is a slight roundness to the middle of $activeSlave.slaveName's shirt, thanks to $his implant-filled belly.
-			<<case "a Santa dress">>
-				The belt on $activeSlave.slaveName's dress has been loosened to accommodate the significant bulge of $his implant-filled belly.
-			<<case "a burkini">>
-				$activeSlave.slaveName's burkini bulges significantly from $his implant-filled belly.
-			<<case "a hijab and blouse">>
-				$activeSlave.slaveName's skirt is slightly pushed down by $his implant-filled belly.
-			<<case "battledress">>
-				$activeSlave.slaveName's tank top rides up $his implant-filled belly leaving $him looking like someone who had too much fun on shore leave.
-			<<case "a halter top dress">>
-				$activeSlave.slaveName's beautiful halter top dress is filled by $his implant-filled belly. $His popped navel prominently pokes through the front of $his dress.
-			<<case "a ball gown">>
-				$activeSlave.slaveName's fabulous silken ball gown is tailored to not only fit $his implant-filled belly but draw attention to it.
-			<<case "slutty jewelry">>
-				$activeSlave.slaveName's bangles include a long thin chain that rests above $his popped navel.
-			<<case "a leotard">>
-				$activeSlave.slaveName's tight leotard shows off every kick and movement within $his implant-filled belly. The material tightly clings to $his popped navel.
-			<<case "a monokini">>
-				$activeSlave.slaveName's implant-filled belly pushes down the fabric of $his monokini down somewhat.
-			<<case "overalls">>
-				<<if ($activeSlave.boobs > ($activeSlave.belly+250))>>
-					$activeSlave.slaveName's huge breasts push out $his overalls so far that $his implant-filled belly is left uncovered.
-				<<else>>
-					$activeSlave.slaveName's overalls are significantly curved by $his implant-filled belly.
-				<</if>>
-			<<case "an apron">>
-				$activeSlave.slaveName's apron is filled out by $his implant-filled belly.
-			<<case "a cybersuit">>
-				$activeSlave.slaveName's bodysuit tightly clings to $his implant-filled belly, prominently displaying $his popped navel.
-			<<case "a chattel habit">>
-				The strip of cloth running down $his front is parted to one side by $his implant-filled belly.
-			<<case "a bunny outfit">>
-				$activeSlave.slaveName's teddy is stretched out by $his implant-filled belly. $His popped navel prominently pokes through the material.
-			<<case "spats and a tank top">>
-				<<if ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's implant-filled belly is obscured by $his huge tits.
-				<<elseif ($activeSlave.boobs > 1200)>>
-					$activeSlave.slaveName's top is prevented from trying to cover $his implant-filled belly by $his breasts, allowing it to slightly obscure $his spats from view.
-				<<else>>
-					$activeSlave.slaveName's top can't entirely cover $his implant-filled belly, allowing it to slightly obscure $his spats from view.
-				<</if>>
-			<<case "a bimbo outfit">>
-				$activeSlave.slaveName's miniskirt rests at the base of $his implant-filled belly.
-			<<case "a courtesan dress">>
-				$activeSlave.slaveName's implant-filled belly is carefully caressed by the ribs of $his corset.
-			<<default>>
-			<</switch>>
-			<<if $arcologies[0].FSTransformationFetishist != "unset">>
-				Your transformation fetishizing society is fascinated by $his unusual implant.
-			<</if>>
-
-		<<elseif $activeSlave.weight > 95>>
-
-			<<if ($activeSlave.bellyAccessory == "an extreme corset")>>
-				$activeSlave.slaveName's huge gut is tightly compressed by $his corset, $his fat billows out of any gap it can find.
-			<<elseif ($activeSlave.bellyAccessory == "a corset")>>
-				$activeSlave.slaveName's huge gut hangs out the hole in $his corset designed to accommodate a pregnant belly.
-			<<elseif ($activeSlave.bellyAccessory == "a small empathy belly")>>
-				$activeSlave.slaveName's small empathy belly is barely noticeable over $his huge gut.
-			<</if>>
-			<<switch $activeSlave.clothes>>
-			<<case "a Fuckdoll suit">>
-				$activeSlave.slaveName's fat belly is cruelly squeezed by the suit.
-			<<case "conservative clothing">>
-				<<if ($activeSlave.boobs > 20000)>>
-					$activeSlave.slaveName's immense breasts keep $his oversized sweater from covering $his fat belly, though they do a fine job of hiding it themselves.
-				<<elseif ($activeSlave.boobs > 10000)>>
-					$activeSlave.slaveName's fat belly is hidden by $his massive tits and oversized sweater.
-				<<elseif ($activeSlave.boobs > 8000)>>
-					$activeSlave.slaveName's oversized breasts let $his fat belly hang free.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's sweater is pulled tight over $his fat belly. The bottom of which peeks out from under it.
-				<<else>>
-					$activeSlave.slaveName's blouse is pulled tight over $his fat belly. The bottom of which peeks out from under it.
-				<</if>>
-			<<case "attractive lingerie for a pregnant woman">>
-				$activeSlave.slaveName's fat belly is large enough to hide $his panties. $His silken vest sensually frames $his heavy, jiggly gut.
-			<<case "a maternity dress">>
-				$activeSlave.slaveName's fat belly fills out $his loose dress. $His dress is specially tailored to be modest yet draw attention to a growing pregnancy, though it works on big, jiggly guts all the same.
-			<<case "stretch pants and a crop-top">>
-				$activeSlave.slaveName's fat belly takes full advantage of $his exposed midriff to hang freely and obscure $his stretch pants.
-			<<case "chains">>
-				$activeSlave.slaveName's chains sink deep into $his fat belly, several even disappearing beneath $his folds.
-			<<case "Western clothing">>
-				$activeSlave.slaveName's flannel shirt strains to stay shut over $his fat belly, fat bulges between $his buttons and quite a bit of $his lower belly hangs out beneath $his shirt.
-			<<case "body oil">>
-				$activeSlave.slaveName's fat belly is covered in a sheen of oil.
-			<<case "a toga">>
-				$activeSlave.slaveName's toga can barely be pulled shut over $his fat belly.
-			<<case "a huipil">>
-				$activeSlave.slaveName's huipil gets lifted by $his fat belly, so it's useless for covering $his body.
-			<<case "a slutty qipao">>
-				$His qipao is slit up the side. However, it only covers the top of $his fat belly, allowing it to hang free.
-			<<case "uncomfortable straps">>
-				$activeSlave.slaveName's slave outfit's straps sink deep into $his fat belly, several even disappearing beneath $his folds. The straps connect to a steel ring that parts the fold concealing $his navel, allowing it to be seen once again.
-			<<case "shibari ropes">>
-				$activeSlave.slaveName's binding ropes sink deep into $his fat belly, several even disappearing beneath $his folds.
-			<<case "a latex catsuit" "restrictive latex">>
-				$activeSlave.slaveName's fat belly is compressed by $his latex suit, leaving it looking round and smooth.
-			<<case "a military uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's fat belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt struggles to cover $his fat belly. The bottom of which peeks out from under it.
-				<<else>>
-					$activeSlave.slaveName's fat belly is covered by $his uniform's jacket. The bottom of which just barely peeks out from under it.
-				<</if>>
-			<<case "a schutzstaffel uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's fat belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt struggles to cover $his fat belly. The bottom of which peeks out from under it.
-				<<else>>
-					$activeSlave.slaveName's fat belly is covered by $his uniform's jacket. The bottom of which just barely peeks out from under it.
-				<</if>>
-			<<case "a slutty schutzstaffel uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's fat belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt struggles to cover $his fat belly. The bottom of which peeks out from under it.
-				<<else>>
-					$activeSlave.slaveName's fat belly is covered by $his uniform's jacket. The bottom of which just barely peeks out from under it.
-				<</if>>
-			<<case "a red army uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's fat belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt struggles to cover $his fat belly. The bottom of which peeks out from under it.
-				<<else>>
-					$activeSlave.slaveName's fat belly is covered by $his uniform's jacket. The bottom of which just barely peeks out from under it.
-				<</if>>
-			<<case "a nice nurse outfit">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's fat belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's nurse outfit could be called conservative, if it could cover more than half of $his breasts; $his fat belly freely hangs out from under them, obscuring $his trousers.
-				<<else>>
-					$activeSlave.slaveName's nurse outfit is almost conservative, though $his fat belly freely hangs from under $his top, obscuring $his trousers.
-				<</if>>
-			<<case "a mini dress">>
-				$activeSlave.slaveName's mini dress tightly clings to $his fat belly, clearly showing every fold and roll.
-			<<case "battlearmor">>
-				$activeSlave.slaveName's armor tightly clings to $his fat belly.
-			<<case "lederhosen">>
-				$activeSlave.slaveName's tunic tightly clings to $his fat belly, clearly showing every fold and roll.
-			<<case "a mounty outfit">>
-				$activeSlave.slaveName's tunic tightly clings to $his fat belly, clearly showing every fold and roll.
-			<<case "a long qipao">>
-				$activeSlave.slaveName's dress tightly clings to $his fat belly, clearly showing every fold and roll.
-			<<case "a dirndl">>
-				$activeSlave.slaveName's dress tightly clings to $his fat belly, clearly showing every fold and roll.
-			<<case "a biyelgee costume">>
-				$activeSlave.slaveName's dress tightly clings to $his fat belly, clearly showing every fold and roll.
-			<<case "attractive lingerie">>
-				$activeSlave.slaveName's fat belly hides $his lacy g-string.
-			<<case "kitty lingerie">>
-				$activeSlave.slaveName's fat belly hides $his silk panties.
-			<<case "a succubus outfit">>
-				$activeSlave.slaveName's fat belly sticks out of $his corset, which is laced above and below it allowing it to hang free.
-			<<case "a slutty maid outfit">>
-				$activeSlave.slaveName's maid dress fails to cover $his fat belly, but the outfit includes a thin white blouse that, when stretched, only manages to wrangle the top of $his gut.
-			<<case "a nice maid outfit">>
-				$activeSlave.slaveName's maid dress is almost conservative, it covers $his fat belly completely, but does nothing to hide how big it is.
-			<<case "a fallen nuns habit">>
-				$activeSlave.slaveName's latex habit's corset is barely holding together over $his fat belly, causing flab to spill out from every opening.
-			<<case "a penitent nuns habit">>
-				$His fat belly fills out $his habit. The coarse cloth has plenty of extra skin to aggravate.
-			<<case "a string bikini">>
-				$activeSlave.slaveName's fat belly parts $his string bikini to either side.
-			<<case "a scalemail bikini">>
-				$activeSlave.slaveName's scalemail bikini exposes $his fat belly.
-			<<case "striped panties">>
-				$activeSlave.slaveName's cute panties expose $his fat belly.
-			<<case "clubslut netting">>
-				$activeSlave.slaveName's clubslut netting is stretched out by $his fat belly, forcing flab to poke through the mesh.
-			<<case "a cheerleader outfit">>
-				$activeSlave.slaveName's cheerleader top covers most of $his fat belly. However, the bottom of it peeks out, obscuring $his skirt and a letting everyone know how badly this cheerleader needs to diet.
-			<<case "cutoffs and a t-shirt">>
-				<<if ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's fat belly is obscured by $his huge tits.
-				<<elseif ($activeSlave.boobs > 2000)>>
-					$activeSlave.slaveName's tits keep $his t-shirt busy, allowing $his fat belly to hang free.
-				<<else>>
-					$activeSlave.slaveName's t-shirt covers only the top of $his fat belly, allowing it to hang mostly free and cover $his jeans.
-				<</if>>
-			<<case "a slutty outfit">>
-				$activeSlave.slaveName lets $his fat belly hang free, leaving $him looking particularly slutty.
-			<<case "a slave gown">>
-				$activeSlave.slaveName's slave gown is carefully tailored, accentuating and hugging every curve of $his fat belly.
-			<<case "slutty business attire">>
-				$activeSlave.slaveName's fat belly strains the buttons of $his suit jacket and blouse. The bottom of which just barely peeks out from under them.
-			<<case "nice business attire">>
-				$activeSlave.slaveName's tailored blouse and jacket fit $his fat belly well, though they do nothing to hide how big $his gut is.
-			<<case "harem gauze">>
-				$activeSlave.slaveName's harem girl outfit sensually accentuates $his fat belly.
-			<<case "a comfortable bodysuit">>
-				$activeSlave.slaveName's bodysuit tightly clings to $his fat belly, displaying every fold and roll in it.
-			<<case "a slutty nurse outfit">>
-				$activeSlave.slaveName's jacket barely closes over $his fat belly forcing plenty of flab out from under its bottom and between the straining buttons.
-			<<case "a schoolgirl outfit">>
-				$activeSlave.slaveName's blouse rides up $his fat belly, leaving it hanging loose and covering $his skirt.
-			<<case "a kimono">>
-				$activeSlave.slaveName's fat belly is demurely covered by $his kimono.
-			<<case "a hijab and abaya" "a niqab and abaya">>
-				$activeSlave.slaveName's abaya is filled out by $his fat belly.
-			<<case "a klan robe">>
-				$activeSlave.slaveName's robe is filled out by $his fat belly.
-			<<case "a burqa">>
-				$activeSlave.slaveName's fat belly just manages to brush up against $his burqa.
-			<<case "a nice pony outfit" "a slutty pony outfit">>
-				$activeSlave.slaveName's fat belly molds itself against $his pony outfit.
-			<<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "pasties" "sport shorts and a sports bra" "jeans" "leather pants and a tube top" "sport shorts">>
-				$activeSlave.slaveName's outfit completely bares $his fat belly.
-			<<case "a one-piece swimsuit">>
-				$activeSlave.slaveName's fat belly just manages to brush up against $his swimsuit.
-			<<case "a sweater" "a sweater and cutoffs" "a sweater and panties">>
-				$activeSlave.slaveName's fat belly just manages to brush up against $his sweater.
-			<<case "a police uniform">>
-				$activeSlave.slaveName's fat belly just manages to brush up against $his uniform.
-			<<case "a hanbok">>
-				$activeSlave.slaveName's fat belly just manages to brush up against $his hanbok.
-			<<case "a gothic lolita dress">>
-				$activeSlave.slaveName's fat belly just manages to brush up against $his dress.
-			<<case "a tank-top" "a tank-top and panties">>
-				$activeSlave.slaveName's fat belly just manages to brush up against $his tank-top.
-			<<case "a button-up shirt and panties" "a button-up shirt" "a t-shirt" "a t-shirt and thong" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt" "a t-shirt and jeans" "a t-shirt and panties">>
-				$activeSlave.slaveName's fat belly just manages to brush up against $his shirt.
-			<<case "a Santa dress">>
-				$activeSlave.slaveName's fat belly bulges around the belt around $his waist.
-			<<case "a burkini">>
-				$activeSlave.slaveName's burkini bulges from $his fat belly.
-			<<case "a hijab and blouse">>
-				$activeSlave.slaveName's blouse and skirt are filled out by $his fat belly.
-			<<case "battledress">>
-				$activeSlave.slaveName's tank top rests atop $his fat belly, leaving everyone wondering how this recruit passed basic.
-			<<case "a halter top dress">>
-				$activeSlave.slaveName's beautiful halter top dress is filled by $his fat belly. Every crease, fold and roll is clearly visible within it.
-			<<case "a ball gown">>
-				$activeSlave.slaveName's fabulous silken ball gown is tailored to not only fit $his fat belly but draw attention to it.
-			<<case "slutty jewelry">>
-				$activeSlave.slaveName's bangles include long, thin chains running along $his fat folds.
-			<<case "a leotard">>
-				$activeSlave.slaveName's tight leotard tightly clings to $his fat belly, clearly displaying every fold and roll.
-			<<case "a monokini">>
-				$activeSlave.slaveName's monokini tightly clings to $his fat belly, clearly displaying every fold and roll.
-			<<case "overalls">>
-				<<if ($activeSlave.boobs > ($activeSlave.belly+250))>>
-					$activeSlave.slaveName's large breasts push out $his overalls so far that $his fat belly is left uncovered.
-				<<else>>
-					$activeSlave.slaveName's fat belly bulges out from over the sides of $his overalls.
-				<</if>>
-			<<case "an apron">>
-				$activeSlave.slaveName's mini dress tightly clings to $his fat belly, clearly showing every fold and roll.
-			<<case "a cybersuit">>
-				$activeSlave.slaveName's bodysuit tightly clings to $his fat belly, displaying every fold and roll in it.
-			<<case "a chattel habit">>
-				The strip of cloth running down $his front is gently sinks into $his fat belly.
-			<<case "a bunny outfit">>
-				$activeSlave.slaveName's teddy is stretched out by $his fat belly. $His flab juts out around its edges and it does nothing to hide $his folds and rolls.
-			<<case "spats and a tank top">>
-				<<if ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's fat belly is obscured by $his huge tits.
-				<<elseif ($activeSlave.boobs > 1200)>>
-					$activeSlave.slaveName's top is prevented from trying to cover $his fat belly by $his breasts, allowing it to hang loose and obscure $his spats from view.
-				<<else>>
-					$activeSlave.slaveName's top can't entirely cover $his fat belly, allowing it to hang loose and slightly obscure $his spats from view.
-				<</if>>
-			<<case "a bimbo outfit">>
-				$activeSlave.slaveName's thong strings dig into $his fat belly as it lewdly draps over $his miniskirt.
-			<<case "a courtesan dress">>
-				$activeSlave.slaveName's fat belly bulges the ribs of $his corset, creating valleys of soft flesh.
-			<<default>>
-			<</switch>>
-			<<if $arcologies[0].FSSlimnessEnthusiast != "unset">>
-				Your sleek, slim society finds $his bloated body unsightly.
-			<</if>>
-
-		<<elseif $activeSlave.bellyImplant >= 2000>>
-
-			<<if ($activeSlave.bellyAccessory == "an extreme corset")>>
-				$activeSlave.slaveName's implant-rounded belly is tightly compressed by $his corset causing $his distress.
-			<<elseif ($activeSlave.bellyAccessory == "a corset")>>
-				$activeSlave.slaveName's implant-rounded belly comfortably rounds out $his corset.
-			<</if>>
-			<<switch $activeSlave.clothes>>
-			<<case "a Fuckdoll suit">>
-				$activeSlave.slaveName's implant-rounded belly nearly requires $him to be switched into a suit with a hole for it to hang out from.
-			<<case "conservative clothing">>
-				<<if ($activeSlave.boobs > 20000)>>
-					$activeSlave.slaveName's immense breasts keep $his oversized sweater from covering $his implant-rounded belly, though they do a fine job of hiding it themselves.
-				<<elseif ($activeSlave.boobs > 10000)>>
-					$activeSlave.slaveName's implant-rounded belly is hidden by $his massive tits and oversized sweater.
-				<<elseif ($activeSlave.boobs > 8000)>>
-					$activeSlave.slaveName's oversized breasts keep $his sweater far from $his implant-rounded belly.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's sweater bulges with $his implant-rounded belly.
-				<<else>>
-					$activeSlave.slaveName's blouse bulges with $his implant-rounded belly.
-				<</if>>
-			<<case "attractive lingerie for a pregnant woman">>
-				$activeSlave.slaveName's implant-rounded belly rests above $his silken panties. $His silken vest sensually frames $his swollen belly.
-			<<case "a maternity dress">>
-				$activeSlave.slaveName's implant-rounded belly is noticeable under $his loose dress. $His dress is specially tailored to be modest yet draw attention to $his swollen middle.
-			<<case "stretch pants and a crop-top">>
-				$activeSlave.slaveName's implant-rounded belly takes full advantage of $his exposed midriff to bulge freely.
-			<<case "chains">>
-				$activeSlave.slaveName's implant-rounded belly is tightly wrapped with chains.
-			<<case "Western clothing">>
-				$activeSlave.slaveName's flannel shirt bulges with $his implant-rounded belly.
-			<<case "body oil">>
-				$activeSlave.slaveName's implant-rounded belly is covered in a sheen of oil.
-			<<case "a toga">>
-				$activeSlave.slaveName's implant-rounded belly gently bulges under $his toga.
-			<<case "a huipil">>
-				$activeSlave.slaveName's implant-rounded belly slightly bulges under $his huipil.
-			<<case "a slutty qipao">>
-				$His qipao is slit up the side. The front is pushed out by $his implant-rounded belly.
-			<<case "uncomfortable straps">>
-				$activeSlave.slaveName's slave outfit's straining straps press into $his implant-rounded belly.
-			<<case "shibari ropes">>
-				$activeSlave.slaveName's implant-rounded belly is tightly bound with rope, flesh bulges from between them.
-			<<case "a latex catsuit" "restrictive latex">>
-				$activeSlave.slaveName's implant-rounded belly greatly bulges under $his latex suit.
-			<<case "a military uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's implant-rounded belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's undershirt covers $his implant-rounded belly.
-				<<else>>
-					$activeSlave.slaveName's uniform covers $his implant-rounded belly.
-				<</if>>
-			<<case "a schutzstaffel uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's implant-rounded belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's undershirt covers $his implant-rounded belly.
-				<<else>>
-					$activeSlave.slaveName's uniform covers $his implant-rounded belly.
-				<</if>>
-			<<case "a slutty schutzstaffel uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's implant-rounded belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's undershirt covers $his implant-rounded belly.
-				<<else>>
-					$activeSlave.slaveName's uniform covers $his implant-rounded belly.
-				<</if>>
-			<<case "a red army uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's implant-rounded belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's undershirt covers $his implant-rounded belly.
-				<<else>>
-					$activeSlave.slaveName's uniform covers $his implant-rounded belly.
-				<</if>>
-			<<case "a nice nurse outfit">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's implant-rounded belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's nurse outfit could be called conservative, if it could cover more than half of $his breasts; $his implant-rounded belly is completely exposed.
-				<<else>>
-					$activeSlave.slaveName's nurse outfit is almost conservative, it covers $his implant-rounded belly completely.
-				<</if>>
-			<<case "a mini dress">>
-				$activeSlave.slaveName's mini dress tightly clings to $his implant-rounded belly.
-			<<case "battlearmor">>
-				$activeSlave.slaveName's armor tightly clings to $his implant-rounded belly.
-			<<case "a mounty outfit">>
-				$activeSlave.slaveName's tunic tightly clings to $his implant-rounded belly.
-			<<case "lederhosen">>
-				$activeSlave.slaveName's tunic tightly clings to $his implant-rounded belly.
-			<<case "a long qipao">>
-				$activeSlave.slaveName's dress tightly clings to $his implant-rounded belly.
-			<<case "a dirndl">>
-				$activeSlave.slaveName's dress tightly clings to $his implant-rounded belly.
-			<<case "a biyelgee costume">>
-				$activeSlave.slaveName's dress tightly clings to $his implant-rounded belly.
-			<<case "attractive lingerie">>
-				$activeSlave.slaveName's implant-rounded belly rests above $his lacy g-string.
-			<<case "kitty lingerie">>
-				$activeSlave.slaveName's implant-rounded belly rests above $his silk panties.
-			<<case "a succubus outfit">>
-				$activeSlave.slaveName's implant-rounded belly peeks out of $his corset, which is laced above and below it.
-			<<case "a slutty maid outfit">>
-				$activeSlave.slaveName's maid dress is slightly distended by $his implant-rounded belly.
-			<<case "a nice maid outfit">>
-				$activeSlave.slaveName's maid dress is almost conservative, it covers $his implant-rounded belly completely.
-			<<case "a fallen nuns habit">>
-				$activeSlave.slaveName's latex habit's corset struggles to hold $his implant-rounded belly.
-			<<case "a penitent nuns habit">>
-				$activeSlave.slaveName's habit gently bulges from $his implant-rounded belly. The coarse cloth aggravates $his sensitive skin.
-			<<case "a string bikini">>
-				$activeSlave.slaveName's implant-rounded belly juts out between the strings of $his bikini.
-			<<case "a scalemail bikini">>
-				$activeSlave.slaveName's implant-rounded belly juts out underneath $his bikini.
-			<<case "striped panties">>
-				$activeSlave.slaveName's implant-rounded belly juts out above $his panties.
-			<<case "clubslut netting">>
-				$activeSlave.slaveName's clubslut netting clings to $his implant-rounded belly.
-			<<case "a cheerleader outfit">>
-				$activeSlave.slaveName's cheerleader top gently bulges from $his implant-rounded belly displaying how slutty this cheerleader is.
-			<<case "cutoffs and a t-shirt">>
-				<<if ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's implant-rounded belly is obscured by $his huge tits.
-				<<elseif ($activeSlave.boobs > 2000)>>
-					$activeSlave.slaveName's tits keep $his t-shirt far from $his implant-rounded belly.
-				<<else>>
-					$activeSlave.slaveName's t-shirt bulges with $his implant-rounded belly. The bottom of which is beginning to peek from under $his T-shirt.
-				<</if>>
-			<<case "a slutty outfit">>
-				$activeSlave.slaveName's implant-rounded belly shows how big of a slut $he is.
-			<<case "a slave gown">>
-				$activeSlave.slaveName's slave gown is carefully tailored, giving $him a sensual look as it carefully caresses $his implant-rounded belly.
-			<<case "slutty business attire">>
-				$activeSlave.slaveName's implant-rounded belly bulges $his suit jacket and blouse. It peeks out from under their bottom slightly.
-			<<case "nice business attire">>
-				$activeSlave.slaveName's implant-rounded belly bulges under $his tailored blouse and jacket.
-			<<case "harem gauze">>
-				$activeSlave.slaveName's harem girl outfit sensually accentuates $his implant-rounded middle.
-			<<case "a comfortable bodysuit">>
-				$activeSlave.slaveName's bodysuit tightly clings to $his implant-rounded belly, displaying $his swollen body.
-			<<case "a slutty nurse outfit">>
-				$activeSlave.slaveName's jacket bulges with $his implant-rounded belly, which can be seen peeking out from underneath.
-			<<case "a schoolgirl outfit">>
-				$activeSlave.slaveName's blouse bulges with $his implant-rounded belly. It peeks out from the bottom leaving $him looking particularly slutty.
-			<<case "a kimono">>
-				$activeSlave.slaveName's implant-rounded belly is demurely covered by $his kimono.
-			<<case "a hijab and abaya" "a niqab and abaya">>
-				$activeSlave.slaveName's abaya bulges with $his implant-rounded belly.
-			<<case "a klan robe">>
-				$activeSlave.slaveName's robe is filled out by $his implant-swollen belly.
-			<<case "a burqa">>
-				$activeSlave.slaveName's burqa is filled out by $his implant-swollen belly.
-			<<case "a nice pony outfit" "a slutty pony outfit">>
-				$activeSlave.slaveName's pony outfit is rounded out by $his implant-swollen belly.
-			<<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "pasties" "sport shorts and a sports bra" "jeans" "leather pants and a tube top" "sport shorts">>
-				$activeSlave.slaveName's outfit completely bares $his implant-swollen belly.
-			<<case "a one-piece swimsuit">>
-				$activeSlave.slaveName's swimsuit is rounded out by $his implant-swollen belly.
-			<<case "a sweater" "a sweater and cutoffs" "a sweater and panties">>
-				$activeSlave.slaveName's sweater is rounded out by $his implant-swollen belly.
-			<<case "a police uniform">>
-				$activeSlave.slaveName's uniform is rounded out by $his implant-swollen belly.
-			<<case "a hanbok">>
-				$activeSlave.slaveName's hanbok gently bulges from $his implant-swollen belly.
-			<<case "a gothic lolita dress">>
-				$activeSlave.slaveName's dress gently bulges from $his implant-swollen belly.
-			<<case "a tank-top" "a tank-top and panties">>
-				$activeSlave.slaveName's tank-top gently bulges from $his implant-swollen belly.
-			<<case "a button-up shirt and panties" "a button-up shirt" "a t-shirt" "a t-shirt and thong" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt" "a t-shirt and jeans" "a t-shirt and panties">>
-				$activeSlave.slaveName's shirt covers most of $his implant-swollen belly.
-			<<case "a Santa dress">>
-				The belt of $activeSlave.slaveName's dress lies atop the gentle bulge of $his implant-rounded belly.
-			<<case "a burkini">>
-				$activeSlave.slaveName's burkini gently bulges from $his implant-rounded belly.
-			<<case "a hijab and blouse">>
-				$activeSlave.slaveName's blouse and skirt bulge from $his implant-rounded belly.
-			<<case "battledress">>
-				$activeSlave.slaveName's tank top covers the top of $his implant-rounded belly leaving $him looking like someone who had too much fun on shore leave.
-			<<case "a halter top dress">>
-				$activeSlave.slaveName's beautiful halter top dress bulges with $his implant-rounded belly.
-			<<case "a ball gown">>
-				$activeSlave.slaveName's fabulous silken ball gown is tailored to draw attention to $his rounded middle.
-			<<case "slutty jewelry">>
-				$activeSlave.slaveName's bangles include a long thin chain that rests across $his implant-rounded belly.
-			<<case "a leotard">>
-				$activeSlave.slaveName's tight leotard shows off $his implant-rounded belly.
-			<<case "a monokini">>
-				$activeSlave.slaveName's monokini is filled out by $his implant-rounded belly.
-			<<case "overalls">>
-				<<if ($activeSlave.boobs > ($activeSlave.belly+250))>>
-					$activeSlave.slaveName's large breasts push out $his overalls so far that $his implant-rounded belly is left uncovered.
-				<<else>>
-					$activeSlave.slaveName's implant-rounded belly rounds out the front of $his overalls.
-				<</if>>
-			<<case "an apron">>
-				$activeSlave.slaveName's apron is rounded out by $his implant-rounded belly.
-			<<case "a cybersuit">>
-				$activeSlave.slaveName's bodysuit tightly clings to $his implant-rounded belly, displaying $his swollen body.
-			<<case "a chattel habit">>
-				The strip of cloth running down $his front is pushed out by $his implant-rounded belly.
-			<<case "a bunny outfit">>
-				$activeSlave.slaveName's teddy bulges with $his implant-rounded belly.
-			<<case "spats and a tank top">>
-				<<if ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's fat belly is obscured by $his huge tits.
-				<<elseif ($activeSlave.boobs > 1200)>>
-					$activeSlave.slaveName's top is prevented from trying to cover $his implant-rounded belly by $his breasts.
-				<<else>>
-					$activeSlave.slaveName's top bulges with $his implant-rounded belly, which peeks out from the bottom.
-				<</if>>
-			<<case "a bimbo outfit">>
-				$activeSlave.slaveName's miniskirt keeps sliding down $his implant-rounded belly.
-			<<case "a courtesan dress">>
-				$activeSlave.slaveName's corset bulges with $his implant-rounded belly.
-			<<default>>
-			<</switch>>
-			<<if $arcologies[0].FSTransformationFetishist != "unset">>
-				Your transformation fetishizing society is fascinated by $his unusual implant.
-			<</if>>
-
-		<</if>>
-
-	<<else>>
-		$activeSlave.slaveName's belly is bare and ready for surgery.
-	<</if>>
-<</if>>
-
-<<if $activeSlave.fuckdoll == 0>>
-
-	<<if $activeSlave.navelPiercing == 1>>
-		$His navel bears a simple stud.
-	<<elseif $activeSlave.navelPiercing == 2>>
-		$His navel is pierced with a big ring.
-		<<if $activeSlave.bellyImplant >= 16000>>
-			It has a heavy bell dangling from it.
-		<<elseif ($activeSlave.clothes == "slutty jewelry")>>
-			It has a length of gilded chain dangling from it.
-		<<else>>
-			It has a short length of chain dangling from it.
-		<</if>>
-	<</if>>
-
-	<<if $activeSlave.bellyTat != 0>>
-		<<if $activeSlave.bellyImplant >= 32000>>
-			<<if $activeSlave.bellyTat == "a heart">>
-				A heart is tattooed around $his popped navel, though it is barely recognizable so stretched by $his titanic implant-filled middle.
-			<<elseif $activeSlave.bellyTat == "a star">>
-				A star is tattooed around $his popped navel, though it is barely recognizable so stretched by $his titanic implant-filled pregnancy middle.
-			<<elseif $activeSlave.bellyTat == "a butterfly">>
-				A butterfly is tattooed around $his popped navel, though it is barely recognizable so stretched by $his titanic implant-filled pregnancy middle.
-			<</if>>
-		<<elseif $activeSlave.bellyImplant >= 16000>>
-			<<if $activeSlave.bellyTat == "a heart">>
-				A heart is tattooed around $his popped navel, though it is rather stretched by $his enormous implant-filled middle.
-			<<elseif $activeSlave.bellyTat == "a star">>
-				A star is tattooed around $his popped navel, though it is rather stretched by $his enormous implant-filled middle.
-			<<elseif $activeSlave.bellyTat == "a butterfly">>
-				A butterfly is tattooed around $his popped navel, though it is rather stretched by $his enormous implant-filled middle.
-			<</if>>
-		<<elseif $activeSlave.bellyImplant >= 8000>>
-			<<if $activeSlave.bellyTat == "a heart">>
-				A heart is tattooed around $his popped navel, only to be truly seen when $he appears full-term.
-			<<elseif $activeSlave.bellyTat == "a star">>
-				A star is tattooed around $his popped navel, only to be truly seen when $he appears full-term.
-			<<elseif $activeSlave.bellyTat == "a butterfly">>
-				A butterfly is tattooed around $his popped navel, only to be truly seen when $he appears full-term.
-			<</if>>
-		<<elseif $activeSlave.bellyImplant >= 4000>>
-			$He has a barely recognizable tattoo around $his navel, it should reveal itself fully once $he is a little bigger.
-		<<elseif $activeSlave.bellyImplant >= 2000>>
-			$He has an unrecognizable tattoo around $his navel, it has stretched slightly along with $his rounded middle.
-		<<else>>
-			$He has an unrecognizable tattoo scrunched around $his navel.
-		<</if>>
-	<</if>>
-
-	<<if $activeSlave.birthsTat > 0>>
-		<<if $activeSlave.birthsTat > 1>>
-			$He has a series of $activeSlave.birthsTat baby-shaped tattoos adorning $his stomach; one for each successful pregnancy<<if $activeSlave.pregKnown == 1>> and a temporary one for $his current pregnancy<</if>>.
-		<<else>>
-			$He has a single baby-shaped tattoo<<if $activeSlave.pregKnown == 1>>, and one temporary one,<</if>> adorning $his stomach.
-		<</if>>
-	<<elseif $activeSlave.birthsTat == 0 && $activeSlave.abortionTat == -1 && $activeSlave.pregKnown == 1>>
-		$He has a single baby-shaped temporary tattoo adorning $his stomach.
-	<</if>>
-	<<if $activeSlave.abortionTat > 0>>
-		<<if $activeSlave.abortionTat > 1>>
-			$He has a series of $activeSlave.abortionTat crossed out baby-shaped tattoos<<if $activeSlave.pregKnown == 1>>, and one uncrossed one,<</if>> adorning $his stomach; one for each pregnancy $he's failed to complete.
-		<<else>>
-			$He has a single crossed out, baby-shaped tattoo<<if $activeSlave.pregKnown == 1>>, and one uncrossed one,<</if>> adorning $his stomach.
-		<</if>>
-	<<elseif $activeSlave.abortionTat == 0 && $activeSlave.birthsTat == -1 && $activeSlave.pregKnown == 1>>
-		$He has a single baby-shaped temporary tattoo adorning $his stomach.
-	<</if>>
-
-	<<if $activeSlave.breedingMark == 1>>
-		<<if $propOutcome == 1>>
-			The Societal Elites' mark designating $him as a breeder is prominently displayed across $his lower belly, beneath $his navel.
-		<<else>>
-			An alluring tattoo is prominently displayed across $his lower belly, beneath $his navel, urging $him to be bred.
-		<</if>>
-	<</if>>
-
-	<<if $activeSlave.physicalAge >= 13>>
-		<<if $activeSlave.bellyImplant >= 31000>>
-			<<if canWalk($activeSlave)>>
-				$His middle is so massive that it is difficult for $him to move.
-				<<if $activeSlave.muscles > 95>>
-					However, $he is so powerfully built that $he can manage it with effort, using $his arms to support it.
-				<<elseif $activeSlave.muscles > 30>>
-					$He can barely manage to get to $his feet unaided, and usually walks with $his arms under $his belly to help take its weight.
-				<<elseif $activeSlave.muscles > 5>>
-					$He requires assistance to get to $his feet, and tends to lean on things to help relieve the weight.
-				<<else>>
-					$He cannot get to $his feet unaided, and tries to stay seated as much as $he can.
-				<</if>>
-			<<elseif tooBigBelly($activeSlave)>>
-				It is easily as large as $his torso, making $him at least half belly.
-			<<else>>
-				It is easily as large as $his torso, making $him at least half belly.
-			<</if>>
-			<<if $activeSlave.bellyImplant >= 16000>>
-				<<if $pregAccessibility == 1>>
-					Fortunately for $him, the penthouse is adapted for daily life with a belly
-				<<else>>
-					$He<<if $saleDescription == 1>>'ll have<<else>> has<</if>> trouble living in your penthouse, which is not designed for <<= $girl>>s with bellies
-				<</if>>
-				wider than a standard doorway.
-			<</if>>
-		<</if>>
-	<<elseif $activeSlave.physicalAge >= 4>>
-		<<if $activeSlave.bellyImplant >= 14000>>
-			<<if canWalk($activeSlave)>>
-				$His middle is so massive that it is difficult for $him to move.
-				<<if $activeSlave.muscles > 95>>
-					However, $he is so powerfully built that $he can manage it with effort, using $his arms to support it.
-				<<elseif $activeSlave.muscles > 30>>
-					$He can barely manage to get to $his feet unaided, and usually walks with $his arms under $his belly to help take its weight.
-				<<elseif $activeSlave.muscles > 5>>
-					$He requires assistance to get to $his feet, and tends to lean on things to help relieve the weight.
-				<<else>>
-					$He cannot get to $his feet unaided, and tries to stay seated as much as $he can.
-				<</if>>
-			<<elseif tooBigBelly($activeSlave)>>
-				It is easily bigger than $he is, making $him mostly belly.
-			<<else>>
-				It is easily as large as $his torso, making $him at least half belly.
-			<</if>>
-			<<if $activeSlave.bellyImplant >= 16000>>
-				<<if $pregAccessibility == 1>>
-					Fortunately for $him, the penthouse is adapted for daily life with a belly
-				<<else>>
-					$He<<if $saleDescription == 1>>'ll have<<else>> has<</if>> trouble living in your penthouse, which is not designed for <<= $girl>>s with bellies
-				<</if>>
-				wider than a standard doorway.
-			<</if>>
-		<</if>>
-	<<elseif $activeSlave.physicalAge < 4>>
-		<<if $activeSlave.bellyImplant >= 10000>>
-			<<if canWalk($activeSlave)>>
-				$His middle is so massive that it is difficult for $him to move.
-				<<if $activeSlave.muscles > 95>>
-					However, $he is so powerfully built that $he can manage it with effort, using $his arms to support it.
-				<<elseif $activeSlave.muscles > 30>>
-					$He can barely manage to get to $his feet unaided, and usually walks with $his arms under $his belly to help take its weight.
-				<<elseif $activeSlave.muscles > 5>>
-					$He requires assistance to get to $his feet, and tends to lean on things to help relieve the weight.
-				<<else>>
-					$He cannot get to $his feet unaided, and tries to stay seated as much as $he can.
-				<</if>>
-			<<elseif tooBigBelly($activeSlave)>>
-				It easily dwarfs $him, making $him almost entirely belly.
-			<<else>>
-				It is easily as large as $his torso, making $him at least half belly.
-			<</if>>
-			<<if $activeSlave.bellyImplant >= 16000>>
-				<<if $pregAccessibility == 1>>
-					Fortunately for $him, the penthouse is adapted for daily life with a belly
-				<<else>>
-					$He<<if $saleDescription == 1>>'ll have<<else>> has<</if>> trouble living in your penthouse, which is not designed for <<= $girl>>s with bellies
-				<</if>>
-				wider than a standard doorway.
-			<</if>>
-		<</if>>
-	<</if>>
-
-<<else>>
-	<<if $activeSlave.navelPiercing > 0>>
-		<<if $activeSlave.bellyImplant >= 4000>>
-			<<if $activeSlave.navelPiercing == 1>>
-				$His popped navel bears a simple stud.
-			<<elseif $activeSlave.navelPiercing == 2>>
-				$His popped navel is pierced with a big ring.
-			<</if>>
-			It's eye-catching, since most of $his piercings are hidden by the suit.
-		<</if>>
-	<<else>>
-		$His navel piercing runs through the suit's material.
-	<</if>>
-	<<if $activeSlave.physicalAge >= 13>>
-		<<if $activeSlave.bellyImplant >= 31000>>
-			The difficulties of carrying such an enormous implant are greatly reduced for a Fuckdoll, since it's almost always restrained, stationary, or both.
-		<</if>>
-	<<elseif $activeSlave.physicalAge >= 4>>
-		<<if $activeSlave.bellyImplant >= 14000>>
-			The difficulties of carrying such an enormous implant are greatly reduced for a Fuckdoll, since it's almost always restrained, stationary, or both.
-		<</if>>
-	<<elseif $activeSlave.physicalAge < 4>>
-		<<if $activeSlave.bellyImplant >= 10000>>
-			The difficulties of carrying such an enormous implant are greatly reduced for a Fuckdoll, since it's almost always restrained, stationary, or both.
-		<</if>>
-	<</if>>
-<</if>>
-
-<</widget>>
-
-<<widget "BellyInflationDescription">>
-
-<<if $activeSlave.inflation == 3>>
-	$His middle is enormously distended with <<print $activeSlave.inflationType>>,
-	<<if $activeSlave.physicalAge <= 3>>
-		and $his toddlerish body is absolutely filled by $his bloated innards. $He can barely move $himself and resembles an over inflated blow-up doll.
-	<<elseif $activeSlave.physicalAge <= 12>>
-		and $his massive, drum-taut belly dominates $his poor little frame.
-	<<elseif $activeSlave.height >= 185>>
-		but $his tall frame bears $his massive, drum-taut belly well.
-	<<elseif $activeSlave.height < 150>>
-		and $his massive, drum-taut belly dominates $his poor little frame.
-	<<elseif $activeSlave.muscles > 30>>
-		and $his fit body bears $his massive, drum-taut belly well.
-	<<else>>
-		and $his massive, drum-taut belly dominates $his frame.
-	<</if>>
-<<elseif $activeSlave.inflation == 2>>
-	$He is greatly distended with <<print $activeSlave.inflationType>>,
-	<<if $activeSlave.physicalAge <= 3>>
-		and $his swollen belly is nearly as big as $his toddlerish body.
-	<<elseif $activeSlave.physicalAge <= 12>>
-		and $his swollen belly dominates $his poor little frame.
-	<<elseif $activeSlave.height >= 185>>
-		but $his tall frame bears $his swollen belly well.
-	<<elseif $activeSlave.height < 150>>
-		and $his swollen belly dominates $his poor little frame.
-	<<elseif $activeSlave.muscles > 30>>
-		and $his fit body bears $his swollen belly well.
-	<<else>>
-		and $his swollen belly dominates $his frame.
-	<</if>>
-<<elseif $activeSlave.inflation == 1>>
-	$He is visibly swollen with <<print $activeSlave.inflationType>>,
-	<<if $activeSlave.physicalAge <= 3>>
-		and $his sloshing belly looks obscene on $his toddlerish body.
-	<<elseif $activeSlave.physicalAge <= 10>>
-		and $his sloshing belly looks huge on $his tiny frame.
-	<<elseif $activeSlave.weight > 10>>
-		but $he's sufficiently overweight that it's not obvious.
-	<<elseif $activeSlave.height < 150>>
-		and $his sloshing belly looks huge on $his tiny frame.
-	<<elseif $activeSlave.weight <= -10>>
-		$his thin form making $his sloshing belly very obvious.
-	<<else>>
-		giving $his stomach a distinct curvature.
-	<</if>>
-<</if>>
-
-<<if ($showClothing == 1) && ($saleDescription == 0)>>
-
-	<<if $surgeryDescription == 0>>
-
-		<<if $activeSlave.inflation == 3>>
-
-			<<if ($activeSlave.bellyAccessory == "an extreme corset")>>
-				$activeSlave.slaveName's hugely swollen belly is tightly compressed by $his corset causing it to bulge above and below; one or the other will eventually win out.
-			<<elseif ($activeSlave.bellyAccessory == "a corset")>>
-				$activeSlave.slaveName's hugely swollen belly comfortably bulges out of $his corset.
-			<</if>>
-			<<switch $activeSlave.clothes>>
-			<<case "conservative clothing">>
-				<<if ($activeSlave.boobs > 20000)>>
-					$activeSlave.slaveName's immense breasts keep $his oversized sweater from covering $his hugely swollen belly, though they do a fine job of hiding it themselves.
-				<<elseif ($activeSlave.boobs > 10000)>>
-					$activeSlave.slaveName's hugely swollen belly is hidden by $his massive tits and oversized sweater.
-				<<elseif ($activeSlave.boobs > 8000)>>
-					$activeSlave.slaveName's oversized breasts keep $his sweater far from $his hugely swollen belly.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's sweater is pulled taut by $his hugely swollen belly, the bottom of which can be seen peeking out from underneath. $His popped navel forms a small tent in the material.
-				<<else>>
-					$activeSlave.slaveName's blouse is pulled taut by $his hugely swollen belly, the bottom of which can be seen peeking out from underneath. $His popped navel forms a small tent in $his shirt.
-				<</if>>
-			<<case "attractive lingerie for a pregnant woman">>
-				$activeSlave.slaveName's hugely swollen belly completely hides $his silken panties. $His silken vest sensually frames $his heavy belly.
-			<<case "a maternity dress">>
-				$activeSlave.slaveName's hugely swollen belly fills out $his loose dress. $His dress is specially tailored to be modest yet draw attention to $his rounded stomach.
-			<<case "stretch pants and a crop-top">>
-				$activeSlave.slaveName's hugely swollen belly takes full advantage of $his exposed midriff to bulge freely and obscure $his stretch pants.
-			<<case "chains">>
-				$activeSlave.slaveName's hugely swollen belly is tightly wrapped with chains, causing it to bulge angrily.
-			<<case "Western clothing">>
-				$activeSlave.slaveName's flannel shirt can't close over $his hugely swollen belly so $he has left the bottom buttons open, leaving $his belly hanging out.
-			<<case "body oil">>
-				$activeSlave.slaveName's hugely swollen is covered in a sheen of oil.
-			<<case "a toga">>
-				$activeSlave.slaveName's hugely swollen belly parts $his toga.
-			<<case "a huipil">>
-				$activeSlave.slaveName's hugely swollen belly lifts $his huipil.
-			<<case "a slutty qipao">>
-				$His qipao is slit up the side. However, it merely rests atop $his hugely swollen belly.
-			<<case "uncomfortable straps">>
-				$activeSlave.slaveName's slave outfit's straining straps press into $his hugely swollen belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling $his popped navel.
-			<<case "shibari ropes">>
-				$activeSlave.slaveName's hugely swollen belly is tightly bound with ropes; flesh bulges angrily from between them.
-			<<case "a latex catsuit" "restrictive latex">>
-				$activeSlave.slaveName's hugely swollen belly greatly distends $his latex suit. $He looks like an over inflated balloon ready to pop. Only $his popped navel sticking out the front of $his belly disrupts the smoothness.
-			<<case "a military uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's hugely swollen belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt strains to contain $his hugely swollen belly.
-				<<else>>
-					$activeSlave.slaveName's hugely swollen belly greatly stretches $his uniform's jacket.
-				<</if>>
-			<<case "a schutzstaffel uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's hugely swollen belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt strains to contain $his hugely swollen belly.
-				<<else>>
-					$activeSlave.slaveName's hugely swollen belly greatly stretches $his uniform's jacket.
-				<</if>>
-			<<case "a slutty schutzstaffel uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's hugely swollen belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt strains to contain $his hugely swollen belly.
-				<<else>>
-					$activeSlave.slaveName's hugely swollen belly greatly stretches $his uniform's jacket.
-				<</if>>
-			<<case "a red army uniform uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's hugely swollen belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt strains to contain $his hugely swollen belly.
-				<<else>>
-					$activeSlave.slaveName's hugely swollen belly greatly stretches $his uniform's jacket.
-				<</if>>
-			<<case "a nice nurse outfit">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's hugely swollen belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's nurse outfit could be called conservative, if it could cover more than half of $his breasts; $his hugely swollen belly hangs out from under them, obscuring $his trousers.
-				<<else>>
-					$activeSlave.slaveName's nurse outfit is almost conservative, though $his hugely swollen belly hangs out from under $his top, obscuring $his trousers.
-				<</if>>
-			<<case "a mini dress">>
-				$activeSlave.slaveName's mini dress barely clings to $his hugely swollen belly.
-			<<case "a long qipao">>
-				$activeSlave.slaveName'sdress barely clings to $his hugely swollen belly.
-			<<case "battlearmor">>
-				$activeSlave.slaveName's armor barely clings to $his hugely swollen belly.
-			<<case "a mounty outfit">>
-				$activeSlave.slaveName's tunic barely clings to $his hugely swollen belly.
-			<<case "a dirndl">>
-				$activeSlave.slaveName's dress barely clings to $his hugely swollen belly.
-			<<case "lederhosen">>
-				$activeSlave.slaveName's tunic barely clings to $his hugely swollen belly.
-			<<case "a biyelgee costume">>
-				$activeSlave.slaveName's dress barely clings to $his hugely swollen belly.
-			<<case "attractive lingerie">>
-				$activeSlave.slaveName's hugely swollen belly completely hides $his lacy g-string.
-			<<case "kitty lingerie">>
-				$activeSlave.slaveName's hugely swollen belly completely hides $his silk panties.
-			<<case "a succubus outfit">>
-				$activeSlave.slaveName's hugely swollen belly sticks out of $his corset, which is laced above and below it as best $he can manage.
-			<<case "a slutty maid outfit">>
-				$activeSlave.slaveName's maid dress fails to cover $his hugely swollen belly, but the outfit includes a thin white blouse that conceals only the upper part of $his stomach.
-			<<case "a nice maid outfit">>
-				$activeSlave.slaveName's maid dress is almost conservative. It covers $his hugely swollen belly completely, though it cannot hide $his popped navel, poking through the front.
-			<<case "a fallen nuns habit">>
-				$activeSlave.slaveName's latex habit's corset is left hanging open fully revealing $his hugely swollen belly.
-			<<case "a penitent nuns habit">>
-				$He looks absolutely blasphemous in a habit with such a hugely swollen belly. The coarse cloth aggravates $his sensitive stretched skin.
-			<<case "a string bikini">>
-				$activeSlave.slaveName's hugely swollen belly parts $his string bikini to either side.
-			<<case "a scalemail bikini">>
-				$activeSlave.slaveName's hugely swollen belly juts out underneath $his scalemail bikini.
-			<<case "striped panties">>
-				$activeSlave.slaveName's hugely swollen belly juts out above $his panties.
-			<<case "clubslut netting">>
-				$activeSlave.slaveName's clubslut netting is stretched to the breaking point by $his hugely swollen belly.
-			<<case "a cheerleader outfit">>
-				$activeSlave.slaveName's cheerleader top rides up $his hugely swollen belly, covering only the top of it while leaving the rest on display to bring wonder to how many loads $he took last night.
-			<<case "cutoffs and a t-shirt">>
-				<<if ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's hugely swollen belly is obscured by $his huge tits.
-				<<elseif ($activeSlave.boobs > 2000)>>
-					$activeSlave.slaveName's tits keep $his t-shirt far from $his hugely swollen belly.
-				<<else>>
-					$activeSlave.slaveName's t-shirt fails to cover $his hugely swollen belly at all.
-				<</if>>
-			<<case "a slutty outfit">>
-				$activeSlave.slaveName's hugely swollen belly really shows what a slut $he is.
-			<<case "a slave gown">>
-				$activeSlave.slaveName's slave gown is carefully tailored, giving $him a sensual motherly look as it carefully caresses $his hugely swollen belly.
-			<<case "slutty business attire">>
-				$activeSlave.slaveName's hugely swollen stomach hangs out the front of $his suit jacket and blouse, as there is no way $he could close them.
-			<<case "nice business attire">>
-				$activeSlave.slaveName's hugely swollen belly strains $his specially tailored blouse and jacket.
-			<<case "harem gauze">>
-				$activeSlave.slaveName's harem girl outfit sensually accentuates $his hugely swollen stomach.
-			<<case "a comfortable bodysuit">>
-				$activeSlave.slaveName's bodysuit tightly clings to $his hugely swollen belly, displaying $his popped navel and every jiggle of $his bloated stomach.
-			<<case "a slutty nurse outfit">>
-				$activeSlave.slaveName's jacket fails to even come close to closing over $his hugely swollen belly, leaving $him with only the button below $his breasts done.
-			<<case "a schoolgirl outfit">>
-				$activeSlave.slaveName's blouse rides up $his hugely swollen belly, leaving $him looking particularly slutty.
-			<<case "a kimono">>
-				$activeSlave.slaveName's hugely swollen belly parts the front of $his kimono, leaving it gracefully covering its sides.
-			<<case "a hijab and abaya" "a niqab and abaya">>
-				$activeSlave.slaveName's abaya is filled by $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a klan robe">>
-				$activeSlave.slaveName's robe is noticeably rounded out by $his hugely swollen belly.
-			<<case "a burqa">>
-				$activeSlave.slaveName's burqa is noticeably rounded out by $his hugely swollen belly.
-			<<case "a nice pony outfit" "a slutty pony outfit">>
-				$activeSlave.slaveName's pony outfit is noticeably rounded out by $his hugely swollen belly.
-			<<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "pasties" "sport shorts and a sports bra" "jeans" "leather pants and a tube top" "sport shorts">>
-				$activeSlave.slaveName's outfit completely bares $his hugely swollen belly.
-			<<case "a one-piece swimsuit">>
-				$activeSlave.slaveName's swimsuit is noticeably rounded out by $his hugely swollen belly.
-			<<case "a sweater" "a sweater and cutoffs" "a sweater and panties">>
-				$activeSlave.slaveName's sweater is noticeably rounded out by $his hugely swollen belly.
-			<<case "a police uniform">>
-				$activeSlave.slaveName's uniform is noticeably rounded out by $his hugely swollen belly.
-			<<case "a hanbok">>
-				$activeSlave.slaveName's hanbok is noticeably rounded out by $his hugely swollen belly.
-			<<case "a gothic lolita dress">>
-				$activeSlave.slaveName's dress is noticeably rounded out by $his hugely swollen belly.
-			<<case "a tank-top" "a tank-top and panties">>
-				$activeSlave.slaveName's tank-top is noticeably rounded out by $his hugely swollen belly.
-			<<case "a button-up shirt and panties" "a button-up shirt" "a t-shirt" "a t-shirt and thong" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt" "a t-shirt and jeans" "a t-shirt and panties">>
-				$activeSlave.slaveName's shirt is noticeably rounded out by $his hugely swollen belly.
-			<<case "a Santa dress">>
-				$activeSlave.slaveName's belt is struggling to fully encircle $his hugely <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a burkini">>
-				The fabric of $activeSlave.slaveName's burkini is slightly pushed up thanks to $his hugely <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a hijab and blouse">>
-				$activeSlave.slaveName has trouble pulling $his skirt up to fit around $his hugely swollen belly.
-			<<case "battledress">>
-				$activeSlave.slaveName's tank top barely even covers the top of $his hugely swollen belly, leaving $him looking like someone who had too much fun on shore leave.
-			<<case "a halter top dress">>
-				$activeSlave.slaveName's beautiful halter top dress is filled by $his hugely swollen belly. $His popped navel prominently pokes through its front.
-			<<case "a ball gown">>
-				$activeSlave.slaveName's fabulous silken ball gown is tailored to not only fit $his hugely swollen belly, but draw attention to it.
-			<<case "slutty jewelry">>
-				$activeSlave.slaveName's bangles include a long thin chain that rests above $his popped navel.
-			<<case "a leotard">>
-				$activeSlave.slaveName's tight leotard shows off every slosh and jiggle within $his hugely swollen belly. The material tightly clings to $his popped navel.
-			<<case "a monokini">>
-				$activeSlave.slaveName's monokini covers far less than half of $his hugely swollen belly.
-			<<case "overalls">>
-				<<if ($activeSlave.boobs > ($activeSlave.belly+250))>>
-					$activeSlave.slaveName's massive breasts push out $his overalls so far that $his hugely swollen belly is left almost entirely uncovered.
-				<<else>>
-					$activeSlave.slaveName's hugely swollen belly stretches out the fabric of $his overalls.
-				<</if>>
-			<<case "an apron">>
-				$activeSlave.slaveName's apron is pushed away from $his body by $his hugely <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a cybersuit">>
-				$activeSlave.slaveName's bodysuit tightly clings to $his hugely swollen belly, displaying $his popped navel and every jiggle of $his bloated stomach.
-			<<case "a chattel habit">>
-				The strip of cloth running down $his front is parted to one side by $his hugely swollen belly.
-			<<case "a bunny outfit">>
-				$activeSlave.slaveName's teddy is stretched to tearing by $his hugely swollen belly. $His popped navel prominently pokes through the material.
-			<<case "spats and a tank top">>
-				<<if ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's hugely swollen belly is obscured by $his huge tits.
-				<<elseif ($activeSlave.boobs > 1200)>>
-					$activeSlave.slaveName's top is prevented from trying to cover $his hugely swollen belly by $his breasts.
-				<<else>>
-					$activeSlave.slaveName's top cannot even attempt to cover $his hugely swollen belly.
-				<</if>>
-			<<case "a bimbo outfit">>
-				$activeSlave.slaveName's hugely swollen belly forces $his miniskirt out of the way as it hangs ponderously from $his midriff.
-			<<case "a courtesan dress">>
-				$activeSlave.slaveName's hugely swollen belly strains under the ribs of $his corset
-			<<default>>
-			<</switch>>
-
-		<<elseif $activeSlave.inflation == 2>>
-
-			<<if ($activeSlave.bellyAccessory == "an extreme corset")>>
-				$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly is tightly compressed by $his corset causing it to bulge out above and below; one or the other will eventually win out.
-			<<elseif ($activeSlave.bellyAccessory == "a corset")>>
-				$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly comfortably hangs out of $his corset.
-			<</if>>
-			<<switch $activeSlave.clothes>>
-			<<case "conservative clothing">>
-				<<if ($activeSlave.boobs > 20000)>>
-					$activeSlave.slaveName's immense breasts keep $his oversized sweater from covering $his jiggling <<print $activeSlave.inflationType>>-filled belly, though they do a fine job of hiding it themselves.
-				<<elseif ($activeSlave.boobs > 10000)>>
-					$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly is hidden by $his massive tits and oversized sweater.
-				<<elseif ($activeSlave.boobs > 8000)>>
-					$activeSlave.slaveName's oversized breasts keep $his sweater far from $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's sweater is pulled taut by $his jiggling <<print $activeSlave.inflationType>>-filled belly. $His popped navel forms a small tent in material.
-				<<else>>
-					$activeSlave.slaveName's blouse is pulled taut by $his jiggling <<print $activeSlave.inflationType>>-filled belly. $His popped navel forms a small tent in $his shirt.
-				<</if>>
-			<<case "attractive lingerie for a pregnant woman">>
-				$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly hides $his silken panties. $His silken vest sensually frames $his heavy belly.
-			<<case "a maternity dress">>
-				$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly fills out $his loose dress. $His dress is specially tailored to be modest yet draw attention to $his swollen middle.
-			<<case "stretch pants and a crop-top">>
-				$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly takes full advantage of $his exposed midriff to bulge freely and slightly obscure $his stretch pants.
-			<<case "chains">>
-				$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly is tightly wrapped with chains, causing it to bulge angrily.
-			<<case "Western clothing">>
-				$activeSlave.slaveName's flannel shirt can't close over $his jiggling <<print $activeSlave.inflationType>>-filled belly, so $he has left the bottom buttons open leaving $his belly hanging out.
-			<<case "body oil">>
-				$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly is covered in a sheen of oil.
-			<<case "a toga">>
-				$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly parts $his toga.
-			<<case "a huipil">>
-				$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly lifts $his huipil.
-			<<case "a slutty qipao">>
-				$His qipao is slit up the side. However, it only covers the top of $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "uncomfortable straps">>
-				$activeSlave.slaveName's slave outfit's straining straps press into $his jiggling <<print $activeSlave.inflationType>>-filled belly, causing flesh to spill out of the gaps. The straps connect to a steel ring encircling $his popped navel.
-			<<case "shibari ropes">>
-				$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly is tightly bound with rope; flesh bulges angrily from between them.
-			<<case "a latex catsuit" "restrictive latex">>
-				$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly greatly distends $his latex suit. $He looks like an over inflated balloon. Only $his popped navel sticking out the front of $his belly disrupts the smoothness.
-			<<case "a military uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt strains to contain $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-				<<else>>
-					$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly notably distends $his uniform's jacket.
-				<</if>>
-			<<case "a schutzstaffel uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt strains to contain $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-				<<else>>
-					$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly notably distends $his uniform's jacket.
-				<</if>>
-			<<case "a slutty schutzstaffel uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt strains to contain $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-				<<else>>
-					$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly notably distends $his uniform's jacket.
-				<</if>>
-			<<case "a red army uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt strains to contain $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-				<<else>>
-					$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly notably distends $his uniform's jacket.
-				<</if>>
-			<<case "a nice nurse outfit">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's nurse outfit could be called conservative, if it could cover more than half of $his breasts; $his jiggling <<print $activeSlave.inflationType>>-filled belly hangs out from under them, obscuring $his trousers.
-				<<else>>
-					$activeSlave.slaveName's nurse outfit is almost conservative, though $his jiggling <<print $activeSlave.inflationType>>-filled hangs out from under $his top, slightly obscuring $his trousers.
-				<</if>>
-			<<case "a mini dress">>
-				$activeSlave.slaveName's mini dress tightly clings to $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "a long qipao">>
-				$activeSlave.slaveName's dress tightly clings to $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "battlearmor">>
-				$activeSlave.slaveName's armor tightly clings to $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "a mounty outfit">>
-				$activeSlave.slaveName's tunic tightly clings to $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "a dirndl">>
-				$activeSlave.slaveName's dress tightly clings to $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "lederhosen">>
-				$activeSlave.slaveName's tunic tightly clings to $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "a biyelgee costume">>
-				$activeSlave.slaveName's dress tightly clings to $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "attractive lingerie">>
-				$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly hides $his lacy g-string.
-			<<case "kitty lingerie">>
-				$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly hides $his silk panties.
-			<<case "a succubus outfit">>
-				$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly sticks out of $his corset, which is laced above and below it.
-			<<case "a slutty maid outfit">>
-				$activeSlave.slaveName's maid dress fails to cover $his jiggling <<print $activeSlave.inflationType>>-filled belly, but the outfit includes a thin white blouse that conceals only the top half of $his stomach.
-			<<case "a nice maid outfit">>
-				$activeSlave.slaveName's maid dress is almost conservative, it covers $his jiggling <<print $activeSlave.inflationType>>-filled belly completely. Though it cannot hide $his popped navel poking through the front.
-			<<case "a fallen nuns habit">>
-				$activeSlave.slaveName's latex habit's corset is left hanging open fully revealing $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "a penitent nuns habit">>
-				$He looks absolutely blasphemous in a habit with a jiggling <<print $activeSlave.inflationType>>-filled belly. The coarse cloth aggravates $his sensitive stretched skin.
-			<<case "a string bikini">>
-				$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly parts $his string bikini to either side.
-			<<case "a scalemail bikini">>
-				$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly hangs underneath $his scalemail bikini.
-			<<case "striped panties">>
-				$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly hangs above $his cute panties.
-			<<case "clubslut netting">>
-				$activeSlave.slaveName's clubslut netting is stretched out by $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "a cheerleader outfit">>
-				$activeSlave.slaveName's cheerleader top covers most of $his jiggling <<print $activeSlave.inflationType>>-filled belly, the bottom of which peeks out showing how slutty this cheerleader is.
-			<<case "cutoffs and a t-shirt">>
-				<<if ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly is obscured by $his huge tits.
-				<<elseif ($activeSlave.boobs > 2000)>>
-					$activeSlave.slaveName's tits keep $his t-shirt far from $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-				<<else>>
-					$activeSlave.slaveName's t-shirt covers only the top of $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-				<</if>>
-			<<case "a slutty outfit">>
-				$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly really shows how big of a slut $he is.
-			<<case "a slave gown">>
-				$activeSlave.slaveName's slave gown is carefully tailored, giving $him a sensual motherly look as it carefully caresses $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "slutty business attire">>
-				$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled stomach strains the buttons of $his suit jacket and blouse.
-			<<case "nice business attire">>
-				$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly looks good in $his specially tailored blouse and jacket.
-			<<case "harem gauze">>
-				$activeSlave.slaveName's harem girl outfit sensually accentuates $his jiggling <<print $activeSlave.inflationType>>-filled.
-			<<case "a comfortable bodysuit">>
-				$activeSlave.slaveName's bodysuit tightly clings to $his jiggling <<print $activeSlave.inflationType>>-filled belly, displaying $his popped navel and every motion $his contents make.
-			<<case "a slutty nurse outfit">>
-				$activeSlave.slaveName's jacket barely closes over $his jiggling <<print $activeSlave.inflationType>>-filled belly leaving its buttons threatening to pop.
-			<<case "a schoolgirl outfit">>
-				$activeSlave.slaveName's blouse rides up $his jiggling <<print $activeSlave.inflationType>>-filled belly, leaving $him looking particularly slutty.
-			<<case "a kimono">>
-				$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly is demurely covered by $his kimono.
-			<<case "a hijab and abaya" "a niqab and abaya">>
-				$activeSlave.slaveName's abaya is filled out by $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "a klan robe">>
-				There is a slight roundness to the middle of $activeSlave.slaveName's robe, thanks to $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "a burqa">>
-				There is a slight roundness to the middle of $activeSlave.slaveName's burqa, thanks to $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "a nice pony outfit" "a slutty pony outfit">>
-				There is a slight roundness to the middle of $activeSlave.slaveName's pony outfit, thanks to $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "pasties" "sport shorts and a sports bra" "jeans" "leather pants and a tube top" "sport shorts">>
-				$activeSlave.slaveName's outfit completely bares $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "a one-piece swimsuit">>
-				There is a slight roundness to the middle of $activeSlave.slaveName's swimsuit, thanks to $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "a sweater" "a sweater and cutoffs" "a sweater and panties">>
-				There is a slight roundness to the middle of $activeSlave.slaveName's sweater, thanks to $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "a police uniform">>
-				There is a slight roundness to the middle of $activeSlave.slaveName's uniform, thanks to $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "a hanbok">>
-				There is a slight roundness to the middle of $activeSlave.slaveName's hanbok, thanks to $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "a gothic lolita dress">>
-				There is a slight roundness to the middle of $activeSlave.slaveName's dress, thanks to $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "a tank-top" "a tank-top and panties">>
-				There is a slight roundness to the middle of $activeSlave.slaveName's tank-top, thanks to $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "a button-up shirt and panties" "a button-up shirt" "a t-shirt" "a t-shirt and thong" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt" "a t-shirt and jeans" "a t-shirt and panties">>
-				There is a slight roundness to the middle of $activeSlave.slaveName's shirt, thanks to $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "a Santa dress">>
-				The belt on $activeSlave.slaveName's dress has been loosened to accommodate the significant bulge of $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "a burkini">>
-				$activeSlave.slaveName's burkini bulges significantly from $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "a hijab and blouse">>
-				$activeSlave.slaveName's skirt is slightly pushed down by $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "battledress">>
-				$activeSlave.slaveName's tank top rides up $his jiggling <<print $activeSlave.inflationType>>-filled belly leaving $him looking like someone who had too much fun on shore leave.
-			<<case "a halter top dress">>
-				$activeSlave.slaveName's beautiful halter top dress is filled by $his jiggling <<print $activeSlave.inflationType>>-filled belly. $His popped navel prominently pokes through the front of $his dress.
-			<<case "a ball gown">>
-				$activeSlave.slaveName's fabulous silken ball gown is tailored to not only fit $his jiggling <<print $activeSlave.inflationType>>-filled belly but draw attention to it.
-			<<case "slutty jewelry">>
-				$activeSlave.slaveName's bangles include a long thin chain that rests above $his popped navel.
-			<<case "a leotard">>
-				$activeSlave.slaveName's tight leotard shows off every movement within $his jiggling <<print $activeSlave.inflationType>>-filled belly. The material tightly clings to $his popped navel.
-			<<case "a monokini">>
-				$activeSlave.slaveName's monokini overs only half of $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "overalls">>
-				<<if ($activeSlave.boobs > ($activeSlave.belly+250))>>
-					$activeSlave.slaveName's huge breasts push out $his overalls so far that $his jiggling <<print $activeSlave.inflationType>>-filled belly is left uncovered.
-				<<else>>
-					$activeSlave.slaveName's overalls are significantly curved by $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-				<</if>>
-			<<case "an apron">>
-				$activeSlave.slaveName's apron is filled out by $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "a cybersuit">>
-				$activeSlave.slaveName's bodysuit tightly clings to $his jiggling <<print $activeSlave.inflationType>>-filled belly, displaying $his popped navel and every motion $his contents make.
-			<<case "a chattel habit">>
-				The strip of cloth running down $his front is parted to one side by $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-			<<case "a bunny outfit">>
-				$activeSlave.slaveName's teddy is stretched out by $his jiggling <<print $activeSlave.inflationType>>-filled belly. $His popped navel prominently pokes through the material.
-			<<case "spats and a tank top">>
-				<<if ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly is obscured by $his huge tits.
-				<<elseif ($activeSlave.boobs > 1200)>>
-					$activeSlave.slaveName's top is prevented from trying to cover $his jiggling <<print $activeSlave.inflationType>>-filled belly by $his breasts.
-				<<else>>
-					$activeSlave.slaveName's top only slightly covers $his jiggling <<print $activeSlave.inflationType>>-filled belly.
-				<</if>>
-			<<case "a bimbo outfit">>
-				$activeSlave.slaveName's miniskirt digs into $his jiggling <<print $activeSlave.inflationType>>-filled belly as the top half spills over its egde.
-			<<case "a courtesan dress">>
-				$activeSlave.slaveName's jiggling <<print $activeSlave.inflationType>>-filled belly is tightly gripped by the ribs of $his corset, forcing it to bulge angrily between the gaps.
-			<<default>>
-			<</switch>>
-
-		<<elseif $activeSlave.weight > 95>>
-
-			<<if ($activeSlave.bellyAccessory == "an extreme corset")>>
-				$activeSlave.slaveName's huge gut is tightly compressed by $his corset, $his fat billows out of any gap it can find.
-			<<elseif ($activeSlave.bellyAccessory == "a corset")>>
-				$activeSlave.slaveName's huge gut hangs out the hole in $his corset designed to accommodate a pregnant belly.
-			<<elseif ($activeSlave.bellyAccessory == "a small empathy belly")>>
-				$activeSlave.slaveName's small empathy belly is barely noticeable over $his huge gut.
-			<</if>>
-			<<switch $activeSlave.clothes>>
-			<<case "conservative clothing">>
-				<<if ($activeSlave.boobs > 20000)>>
-					$activeSlave.slaveName's immense breasts keep $his oversized sweater from covering $his fat belly, though they do a fine job of hiding it themselves.
-				<<elseif ($activeSlave.boobs > 10000)>>
-					$activeSlave.slaveName's fat belly is hidden by $his massive tits and oversized sweater.
-				<<elseif ($activeSlave.boobs > 8000)>>
-					$activeSlave.slaveName's oversized breasts let $his fat belly hang free.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's sweater is pulled tight over $his fat belly. The bottom of which peeks out from under it.
-				<<else>>
-					$activeSlave.slaveName's blouse is pulled tight over $his fat belly. The bottom of which peeks out from under it.
-				<</if>>
-			<<case "attractive lingerie for a pregnant woman">>
-				$activeSlave.slaveName's fat belly is large enough to hide $his panties. $His silken vest sensually frames $his heavy, jiggly gut.
-			<<case "a maternity dress">>
-				$activeSlave.slaveName's fat belly fills out $his loose dress. $His dress is specially tailored to be modest yet draw attention to a growing pregnancy, though it works on big, jiggly guts all the same.
-			<<case "stretch pants and a crop-top">>
-				$activeSlave.slaveName's fat belly takes full advantage of $his exposed midriff to hang freely and obscure $his stretch pants.
-			<<case "chains">>
-				$activeSlave.slaveName's chains sink deep into $his fat belly, several even disappearing beneath $his folds.
-			<<case "Western clothing">>
-				$activeSlave.slaveName's flannel shirt strains to stay shut over $his fat belly, fat bulges between $his buttons and quite a bit of $his lower belly hangs out beneath $his shirt.
-			<<case "body oil">>
-				$activeSlave.slaveName's fat belly is covered in a sheen of oil.
-			<<case "a toga">>
-				$activeSlave.slaveName's toga can barely be pulled shut over $his fat belly.
-			<<case "a long qipao">>
-				$activeSlave.slaveName's dress can barely be pulled shut over $his fat belly.
-			<<case "a mounty outfit">>
-					$activeSlave.slaveName's tunic is pulled tight over $his fat belly. The bottom of which peeks out from under it.
-			<<case "battlearmor">>
-				$activeSlave.slaveName's armor can barely contain $his fat belly.
-			<<case "lederhosen">>
-				$activeSlave.slaveName's tunic can barely be pulled shut over $his fat belly.
-			<<case "a biyelgee costume">>
-				$activeSlave.slaveName's fat belly fills out $his loose dress. $His dress is specially tailored to be modest yet draw attention to a growing pregnancy, though it works on big, jiggly guts all the same.
-			<<case "a dirndl">>
-				$activeSlave.slaveName's fat belly fills out $his loose dress. $His dress is specially tailored to be modest yet draw attention to a growing pregnancy, though it works on big, jiggly guts all the same.
-			<<case "a huipil">>
-				$activeSlave.slaveName's huipil gets lifted by $his fat belly, so it's useless for covering $his body.
-			<<case "a slutty qipao">>
-				$His qipao is slit up the side. However, it only covers the top of $his fat belly, allowing it to hang free.
-			<<case "uncomfortable straps">>
-				$activeSlave.slaveName's slave outfit's straps sink deep into $his fat belly, several even disappearing beneath $his folds. The straps connect to a steel ring that parts the fold concealing $his navel, allowing it to be seen once again.
-			<<case "shibari ropes">>
-				$activeSlave.slaveName's binding ropes sink deep into $his fat belly, several even disappearing beneath $his folds.
-			<<case "a latex catsuit" "restrictive latex">>
-				$activeSlave.slaveName's fat belly is compressed by $his latex suit, leaving it looking round and smooth.
-			<<case "a military uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's fat belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt struggles to cover $his fat belly. The bottom of which peeks out from under it.
-				<<else>>
-					$activeSlave.slaveName's fat belly is covered by $his uniform's jacket. The bottom of which just barely peeks out from under it.
-				<</if>>
-			<<case "a schutzstaffel uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's fat belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt struggles to cover $his fat belly. The bottom of which peeks out from under it.
-				<<else>>
-					$activeSlave.slaveName's fat belly is covered by $his uniform's jacket. The bottom of which just barely peeks out from under it.
-				<</if>>
-			<<case "a slutty schutzstaffel uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's fat belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt struggles to cover $his fat belly. The bottom of which peeks out from under it.
-				<<else>>
-					$activeSlave.slaveName's fat belly is covered by $his uniform's jacket. The bottom of which just barely peeks out from under it.
-				<</if>>
-			<<case "a red army uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's fat belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's shirt struggles to cover $his fat belly. The bottom of which peeks out from under it.
-				<<else>>
-					$activeSlave.slaveName's fat belly is covered by $his uniform's jacket. The bottom of which just barely peeks out from under it.
-				<</if>>
-			<<case "a nice nurse outfit">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's fat belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's nurse outfit could be called conservative, if it could cover more than half of $his breasts; $his fat belly freely hangs out from under them, obscuring $his trousers.
-				<<else>>
-					$activeSlave.slaveName's nurse outfit is almost conservative, though $his fat belly freely hangs from under $his top, obscuring $his trousers.
-				<</if>>
-			<<case "a mini dress">>
-				$activeSlave.slaveName's mini dress tightly clings to $his fat belly, clearly showing every fold and roll.
-			<<case "attractive lingerie">>
-				$activeSlave.slaveName's fat belly hides $his lacy g-string.
-			<<case "kitty lingerie">>
-				$activeSlave.slaveName's fat belly hides $his silk panties.
-			<<case "a succubus outfit">>
-				$activeSlave.slaveName's fat belly sticks out of $his corset, which is laced above and below it allowing it to hang free.
-			<<case "a slutty maid outfit">>
-				$activeSlave.slaveName's maid dress fails to cover $his fat belly, but the outfit includes a thin white blouse that, when stretched, only manages to wrangle the top of $his gut.
-			<<case "a nice maid outfit">>
-				$activeSlave.slaveName's maid dress is almost conservative, it covers $his fat belly completely, but does nothing to hide how big it is.
-			<<case "a fallen nuns habit">>
-				$activeSlave.slaveName's latex habit's corset is barely holding together over $his fat belly, causing flab to spill out from every opening.
-			<<case "a penitent nuns habit">>
-				$His fat belly fills out $his habit. The coarse cloth has plenty of extra skin to aggravate.
-			<<case "a string bikini">>
-				$activeSlave.slaveName's fat belly parts $his string bikini to either side.
-			<<case "a scalemail bikini">>
-				$activeSlave.slaveName's fat belly juts out underneath $his scalemail bikini.
-			<<case "striped panties">>
-				$activeSlave.slaveName's fat belly juts out above $his cute panties.
-			<<case "clubslut netting">>
-				$activeSlave.slaveName's clubslut netting is stretched out by $his fat belly, forcing flab to poke through the mesh.
-			<<case "a cheerleader outfit">>
-				$activeSlave.slaveName's cheerleader top covers most of $his fat belly. However, the bottom of it peeks out, obscuring $his skirt and a letting everyone know how badly this cheerleader needs to diet.
-			<<case "cutoffs and a t-shirt">>
-				<<if ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's fat belly is obscured by $his huge tits.
-				<<elseif ($activeSlave.boobs > 2000)>>
-					$activeSlave.slaveName's tits keep $his t-shirt busy, allowing $his fat belly to hang free.
-				<<else>>
-					$activeSlave.slaveName's t-shirt covers only the top of $his fat belly, allowing it to hang mostly free and cover $his jeans.
-				<</if>>
-			<<case "a slutty outfit">>
-				$activeSlave.slaveName lets $his fat belly hang free, leaving $him looking particularly slutty.
-			<<case "a slave gown">>
-				$activeSlave.slaveName's slave gown is carefully tailored, accentuating and hugging every curve of $his fat belly.
-			<<case "slutty business attire">>
-				$activeSlave.slaveName's fat belly strains the buttons of $his suit jacket and blouse. The bottom of which just barely peeks out from under them.
-			<<case "nice business attire">>
-				$activeSlave.slaveName's tailored blouse and jacket fit $his fat belly well, though they do nothing to hide how big $his gut is.
-			<<case "harem gauze">>
-				$activeSlave.slaveName's harem girl outfit sensually accentuates $his fat belly.
-			<<case "a comfortable bodysuit">>
-				$activeSlave.slaveName's bodysuit tightly clings to $his fat belly, displaying every fold and roll in it.
-			<<case "a slutty nurse outfit">>
-				$activeSlave.slaveName's jacket barely closes over $his fat belly forcing plenty of flab out from under its bottom and between the straining buttons.
-			<<case "a schoolgirl outfit">>
-				$activeSlave.slaveName's blouse rides up $his fat belly, leaving it hanging loose and covering $his skirt.
-			<<case "a kimono">>
-				$activeSlave.slaveName's fat belly is demurely covered by $his kimono.
-			<<case "a hijab and abaya" "a niqab and abaya">>
-				$activeSlave.slaveName's abaya is filled out by $his fat belly.
-			<<case "a klan robe">>
-				$activeSlave.slaveName's fat belly just manages to brush up against $his robe.
-			<<case "a burqa">>
-				$activeSlave.slaveName's fat belly just manages to brush up against $his burqa.
-			<<case "a nice pony outfit" "a slutty pony outfit">>
-				$activeSlave.slaveName's fat belly molds itself against $his pony outfit.
-			<<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "pasties" "sport shorts and a sports bra" "jeans" "leather pants and a tube top" "sport shorts">>
-				$activeSlave.slaveName's outfit completely bares $his fat belly.
-			<<case "a one-piece swimsuit">>
-				$activeSlave.slaveName's fat belly just manages to brush up against $his swimsuit.
-			<<case "a sweater" "a sweater and cutoffs" "a sweater and panties">>
-				$activeSlave.slaveName's fat belly just manages to brush up against $his sweater.
-			<<case "a police uniform">>
-				$activeSlave.slaveName's fat belly just manages to brush up against $his uniform.
-			<<case "a hanbok">>
-				$activeSlave.slaveName's fat belly just manages to brush up against $his hanbok.
-			<<case "a gothic lolita dress">>
-				$activeSlave.slaveName's fat belly just manages to brush up against $his dress.
-			<<case "a tank-top" "a tank-top and panties">>
-				$activeSlave.slaveName's fat belly just manages to brush up against $his tank-top.
-			<<case "a button-up shirt and panties" "a button-up shirt" "a t-shirt" "a t-shirt and thong" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt" "a t-shirt and jeans" "a t-shirt and panties">>
-				$activeSlave.slaveName's fat belly just manages to brush up against $his shirt.
-			<<case "a Santa dress">>
-				$activeSlave.slaveName's fat belly bulges around the belt around $his waist.
-			<<case "a burkini">>
-				$activeSlave.slaveName's burkini bulges from $his fat belly.
-			<<case "a hijab and blouse">>
-				$activeSlave.slaveName's blouse and skirt are filled out by $his fat belly.
-			<<case "battledress">>
-				$activeSlave.slaveName's tank top rests atop $his fat belly, leaving everyone wondering how this recruit passed basic.
-			<<case "a halter top dress">>
-				$activeSlave.slaveName's beautiful halter top dress is filled by $his fat belly. Every crease, fold and roll is clearly visible within it.
-			<<case "a ball gown">>
-				$activeSlave.slaveName's fabulous silken ball gown is tailored to not only fit $his fat belly but draw attention to it.
-			<<case "slutty jewelry">>
-				$activeSlave.slaveName's bangles include long, thin chains running along $his fat folds.
-			<<case "a leotard">>
-				$activeSlave.slaveName's tight leotard tightly clings to $his fat belly, clearly displaying every fold and roll.
-			<<case "a monokini">>
-				$activeSlave.slaveName's monokini tightly clings to $his fat belly, clearly displaying every fold and roll.
-			<<case "overalls">>
-				<<if ($activeSlave.boobs > ($activeSlave.belly+250))>>
-					$activeSlave.slaveName's large breasts push out $his overalls so far that $his fat belly is left uncovered.
-				<<else>>
-					$activeSlave.slaveName's fat belly bulges out from over the sides of $his overalls.
-				<</if>>
-			<<case "an apron">>
-				$activeSlave.slaveName's mini dress tightly clings to $his fat belly, clearly showing every fold and roll.
-			<<case "a cybersuit">>
-				$activeSlave.slaveName's bodysuit tightly clings to $his fat belly, displaying every fold and roll in it.
-			<<case "a chattel habit">>
-				The strip of cloth running down $his front is gently sinks into $his fat belly.
-			<<case "a bunny outfit">>
-				$activeSlave.slaveName's teddy is stretched out by $his fat belly. $His flab juts out around its edges and it does nothing to hide $his folds and rolls.
-			<<case "spats and a tank top">>
-				<<if ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's fat belly is obscured by $his huge tits.
-				<<elseif ($activeSlave.boobs > 1200)>>
-					$activeSlave.slaveName's top is prevented from trying to cover $his fat belly by $his breasts.
-				<<else>>
-					$activeSlave.slaveName's top can't entirely cover $his fat belly, allowing it to hang loose and slightly obscure $his spats from view.
-				<</if>>
-			<<case "a bimbo outfit">>
-				$activeSlave.slaveName's thong strings dig into $his fat belly as it lewdly draps over $his miniskirt.
-			<<case "a courtesan dress">>
-				$activeSlave.slaveName's fat belly bulges the ribs of $his corset, creating valleys of soft flesh.
-			<<default>>
-			<</switch>>
-			<<if $arcologies[0].FSSlimnessEnthusiast != "unset">>
-				Your sleek, slim society finds $his bloated body unsightly.
-			<</if>>
-
-		<<elseif $activeSlave.inflation == 1>>
-
-			<<if ($activeSlave.bellyAccessory == "an extreme corset")>>
-				$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is tightly compressed by $his corset causing $his distress.
-			<<elseif ($activeSlave.bellyAccessory == "a corset")>>
-				$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is lightly compressed by $his corset making $him uncomfortable.
-			<</if>>
-			<<switch $activeSlave.clothes>>
-			<<case "conservative clothing">>
-				<<if ($activeSlave.boobs > 20000)>>
-					$activeSlave.slaveName's immense breasts keep $his oversized sweater from covering $his <<print $activeSlave.inflationType>>-swollen belly, though they do a fine job of hiding it themselves.
-				<<elseif ($activeSlave.boobs > 10000)>>
-					$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is hidden by $his massive tits and oversized sweater.
-				<<elseif ($activeSlave.boobs > 8000)>>
-					$activeSlave.slaveName's oversized breasts keep $his sweater far from $his <<print $activeSlave.inflationType>>-swollen belly.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's sweater bulges with $his <<print $activeSlave.inflationType>>-swollen belly.
-				<<else>>
-					$activeSlave.slaveName's blouse bulges with $his <<print $activeSlave.inflationType>>-swollen belly.
-				<</if>>
-			<<case "attractive lingerie for a pregnant woman">>
-				$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly rests above $his silken panties. $His silken vest sensually frames $his swelling belly.
-			<<case "a maternity dress">>
-				$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is noticeable under $his loose dress. $His dress is specially tailored to be modest yet draw attention to $his distended stomach.
-			<<case "stretch pants and a crop-top">>
-				$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly takes full advantage of $his exposed midriff to bulge freely.
-			<<case "chains">>
-				$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is tightly wrapped with chains.
-			<<case "Western clothing">>
-				$activeSlave.slaveName's flannel shirt bulges with $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "body oil">>
-				$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is covered in a sheen of oil.
-			<<case "a toga">>
-				$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly gently bulges under $his toga.
-			<<case "a huipil">>
-				$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly slightly bulges under $his huipil.
-			<<case "a slutty qipao">>
-				$His qipao is slit up the side. The front is pushed out by $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "uncomfortable straps">>
-				$activeSlave.slaveName's slave outfit's straining straps press into $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "shibari ropes">>
-				$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is tightly bound with rope, flesh bulges from between them.
-			<<case "a latex catsuit" "restrictive latex">>
-				$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly greatly bulges under $his latex suit.
-			<<case "a military uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's undershirt covers $his <<print $activeSlave.inflationType>>-swollen belly.
-				<<else>>
-					$activeSlave.slaveName's uniform covers $his <<print $activeSlave.inflationType>>-swollen belly.
-				<</if>>
-			<<case "a schutzstaffel uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's undershirt covers $his <<print $activeSlave.inflationType>>-swollen belly.
-				<<else>>
-					$activeSlave.slaveName's uniform covers $his <<print $activeSlave.inflationType>>-swollen belly.
-				<</if>>
-			<<case "a slutty schutzstaffel uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's undershirt covers $his <<print $activeSlave.inflationType>>-swollen belly.
-				<<else>>
-					$activeSlave.slaveName's uniform covers $his <<print $activeSlave.inflationType>>-swollen belly.
-				<</if>>
-			<<case "a red army uniform">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's undershirt covers $his <<print $activeSlave.inflationType>>-swollen belly.
-				<<else>>
-					$activeSlave.slaveName's uniform covers $his <<print $activeSlave.inflationType>>-swollen belly.
-				<</if>>
-			<<case "a long qipao">>
-				$activeSlave.slaveName's dress tightly clings to $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a mounty outfit">>
-				$activeSlave.slaveName's tunic tightly clings to $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "battlearmor">>
-				$activeSlave.slaveName's armor tightly clings to $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "lederhosen">>
-				$activeSlave.slaveName's tunic tightly clings to $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a dirndl">>
-				$activeSlave.slaveName's dress tightly clings to $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a biyelgee costume">>
-				$activeSlave.slaveName's costume tightly clings to $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a nice nurse outfit">>
-				<<if ($activeSlave.boobs > 6000)>>
-					$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is obscured by $his massive tits.
-				<<elseif ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's nurse outfit could be called conservative, if it could cover more than half of $his breasts; $his <<print $activeSlave.inflationType>>-swollen belly is completely exposed.
-				<<else>>
-					$activeSlave.slaveName's nurse outfit is almost conservative, it covers $his <<print $activeSlave.inflationType>>-swollen belly completely.
-				<</if>>
-			<<case "a mini dress">>
-				$activeSlave.slaveName's mini dress tightly clings to $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "attractive lingerie">>
-				$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly rests above $his lacy g-string.
-			<<case "kitty lingerie">>
-				$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly rests above $his silk panties.
-			<<case "a succubus outfit">>
-				$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly peeks out of $his corset, which is laced above and below it.
-			<<case "a slutty maid outfit">>
-				$activeSlave.slaveName's maid dress is slightly distended by $his growing belly.
-			<<case "a nice maid outfit">>
-				$activeSlave.slaveName's maid dress is almost conservative, it covers $his <<print $activeSlave.inflationType>>-swollen belly completely.
-			<<case "a fallen nuns habit">>
-				$activeSlave.slaveName's latex habit's corset struggles to hold $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a penitent nuns habit">>
-				$activeSlave.slaveName's habit gently bulges from $his <<print $activeSlave.inflationType>>-swollen belly. The coarse cloth aggravates $his sensitive skin.
-			<<case "a string bikini">>
-				$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly juts out between the strings of $his bikini.
-			<<case "a scalemail bikini">>
-				$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly juts out underneath $his bikini.
-			<<case "striped panties">>
-				$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly juts out above $his panties.
-			<<case "clubslut netting">>
-				$activeSlave.slaveName's clubslut netting clings to $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a cheerleader outfit">>
-				$activeSlave.slaveName's cheerleader top gently bulges from $his <<print $activeSlave.inflationType>>-swollen belly displaying how slutty this cheerleader is.
-			<<case "cutoffs and a t-shirt">>
-				<<if ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is obscured by $his huge tits.
-				<<elseif ($activeSlave.boobs > 2000)>>
-					$activeSlave.slaveName's tits keep $his t-shirt far from $his <<print $activeSlave.inflationType>>-swollen belly.
-				<<else>>
-					$activeSlave.slaveName's t-shirt bulges with $his <<print $activeSlave.inflationType>>-swollen belly. The bottom of which is beginning to peek from under $his T-shirt.
-				<</if>>
-			<<case "a slutty outfit">>
-				$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly shows how big of a slut $he is.
-			<<case "a slave gown">>
-				$activeSlave.slaveName's slave gown is carefully tailored, giving $him a sensual look as it carefully caresses $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "slutty business attire">>
-				$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly bulges $his suit jacket and blouse. It peeks out from under their bottom slightly.
-			<<case "nice business attire">>
-				$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly bulges under $his tailored blouse and jacket.
-			<<case "harem gauze">>
-				$activeSlave.slaveName's harem girl outfit sensually accentuates $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a comfortable bodysuit">>
-				$activeSlave.slaveName's bodysuit tightly clings to $his <<print $activeSlave.inflationType>>-swollen belly, displaying $his bloated body.
-			<<case "a slutty nurse outfit">>
-				$activeSlave.slaveName's jacket bulges with $his <<print $activeSlave.inflationType>>-swollen belly, which can be seen peeking out from underneath.
-			<<case "a schoolgirl outfit">>
-				$activeSlave.slaveName's blouse bulges with $his <<print $activeSlave.inflationType>>-swollen belly. It peeks out from the bottom leaving $him looking particularly slutty.
-			<<case "a kimono">>
-				$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is demurely covered by $his kimono.
-			<<case "a hijab and abaya" "a niqab and abaya">>
-				$activeSlave.slaveName's abaya is filled out by $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a klan robe">>
-				$activeSlave.slaveName's robe is filled out by $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a burqa">>
-				$activeSlave.slaveName's burqa is filled out by $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a nice pony outfit" "a slutty pony outfit">>
-				$activeSlave.slaveName's pony outfit is rounded out by $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a tube top and thong" "a bra" "a thong" "a tube top" "a striped bra" "striped underwear" "a skimpy loincloth" "a slutty klan robe" "a sports bra" "boyshorts" "cutoffs" "leather pants and pasties" "leather pants" "panties" "panties and pasties" "pasties" "sport shorts and a sports bra" "jeans" "leather pants and a tube top" "sport shorts">>
-				$activeSlave.slaveName's outfit completely bares $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a one-piece swimsuit">>
-				$activeSlave.slaveName's swimsuit is rounded out by $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a sweater" "a sweater and cutoffs" "a sweater and panties">>
-				$activeSlave.slaveName's sweater is rounded out by $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a police uniform">>
-				$activeSlave.slaveName's uniform is rounded out by $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a hanbok">>
-				$activeSlave.slaveName's hanbok bulges from $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a gothic lolita dress">>
-				$activeSlave.slaveName's dress bulges from $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a tank-top" "a tank-top and panties">>
-				$activeSlave.slaveName's tank-top bulges from $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a button-up shirt and panties" "a button-up shirt" "a t-shirt" "a t-shirt and thong" "an oversized t-shirt and boyshorts" "an oversized t-shirt" "sport shorts and a t-shirt" "a t-shirt and jeans" "a t-shirt and panties">>
-				$activeSlave.slaveName's shirt covers most of $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a Santa dress">>
-				The belt of $activeSlave.slaveName's dress lies atop the gentle bulge of $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a burkini">>
-				$activeSlave.slaveName's burkini bulges from $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a hijab and blouse">>
-				$activeSlave.slaveName's blouse and skirt bulge from $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "battledress">>
-				$activeSlave.slaveName's tank top covers the top of $his <<print $activeSlave.inflationType>>-swollen belly leaving $him looking like someone who had too much fun on shore leave.
-			<<case "a halter top dress">>
-				$activeSlave.slaveName's beautiful halter top dress bulges with $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a ball gown">>
-				$activeSlave.slaveName's fabulous silken ball gown is tailored to draw attention to $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "slutty jewelry">>
-				$activeSlave.slaveName's bangles include a long thin chain that rests across $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a leotard">>
-				$activeSlave.slaveName's tight leotard shows off $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "overalls">>
-				<<if ($activeSlave.boobs > ($activeSlave.belly+250))>>
-					$activeSlave.slaveName's large breasts push out $his overalls so far that $his <<print $activeSlave.inflationType>>-swollen belly is left uncovered.
-				<<else>>
-					$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly rounds out the front of $his overalls.
-				<</if>>
-			<<case "a monokini">>
-				$activeSlave.slaveName's monokini covers most of $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "an apron">>
-				$activeSlave.slaveName's apron is rounded out by $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a cybersuit">>
-				$activeSlave.slaveName's bodysuit tightly clings to $his <<print $activeSlave.inflationType>>-swollen belly, displaying $his bloated body.
-			<<case "a chattel habit">>
-				The strip of cloth running down $his front is pushed out by $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a bunny outfit">>
-				$activeSlave.slaveName's teddy bulges with $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "spats and a tank top">>
-				<<if ($activeSlave.boobs > 4000)>>
-					$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is obscured by $his huge tits.
-				<<elseif ($activeSlave.boobs > 1200)>>
-					$activeSlave.slaveName's top is prevented from trying to cover $his <<print $activeSlave.inflationType>>-swollen belly by $his breasts.
-				<<else>>
-					$activeSlave.slaveName's top can't entirely cover $his <<print $activeSlave.inflationType>>-swollen belly, allowing it to hang loose and slightly obscure $his spats from view.
-				<</if>>
-			<<case "a bimbo outfit">>
-				$activeSlave.slaveName's miniskirt pushes into $his <<print $activeSlave.inflationType>>-swollen belly.
-			<<case "a courtesan dress">>
-				$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly bulges between the ribs of $his corset.
-			<<default>>
-			<</switch>>
-
-		<</if>>
-	<<else>>
-		$activeSlave.slaveName's <<print $activeSlave.inflationType>>-swollen belly is bare and ready for surgery.
-	<</if>>
-<</if>>
-
-<<if $activeSlave.navelPiercing == 1>>
-	$His navel bears a simple stud.
-<<elseif $activeSlave.navelPiercing == 2>>
-	$His navel is pierced with a big ring.
-	<<if ($activeSlave.clothes == "slutty jewelry")>>
-		It has a length of gilded chain dangling from it.
-	<<else>>
-		It has a short length of chain dangling from it.
-	<</if>>
-<</if>>
-
-<<if $activeSlave.bellyTat != 0>>
-	<<if $activeSlave.inflation == 3>>
-		<<if $activeSlave.bellyTat == "a heart">>
-			A heart is tattooed around $his popped navel, only to be truly seen when $he is full-term or absolutely filled with <<print $activeSlave.inflationType>>.
-		<<elseif $activeSlave.bellyTat == "a star">>
-			A star is tattooed around $his popped navel, only to be truly seen when $he is full-term or absolutely filled with <<print $activeSlave.inflationType>>.
-		<<elseif $activeSlave.bellyTat == "a butterfly">>
-			A butterfly is tattooed around $his popped navel, only to be truly seen when $he is full-term or absolutely filled with <<print $activeSlave.inflationType>>.
-		<</if>>
-	<<elseif $activeSlave.inflation == 2>>
-		$He has a barely recognizable tattoo around $his navel, it should reveal itself fully once $he is bloated a little more.
-	<<elseif $activeSlave.inflation == 1>>
-		$He has an unrecognizable tattoo around $his navel, it has stretched slightly along with $his distended middle.
-	<<else>>
-		$He has an unrecognizable tattoo scrunched around $his navel.
-	<</if>>
-<</if>>
-
-<<if $activeSlave.breedingMark == 1>>
-	<<if $propOutcome == 1>>
-		The Societal Elites' mark designating $him as a breeder is prominently displayed across $his lower belly, beneath $his navel.
-	<<else>>
-		An alluring tattoo is prominently displayed across $his lower belly, beneath $his navel, urging $him to be bred.
-	<</if>>
-<</if>>
-
-<</widget>>
diff --git a/src/utility/descriptionWidgetsStyle.tw b/src/utility/descriptionWidgetsStyle.tw
index 4df3fda723a122185b9fbd35e6b3ac7f2d3b101c..33d489f61549fabbec464a4e80771c8f39435d25 100644
--- a/src/utility/descriptionWidgetsStyle.tw
+++ b/src/utility/descriptionWidgetsStyle.tw
@@ -1633,7 +1633,7 @@ $His
 			sticks out of two holes in $his latex hood.
 		<<case "a string bikini" "cutoffs and a t-shirt" "a schoolgirl outfit" "a slutty maid outfit">>
 			is back in huge tails secured by hair ties with plastic buttons, bearing the garish inscription
-			<<InscripDesc>>
+			<<print App.Desc.inscrip($activeSlave)>>
 		<<case "a scalemail bikini">>
 			is in twin tails that almost reach the ground, and topped by a gold headband.
 		<<case "battledress">>
@@ -1715,7 +1715,7 @@ $His
 			sticks out of two holes in $his latex hood.
 		<<case "a string bikini" "cutoffs and a t-shirt" "a schoolgirl outfit" "a slutty maid outfit">>
 			is back in big tails secured by hair ties with plastic buttons, bearing the garish inscription
-			<<InscripDesc>>
+			<<print App.Desc.inscrip($activeSlave)>>
 		<<case "a scalemail bikini">>
 			is in long twin braids, and topped by a gold headband.
 		<<case "battledress">>
@@ -1797,7 +1797,7 @@ $His
 			sticks out of two holes in $his latex hood.
 		<<case "a string bikini" "cutoffs and a t-shirt" "a schoolgirl outfit" "a slutty maid outfit">>
 			is back in short tails secured by hair ties with plastic buttons, bearing the garish inscription
-			<<InscripDesc>>
+			<<print App.Desc.inscrip($activeSlave)>>
 		<<case "a scalemail bikini">>
 			is in short braids, and topped by a gold headband.
 		<<case "battledress">>
@@ -1914,7 +1914,7 @@ $His
 			sticks out of a hole in the back of in $his latex hood.
 		<<case "a string bikini" "cutoffs and a t-shirt" "a schoolgirl outfit" "a slutty maid outfit" "striped panties">>
 			is back in a huge ponytail secured by hair ties with plastic buttons, bearing the garish inscription
-			<<InscripDesc>>
+			<<print App.Desc.inscrip($activeSlave)>>
 		<<case "a scalemail bikini">>
 			is back in a huge ponytail secured by steel, and topped by a gold headband.
 		<<case "battledress">>
@@ -1996,7 +1996,7 @@ $His
 			sticks out of a hole in the back of $his latex hood.
 		<<case "a string bikini" "cutoffs and a t-shirt" "a schoolgirl outfit" "a slutty maid outfit" "striped panties">>
 			is back in a big ponytail secured by hair ties with plastic buttons, bearing the garish inscription
-			<<InscripDesc>>
+			<<print App.Desc.inscrip($activeSlave)>>
 		<<case "a scalemail bikini">>
 			is back in a big ponytail secured by steel, and topped by a gold headband.
 		<<case "battledress">>
@@ -2078,7 +2078,7 @@ $His
 			sticks out of a hole in the back of $his latex hood.
 		<<case "a string bikini" "cutoffs and a t-shirt" "a schoolgirl outfit" "a slutty maid outfit" "striped panties">>
 			is back in a short ponytail secured by a hair tie with plastic buttons, bearing the garish inscription
-			<<InscripDesc>>
+			<<print App.Desc.inscrip($activeSlave)>>
 		<<case "a scalemail bikini">>
 			is back in a short ponytail secured by steel, and topped by a gold headband.
 		<<case "battledress">>
@@ -2171,7 +2171,7 @@ $His
 			sticks out of two holes in $his latex hood.
 		<<case "a string bikini" "cutoffs and a t-shirt" "a schoolgirl outfit" "a slutty maid outfit" "striped panties">>
 			is back in huge braids secured by hair ties with plastic buttons, bearing the garish inscription
-			<<InscripDesc>>
+			<<print App.Desc.inscrip($activeSlave)>>
 		<<case "a scalemail bikini">>
 			is back in huge braids secured by steel, and topped by a gold headband.
 		<<case "battledress">>
@@ -2249,7 +2249,7 @@ $His
 			is braided and sticks out of holes in $his latex hood.
 		<<case "a string bikini" "cutoffs and a t-shirt" "a schoolgirl outfit" "a slutty maid outfit" "striped panties">>
 			is back in long braids secured by hair ties with plastic buttons, bearing the garish inscription
-			<<InscripDesc>>
+			<<print App.Desc.inscrip($activeSlave)>>
 		<<case "a scalemail bikini">>
 			is back in long braids secured by steel, and topped by a gold headband.
 		<<case "battledress">>
@@ -2327,7 +2327,7 @@ $His
 			is braided and sticks out of holes in $his latex hood.
 		<<case "a string bikini" "cutoffs and a t-shirt" "a schoolgirl outfit" "a slutty maid outfit" "striped panties">>
 			is back in short braids secured by hair ties with plastic buttons, bearing the garish inscription
-			<<InscripDesc>>
+			<<print App.Desc.inscrip($activeSlave)>>
 		<<case "a scalemail bikini">>
 			is back in short braids secured by steel, and topped by a gold headband.
 		<<case "battledress">>
@@ -2420,7 +2420,7 @@ $His
 			is in dreadlocks, poking out of a hole in $his latex hood.
 		<<case "a string bikini" "cutoffs and a t-shirt" "a schoolgirl outfit" "a slutty maid outfit" "striped panties">>
 			is in dreadlocks, some in ties with plastic buttons, bearing the garish inscription
-			<<InscripDesc>>
+			<<print App.Desc.inscrip($activeSlave)>>
 		<<case "a scalemail bikini">>
 			is in dreadlocks bunched up by leather, and topped with a gold headband.
 		<<case "battledress">>
@@ -2498,7 +2498,7 @@ $His
 			is in dreadlocks, sticking out of a hole in $his latex hood.
 		<<case "a string bikini" "cutoffs and a t-shirt" "a schoolgirl outfit" "a slutty maid outfit" "striped panties">>
 			is in dreadlocks, some in hair ties with plastic buttons, bearing the garish inscription
-			<<InscripDesc>>
+			<<print App.Desc.inscrip($activeSlave)>>
 		<<case "a scalemail bikini">>
 			is in dreadlocks bunched up by leather, and topped with a gold headband.
 		<<case "battledress">>
@@ -2580,7 +2580,7 @@ $His
 			is in short dreadlocks, sticking out of a hole in $his latex hood.
 		<<case "a string bikini" "cutoffs and a t-shirt" "a schoolgirl outfit" "a slutty maid outfit" "striped panties">>
 			is in short dreadlocks, some in hair ties with plastic buttons, bearing the garish inscription
-			<<InscripDesc>>
+			<<print App.Desc.inscrip($activeSlave)>>
 		<<case "a scalemail bikini">>
 			is in short dreadlocks bunched up by leather, and topped with a gold headband.
 		<<case "battledress">>
@@ -2673,7 +2673,7 @@ $His
 			is curled into long flowing locks poking out of a hole in $his latex hood.
 		<<case "a string bikini" "cutoffs and a t-shirt" "a schoolgirl outfit" "a slutty maid outfit" "striped panties">>
 			is curled into long flowing locks secured by hair ties with plastic buttons, bearing the garish inscription
-			<<InscripDesc>>
+			<<print App.Desc.inscrip($activeSlave)>>
 		<<case "a scalemail bikini">>
 			is curled into long flowing locks, and topped by a gold headband.
 		<<case "battledress">>
@@ -2751,7 +2751,7 @@ $His
 			is curled into long locks, sticking out of a hole in $his latex hood.
 		<<case "a string bikini" "cutoffs and a t-shirt" "a schoolgirl outfit" "a slutty maid outfit" "striped panties">>
 			is curled into long locks secured by hair ties with plastic buttons, bearing the garish inscription
-			<<InscripDesc>>
+			<<print App.Desc.inscrip($activeSlave)>>
 		<<case "a scalemail bikini">>
 			is curled into long flowing locks, and topped by a gold headband.
 		<<case "battledress">>
@@ -2829,7 +2829,7 @@ $His
 			is curled into short locks, but they are covered by $his latex hood.
 		<<case "a string bikini" "cutoffs and a t-shirt" "a schoolgirl outfit" "a slutty maid outfit" "striped panties">>
 			is curled into short locks secured by hair ties with plastic buttons, bearing the garish inscription
-			<<InscripDesc>>
+			<<print App.Desc.inscrip($activeSlave)>>
 		<<case "a scalemail bikini">>
 			is curled into short flowing locks, and topped by a gold headband.
 		<<case "battledress">>
@@ -2922,7 +2922,7 @@ $His
 			is permed into long flowing curls poking out of a hole in $his latex hood.
 		<<case "a schoolgirl outfit" "a slutty maid outfit" "a string bikini" "cutoffs and a t-shirt" "striped panties">>
 			is permed into long flowing curls secured by hair ties with plastic buttons, bearing the garish inscription
-			<<InscripDesc>>
+			<<print App.Desc.inscrip($activeSlave)>>
 		<<case "a scalemail bikini">>
 			is permed into long flowing curls and topped by a gold headband.
 		<<case "battledress">>
@@ -3000,7 +3000,7 @@ $His
 			is permed, sticking out of a hole in $his latex hood.
 		<<case "a string bikini" "cutoffs and a t-shirt" "a schoolgirl outfit" "a slutty maid outfit" "striped panties">>
 			is permed and secured by hair ties with plastic buttons, bearing the garish inscription
-			<<InscripDesc>>
+			<<print App.Desc.inscrip($activeSlave)>>
 		<<case "a scalemail bikini">>
 			is permed and topped by a gold headband.
 		<<case "battledress">>
@@ -3078,7 +3078,7 @@ $His
 			is permed into short waves, but they are covered by $his latex hood.
 		<<case "a string bikini" "cutoffs and a t-shirt" "a schoolgirl outfit" "a slutty maid outfit" "striped panties">>
 			is permed into short waves secured by hair ties with plastic buttons, bearing the garish inscription
-			<<InscripDesc>>
+			<<print App.Desc.inscrip($activeSlave)>>
 		<<case "a scalemail bikini">>
 			is permed into short waves and topped by a gold headband.
 		<<case "battledress">>
@@ -6027,61 +6027,6 @@ $His
 <</widget>>
 
 <<widget "vaginalAccessoryDescription">>
-<<if $activeSlave.chastityVagina>>
-	<<set _held = "held in place by a chastity belt">>
-<<elseif $activeSlave.vaginalAccessory == "bullet vibrator" || $activeSlave.vaginalAccessory == "smart bullet vibrator">>
-	<<set _held = "held in place by a strap">>
-<<else>>
-	<<set _held = "held in place by a strap, which $he can remove for vaginal intercourse">>
-<</if>>
-<<switch $activeSlave.vaginalAccessory>>
-<<case "bullet vibrator" "smart bullet vibrator">>	/* FIXME: two different descriptions? */
-	A bullet vibrator is attached on $his clit, _held.	/* FIXME: not super happy with this */
-<<case "dildo">>
-	/* TODO: these may need to be updated for slaves with gaping+ vaginas */
-	$His pussy is filled by a dildo _held.
-<<case "long dildo">>
-	$His pussy is filled by a very long dildo _held. It noticeably bulges $his stomach.
-<<case "large dildo">>
-	$His pussy is <<if $activeSlave.vagina < 2>>painfully stretched<<elseif $activeSlave.vagina < 3>>uncomfortably filled<<else>>comfortably filled<</if>> by a large dildo _held.
-<<case "long, large dildo">>
-	$His pussy is <<if $activeSlave.vagina < 2>>painfully stretched<<elseif $activeSlave.vagina < 3>>uncomfortably filled<<else>>comfortably filled<</if>> by a very long and large dildo _held. It noticeably bulges $his stomach.
-<<case "huge dildo">>
-	<<if $activeSlave.vagina < 4>>
-		$His pussy is filled to the breaking point by an enormous dildo.
-		<<if ($activeSlave.fetish == "masochist") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
-			$He can barely move with the discomfort, but $he frequently climaxes with agony.
-		<<else>>
-			$He can barely move with the discomfort, and $he sometimes breaks down in tears at having $his cunt permanently stretched.
-		<</if>>
-	<<else>>
-		$His cavernous pussy is comfortably filled by a huge dildo.
-	<</if>>
-	<<if $activeSlave.chastityVagina>>
-		A chastity belt locks it securely in place.
-	<</if>>
-<<case "long, huge dildo">>
-	<<if $activeSlave.vagina < 4>>
-		$His pussy is filled to the breaking point by an enormously wide and long dildo. It noticeably bulges $his stomach.
-		<<if ($activeSlave.fetish == "masochist") && ($activeSlave.fetishKnown == 1) && ($activeSlave.fetishStrength > 60)>>
-			$He can barely move with the discomfort, but $he frequently climaxes with agony.
-		<<else>>
-			$He can barely move with the discomfort, and $he sometimes breaks down in tears at having $his cunt permanently stretched.
-		<</if>>
-	<<else>>
-		$His cavernous pussy is comfortably filled by an enormously wide and long dildo. It noticeably bulges $his stomach.
-	<</if>>
-	<<if $activeSlave.chastityVagina>>
-		A chastity belt locks it securely in place.
-	<</if>>
-<<default>>
-	<<if $activeSlave.chastityVagina>>
-		$His pussy is protected by a chastity belt<<if $activeSlave.clothes != "no clothing">> worn under $his clothing<</if>>.
-	<</if>>
-<</switch>>
-<<if $activeSlave.chastityVagina && $arcologies[0].FSRestart != "unset">>
-	This pleases the Societal Elite.
-<</if>>
 <</widget>>
 
 <<widget "vaginalAttachmentDescription">>