diff --git a/src/init/storyInit.tw b/src/init/storyInit.tw
index d32802dc7fce45330a32fcf8e6efccc7f8835397..d2d5235aa9939cc7820bcbe080c47138d91918b7 100644
--- a/src/init/storyInit.tw
+++ b/src/init/storyInit.tw
@@ -29,7 +29,6 @@ You should have received a copy of the GNU General Public License along with thi
 		<<set $slaves[_i].assignmentVisible = 1>>
 		<<set $slaves[_i].weekAcquired = 1>>
 		<<set $slaves[_i].newGamePlus = 1>>
-		<<set $slaves[$i].HasBeenAssignedToFacilitySupport = 0>>
 		<<PMODinit $slaves[_i]>>
 		<<if $slaves[_i].mother > 0>>
 			<<set $slaves[_i].mother += 1200000>>
diff --git a/src/pregmod/fSlaveFeed.tw b/src/pregmod/fSlaveFeed.tw
index 7d39435953cbabb5133a001e80c7e59e3ee6aee5..41b9ce3080044f03306b234c8f11e111eeef5461 100644
--- a/src/pregmod/fSlaveFeed.tw
+++ b/src/pregmod/fSlaveFeed.tw
@@ -763,6 +763,5 @@ Next, you see to $activeSlave.slaveName.
 <</if>>
 
 <<SetBellySize $activeSlave>>
-<<set _m = $slaves.findIndex(function(s) { return s.ID == $milkTap.ID; })>>
-<<set $slaves[_m] = $milkTap>>
+<<set $slaves[$slaveIndices[$milkTap.ID]] = $milkTap>>
 <<set $milkTap = 0>>
\ No newline at end of file
diff --git a/src/pregmod/fSlaveSlaveDickConsummate.tw b/src/pregmod/fSlaveSlaveDickConsummate.tw
index 73ef5c8fbc9957a08676cacd6a8fa7f818dad821..19b0c9cb4eb9630bf8040e92e67c5183ffc6c4ea 100644
--- a/src/pregmod/fSlaveSlaveDickConsummate.tw
+++ b/src/pregmod/fSlaveSlaveDickConsummate.tw
@@ -546,6 +546,5 @@ You call $slaverapistx.slaveName into the room.
 <</if>>
 
 /% save changes %/
-<<set _SSDC = $slaves.findIndex(function(s) { return s.ID == $slaverapistx.ID; })>>
-<<set $slaves[_SSDC] = $slaverapistx>>
+<<set $slaves[$slaveIndices[$slaverapistx.ID]] = $slaverapistx>>
 
diff --git a/src/pregmod/fSlaveSlaveVagConsummate.tw b/src/pregmod/fSlaveSlaveVagConsummate.tw
index 3a7216ff69b4bb064f435f48530568c80550042c..dc92537772ce82b39601cef0c81d57ffe09e60a1 100644
--- a/src/pregmod/fSlaveSlaveVagConsummate.tw
+++ b/src/pregmod/fSlaveSlaveVagConsummate.tw
@@ -241,5 +241,4 @@ Next, you see to $activeSlave.slaveName.
 	<<KnockMeUp $activeSlave 25 0 $slaverapistx.ID>>
 <</if>>
 
-<<set _ssvg = $slaves.findIndex(function(s) { return s.ID == $slaverapistx.ID; })>>
-<<set $slaves[_ssvg] = $slaverapistx>>
+<<set $slaves[$slaveIndices[$slaverapistx.ID]] = $slaverapistx>>
diff --git a/src/pregmod/generateChild.tw b/src/pregmod/generateChild.tw
index 07cc52e3ad9e4c2f632ac8ce92b574e04dbc41c8..f3239069c561b7d738b6cab6d535f8468eb33f05 100644
--- a/src/pregmod/generateChild.tw
+++ b/src/pregmod/generateChild.tw
@@ -298,7 +298,7 @@
 	<</if>>
 	<<set $activeSlave.mother = $mergeMom.ID>>
 	<<if $mom.pregSource > 0>>
-		<<set _currentFather = $slaves.find(function(s) { return s.ID == $mom.pregSource; })>>
+		<<set _currentFather = getSlave($mom.pregSource)>>
 		<<set $activeSlave.father = $mergeDad.ID>>
 		<<set $activeSlave.slaveName = String($mom.slaveName + " and " + _currentFather.slaveName + "'s child")>>
 		<<if def $mom.slaveSurname && $mom.slaveSurname != "">><<set $activeSlave.slaveSurname = $mom.slaveSurname>><<elseif def _currentFather.slaveSurname && _currentFather.slaveSurname != "">><<set $activeSlave.slaveSurname = _currentFather.slaveSurname>><<else>><<set $activeSlave.slaveSurname = 0>><</if>>
diff --git a/src/pregmod/huskSlaveSwap.tw b/src/pregmod/huskSlaveSwap.tw
index 01689d23c7ca1813874db3ad864431870948705c..d1f31346707f1e1968177b39d0c01aad87047ae2 100644
--- a/src/pregmod/huskSlaveSwap.tw
+++ b/src/pregmod/huskSlaveSwap.tw
@@ -2,7 +2,7 @@
 
 <<set $nextButton = "Continue">>
 <<set _oldSlave = clone($swappingSlave)>>
-<<set _m = $slaves.findIndex(function(s) { return s.ID == $swappingSlave.ID; })>>
+<<set _m = $slaveIndices[$swappingSlave.ID]>>
 
 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>>
diff --git a/src/pregmod/incubator.tw b/src/pregmod/incubator.tw
index a54a63469161e207cb33a5b0c959d7b6fd7b93c2..ea809ffd6e5752a6a09fb32b397f2f6034d54f71 100644
--- a/src/pregmod/incubator.tw
+++ b/src/pregmod/incubator.tw
@@ -40,12 +40,10 @@ Reserve an eligible mother-to-be's child to be placed in a tank upon birth. Of $
 		<<elseif $slaves[_u].pregSource == -1>>your
 		<<elseif $slaves[_u].pregSource == -2>>a citizen's
 		<<else>>
-			<<for _t = 0; _t < _SL; _t++>>
-				<<if $slaves[_u].pregSource == $slaves[_t].ID>>
-					<<print $slaves[_t].slaveName>>'s
-					<<break>>
-				<</if>>
-			<</for>>
+			<<set _t = $slaveIndices[$slaves[_u].pregSource]>>
+			<<if def _t>>
+				<<print $slaves[_t].slaveName>>'s
+			<</if>>
 		<</if>>
 		<<if $slaves[_u].pregType > 1>>$slaves[_u].pregType babies<<else>>baby<</if>>.
 		<<if $slaves[_u].reservedChildren > 0>>
diff --git a/src/pregmod/newChildIntro.tw b/src/pregmod/newChildIntro.tw
index 0d1d6339d79ec75fe5e5372247a326a29b21d52a..a5d689bd8b33a1de49428e810b18b487e9f7208c 100644
--- a/src/pregmod/newChildIntro.tw
+++ b/src/pregmod/newChildIntro.tw
@@ -5,10 +5,10 @@
 <<SlaveTitle $activeSlave>>
 
 <<if $activeSlave.mother > 0>>
-	<<set _tempMom = $slaves.find(function(s) { return s.ID == $activeSlave.mother; })>>
+	<<set _tempMom = getSlave($activeSlave.mother)>>
 <</if>>
 <<if $activeSlave.father > 0>>
-	<<set _tempDad = $slaves.find(function(s) { return s.ID == $activeSlave.father; })>>
+	<<set _tempDad = getSlave($activeSlave.father)>>
 <</if>>
 
 You completed the legalities before heading to $incubatorName, knowing the tank will release her on your approach, and instruct $assistantName to notify the new girl's parents to meet you in your office. As the tank exhumes the disoriented girl, you help her to her feet<<if $incubatorReproductionSetting > 1>>, making sure to feel-up her overdeveloped body,<</if>> and walk her to your penthouse. Though first you must decide upon a name for the new girl; it won't take long to reach your office, so you have only @@.orange;one chance to name her@@ before you arrive.
diff --git a/src/pregmod/reLegendaryWomb.tw b/src/pregmod/reLegendaryWomb.tw
index a3cfb9fe2de4bc111ec929ea91a6b30c3ca5d67d..806c34d6a6c6a9b0ec2a1360c2906519132be838 100644
--- a/src/pregmod/reLegendaryWomb.tw
+++ b/src/pregmod/reLegendaryWomb.tw
@@ -1,6 +1,6 @@
 :: RE legendary womb [nobr]
  
-<<set $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "RIE Eligibility Check", $activeSlave = ($legendaryFacility == 1) ? $slaves.find(function(s) { return s.ID == $legendaryWombID; }) : $eventSlave>>
+<<set $nextButton = "Continue", $nextLink = "AS Dump", $returnTo = "RIE Eligibility Check", $activeSlave = ($legendaryFacility == 1) ? getSlave($legendaryWombID) : $eventSlave>>
 
 <<if (ndef $activeSlave)>> /* not found - reset variable and stop event */
 	<<set $legendaryWombID = 0>>
diff --git a/src/pregmod/saAgent.tw b/src/pregmod/saAgent.tw
index 034e8e2c7e270a44c60c625fda2364f55688e9bb..24ef6730cad084222117aec4863a55eadc31fe52 100644
--- a/src/pregmod/saAgent.tw
+++ b/src/pregmod/saAgent.tw
@@ -113,7 +113,7 @@
 		<<if $slaves[$i].pregSource == -1>>
 			<<set $PC.slavesKnockedUp++>>
 		<<elseif $slaves[$i].pregSource > 0>>
-			<<set _babyDaddy = $slaves.findIndex(function(s) { return s.ID == $slaves[$i].pregSource; })>>
+			<<set _babyDaddy = $slaveIndices[$slaves[$i].pregSource]>>
 			<<set $slaves[_babyDaddy].slavesKnockedUp++>>
 		<</if>>
 	<</if>>
diff --git a/src/pregmod/saInflation.tw b/src/pregmod/saInflation.tw
index be163c09d592228dfab4711051dece874d72a9d9..27c7c6b6d2d92611a153996dc6d3e718ccc9ea8a 100644
--- a/src/pregmod/saInflation.tw
+++ b/src/pregmod/saInflation.tw
@@ -212,7 +212,7 @@
 				<<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 3>>
 			<</if>>
 		<<elseif $slaves[$i].inflationMethod == 3>>
-			<<set _saf = $slaves.findIndex(function(s) { return s.ID == $slaves[$i].milkSource; })>>
+			<<set _saf = $slaveIndices[$slaves[$i].milkSource]>>
 			<<if $slaves[_saf].lactation == 0>>
 				$slaves[_saf].slaveName is no longer lactating and thus can no longer keep $slaves[$i].slaveName filled with milk. @@.yellow;$possessiveCap inflation regimen has been ended.@@
 				<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0>><<SetBellySize $slaves[$i]>>
@@ -257,7 +257,7 @@
 				<<set $slaves[$i].devotion += 1, $slaves[$i].trust += 1>>
 			<</if>>
 		<<elseif $slaves[$i].inflationMethod == 3>>
-			<<set _saf = $slaves.findIndex(function(s) { return s.ID == $slaves[$i].milkSource; })>>
+			<<set _saf = $slaveIndices[$slaves[$i].milkSource]>>
 			<<if $slaves[_saf].lactation == 0>>
 				$slaves[_saf].slaveName is no longer lactating and thus can no longer keep $slaves[$i].slaveName filled with milk. @@.yellow;$possessiveCap inflation regimen has been ended.@@
 				<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0>><<SetBellySize $slaves[$i]>>
@@ -298,7 +298,7 @@
 				Throughout the week, $pronoun makes sure to fill $possessive rear with nearly two liters of milk, leaving $possessive belly noticeably distended, whenever $pronoun leaks or needs to release $possessive load. $pronounCap is full enough to be swollen but not enough to visibly jiggle.
 			<</if>>
 		<<elseif $slaves[$i].inflationMethod == 3>>
-			<<set _saf = $slaves.findIndex(function(s) { return s.ID == $slaves[$i].milkSource; })>>
+			<<set _saf = $slaveIndices[$slaves[$i].milkSource]>>
 			<<if $slaves[_saf].lactation == 0>>
 				$slaves[_saf].slaveName is no longer lactating and thus can no longer keep $slaves[$i].slaveName filled with milk. @@.yellow;$possessiveCap inflation regimen has been ended.@@
 				<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].milkSource = 0>><<SetBellySize $slaves[$i]>>
@@ -344,7 +344,7 @@
 				<<set $slaves[$i].devotion -= 3, $slaves[$i].trust -= 3>>
 			<</if>>
 		<<elseif $slaves[$i].inflationMethod == 3>>
-			<<set _saf = $slaves.findIndex(function(s) { return s.ID == $slaves[$i].cumSource; })>>
+			<<set _saf = $slaveIndices[$slaves[$i].cumSource]>>
 			<<if $slaves[_saf].balls == 0>>
 				$slaves[_saf].slaveName has no longer has testicles and thus can no longer keep $slaves[$i].slaveName filled with cum. @@.yellow;$possessiveCap inflation regimen has been ended.@@
 				<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].cumSource = 0>><<SetBellySize $slaves[$i]>>
@@ -389,7 +389,7 @@
 				<<set $slaves[$i].devotion++, $slaves[$i].trust++>>
 			<</if>>
 		<<elseif $slaves[$i].inflationMethod == 3>>
-			<<set _saf = $slaves.findIndex(function(s) { return s.ID == $slaves[$i].cumSource; })>>
+			<<set _saf = $slaveIndices[$slaves[$i].cumSource]>>
 			<<if $slaves[_saf].balls == 0>>
 					$slaves[_saf].slaveName has no longer has testicles and thus can no longer keep $slaves[$i].slaveName filled with cum. @@.yellow;$possessiveCap inflation regimen has been ended.@@
 				<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].cumSource = 0>><<SetBellySize $slaves[$i]>>
@@ -430,7 +430,7 @@
 				Throughout the week, $pronoun makes sure to fill $possessive rear with nearly two liters of cum, leaving $possessive belly noticeably distended, whenever $pronoun leaks or needs to release $possessive load. $pronounCap is full enough to be swollen but not enough to visibly jiggle.
 			<</if>>
 		<<elseif $slaves[$i].inflationMethod == 3>>
-			<<set _saf = $slaves.findIndex(function(s) { return s.ID == $slaves[$i].cumSource; })>>
+			<<set _saf = $slaveIndices[$slaves[$i].cumSource]>>
 			<<if $slaves[_saf].balls == 0>>
 					$slaves[$j].slaveName has no longer has testicles and thus can no longer keep $slaves[$i].slaveName filled with cum. @@.yellow;$possessiveCap inflation regimen has been ended.@@
 				<<set $slaves[$i].inflation = 0, $slaves[$i].inflationType = "none", $slaves[$i].inflationMethod = 0, $slaves[$i].cumSource = 0>><<SetBellySize $slaves[$i]>>
diff --git a/src/pregmod/seFCTVshows.tw b/src/pregmod/seFCTVshows.tw
index 299ff7d019636a97905ccf1008b1cd813c3d1184..bbfc9ef95bb9fe2a0a9bc96ccc547b4a59a9c523 100644
--- a/src/pregmod/seFCTVshows.tw
+++ b/src/pregmod/seFCTVshows.tw
@@ -982,7 +982,7 @@ The offered price is <<print cashFormat($slaveCost)>>.
 			Stunned and fully erect, you inexplicably feel the urge to creampie a pussy, so you
 			<<if $Concubine != 0 && $Concubine.vagina > 0 && canDoVaginal($Concubine)>>
 				grab $Concubine.slaveName and recreate the entire ending with her.
-				<<set _fctvs = $slaves.findIndex(function(s) { return s.ID == $Concubine.ID; })>>
+				<<set _fctvs = $slaveIndices[$Concubine.ID]>>
 				<<set $slaves[_fctvs].vaginalCount += 1, $vaginalTotal += 1>>
 				<<if $Concubine.eggType == "human" && canGetPregnant($Concubine)>>
 					<<KnockMeUp $slaves[_fctvs] 10 0 -1 1>>
@@ -998,7 +998,7 @@ The offered price is <<print cashFormat($slaveCost)>>.
 			<<if $Concubine != 0 && canPenetrate($Concubine) && isPlayerFertile($PC) && $Concubine.ballType == "human" && $Concubine.vasectomy == 0 && ($sexualOpeness == 1 || $Concubine.toyHole == "dick")>>
 				get $Concubine.slaveName nice and hard before recreating the entire ending with her. You've never had a more hope-filled orgasm.
 				<<KnockMeUp $PC 10 0 $Concubine.ID 1>>
-				<<set _fctvs = $slaves.findIndex(function(s) { return s.ID == $Concubine.ID; })>>
+				<<set _fctvs = $slaveIndices[$Concubine.ID]>>
 				<<set $slaves[_fctvs].penetrativeCount += 1, $penetrativeTotal += 1>>
 			<<elseif $sexualOpeness == 1>>
 				find your favorite cock to get a creampie from. You've never had a more lust-filled orgasm.
@@ -1011,7 +1011,7 @@ The offered price is <<print cashFormat($slaveCost)>>.
 		<br>
 		"I met with one of the leading scientists working on cleaner, higher-purity aphrodisiacs." the woman presenting narrates.
 		<br>
-		The scientist's volume fades in, and you can finally hear what he has to say. "The problem with most of the cheap stuff is it can make you sick and it can be really hard to kick an addiction to it. With products similar to what we aim to create those risks are severely mitigated, showing that the potential for healthy, prolonged use of aphrodisacs exists, and that cessation of use can be significantly easier."
+		The scientist's volume fades in, and you can finally hear what he has to say. "The problem with most of the cheap stuff is it can make you sick and it can be really hard to kick an addiction to it. With products similar to what we aim to create those risks are severely mitigated, showing that the potential for healthy, prolonged use of aphrodisiacs exists, and that cessation of use can be significantly easier."
 		<br>
 		The woman cuts in with a question. "But won't an easier time quitting mean a weaker product?"
 		<br>
@@ -1019,11 +1019,11 @@ The offered price is <<print cashFormat($slaveCost)>>.
 		<br>
 		"This was a nun from the old world, recently made a slave." he explains. "We do all of our testing on legally purchased slaves who are slated to work in brothels that use aphrodisiacs anyway, so there's no harm done."
 		<br>
-		One of the men from earlier walks back into frame and hands the scentist an injector. "This is one of our latest prototypes, the purest we've produced yet. I'm proud to be able to show it off today." he says as he prepares an injection site on the right side of the nun's neck. He moves the injector close to her neck, just barely grazing her skin. "Before I do this, for the cameras, how do you feel about taking it up the ass in front of this nice girl, Sister?"
+		One of the men from earlier walks back into frame and hands the scientist an injector. "This is one of our latest prototypes, the purest we've produced yet. I'm proud to be able to show it off today." he says as he prepares an injection site on the right side of the nun's neck. He moves the injector close to her neck, just barely grazing her skin. "Before I do this, for the cameras, how do you feel about taking it up the ass in front of this nice girl, Sister?"
 		<br>
 		The nun looks up with anger and defiance before speaking in a low tone "Do you not know that the unrighteous will not inherit the kingdom of God? Do not be deceived. Neither the sexually immoral, nor idolators, nor adulterers, nor m-" the scientist injects her, and her eyes immediately widen. Her cheeks quickly flush and her breathing becomes labored as she clenches her teeth. "What's the matter?" the scientist teases. "No more verses?"
 		<br>
-		The nun unconciously moves closer to him, and finds herself hugging his thigh and rubbing her crotch against his leg like a dog. Her robes are soaked right at the spot where her pussy ought to be, and she's drooling as she undoes the scientist's pants. When his big, soft cock flops out and slaps her face, she desperately licks and sucks on it to get it hard before hungrily deepthroating it at a maddening pace. The scientist eventually grabs her hair and rips his cock out of her mouth before blowing his load all over her face, all on camera. "One more time for the cameras." he says. "How do you feel about taking it up the ass in front of this nice girl, Sister?"
+		The nun unconsciously moves closer to him, and finds herself hugging his thigh and rubbing her crotch against his leg like a dog. Her robes are soaked right at the spot where her pussy ought to be, and she's drooling as she undoes the scientist's pants. When his big, soft cock flops out and slaps her face, she desperately licks and sucks on it to get it hard before hungrily deepthroating it at a maddening pace. The scientist eventually grabs her hair and rips his cock out of her mouth before blowing his load all over her face, all on camera. "One more time for the cameras." he says. "How do you feel about taking it up the ass in front of this nice girl, Sister?"
 		<br>
 		"Please fuck me." the nun whimpers. "Please. I need it. My... it burns."
 		<br>
@@ -1031,7 +1031,7 @@ The offered price is <<print cashFormat($slaveCost)>>.
 		<br>
 		"Anywhere. Please, now. Please."
 		<br>
-		He bends her over the couch, right next to the presenter, who's been watching the entire time. She's transfixed with genuine interest in the aphrodisiacs and genuine cocklust for the scientist. The scientist slides his spit-covered cock into the nun's ass, and she thanks him through tears as she moans and desperately rubs her clit. He's pounding her hard and fast, and she cums quickly, but clearly she isn't satiated judging by how quickly she goes back to slamming her ass against the scientist after cumming. Eventually the sight of it is too much for the presenter, who mouths "fuck it" before hiking up the bottom of her dress to her hips revealing a beatifully puffy pussy and a carefully-sculpted landing strip. The presenter shifts over on the couch, and pulls the nun by her hair to make her eat her cunt. They go on like this for some time, with the nun and presenter frequently changing places, much to the delight of the scientist. By the end of the scene the nun is crying on the floor, leaking cum from every holy hole and staring off into space. The benefits of aphrodisiacs are quite clear.
+		He bends her over the couch, right next to the presenter, who's been watching the entire time. She's transfixed with genuine interest in the aphrodisiacs and genuine cocklust for the scientist. The scientist slides his spit-covered cock into the nun's ass, and she thanks him through tears as she moans and desperately rubs her clit. He's pounding her hard and fast, and she cums quickly, but clearly she isn't satiated judging by how quickly she goes back to slamming her ass against the scientist after cumming. Eventually the sight of it is too much for the presenter, who mouths "fuck it" before hiking up the bottom of her dress to her hips revealing a beautifully puffy pussy and a carefully-sculpted landing strip. The presenter shifts over on the couch, and pulls the nun by her hair to make her eat her cunt. They go on like this for some time, with the nun and presenter frequently changing places, much to the delight of the scientist. By the end of the scene the nun is crying on the floor, leaking cum from every holy hole and staring off into space. The benefits of aphrodisiacs are quite clear.
 	<</if>>
 
 <<case 15>>
@@ -1047,15 +1047,15 @@ The offered price is <<print cashFormat($slaveCost)>>.
 		The camera cuts to a young blonde girl with her hair braided back in rows. She's wearing a white blouse thats unbuttoned all the way down to her leather corset showing much of her very large rack while hiding little.
 		<br><br>
 		"Thank ye, Captain Castbeak!" she positively beams with energy as she bounces around, her barely contained breasts keeping your eye as she sways and jumps around the screen. 
-		"Today we be keepin an eye on the acid rain storms as they blow on through the upper chinese and mongolian regions on their way to the bearing straight. If ye be located anywhere around here-" She stretches up with a short pointer that you now realize is part of a prostethic limb attached to her right hand. "-batton down yer hatches an wait fer the storm ta blow over".
+		"Today we be keepin an eye on the acid rain storms as they blow on through the upper Chinese and Mongolian regions on their way to the bearing straight. If ye be located anywhere around here-" She stretches up with a short pointer that you now realize is part of a prosthetic limb attached to her right hand. "-batten down yer hatches an wait fer the storm ta blow over".
 		<br><br>
-		The camera shifts down low now as the green screen map behind her shifts to Australia, Lusty stooping over towards the cameria to stay in frame gives you a beautiful view straight down her blouse. "And ifin ye be in Australia yer in for another hot and dry one as this unseasonable drought stretches on fer at least another week"
+		The camera shifts down low now as the green screen map behind her shifts to Australia, Lusty stooping over towards the camera to stay in frame gives you a beautiful view straight down her blouse. "And ifin ye be in Australia yer in for another hot and dry one as this unseasonable drought stretches on fer at least another week"
 		<br><br>
-		The camera angle switches again as the map of North America comes on screen overlayed with tempuratures. Lusty slowly straightens up and stretches out with a smile clearly giving the camera a show. "an if'n ye be travelin across here, beware, this be the worst weather of them all, with dust storms and tornadows and lightning storms across the continent. If ye be catchin our broadcast from here, seek a safe port and stay safe." she points again with her pointer hand all across the midwest.
+		The camera angle switches again as the map of North America comes on screen overlayed with temperatures. Lusty slowly straightens up and stretches out with a smile clearly giving the camera a show. "an if'n ye be travelin across here, beware, this be the worst weather of them all, with dust storms and tornadows and lightning storms across the continent. If ye be catchin our broadcast from here, seek a safe port and stay safe." she points again with her pointer hand all across the midwest.
 		<br><br>
-		The weather report continues with more mundane tempurature readings and Lusty bubbly bouncing around the screen giving you something to pay attention to when the weather is not about your region.
+		The weather report continues with more mundane temperature readings and Lusty bubbly bouncing around the screen giving you something to pay attention to when the weather is not about your region.
 		<br><br>
-		When the weather finishes, she crosses her arms under her breasts, emphasizing the pair barely restrained by the laces of her blouse and bearly slipping free after her energetic report, as credits of strange and funny pirate themed names begin to flash across the bottom of the screen, She happily begins to sign off. "We here at Pieces o' Eight thank ye fer trustin us with yer global news an weather, From our crew to yours, have a merry day!"
+		When the weather finishes, she crosses her arms under her breasts, emphasizing the pair barely restrained by the laces of her blouse and barely slipping free after her energetic report, as credits of strange and funny pirate themed names begin to flash across the bottom of the screen, She happily begins to sign off. "We here at Pieces o' Eight thank ye fer trustin us with yer global news an weather, From our crew to yours, have a merry day!"
 		<br><br>
 		You flip off the tv. News from a pirate, how novel.
 	<<elseif $showFifteen == 2>>
@@ -1070,7 +1070,7 @@ The offered price is <<print cashFormat($slaveCost)>>.
 		<br>"I think you're just mad that your callsign is 'cuttlefish'" Manta shoots back.
 		<br>"I've had worse" Cuttlefish replies then mutters quietly "but not by much"
 		<br>"I dunno, mate. As an accent it's kind of infectious, especially since they got all the wenches in Tortuga speaking it. It makes the whole port kind of endearing."
-		<br>"I can't argue with that, Pull one of them girls on my lap and listening to her squeel and sqirm, and then they get all that grog in you... Lets just say I'm warming up to the place."
+		<br>"I can't argue with that, Pull one of them girls on my lap and listening to her squeal and squirm, and then they get all that grog in you... Lets just say I'm warming up to the place."
 		<br><br>
 		Orca shakes his head at the banter of his crew shaking the camera mount as well slightly before he turns to leave. He takes a step out before suddenly freezing and stopping. He clicks on his radio and says "Radio silence for a minute." 
 		<br><br>
diff --git a/src/pregmod/sePlayerBirth.tw b/src/pregmod/sePlayerBirth.tw
index 2f205d26ecd1fdd3de7da9aad74cdcec6c05b588..d5a125d2057299db1fde052ba98299c45495b75a 100644
--- a/src/pregmod/sePlayerBirth.tw
+++ b/src/pregmod/sePlayerBirth.tw
@@ -44,8 +44,8 @@ PC.pregSource documentation
 	<<set $PC.birthSelf += _curBabies>>
 <<else>>
 	<<set $PC.birthDegenerate += _curBabies>>
-	<<set _babyDaddy = $slaves.findIndex(function(s) { return s.ID == $PC.pregSource; })>>
-	<<if _babyDaddy != -1>>
+	<<set _babyDaddy = $slaveIndices[$PC.pregSource]>>
+	<<if def _babyDaddy>>
 		<<set $slaves[_babyDaddy].PCChildrenFathered += _curBabies>>
 	<</if>>
 <</if>>
@@ -486,8 +486,8 @@ You arrange yourself to give birth, relaxing until your body urges you to begin
 <</if>>
 
 <<if $PC.pregSource > 0 && _curBabies > 0>>
-	<<set _pb = $slaves.findIndex(function(s) { return s.ID == $PC.pregSource; })>>
-	<<if _pb != -1>>
+	<<set _pb = $slaveIndices[$PC.pregSource]>>
+	<<if def _pb>>
 		<<if $arcologies[0].FSRestartDecoration == 100>>
 			Word spreads fast through your peers that you gave birth to <<if _curBabies > 1>>low class infants<<else>>a low class child<</if>> @@.red;utterly devastating your standing among the Elite.@@
 			<<set $failedElite += 200>>