diff --git a/src/npc/startingGirls/commitStartingGirl.tw b/src/npc/startingGirls/commitStartingGirl.tw
index debfada9592d582a01fe04c672ad76536b4cd076..4ef5b0163f9800e99b8237bc7859c0ae302a18f4 100644
--- a/src/npc/startingGirls/commitStartingGirl.tw
+++ b/src/npc/startingGirls/commitStartingGirl.tw
@@ -6,8 +6,12 @@
 <<if $activeSlave.indenture >= 0>>
 	<<set $activeSlave.indenture = Math.clamp($activeSlave.indenture, 26, 208) || 26>>
 <</if>>
+<<if $activeSlave.pregSource == -1>>
+	<<set $PC.slavesKnockedUp++>>
+<</if>>
 <<set $activeSlave.height = Math.clamp($activeSlave.height, 85, 274) || 140>>
 <<set $activeSlave.boobs = Math.clamp(Math.trunc($activeSlave.boobs/50)*50, 0, 25000) || 200>>
+<<set $activeSlave.origSkin = $activeSlave.skin>>
 
 <<set $careerBonusApplied = 0>>
 <<set $originOveride = 0>>
diff --git a/src/pregmod/generateChild.tw b/src/pregmod/generateChild.tw
index 6b952eaa0f8a9d2fabd55399b0f27bdaf72bbdfd..29716678c17fb9c4148916a2b6c7eb6afca34a87 100644
--- a/src/pregmod/generateChild.tw
+++ b/src/pregmod/generateChild.tw
@@ -40,7 +40,7 @@
 		<<else>>
 			<<set $activeSlave.race = $PC.race>>
 		<</if>>
-		<<set $activeSlave.skin = $PC.skin>>
+		<<set $activeSlave.skin = $PC.origSkin>>
 		<<set $activeSlave.eyeColor = either($PC.origEye, "brown", "blue", "brown", "green", "hazel", "green")>>
 		<<set $activeSlave.hColor = either($PC.origHColor, "brown", "blonde", "black", "brown")>>
 		<<set $activeSlave.pubicHColor = $activeSlave.hColor>>
@@ -75,8 +75,8 @@
 		<<else>>
 			<<set $activeSlave.race = "mixed race">>
 		<</if>>
-		<<if $PC.skin == $mergeDad.skin>>
-			<<set $activeSlave.skin = $PC.skin>>
+		<<if $PC.origSkin == $mergeDad.origSkin>>
+			<<set $activeSlave.skin = $PC.origSkin>>
 		<<else>>
 			<<GenSkinTone $PC $mergeDad>>
 		<</if>>
@@ -166,7 +166,7 @@
 		<<else>>
 			<<set $activeSlave.race = $PC.race>>
 		<</if>>
-		<<set $activeSlave.skin = $PC.skin>>
+		<<set $activeSlave.skin = $PC.origSkin>>
 		<<set $activeSlave.eyeColor = either($PC.origEye, "brown", "blue", "brown", "green", "hazel", "green")>>
 		<<set $activeSlave.hColor = either($PC.origHColor, "brown", "blonde", "black", "brown")>>
 		<<set $activeSlave.pubicHColor = $PC.origHColor>>
@@ -201,8 +201,8 @@
 		<<else>>
 			<<set $activeSlave.race = "mixed race">>
 		<</if>>
-		<<if $PC.skin == $mergeDad.skin>>
-			<<set $activeSlave.skin = $PC.skin>>
+		<<if $PC.origSkin == $mergeDad.origSkin>>
+			<<set $activeSlave.skin = $PC.origSkin>>
 		<<else>>
 			<<GenSkinTone $PC $mergeDad>>
 		<</if>>
@@ -321,8 +321,8 @@
 			<</if>>
 		<</if>>
 	<</if>>
-	<<if $mergeMom.skin == $mergeDad.skin>>
-		<<set $activeSlave.skin = $mergeMom.skin>>
+	<<if $mergeMom.origSkin == $mergeDad.origSkin>>
+		<<set $activeSlave.skin = $mergeMom.origSkin>>
 	<<else>>
 		<<GenSkinTone $mergeMom $mergeDad>>
 	<</if>>
diff --git a/src/pregmod/huskSlaveSwap.tw b/src/pregmod/huskSlaveSwap.tw
index 2631cd590d6642debb2074acbfdfa6741ae7ba55..dba1f9f3f6b29803067692678f711ab00ab1bc68 100644
--- a/src/pregmod/huskSlaveSwap.tw
+++ b/src/pregmod/huskSlaveSwap.tw
@@ -7,7 +7,7 @@
 You strap $slaves[_m].slaveName, and the body to which $pronoun will be transferred, into the remote surgery and stand back as it goes to work.
 <<BodySwap $slaves[_m] $activeSlave>>
 <<set _gps = $genePool.findIndex(function(s) { return s.ID == $slaves[_m].ID; })>>
-<<set $genePool[_gps].race = $slaves[_m].race, $genePool[_gps].skin = $slaves[_m].skin, $genePool[_gps].markings = $slaves[_m].markings, $genePool[_gps].origEye = $slaves[_m].origEye, $genePool[_gps].origHColor = $slaves[_m].origHColor, $genePool[_gps].face = $slaves[_m].face, $genePool[_gps].pubicHStyle = $slaves[_m].pubicHStyle, $genePool[_gps].underArmHStyle = $slaves[_m].underArmHStyle>> /* special exception to swap genePool since the temporary body lacks an entry. Otherwise we could just call the widget using the genePool entries */
+<<set $genePool[_gps].race = $slaves[_m].race, $genePool[_gps].skin = $slaves[_m].skin, $genePool[_gps].markings = $slaves[_m].markings, $genePool[_gps].origEye = $slaves[_m].origEye, $genePool[_gps].origHColor = $slaves[_m].origHColor, $genePool[_gps].origSkin = $slaves[_m].skin, $genePool[_gps].face = $slaves[_m].face, $genePool[_gps].pubicHStyle = $slaves[_m].pubicHStyle, $genePool[_gps].underArmHStyle = $slaves[_m].underArmHStyle>> /* special exception to swap genePool since the temporary body lacks an entry. Otherwise we could just call the widget using the genePool entries */
 After an honestly impressive procedure, $slaves[_m].slaveName is released and allowed to explore her new body.
 
 <br><br>
diff --git a/src/pregmod/managePersonalAffairs.tw b/src/pregmod/managePersonalAffairs.tw
index 5f5341c6029dd6159a6755d10cafebd6a11fa0f7..d0492dd892834ea1a10d7d2d749112cbd60cd9c4 100644
--- a/src/pregmod/managePersonalAffairs.tw
+++ b/src/pregmod/managePersonalAffairs.tw
@@ -462,6 +462,24 @@ In total, you have given birth to:
 <br><<print $PC.birthSelf>> bab<<if $PC.birthSelf > 1>>ies<<else>>y<</if>> that <<if $PC.birthSelf > 1>>are<<else>>is<</if>> literally all you.
 <</if>>
 <</if>>
+<<if $PC.slavesKnockedUp > 0>>
+	<br>
+	<<if $PC.dick == 1>>
+		You've knocked up $PC.slavesKnockedUp fertile slave girls<<if $PC.slavesFathered > 0>> and fathered $PC.slavesFathered new slaves<</if>> as an arcology owner so far.
+	<<else>>
+		Before your sex change, you knocked up $PC.slavesKnockedUp fertile slave girls<<if $PC.slavesFathered > 0>> and fathered $PC.slavesFathered new slaves<</if>>.
+	<</if>>
+<<else>>
+	<<if $PC.slavesFathered > 0>>
+		<br>
+		
+		<<if $PC.dick == 1>>
+			You've fathered $PC.slavesFathered new slaves as an arcology owner so far.
+		<<else>>
+			Before your sex change, you fathered $PC.slavesFathered new slaves.
+		<</if>>
+	<</if>>
+<</if>>
 <br>
 <br>
 
@@ -521,6 +539,46 @@ In total, you have given birth to:
 
 <</if>>
 
+<<else>> /* no vagina */
+
+<<if $PC.births > 0>>
+	<br><br>
+	Before your sex change, you had given birth to:
+	<<if $PC.birthElite > 0>>
+	<br><<print $PC.birthElite>> bab<<if $PC.birthElite > 1>>ies<<else>>y<</if>> for the Societal Elite.
+	<</if>>
+	<<if $PC.birthMaster > 0>>
+	<br><<print $PC.birthMaster>> bab<<if $PC.birthMaster > 1>>ies<<else>>y<</if>> for your former master.
+	<</if>>
+	<<if $PC.birthClient > 0>>
+	<br><<print $PC.birthOther>> bab<<if $PC.birthOther > 1>>ies<<else>>y<</if>> from clients you've slept with.
+	<</if>>
+	<<if $PC.birthDegenerate > 0>>
+	<br><<print $PC.birthDegenerate>> bastard<<if $PC.birthDegenerate > 1>>s<</if>> from getting fucked by slaves.
+	<</if>>
+	<<if $PC.birthArcOwner > 0>>
+	<br><<print $PC.birthArcOwner>> bab<<if $PC.birthArcOwner > 1>>ies<<else>>y<</if>> from your time with that male arcology owner.
+	<</if>>
+	<<if $PC.birthCitizen > 0>>
+	<br><<print $PC.birthCitizen>> bab<<if $PC.birthCitizen > 1>>ies<<else>>y<</if>> from sex with arcology citizens.
+	<</if>>
+	<<if $PC.birthOther > 0>>
+	<br><<print $PC.birthOther>> bab<<if $PC.birthOther > 1>>ies<<else>>y<</if>> from sources you can't quite recall.
+	<</if>>
+	<<if $PC.birthSelf > 0>>
+	<br><<print $PC.birthSelf>> bab<<if $PC.birthSelf > 1>>ies<<else>>y<</if>> that were literally all you.
+	<</if>>
+<</if>>
+<<if $PC.slavesKnockedUp > 0>>
+	<br><br>
+		You've knocked up $PC.slavesKnockedUp fertile slave girls<<if $PC.slavesFathered > 0>> and fathered $PC.slavesFathered new slaves<</if>> as an arcology owner so far.
+<<else>>
+	<<if $PC.slavesFathered > 0>>
+		<br><br>
+		You've fathered $PC.slavesFathered new slaves as an arcology owner so far.
+	<</if>>
+<</if>>
+
 <</if>>
 
 <<if $propOutcome == 1>>
diff --git a/src/pregmod/widgets/bodyswapWidgets.tw b/src/pregmod/widgets/bodyswapWidgets.tw
index d8e9d6caff91694ddf4023967d65d68da3c0cd1f..a5a22767717dd4ab2183aa23bd801c20d5b162ad 100644
--- a/src/pregmod/widgets/bodyswapWidgets.tw
+++ b/src/pregmod/widgets/bodyswapWidgets.tw
@@ -27,6 +27,7 @@
 <<set $args[0].race = $args[1].race>>
 <<set $args[0].pubicHColor = $args[1].pubicHColor>>
 <<set $args[0].skin = $args[1].skin>>
+<<set $args[0].origSkin = $args[1].skin>>
 <<set $args[0].markings = $args[1].markings>>
 <<set $args[0].eyes = $args[1].eyes>>
 <<set $args[0].origEye = $args[1].origEye>>
diff --git a/src/uncategorized/BackwardsCompatibility.tw b/src/uncategorized/BackwardsCompatibility.tw
index b8dacf463adf2aa256636226c28f2bb89219e29b..0e3f2eadded2892844c724d1293bacaf6640243e 100644
--- a/src/uncategorized/BackwardsCompatibility.tw
+++ b/src/uncategorized/BackwardsCompatibility.tw
@@ -1986,6 +1986,9 @@ Setting missing slave variables:
 <<if ndef _Slave.origHColor>>
 	<<set _Slave.origHColor = _Slave.hColor>>
 <</if>>
+<<if ndef _Slave.origSkin>>
+	<<set _Slave.origSkin = _Slave.skin>>
+<</if>>
 
 <<if ndef _Slave.birthSurname>><<set _Slave.birthSurname = 0>><</if>>
 <<if ndef _Slave.slaveSurname>><<set _Slave.slaveSurname = 0>><</if>>
@@ -1995,5 +1998,9 @@ Setting missing slave variables:
 
 <<set $slavesOriginal = []>> /* not used by pregmod */
 
+<<for _bci = 0; _bci < $genePool.length; _bci++>>
+<<set _Slave = $genePool[_bci]>>
+	<<if ndef _Slave.origSkin>><<set _Slave.origSkin = _Slave.skin>><</if>>
+<</for>>
 Done!
 
diff --git a/src/uncategorized/generateXXSlave.tw b/src/uncategorized/generateXXSlave.tw
index c025870da34988b8d0ffda6756db68de9567fd6c..0c3b5769b919d8e3f24f916908905010b67df985 100644
--- a/src/uncategorized/generateXXSlave.tw
+++ b/src/uncategorized/generateXXSlave.tw
@@ -304,6 +304,7 @@
 
 <<set $activeSlave.origEye = $activeSlave.eyeColor>>
 <<set $activeSlave.origHColor = $activeSlave.hColor>>
+<<set $activeSlave.origSkin = $activeSlave.skin>>
 <<set $activeSlave.pubicHColor = $activeSlave.hColor>>
 <<set $activeSlave.pubicHStyle = either("hairless", "bald", "bald", "waxed", "waxed", "waxed", "waxed", "waxed", "waxed", "in a strip", "in a strip", "in a strip", "in a strip", "in a strip", "neat", "neat", "neat", "neat", "neat", "bushy in the front and neat in the rear", "bushy in the front and neat in the rear", "bushy in the front and neat in the rear", "bushy in the front and neat in the rear", "bushy", "bushy", "bushy", "bushy", "bushy")>>
 <<set $activeSlave.underArmHColor = $activeSlave.hColor>>
diff --git a/src/uncategorized/generateXYSlave.tw b/src/uncategorized/generateXYSlave.tw
index ab47c17ede047fb44deb863044434e71f76837d9..8a62d270ceff85e5b6ca95975fb6cb469bd2e089 100644
--- a/src/uncategorized/generateXYSlave.tw
+++ b/src/uncategorized/generateXYSlave.tw
@@ -304,6 +304,7 @@
 
 <<set $activeSlave.origEye = $activeSlave.eyeColor>>
 <<set $activeSlave.origHColor = $activeSlave.hColor>>
+<<set $activeSlave.origSkin = $activeSlave.skin>>
 <<set $activeSlave.pubicHColor = $activeSlave.hColor>>
 <<set $activeSlave.pubicHStyle = either("hairless", "bald", "bald", "waxed", "waxed", "waxed", "waxed", "waxed", "waxed", "in a strip", "in a strip", "in a strip", "neat", "neat", "neat", "neat", "neat", "neat", "bushy in the front and neat in the rear", "bushy in the front and neat in the rear", "bushy in the front and neat in the rear", "bushy", "bushy", "bushy", "bushy", "bushy", "bushy")>>
 <<set $activeSlave.underArmHColor = $activeSlave.hColor>>
diff --git a/src/uncategorized/longSlaveDescription.tw b/src/uncategorized/longSlaveDescription.tw
index 0f0f2e5605958489d44a3d95292fd92ac21b5e1a..8076b421f3b7b1b661795b52769640831dd2d494 100644
--- a/src/uncategorized/longSlaveDescription.tw
+++ b/src/uncategorized/longSlaveDescription.tw
@@ -710,6 +710,17 @@ $pronounCap has been with you
 <</if>>
 <</if>>
 
+<<if $activeSlave.slavesKnockedUp > 0>>
+	$pronounCap's knocked up $activeSlave.slavesKnockedUp other slave girl<<if $activeSlave.slavesKnockedUp > 1>>s<</if>><<if $activeSlave.slavesFathered > 0>> and fathered $activeSlave.slavesFathered new slave<<if $activeSlave.slavesFathered > 1>>s<</if>> for you<</if>>.
+<<elseif $activeSlave.slavesFathered > 0>>
+	$pronounCap's fathered $activeSlave.slavesFathered new slave<<if $activeSlave.slavesFathered > 1>>s<</if>> for you.
+<</if>>
+<<if $activeSlave.slavesKnockedUp > 0>>
+	$pronounCap's managed to knock you up $activeSlave.PCKnockedUp time<<if $activeSlave.slavesKnockedUp > 1>>s<</if>><<if $activeSlave.slavesFathered > 0>> and is the father of $activeSlave.PCChildrenFathered of your children<</if>>.
+<<elseif $activeSlave.slavesFathered > 0>>
+	$pronounCap's the father of $activeSlave.PCChildrenFathered of your children<</if>>.
+<</if>>
+
 <</if>>
 <</if>>
 <</if>>
@@ -1854,7 +1865,7 @@ $pronounCap has
 <<if $activeSlave.waist > 95>>
 	a badly @@.red;masculine waist@@ that ruins her figure<<if $activeSlave.weight > 30>> and greatly exaggerates how fat $pronoun is<<elseif $activeSlave.weight < -30>> despite how thin $pronoun is<</if>>.
 	<<if hyperBellyTwo($activeSlave)>>
-		$possessiveCap titanic belly lewdly bulges out the sides of $possessive thick waist.<<if $activeSlave.preg > 0>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>>
+		$possessiveCap titanic belly lewdly bulges out the sides of $possessive thick waist.<<if $activeSlave.preg > 3>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>>
 	<<elseif hyperBellyOne($activeSlave)>>
 		$possessiveCap gigantic belly barely distends her $possessive thick waist.
 	<<elseif hugeBelly($activeSlave)>>
@@ -1865,7 +1876,7 @@ $pronounCap has
 <<elseif $activeSlave.waist > 40>>
 	a broad, @@.red;ugly waist@@ that makes her look mannish<<if $activeSlave.weight > 30>> and exaggerates how fat $pronoun is<<elseif $activeSlave.weight < -30>> despite how thin $pronoun is<</if>>.
 	<<if hyperBellyTwo($activeSlave)>>
-		$possessiveCap titanic belly lewdly bulges out the sides of $possessive chunky waist.<<if $activeSlave.preg > 0>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>>
+		$possessiveCap titanic belly lewdly bulges out the sides of $possessive chunky waist.<<if $activeSlave.preg > 3>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>>
 	<<elseif hyperBellyOne($activeSlave)>>
 		$possessiveCap gigantic belly barely distends her $possessive chunky waist.
 	<<elseif hugeBelly($activeSlave)>>
@@ -1876,7 +1887,7 @@ $pronounCap has
 <<elseif $activeSlave.waist > 10>>
 	an @@.red;unattractive waist@@ that conceals $possessive <<if $activeSlave.visualAge > 25>>girlish<<else>>womanly<</if>> figure<<if $activeSlave.weight > 30>> and accentuates how fat $pronoun is<<elseif $activeSlave.weight < -30>> despite how thin $pronoun is<</if>>.
 	<<if hyperBellyTwo($activeSlave)>>
-		$possessiveCap titanic belly lewdly bulges out the sides of $possessive waist.<<if $activeSlave.preg > 0>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>>
+		$possessiveCap titanic belly lewdly bulges out the sides of $possessive waist.<<if $activeSlave.preg > 3>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>>
 	<<elseif hyperBellyOne($activeSlave)>>
 		$possessiveCap gigantic belly barely distends her $possessive waist.
 	<<elseif hugeBelly($activeSlave)>>
@@ -1887,7 +1898,7 @@ $pronounCap has
 <<elseif $activeSlave.waist >= -10>>
 	an average waist for a <<if $activeSlave.visualAge > 25>>girl<<else>>woman<</if>><<if $activeSlave.weight > 30>>, though it looks broader since $pronoun's fat<<elseif $activeSlave.weight < -30>>, though it looks narrower since $pronoun's thin<</if>>.
 	<<if hyperBellyTwo($activeSlave)>>
-		$possessiveCap titanic belly lewdly bulges out the sides of $possessive waist.<<if $activeSlave.preg > 0>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>>
+		$possessiveCap titanic belly lewdly bulges out the sides of $possessive waist.<<if $activeSlave.preg > 3>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>>
 	<<elseif hyperBellyOne($activeSlave)>>
 		$possessiveCap gigantic belly barely distends her $possessive waist.
 	<<elseif hugeBelly($activeSlave)>>
@@ -1898,7 +1909,7 @@ $pronounCap has
 <<elseif $activeSlave.waist >= -40>>
 	a nice @@.pink;feminine waist@@ that gives $object a <<if $activeSlave.visualAge > 25>>girlish<<else>>womanly<</if>> figure<<if $activeSlave.weight > 30>> despite $possessive extra weight<<elseif $activeSlave.weight < -30>> and accentuates how thin $pronoun is<</if>>.
 	<<if hyperBellyTwo($activeSlave)>>
-		$possessiveCap titanic belly lewdly bulges out the sides of $possessive feminine waist.<<if $activeSlave.preg > 0>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>>
+		$possessiveCap titanic belly lewdly bulges out the sides of $possessive feminine waist.<<if $activeSlave.preg > 3>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>>
 	<<elseif hyperBellyOne($activeSlave)>>
 		$possessiveCap gigantic belly lewdly distends her $possessive feminine waist.
 	<<elseif hugeBelly($activeSlave)>>
@@ -1909,7 +1920,7 @@ $pronounCap has
 <<elseif $activeSlave.waist >= -95>>
 	a hot @@.pink;wasp waist@@ that gives $possessive an hourglass figure<<if $activeSlave.weight > 30>> despite $possessive extra weight<<elseif $activeSlave.weight < -30>> further accentuated by how thin $pronoun is<</if>>.
 	<<if hyperBellyTwo($activeSlave)>>
-		$possessiveCap titanic belly lewdly bulges out the sides of $possessive narrow waist and continues nearly half a meter farther to either side.<<if $activeSlave.preg > 0>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>>
+		$possessiveCap titanic belly lewdly bulges out the sides of $possessive narrow waist and continues nearly half a meter farther to either side.<<if $activeSlave.preg > 3>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>>
 	<<elseif hyperBellyOne($activeSlave)>>
 		$possessiveCap gigantic belly lewdly distends massively to either side of $possessive narrow waist.
 	<<elseif hugeBelly($activeSlave)>>
@@ -1920,7 +1931,7 @@ $pronounCap has
 <<else>>
 	an @@.pink;absurdly narrow waist@@ that gives $possessive a cartoonishly hourglass figure<<if $activeSlave.weight > 30>> made even more ludicrous by $possessive extra weight<<elseif $activeSlave.weight < -30>> made even more ludicrous by how thin $pronoun is<</if>>.
 	<<if hyperBellyTwo($activeSlave)>>
-		$possessiveCap titanic belly lewdly bulges out the sides of $possessive very narrow waist and continues nearly half a meter farther to either side.<<if $activeSlave.preg > 0>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>>
+		$possessiveCap titanic belly lewdly bulges out the sides of $possessive very narrow waist and continues nearly half a meter farther to either side.<<if $activeSlave.preg > 3>> The sides of $possessive waist are filled by $possessive overfilled womb in its desperate search for more room.<</if>>
 	<<elseif hyperBellyOne($activeSlave)>>
 		$possessiveCap gigantic belly lewdly distends massively to either side of $possessive very narrow waist.
 	<<elseif hugeBelly($activeSlave)>>
@@ -2343,9 +2354,9 @@ $pronounCap is
 		Tests show $possessive womb contains <<print _daddy>>'s child.
 	<</if>>
   <</if>>
-<<elseif $activeSlave.preg > 0>>
+<<elseif $activeSlave.preg > 3>>
 	<<if $activeSlave.pregType >= 20>>
-		$pronounCap is @@.pink;pregnant@@, despite just being inseminated $possessive belly juts out several inches.
+		$pronounCap is @@.pink;pregnant@@, despite it being so early, $possessive belly juts out several inches.
 		<<if $activeSlave.preg > 5>>
 			<<if $activeSlave.pregSource == -1>>
 				Tests show $possessive womb contains many of your growing children.
@@ -2362,7 +2373,7 @@ $pronounCap is
 			It is too early to tell who exactly fathered the children swelling $possessive belly.
 		<</if>>
 	<<elseif $activeSlave.pregType >= 10>>
-		$pronounCap is @@.pink;pregnant@@, though just impregnated $possessive belly bulges slightly.
+		$pronounCap is @@.pink;pregnant@@, despite it being so early, $possessive belly bulges slightly.
 		<<if $activeSlave.preg > 5>>
 			<<if $activeSlave.pregSource == -1>>
 				Tests show $possessive womb contains many of your growing children.
@@ -2396,6 +2407,8 @@ $pronounCap is
 			It is too early to tell who exactly fathered the child growing in $possessive womb.
 		<</if>>
 	<</if>>
+<<elseif $activeSlave.preg > 0>>
+	$possessiveCap period is late.
 <</if>>
 <<if $activeSlave.bellyImplant >= 32000>>
 	$pronounCap looks @@.pink;ready to pop!@@ $pronounCap belly is massively stretched by $possessive <<print $activeSlave.bellyImplant>>cc belly implant.
diff --git a/src/uncategorized/newSlaveIntro.tw b/src/uncategorized/newSlaveIntro.tw
index 8bd7cad1bc78659c92c270ce17cd5a1d7ea3b8b8..171d8cb4903a181041b51587d9d59e95d9ff6a18 100644
--- a/src/uncategorized/newSlaveIntro.tw
+++ b/src/uncategorized/newSlaveIntro.tw
@@ -363,6 +363,7 @@ The legalities completed, ''__@@.pink;$activeSlave.slaveName@@__'' <<if ($active
 		<<set $activeSlave.trust -= 4>>
 	<</if>>
 <</if>>
+
 <<if $arcologies[0].FSPaternalist >= 50>>
 	She realizes that your arcology's citizens look after their slaves, you more than anyone, and @@.mediumaquamarine;hopes@@ she'll do well here.
 	<<set $activeSlave.trust += 2>>
@@ -1247,6 +1248,7 @@ The legalities completed, ''__@@.pink;$activeSlave.slaveName@@__'' <<if ($active
 	<</link>>
 <</if>>
 
+
 <<if  ($activeSlave.devotion < -10) && ($activeSlave.anus == 0)>>
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
 	<<link "Tie her up and rape her virgin ass">>
@@ -1621,6 +1623,59 @@ The legalities completed, ''__@@.pink;$activeSlave.slaveName@@__'' <<if ($active
 	<</link>>
 <</if>>
 
+<<if $cumSlaves > 3>>
+<br>&nbsp;&nbsp;&nbsp;&nbsp;
+<<link "Fill her with cum">>
+	<<replace "#introResult">>
+		You securely restrain your new slave<<if $dairyRestraintsSetting > 1>> in a milking stall<</if>>. A quick finger check of her holes allows you to choose wisely from a selection of hollow phalluses, which push into your helpless new slave's 
+		mouth,
+		<<set $activeSlave.oralCount += 1>>
+		<<set $oralTotal += 1>>
+		<<if ($activeSlave.vagina > 0)>>
+			vagina,
+			<<set $activeSlave.vaginalCount += 1>>
+			<<set $vaginalTotal += 1>>
+		<</if>>
+		<<if $activeSlave.anus > 0>>
+			and squeeze into her ass,
+			<<set $activeSlave.analCount += 1>>
+			<<set $analTotal += 1>>
+		<</if>>
+		with no room to spare.
+		Your choices attach to long tubes, and with a fiendish smile you turn a valve. The lines run white with a mixture of fluids from your slaves, and your slave begins to fill.
+		<<if $activeSlave.devotion > 20>>
+			<<if $activeSlave.fetish == "cumslut">>
+				<<if $activeSlave.fetishKnown == 0>>
+					She seems genuinely eager to hold as much of the fluid as she can. @@.green;She's a cum fetishist!@@
+					<<set $activeSlave.fetishKnown = 1>>
+				<<else>>
+					She groans with guilty pleasure, feeling her muscles ache and her torso swell. Before long, she reaches a quivering orgasm.
+				<</if>>
+				As you release her she swings up with difficulty, but @@.hotpink;she seems very pleased@@ to stay plugged for now.
+				<<set $activeSlave.devotion += 5>>
+			<<else>>
+				Her eyes swell with horror, but she does not flinch or make a sound. When she seems full enough, you shut off the valves, deciding to leave her plugged for now. She waddles off @@.hotpink;without apparent resentment@@ of this treatment.
+				<<set $activeSlave.devotion += 4>>
+			<</if>>
+		<<else>>
+			<<if $activeSlave.fetish == "cumslut">>
+				<<if $activeSlave.fetishKnown == 0>>
+					Her eyes swell with profound horror at the realization of what is happening, and begin to leak tears as she realizes that having her swelling body is getting her horny. @@.green;She's a cum fetishist!@@
+					<<set $activeSlave.fetishKnown = 1>>
+				<<else>>
+					She groans with guilty pleasure, feeling her muscles ache and her torso swell. She does not orgasm from her "meal," but feels much more pleasure than she's willing to admit.
+				<</if>>
+				When you let her up, she's sobbing, more from humiliation than discomfort. However, she @@.hotpink;submits@@ to an uncomfortable groping of her stomach, which is pleasingly taunt from the inflation. You decide to leave her plugged for a few hours, impressing on her still more that her fate is out of her control.
+				<<set $activeSlave.devotion += 4>>
+			<<else>>
+				She gasps in horror, and starts to struggle frantically against her bonds. However, as the fluid reaches her she seems to resign herself to her fate. Once she reaches a fullness you like you let her up, @@.gold;fearful@@ due to the humiliation rather than the swelling. She limps off to her new duties as quickly as she can, before you can unplug her. Oh well!
+				<<set $activeSlave.trust -= 4>>
+			<</if>>
+		<</if>>
+		Her first day promises to be a full one!
+	<</replace>>
+<</link>>
+<</if>>
 
 <<if ($activeSlave.amp != 1)>>
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
diff --git a/src/uncategorized/reSlaveMarriage.tw b/src/uncategorized/reSlaveMarriage.tw
index 56ec76f41f438c570a07bf31b41af0c3cf37cf1a..94f5e04b0ceb180724c7ebe909d5508dc6a3afd6 100644
--- a/src/uncategorized/reSlaveMarriage.tw
+++ b/src/uncategorized/reSlaveMarriage.tw
@@ -26,7 +26,7 @@
 <<link "Of course">>
 	<<replace "#result">>
 	You inquire as to whether they understand the Free Cities slave marriage ceremony, and they nod, not trusting themselves to do anything more. You give them a few minutes to get dressed in special outfits you make available. When they come back, they're wearing lacy lingerie designed to resemble old world wedding dresses, but without concealing anything.
-	<br><br><<if ($groomSlave.vagina == 0)>>$groomSlave.slaveName is a virgin, so she's wearing white<<elseif ($groomSlave.preg > 0)>>$groomSlave.slaveName is pregnant, so she's wearing light pink<<elseif ($groomSlave.vagina < 0)>>$groomSlave.slaveName is a sissy slave, so she's wearing light blue<<else>>$groomSlave.slaveName is an experienced sex slave, so she's wearing light pink<</if>> against her $groomSlave.skin skin.<<if ($groomSlave.dickAccessory == "chastity")>>She has a little bow on her chastity cage.<<elseif ($groomSlave.dick > 0) && ($groomSlave.balls > 0) && ($groomSlave.hormones < 1)>>The sight of $brideSlave.slaveName has her stiffly erect, and she's wearing a little bow around her cockhead.<<elseif ($groomSlave.dick > 0)>>She's impotent, but she's wearing a little bow around her useless cockhead.<<elseif ($groomSlave.clit > 0)>>Her prominent clit is engorged, and she's wearing a tiny bow on it.<<else>>She's wearing a demure little bow just over her pussy.<</if>><<if ($groomSlave.anus > 1)>> Her lacy panties are designed to spread her buttocks a little and display her big butthole.<<elseif ($groomSlave.anus == 0)>> Her lacy panties cover her virgin anus, for once.<</if>> <<if ($groomSlave.boobs > 1000)>>The bra makes no attempt to cover or even support her huge breasts, simply letting them through holes in the lace to jut proudly out.<<elseif ($groomSlave.boobs > 500)>>The bra supports and presents her big breasts, leaving her stiffening nipples bare.<<else>>The bra supports and presents her breasts, giving her more cleavage than she usually displays.<</if>><<if $groomSlave.preg > 10>> Her growing pregnancy prominently bulges from the gap between her lingerie.<</if>>
+	<br><br><<if ($groomSlave.vagina == 0)>>$groomSlave.slaveName is a virgin, so she's wearing white<<elseif ($groomSlave.preg > 0)>>$groomSlave.slaveName is pregnant, so she's wearing light pink<<elseif ($groomSlave.vagina < 0)>>$groomSlave.slaveName is a sissy slave, so she's wearing light blue<<else>>$groomSlave.slaveName is an experienced sex slave, so she's wearing light pink<</if>> against her $groomSlave.skin skin. <<if ($groomSlave.dickAccessory == "chastity")>>She has a little bow on her chastity cage.<<elseif ($groomSlave.dick > 0) && ($groomSlave.balls > 0) && ($groomSlave.hormones < 1)>>The sight of $brideSlave.slaveName has her stiffly erect, and she's wearing a little bow around her cockhead.<<elseif ($groomSlave.dick > 0)>>She's impotent, but she's wearing a little bow around her useless cockhead.<<elseif ($groomSlave.clit > 0)>>Her prominent clit is engorged, and she's wearing a tiny bow on it.<<else>>She's wearing a demure little bow just over her pussy.<</if>><<if ($groomSlave.anus > 1)>> Her lacy panties are designed to spread her buttocks a little and display her big butthole.<<elseif ($groomSlave.anus == 0)>> Her lacy panties cover her virgin anus, for once.<</if>> <<if ($groomSlave.boobs > 1000)>>The bra makes no attempt to cover or even support her huge breasts, simply letting them through holes in the lace to jut proudly out.<<elseif ($groomSlave.boobs > 500)>>The bra supports and presents her big breasts, leaving her stiffening nipples bare.<<else>>The bra supports and presents her breasts, giving her more cleavage than she usually displays.<</if>><<if $groomSlave.preg > 10>> Her growing pregnancy prominently bulges from the gap between her lingerie.<</if>>
 	<br><br><<if ($brideSlave.vagina == 0)>>$brideSlave.slaveName is a virgin, so she's wearing white<<elseif ($groomSlave.preg > 0)>>$brideSlave.slaveName is pregnant, so she's wearing light pink<<elseif ($brideSlave.vagina < 0)>>$brideSlave.slaveName is a sissy slave, so she's wearing light blue<<else>>$brideSlave.slaveName is an experienced sex slave, so she's wearing light pink<</if>> against her $brideSlave.skin skin. <<if ($brideSlave.dickAccessory == "chastity")>>She has a little bow on her chastity cage.<<elseif ($brideSlave.dick > 0) && ($brideSlave.balls > 0) && ($brideSlave.hormones < 1)>>The sight of $groomSlave.slaveName has her stiffly erect, and she's wearing a little bow around her cockhead.<<elseif ($brideSlave.dick > 0)>>She's impotent, but she's wearing a little bow around her useless cockhead.<<elseif ($brideSlave.clit > 0)>>Her prominent clit is engorged, and she's wearing a tiny bow on it.<<else>>She's wearing a demure little bow just over her pussy.<</if>><<if ($brideSlave.anus > 1)>> Her lacy panties are designed to spread her buttocks a little and display her big butthole.<<elseif ($brideSlave.anus == 0)>> Her lacy panties cover her virgin anus, for once.<</if>> <<if ($brideSlave.boobs > 1000)>>The bra makes no attempt to cover or even support her huge breasts, simply letting them through holes in the lace to jut proudly out.<<elseif ($brideSlave.boobs > 500)>>The bra supports and presents her big breasts, leaving her stiffening nipples bare.<<else>>The bra supports and presents her breasts, giving her more cleavage than she usually displays.<</if>><<if $brideSlave.preg > 10>> Her growing pregnancy prominently bulges from the gap between her lingerie.<</if>>
 	<br><br>The procedure is simple. The two of them prostrate themselves on the ground and beg your indulgence. You state that you grant it, and hand each of them a simple gold band to be worn on the little finger in advertisement of the inferiority of their union. In turn, each of them gives the other her ring, and they kiss. You pronounce them slave wives, and offer them the couch for their honeymoon; they @@.mediumaquamarine;thank you profusely@@ through their building tears. It's always touching to see <<if $groomSlave.preg > 20 and $brideSlave.preg > 20>>two pregnant slaves fingering each other<<else>>a 69<</if>> in which both participants are @@.hotpink;softly crying with happiness.@@ <<if $groomSlave.pregSource == $brideSlave.ID && $brideSlave.pregSource == $groomSlave.ID>>When $groomSlave.slaveName and $brideSlave.slaveName tire, they rest, shoulder to shoulder, with a hand upon each other's bulging belly. Gently, they caress their growing pregnancies, knowing that they carry the other's love child.<<elseif $brideSlave.pregSource == $groomSlave.ID>>When they tire, $groomSlave.slaveName rests her head upon $brideSlave.slaveName's lap and gently kisses her lover's belly, knowing the child of their love is growing within.<<elseif $groomSlave.pregSource == $brideSlave.ID>>When they tire, $brideSlave.slaveName rests her head upon $groomSlave.slaveName's lap and gently kisses her lover's belly, knowing the child of their love is growing within.<</if>>
 	<<set $groomSlave.devotion += 4>>
diff --git a/src/uncategorized/reputation.tw b/src/uncategorized/reputation.tw
index 231d81ba47559e555c9dad02cef941b21bd5cbd4..61159b1a965e5279bf370929a22d48d4be6bbe3c 100644
--- a/src/uncategorized/reputation.tw
+++ b/src/uncategorized/reputation.tw
@@ -40,7 +40,7 @@ On formal occasions, you are announced as $PCTitle.
 			@@.green;approve@@ of the trust your slaves place in you.
 			<<FSChange "ChattelReligionist" 2>>
 		<<else>>
-			are not impressed by fear many of your slaves feel towards you.
+			are not impressed by the fear many of your slaves feel towards you.
 		<</if>>
 	<</if>>
 <</if>>
diff --git a/src/uncategorized/salon.tw b/src/uncategorized/salon.tw
index b9b5ee7efce8a42fcf565ee39cd2605a5e4f922b..39ffc21904e718a2627ef341b6233749c63af365 100644
--- a/src/uncategorized/salon.tw
+++ b/src/uncategorized/salon.tw
@@ -414,29 +414,53 @@ Treat nails:
 
 /* SKIN */
 
-<<set $tannableSkin = ["lightened", "white", "fair", "pale", "light"]>>
-<<set $lightenableSkin = ["dark", "olive", "black", "brown", "light brown", "tanned"]>>
-<<set $bleachableSkin = ["lightened", "white", "fair", "light"]>>
+<<set $tannableSkin = ["natural", "lightened", "white", "fair", "pale", "light", "extremely pale"]>>
+<<set $lightenableSkin = ["natural", "dark", "olive", "black", "brown", "light brown", "tanned"]>>
+<<set $bleachableSkin = ["natural", "lightened", "white", "fair", "light"]>>
+<<set $darkenableSkin = ["natural", "lightened", "white", "fair", "pale", "light", "extremely pale", "olive", "tanned", "light brown", "brown"]>>
+<<set $dyedSkin = ["red dyed", "green dyed", "blue dyed", "tiger striped", "camouflage patterned"]>>
+
 
 <br><br>
 $possessiveCap skin is $activeSlave.skin.
 
-<<if ($tannableSkin.indexOf($activeSlave.skin) != -1)>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	[[Tan|Salon][$activeSlave.skin = "tanned",$cash -= $modCost]]
-<<elseif ($lightenableSkin.indexOf($activeSlave.skin) != -1)>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	[[Lighten skin|Salon][$activeSlave.skin = "lightened",$cash -= $modCost]]
+<<if ($dyedSkin.indexOf($activeSlave.skin) != -1)>>
+	[[Remove coloring|Salon][$activeSlave.skin = "$activeSlave.origSkin,$cash -= $modCost]]
 <</if>>
-<<if ($bleachableSkin.indexOf($activeSlave.skin) != -1)>>
-	<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	[[Bleach skin|Salon][$activeSlave.skin = "pale",$cash -= $modCost]]
-<</if>>
-<<if $activeSlave.skin != "black">>
+
+<<if ($dyedSkin.indexOf($activeSlave.skin) == -1)>>
 	<br>&nbsp;&nbsp;&nbsp;&nbsp;
-	[[Darken skin|Salon][$activeSlave.skin = "dark",$cash -= $modCost]]
+	Change skin tone:
+	<<set _needsSpacers = 0>>
+	<<if ($bleachableSkin.indexOf($activeSlave.skin) != -1)>>
+		<<if  _needsSpacers == 1>> | <</if>>
+		[[Bleach|Salon][$activeSlave.skin = "pale",$cash -= $modCost]]
+		<<set _needsSpacers = 1>>
+	<</if>>
+	<<if ($lightenableSkin.indexOf($activeSlave.skin) != -1)>>
+		<<if  _needsSpacers == 1>> | <</if>>
+		[[Lighten|Salon][$activeSlave.skin = "lightened",$cash -= $modCost]]
+		<<set _needsSpacers = 1>>
+	<</if>>
+	<<if ($tannableSkin.indexOf($activeSlave.skin) != -1)>>
+		<<if  _needsSpacers == 1>> | <</if>>
+		[[Tan|Salon][$activeSlave.skin = "tanned",$cash -= $modCost]]
+		<<set _needsSpacers = 1>>
+	<</if>>
+	<<if ($darkenableSkin.indexOf($activeSlave.skin) != -1)>>
+		<<if  _needsSpacers == 1>> | <</if>>
+		[[Darken|Salon][$activeSlave.skin = "dark",$cash -= $modCost]]
+		<<set _needsSpacers = 1>>
+	<</if>>
 <</if>>
 
+<br>&nbsp;&nbsp;&nbsp;&nbsp;
+Dye or paint:
+[[Red|Salon][$activeSlave.skin = "red dyed",$cash -= $modCost]]
+| [[Green|Salon][$activeSlave.skin = "green dyed",$cash -= $modCost]]
+| [[Blue|Salon][$activeSlave.skin = "blue dyed",$cash -= $modCost]]
+| [[Tiger stripes|Salon][$activeSlave.skin = "tiger striped",$cash -= $modCost]]
+| [[Camouflage|Salon][$activeSlave.skin = "camouflage patterned",$cash -= $modCost]]
 
 /* MARKS */
 
diff --git a/src/uncategorized/seIndependenceDay.tw b/src/uncategorized/seIndependenceDay.tw
index ef3a94f5515ec07a6f23bf6298e795bfcc6eb2a2..199121a464c03a12ad31a55aaf346711dc636a61 100644
--- a/src/uncategorized/seIndependenceDay.tw
+++ b/src/uncategorized/seIndependenceDay.tw
@@ -273,11 +273,12 @@ In the Free Cities, Independence Day falls on the day when the Free City achieve
 		You rhapsodize about how wonderful sex with a tight young girl is, and encourage citizens who haven't done so to give it a try.
 		<</if>>
 	<<elseif $arcologies[0].FSMaturityPreferentialist != "unset">>
-		<<if $arcologies[0].FSMaturityPreferentialist >= 90>>
-		<<elseif $arcologies[0].FSMaturityPreferentialist >= 40>>
-		You rhapsodize about how wonderful sex with a tight young girl is, and encourage citizens who haven't done so to give it a try.
-		<</if>>
-	<</if>>
+ 		<<if $arcologies[0].FSMaturityPreferentialist >= 90>>
+		You almost lose track of time rhapsodizing about mature women, but it's not like your citizens ever tire of the subject.
+ 		<<elseif $arcologies[0].FSMaturityPreferentialist >= 40>>
+		You rhapsodize about how wonderful sex with a mature woman is, and encourage citizens who haven't done so to give it a try.
+ 		<</if>>
+ 	<</if>>
 	<<if $arcologies[0].FSRepopulationFocus != "unset">>
 	  <<if $arcologies[0].FSRepopulationFocus >= 90>>
 		You rhapsodize on the wonderful display of pregnancies you see daily, and affirm that the arcology will continue to be to bastion of the future.
diff --git a/src/uncategorized/seRaiding.tw b/src/uncategorized/seRaiding.tw
index 92952474a3e3efb70eb7d1ab46afa43f05194e65..3c4f0071d1ef09f13508fc8d974ad68b8f843032 100644
--- a/src/uncategorized/seRaiding.tw
+++ b/src/uncategorized/seRaiding.tw
@@ -512,7 +512,7 @@ Worthy of consideration is that although the $mercenariesTitle will enslave the
 <<set $activeSlave.trust = random(-60,-75)>>
 <<set $activeSlave.oldDevotion = $activeSlave.devotion>>
 
-The $origin is the primary target of the raid.
+The $origin is the primary target of the raid. They're $activeSlave.race.
 <<if $activeSlave.weight > 190>>
 	Their figure ia a catastrophically fat individual, so much so that the raid might be better off laying down speedbumps to thwart her rascal-powered flight.
 	<<set _hareSpeed -= 5>>
diff --git a/src/utility/descriptionWidgets.tw b/src/utility/descriptionWidgets.tw
index 64b245424d8ce22558e8ec531917c974da69071f..9d38880d0d1784392a67b737bb3798ca1dd5676d 100644
--- a/src/utility/descriptionWidgets.tw
+++ b/src/utility/descriptionWidgets.tw
@@ -4180,9 +4180,14 @@ $pronounCap's got a
 
 <</if>> /* CLOSES DETAILED DICK DESCRIPTION */
 
-<<if ($activeSlave.genes == "XY")>>
 <<if $activeSlave.prostate == 0>>
-	Though it's not externally apparent, $possessive prostate has been removed, giving $possessive ejaculations less body<<if $activeSlave.anus != 0>> and reducing the stimulation $pronoun feels during anal sex<</if>>.
+<<if ($activeSlave.dick > 0) || ($activeSlave.balls > 0)>>
+	<<if ($activeSlave.genes == "XY")>>
+	Though it's not externally apparent, $possessive prostate has been removed,
+	<<else>>
+	$pronounCap is lacking a prostate,
+	<</if>> 
+	giving $possessive ejaculations less body<<if $activeSlave.anus != 0>> and reducing the stimulation $pronoun feels during anal sex<</if>>.
 <</if>>
 <</if>>
 
diff --git a/src/utility/miscWidgets.tw b/src/utility/miscWidgets.tw
index 1f4a4fc97033f870773c6e84d17e5286a698a803..0dc5d108cdf597d22f352d11563371249fc4d542 100644
--- a/src/utility/miscWidgets.tw
+++ b/src/utility/miscWidgets.tw
@@ -1368,6 +1368,7 @@
 <<set $args[0].origHColor = $args[0].hColor>>
 <<set $args[0].underArmHColor = $args[0].hColor>>
 <<set $args[0].pubicHColor = $args[0].hColor>>
+<<set $args[0].origSkin = $args[0].skin>>
 
 <<if $familyTesting == 1>>
 	<<set $args[0].sisters = 0>>
diff --git a/src/utility/slaveCreationWidgets.tw b/src/utility/slaveCreationWidgets.tw
index 17b29bc28436e7cce974b279580b7b60443e0486..861b72d835daceca18729b3c3b85afb35e1793f7 100644
--- a/src/utility/slaveCreationWidgets.tw
+++ b/src/utility/slaveCreationWidgets.tw
@@ -6,7 +6,7 @@
 	Called from Gen XX, Gen XY, CheatMode DB, InitNationalities.
 %/
 <<widget "BaseSlave">>
-	<<set $activeSlave = {slaveName: "blank", slaveSurname: 0, birthName: "blank", birthSurname: 0, genes: "XX", weekAcquired: 0, origin: 0, career: 0, ID: 0, prestige: 0, pornFame: 0, pornFameSpending: 0, prestigeDesc: 0, recruiter: 0, relation: 0, relationTarget: 0, relationship: 0, relationshipTarget: 0, rivalry: 0, rivalryTarget: 0, subTarget: 0, choosesOwnAssignment: 0, assignment: "rest", assignmentVisible: 1, sentence: 0, training: 0, toyHole: "all her holes", indenture: -1, indentureRestrictions: 0, birthWeek: random(0,51), actualAge: 18, visualAge: 18, physicalAge: 18, ageImplant: 0, health: 0, minorInjury: 0, trust: 0, oldTrust: 0, devotion: 0, oldDevotion: 0, weight: 0, muscles: 0, height: 170, heightImplant: 0, nationality: "slave", race: "white", markings: "none", eyes: 1, eyeColor: "brown", origEye: "brown", eyewear: "none", origHColor: "brown", hColor: "brown", pubicHColor: "brown", skin: "light", hLength: 60, hStyle: "short", pubicHStyle: "neat", waist: 0, corsetPiercing: 0, PLimb: 0, amp: 0, heels:0, voice: 2, voiceImplant: 0, accent: 0, shoulders: 0, shouldersImplant: 0, boobs: 0, boobsImplant: 0, boobsImplantType: 0, boobShape: "normal", nipples: "cute",  nipplesPiercing: 0, areolae: 0, areolaePiercing: 0, boobsTat: 0, lactation: 0, lactationAdaptation: 0, milk: 0, cum: 0, hips: 0, hipsImplant: 0, butt: 0, buttImplant: 0, buttImplantType: 0, buttTat: 0, face: 0, faceImplant: 0, faceShape: "normal", lips: 15, lipsImplant: 0, lipsPiercing: 0, lipsTat: 0, teeth: "normal", tonguePiercing: 0, vagina: 0, vaginaLube: 0, vaginaPiercing: 0, vaginaTat: 0, preg: -1, pregSource: 0, pregType: 0, labor: 0, births: 0, cSec: 0, bellyAccessory: "none", labia: 0, clit: 0, clitPiercing: 0, clitSetting: "vanilla", foreskin: 0, anus: 0, dick: 0, analArea: 1, dickPiercing: 0, dickTat: 0, prostate: 0, balls: 0, scrotum: 0, ovaries: 0, anusPiercing: 0, anusTat: 0, makeup: 0, nails: 0, brand: 0, brandLocation: 0, earPiercing: 0, nosePiercing: 0, eyebrowPiercing: 0, navelPiercing: 0, shouldersTat: 0, armsTat: 0, legsTat: 0, backTat: 0, stampTat: 0, vaginalSkill: 0, oralSkill: 0, analSkill: 0, whoreSkill: 0, entertainSkill: 0, combatSkill: 0, livingRules: "spare", speechRules: "restrictive", releaseRules: "restrictive", relationshipRules: "restrictive", standardPunishment: "situational", standardReward: "situational", useRulesAssistant: 1, diet: "healthy", dietCum: 0, dietMilk: 0, tired: 0, hormones: 0, drugs: "no drugs", curatives: 0, chem: 0, aphrodisiacs: 0, addict: 0, fuckdoll: 0, choosesOwnClothes: 0, clothes: "no clothing", collar: "none", shoes: "none", vaginalAccessory: "none", dickAccessory: "none", buttplug: "none", intelligence: 0, intelligenceImplant: 0, energy: 50, attrXX: 0, attrXY: 0, attrKnown: 0, fetish: "none", fetishStrength: 70, fetishKnown: 0, behavioralFlaw: "none", behavioralQuirk: "none", sexualFlaw: "none", sexualQuirk: "none", oralCount: 0, vaginalCount: 0, analCount: 0, mammaryCount: 0, penetrativeCount: 0, publicCount: 0, pitKills: 0, customTat: "", customLabel: "", customDesc: "", customTitle: "", customTitleLisp: "", rudeTitle: 0, customImage: 0, currentRules: [], bellyTat: 0, induce: 0, mpreg: 0, inflation: 0, inflationType: "none", inflationMethod: 0, milkSource: 0, cumSource: 0, burst: 0, bellyImplant: 0, bellySag: 0, bellySagPreg: 0, bellyPain: 0, cervixImplant: 0, birthsTotal: 0, pubertyAgeXX: 13, pubertyAgeXY: 13, scars: 0, breedingMark: 0, underArmHStyle: "waxed", bodySwap: 0, father: 0, mother: 0, daughters: 0, sisters: 0, canRecruit: 0, HGExclude: 0, ballType: "human", eggType: "human", reservedChildren: 0, choosesOwnChastity: 0, pregControl: "none", readyLimbs: [], ageAdjust: 0, bald: 0, origBodyOwner: "", death: "", hormoneBalance: 0, onDiet: 0, breastMesh: 0, buttplugAttachment: "none", slavesFathered: 0, PCChildrenFathered: 0, slavesKnockedUp: 0, PCKnockedUp: 0}>>
+	<<set $activeSlave = {slaveName: "blank", slaveSurname: 0, birthName: "blank", birthSurname: 0, genes: "XX", weekAcquired: 0, origin: 0, career: 0, ID: 0, prestige: 0, pornFame: 0, pornFameSpending: 0, prestigeDesc: 0, recruiter: 0, relation: 0, relationTarget: 0, relationship: 0, relationshipTarget: 0, rivalry: 0, rivalryTarget: 0, subTarget: 0, choosesOwnAssignment: 0, assignment: "rest", assignmentVisible: 1, sentence: 0, training: 0, toyHole: "all her holes", indenture: -1, indentureRestrictions: 0, birthWeek: random(0,51), actualAge: 18, visualAge: 18, physicalAge: 18, ageImplant: 0, health: 0, minorInjury: 0, trust: 0, oldTrust: 0, devotion: 0, oldDevotion: 0, weight: 0, muscles: 0, height: 170, heightImplant: 0, nationality: "slave", race: "white", markings: "none", eyes: 1, eyeColor: "brown", origEye: "brown", eyewear: "none", origHColor: "brown", hColor: "brown", pubicHColor: "brown", skin: "light", hLength: 60, hStyle: "short", pubicHStyle: "neat", waist: 0, corsetPiercing: 0, PLimb: 0, amp: 0, heels:0, voice: 2, voiceImplant: 0, accent: 0, shoulders: 0, shouldersImplant: 0, boobs: 0, boobsImplant: 0, boobsImplantType: 0, boobShape: "normal", nipples: "cute",  nipplesPiercing: 0, areolae: 0, areolaePiercing: 0, boobsTat: 0, lactation: 0, lactationAdaptation: 0, milk: 0, cum: 0, hips: 0, hipsImplant: 0, butt: 0, buttImplant: 0, buttImplantType: 0, buttTat: 0, face: 0, faceImplant: 0, faceShape: "normal", lips: 15, lipsImplant: 0, lipsPiercing: 0, lipsTat: 0, teeth: "normal", tonguePiercing: 0, vagina: 0, vaginaLube: 0, vaginaPiercing: 0, vaginaTat: 0, preg: -1, pregSource: 0, pregType: 0, labor: 0, births: 0, cSec: 0, bellyAccessory: "none", labia: 0, clit: 0, clitPiercing: 0, clitSetting: "vanilla", foreskin: 0, anus: 0, dick: 0, analArea: 1, dickPiercing: 0, dickTat: 0, prostate: 0, balls: 0, scrotum: 0, ovaries: 0, anusPiercing: 0, anusTat: 0, makeup: 0, nails: 0, brand: 0, brandLocation: 0, earPiercing: 0, nosePiercing: 0, eyebrowPiercing: 0, navelPiercing: 0, shouldersTat: 0, armsTat: 0, legsTat: 0, backTat: 0, stampTat: 0, vaginalSkill: 0, oralSkill: 0, analSkill: 0, whoreSkill: 0, entertainSkill: 0, combatSkill: 0, livingRules: "spare", speechRules: "restrictive", releaseRules: "restrictive", relationshipRules: "restrictive", standardPunishment: "situational", standardReward: "situational", useRulesAssistant: 1, diet: "healthy", dietCum: 0, dietMilk: 0, tired: 0, hormones: 0, drugs: "no drugs", curatives: 0, chem: 0, aphrodisiacs: 0, addict: 0, fuckdoll: 0, choosesOwnClothes: 0, clothes: "no clothing", collar: "none", shoes: "none", vaginalAccessory: "none", dickAccessory: "none", buttplug: "none", intelligence: 0, intelligenceImplant: 0, energy: 50, attrXX: 0, attrXY: 0, attrKnown: 0, fetish: "none", fetishStrength: 70, fetishKnown: 0, behavioralFlaw: "none", behavioralQuirk: "none", sexualFlaw: "none", sexualQuirk: "none", oralCount: 0, vaginalCount: 0, analCount: 0, mammaryCount: 0, penetrativeCount: 0, publicCount: 0, pitKills: 0, customTat: "", customLabel: "", customDesc: "", customTitle: "", customTitleLisp: "", rudeTitle: 0, customImage: 0, currentRules: [], bellyTat: 0, induce: 0, mpreg: 0, inflation: 0, inflationType: "none", inflationMethod: 0, milkSource: 0, cumSource: 0, burst: 0, bellyImplant: 0, bellySag: 0, bellySagPreg: 0, bellyPain: 0, cervixImplant: 0, birthsTotal: 0, pubertyAgeXX: 13, pubertyAgeXY: 13, scars: 0, breedingMark: 0, underArmHStyle: "waxed", bodySwap: 0, father: 0, mother: 0, daughters: 0, sisters: 0, canRecruit: 0, HGExclude: 0, ballType: "human", eggType: "human", reservedChildren: 0, choosesOwnChastity: 0, pregControl: "none", readyLimbs: [], ageAdjust: 0, bald: 0, origBodyOwner: "", death: "", hormoneBalance: 0, onDiet: 0, breastMesh: 0, buttplugAttachment: "none", slavesFathered: 0, PCChildrenFathered: 0, slavesKnockedUp: 0, PCKnockedUp: 0, origSkin: "white"}>>
 <</widget>>
 
 /%